Social Media Widget by Acurax - Version 3.0

Version Description

  • Total Programming Logic Changes
  • Perfomance Improvements
  • Optimized Speed
  • Improved and Solid Structure
  • Stable Release
Download this release

Release Info

Developer Acurax
Plugin Icon 128x128 Social Media Widget by Acurax
Version 3.0
Comparing to
See all releases

Code changes from version 2.4.1 to 3.0

acurax-social-icon.php CHANGED
@@ -4,8 +4,8 @@ Plugin Name: Social Media Widget by Acurax
4
  Plugin URI: http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/
5
  Description: A Simple Wordpress Plugin Which Allow You To Add Widget Which Links Social Media Icons to Your Social Media Profiles Twitter,Facebook,Pinterest,Youtube,Rss Feed,Linkedin,google plus. You can define icon style size for each widget.
6
  Author: Acurax
7
- Version: 2.4.1
8
- Author URI: http://www.acurax.com
9
  License: GPLv2 or later
10
  */
11
  /*
@@ -24,9 +24,15 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
24
  */
25
  define('ACX_SOCIALMEDIA_WIDGET_TOTAL_THEMES', 24);
26
  define('ACX_SMW_TOTAL_STATIC_SERVICES', 7);
27
- define('ACX_SMW_VERSION', "2.4.1");
28
- ?>
29
- <?php
 
 
 
 
 
 
30
  //*************** Include JS in Header ********
31
  function enqueue_acx_social_widget_icon_script()
32
  {
@@ -45,51 +51,156 @@ function Acurax_Widget_Links($links, $file) {
45
 
46
  return array_merge( $links, array(
47
  '<div id="plugin_page_links"><a href="http://www.acurax.com?utm_source=wp&utm_medium=link&utm_campaign=plugin-page&ref=' . $acx_installation_domain . '" target="_blank">' . __('Acurax International') . '</a>',
48
- '<a href="https://twitter.com/#!/acuraxdotcom" target="_blank">' . __('Acurax on Twitter') . '</a>',
49
- '<a href="http://www.facebook.com/AcuraxInternational" target="_blank">' . __('Acurax on Facebook') . '</a>',
50
- '<a href="http://wordpress.acurax.com/?utm_source=wp&utm_medium=link&utm_campaign=plugin-page&ref=' . $acx_installation_domain . '" target="_blank">' . __('Wordpress Expert Support') . '</a>'
51
  ));
52
  }
53
  return $links;
54
  } add_filter('plugin_row_meta', 'Acurax_Widget_Links', 10, 2 );
55
  //*********************************************************
56
- include('function.php');
57
  //*************** Admin function ***************
58
  function acx_social_widget_icon_admin()
59
  {
60
- include('social-icon.php');
61
  }
62
  function acx_social_widget_icon_help()
63
  {
64
- include('social-help.php');
65
  }
66
  function acx_social_widget_icon_premium()
67
  {
68
- include('premium.php');
69
  }
70
  function acx_social_widget_troubleshoot()
71
  {
72
- include('troubleshoot.php');
73
  }
74
  function acx_social_widget_icon_misc()
75
  {
76
- include('smw-misc.php');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
77
  }
78
- $acx_si_smw_hide_expert_support_menu = get_option('acx_si_smw_hide_expert_support_menu');
79
- if ($acx_si_smw_hide_expert_support_menu == "") { $acx_si_smw_hide_expert_support_menu = "no"; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
  function acx_social_widget_icon_admin_actions()
81
  {
82
- global $acx_si_smw_hide_expert_support_menu;
83
- add_menu_page( 'Acurax Social Media Widget Configuration', 'Social Media Widget Settings', 'manage_options', 'Acurax-Social-Widget-Settings','acx_social_widget_icon_admin',plugin_dir_url( __FILE__ ).'/images/acurax_international.png' ); // 'manage_options' for admin
 
84
 
85
  add_submenu_page('Acurax-Social-Widget-Settings', 'Acurax Social Icon Premium', 'Premium', 'manage_options', 'Acurax-Social-Widget-Premium' ,'acx_social_widget_icon_premium');
86
-
87
  add_submenu_page('Acurax-Social-Widget-Settings', 'Acurax Social Icon Misc Settings', 'Misc', 'manage_options', 'Acurax-Social-Widget-Misc' ,'acx_social_widget_icon_misc');
88
  add_submenu_page('Acurax-Social-Widget-Settings', 'Acurax Troubleshooter', 'Troubleshoot', 'manage_options', 'Acurax-Social-Widget-Troubleshooter' ,'acx_social_widget_troubleshoot');
89
- if($acx_si_smw_hide_expert_support_menu == "no") {
90
  add_submenu_page('Acurax-Social-Widget-Settings', 'Acurax Expert Support', 'Expert Support', 'manage_options', 'Acurax-Social-Widget-Expert-Support' ,'acx_social_widget_troubleshoot');
91
  }
92
- add_submenu_page('Acurax-Social-Widget-Settings', 'Acurax Social Widget Help and Support', 'Help', 'manage_options', 'Acurax-Social-Widget-Help' ,'acx_social_widget_icon_help');
93
  }
94
 
95
  if ( is_admin() )
4
  Plugin URI: http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/
5
  Description: A Simple Wordpress Plugin Which Allow You To Add Widget Which Links Social Media Icons to Your Social Media Profiles Twitter,Facebook,Pinterest,Youtube,Rss Feed,Linkedin,google plus. You can define icon style size for each widget.
6
  Author: Acurax
7
+ Version: 3.0
8
+ Author URI: http://www.acurax.com/home.php
9
  License: GPLv2 or later
10
  */
11
  /*
24
  */
25
  define('ACX_SOCIALMEDIA_WIDGET_TOTAL_THEMES', 24);
26
  define('ACX_SMW_TOTAL_STATIC_SERVICES', 7);
27
+ define('ACX_SMW_VERSION', "3.0");
28
+ define("ACX_SMW_BASE_LOCATION",plugin_dir_url( __FILE__ ));
29
+ define("ACX_SMW_WP_SLUG","acurax-social-media-widget");
30
+
31
+ include_once('function.php');
32
+ include_once('includes/hooks.php');
33
+ include_once('includes/hook_functions.php');
34
+ include_once('includes/option_fields.php');
35
+
36
  //*************** Include JS in Header ********
37
  function enqueue_acx_social_widget_icon_script()
38
  {
51
 
52
  return array_merge( $links, array(
53
  '<div id="plugin_page_links"><a href="http://www.acurax.com?utm_source=wp&utm_medium=link&utm_campaign=plugin-page&ref=' . $acx_installation_domain . '" target="_blank">' . __('Acurax International') . '</a>',
54
+ '<a href="http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=wp&utm_medium=link&utm_campaign=plugin-page&ref=' . $acx_installation_domain . '" target="_blank">' . __('Wordpress Expert Support') . '</a>',
55
+ '<a href="http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=wp&utm_medium=link&utm_campaign=plugin-page&ref=' . $acx_installation_domain . '" target="_blank">' . __('Need Help Configuring Plugins?') . '</a>',
56
+ '<a href="http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=wp&utm_medium=link&utm_campaign=plugin-page&ref=' . $acx_installation_domain . '" target="_blank">' . __('Instant Quick Support') . '</a>'
57
  ));
58
  }
59
  return $links;
60
  } add_filter('plugin_row_meta', 'Acurax_Widget_Links', 10, 2 );
61
  //*********************************************************
62
+
63
  //*************** Admin function ***************
64
  function acx_social_widget_icon_admin()
65
  {
66
+ include(plugin_dir_path( __FILE__ ).'/includes/acx_smw_options.php');
67
  }
68
  function acx_social_widget_icon_help()
69
  {
70
+ include(plugin_dir_path( __FILE__ ).'/includes/acx_smw_social_help.php');
71
  }
72
  function acx_social_widget_icon_premium()
73
  {
74
+ include(plugin_dir_path( __FILE__ ).'/includes/acx_smw_premium.php');
75
  }
76
  function acx_social_widget_troubleshoot()
77
  {
78
+ include(plugin_dir_path( __FILE__ ).'/includes/acx_smw_troubleshoot.php');
79
  }
80
  function acx_social_widget_icon_misc()
81
  {
82
+ include(plugin_dir_path( __FILE__ ).'/includes/acx_smw_misc.php');
83
+ }
84
+ $acx_widget_si_current_version=get_option('acx_widget_si_current_version');
85
+ if($acx_widget_si_current_version != "" && $acx_widget_si_current_version < ACX_SMW_VERSION)
86
+ {
87
+ add_action('admin_head','acx_smw_migration_fn');
88
+ }
89
+
90
+ function acx_smw_migration_fn()
91
+ {
92
+ // Getting Option From DB *****************************
93
+ $acx_widget_si_theme = get_option('acx_widget_si_theme');
94
+ if($acx_widget_si_theme != '')
95
+ {
96
+ update_option('acx_si_theme', $acx_widget_si_theme);
97
+
98
+ }
99
+ $acx_widget_si_credit = get_option('acx_widget_si_credit');
100
+ if($acx_widget_si_credit != '')
101
+ {
102
+ update_option('acx_si_credit', $acx_widget_si_credit);
103
+
104
+ }
105
+ $acx_widget_si_facebook = get_option('acx_widget_si_facebook');
106
+
107
+ if($acx_widget_si_facebook != '')
108
+ {
109
+ update_option('acx_si_facebook', $acx_widget_si_facebook);
110
+
111
+ }
112
+ $acx_widget_si_youtube = get_option('acx_widget_si_youtube');
113
+ if($acx_widget_si_youtube != '')
114
+ {
115
+ update_option('acx_si_youtube', $acx_widget_si_youtube);
116
+
117
+ }
118
+ $acx_widget_si_twitter = get_option('acx_widget_si_twitter');
119
+ if($acx_widget_si_twitter != '')
120
+ {
121
+ update_option('acx_si_twitter', $acx_widget_si_twitter);
122
+
123
+ }
124
+ $acx_widget_si_linkedin = get_option('acx_widget_si_linkedin');
125
+ if($acx_widget_si_linkedin != '')
126
+ {
127
+ update_option('acx_si_linkedin', $acx_widget_si_linkedin);
128
+
129
+ }
130
+ $acx_widget_si_gplus = get_option('acx_widget_si_gplus');
131
+ if($acx_widget_si_gplus != '')
132
+ {
133
+ update_option('acx_si_gplus', $acx_widget_si_gplus);
134
+
135
+ }
136
+ $acx_widget_si_pinterest = get_option('acx_widget_si_pinterest');
137
+ if($acx_widget_si_pinterest != '')
138
+ {
139
+ update_option('acx_si_pinterest', $acx_widget_si_pinterest);
140
+
141
  }
142
+ $acx_widget_si_feed = get_option('acx_widget_si_feed');
143
+ if($acx_widget_si_feed != '')
144
+ {
145
+ update_option('acx_si_feed', $acx_widget_si_feed);
146
+
147
+ }
148
+ $acx_widget_si_icon_size = get_option('acx_widget_si_icon_size');
149
+ if($acx_widget_si_icon_size != '')
150
+ {
151
+ update_option('acx_si_icon_size', $acx_widget_si_icon_size);
152
+
153
+ }
154
+ $acx_si_smw_float_fix = get_option('acx_si_smw_float_fix');
155
+ if($acx_si_smw_float_fix != '')
156
+ {
157
+ update_option('acx_si_fsmi_float_fix', $acx_si_smw_float_fix);
158
+
159
+ }
160
+ $acx_si_smw_theme_warning_ignore = get_option('acx_si_smw_theme_warning_ignore');
161
+ if($acx_si_smw_theme_warning_ignore != '')
162
+ {
163
+ update_option('acx_si_fsmi_theme_warning_ignore', $acx_si_smw_theme_warning_ignore);
164
+
165
+ }
166
+ $acx_si_asmw_hide_expert_support_menu = get_option('acx_si_asmw_hide_expert_support_menu');
167
+ if($acx_si_asmw_hide_expert_support_menu != '')
168
+ {
169
+ update_option('acx_si_fsmi_hide_expert_support_menu', $acx_si_asmw_hide_expert_support_menu);
170
+
171
+ }
172
+ $acx_si_smw_hide_advert = get_option('acx_si_smw_hide_advert');
173
+ if($acx_si_smw_hide_advert != '')
174
+ {
175
+ update_option('acx_si_fsmi_hide_advert', $acx_si_smw_hide_advert);
176
+
177
+ }
178
+ $acx_si_smw_acx_service_banners = get_option('acx_si_smw_acx_service_banners');
179
+ if($acx_si_smw_acx_service_banners != '')
180
+ {
181
+ update_option('acx_fsmi_acx_service_banners', $acx_si_smw_acx_service_banners);
182
+
183
+ }
184
+
185
+
186
+ // *****************************************************
187
+
188
+ update_option('acx_widget_si_current_version', ACX_SMW_VERSION);
189
+ }
190
+
191
  function acx_social_widget_icon_admin_actions()
192
  {
193
+ $acx_si_asmw_hide_expert_support_menu = get_option('acx_si_asmw_hide_expert_support_menu');
194
+ if ($acx_si_asmw_hide_expert_support_menu == "") { $acx_si_asmw_hide_expert_support_menu = "no"; }
195
+ add_menu_page( 'Acurax Social Media Widget Configuration', 'Social Media Widget Settings', 'manage_options', 'Acurax-Social-Widget-Settings','acx_social_widget_icon_admin',plugin_dir_url( __FILE__ ).'images/admin.png' ); // 'manage_options' for admin
196
 
197
  add_submenu_page('Acurax-Social-Widget-Settings', 'Acurax Social Icon Premium', 'Premium', 'manage_options', 'Acurax-Social-Widget-Premium' ,'acx_social_widget_icon_premium');
 
198
  add_submenu_page('Acurax-Social-Widget-Settings', 'Acurax Social Icon Misc Settings', 'Misc', 'manage_options', 'Acurax-Social-Widget-Misc' ,'acx_social_widget_icon_misc');
199
  add_submenu_page('Acurax-Social-Widget-Settings', 'Acurax Troubleshooter', 'Troubleshoot', 'manage_options', 'Acurax-Social-Widget-Troubleshooter' ,'acx_social_widget_troubleshoot');
200
+ if($acx_si_asmw_hide_expert_support_menu == "no") {
201
  add_submenu_page('Acurax-Social-Widget-Settings', 'Acurax Expert Support', 'Expert Support', 'manage_options', 'Acurax-Social-Widget-Expert-Support' ,'acx_social_widget_troubleshoot');
202
  }
203
+ add_submenu_page('Acurax-Social-Widget-Settings', 'Acurax Social Widget Help and Support', 'Help', 'manage_options', 'Acurax-Social-Widget-Help' ,'acx_social_widget_icon_help');
204
  }
205
 
206
  if ( is_admin() )
css/fonts/OpenSans-Regular-webfont.eot ADDED
Binary file
css/fonts/OpenSans-Regular-webfont.svg ADDED
@@ -0,0 +1,252 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata>
5
+ This is a custom SVG webfont generated by Font Squirrel.
6
+ Copyright : Digitized data copyright 20102011 Google Corporation
7
+ Foundry : Ascender Corporation
8
+ Foundry URL : httpwwwascendercorpcom
9
+ </metadata>
10
+ <defs>
11
+ <font id="OpenSansRegular" horiz-adv-x="1171" >
12
+ <font-face units-per-em="2048" ascent="1638" descent="-410" />
13
+ <missing-glyph horiz-adv-x="532" />
14
+ <glyph unicode=" " horiz-adv-x="532" />
15
+ <glyph unicode="&#x09;" horiz-adv-x="532" />
16
+ <glyph unicode="&#xa0;" horiz-adv-x="532" />
17
+ <glyph unicode="!" horiz-adv-x="547" d="M152 106q0 136 120 136q58 0 89.5 -35t31.5 -101q0 -64 -32 -99.5t-89 -35.5q-52 0 -86 31.5t-34 103.5zM170 1462h207l-51 -1059h-105z" />
18
+ <glyph unicode="&#x22;" horiz-adv-x="821" d="M133 1462h186l-40 -528h-105zM502 1462h186l-41 -528h-104z" />
19
+ <glyph unicode="#" horiz-adv-x="1323" d="M51 430v129h287l68 340h-277v127h299l82 436h139l-82 -436h305l84 436h134l-84 -436h264v-127h-289l-66 -340h283v-129h-307l-84 -430h-137l84 430h-303l-82 -430h-136l80 430h-262zM475 559h303l66 340h-303z" />
20
+ <glyph unicode="$" d="M131 170v156q83 -37 191.5 -60.5t197.5 -23.5v440q-205 65 -287.5 151t-82.5 222q0 131 101.5 215t268.5 102v182h129v-180q184 -5 355 -74l-52 -131q-149 59 -303 70v-434q157 -50 235 -97.5t115 -109t37 -149.5q0 -136 -102 -224.5t-285 -111.5v-232h-129v223 q-112 0 -217 17.5t-172 48.5zM319 1057q0 -76 45 -122t156 -87v387q-99 -16 -150 -62.5t-51 -115.5zM649 252q217 30 217 184q0 72 -44.5 116.5t-172.5 88.5v-389z" />
21
+ <glyph unicode="%" horiz-adv-x="1686" d="M104 1026q0 227 74.5 342t220.5 115q145 0 223 -119t78 -338q0 -228 -76.5 -344.5t-224.5 -116.5q-140 0 -217.5 119t-77.5 342zM242 1026q0 -170 37 -255t120 -85q164 0 164 340q0 338 -164 338q-83 0 -120 -84t-37 -254zM365 0l811 1462h147l-811 -1462h-147zM985 440 q0 227 74.5 342t220.5 115q142 0 221.5 -117.5t79.5 -339.5q0 -227 -76.5 -343.5t-224.5 -116.5q-142 0 -218.5 119t-76.5 341zM1122 440q0 -171 37 -255.5t121 -84.5t124 83.5t40 256.5q0 171 -40 253.5t-124 82.5t-121 -82.5t-37 -253.5z" />
22
+ <glyph unicode="&#x26;" horiz-adv-x="1495" d="M113 379q0 130 69.5 230t249.5 202q-85 95 -115.5 144t-48.5 102t-18 110q0 150 98 234t273 84q162 0 255 -83.5t93 -232.5q0 -107 -68 -197.5t-225 -183.5l407 -391q56 62 89.5 145.5t56.5 182.5h168q-68 -286 -205 -434l299 -291h-229l-185 178q-118 -106 -240 -152 t-272 -46q-215 0 -333.5 106t-118.5 293zM285 383q0 -117 77.5 -185.5t206.5 -68.5q241 0 400 154l-437 424q-111 -68 -157 -112.5t-68 -95.5t-22 -116zM414 1171q0 -69 36 -131.5t123 -150.5q129 75 179.5 138.5t50.5 146.5q0 77 -51.5 125.5t-137.5 48.5q-89 0 -144.5 -48 t-55.5 -129z" />
23
+ <glyph unicode="'" horiz-adv-x="453" d="M133 1462h186l-40 -528h-105z" />
24
+ <glyph unicode="(" horiz-adv-x="606" d="M82 561q0 265 77.5 496t223.5 405h162q-144 -193 -216.5 -424t-72.5 -475q0 -240 74 -469t213 -418h-160q-147 170 -224 397t-77 488z" />
25
+ <glyph unicode=")" horiz-adv-x="606" d="M61 1462h162q147 -175 224 -406.5t77 -494.5t-77.5 -490t-223.5 -395h-160q139 188 213 417.5t74 469.5q0 244 -72.5 475t-216.5 424z" />
26
+ <glyph unicode="*" horiz-adv-x="1130" d="M86 1090l29 182l391 -111l-43 395h194l-43 -395l398 111l26 -182l-381 -31l248 -326l-172 -94l-176 362l-160 -362l-176 94l242 326z" />
27
+ <glyph unicode="+" d="M104 653v138h410v428h139v-428h412v-138h-412v-426h-139v426h-410z" />
28
+ <glyph unicode="," horiz-adv-x="502" d="M63 -264q27 104 59.5 257t45.5 245h182l15 -23q-26 -100 -75 -232.5t-102 -246.5h-125z" />
29
+ <glyph unicode="-" horiz-adv-x="659" d="M84 473v152h491v-152h-491z" />
30
+ <glyph unicode="." horiz-adv-x="545" d="M152 106q0 67 30.5 101.5t87.5 34.5q58 0 90.5 -34.5t32.5 -101.5q0 -65 -33 -100t-90 -35q-51 0 -84.5 31.5t-33.5 103.5z" />
31
+ <glyph unicode="/" horiz-adv-x="752" d="M20 0l545 1462h166l-545 -1462h-166z" />
32
+ <glyph unicode="0" d="M102 733q0 382 119 567t363 185q238 0 361.5 -193t123.5 -559q0 -379 -119.5 -566t-365.5 -187q-236 0 -359 191.5t-123 561.5zM270 733q0 -319 75 -464.5t239 -145.5q166 0 240.5 147.5t74.5 462.5t-74.5 461.5t-240.5 146.5q-164 0 -239 -144.5t-75 -463.5z" />
33
+ <glyph unicode="1" d="M188 1163l387 299h140v-1462h-162v1042q0 130 8 246q-21 -21 -47 -44t-238 -195z" />
34
+ <glyph unicode="2" d="M100 0v143l385 387q176 178 232 254t84 148t28 155q0 117 -71 185.5t-197 68.5q-91 0 -172.5 -30t-181.5 -109l-88 113q202 168 440 168q206 0 323 -105.5t117 -283.5q0 -139 -78 -275t-292 -344l-320 -313v-8h752v-154h-961z" />
35
+ <glyph unicode="3" d="M94 59v158q95 -47 202.5 -71.5t203.5 -24.5q379 0 379 297q0 266 -418 266h-144v143h146q171 0 271 75.5t100 209.5q0 107 -73.5 168t-199.5 61q-96 0 -181 -26t-194 -96l-84 112q90 71 207.5 111.5t247.5 40.5q213 0 331 -97.5t118 -267.5q0 -140 -78.5 -229 t-222.5 -119v-8q176 -22 261 -112t85 -236q0 -209 -145 -321.5t-412 -112.5q-116 0 -212.5 17.5t-187.5 61.5z" />
36
+ <glyph unicode="4" d="M43 336v145l694 989h176v-983h217v-151h-217v-336h-159v336h-711zM209 487h545v486q0 143 10 323h-8q-48 -96 -90 -159z" />
37
+ <glyph unicode="5" d="M133 59v160q70 -45 174 -70.5t205 -25.5q176 0 273.5 83t97.5 240q0 306 -375 306q-95 0 -254 -29l-86 55l55 684h727v-153h-585l-37 -439q115 23 229 23q231 0 363.5 -114.5t132.5 -313.5q0 -227 -144.5 -356t-398.5 -129q-247 0 -377 79z" />
38
+ <glyph unicode="6" d="M117 625q0 431 167.5 644.5t495.5 213.5q113 0 178 -19v-143q-77 25 -176 25q-235 0 -359 -146.5t-136 -460.5h12q110 172 348 172q197 0 310.5 -119t113.5 -323q0 -228 -124.5 -358.5t-336.5 -130.5q-227 0 -360 170.5t-133 474.5zM287 506q0 -103 40 -192t113.5 -141 t167.5 -52q142 0 220.5 89.5t78.5 258.5q0 145 -73 228t-218 83q-90 0 -165 -37t-119.5 -102t-44.5 -135z" />
39
+ <glyph unicode="7" d="M94 1309v153h973v-133l-598 -1329h-184l606 1309h-797z" />
40
+ <glyph unicode="8" d="M104 373q0 251 306 391q-138 78 -198 168.5t-60 202.5q0 159 117.5 253.5t314.5 94.5q200 0 317 -93t117 -257q0 -108 -67 -197t-214 -162q178 -85 253 -178.5t75 -216.5q0 -182 -127 -290.5t-348 -108.5q-234 0 -360 102.5t-126 290.5zM268 369q0 -120 83.5 -187 t234.5 -67q149 0 232 70t83 192q0 97 -78 172.5t-272 146.5q-149 -64 -216 -141.5t-67 -185.5zM315 1128q0 -92 59 -158t218 -132q143 60 202.5 129t59.5 161q0 101 -72.5 160.5t-199.5 59.5q-125 0 -196 -60t-71 -160z" />
41
+ <glyph unicode="9" d="M106 991q0 228 127.5 360t335.5 132q149 0 260.5 -76.5t171.5 -223t60 -345.5q0 -858 -664 -858q-116 0 -184 20v143q80 -26 182 -26q240 0 362.5 148.5t133.5 455.5h-12q-55 -83 -146 -126.5t-205 -43.5q-194 0 -308 116t-114 324zM270 993q0 -144 72 -226.5t219 -82.5 q91 0 167.5 37t120.5 101t44 134q0 105 -41 194t-114.5 140t-168.5 51q-143 0 -221 -92t-78 -256z" />
42
+ <glyph unicode=":" horiz-adv-x="545" d="M152 106q0 67 30.5 101.5t87.5 34.5q58 0 90.5 -34.5t32.5 -101.5q0 -65 -33 -100t-90 -35q-51 0 -84.5 31.5t-33.5 103.5zM152 989q0 135 118 135q123 0 123 -135q0 -65 -33 -100t-90 -35q-51 0 -84.5 31.5t-33.5 103.5z" />
43
+ <glyph unicode=";" horiz-adv-x="545" d="M63 -264q27 104 59.5 257t45.5 245h182l15 -23q-26 -100 -75 -232.5t-102 -246.5h-125zM147 989q0 135 119 135q123 0 123 -135q0 -65 -33 -100t-90 -35q-58 0 -88.5 35t-30.5 100z" />
44
+ <glyph unicode="&#x3c;" d="M104 664v98l961 479v-149l-782 -371l782 -328v-151z" />
45
+ <glyph unicode="=" d="M119 449v137h930v-137h-930zM119 858v137h930v-137h-930z" />
46
+ <glyph unicode="&#x3e;" d="M104 242v151l783 326l-783 373v149l961 -479v-98z" />
47
+ <glyph unicode="?" horiz-adv-x="879" d="M27 1384q189 99 395 99q191 0 297 -94t106 -265q0 -73 -19.5 -128.5t-57.5 -105t-164 -159.5q-101 -86 -133.5 -143t-32.5 -152v-33h-129v54q0 117 36 192.5t134 159.5q136 115 171.5 173t35.5 140q0 102 -65.5 157.5t-188.5 55.5q-79 0 -154 -18.5t-172 -67.5zM240 106 q0 136 120 136q58 0 89.5 -35t31.5 -101q0 -64 -32 -99.5t-89 -35.5q-52 0 -86 31.5t-34 103.5z" />
48
+ <glyph unicode="@" horiz-adv-x="1841" d="M121 571q0 260 107 463t305 314.5t454 111.5q215 0 382.5 -90.5t259 -257t91.5 -383.5q0 -142 -44 -260t-124 -183t-184 -65q-86 0 -145 52t-70 133h-8q-40 -87 -114.5 -136t-176.5 -49q-150 0 -234.5 102.5t-84.5 278.5q0 204 118 331.5t310 127.5q68 0 154 -12.5 t155 -34.5l-25 -470v-22q0 -178 133 -178q91 0 148 107.5t57 279.5q0 181 -74 317t-210.5 209.5t-313.5 73.5q-223 0 -388 -92.5t-252 -264t-87 -396.5q0 -305 161 -469t464 -164q210 0 436 86v-133q-192 -84 -436 -84q-363 0 -563.5 199.5t-200.5 557.5zM686 598 q0 -254 195 -254q207 0 225 313l14 261q-72 20 -157 20q-130 0 -203.5 -90t-73.5 -250z" />
49
+ <glyph unicode="A" horiz-adv-x="1296" d="M0 0l578 1468h143l575 -1468h-176l-182 465h-586l-180 -465h-172zM412 618h473l-170 453q-33 86 -68 211q-22 -96 -63 -211z" />
50
+ <glyph unicode="B" horiz-adv-x="1327" d="M201 0v1462h413q291 0 421 -87t130 -275q0 -130 -72.5 -214.5t-211.5 -109.5v-10q333 -57 333 -350q0 -196 -132.5 -306t-370.5 -110h-510zM371 145h305q177 0 266.5 68.5t89.5 214.5q0 136 -91.5 200t-278.5 64h-291v-547zM371 836h280q180 0 259 56.5t79 190.5 q0 123 -88 177.5t-280 54.5h-250v-479z" />
51
+ <glyph unicode="C" horiz-adv-x="1292" d="M125 733q0 226 84.5 396t244 262t375.5 92q230 0 402 -84l-72 -146q-166 78 -332 78q-241 0 -380.5 -160.5t-139.5 -439.5q0 -287 134.5 -443.5t383.5 -156.5q153 0 349 55v-149q-152 -57 -375 -57q-323 0 -498.5 196t-175.5 557z" />
52
+ <glyph unicode="D" horiz-adv-x="1493" d="M201 0v1462h448q341 0 530 -189t189 -528q0 -362 -196.5 -553.5t-565.5 -191.5h-405zM371 147h207q304 0 457 149.5t153 442.5q0 286 -143.5 431t-426.5 145h-247v-1168z" />
53
+ <glyph unicode="E" horiz-adv-x="1139" d="M201 0v1462h815v-151h-645v-471h606v-150h-606v-538h645v-152h-815z" />
54
+ <glyph unicode="F" horiz-adv-x="1057" d="M201 0v1462h815v-151h-645v-535h606v-151h-606v-625h-170z" />
55
+ <glyph unicode="G" horiz-adv-x="1491" d="M125 731q0 228 91.5 399.5t263.5 262t403 90.5q234 0 436 -86l-66 -150q-198 84 -381 84q-267 0 -417 -159t-150 -441q0 -296 144.5 -449t424.5 -153q152 0 297 35v450h-327v152h497v-711q-116 -37 -236 -56t-278 -19q-332 0 -517 197.5t-185 553.5z" />
56
+ <glyph unicode="H" horiz-adv-x="1511" d="M201 0v1462h170v-622h770v622h170v-1462h-170v688h-770v-688h-170z" />
57
+ <glyph unicode="I" horiz-adv-x="571" d="M201 0v1462h170v-1462h-170z" />
58
+ <glyph unicode="J" horiz-adv-x="547" d="M-160 -213q71 -20 148 -20q99 0 150.5 60t51.5 173v1462h170v-1448q0 -190 -96 -294.5t-276 -104.5q-94 0 -148 27v145z" />
59
+ <glyph unicode="K" horiz-adv-x="1257" d="M201 0v1462h170v-725l663 725h201l-588 -635l610 -827h-200l-533 709l-153 -136v-573h-170z" />
60
+ <glyph unicode="L" horiz-adv-x="1063" d="M201 0v1462h170v-1308h645v-154h-815z" />
61
+ <glyph unicode="M" horiz-adv-x="1849" d="M201 0v1462h256l463 -1206h8l467 1206h254v-1462h-170v942q0 162 14 352h-8l-500 -1294h-137l-496 1296h-8q14 -154 14 -366v-930h-157z" />
62
+ <glyph unicode="N" horiz-adv-x="1544" d="M201 0v1462h192l797 -1222h8q-2 28 -9 174q-5 114 -5 177v32v839h159v-1462h-194l-799 1227h-8q16 -216 16 -396v-831h-157z" />
63
+ <glyph unicode="O" horiz-adv-x="1595" d="M125 735q0 357 176 553.5t500 196.5q315 0 492 -200t177 -552q0 -351 -177.5 -552t-493.5 -201q-323 0 -498.5 197.5t-175.5 557.5zM305 733q0 -297 126.5 -450.5t367.5 -153.5q243 0 367 153t124 451q0 295 -123.5 447.5t-365.5 152.5q-243 0 -369.5 -153.5 t-126.5 -446.5z" />
64
+ <glyph unicode="P" horiz-adv-x="1233" d="M201 0v1462h379q548 0 548 -426q0 -222 -151.5 -341.5t-433.5 -119.5h-172v-575h-170zM371 721h153q226 0 327 73t101 234q0 145 -95 216t-296 71h-190v-594z" />
65
+ <glyph unicode="Q" horiz-adv-x="1595" d="M125 735q0 357 176 553.5t500 196.5q315 0 492 -200t177 -552q0 -281 -113 -467t-319 -252l348 -362h-247l-285 330l-55 -2q-323 0 -498.5 197.5t-175.5 557.5zM305 733q0 -297 126.5 -450.5t367.5 -153.5q243 0 367 153t124 451q0 295 -123.5 447.5t-365.5 152.5 q-243 0 -369.5 -153.5t-126.5 -446.5z" />
66
+ <glyph unicode="R" horiz-adv-x="1266" d="M201 0v1462h401q269 0 397.5 -103t128.5 -310q0 -290 -294 -392l397 -657h-201l-354 608h-305v-608h-170zM371 754h233q180 0 264 71.5t84 214.5q0 145 -85.5 209t-274.5 64h-221v-559z" />
67
+ <glyph unicode="S" horiz-adv-x="1124" d="M106 47v164q90 -38 196 -60t210 -22q170 0 256 64.5t86 179.5q0 76 -30.5 124.5t-102 89.5t-217.5 93q-204 73 -291.5 173t-87.5 261q0 169 127 269t336 100q218 0 401 -80l-53 -148q-181 76 -352 76q-135 0 -211 -58t-76 -161q0 -76 28 -124.5t94.5 -89t203.5 -89.5 q230 -82 316.5 -176t86.5 -244q0 -193 -140 -301t-380 -108q-260 0 -400 67z" />
68
+ <glyph unicode="T" horiz-adv-x="1133" d="M18 1311v151h1096v-151h-463v-1311h-170v1311h-463z" />
69
+ <glyph unicode="U" horiz-adv-x="1491" d="M186 520v942h170v-954q0 -183 100 -281t294 -98q185 0 285 98.5t100 282.5v952h170v-946q0 -250 -151 -393t-415 -143t-408.5 144t-144.5 396z" />
70
+ <glyph unicode="V" horiz-adv-x="1219" d="M0 1462h180l336 -946q58 -163 92 -317q36 162 94 323l334 940h183l-527 -1462h-168z" />
71
+ <glyph unicode="W" horiz-adv-x="1896" d="M27 1462h180l231 -903q48 -190 70 -344q27 183 80 358l262 889h180l275 -897q48 -155 81 -350q19 142 72 346l230 901h180l-391 -1462h-168l-295 979q-21 65 -47 164t-27 119q-22 -132 -70 -289l-286 -973h-168z" />
72
+ <glyph unicode="X" horiz-adv-x="1182" d="M8 0l486 764l-453 698h188l363 -579l366 579h181l-453 -692l488 -770h-193l-393 643l-400 -643h-180z" />
73
+ <glyph unicode="Y" horiz-adv-x="1147" d="M0 1462h186l387 -731l390 731h184l-488 -895v-567h-172v559z" />
74
+ <glyph unicode="Z" horiz-adv-x="1169" d="M82 0v133l776 1176h-752v153h959v-133l-776 -1175h798v-154h-1005z" />
75
+ <glyph unicode="[" horiz-adv-x="674" d="M166 -324v1786h457v-141h-289v-1503h289v-142h-457z" />
76
+ <glyph unicode="\" horiz-adv-x="752" d="M23 1462h163l547 -1462h-166z" />
77
+ <glyph unicode="]" horiz-adv-x="674" d="M51 -182h289v1503h-289v141h457v-1786h-457v142z" />
78
+ <glyph unicode="^" horiz-adv-x="1110" d="M49 551l434 922h99l477 -922h-152l-372 745l-334 -745h-152z" />
79
+ <glyph unicode="_" horiz-adv-x="918" d="M-4 -184h926v-131h-926v131z" />
80
+ <glyph unicode="`" horiz-adv-x="1182" d="M393 1548v21h203q32 -69 89 -159.5t101 -143.5v-25h-110q-65 52 -154 148t-129 159z" />
81
+ <glyph unicode="a" horiz-adv-x="1139" d="M94 303q0 332 531 348l186 6v68q0 129 -55.5 190.5t-177.5 61.5q-137 0 -310 -84l-51 127q81 44 177.5 69t193.5 25q196 0 290.5 -87t94.5 -279v-748h-123l-33 156h-8q-82 -103 -163.5 -139.5t-203.5 -36.5q-163 0 -255.5 84t-92.5 239zM268 301q0 -90 54.5 -137 t152.5 -47q155 0 243.5 85t88.5 238v99l-166 -7q-198 -7 -285.5 -61.5t-87.5 -169.5z" />
82
+ <glyph unicode="b" horiz-adv-x="1255" d="M176 0v1556h166v-378q0 -127 -8 -228h8q116 164 344 164q216 0 335.5 -147.5t119.5 -417.5t-120.5 -419.5t-334.5 -149.5q-107 0 -195.5 39.5t-148.5 121.5h-12l-35 -141h-119zM342 549q0 -231 77 -330.5t247 -99.5q153 0 228 111.5t75 320.5q0 214 -75 319t-232 105 q-170 0 -245 -97.5t-75 -328.5z" />
83
+ <glyph unicode="c" horiz-adv-x="975" d="M115 541q0 275 132.5 425t377.5 150q79 0 158 -17t124 -40l-51 -141q-55 22 -120 36.5t-115 14.5q-334 0 -334 -426q0 -202 81.5 -310t241.5 -108q137 0 281 59v-147q-110 -57 -277 -57q-238 0 -368.5 146.5t-130.5 414.5z" />
84
+ <glyph unicode="d" horiz-adv-x="1255" d="M115 545q0 271 120 421t334 150q223 0 342 -162h13l-7 79l-4 77v446h166v-1556h-135l-22 147h-9q-115 -167 -344 -167q-215 0 -334.5 147t-119.5 418zM287 543q0 -210 77 -317t226 -107q170 0 246.5 92.5t76.5 298.5v35q0 233 -77.5 332.5t-247.5 99.5 q-146 0 -223.5 -113.5t-77.5 -320.5z" />
85
+ <glyph unicode="e" horiz-adv-x="1149" d="M115 539q0 265 130.5 421t350.5 156q206 0 326 -135.5t120 -357.5v-105h-755q5 -193 97.5 -293t260.5 -100q177 0 350 74v-148q-88 -38 -166.5 -54.5t-189.5 -16.5q-243 0 -383.5 148t-140.5 411zM291 653h573q0 157 -70 240.5t-200 83.5q-132 0 -210.5 -86t-92.5 -238z " />
86
+ <glyph unicode="f" horiz-adv-x="694" d="M29 967v75l196 60v61q0 404 353 404q87 0 204 -35l-43 -133q-96 31 -164 31q-94 0 -139 -62.5t-45 -200.5v-71h279v-129h-279v-967h-166v967h-196z" />
87
+ <glyph unicode="g" horiz-adv-x="1122" d="M39 -186q0 100 64 173t180 99q-42 19 -70.5 59t-28.5 93q0 60 32 105t101 87q-85 35 -138.5 119t-53.5 192q0 180 108 277.5t306 97.5q86 0 155 -20h379v-105l-203 -24q28 -35 50 -91.5t22 -127.5q0 -161 -110 -257t-302 -96q-49 0 -92 8q-106 -56 -106 -141 q0 -45 37 -66.5t127 -21.5h194q178 0 273.5 -75t95.5 -218q0 -182 -146 -277.5t-426 -95.5q-215 0 -331.5 80t-116.5 226zM199 -184q0 -89 75 -135t215 -46q209 0 309.5 62.5t100.5 169.5q0 89 -55 123.5t-207 34.5h-199q-113 0 -176 -54t-63 -155zM289 745q0 -115 65 -174 t181 -59q243 0 243 236q0 247 -246 247q-117 0 -180 -63t-63 -187z" />
88
+ <glyph unicode="h" horiz-adv-x="1257" d="M176 0v1556h166v-471q0 -85 -8 -141h10q49 79 139.5 124.5t206.5 45.5q201 0 301.5 -95.5t100.5 -303.5v-715h-166v709q0 134 -61 200t-191 66q-173 0 -252.5 -94t-79.5 -308v-573h-166z" />
89
+ <glyph unicode="i" horiz-adv-x="518" d="M162 1393q0 57 28 83.5t70 26.5q40 0 69 -27t29 -83t-29 -83.5t-69 -27.5q-42 0 -70 27.5t-28 83.5zM176 0v1096h166v-1096h-166z" />
90
+ <glyph unicode="j" horiz-adv-x="518" d="M-111 -332q69 -20 136 -20q78 0 114.5 42.5t36.5 129.5v1276h166v-1264q0 -324 -299 -324q-95 0 -154 25v135zM162 1393q0 57 28 83.5t70 26.5q40 0 69 -27t29 -83t-29 -83.5t-69 -27.5q-42 0 -70 27.5t-28 83.5z" />
91
+ <glyph unicode="k" horiz-adv-x="1075" d="M176 0v1556h164v-825q0 -55 -8 -170h8q43 61 131 160l354 375h197l-444 -467l475 -629h-201l-387 518l-125 -108v-410h-164z" />
92
+ <glyph unicode="l" horiz-adv-x="518" d="M176 0v1556h166v-1556h-166z" />
93
+ <glyph unicode="m" horiz-adv-x="1905" d="M176 0v1096h135l27 -150h8q47 80 132.5 125t191.5 45q257 0 336 -186h8q49 86 142 136t212 50q186 0 278.5 -95.5t92.5 -305.5v-715h-166v713q0 131 -56 196.5t-174 65.5q-155 0 -229 -89t-74 -274v-612h-166v713q0 131 -56 196.5t-175 65.5q-156 0 -228.5 -93.5 t-72.5 -306.5v-575h-166z" />
94
+ <glyph unicode="n" horiz-adv-x="1257" d="M176 0v1096h135l27 -150h8q51 81 143 125.5t205 44.5q198 0 298 -95.5t100 -305.5v-715h-166v709q0 134 -61 200t-191 66q-172 0 -252 -93t-80 -307v-575h-166z" />
95
+ <glyph unicode="o" horiz-adv-x="1237" d="M115 549q0 268 134 417.5t372 149.5q230 0 365.5 -153t135.5 -414q0 -268 -135 -418.5t-373 -150.5q-147 0 -261 69t-176 198t-62 302zM287 549q0 -210 84 -320t247 -110t247.5 109.5t84.5 320.5q0 209 -84.5 317.5t-249.5 108.5q-163 0 -246 -107t-83 -319z" />
96
+ <glyph unicode="p" horiz-adv-x="1255" d="M176 -492v1588h135l23 -150h8q64 90 149 130t195 40q218 0 336.5 -149t118.5 -418q0 -270 -120.5 -419.5t-334.5 -149.5q-107 0 -195.5 39.5t-148.5 121.5h-12q12 -96 12 -182v-451h-166zM342 549q0 -231 77 -330.5t247 -99.5q142 0 222.5 115t80.5 317 q0 205 -80.5 314.5t-226.5 109.5q-168 0 -243 -93t-77 -296v-37z" />
97
+ <glyph unicode="q" horiz-adv-x="1255" d="M115 545q0 269 120 420t334 151q225 0 346 -170h9l24 150h131v-1588h-166v469q0 100 11 170h-13q-115 -167 -346 -167q-212 0 -331 149t-119 416zM287 543q0 -207 76.5 -315.5t226.5 -108.5q166 0 242 89t81 300v37q0 230 -78 331t-247 101q-146 0 -223.5 -113.5 t-77.5 -320.5z" />
98
+ <glyph unicode="r" horiz-adv-x="836" d="M176 0v1096h137l19 -203h8q61 107 147 165t189 58q73 0 131 -12l-23 -154q-68 15 -120 15q-133 0 -227.5 -108t-94.5 -269v-588h-166z" />
99
+ <glyph unicode="s" horiz-adv-x="977" d="M106 827q0 134 109 211.5t299 77.5q177 0 346 -72l-59 -135q-165 68 -299 68q-118 0 -178 -37t-60 -102q0 -44 22.5 -75t72.5 -59t192 -81q195 -71 263.5 -143t68.5 -181q0 -153 -114 -236t-320 -83q-218 0 -340 69v154q79 -40 169.5 -63t174.5 -23q130 0 200 41.5 t70 126.5q0 64 -55.5 109.5t-216.5 107.5q-153 57 -217.5 99.5t-96 96.5t-31.5 129z" />
100
+ <glyph unicode="t" horiz-adv-x="723" d="M31 967v80l157 69l70 234h96v-254h318v-129h-318v-645q0 -99 47 -152t129 -53q44 0 85 6.5t65 13.5v-127q-27 -13 -79.5 -21.5t-94.5 -8.5q-318 0 -318 335v652h-157z" />
101
+ <glyph unicode="u" horiz-adv-x="1257" d="M164 379v717h168v-711q0 -134 61 -200t191 -66q172 0 251.5 94t79.5 307v576h166v-1096h-137l-24 147h-9q-51 -81 -141.5 -124t-206.5 -43q-200 0 -299.5 95t-99.5 304z" />
102
+ <glyph unicode="v" horiz-adv-x="1026" d="M0 1096h178l236 -650q80 -228 94 -296h8q11 53 69.5 219.5t262.5 726.5h178l-416 -1096h-194z" />
103
+ <glyph unicode="w" horiz-adv-x="1593" d="M23 1096h174q106 -413 161.5 -629t63.5 -291h8q11 57 35.5 147.5t42.5 143.5l201 629h180l196 -629q56 -172 76 -289h8q4 36 21.5 111t208.5 807h172l-303 -1096h-197l-201 643q-19 59 -71 268h-8q-40 -175 -70 -270l-207 -641h-192z" />
104
+ <glyph unicode="x" horiz-adv-x="1073" d="M39 0l401 561l-381 535h189l289 -420l288 420h187l-381 -535l401 -561h-188l-307 444l-310 -444h-188z" />
105
+ <glyph unicode="y" horiz-adv-x="1032" d="M2 1096h178l240 -625q79 -214 98 -309h8q13 51 54.5 174.5t271.5 759.5h178l-471 -1248q-70 -185 -163.5 -262.5t-229.5 -77.5q-76 0 -150 17v133q55 -12 123 -12q171 0 244 192l61 156z" />
106
+ <glyph unicode="z" horiz-adv-x="958" d="M82 0v113l598 854h-561v129h743v-129l-590 -838h605v-129h-795z" />
107
+ <glyph unicode="{" horiz-adv-x="776" d="M61 498v141q130 2 188 48t58 142v306q0 155 108 241t290 86v-139q-230 -6 -230 -199v-295q0 -215 -223 -254v-12q223 -39 223 -254v-297q0 -102 58.5 -148t171.5 -48v-140q-190 2 -294 87t-104 239v303q0 104 -63 148.5t-183 44.5z" />
108
+ <glyph unicode="|" horiz-adv-x="1128" d="M494 -496v2052h141v-2052h-141z" />
109
+ <glyph unicode="}" horiz-adv-x="776" d="M72 -184q111 2 169 48t58 148v297q0 114 55 174t168 80v12q-223 39 -223 254v295q0 193 -227 199v139q184 0 289.5 -87t105.5 -240v-306q0 -97 59 -142.5t189 -47.5v-141q-122 0 -185 -44.5t-63 -148.5v-303q0 -153 -102.5 -238.5t-292.5 -87.5v140z" />
110
+ <glyph unicode="~" d="M104 592v151q100 109 244 109q68 0 124.5 -14t145.5 -52q66 -28 115 -41.5t96 -13.5q54 0 118 32t118 89v-150q-102 -110 -244 -110q-72 0 -135 16.5t-135 48.5q-75 32 -120 44t-93 12q-53 0 -116.5 -33.5t-117.5 -87.5z" />
111
+ <glyph unicode="&#xa1;" horiz-adv-x="547" d="M152 983q0 63 31.5 99t88.5 36q51 0 86 -32t35 -103q0 -135 -121 -135q-60 0 -90 35.5t-30 99.5zM168 -373l51 1057h105l51 -1057h-207z" />
112
+ <glyph unicode="&#xa2;" d="M190 741q0 508 396 570v172h135v-164q75 -3 146 -19.5t120 -39.5l-49 -140q-133 51 -242 51q-172 0 -253 -105.5t-81 -322.5q0 -212 79.5 -313.5t246.5 -101.5q141 0 283 59v-147q-105 -54 -252 -60v-200h-133v206q-203 32 -299.5 168.5t-96.5 386.5z" />
113
+ <glyph unicode="&#xa3;" d="M63 0v141q205 47 205 291v223h-198v127h198v316q0 178 112 280.5t302 102.5t360 -84l-61 -133q-154 77 -297 77q-123 0 -185.5 -62t-62.5 -202v-295h422v-127h-422v-221q0 -100 -32.5 -168t-106.5 -112h795v-154h-1029z" />
114
+ <glyph unicode="&#xa4;" d="M123 1092l94 92l135 -133q104 73 234 73q127 0 229 -73l137 133l95 -92l-134 -138q74 -113 74 -231q0 -131 -74 -234l131 -135l-92 -92l-137 133q-102 -71 -229 -71q-134 0 -234 73l-135 -133l-92 92l133 136q-74 107 -74 231q0 122 74 229zM313 723q0 -112 78.5 -192 t194.5 -80t195 79.5t79 192.5q0 114 -80 195t-194 81q-116 0 -194.5 -82t-78.5 -194z" />
115
+ <glyph unicode="&#xa5;" d="M31 1462h178l375 -727l379 727h174l-416 -770h262v-127h-317v-170h317v-127h-317v-268h-164v268h-316v127h316v170h-316v127h256z" />
116
+ <glyph unicode="&#xa6;" horiz-adv-x="1128" d="M494 281h141v-777h-141v777zM494 780v776h141v-776h-141z" />
117
+ <glyph unicode="&#xa7;" horiz-adv-x="1057" d="M123 57v148q78 -37 175 -59.5t179 -22.5q134 0 204.5 38t70.5 109q0 46 -24 75t-78 58t-169 72q-142 52 -209 97t-100 102t-33 135q0 86 43 154.5t121 105.5q-74 40 -116 95.5t-42 140.5q0 121 103.5 190.5t300.5 69.5q94 0 173.5 -14.5t176.5 -53.5l-53 -131 q-98 39 -165.5 52.5t-143.5 13.5q-116 0 -174 -29.5t-58 -93.5q0 -60 61.5 -102t215.5 -97q186 -68 261 -143.5t75 -182.5q0 -90 -41 -160.5t-115 -111.5q153 -81 153 -227q0 -140 -117 -216.5t-329 -76.5q-218 0 -346 65zM285 829q0 -77 66 -129.5t233 -113.5l49 -19 q137 80 137 191q0 83 -73.5 139t-258.5 113q-68 -19 -110.5 -69t-42.5 -112z" />
118
+ <glyph unicode="&#xa8;" horiz-adv-x="1182" d="M309 1393q0 52 26.5 75t63.5 23q38 0 65.5 -23t27.5 -75q0 -50 -27.5 -74.5t-65.5 -24.5q-37 0 -63.5 24.5t-26.5 74.5zM690 1393q0 52 26.5 75t63.5 23t64.5 -23t27.5 -75q0 -50 -27.5 -74.5t-64.5 -24.5t-63.5 24.5t-26.5 74.5z" />
119
+ <glyph unicode="&#xa9;" horiz-adv-x="1704" d="M100 731q0 200 100 375t275 276t377 101q200 0 375 -100t276 -275t101 -377q0 -197 -97 -370t-272 -277t-383 -104q-207 0 -382 103.5t-272.5 276.5t-97.5 371zM205 731q0 -173 87 -323.5t237.5 -237t322.5 -86.5q174 0 323 87t236.5 235.5t87.5 324.5q0 174 -87 323 t-235.5 236.5t-324.5 87.5q-174 0 -323 -87t-236.5 -235.5t-87.5 -324.5zM481 731q0 209 110.5 332t301.5 123q128 0 246 -60l-58 -118q-108 51 -188 51q-125 0 -192.5 -87t-67.5 -241q0 -168 63.5 -249t194.5 -81q86 0 211 45v-124q-48 -20 -98.5 -34t-120.5 -14 q-194 0 -298 120.5t-104 336.5z" />
120
+ <glyph unicode="&#xaa;" horiz-adv-x="725" d="M70 989q0 102 77 154.5t242 58.5l117 4v39q0 133 -148 133q-100 0 -204 -51l-43 96q114 56 247 56q130 0 198.5 -52.5t68.5 -173.5v-452h-93l-24 84q-92 -97 -232 -97q-95 0 -150.5 49.5t-55.5 151.5zM193 989q0 -100 112 -100q201 0 201 180v49l-98 -4 q-112 -4 -163.5 -32.5t-51.5 -92.5z" />
121
+ <glyph unicode="&#xab;" horiz-adv-x="1018" d="M82 524v27l342 407l119 -69l-289 -350l289 -351l-119 -71zM477 524v27l344 407l117 -69l-287 -350l287 -351l-117 -71z" />
122
+ <glyph unicode="&#xac;" d="M104 653v138h961v-527h-137v389h-824z" />
123
+ <glyph unicode="&#xad;" horiz-adv-x="659" d="M84 473v152h491v-152h-491z" />
124
+ <glyph unicode="&#xae;" horiz-adv-x="1704" d="M100 731q0 200 100 375t275 276t377 101q200 0 375 -100t276 -275t101 -377q0 -197 -97 -370t-272 -277t-383 -104q-207 0 -382 103.5t-272.5 276.5t-97.5 371zM205 731q0 -173 87 -323.5t237.5 -237t322.5 -86.5q174 0 323 87t236.5 235.5t87.5 324.5q0 174 -87 323 t-235.5 236.5t-324.5 87.5q-174 0 -323 -87t-236.5 -235.5t-87.5 -324.5zM575 285v891h261q166 0 243.5 -65t77.5 -198q0 -80 -42.5 -141.5t-119.5 -91.5l238 -395h-168l-207 354h-135v-354h-148zM723 762h108q80 0 128.5 41.5t48.5 105.5q0 75 -43 107.5t-136 32.5h-106 v-287z" />
125
+ <glyph unicode="&#xaf;" horiz-adv-x="1024" d="M-6 1556v127h1036v-127h-1036z" />
126
+ <glyph unicode="&#xb0;" horiz-adv-x="877" d="M127 1171q0 130 90.5 221t220.5 91t221 -90.5t91 -221.5q0 -84 -41 -155.5t-114 -113.5t-157 -42q-130 0 -220.5 90t-90.5 221zM242 1171q0 -82 58.5 -139t139.5 -57q80 0 137.5 56.5t57.5 139.5q0 84 -56.5 140.5t-138.5 56.5q-83 0 -140.5 -57t-57.5 -140z" />
127
+ <glyph unicode="&#xb1;" d="M104 653v138h410v428h139v-428h412v-138h-412v-426h-139v426h-410zM104 1v138h961v-138h-961z" />
128
+ <glyph unicode="&#xb2;" horiz-adv-x="711" d="M49 586v104l236 230q89 86 130 134.5t57.5 86.5t16.5 92q0 68 -40 102.5t-103 34.5q-52 0 -101 -19t-118 -69l-66 88q131 111 283 111q132 0 205.5 -65t73.5 -177q0 -80 -44.5 -155.5t-191.5 -213.5l-174 -165h440v-119h-604z" />
129
+ <glyph unicode="&#xb3;" horiz-adv-x="711" d="M33 625v123q147 -68 270 -68q211 0 211 162q0 145 -231 145h-117v107h119q103 0 152.5 39.5t49.5 107.5q0 61 -40 95t-107 34q-66 0 -122 -21.5t-112 -56.5l-69 90q63 45 133 72t164 27q136 0 214.5 -59.5t78.5 -166.5q0 -80 -41 -131.5t-109 -74.5q176 -47 176 -209 q0 -128 -92 -199.5t-260 -71.5q-152 0 -268 56z" />
130
+ <glyph unicode="&#xb4;" horiz-adv-x="1182" d="M393 1241v25q48 62 103.5 150t87.5 153h202v-21q-44 -65 -131 -160t-151 -147h-111z" />
131
+ <glyph unicode="&#xb5;" horiz-adv-x="1268" d="M176 -492v1588h166v-715q0 -262 254 -262q171 0 250.5 94.5t79.5 306.5v576h166v-1096h-136l-26 147h-10q-111 -167 -340 -167q-150 0 -238 92h-10q10 -84 10 -244v-320h-166z" />
132
+ <glyph unicode="&#xb6;" horiz-adv-x="1341" d="M113 1042q0 260 109 387t341 127h557v-1816h-114v1712h-213v-1712h-115v819q-62 -18 -146 -18q-216 0 -317.5 125t-101.5 376z" />
133
+ <glyph unicode="&#xb7;" horiz-adv-x="545" d="M152 723q0 66 31 100.5t87 34.5q58 0 90.5 -34.5t32.5 -100.5q0 -65 -33 -100t-90 -35q-51 0 -84.5 31.5t-33.5 103.5z" />
134
+ <glyph unicode="&#xb8;" horiz-adv-x="465" d="M37 -377q45 -8 104 -8q79 0 119.5 20t40.5 74q0 43 -39.5 69.5t-148.5 43.5l88 178h110l-55 -115q180 -39 180 -174q0 -97 -76.5 -150t-226.5 -53q-51 0 -96 9v106z" />
135
+ <glyph unicode="&#xb9;" horiz-adv-x="711" d="M76 1280l262 182h143v-876h-133v579q0 91 6 181q-22 -22 -49 -44.5t-162 -117.5z" />
136
+ <glyph unicode="&#xba;" horiz-adv-x="768" d="M66 1135q0 163 84 253.5t235 90.5q152 0 234.5 -91t82.5 -253q0 -164 -85.5 -255.5t-235.5 -91.5q-146 0 -230.5 93t-84.5 254zM188 1135q0 -122 45.5 -183t149.5 -61q105 0 151 61t46 183q0 123 -46 182t-151 59q-103 0 -149 -59t-46 -182z" />
137
+ <glyph unicode="&#xbb;" horiz-adv-x="1018" d="M80 188l287 351l-287 350l117 69l344 -407v-27l-344 -407zM475 188l287 351l-287 350l117 69l344 -407v-27l-344 -407z" />
138
+ <glyph unicode="&#xbc;" horiz-adv-x="1597" d="M252 0l903 1462h143l-903 -1462h-143zM75 1280l262 182h143v-876h-133v579q0 91 6 181q-22 -22 -49 -44.5t-162 -117.5zM817 203v101l408 579h139v-563h125v-117h-125v-202h-145v202h-402zM957 320h262v195q0 134 6 209q-5 -12 -17 -31.5t-27 -41.5l-30 -46 q-15 -22 -26 -39z" />
139
+ <glyph unicode="&#xbd;" horiz-adv-x="1597" d="M184 0l903 1462h143l-903 -1462h-143zM46 1280l262 182h143v-876h-133v579q0 91 6 181q-22 -22 -49 -44.5t-162 -117.5zM895 1v104l236 230q89 86 130 134.5t57.5 86.5t16.5 92q0 68 -40 102.5t-103 34.5q-52 0 -101 -19t-118 -69l-66 88q131 111 283 111 q132 0 205.5 -65t73.5 -177q0 -80 -44.5 -155.5t-191.5 -213.5l-174 -165h440v-119h-604z" />
140
+ <glyph unicode="&#xbe;" horiz-adv-x="1597" d="M26 625v123q147 -68 270 -68q211 0 211 162q0 145 -231 145h-117v107h119q103 0 152.5 39.5t49.5 107.5q0 61 -40 95t-107 34q-66 0 -122 -21.5t-112 -56.5l-69 90q63 45 133 72t164 27q136 0 214.5 -59.5t78.5 -166.5q0 -80 -41 -131.5t-109 -74.5q176 -47 176 -209 q0 -128 -92 -199.5t-260 -71.5q-152 0 -268 56zM344 0l903 1462h143l-903 -1462h-143zM897 203v101l408 579h139v-563h125v-117h-125v-202h-145v202h-402zM1037 320h262v195q0 134 6 209q-5 -12 -17 -31.5t-27 -41.5l-30 -46q-15 -22 -26 -39z" />
141
+ <glyph unicode="&#xbf;" horiz-adv-x="879" d="M51 -37q0 70 17.5 122.5t49.5 97t76.5 85.5t98.5 88q101 88 133.5 146t32.5 151v31h131v-51q0 -122 -37.5 -196t-134.5 -158q-121 -106 -151.5 -143.5t-43 -76t-12.5 -94.5q0 -100 66 -156.5t188 -56.5q80 0 155 19t173 67l59 -135q-197 -96 -395 -96q-190 0 -298 93 t-108 263zM397 983q0 64 33 99.5t88 35.5q51 0 86 -32t35 -103q0 -135 -121 -135q-59 0 -90 34.5t-31 100.5z" />
142
+ <glyph unicode="&#xc0;" horiz-adv-x="1296" d="M0 0l578 1468h143l575 -1468h-176l-182 465h-586l-180 -465h-172zM412 618h473l-170 453q-33 86 -68 211q-22 -96 -63 -211zM331 1886v21h203q32 -69 89 -159.5t101 -143.5v-25h-110q-65 52 -154 148t-129 159z" />
143
+ <glyph unicode="&#xc1;" horiz-adv-x="1296" d="M0 0l578 1468h143l575 -1468h-176l-182 465h-586l-180 -465h-172zM412 618h473l-170 453q-33 86 -68 211q-22 -96 -63 -211zM526 1579v25q48 62 103.5 150t87.5 153h202v-21q-44 -65 -131 -160t-151 -147h-111z" />
144
+ <glyph unicode="&#xc2;" horiz-adv-x="1296" d="M0 0l578 1468h143l575 -1468h-176l-182 465h-586l-180 -465h-172zM412 618h473l-170 453q-33 86 -68 211q-22 -96 -63 -211zM303 1579v23q127 136 178 200t74 105h166q22 -42 76.5 -108.5t179.5 -196.5v-23h-119q-88 55 -221 186q-136 -134 -219 -186h-115z" />
145
+ <glyph unicode="&#xc3;" horiz-adv-x="1296" d="M0 0l578 1468h143l575 -1468h-176l-182 465h-586l-180 -465h-172zM412 618h473l-170 453q-33 86 -68 211q-22 -96 -63 -211zM268 1579q13 121 70.5 189.5t148.5 68.5q46 0 89 -18.5t82 -41t75 -41t68 -18.5q49 0 73 29.5t39 91.5h99q-13 -121 -69.5 -189.5t-150.5 -68.5 q-43 0 -84 18.5t-80.5 41t-76 41t-70.5 18.5q-50 0 -75.5 -30t-39.5 -91h-98z" />
146
+ <glyph unicode="&#xc4;" horiz-adv-x="1296" d="M0 0l578 1468h143l575 -1468h-176l-182 465h-586l-180 -465h-172zM412 618h473l-170 453q-33 86 -68 211q-22 -96 -63 -211zM364 1731q0 52 26.5 75t63.5 23q38 0 65.5 -23t27.5 -75q0 -50 -27.5 -74.5t-65.5 -24.5q-37 0 -63.5 24.5t-26.5 74.5zM745 1731q0 52 26.5 75 t63.5 23t64.5 -23t27.5 -75q0 -50 -27.5 -74.5t-64.5 -24.5t-63.5 24.5t-26.5 74.5z" />
147
+ <glyph unicode="&#xc5;" horiz-adv-x="1296" d="M0 0l578 1468h143l575 -1468h-176l-182 465h-586l-180 -465h-172zM412 618h473l-170 453q-33 86 -68 211q-22 -96 -63 -211zM424 1585q0 98 60.5 155.5t160.5 57.5q101 0 163 -59.5t62 -151.5q0 -98 -61.5 -157.5t-163.5 -59.5q-101 0 -161 58.5t-60 156.5zM528 1585 q0 -56 30 -86.5t87 -30.5q52 0 84.5 30.5t32.5 86.5t-33 86.5t-84 30.5t-84 -30.5t-33 -86.5z" />
148
+ <glyph unicode="&#xc6;" horiz-adv-x="1788" d="M-2 0l698 1462h969v-151h-580v-471h541v-150h-541v-538h580v-152h-750v465h-514l-227 -465h-176zM469 618h446v693h-118z" />
149
+ <glyph unicode="&#xc7;" horiz-adv-x="1292" d="M125 733q0 226 84.5 396t244 262t375.5 92q230 0 402 -84l-72 -146q-166 78 -332 78q-241 0 -380.5 -160.5t-139.5 -439.5q0 -287 134.5 -443.5t383.5 -156.5q153 0 349 55v-149q-152 -57 -375 -57q-323 0 -498.5 196t-175.5 557zM551 -377q45 -8 104 -8q79 0 119.5 20 t40.5 74q0 43 -39.5 69.5t-148.5 43.5l88 178h110l-55 -115q180 -39 180 -174q0 -97 -76.5 -150t-226.5 -53q-51 0 -96 9v106z" />
150
+ <glyph unicode="&#xc8;" horiz-adv-x="1139" d="M201 0v1462h815v-151h-645v-471h606v-150h-606v-538h645v-152h-815zM320 1886v21h203q32 -69 89 -159.5t101 -143.5v-25h-110q-65 52 -154 148t-129 159z" />
151
+ <glyph unicode="&#xc9;" horiz-adv-x="1139" d="M201 0v1462h815v-151h-645v-471h606v-150h-606v-538h645v-152h-815zM456 1579v25q48 62 103.5 150t87.5 153h202v-21q-44 -65 -131 -160t-151 -147h-111z" />
152
+ <glyph unicode="&#xca;" horiz-adv-x="1139" d="M201 0v1462h815v-151h-645v-471h606v-150h-606v-538h645v-152h-815zM263 1579v23q127 136 178 200t74 105h166q22 -42 76.5 -108.5t179.5 -196.5v-23h-119q-88 55 -221 186q-136 -134 -219 -186h-115z" />
153
+ <glyph unicode="&#xcb;" horiz-adv-x="1139" d="M201 0v1462h815v-151h-645v-471h606v-150h-606v-538h645v-152h-815zM327 1731q0 52 26.5 75t63.5 23q38 0 65.5 -23t27.5 -75q0 -50 -27.5 -74.5t-65.5 -24.5q-37 0 -63.5 24.5t-26.5 74.5zM708 1731q0 52 26.5 75t63.5 23t64.5 -23t27.5 -75q0 -50 -27.5 -74.5 t-64.5 -24.5t-63.5 24.5t-26.5 74.5z" />
154
+ <glyph unicode="&#xcc;" horiz-adv-x="571" d="M201 0v1462h170v-1462h-170zM5 1886v21h203q32 -69 89 -159.5t101 -143.5v-25h-110q-65 52 -154 148t-129 159z" />
155
+ <glyph unicode="&#xcd;" horiz-adv-x="571" d="M201 0v1462h170v-1462h-170zM179 1579v25q48 62 103.5 150t87.5 153h202v-21q-44 -65 -131 -160t-151 -147h-111z" />
156
+ <glyph unicode="&#xce;" horiz-adv-x="571" d="M201 0v1462h170v-1462h-170zM-57 1579v23q127 136 178 200t74 105h166q22 -42 76.5 -108.5t179.5 -196.5v-23h-119q-88 55 -221 186q-136 -134 -219 -186h-115z" />
157
+ <glyph unicode="&#xcf;" horiz-adv-x="571" d="M201 0v1462h170v-1462h-170zM5 1731q0 52 26.5 75t63.5 23q38 0 65.5 -23t27.5 -75q0 -50 -27.5 -74.5t-65.5 -24.5q-37 0 -63.5 24.5t-26.5 74.5zM386 1731q0 52 26.5 75t63.5 23t64.5 -23t27.5 -75q0 -50 -27.5 -74.5t-64.5 -24.5t-63.5 24.5t-26.5 74.5z" />
158
+ <glyph unicode="&#xd0;" horiz-adv-x="1479" d="M47 649v150h154v663h434q337 0 527 -187.5t190 -529.5q0 -362 -196.5 -553.5t-565.5 -191.5h-389v649h-154zM371 147h190q610 0 610 592q0 576 -569 576h-231v-516h379v-150h-379v-502z" />
159
+ <glyph unicode="&#xd1;" horiz-adv-x="1544" d="M201 0v1462h192l797 -1222h8q-2 28 -9 174q-5 114 -5 177v32v839h159v-1462h-194l-799 1227h-8q16 -216 16 -396v-831h-157zM411 1579q13 121 70.5 189.5t148.5 68.5q46 0 89 -18.5t82 -41t75 -41t68 -18.5q49 0 73 29.5t39 91.5h99q-13 -121 -69.5 -189.5t-150.5 -68.5 q-43 0 -84 18.5t-80.5 41t-76 41t-70.5 18.5q-50 0 -75.5 -30t-39.5 -91h-98z" />
160
+ <glyph unicode="&#xd2;" horiz-adv-x="1595" d="M125 735q0 357 176 553.5t500 196.5q315 0 492 -200t177 -552q0 -351 -177.5 -552t-493.5 -201q-323 0 -498.5 197.5t-175.5 557.5zM305 733q0 -297 126.5 -450.5t367.5 -153.5q243 0 367 153t124 451q0 295 -123.5 447.5t-365.5 152.5q-243 0 -369.5 -153.5 t-126.5 -446.5zM514 1886v21h203q32 -69 89 -159.5t101 -143.5v-25h-110q-65 52 -154 148t-129 159z" />
161
+ <glyph unicode="&#xd3;" horiz-adv-x="1595" d="M125 735q0 357 176 553.5t500 196.5q315 0 492 -200t177 -552q0 -351 -177.5 -552t-493.5 -201q-323 0 -498.5 197.5t-175.5 557.5zM305 733q0 -297 126.5 -450.5t367.5 -153.5q243 0 367 153t124 451q0 295 -123.5 447.5t-365.5 152.5q-243 0 -369.5 -153.5 t-126.5 -446.5zM659 1579v25q48 62 103.5 150t87.5 153h202v-21q-44 -65 -131 -160t-151 -147h-111z" />
162
+ <glyph unicode="&#xd4;" horiz-adv-x="1595" d="M125 735q0 357 176 553.5t500 196.5q315 0 492 -200t177 -552q0 -351 -177.5 -552t-493.5 -201q-323 0 -498.5 197.5t-175.5 557.5zM305 733q0 -297 126.5 -450.5t367.5 -153.5q243 0 367 153t124 451q0 295 -123.5 447.5t-365.5 152.5q-243 0 -369.5 -153.5 t-126.5 -446.5zM448 1579v23q127 136 178 200t74 105h166q22 -42 76.5 -108.5t179.5 -196.5v-23h-119q-88 55 -221 186q-136 -134 -219 -186h-115z" />
163
+ <glyph unicode="&#xd5;" horiz-adv-x="1595" d="M125 735q0 357 176 553.5t500 196.5q315 0 492 -200t177 -552q0 -351 -177.5 -552t-493.5 -201q-323 0 -498.5 197.5t-175.5 557.5zM305 733q0 -297 126.5 -450.5t367.5 -153.5q243 0 367 153t124 451q0 295 -123.5 447.5t-365.5 152.5q-243 0 -369.5 -153.5 t-126.5 -446.5zM418 1579q13 121 70.5 189.5t148.5 68.5q46 0 89 -18.5t82 -41t75 -41t68 -18.5q49 0 73 29.5t39 91.5h99q-13 -121 -69.5 -189.5t-150.5 -68.5q-43 0 -84 18.5t-80.5 41t-76 41t-70.5 18.5q-50 0 -75.5 -30t-39.5 -91h-98z" />
164
+ <glyph unicode="&#xd6;" horiz-adv-x="1595" d="M125 735q0 357 176 553.5t500 196.5q315 0 492 -200t177 -552q0 -351 -177.5 -552t-493.5 -201q-323 0 -498.5 197.5t-175.5 557.5zM305 733q0 -297 126.5 -450.5t367.5 -153.5q243 0 367 153t124 451q0 295 -123.5 447.5t-365.5 152.5q-243 0 -369.5 -153.5 t-126.5 -446.5zM522 1731q0 52 26.5 75t63.5 23q38 0 65.5 -23t27.5 -75q0 -50 -27.5 -74.5t-65.5 -24.5q-37 0 -63.5 24.5t-26.5 74.5zM903 1731q0 52 26.5 75t63.5 23t64.5 -23t27.5 -75q0 -50 -27.5 -74.5t-64.5 -24.5t-63.5 24.5t-26.5 74.5z" />
165
+ <glyph unicode="&#xd7;" d="M133 1075l100 101l353 -355l354 355l96 -99l-352 -354l350 -352l-96 -99l-354 351l-348 -351l-101 99l350 352z" />
166
+ <glyph unicode="&#xd8;" horiz-adv-x="1595" d="M125 735q0 357 176 553.5t500 196.5q209 0 366 -94l97 135l120 -80l-106 -148q192 -202 192 -565q0 -351 -177.5 -552t-493.5 -201q-235 0 -383 100l-101 -141l-120 79l108 154q-178 198 -178 563zM305 733q0 -262 101 -416l669 943q-106 73 -274 73 q-243 0 -369.5 -153.5t-126.5 -446.5zM508 211q115 -82 291 -82q243 0 367 153t124 451q0 272 -110 426z" />
167
+ <glyph unicode="&#xd9;" horiz-adv-x="1491" d="M186 520v942h170v-954q0 -183 100 -281t294 -98q185 0 285 98.5t100 282.5v952h170v-946q0 -250 -151 -393t-415 -143t-408.5 144t-144.5 396zM463 1886v21h203q32 -69 89 -159.5t101 -143.5v-25h-110q-65 52 -154 148t-129 159z" />
168
+ <glyph unicode="&#xda;" horiz-adv-x="1491" d="M186 520v942h170v-954q0 -183 100 -281t294 -98q185 0 285 98.5t100 282.5v952h170v-946q0 -250 -151 -393t-415 -143t-408.5 144t-144.5 396zM600 1579v25q48 62 103.5 150t87.5 153h202v-21q-44 -65 -131 -160t-151 -147h-111z" />
169
+ <glyph unicode="&#xdb;" horiz-adv-x="1491" d="M186 520v942h170v-954q0 -183 100 -281t294 -98q185 0 285 98.5t100 282.5v952h170v-946q0 -250 -151 -393t-415 -143t-408.5 144t-144.5 396zM393 1579v23q127 136 178 200t74 105h166q22 -42 76.5 -108.5t179.5 -196.5v-23h-119q-88 55 -221 186q-136 -134 -219 -186 h-115z" />
170
+ <glyph unicode="&#xdc;" horiz-adv-x="1491" d="M186 520v942h170v-954q0 -183 100 -281t294 -98q185 0 285 98.5t100 282.5v952h170v-946q0 -250 -151 -393t-415 -143t-408.5 144t-144.5 396zM461 1731q0 52 26.5 75t63.5 23q38 0 65.5 -23t27.5 -75q0 -50 -27.5 -74.5t-65.5 -24.5q-37 0 -63.5 24.5t-26.5 74.5z M842 1731q0 52 26.5 75t63.5 23t64.5 -23t27.5 -75q0 -50 -27.5 -74.5t-64.5 -24.5t-63.5 24.5t-26.5 74.5z" />
171
+ <glyph unicode="&#xdd;" horiz-adv-x="1147" d="M0 1462h186l387 -731l390 731h184l-488 -895v-567h-172v559zM442 1579v25q48 62 103.5 150t87.5 153h202v-21q-44 -65 -131 -160t-151 -147h-111z" />
172
+ <glyph unicode="&#xde;" horiz-adv-x="1251" d="M201 0v1462h170v-256h215q281 0 420 -103.5t139 -318.5q0 -227 -151.5 -346t-438.5 -119h-184v-319h-170zM371 465h168q226 0 327 71.5t101 235.5q0 149 -95 218t-297 69h-204v-594z" />
173
+ <glyph unicode="&#xdf;" horiz-adv-x="1274" d="M176 0v1202q0 178 110 271.5t332 93.5q206 0 318.5 -78.5t112.5 -222.5q0 -135 -143 -250q-88 -70 -116 -103.5t-28 -66.5q0 -32 13.5 -53t49 -49.5t113.5 -79.5q140 -95 191 -173.5t51 -179.5q0 -160 -97 -245.5t-276 -85.5q-188 0 -295 69v154q63 -39 141 -62.5 t150 -23.5q215 0 215 182q0 75 -41.5 128.5t-151.5 123.5q-127 82 -175 143.5t-48 145.5q0 63 34.5 116t105.5 106q75 57 107 102t32 98q0 80 -68 122.5t-195 42.5q-276 0 -276 -223v-1204h-166z" />
174
+ <glyph unicode="&#xe0;" horiz-adv-x="1139" d="M94 303q0 332 531 348l186 6v68q0 129 -55.5 190.5t-177.5 61.5q-137 0 -310 -84l-51 127q81 44 177.5 69t193.5 25q196 0 290.5 -87t94.5 -279v-748h-123l-33 156h-8q-82 -103 -163.5 -139.5t-203.5 -36.5q-163 0 -255.5 84t-92.5 239zM268 301q0 -90 54.5 -137 t152.5 -47q155 0 243.5 85t88.5 238v99l-166 -7q-198 -7 -285.5 -61.5t-87.5 -169.5zM279 1548v21h203q32 -69 89 -159.5t101 -143.5v-25h-110q-65 52 -154 148t-129 159z" />
175
+ <glyph unicode="&#xe1;" horiz-adv-x="1139" d="M94 303q0 332 531 348l186 6v68q0 129 -55.5 190.5t-177.5 61.5q-137 0 -310 -84l-51 127q81 44 177.5 69t193.5 25q196 0 290.5 -87t94.5 -279v-748h-123l-33 156h-8q-82 -103 -163.5 -139.5t-203.5 -36.5q-163 0 -255.5 84t-92.5 239zM268 301q0 -90 54.5 -137 t152.5 -47q155 0 243.5 85t88.5 238v99l-166 -7q-198 -7 -285.5 -61.5t-87.5 -169.5zM436 1241v25q48 62 103.5 150t87.5 153h202v-21q-44 -65 -131 -160t-151 -147h-111z" />
176
+ <glyph unicode="&#xe2;" horiz-adv-x="1139" d="M94 303q0 332 531 348l186 6v68q0 129 -55.5 190.5t-177.5 61.5q-137 0 -310 -84l-51 127q81 44 177.5 69t193.5 25q196 0 290.5 -87t94.5 -279v-748h-123l-33 156h-8q-82 -103 -163.5 -139.5t-203.5 -36.5q-163 0 -255.5 84t-92.5 239zM268 301q0 -90 54.5 -137 t152.5 -47q155 0 243.5 85t88.5 238v99l-166 -7q-198 -7 -285.5 -61.5t-87.5 -169.5zM228 1241v23q127 136 178 200t74 105h166q22 -42 76.5 -108.5t179.5 -196.5v-23h-119q-88 55 -221 186q-136 -134 -219 -186h-115z" />
177
+ <glyph unicode="&#xe3;" horiz-adv-x="1139" d="M94 303q0 332 531 348l186 6v68q0 129 -55.5 190.5t-177.5 61.5q-137 0 -310 -84l-51 127q81 44 177.5 69t193.5 25q196 0 290.5 -87t94.5 -279v-748h-123l-33 156h-8q-82 -103 -163.5 -139.5t-203.5 -36.5q-163 0 -255.5 84t-92.5 239zM268 301q0 -90 54.5 -137 t152.5 -47q155 0 243.5 85t88.5 238v99l-166 -7q-198 -7 -285.5 -61.5t-87.5 -169.5zM197 1241q13 121 70.5 189.5t148.5 68.5q46 0 89 -18.5t82 -41t75 -41t68 -18.5q49 0 73 29.5t39 91.5h99q-13 -121 -69.5 -189.5t-150.5 -68.5q-43 0 -84 18.5t-80.5 41t-76 41 t-70.5 18.5q-50 0 -75.5 -30t-39.5 -91h-98z" />
178
+ <glyph unicode="&#xe4;" horiz-adv-x="1139" d="M94 303q0 332 531 348l186 6v68q0 129 -55.5 190.5t-177.5 61.5q-137 0 -310 -84l-51 127q81 44 177.5 69t193.5 25q196 0 290.5 -87t94.5 -279v-748h-123l-33 156h-8q-82 -103 -163.5 -139.5t-203.5 -36.5q-163 0 -255.5 84t-92.5 239zM268 301q0 -90 54.5 -137 t152.5 -47q155 0 243.5 85t88.5 238v99l-166 -7q-198 -7 -285.5 -61.5t-87.5 -169.5zM279 1393q0 52 26.5 75t63.5 23q38 0 65.5 -23t27.5 -75q0 -50 -27.5 -74.5t-65.5 -24.5q-37 0 -63.5 24.5t-26.5 74.5zM660 1393q0 52 26.5 75t63.5 23t64.5 -23t27.5 -75 q0 -50 -27.5 -74.5t-64.5 -24.5t-63.5 24.5t-26.5 74.5z" />
179
+ <glyph unicode="&#xe5;" horiz-adv-x="1139" d="M94 303q0 332 531 348l186 6v68q0 129 -55.5 190.5t-177.5 61.5q-137 0 -310 -84l-51 127q81 44 177.5 69t193.5 25q196 0 290.5 -87t94.5 -279v-748h-123l-33 156h-8q-82 -103 -163.5 -139.5t-203.5 -36.5q-163 0 -255.5 84t-92.5 239zM268 301q0 -90 54.5 -137 t152.5 -47q155 0 243.5 85t88.5 238v99l-166 -7q-198 -7 -285.5 -61.5t-87.5 -169.5zM358 1456q0 98 60.5 155.5t160.5 57.5q101 0 163 -59.5t62 -151.5q0 -98 -61.5 -157.5t-163.5 -59.5q-101 0 -161 58.5t-60 156.5zM462 1456q0 -56 30 -86.5t87 -30.5q52 0 84.5 30.5 t32.5 86.5t-33 86.5t-84 30.5t-84 -30.5t-33 -86.5z" />
180
+ <glyph unicode="&#xe6;" horiz-adv-x="1757" d="M94 303q0 161 124 250.5t378 97.5l184 6v68q0 129 -58 190.5t-177 61.5q-144 0 -307 -84l-52 127q74 41 173.5 67.5t197.5 26.5q130 0 212.5 -43.5t123.5 -138.5q53 88 138.5 136t195.5 48q192 0 308 -133.5t116 -355.5v-107h-701q8 -395 322 -395q91 0 169.5 17.5 t162.5 56.5v-148q-86 -38 -160.5 -54.5t-175.5 -16.5q-289 0 -414 233q-81 -127 -179.5 -180t-232.5 -53q-163 0 -255.5 85t-92.5 238zM268 301q0 -95 53.5 -139.5t141.5 -44.5q145 0 229 84.5t84 238.5v99l-158 -7q-186 -8 -268 -62.5t-82 -168.5zM954 653h519 q0 156 -64 240t-184 84q-121 0 -190.5 -83t-80.5 -241z" />
181
+ <glyph unicode="&#xe7;" horiz-adv-x="975" d="M115 541q0 275 132.5 425t377.5 150q79 0 158 -17t124 -40l-51 -141q-55 22 -120 36.5t-115 14.5q-334 0 -334 -426q0 -202 81.5 -310t241.5 -108q137 0 281 59v-147q-110 -57 -277 -57q-238 0 -368.5 146.5t-130.5 414.5zM363 -377q45 -8 104 -8q79 0 119.5 20t40.5 74 q0 43 -39.5 69.5t-148.5 43.5l88 178h110l-55 -115q180 -39 180 -174q0 -97 -76.5 -150t-226.5 -53q-51 0 -96 9v106z" />
182
+ <glyph unicode="&#xe8;" horiz-adv-x="1149" d="M115 539q0 265 130.5 421t350.5 156q206 0 326 -135.5t120 -357.5v-105h-755q5 -193 97.5 -293t260.5 -100q177 0 350 74v-148q-88 -38 -166.5 -54.5t-189.5 -16.5q-243 0 -383.5 148t-140.5 411zM291 653h573q0 157 -70 240.5t-200 83.5q-132 0 -210.5 -86t-92.5 -238z M318 1548v21h203q32 -69 89 -159.5t101 -143.5v-25h-110q-65 52 -154 148t-129 159z" />
183
+ <glyph unicode="&#xe9;" horiz-adv-x="1149" d="M115 539q0 265 130.5 421t350.5 156q206 0 326 -135.5t120 -357.5v-105h-755q5 -193 97.5 -293t260.5 -100q177 0 350 74v-148q-88 -38 -166.5 -54.5t-189.5 -16.5q-243 0 -383.5 148t-140.5 411zM291 653h573q0 157 -70 240.5t-200 83.5q-132 0 -210.5 -86t-92.5 -238z M471 1241v25q48 62 103.5 150t87.5 153h202v-21q-44 -65 -131 -160t-151 -147h-111z" />
184
+ <glyph unicode="&#xea;" horiz-adv-x="1149" d="M115 539q0 265 130.5 421t350.5 156q206 0 326 -135.5t120 -357.5v-105h-755q5 -193 97.5 -293t260.5 -100q177 0 350 74v-148q-88 -38 -166.5 -54.5t-189.5 -16.5q-243 0 -383.5 148t-140.5 411zM291 653h573q0 157 -70 240.5t-200 83.5q-132 0 -210.5 -86t-92.5 -238z M259 1241v23q127 136 178 200t74 105h166q22 -42 76.5 -108.5t179.5 -196.5v-23h-119q-88 55 -221 186q-136 -134 -219 -186h-115z" />
185
+ <glyph unicode="&#xeb;" horiz-adv-x="1149" d="M115 539q0 265 130.5 421t350.5 156q206 0 326 -135.5t120 -357.5v-105h-755q5 -193 97.5 -293t260.5 -100q177 0 350 74v-148q-88 -38 -166.5 -54.5t-189.5 -16.5q-243 0 -383.5 148t-140.5 411zM291 653h573q0 157 -70 240.5t-200 83.5q-132 0 -210.5 -86t-92.5 -238z M319 1393q0 52 26.5 75t63.5 23q38 0 65.5 -23t27.5 -75q0 -50 -27.5 -74.5t-65.5 -24.5q-37 0 -63.5 24.5t-26.5 74.5zM700 1393q0 52 26.5 75t63.5 23t64.5 -23t27.5 -75q0 -50 -27.5 -74.5t-64.5 -24.5t-63.5 24.5t-26.5 74.5z" />
186
+ <glyph unicode="&#xec;" horiz-adv-x="518" d="M176 0v1096h166v-1096h-166zM-38 1548v21h203q32 -69 89 -159.5t101 -143.5v-25h-110q-65 52 -154 148t-129 159z" />
187
+ <glyph unicode="&#xed;" horiz-adv-x="518" d="M176 0v1096h166v-1096h-166zM169 1241v25q48 62 103.5 150t87.5 153h202v-21q-44 -65 -131 -160t-151 -147h-111z" />
188
+ <glyph unicode="&#xee;" horiz-adv-x="518" d="M176 0v1096h166v-1096h-166zM-77 1241v23q127 136 178 200t74 105h166q22 -42 76.5 -108.5t179.5 -196.5v-23h-119q-88 55 -221 186q-136 -134 -219 -186h-115z" />
189
+ <glyph unicode="&#xef;" horiz-adv-x="518" d="M176 0v1096h166v-1096h-166zM-20 1393q0 52 26.5 75t63.5 23q38 0 65.5 -23t27.5 -75q0 -50 -27.5 -74.5t-65.5 -24.5q-37 0 -63.5 24.5t-26.5 74.5zM361 1393q0 52 26.5 75t63.5 23t64.5 -23t27.5 -75q0 -50 -27.5 -74.5t-64.5 -24.5t-63.5 24.5t-26.5 74.5z" />
190
+ <glyph unicode="&#xf0;" horiz-adv-x="1221" d="M113 475q0 230 131.5 361t351.5 131q226 0 326 -121l8 4q-57 214 -262 405l-271 -155l-73 108l233 133q-92 62 -186 111l69 117q156 -73 258 -148l238 138l76 -107l-207 -119q152 -143 234.5 -342t82.5 -428q0 -281 -130.5 -432t-377.5 -151q-222 0 -361.5 134.5 t-139.5 360.5zM281 469q0 -167 87.5 -258.5t249.5 -91.5q175 0 255.5 100.5t80.5 292.5q0 147 -90 232t-246 85q-337 0 -337 -360z" />
191
+ <glyph unicode="&#xf1;" horiz-adv-x="1257" d="M176 0v1096h135l27 -150h8q51 81 143 125.5t205 44.5q198 0 298 -95.5t100 -305.5v-715h-166v709q0 134 -61 200t-191 66q-172 0 -252 -93t-80 -307v-575h-166zM278 1241q13 121 70.5 189.5t148.5 68.5q46 0 89 -18.5t82 -41t75 -41t68 -18.5q49 0 73 29.5t39 91.5h99 q-13 -121 -69.5 -189.5t-150.5 -68.5q-43 0 -84 18.5t-80.5 41t-76 41t-70.5 18.5q-50 0 -75.5 -30t-39.5 -91h-98z" />
192
+ <glyph unicode="&#xf2;" horiz-adv-x="1237" d="M115 549q0 268 134 417.5t372 149.5q230 0 365.5 -153t135.5 -414q0 -268 -135 -418.5t-373 -150.5q-147 0 -261 69t-176 198t-62 302zM287 549q0 -210 84 -320t247 -110t247.5 109.5t84.5 320.5q0 209 -84.5 317.5t-249.5 108.5q-163 0 -246 -107t-83 -319zM349 1548v21 h203q32 -69 89 -159.5t101 -143.5v-25h-110q-65 52 -154 148t-129 159z" />
193
+ <glyph unicode="&#xf3;" horiz-adv-x="1237" d="M115 549q0 268 134 417.5t372 149.5q230 0 365.5 -153t135.5 -414q0 -268 -135 -418.5t-373 -150.5q-147 0 -261 69t-176 198t-62 302zM287 549q0 -210 84 -320t247 -110t247.5 109.5t84.5 320.5q0 209 -84.5 317.5t-249.5 108.5q-163 0 -246 -107t-83 -319zM479 1241v25 q48 62 103.5 150t87.5 153h202v-21q-44 -65 -131 -160t-151 -147h-111z" />
194
+ <glyph unicode="&#xf4;" horiz-adv-x="1237" d="M115 549q0 268 134 417.5t372 149.5q230 0 365.5 -153t135.5 -414q0 -268 -135 -418.5t-373 -150.5q-147 0 -261 69t-176 198t-62 302zM287 549q0 -210 84 -320t247 -110t247.5 109.5t84.5 320.5q0 209 -84.5 317.5t-249.5 108.5q-163 0 -246 -107t-83 -319zM282 1241v23 q127 136 178 200t74 105h166q22 -42 76.5 -108.5t179.5 -196.5v-23h-119q-88 55 -221 186q-136 -134 -219 -186h-115z" />
195
+ <glyph unicode="&#xf5;" horiz-adv-x="1237" d="M115 549q0 268 134 417.5t372 149.5q230 0 365.5 -153t135.5 -414q0 -268 -135 -418.5t-373 -150.5q-147 0 -261 69t-176 198t-62 302zM287 549q0 -210 84 -320t247 -110t247.5 109.5t84.5 320.5q0 209 -84.5 317.5t-249.5 108.5q-163 0 -246 -107t-83 -319zM249 1241 q13 121 70.5 189.5t148.5 68.5q46 0 89 -18.5t82 -41t75 -41t68 -18.5q49 0 73 29.5t39 91.5h99q-13 -121 -69.5 -189.5t-150.5 -68.5q-43 0 -84 18.5t-80.5 41t-76 41t-70.5 18.5q-50 0 -75.5 -30t-39.5 -91h-98z" />
196
+ <glyph unicode="&#xf6;" horiz-adv-x="1237" d="M115 549q0 268 134 417.5t372 149.5q230 0 365.5 -153t135.5 -414q0 -268 -135 -418.5t-373 -150.5q-147 0 -261 69t-176 198t-62 302zM287 549q0 -210 84 -320t247 -110t247.5 109.5t84.5 320.5q0 209 -84.5 317.5t-249.5 108.5q-163 0 -246 -107t-83 -319zM336 1393 q0 52 26.5 75t63.5 23q38 0 65.5 -23t27.5 -75q0 -50 -27.5 -74.5t-65.5 -24.5q-37 0 -63.5 24.5t-26.5 74.5zM717 1393q0 52 26.5 75t63.5 23t64.5 -23t27.5 -75q0 -50 -27.5 -74.5t-64.5 -24.5t-63.5 24.5t-26.5 74.5z" />
197
+ <glyph unicode="&#xf7;" d="M104 653v138h961v-138h-961zM471 373q0 60 29.5 90.5t83.5 30.5q52 0 81 -31.5t29 -89.5q0 -57 -29.5 -89t-80.5 -32q-52 0 -82.5 31.5t-30.5 89.5zM471 1071q0 60 29.5 90.5t83.5 30.5q52 0 81 -31.5t29 -89.5q0 -57 -29.5 -89t-80.5 -32q-52 0 -82.5 31.5t-30.5 89.5z " />
198
+ <glyph unicode="&#xf8;" horiz-adv-x="1237" d="M115 549q0 268 134 417.5t372 149.5q154 0 270 -76l84 119l117 -76l-97 -133q127 -152 127 -401q0 -268 -135 -418.5t-373 -150.5q-154 0 -266 69l-84 -117l-114 78l94 131q-129 152 -129 408zM287 549q0 -171 53 -273l465 646q-75 53 -189 53q-163 0 -246 -107t-83 -319 zM434 170q71 -51 184 -51q163 0 247.5 109.5t84.5 320.5q0 164 -51 264z" />
199
+ <glyph unicode="&#xf9;" horiz-adv-x="1257" d="M164 379v717h168v-711q0 -134 61 -200t191 -66q172 0 251.5 94t79.5 307v576h166v-1096h-137l-24 147h-9q-51 -81 -141.5 -124t-206.5 -43q-200 0 -299.5 95t-99.5 304zM333 1548v21h203q32 -69 89 -159.5t101 -143.5v-25h-110q-65 52 -154 148t-129 159z" />
200
+ <glyph unicode="&#xfa;" horiz-adv-x="1257" d="M164 379v717h168v-711q0 -134 61 -200t191 -66q172 0 251.5 94t79.5 307v576h166v-1096h-137l-24 147h-9q-51 -81 -141.5 -124t-206.5 -43q-200 0 -299.5 95t-99.5 304zM506 1241v25q48 62 103.5 150t87.5 153h202v-21q-44 -65 -131 -160t-151 -147h-111z" />
201
+ <glyph unicode="&#xfb;" horiz-adv-x="1257" d="M164 379v717h168v-711q0 -134 61 -200t191 -66q172 0 251.5 94t79.5 307v576h166v-1096h-137l-24 147h-9q-51 -81 -141.5 -124t-206.5 -43q-200 0 -299.5 95t-99.5 304zM286 1241v23q127 136 178 200t74 105h166q22 -42 76.5 -108.5t179.5 -196.5v-23h-119 q-88 55 -221 186q-136 -134 -219 -186h-115z" />
202
+ <glyph unicode="&#xfc;" horiz-adv-x="1257" d="M164 379v717h168v-711q0 -134 61 -200t191 -66q172 0 251.5 94t79.5 307v576h166v-1096h-137l-24 147h-9q-51 -81 -141.5 -124t-206.5 -43q-200 0 -299.5 95t-99.5 304zM342 1393q0 52 26.5 75t63.5 23q38 0 65.5 -23t27.5 -75q0 -50 -27.5 -74.5t-65.5 -24.5 q-37 0 -63.5 24.5t-26.5 74.5zM723 1393q0 52 26.5 75t63.5 23t64.5 -23t27.5 -75q0 -50 -27.5 -74.5t-64.5 -24.5t-63.5 24.5t-26.5 74.5z" />
203
+ <glyph unicode="&#xfd;" horiz-adv-x="1032" d="M2 1096h178l240 -625q79 -214 98 -309h8q13 51 54.5 174.5t271.5 759.5h178l-471 -1248q-70 -185 -163.5 -262.5t-229.5 -77.5q-76 0 -150 17v133q55 -12 123 -12q171 0 244 192l61 156zM411 1241v25q48 62 103.5 150t87.5 153h202v-21q-44 -65 -131 -160t-151 -147h-111 z" />
204
+ <glyph unicode="&#xfe;" horiz-adv-x="1255" d="M176 -492v2048h166v-466q0 -52 -6 -142h8q66 89 151 128.5t191 39.5q215 0 335 -150t120 -417q0 -268 -120.5 -418.5t-334.5 -150.5q-222 0 -344 161h-12l4 -34q8 -77 8 -140v-459h-166zM342 549q0 -231 77 -330.5t247 -99.5q303 0 303 432q0 215 -74 319.5t-231 104.5 q-168 0 -244 -92t-78 -293v-41z" />
205
+ <glyph unicode="&#xff;" horiz-adv-x="1032" d="M2 1096h178l240 -625q79 -214 98 -309h8q13 51 54.5 174.5t271.5 759.5h178l-471 -1248q-70 -185 -163.5 -262.5t-229.5 -77.5q-76 0 -150 17v133q55 -12 123 -12q171 0 244 192l61 156zM234 1393q0 52 26.5 75t63.5 23q38 0 65.5 -23t27.5 -75q0 -50 -27.5 -74.5 t-65.5 -24.5q-37 0 -63.5 24.5t-26.5 74.5zM615 1393q0 52 26.5 75t63.5 23t64.5 -23t27.5 -75q0 -50 -27.5 -74.5t-64.5 -24.5t-63.5 24.5t-26.5 74.5z" />
206
+ <glyph unicode="&#x131;" horiz-adv-x="518" d="M176 0v1096h166v-1096h-166z" />
207
+ <glyph unicode="&#x152;" horiz-adv-x="1890" d="M125 735q0 360 174 555t494 195q102 0 192 -23h782v-151h-589v-471h551v-150h-551v-538h589v-152h-768q-102 -20 -194 -20q-327 0 -503.5 196.5t-176.5 558.5zM305 733q0 -297 128.5 -450.5t375.5 -153.5q112 0 199 33v1141q-87 30 -197 30q-249 0 -377.5 -152.5 t-128.5 -447.5z" />
208
+ <glyph unicode="&#x153;" horiz-adv-x="1929" d="M113 549q0 265 131 415t366 150q131 0 233.5 -59.5t164.5 -173.5q58 112 154 172.5t222 60.5q201 0 320 -132.5t119 -358.5v-105h-729q8 -393 338 -393q94 0 174.5 17.5t167.5 56.5v-148q-88 -39 -164 -55t-180 -16q-293 0 -418 235q-62 -116 -166.5 -175.5t-241.5 -59.5 q-223 0 -357 152.5t-134 416.5zM287 549q0 -211 76 -320.5t243 -109.5q163 0 239.5 106.5t76.5 315.5q0 221 -77.5 327.5t-242.5 106.5q-166 0 -240.5 -108t-74.5 -318zM1098 653h544q0 158 -66 240t-194 82q-127 0 -199.5 -82t-84.5 -240z" />
209
+ <glyph unicode="&#x178;" horiz-adv-x="1147" d="M0 1462h186l387 -731l390 731h184l-488 -895v-567h-172v559zM294 1731q0 52 26.5 75t63.5 23q38 0 65.5 -23t27.5 -75q0 -50 -27.5 -74.5t-65.5 -24.5q-37 0 -63.5 24.5t-26.5 74.5zM675 1731q0 52 26.5 75t63.5 23t64.5 -23t27.5 -75q0 -50 -27.5 -74.5t-64.5 -24.5 t-63.5 24.5t-26.5 74.5z" />
210
+ <glyph unicode="&#x2c6;" horiz-adv-x="1212" d="M268 1241v23q127 136 178 200t74 105h166q22 -42 76.5 -108.5t179.5 -196.5v-23h-119q-88 55 -221 186q-136 -134 -219 -186h-115z" />
211
+ <glyph unicode="&#x2da;" horiz-adv-x="1182" d="M367 1456q0 98 60.5 155.5t160.5 57.5q101 0 163 -59.5t62 -151.5q0 -98 -61.5 -157.5t-163.5 -59.5q-101 0 -161 58.5t-60 156.5zM471 1456q0 -56 30 -86.5t87 -30.5q52 0 84.5 30.5t32.5 86.5t-33 86.5t-84 30.5t-84 -30.5t-33 -86.5z" />
212
+ <glyph unicode="&#x2dc;" horiz-adv-x="1212" d="M264 1241q13 121 70.5 189.5t148.5 68.5q46 0 89 -18.5t82 -41t75 -41t68 -18.5q49 0 73 29.5t39 91.5h99q-13 -121 -69.5 -189.5t-150.5 -68.5q-43 0 -84 18.5t-80.5 41t-76 41t-70.5 18.5q-50 0 -75.5 -30t-39.5 -91h-98z" />
213
+ <glyph unicode="&#x2000;" horiz-adv-x="953" />
214
+ <glyph unicode="&#x2001;" horiz-adv-x="1907" />
215
+ <glyph unicode="&#x2002;" horiz-adv-x="953" />
216
+ <glyph unicode="&#x2003;" horiz-adv-x="1907" />
217
+ <glyph unicode="&#x2004;" horiz-adv-x="635" />
218
+ <glyph unicode="&#x2005;" horiz-adv-x="476" />
219
+ <glyph unicode="&#x2006;" horiz-adv-x="317" />
220
+ <glyph unicode="&#x2007;" horiz-adv-x="317" />
221
+ <glyph unicode="&#x2008;" horiz-adv-x="238" />
222
+ <glyph unicode="&#x2009;" horiz-adv-x="381" />
223
+ <glyph unicode="&#x200a;" horiz-adv-x="105" />
224
+ <glyph unicode="&#x2010;" horiz-adv-x="659" d="M84 473v152h491v-152h-491z" />
225
+ <glyph unicode="&#x2011;" horiz-adv-x="659" d="M84 473v152h491v-152h-491z" />
226
+ <glyph unicode="&#x2012;" horiz-adv-x="659" d="M84 473v152h491v-152h-491z" />
227
+ <glyph unicode="&#x2013;" horiz-adv-x="1024" d="M82 473v152h860v-152h-860z" />
228
+ <glyph unicode="&#x2014;" horiz-adv-x="2048" d="M82 473v152h1884v-152h-1884z" />
229
+ <glyph unicode="&#x2018;" horiz-adv-x="348" d="M25 983q22 90 71 224t105 255h123q-66 -254 -103 -501h-184z" />
230
+ <glyph unicode="&#x2019;" horiz-adv-x="348" d="M25 961q70 285 102 501h182l15 -22q-26 -100 -75 -232.5t-102 -246.5h-122z" />
231
+ <glyph unicode="&#x201a;" horiz-adv-x="502" d="M63 -264q27 104 59.5 257t45.5 245h182l15 -23q-26 -100 -75 -232.5t-102 -246.5h-125z" />
232
+ <glyph unicode="&#x201c;" horiz-adv-x="717" d="M25 983q22 90 71 224t105 255h123q-66 -254 -103 -501h-184zM391 983q56 215 178 479h123q-30 -115 -59.5 -259.5t-42.5 -241.5h-184z" />
233
+ <glyph unicode="&#x201d;" horiz-adv-x="717" d="M25 961q70 285 102 501h182l15 -22q-26 -100 -75 -232.5t-102 -246.5h-122zM391 961q26 100 59 254t46 247h182l14 -22q-24 -91 -72 -224t-104 -255h-125z" />
234
+ <glyph unicode="&#x201e;" horiz-adv-x="829" d="M25 -263q70 285 102 501h182l15 -22q-26 -100 -75 -232.5t-102 -246.5h-122zM391 -263q26 100 59 254t46 247h182l14 -22q-24 -91 -72 -224t-104 -255h-125z" />
235
+ <glyph unicode="&#x2022;" horiz-adv-x="770" d="M164 748q0 121 56.5 184t164.5 63q105 0 163 -62t58 -185q0 -119 -57.5 -183.5t-163.5 -64.5q-107 0 -164 65.5t-57 182.5z" />
236
+ <glyph unicode="&#x2026;" horiz-adv-x="1606" d="M152 106q0 67 30.5 101.5t87.5 34.5q58 0 90.5 -34.5t32.5 -101.5q0 -65 -33 -100t-90 -35q-51 0 -84.5 31.5t-33.5 103.5zM682 106q0 67 30.5 101.5t87.5 34.5q58 0 90.5 -34.5t32.5 -101.5q0 -65 -33 -100t-90 -35q-51 0 -84.5 31.5t-33.5 103.5zM1213 106 q0 67 30.5 101.5t87.5 34.5q58 0 90.5 -34.5t32.5 -101.5q0 -65 -33 -100t-90 -35q-51 0 -84.5 31.5t-33.5 103.5z" />
237
+ <glyph unicode="&#x202f;" horiz-adv-x="381" />
238
+ <glyph unicode="&#x2039;" horiz-adv-x="623" d="M82 524v27l342 407l119 -69l-289 -350l289 -351l-119 -71z" />
239
+ <glyph unicode="&#x203a;" horiz-adv-x="623" d="M80 188l287 351l-287 350l117 69l344 -407v-27l-344 -407z" />
240
+ <glyph unicode="&#x2044;" horiz-adv-x="266" d="M-391 0l903 1462h143l-903 -1462h-143z" />
241
+ <glyph unicode="&#x205f;" horiz-adv-x="476" />
242
+ <glyph unicode="&#x2074;" horiz-adv-x="711" d="M20 788v101l408 579h139v-563h125v-117h-125v-202h-145v202h-402zM160 905h262v195q0 134 6 209q-5 -12 -17 -31.5t-27 -41.5l-30 -46q-15 -22 -26 -39z" />
243
+ <glyph unicode="&#x20ac;" horiz-adv-x="1208" d="M63 506v129h152l-2 42v44l2 80h-152v129h164q39 261 185 407t383 146q201 0 366 -97l-71 -139q-166 86 -295 86q-319 0 -398 -403h510v-129h-524l-2 -57v-64l2 -45h463v-129h-447q37 -180 138.5 -278.5t271.5 -98.5q156 0 309 66v-150q-146 -65 -317 -65 q-237 0 -381.5 134.5t-190.5 391.5h-166z" />
244
+ <glyph unicode="&#x2122;" horiz-adv-x="1589" d="M37 1356v106h543v-106h-211v-615h-123v615h-209zM647 741v721h187l196 -559l203 559h180v-721h-127v420l6 137h-8l-211 -557h-104l-201 559h-8l6 -129v-430h-119z" />
245
+ <glyph unicode="&#x2212;" d="M104 653v138h961v-138h-961z" />
246
+ <glyph unicode="&#xe000;" horiz-adv-x="1095" d="M0 1095h1095v-1095h-1095v1095z" />
247
+ <glyph unicode="&#xfb01;" horiz-adv-x="1212" d="M29 967v75l196 60v61q0 404 353 404q87 0 204 -35l-43 -133q-96 31 -164 31q-94 0 -139 -62.5t-45 -200.5v-71h279v-129h-279v-967h-166v967h-196zM856 1393q0 57 28 83.5t70 26.5q40 0 69 -27t29 -83t-29 -83.5t-69 -27.5q-42 0 -70 27.5t-28 83.5zM870 0v1096h166 v-1096h-166z" />
248
+ <glyph unicode="&#xfb02;" horiz-adv-x="1212" d="M29 967v75l196 60v61q0 404 353 404q87 0 204 -35l-43 -133q-96 31 -164 31q-94 0 -139 -62.5t-45 -200.5v-71h279v-129h-279v-967h-166v967h-196zM870 0v1556h166v-1556h-166z" />
249
+ <glyph unicode="&#xfb03;" horiz-adv-x="1909" d="M717 967v75l196 60v61q0 404 353 404q87 0 204 -35l-43 -133q-96 31 -164 31q-94 0 -139 -62.5t-45 -200.5v-71h279v-129h-279v-967h-166v967h-196zM29 967v75l196 60v61q0 404 353 404q87 0 204 -35l-43 -133q-96 31 -164 31q-94 0 -139 -62.5t-45 -200.5v-71h279v-129 h-279v-967h-166v967h-196zM1551 1393q0 57 28 83.5t70 26.5q40 0 69 -27t29 -83t-29 -83.5t-69 -27.5q-42 0 -70 27.5t-28 83.5zM1565 0v1096h166v-1096h-166z" />
250
+ <glyph unicode="&#xfb04;" horiz-adv-x="1909" d="M717 967v75l196 60v61q0 404 353 404q87 0 204 -35l-43 -133q-96 31 -164 31q-94 0 -139 -62.5t-45 -200.5v-71h279v-129h-279v-967h-166v967h-196zM29 967v75l196 60v61q0 404 353 404q87 0 204 -35l-43 -133q-96 31 -164 31q-94 0 -139 -62.5t-45 -200.5v-71h279v-129 h-279v-967h-166v967h-196zM1565 0v1556h166v-1556h-166z" />
251
+ </font>
252
+ </defs></svg>
css/fonts/OpenSans-Regular-webfont.ttf ADDED
Binary file
css/fonts/OpenSans-Regular-webfont.woff ADDED
Binary file
css/fonts/OpenSans-Semibold-webfont.eot ADDED
Binary file
css/fonts/OpenSans-Semibold-webfont.svg ADDED
@@ -0,0 +1,251 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata>
5
+ This is a custom SVG webfont generated by Font Squirrel.
6
+ Copyright : Digitized data copyright 2011 Google Corporation
7
+ Foundry : Ascender Corporation
8
+ Foundry URL : httpwwwascendercorpcom
9
+ </metadata>
10
+ <defs>
11
+ <font id="OpenSansSemibold" horiz-adv-x="1169" >
12
+ <font-face units-per-em="2048" ascent="1638" descent="-410" />
13
+ <missing-glyph horiz-adv-x="532" />
14
+ <glyph unicode=" " horiz-adv-x="532" />
15
+ <glyph unicode="&#x09;" horiz-adv-x="532" />
16
+ <glyph unicode="&#xa0;" horiz-adv-x="532" />
17
+ <glyph unicode="!" horiz-adv-x="565" d="M133 125q0 74 39 112.5t111 38.5q71 0 109 -40t38 -111t-38.5 -112.5t-108.5 -41.5q-71 0 -110.5 40t-39.5 114zM145 1462h277l-51 -1018h-174z" />
18
+ <glyph unicode="&#x22;" horiz-adv-x="893" d="M133 1462h232l-41 -528h-150zM528 1462h232l-41 -528h-150z" />
19
+ <glyph unicode="#" horiz-adv-x="1323" d="M47 418v168h283l57 284h-264v168h293l80 422h180l-80 -422h252l80 422h174l-80 -422h252v-168h-285l-55 -284h270v-168h-303l-80 -418h-178l80 418h-248l-80 -418h-174l76 418h-250zM506 586h250l57 284h-250z" />
20
+ <glyph unicode="$" d="M111 168v211q86 -42 201 -70.5t206 -29.5v374l-84 31q-164 63 -239.5 150.5t-75.5 216.5q0 138 107.5 227t291.5 108v168h133v-165q203 -7 385 -82l-73 -183q-157 62 -312 74v-364l76 -29q190 -73 263 -154t73 -198q0 -145 -106 -239t-306 -116v-217h-133v211 q-248 4 -407 76zM354 1053q0 -57 35.5 -95t128.5 -75v311q-80 -12 -122 -49t-42 -92zM651 287q176 27 176 151q0 58 -40.5 95.5t-135.5 72.5v-319z" />
21
+ <glyph unicode="%" horiz-adv-x="1765" d="M84 1026q0 457 319 457q157 0 241.5 -118.5t84.5 -338.5q0 -230 -82.5 -345.5t-243.5 -115.5q-152 0 -235.5 119.5t-83.5 341.5zM279 1024q0 -149 29 -222t95 -73q132 0 132 295t-132 295q-66 0 -95 -73t-29 -222zM379 0l811 1462h194l-811 -1462h-194zM1036 440 q0 457 320 457q154 0 239.5 -118t85.5 -339q0 -230 -83 -345t-242 -115q-152 0 -236 118.5t-84 341.5zM1231 440q0 -149 29.5 -223t95.5 -74q131 0 131 297q0 293 -131 293q-66 0 -95.5 -72t-29.5 -221z" />
22
+ <glyph unicode="&#x26;" horiz-adv-x="1516" d="M96 387q0 131 64 228.5t231 193.5q-95 111 -129.5 187.5t-34.5 158.5q0 152 108.5 240t291.5 88q177 0 278 -85.5t101 -230.5q0 -114 -67.5 -207t-225.5 -186l346 -334q81 107 135 314h242q-70 -284 -224 -463l301 -291h-303l-149 145q-102 -82 -217.5 -123.5 t-255.5 -41.5q-230 0 -361 109t-131 298zM344 403q0 -98 69.5 -159.5t186.5 -61.5q183 0 313 107l-383 377q-106 -68 -146 -127.5t-40 -135.5zM451 1147q0 -63 33.5 -119t93.5 -119q113 64 158.5 119.5t45.5 124.5q0 65 -43.5 104t-115.5 39q-79 0 -125.5 -40.5 t-46.5 -108.5z" />
23
+ <glyph unicode="'" horiz-adv-x="498" d="M133 1462h232l-41 -528h-150z" />
24
+ <glyph unicode="(" horiz-adv-x="649" d="M82 561q0 265 77.5 496t223.5 405h205q-139 -188 -213 -421.5t-74 -477.5t74 -473t211 -414h-203q-147 170 -224 397t-77 488z" />
25
+ <glyph unicode=")" horiz-adv-x="649" d="M61 1462h205q147 -175 224 -406.5t77 -494.5t-77.5 -490t-223.5 -395h-203q138 187 211.5 415t73.5 472q0 245 -74 477.5t-213 421.5z" />
26
+ <glyph unicode="*" horiz-adv-x="1122" d="M74 1065l35 217l376 -108l-41 382h228l-41 -382l385 108l28 -217l-360 -29l236 -311l-199 -107l-166 338l-149 -338l-205 107l231 311z" />
27
+ <glyph unicode="+" d="M96 633v178h398v408h180v-408h399v-178h-399v-406h-180v406h-398z" />
28
+ <glyph unicode="," horiz-adv-x="547" d="M63 -264q69 270 103 502h231l15 -23q-48 -186 -176 -479h-173z" />
29
+ <glyph unicode="-" horiz-adv-x="659" d="M72 449v200h514v-200h-514z" />
30
+ <glyph unicode="." horiz-adv-x="563" d="M133 125q0 73 38 112t110 39q73 0 111 -40.5t38 -110.5q0 -71 -38.5 -112.5t-110.5 -41.5t-110 41t-38 113z" />
31
+ <glyph unicode="/" horiz-adv-x="799" d="M16 0l545 1462h221l-544 -1462h-222z" />
32
+ <glyph unicode="0" d="M88 731q0 387 122.5 570.5t373.5 183.5q245 0 371 -192t126 -562q0 -381 -122.5 -566t-374.5 -185q-244 0 -370 191t-126 560zM326 731q0 -299 61.5 -427t196.5 -128t197.5 130t62.5 425q0 294 -62.5 425.5t-197.5 131.5t-196.5 -129t-61.5 -428z" />
33
+ <glyph unicode="1" d="M154 1124l430 338h196v-1462h-235v944q0 169 8 268q-23 -24 -56.5 -53t-224.5 -184z" />
34
+ <glyph unicode="2" d="M90 0v178l377 379q167 171 221.5 242.5t79.5 134.5t25 135q0 99 -59.5 156t-164.5 57q-84 0 -162.5 -31t-181.5 -112l-127 155q122 103 237 146t245 43q204 0 327 -106.5t123 -286.5q0 -99 -35.5 -188t-109 -183.5t-244.5 -255.5l-254 -246v-10h694v-207h-991z" />
35
+ <glyph unicode="3" d="M86 59v209q93 -46 197 -71t200 -25q170 0 254 63t84 195q0 117 -93 172t-292 55h-127v191h129q350 0 350 242q0 94 -61 145t-180 51q-83 0 -160 -23.5t-182 -91.5l-115 164q201 148 467 148q221 0 345 -95t124 -262q0 -139 -81 -231.5t-228 -124.5v-8q176 -22 264 -109.5 t88 -232.5q0 -211 -149 -325.5t-424 -114.5q-243 0 -410 79z" />
36
+ <glyph unicode="4" d="M39 319v181l668 966h229v-952h197v-195h-197v-319h-229v319h-668zM258 514h449v367q0 196 10 321h-8q-28 -66 -88 -160z" />
37
+ <glyph unicode="5" d="M117 59v213q81 -46 186 -71t195 -25q159 0 242 71t83 208q0 262 -334 262q-47 0 -116 -9.5t-121 -21.5l-105 62l56 714h760v-209h-553l-33 -362q35 6 85.5 14t123.5 8q221 0 350 -117t129 -319q0 -234 -146.5 -365.5t-416.5 -131.5q-245 0 -385 79z" />
38
+ <glyph unicode="6" d="M94 623q0 858 699 858q110 0 186 -17v-196q-76 22 -176 22q-235 0 -353 -126t-128 -404h12q47 81 132 125.5t200 44.5q199 0 310 -122t111 -331q0 -230 -128.5 -363.5t-350.5 -133.5q-157 0 -273 75.5t-178.5 220t-62.5 347.5zM332 508q0 -141 76.5 -237.5t195.5 -96.5 q121 0 186.5 78t65.5 223q0 126 -61.5 198t-184.5 72q-76 0 -140 -32.5t-101 -89t-37 -115.5z" />
39
+ <glyph unicode="7" d="M74 1253v207h1011v-164l-575 -1296h-254l578 1253h-760z" />
40
+ <glyph unicode="8" d="M88 371q0 122 68.5 219.5t224.5 173.5q-134 80 -191 169t-57 200q0 159 125 253.5t326 94.5q208 0 329 -95.5t121 -255.5q0 -225 -270 -358q172 -86 244.5 -181t72.5 -212q0 -181 -133 -290t-360 -109q-238 0 -369 102t-131 289zM313 379q0 -104 73 -161.5t198 -57.5 q129 0 200.5 59.5t71.5 161.5q0 81 -66 148t-200 124l-29 13q-132 -58 -190 -127.5t-58 -159.5zM360 1116q0 -52 22 -93t64 -74.5t142 -80.5q120 53 169.5 111.5t49.5 136.5q0 85 -61.5 134.5t-163.5 49.5q-100 0 -161 -49.5t-61 -134.5z" />
41
+ <glyph unicode="9" d="M86 981q0 229 128.5 364.5t350.5 135.5q156 0 272 -76t179 -220.5t63 -346.5q0 -432 -174 -645t-524 -213q-133 0 -191 16v197q89 -25 179 -25q238 0 355 128t128 402h-12q-59 -90 -142.5 -130t-195.5 -40q-194 0 -305 121t-111 332zM317 983q0 -125 60.5 -196.5 t183.5 -71.5q119 0 200 71t81 166q0 89 -34.5 166.5t-96.5 122.5t-142 45q-122 0 -187 -79.5t-65 -223.5z" />
42
+ <glyph unicode=":" horiz-adv-x="563" d="M133 125q0 73 38 112t110 39q73 0 111 -40.5t38 -110.5q0 -71 -38.5 -112.5t-110.5 -41.5t-110 41t-38 113zM133 979q0 151 148 151q75 0 112 -40t37 -111t-38.5 -112.5t-110.5 -41.5t-110 41t-38 113z" />
43
+ <glyph unicode=";" horiz-adv-x="569" d="M63 -264q69 270 103 502h231l15 -23q-48 -186 -176 -479h-173zM131 979q0 151 148 151q75 0 112 -40t37 -111t-38.5 -112.5t-110.5 -41.5t-110 41t-38 113z" />
44
+ <glyph unicode="&#x3c;" d="M96 651v121l977 488v-195l-733 -344l733 -303v-197z" />
45
+ <glyph unicode="=" d="M102 432v178h963v-178h-963zM102 831v179h963v-179h-963z" />
46
+ <glyph unicode="&#x3e;" d="M96 221v197l733 303l-733 344v195l977 -488v-121z" />
47
+ <glyph unicode="?" horiz-adv-x="928" d="M16 1370q203 113 435 113q196 0 311 -96t115 -265q0 -75 -22 -133.5t-66.5 -111.5t-153.5 -138q-93 -73 -124.5 -121t-31.5 -129v-45h-196v64q0 110 40 183t140 151q119 94 153.5 146t34.5 124q0 84 -56 129t-161 45q-95 0 -176 -27t-158 -65zM242 125q0 151 147 151 q72 0 110 -39.5t38 -111.5q0 -71 -38.5 -112.5t-109.5 -41.5t-109 40.5t-38 113.5z" />
48
+ <glyph unicode="@" horiz-adv-x="1839" d="M111 586q0 261 112 464.5t310.5 311.5t449.5 108q217 0 386.5 -90t263 -256.5t93.5 -384.5q0 -143 -45 -261.5t-126.5 -184.5t-188.5 -66q-79 0 -137 42t-78 114h-12q-49 -78 -121 -117t-162 -39q-163 0 -256.5 105t-93.5 284q0 206 124 334.5t333 128.5 q76 0 168.5 -13.5t164.5 -37.5l-22 -465v-24q0 -160 104 -160q79 0 125.5 102t46.5 260q0 171 -70 300.5t-199 199.5t-296 70q-213 0 -370.5 -88t-240.5 -251.5t-83 -379.5q0 -290 155 -446t445 -156q221 0 461 90v-164q-210 -86 -457 -86q-370 0 -577 199.5t-207 556.5z M698 612q0 -233 183 -233q193 0 211 293l12 239q-63 17 -135 17q-128 0 -199.5 -85t-71.5 -231z" />
49
+ <glyph unicode="A" horiz-adv-x="1354" d="M0 0l547 1468h260l547 -1468h-254l-146 406h-559l-143 -406h-252zM465 612h426l-137 398q-15 40 -41.5 126t-36.5 126q-27 -123 -79 -269z" />
50
+ <glyph unicode="B" horiz-adv-x="1352" d="M193 0v1462h434q302 0 436.5 -88t134.5 -278q0 -128 -66 -213t-190 -107v-10q154 -29 226.5 -114.5t72.5 -231.5q0 -197 -137.5 -308.5t-382.5 -111.5h-528zM432 201h254q150 0 226.5 57.5t76.5 181.5q0 114 -78 169t-237 55h-242v-463zM432 858h230q150 0 219 47.5 t69 161.5q0 103 -74.5 149t-236.5 46h-207v-404z" />
51
+ <glyph unicode="C" horiz-adv-x="1298" d="M121 731q0 228 83.5 399t241.5 262t371 91q224 0 414 -94l-86 -199q-74 35 -156.5 61.5t-173.5 26.5q-206 0 -324 -146t-118 -403q0 -269 113.5 -407t328.5 -138q93 0 180 18.5t181 47.5v-205q-172 -65 -390 -65q-321 0 -493 194.5t-172 556.5z" />
52
+ <glyph unicode="D" horiz-adv-x="1503" d="M193 0v1462h452q349 0 543 -188t194 -529q0 -362 -201 -553.5t-579 -191.5h-409zM432 201h170q528 0 528 536q0 525 -491 525h-207v-1061z" />
53
+ <glyph unicode="E" horiz-adv-x="1143" d="M193 0v1462h827v-202h-588v-398h551v-200h-551v-459h588v-203h-827z" />
54
+ <glyph unicode="F" horiz-adv-x="1090" d="M193 0v1462h825v-202h-588v-457h551v-203h-551v-600h-237z" />
55
+ <glyph unicode="G" horiz-adv-x="1487" d="M121 731q0 353 203 552.5t559 199.5q229 0 434 -88l-84 -199q-178 82 -356 82q-234 0 -370 -147t-136 -402q0 -268 122.5 -407.5t352.5 -139.5q116 0 248 29v377h-303v205h538v-734q-132 -43 -253.5 -61t-262.5 -18q-332 0 -512 196.5t-180 554.5z" />
56
+ <glyph unicode="H" horiz-adv-x="1538" d="M193 0v1462h239v-598h674v598h240v-1462h-240v659h-674v-659h-239z" />
57
+ <glyph unicode="I" horiz-adv-x="625" d="M193 0v1462h239v-1462h-239z" />
58
+ <glyph unicode="J" horiz-adv-x="612" d="M-156 -182q84 -21 146 -21q196 0 196 248v1417h240v-1409q0 -224 -106.5 -342.5t-311.5 -118.5q-98 0 -164 25v201z" />
59
+ <glyph unicode="K" horiz-adv-x="1309" d="M193 0v1462h239v-698q98 120 195 231l395 467h272q-383 -450 -549 -641l564 -821h-277l-459 662l-141 -115v-547h-239z" />
60
+ <glyph unicode="L" horiz-adv-x="1110" d="M193 0v1462h239v-1257h619v-205h-858z" />
61
+ <glyph unicode="M" horiz-adv-x="1890" d="M193 0v1462h337l406 -1163h6l418 1163h338v-1462h-230v723q0 109 5.5 284t9.5 212h-8l-439 -1219h-211l-424 1221h-8q17 -272 17 -510v-711h-217z" />
62
+ <glyph unicode="N" horiz-adv-x="1604" d="M193 0v1462h290l717 -1159h6q-2 23 -8 167.5t-6 225.5v766h219v-1462h-293l-719 1165h-8l5 -65q14 -186 14 -340v-760h-217z" />
63
+ <glyph unicode="O" horiz-adv-x="1612" d="M121 735q0 362 178.5 556t509.5 194q326 0 504 -197t178 -555q0 -357 -178.5 -555t-505.5 -198q-331 0 -508.5 196.5t-177.5 558.5zM375 733q0 -270 109 -409.5t323 -139.5q213 0 321.5 138t108.5 411q0 269 -107.5 408t-320.5 139q-215 0 -324.5 -139t-109.5 -408z" />
64
+ <glyph unicode="P" horiz-adv-x="1260" d="M193 0v1462h421q274 0 410.5 -112t136.5 -330q0 -229 -150 -351t-427 -122h-152v-547h-239zM432 748h127q184 0 270 64t86 200q0 126 -77 188t-240 62h-166v-514z" />
65
+ <glyph unicode="Q" horiz-adv-x="1612" d="M121 735q0 362 178.5 556t509.5 194q326 0 504 -197t178 -555q0 -266 -101.5 -448t-295.5 -256l350 -377h-322l-276 328h-39q-331 0 -508.5 196.5t-177.5 558.5zM375 733q0 -270 109 -409.5t323 -139.5q213 0 321.5 138t108.5 411q0 269 -107.5 408t-320.5 139 q-215 0 -324.5 -139t-109.5 -408z" />
66
+ <glyph unicode="R" horiz-adv-x="1309" d="M193 0v1462h413q283 0 419 -106t136 -320q0 -273 -284 -389l413 -647h-272l-350 584h-236v-584h-239zM432 782h166q167 0 242 62t75 184q0 124 -81 178t-244 54h-158v-478z" />
67
+ <glyph unicode="S" horiz-adv-x="1126" d="M100 57v226q100 -47 212.5 -74t209.5 -27q142 0 209.5 54t67.5 145q0 82 -62 139t-256 135q-200 81 -282 185t-82 250q0 183 130 288t349 105q210 0 418 -92l-76 -195q-195 82 -348 82q-116 0 -176 -50.5t-60 -133.5q0 -57 24 -97.5t79 -76.5t198 -95q161 -67 236 -125 t110 -131t35 -172q0 -195 -141 -306t-389 -111t-406 77z" />
68
+ <glyph unicode="T" horiz-adv-x="1159" d="M29 1257v205h1099v-205h-430v-1257h-239v1257h-430z" />
69
+ <glyph unicode="U" horiz-adv-x="1520" d="M180 520v942h240v-925q0 -181 84 -267t258 -86q338 0 338 355v923h239v-946q0 -162 -69.5 -283.5t-201 -187t-314.5 -65.5q-272 0 -423 144t-151 396z" />
70
+ <glyph unicode="V" horiz-adv-x="1274" d="M0 1462h246l305 -909q24 -65 51 -167.5t35 -152.5q13 76 40 176t44 148l305 905h248l-512 -1462h-252z" />
71
+ <glyph unicode="W" horiz-adv-x="1937" d="M12 1462h244l209 -852q49 -205 70 -362q11 85 33 190t40 170l238 854h237l244 -858q35 -119 74 -356q15 143 72 364l208 850h242l-381 -1462h-260l-248 872q-16 57 -40 164.5t-29 149.5q-10 -64 -32.5 -166t-37.5 -152l-242 -868h-260l-189 732z" />
72
+ <glyph unicode="X" horiz-adv-x="1274" d="M4 0l485 758l-454 704h266l338 -553l338 553h258l-457 -708l492 -754h-275l-366 598l-369 -598h-256z" />
73
+ <glyph unicode="Y" horiz-adv-x="1212" d="M0 1462h260l346 -667l346 667h260l-487 -895v-567h-240v559z" />
74
+ <glyph unicode="Z" horiz-adv-x="1178" d="M66 0v166l737 1091h-717v205h1006v-168l-740 -1089h760v-205h-1046z" />
75
+ <glyph unicode="[" horiz-adv-x="676" d="M154 -324v1786h471v-176h-256v-1433h256v-177h-471z" />
76
+ <glyph unicode="\" horiz-adv-x="799" d="M16 1462h222l544 -1462h-221z" />
77
+ <glyph unicode="]" horiz-adv-x="676" d="M51 -147h256v1433h-256v176h469v-1786h-469v177z" />
78
+ <glyph unicode="^" horiz-adv-x="1100" d="M29 535l436 935h121l485 -935h-194l-349 694l-307 -694h-192z" />
79
+ <glyph unicode="_" horiz-adv-x="879" d="M-4 -184h887v-135h-887v135z" />
80
+ <glyph unicode="`" horiz-adv-x="1212" d="M362 1548v21h273q38 -70 103.5 -161t109.5 -142v-25h-158q-69 52 -174.5 150.5t-153.5 156.5z" />
81
+ <glyph unicode="a" horiz-adv-x="1188" d="M90 317q0 171 127 258t387 95l191 6v59q0 106 -49.5 158.5t-153.5 52.5q-85 0 -163 -25t-150 -59l-76 168q90 47 197 71.5t202 24.5q211 0 318.5 -92t107.5 -289v-745h-168l-47 154h-8q-80 -101 -161 -137.5t-208 -36.5q-163 0 -254.5 88t-91.5 249zM334 315 q0 -74 44 -114.5t132 -40.5q128 0 205.5 71.5t77.5 200.5v96l-142 -6q-166 -6 -241.5 -55.5t-75.5 -151.5z" />
82
+ <glyph unicode="b" horiz-adv-x="1276" d="M168 0v1556h235v-370q0 -41 -4 -122t-6 -103h10q112 165 330 165q207 0 322.5 -150t115.5 -421q0 -272 -117 -423.5t-325 -151.5q-210 0 -326 151h-16l-43 -131h-176zM403 555q0 -202 64 -292.5t209 -90.5q125 0 189.5 99t64.5 286q0 377 -258 377q-142 0 -204.5 -83.5 t-64.5 -279.5v-16z" />
83
+ <glyph unicode="c" horiz-adv-x="1014" d="M102 547q0 279 136.5 429t394.5 150q175 0 315 -65l-71 -189q-149 58 -246 58q-287 0 -287 -381q0 -186 71.5 -279.5t209.5 -93.5q157 0 297 78v-205q-63 -37 -134.5 -53t-173.5 -16q-251 0 -381.5 146.5t-130.5 420.5z" />
84
+ <glyph unicode="d" horiz-adv-x="1276" d="M102 551q0 272 117.5 423.5t325.5 151.5q218 0 332 -161h12q-17 119 -17 188v403h236v-1556h-184l-41 145h-11q-113 -165 -331 -165q-207 0 -323 150t-116 421zM344 547q0 -184 65 -280.5t195 -96.5q145 0 211 81.5t68 264.5v33q0 209 -68 297t-213 88 q-124 0 -191 -100.5t-67 -286.5z" />
85
+ <glyph unicode="e" horiz-adv-x="1180" d="M102 545q0 271 135 426t371 155q219 0 346 -133t127 -366v-127h-737q5 -161 87 -247.5t231 -86.5q98 0 182.5 18.5t181.5 61.5v-191q-86 -41 -174 -58t-201 -17q-258 0 -403.5 150.5t-145.5 414.5zM348 670h502q-2 137 -66 207.5t-176 70.5t-179.5 -71t-80.5 -207z" />
86
+ <glyph unicode="f" horiz-adv-x="743" d="M35 928v110l182 72v72q0 196 92 290.5t281 94.5q124 0 244 -41l-62 -178q-87 28 -166 28q-80 0 -116.5 -49.5t-36.5 -148.5v-72h270v-178h-270v-928h-236v928h-182z" />
87
+ <glyph unicode="g" horiz-adv-x="1139" d="M23 -184q0 102 64.5 171.5t180.5 96.5q-47 20 -77.5 64.5t-30.5 93.5q0 62 35 105t104 85q-86 37 -139.5 120.5t-53.5 195.5q0 180 113.5 279t323.5 99q47 0 98.5 -6.5t77.5 -13.5h383v-129l-189 -35q26 -35 43 -86t17 -108q0 -171 -118 -269t-325 -98q-53 0 -96 8 q-76 -47 -76 -110q0 -38 35.5 -57t130.5 -19h193q183 0 278 -78t95 -225q0 -188 -155 -290t-448 -102q-226 0 -345 80t-119 228zM233 -172q0 -76 68.5 -117t192.5 -41q192 0 286 55t94 146q0 72 -51.5 102.5t-191.5 30.5h-178q-101 0 -160.5 -47.5t-59.5 -128.5zM334 748 q0 -104 53.5 -160t153.5 -56q204 0 204 218q0 108 -50.5 166.5t-153.5 58.5q-102 0 -154.5 -58t-52.5 -169z" />
88
+ <glyph unicode="h" horiz-adv-x="1300" d="M168 0v1556h235v-395q0 -95 -12 -203h15q48 80 133.5 124t199.5 44q402 0 402 -405v-721h-236v680q0 128 -51.5 191t-163.5 63q-148 0 -217.5 -88.5t-69.5 -296.5v-549h-235z" />
89
+ <glyph unicode="i" horiz-adv-x="571" d="M154 1399q0 63 34.5 97t98.5 34q62 0 96.5 -34t34.5 -97q0 -60 -34.5 -94.5t-96.5 -34.5q-64 0 -98.5 34.5t-34.5 94.5zM168 0v1106h235v-1106h-235z" />
90
+ <glyph unicode="j" horiz-adv-x="571" d="M-121 -281q68 -18 139 -18q150 0 150 170v1235h235v-1251q0 -171 -89.5 -259t-258.5 -88q-106 0 -176 25v186zM154 1399q0 63 34.5 97t98.5 34q62 0 96.5 -34t34.5 -97q0 -60 -34.5 -94.5t-96.5 -34.5q-64 0 -98.5 34.5t-34.5 94.5z" />
91
+ <glyph unicode="k" horiz-adv-x="1171" d="M168 0v1556h233v-759l-12 -213h6l133 166l334 356h271l-445 -475l473 -631h-276l-355 485l-129 -106v-379h-233z" />
92
+ <glyph unicode="l" horiz-adv-x="571" d="M168 0v1556h235v-1556h-235z" />
93
+ <glyph unicode="m" horiz-adv-x="1958" d="M168 0v1106h184l33 -145h12q46 79 133.5 122t192.5 43q255 0 338 -174h16q49 82 138 128t204 46q198 0 288.5 -100t90.5 -305v-721h-235v682q0 127 -48.5 189.5t-150.5 62.5q-137 0 -200.5 -85.5t-63.5 -262.5v-586h-236v682q0 127 -48 189.5t-150 62.5 q-136 0 -199.5 -88.5t-63.5 -294.5v-551h-235z" />
94
+ <glyph unicode="n" horiz-adv-x="1300" d="M168 0v1106h184l33 -145h12q50 79 142 122t204 43q398 0 398 -405v-721h-236v680q0 128 -51.5 191t-163.5 63q-149 0 -218 -88t-69 -295v-551h-235z" />
95
+ <glyph unicode="o" horiz-adv-x="1251" d="M102 555q0 269 138 420t389 151q240 0 380 -154.5t140 -416.5q0 -271 -139 -423t-387 -152q-155 0 -274 70t-183 201t-64 304zM344 555q0 -383 283 -383q280 0 280 383q0 379 -282 379q-148 0 -214.5 -98t-66.5 -281z" />
96
+ <glyph unicode="p" horiz-adv-x="1276" d="M168 -492v1598h190q8 -31 33 -148h12q110 168 330 168q207 0 322.5 -150t115.5 -421t-117.5 -423t-324.5 -152q-210 0 -326 151h-14q14 -140 14 -170v-453h-235zM403 555q0 -202 64 -292.5t209 -90.5q122 0 188 100t66 285q0 186 -65.5 281.5t-192.5 95.5 q-140 0 -204.5 -82t-64.5 -262v-35z" />
97
+ <glyph unicode="q" horiz-adv-x="1276" d="M102 551q0 270 118 422.5t325 152.5q104 0 186.5 -38.5t147.5 -126.5h8l26 145h195v-1598h-236v469q0 44 4 93t7 75h-13q-104 -165 -331 -165q-205 0 -321 150.5t-116 420.5zM344 547q0 -379 262 -379q148 0 212.5 85.5t64.5 258.5v37q0 205 -66.5 295t-214.5 90 q-126 0 -192 -100t-66 -287z" />
98
+ <glyph unicode="r" horiz-adv-x="883" d="M168 0v1106h184l31 -195h12q55 99 143.5 157t190.5 58q71 0 117 -10l-23 -219q-50 12 -104 12q-141 0 -228.5 -92t-87.5 -239v-578h-235z" />
99
+ <glyph unicode="s" horiz-adv-x="997" d="M98 827q0 142 114.5 220.5t311.5 78.5q195 0 369 -79l-76 -177q-179 74 -301 74q-186 0 -186 -106q0 -52 48.5 -88t211.5 -99q137 -53 199 -97t92 -101.5t30 -137.5q0 -162 -118 -248.5t-338 -86.5q-221 0 -355 67v203q195 -90 363 -90q217 0 217 131q0 42 -24 70t-79 58 t-153 68q-191 74 -258.5 148t-67.5 192z" />
100
+ <glyph unicode="t" horiz-adv-x="805" d="M39 928v104l162 86l80 234h145v-246h315v-178h-315v-592q0 -85 42.5 -125.5t111.5 -40.5q86 0 172 27v-177q-39 -17 -100.5 -28.5t-127.5 -11.5q-334 0 -334 352v596h-151z" />
101
+ <glyph unicode="u" horiz-adv-x="1300" d="M158 383v723h237v-682q0 -127 52 -190.5t163 -63.5q148 0 217.5 88.5t69.5 296.5v551h236v-1106h-185l-33 145h-12q-49 -77 -139.5 -121t-206.5 -44q-201 0 -300 100t-99 303z" />
102
+ <glyph unicode="v" horiz-adv-x="1096" d="M0 1106h248l225 -643q58 -162 70 -262h8q9 72 70 262l225 643h250l-422 -1106h-254z" />
103
+ <glyph unicode="w" horiz-adv-x="1673" d="M20 1106h240l141 -545q48 -202 68 -346h6q10 73 30.5 167.5t35.5 141.5l168 582h258l163 -582q15 -49 37.5 -150t26.5 -157h8q15 123 70 344l143 545h236l-312 -1106h-264l-143 516q-26 82 -94 381h-9q-58 -270 -92 -383l-147 -514h-260z" />
104
+ <glyph unicode="x" horiz-adv-x="1128" d="M25 0l389 565l-371 541h268l252 -387l254 387h266l-372 -541l391 -565h-266l-273 414l-272 -414h-266z" />
105
+ <glyph unicode="y" horiz-adv-x="1098" d="M0 1106h256l225 -627q51 -134 68 -252h8q9 55 33 133.5t254 745.5h254l-473 -1253q-129 -345 -430 -345q-78 0 -152 17v186q53 -12 121 -12q170 0 239 197l41 104z" />
106
+ <glyph unicode="z" horiz-adv-x="979" d="M68 0v145l559 781h-525v180h789v-164l-547 -762h563v-180h-839z" />
107
+ <glyph unicode="{" horiz-adv-x="791" d="M45 473v191q135 0 200.5 45.5t65.5 138.5v311q0 156 108.5 229.5t325.5 73.5v-182q-114 -5 -165.5 -46.5t-51.5 -123.5v-297q0 -199 -229 -238v-12q229 -36 229 -237v-299q0 -82 51 -124t166 -44v-183q-231 2 -332.5 78.5t-101.5 247.5v285q0 186 -266 186z" />
108
+ <glyph unicode="|" horiz-adv-x="1128" d="M473 -481v2033h180v-2033h-180z" />
109
+ <glyph unicode="}" horiz-adv-x="760" d="M45 -141q95 1 148 38.5t53 129.5v262q0 121 53 187t176 87v12q-229 39 -229 238v297q0 82 -45.5 123.5t-155.5 46.5v182q223 0 320.5 -76.5t97.5 -250.5v-287q0 -100 63.5 -142t188.5 -42v-191q-123 0 -187.5 -42.5t-64.5 -143.5v-307q0 -156 -99.5 -229t-318.5 -75v183z " />
110
+ <glyph unicode="~" d="M96 571v191q99 108 250 108q66 0 125 -13t147 -50q131 -55 220 -55q52 0 114.5 31t120.5 89v-190q-105 -111 -250 -111q-65 0 -127.5 15.5t-146.5 50.5q-127 55 -219 55q-50 0 -111.5 -30t-122.5 -91z" />
111
+ <glyph unicode="&#xa1;" horiz-adv-x="565" d="M133 965q0 69 38 111t110 42t110.5 -40.5t38.5 -112.5q0 -74 -37.5 -113t-111.5 -39q-72 0 -110 39.5t-38 112.5zM141 -371l52 1016h174l51 -1016h-277z" />
112
+ <glyph unicode="&#xa2;" d="M166 741q0 254 100.5 397t306.5 175v170h158v-162q152 -5 283 -66l-70 -188q-146 59 -250 59q-146 0 -216 -95t-70 -288q0 -194 72 -283t210 -89q75 0 142.5 15t154.5 52v-200q-119 -59 -258 -64v-194h-156v200q-207 31 -307 171t-100 390z" />
113
+ <glyph unicode="&#xa3;" d="M72 0v195q98 30 145 96t47 178v184h-188v172h188v256q0 188 113.5 294t312.5 106q194 0 375 -82l-76 -182q-162 71 -284 71q-205 0 -205 -219v-244h397v-172h-397v-182q0 -91 -33 -155t-113 -109h756v-207h-1038z" />
114
+ <glyph unicode="&#xa4;" d="M117 1069l121 119l131 -129q100 63 215 63t213 -65l133 131l121 -117l-131 -133q63 -100 63 -215q0 -119 -63 -217l129 -129l-119 -119l-133 129q-99 -61 -213 -61q-126 0 -215 61l-131 -127l-119 119l131 129q-64 99 -64 215q0 109 64 213zM354 723q0 -98 68 -164.5 t162 -66.5q97 0 165 66.5t68 164.5q0 97 -68 165t-165 68q-93 0 -161.5 -68t-68.5 -165z" />
115
+ <glyph unicode="&#xa5;" d="M18 1462h246l320 -665l321 665h244l-399 -760h227v-151h-281v-154h281v-153h-281v-244h-225v244h-283v153h283v154h-283v151h224z" />
116
+ <glyph unicode="&#xa6;" horiz-adv-x="1128" d="M473 315h180v-796h-180v796zM473 758v794h180v-794h-180z" />
117
+ <glyph unicode="&#xa7;" horiz-adv-x="1026" d="M115 57v179q77 -40 173 -65.5t177 -25.5q235 0 235 131q0 43 -21 70t-71 54t-147 65q-141 55 -206 101.5t-95.5 105t-30.5 135.5q0 80 38.5 145.5t111.5 108.5q-146 83 -146 235q0 129 109.5 202t294.5 73q91 0 174 -17t182 -59l-68 -162q-116 50 -176 63t-121 13 q-194 0 -194 -109q0 -54 55 -93.5t191 -90.5q175 -68 250 -146.5t75 -187.5q0 -177 -139 -266q139 -80 139 -223q0 -142 -118 -224.5t-326 -82.5q-212 0 -346 71zM313 827q0 -45 24 -80t78.5 -69t194.5 -90q109 65 109 168q0 75 -62 126.5t-221 104.5q-54 -16 -88.5 -61.5 t-34.5 -98.5z" />
118
+ <glyph unicode="&#xa8;" horiz-adv-x="1212" d="M293 1399q0 62 33.5 89.5t81.5 27.5q53 0 84.5 -31t31.5 -86q0 -53 -32 -85t-84 -32q-48 0 -81.5 29t-33.5 88zM686 1399q0 62 33.5 89.5t81.5 27.5q53 0 85 -31t32 -86q0 -54 -33 -85.5t-84 -31.5q-48 0 -81.5 29t-33.5 88z" />
119
+ <glyph unicode="&#xa9;" horiz-adv-x="1704" d="M100 731q0 200 100 375t275 276t377 101q200 0 375 -100t276 -275t101 -377q0 -197 -97 -370t-272 -277t-383 -104q-207 0 -382 103.5t-272.5 276.5t-97.5 371zM223 731q0 -170 84.5 -315.5t230.5 -229.5t314 -84q170 0 316 85.5t229.5 230t83.5 313.5q0 168 -84.5 314.5 t-231 230.5t-313.5 84q-168 0 -312.5 -83t-230.5 -229t-86 -317zM471 731q0 214 110 337.5t306 123.5q138 0 274 -70l-65 -143q-106 55 -203 55q-111 0 -171 -80.5t-60 -222.5q0 -147 54 -226t177 -79q55 0 118 15t109 36v-158q-115 -51 -235 -51q-197 0 -305.5 120.5 t-108.5 342.5z" />
120
+ <glyph unicode="&#xaa;" horiz-adv-x="754" d="M57 981q0 104 84 159.5t252 61.5l107 4q0 72 -34.5 108t-103.5 36q-90 0 -210 -56l-54 115q144 70 285 70q138 0 207 -62.5t69 -187.5v-447h-112l-29 97q-46 -55 -105 -82t-130 -27q-113 0 -169.5 52.5t-56.5 158.5zM221 983q0 -88 96 -88q91 0 137 41t46 123v43l-99 -4 q-71 -2 -125.5 -34t-54.5 -81z" />
121
+ <glyph unicode="&#xab;" horiz-adv-x="1139" d="M82 535v26l356 432l168 -94l-282 -350l282 -348l-168 -97zM532 535v26l357 432l168 -94l-283 -350l283 -348l-168 -97z" />
122
+ <glyph unicode="&#xac;" d="M96 633v178h977v-555h-178v377h-799z" />
123
+ <glyph unicode="&#xad;" horiz-adv-x="659" d="M72 449v200h514v-200h-514z" />
124
+ <glyph unicode="&#xae;" horiz-adv-x="1704" d="M100 731q0 200 100 375t275 276t377 101q200 0 375 -100t276 -275t101 -377q0 -197 -97 -370t-272 -277t-383 -104q-207 0 -382 103.5t-272.5 276.5t-97.5 371zM223 731q0 -170 84.5 -315.5t230.5 -229.5t314 -84q170 0 316 85.5t229.5 230t83.5 313.5q0 168 -84.5 314.5 t-231 230.5t-313.5 84q-168 0 -312.5 -83t-230.5 -229t-86 -317zM559 279v903h262q174 0 255 -68t81 -205q0 -171 -153 -233l237 -397h-211l-192 346h-90v-346h-189zM748 770h69q74 0 112 35t38 100q0 72 -36.5 100.5t-115.5 28.5h-67v-264z" />
125
+ <glyph unicode="&#xaf;" horiz-adv-x="1024" d="M-6 1556v164h1036v-164h-1036z" />
126
+ <glyph unicode="&#xb0;" horiz-adv-x="877" d="M109 1153q0 135 95 232.5t234 97.5q138 0 233 -96t95 -234q0 -139 -96 -233.5t-232 -94.5q-88 0 -164.5 43.5t-120.5 119.5t-44 165zM262 1153q0 -70 51 -122t125 -52t125 51.5t51 122.5q0 76 -52 127t-124 51t-124 -52t-52 -126z" />
127
+ <glyph unicode="&#xb1;" d="M96 0v178h977v-178h-977zM96 664v178h398v407h180v-407h399v-178h-399v-406h-180v406h-398z" />
128
+ <glyph unicode="&#xb2;" horiz-adv-x="743" d="M51 586v135l230 225q117 112 149.5 165t32.5 112q0 52 -32 79t-83 27q-93 0 -201 -88l-94 121q139 119 309 119q136 0 211.5 -66t75.5 -180q0 -83 -46 -158.5t-183 -202.5l-139 -129h397v-159h-627z" />
129
+ <glyph unicode="&#xb3;" horiz-adv-x="743" d="M45 631v157q145 -79 270 -79q179 0 179 135q0 125 -199 125h-115v133h105q184 0 184 129q0 52 -34.5 80t-90.5 28q-57 0 -105.5 -20t-105.5 -57l-84 114q61 46 134 75.5t171 29.5q134 0 212.5 -61.5t78.5 -168.5q0 -75 -40.5 -122.5t-119.5 -86.5q94 -21 141.5 -76 t47.5 -132q0 -127 -93 -196t-266 -69q-148 0 -270 62z" />
130
+ <glyph unicode="&#xb4;" horiz-adv-x="1212" d="M362 1241v25q57 70 117.5 156t95.5 147h273v-21q-52 -61 -155.5 -157.5t-174.5 -149.5h-156z" />
131
+ <glyph unicode="&#xb5;" horiz-adv-x="1309" d="M168 -492v1598h235v-684q0 -252 218 -252q146 0 215 88.5t69 296.5v551h236v-1106h-183l-34 147h-13q-48 -83 -119.5 -125t-175.5 -42q-140 0 -219 90h-4q3 -28 6.5 -117t3.5 -125v-320h-235z" />
132
+ <glyph unicode="&#xb6;" horiz-adv-x="1341" d="M113 1042q0 260 109 387t341 127h580v-1816h-137v1663h-191v-1663h-137v819q-62 -18 -146 -18q-216 0 -317.5 125t-101.5 376z" />
133
+ <glyph unicode="&#xb7;" horiz-adv-x="563" d="M133 723q0 73 38 112t110 39q73 0 111 -40.5t38 -110.5q0 -71 -38.5 -112.5t-110.5 -41.5t-110 41t-38 113z" />
134
+ <glyph unicode="&#xb8;" horiz-adv-x="442" d="M0 -340q54 -14 123 -14q54 0 85.5 16.5t31.5 61.5q0 85 -179 110l84 166h152l-41 -88q80 -21 125 -68.5t45 -113.5q0 -222 -305 -222q-66 0 -121 15v137z" />
135
+ <glyph unicode="&#xb9;" horiz-adv-x="743" d="M84 1253l281 209h167v-876h-186v512l3 103l5 91q-17 -18 -40.5 -40t-141.5 -111z" />
136
+ <glyph unicode="&#xba;" horiz-adv-x="780" d="M61 1124q0 169 88.5 262t241.5 93q152 0 240 -94.5t88 -260.5q0 -164 -87.5 -259t-244.5 -95q-150 0 -238 95.5t-88 258.5zM223 1124q0 -111 39 -166t127 -55t127 55t39 166q0 113 -39 167.5t-127 54.5t-127 -54.5t-39 -167.5z" />
137
+ <glyph unicode="&#xbb;" horiz-adv-x="1139" d="M80 201l282 348l-282 350l168 94l358 -432v-26l-358 -431zM530 201l283 348l-283 350l168 94l359 -432v-26l-359 -431z" />
138
+ <glyph unicode="&#xbc;" horiz-adv-x="1700" d="M285 0l858 1462h190l-856 -1462h-192zM60 1253l281 209h167v-876h-186v512l3 103l5 91q-17 -18 -40.5 -40t-141.5 -111zM876 177v127l396 579h188v-563h125v-143h-125v-176h-192v176h-392zM1038 320h230v178q0 97 6 197q-52 -104 -88 -158z" />
139
+ <glyph unicode="&#xbd;" horiz-adv-x="1700" d="M250 0l858 1462h190l-856 -1462h-192zM46 1253l281 209h167v-876h-186v512l3 103l5 91q-17 -18 -40.5 -40t-141.5 -111zM981 1v135l230 225q117 112 149.5 165t32.5 112q0 52 -32 79t-83 27q-93 0 -201 -88l-94 121q139 119 309 119q136 0 211.5 -66t75.5 -180 q0 -83 -46 -158.5t-183 -202.5l-139 -129h397v-159h-627z" />
140
+ <glyph unicode="&#xbe;" horiz-adv-x="1700" d="M367 0l858 1462h190l-856 -1462h-192zM931 177v127l396 579h188v-563h125v-143h-125v-176h-192v176h-392zM1093 320h230v178q0 97 6 197q-52 -104 -88 -158zM55 631v157q145 -79 270 -79q179 0 179 135q0 125 -199 125h-115v133h105q184 0 184 129q0 52 -34.5 80 t-90.5 28q-57 0 -105.5 -20t-105.5 -57l-84 114q61 46 134 75.5t171 29.5q134 0 212.5 -61.5t78.5 -168.5q0 -75 -40.5 -122.5t-119.5 -86.5q94 -21 141.5 -76t47.5 -132q0 -127 -93 -196t-266 -69q-148 0 -270 62z" />
141
+ <glyph unicode="&#xbf;" horiz-adv-x="928" d="M55 -33q0 73 21 130t64 109t157 142q94 76 125 124.5t31 127.5v45h198v-63q0 -106 -41 -181t-143 -155q-124 -98 -155 -147t-31 -124q0 -78 54 -125t161 -47q90 0 174 27.5t166 65.5l82 -179q-220 -110 -424 -110q-207 0 -323 95.5t-116 264.5zM395 965q0 69 38 111 t110 42t110.5 -40.5t38.5 -112.5q0 -74 -37.5 -113t-111.5 -39q-72 0 -110 39.5t-38 112.5z" />
142
+ <glyph unicode="&#xc0;" horiz-adv-x="1354" d="M0 0l547 1468h260l547 -1468h-254l-146 406h-559l-143 -406h-252zM465 612h426l-137 398q-15 40 -41.5 126t-36.5 126q-27 -123 -79 -269zM334 1886v21h273q38 -70 103.5 -161t109.5 -142v-25h-158q-69 52 -174.5 150.5t-153.5 156.5z" />
143
+ <glyph unicode="&#xc1;" horiz-adv-x="1354" d="M0 0l547 1468h260l547 -1468h-254l-146 406h-559l-143 -406h-252zM465 612h426l-137 398q-15 40 -41.5 126t-36.5 126q-27 -123 -79 -269zM532 1579v25q57 70 117.5 156t95.5 147h273v-21q-52 -61 -155.5 -157.5t-174.5 -149.5h-156z" />
144
+ <glyph unicode="&#xc2;" horiz-adv-x="1354" d="M0 0l547 1468h260l547 -1468h-254l-146 406h-559l-143 -406h-252zM465 612h426l-137 398q-15 40 -41.5 126t-36.5 126q-27 -123 -79 -269zM286 1579v25q191 198 254 303h260q63 -110 256 -303v-25h-159q-123 73 -228 180q-103 -103 -225 -180h-158z" />
145
+ <glyph unicode="&#xc3;" horiz-adv-x="1354" d="M0 0l547 1468h260l547 -1468h-254l-146 406h-559l-143 -406h-252zM465 612h426l-137 398q-15 40 -41.5 126t-36.5 126q-27 -123 -79 -269zM281 1577q12 139 77.5 212t167.5 73q43 0 84 -17.5t80 -39t75.5 -39t70.5 -17.5q79 0 106 115h125q-12 -134 -77 -209.5 t-169 -75.5q-42 0 -82.5 17.5t-79.5 39t-76 39t-71 17.5q-81 0 -109 -115h-122z" />
146
+ <glyph unicode="&#xc4;" horiz-adv-x="1354" d="M0 0l547 1468h260l547 -1468h-254l-146 406h-559l-143 -406h-252zM465 612h426l-137 398q-15 40 -41.5 126t-36.5 126q-27 -123 -79 -269zM363 1737q0 62 33.5 89.5t81.5 27.5q53 0 84.5 -31t31.5 -86q0 -53 -32 -85t-84 -32q-48 0 -81.5 29t-33.5 88zM756 1737 q0 62 33.5 89.5t81.5 27.5q53 0 85 -31t32 -86q0 -54 -33 -85.5t-84 -31.5q-48 0 -81.5 29t-33.5 88z" />
147
+ <glyph unicode="&#xc5;" horiz-adv-x="1354" d="M0 0l547 1468h260l547 -1468h-254l-146 406h-559l-143 -406h-252zM465 612h426l-137 398q-15 40 -41.5 126t-36.5 126q-27 -123 -79 -269zM438 1575q0 101 63.5 163.5t172.5 62.5q104 0 171.5 -62t67.5 -162q0 -102 -65.5 -165.5t-173.5 -63.5t-172 62.5t-64 164.5z M567 1575q0 -106 107 -106q46 0 76 27.5t30 78.5q0 50 -30 78.5t-76 28.5q-47 0 -77 -28.5t-30 -78.5z" />
148
+ <glyph unicode="&#xc6;" horiz-adv-x="1868" d="M-2 0l678 1462h1071v-202h-571v-398h532v-200h-532v-459h571v-203h-811v406h-504l-188 -406h-246zM522 612h414v641h-123z" />
149
+ <glyph unicode="&#xc7;" horiz-adv-x="1298" d="M121 731q0 228 83.5 399t241.5 262t371 91q224 0 414 -94l-86 -199q-74 35 -156.5 61.5t-173.5 26.5q-206 0 -324 -146t-118 -403q0 -269 113.5 -407t328.5 -138q93 0 180 18.5t181 47.5v-205q-172 -65 -390 -65q-321 0 -493 194.5t-172 556.5zM526 -340q54 -14 123 -14 q54 0 85.5 16.5t31.5 61.5q0 85 -179 110l84 166h152l-41 -88q80 -21 125 -68.5t45 -113.5q0 -222 -305 -222q-66 0 -121 15v137z" />
150
+ <glyph unicode="&#xc8;" horiz-adv-x="1143" d="M193 0v1462h827v-202h-588v-398h551v-200h-551v-459h588v-203h-827zM289 1886v21h273q38 -70 103.5 -161t109.5 -142v-25h-158q-69 52 -174.5 150.5t-153.5 156.5z" />
151
+ <glyph unicode="&#xc9;" horiz-adv-x="1143" d="M193 0v1462h827v-202h-588v-398h551v-200h-551v-459h588v-203h-827zM440 1579v25q57 70 117.5 156t95.5 147h273v-21q-52 -61 -155.5 -157.5t-174.5 -149.5h-156z" />
152
+ <glyph unicode="&#xca;" horiz-adv-x="1143" d="M193 0v1462h827v-202h-588v-398h551v-200h-551v-459h588v-203h-827zM220 1579v25q191 198 254 303h260q63 -110 256 -303v-25h-159q-123 73 -228 180q-103 -103 -225 -180h-158z" />
153
+ <glyph unicode="&#xcb;" horiz-adv-x="1143" d="M193 0v1462h827v-202h-588v-398h551v-200h-551v-459h588v-203h-827zM297 1737q0 62 33.5 89.5t81.5 27.5q53 0 84.5 -31t31.5 -86q0 -53 -32 -85t-84 -32q-48 0 -81.5 29t-33.5 88zM690 1737q0 62 33.5 89.5t81.5 27.5q53 0 85 -31t32 -86q0 -54 -33 -85.5t-84 -31.5 q-48 0 -81.5 29t-33.5 88z" />
154
+ <glyph unicode="&#xcc;" horiz-adv-x="625" d="M193 0v1462h239v-1462h-239zM-6 1886v21h273q38 -70 103.5 -161t109.5 -142v-25h-158q-69 52 -174.5 150.5t-153.5 156.5z" />
155
+ <glyph unicode="&#xcd;" horiz-adv-x="625" d="M193 0v1462h239v-1462h-239zM179 1579v25q57 70 117.5 156t95.5 147h273v-21q-52 -61 -155.5 -157.5t-174.5 -149.5h-156z" />
156
+ <glyph unicode="&#xce;" horiz-adv-x="625" d="M193 0v1462h239v-1462h-239zM-75 1579v25q191 198 254 303h260q63 -110 256 -303v-25h-159q-123 73 -228 180q-103 -103 -225 -180h-158z" />
157
+ <glyph unicode="&#xcf;" horiz-adv-x="625" d="M193 0v1462h239v-1462h-239zM1 1737q0 62 33.5 89.5t81.5 27.5q53 0 84.5 -31t31.5 -86q0 -53 -32 -85t-84 -32q-48 0 -81.5 29t-33.5 88zM394 1737q0 62 33.5 89.5t81.5 27.5q53 0 85 -31t32 -86q0 -54 -33 -85.5t-84 -31.5q-48 0 -81.5 29t-33.5 88z" />
158
+ <glyph unicode="&#xd0;" horiz-adv-x="1497" d="M47 623v200h146v639h446q347 0 541 -188.5t194 -528.5q0 -360 -201 -552.5t-579 -192.5h-401v623h-146zM432 201h160q530 0 530 536q0 260 -124.5 392.5t-368.5 132.5h-197v-439h307v-200h-307v-422z" />
159
+ <glyph unicode="&#xd1;" horiz-adv-x="1604" d="M193 0v1462h290l717 -1159h6q-2 23 -8 167.5t-6 225.5v766h219v-1462h-293l-719 1165h-8l5 -65q14 -186 14 -340v-760h-217zM414 1577q12 139 77.5 212t167.5 73q43 0 84 -17.5t80 -39t75.5 -39t70.5 -17.5q79 0 106 115h125q-12 -134 -77 -209.5t-169 -75.5 q-42 0 -82.5 17.5t-79.5 39t-76 39t-71 17.5q-81 0 -109 -115h-122z" />
160
+ <glyph unicode="&#xd2;" horiz-adv-x="1612" d="M121 735q0 362 178.5 556t509.5 194q326 0 504 -197t178 -555q0 -357 -178.5 -555t-505.5 -198q-331 0 -508.5 196.5t-177.5 558.5zM375 733q0 -270 109 -409.5t323 -139.5q213 0 321.5 138t108.5 411q0 269 -107.5 408t-320.5 139q-215 0 -324.5 -139t-109.5 -408z M481 1886v21h273q38 -70 103.5 -161t109.5 -142v-25h-158q-69 52 -174.5 150.5t-153.5 156.5z" />
161
+ <glyph unicode="&#xd3;" horiz-adv-x="1612" d="M121 735q0 362 178.5 556t509.5 194q326 0 504 -197t178 -555q0 -357 -178.5 -555t-505.5 -198q-331 0 -508.5 196.5t-177.5 558.5zM375 733q0 -270 109 -409.5t323 -139.5q213 0 321.5 138t108.5 411q0 269 -107.5 408t-320.5 139q-215 0 -324.5 -139t-109.5 -408z M657 1579v25q57 70 117.5 156t95.5 147h273v-21q-52 -61 -155.5 -157.5t-174.5 -149.5h-156z" />
162
+ <glyph unicode="&#xd4;" horiz-adv-x="1612" d="M121 735q0 362 178.5 556t509.5 194q326 0 504 -197t178 -555q0 -357 -178.5 -555t-505.5 -198q-331 0 -508.5 196.5t-177.5 558.5zM375 733q0 -270 109 -409.5t323 -139.5q213 0 321.5 138t108.5 411q0 269 -107.5 408t-320.5 139q-215 0 -324.5 -139t-109.5 -408z M413 1579v25q191 198 254 303h260q63 -110 256 -303v-25h-159q-123 73 -228 180q-103 -103 -225 -180h-158z" />
163
+ <glyph unicode="&#xd5;" horiz-adv-x="1612" d="M121 735q0 362 178.5 556t509.5 194q326 0 504 -197t178 -555q0 -357 -178.5 -555t-505.5 -198q-331 0 -508.5 196.5t-177.5 558.5zM375 733q0 -270 109 -409.5t323 -139.5q213 0 321.5 138t108.5 411q0 269 -107.5 408t-320.5 139q-215 0 -324.5 -139t-109.5 -408z M410 1577q12 139 77.5 212t167.5 73q43 0 84 -17.5t80 -39t75.5 -39t70.5 -17.5q79 0 106 115h125q-12 -134 -77 -209.5t-169 -75.5q-42 0 -82.5 17.5t-79.5 39t-76 39t-71 17.5q-81 0 -109 -115h-122z" />
164
+ <glyph unicode="&#xd6;" horiz-adv-x="1612" d="M121 735q0 362 178.5 556t509.5 194q326 0 504 -197t178 -555q0 -357 -178.5 -555t-505.5 -198q-331 0 -508.5 196.5t-177.5 558.5zM375 733q0 -270 109 -409.5t323 -139.5q213 0 321.5 138t108.5 411q0 269 -107.5 408t-320.5 139q-215 0 -324.5 -139t-109.5 -408z M496 1737q0 62 33.5 89.5t81.5 27.5q53 0 84.5 -31t31.5 -86q0 -53 -32 -85t-84 -32q-48 0 -81.5 29t-33.5 88zM889 1737q0 62 33.5 89.5t81.5 27.5q53 0 85 -31t32 -86q0 -54 -33 -85.5t-84 -31.5q-48 0 -81.5 29t-33.5 88z" />
165
+ <glyph unicode="&#xd7;" d="M131 1049l125 127l328 -326l329 326l125 -123l-329 -330l325 -328l-123 -125l-329 326l-324 -326l-125 125l324 328z" />
166
+ <glyph unicode="&#xd8;" horiz-adv-x="1612" d="M121 735q0 362 178.5 556t509.5 194q199 0 354 -82l90 129l142 -92l-99 -140q195 -199 195 -567q0 -357 -178.5 -555t-505.5 -198q-213 0 -361 81l-94 -137l-141 94l98 144q-188 196 -188 573zM375 733q0 -231 78 -362l587 850q-92 59 -231 59q-215 0 -324.5 -139 t-109.5 -408zM571 244q97 -60 236 -60q213 0 321.5 138t108.5 411q0 225 -80 361z" />
167
+ <glyph unicode="&#xd9;" horiz-adv-x="1520" d="M180 520v942h240v-925q0 -181 84 -267t258 -86q338 0 338 355v923h239v-946q0 -162 -69.5 -283.5t-201 -187t-314.5 -65.5q-272 0 -423 144t-151 396zM417 1886v21h273q38 -70 103.5 -161t109.5 -142v-25h-158q-69 52 -174.5 150.5t-153.5 156.5z" />
168
+ <glyph unicode="&#xda;" horiz-adv-x="1520" d="M180 520v942h240v-925q0 -181 84 -267t258 -86q338 0 338 355v923h239v-946q0 -162 -69.5 -283.5t-201 -187t-314.5 -65.5q-272 0 -423 144t-151 396zM600 1579v25q57 70 117.5 156t95.5 147h273v-21q-52 -61 -155.5 -157.5t-174.5 -149.5h-156z" />
169
+ <glyph unicode="&#xdb;" horiz-adv-x="1520" d="M180 520v942h240v-925q0 -181 84 -267t258 -86q338 0 338 355v923h239v-946q0 -162 -69.5 -283.5t-201 -187t-314.5 -65.5q-272 0 -423 144t-151 396zM366 1579v25q191 198 254 303h260q63 -110 256 -303v-25h-159q-123 73 -228 180q-103 -103 -225 -180h-158z" />
170
+ <glyph unicode="&#xdc;" horiz-adv-x="1520" d="M180 520v942h240v-925q0 -181 84 -267t258 -86q338 0 338 355v923h239v-946q0 -162 -69.5 -283.5t-201 -187t-314.5 -65.5q-272 0 -423 144t-151 396zM445 1737q0 62 33.5 89.5t81.5 27.5q53 0 84.5 -31t31.5 -86q0 -53 -32 -85t-84 -32q-48 0 -81.5 29t-33.5 88z M838 1737q0 62 33.5 89.5t81.5 27.5q53 0 85 -31t32 -86q0 -54 -33 -85.5t-84 -31.5q-48 0 -81.5 29t-33.5 88z" />
171
+ <glyph unicode="&#xdd;" horiz-adv-x="1212" d="M0 1462h260l346 -667l346 667h260l-487 -895v-567h-240v559zM450 1579v25q57 70 117.5 156t95.5 147h273v-21q-52 -61 -155.5 -157.5t-174.5 -149.5h-156z" />
172
+ <glyph unicode="&#xde;" horiz-adv-x="1268" d="M193 0v1462h239v-243h197q268 0 404 -112t136 -331q0 -227 -146 -349t-423 -122h-168v-305h-239zM432 504h133q187 0 273 63t86 203q0 127 -78 188.5t-250 61.5h-164v-516z" />
173
+ <glyph unicode="&#xdf;" horiz-adv-x="1364" d="M168 0v1169q0 193 128.5 295.5t367.5 102.5q225 0 355 -84t130 -230q0 -74 -38.5 -140.5t-104.5 -117.5q-90 -69 -117 -98t-27 -57q0 -30 22.5 -55.5t79.5 -63.5l95 -64q92 -62 135.5 -109.5t65.5 -103.5t22 -127q0 -165 -107 -251t-311 -86q-190 0 -299 65v199 q58 -37 139 -61.5t148 -24.5q192 0 192 151q0 61 -34.5 105t-155.5 118q-119 73 -171 135t-52 146q0 63 34 115.5t105 105.5q75 55 107 97.5t32 93.5q0 72 -67 112.5t-178 40.5q-127 0 -194 -54t-67 -159v-1165h-235z" />
174
+ <glyph unicode="&#xe0;" horiz-adv-x="1188" d="M90 317q0 171 127 258t387 95l191 6v59q0 106 -49.5 158.5t-153.5 52.5q-85 0 -163 -25t-150 -59l-76 168q90 47 197 71.5t202 24.5q211 0 318.5 -92t107.5 -289v-745h-168l-47 154h-8q-80 -101 -161 -137.5t-208 -36.5q-163 0 -254.5 88t-91.5 249zM334 315 q0 -74 44 -114.5t132 -40.5q128 0 205.5 71.5t77.5 200.5v96l-142 -6q-166 -6 -241.5 -55.5t-75.5 -151.5zM259 1548v21h273q38 -70 103.5 -161t109.5 -142v-25h-158q-69 52 -174.5 150.5t-153.5 156.5z" />
175
+ <glyph unicode="&#xe1;" horiz-adv-x="1188" d="M90 317q0 171 127 258t387 95l191 6v59q0 106 -49.5 158.5t-153.5 52.5q-85 0 -163 -25t-150 -59l-76 168q90 47 197 71.5t202 24.5q211 0 318.5 -92t107.5 -289v-745h-168l-47 154h-8q-80 -101 -161 -137.5t-208 -36.5q-163 0 -254.5 88t-91.5 249zM334 315 q0 -74 44 -114.5t132 -40.5q128 0 205.5 71.5t77.5 200.5v96l-142 -6q-166 -6 -241.5 -55.5t-75.5 -151.5zM438 1241v25q57 70 117.5 156t95.5 147h273v-21q-52 -61 -155.5 -157.5t-174.5 -149.5h-156z" />
176
+ <glyph unicode="&#xe2;" horiz-adv-x="1188" d="M90 317q0 171 127 258t387 95l191 6v59q0 106 -49.5 158.5t-153.5 52.5q-85 0 -163 -25t-150 -59l-76 168q90 47 197 71.5t202 24.5q211 0 318.5 -92t107.5 -289v-745h-168l-47 154h-8q-80 -101 -161 -137.5t-208 -36.5q-163 0 -254.5 88t-91.5 249zM334 315 q0 -74 44 -114.5t132 -40.5q128 0 205.5 71.5t77.5 200.5v96l-142 -6q-166 -6 -241.5 -55.5t-75.5 -151.5zM203 1241v25q191 198 254 303h260q63 -110 256 -303v-25h-159q-123 73 -228 180q-103 -103 -225 -180h-158z" />
177
+ <glyph unicode="&#xe3;" horiz-adv-x="1188" d="M90 317q0 171 127 258t387 95l191 6v59q0 106 -49.5 158.5t-153.5 52.5q-85 0 -163 -25t-150 -59l-76 168q90 47 197 71.5t202 24.5q211 0 318.5 -92t107.5 -289v-745h-168l-47 154h-8q-80 -101 -161 -137.5t-208 -36.5q-163 0 -254.5 88t-91.5 249zM334 315 q0 -74 44 -114.5t132 -40.5q128 0 205.5 71.5t77.5 200.5v96l-142 -6q-166 -6 -241.5 -55.5t-75.5 -151.5zM208 1239q12 139 77.5 212t167.5 73q43 0 84 -17.5t80 -39t75.5 -39t70.5 -17.5q79 0 106 115h125q-12 -134 -77 -209.5t-169 -75.5q-42 0 -82.5 17.5t-79.5 39 t-76 39t-71 17.5q-81 0 -109 -115h-122z" />
178
+ <glyph unicode="&#xe4;" horiz-adv-x="1188" d="M90 317q0 171 127 258t387 95l191 6v59q0 106 -49.5 158.5t-153.5 52.5q-85 0 -163 -25t-150 -59l-76 168q90 47 197 71.5t202 24.5q211 0 318.5 -92t107.5 -289v-745h-168l-47 154h-8q-80 -101 -161 -137.5t-208 -36.5q-163 0 -254.5 88t-91.5 249zM334 315 q0 -74 44 -114.5t132 -40.5q128 0 205.5 71.5t77.5 200.5v96l-142 -6q-166 -6 -241.5 -55.5t-75.5 -151.5zM282 1399q0 62 33.5 89.5t81.5 27.5q53 0 84.5 -31t31.5 -86q0 -53 -32 -85t-84 -32q-48 0 -81.5 29t-33.5 88zM675 1399q0 62 33.5 89.5t81.5 27.5q53 0 85 -31 t32 -86q0 -54 -33 -85.5t-84 -31.5q-48 0 -81.5 29t-33.5 88z" />
179
+ <glyph unicode="&#xe5;" horiz-adv-x="1188" d="M90 317q0 171 127 258t387 95l191 6v59q0 106 -49.5 158.5t-153.5 52.5q-85 0 -163 -25t-150 -59l-76 168q90 47 197 71.5t202 24.5q211 0 318.5 -92t107.5 -289v-745h-168l-47 154h-8q-80 -101 -161 -137.5t-208 -36.5q-163 0 -254.5 88t-91.5 249zM334 315 q0 -74 44 -114.5t132 -40.5q128 0 205.5 71.5t77.5 200.5v96l-142 -6q-166 -6 -241.5 -55.5t-75.5 -151.5zM366 1466q0 101 63.5 163.5t172.5 62.5q104 0 171.5 -62t67.5 -162q0 -102 -65.5 -165.5t-173.5 -63.5t-172 62.5t-64 164.5zM495 1466q0 -106 107 -106 q46 0 76 27.5t30 78.5q0 50 -30 78.5t-76 28.5q-47 0 -77 -28.5t-30 -78.5z" />
180
+ <glyph unicode="&#xe6;" horiz-adv-x="1817" d="M90 317q0 172 121.5 258.5t370.5 94.5l188 6v76q0 194 -201 194q-141 0 -307 -82l-74 166q88 47 192.5 71.5t203.5 24.5q241 0 340 -155q120 155 346 155q206 0 328 -134.5t122 -362.5v-127h-712q10 -336 301 -336q184 0 356 80v-191q-86 -41 -171.5 -58t-195.5 -17 q-140 0 -248.5 54.5t-175.5 164.5q-94 -125 -190.5 -172t-241.5 -47q-165 0 -258.5 90t-93.5 247zM334 315q0 -155 166 -155q124 0 196 72.5t72 199.5v96l-135 -6q-155 -6 -227 -54.5t-72 -152.5zM1014 670h473q0 130 -58.5 204t-162.5 74q-112 0 -177.5 -69.5t-74.5 -208.5 z" />
181
+ <glyph unicode="&#xe7;" horiz-adv-x="1014" d="M102 547q0 279 136.5 429t394.5 150q175 0 315 -65l-71 -189q-149 58 -246 58q-287 0 -287 -381q0 -186 71.5 -279.5t209.5 -93.5q157 0 297 78v-205q-63 -37 -134.5 -53t-173.5 -16q-251 0 -381.5 146.5t-130.5 420.5zM356 -340q54 -14 123 -14q54 0 85.5 16.5 t31.5 61.5q0 85 -179 110l84 166h152l-41 -88q80 -21 125 -68.5t45 -113.5q0 -222 -305 -222q-66 0 -121 15v137z" />
182
+ <glyph unicode="&#xe8;" horiz-adv-x="1180" d="M102 545q0 271 135 426t371 155q219 0 346 -133t127 -366v-127h-737q5 -161 87 -247.5t231 -86.5q98 0 182.5 18.5t181.5 61.5v-191q-86 -41 -174 -58t-201 -17q-258 0 -403.5 150.5t-145.5 414.5zM348 670h502q-2 137 -66 207.5t-176 70.5t-179.5 -71t-80.5 -207z M281 1548v21h273q38 -70 103.5 -161t109.5 -142v-25h-158q-69 52 -174.5 150.5t-153.5 156.5z" />
183
+ <glyph unicode="&#xe9;" horiz-adv-x="1180" d="M102 545q0 271 135 426t371 155q219 0 346 -133t127 -366v-127h-737q5 -161 87 -247.5t231 -86.5q98 0 182.5 18.5t181.5 61.5v-191q-86 -41 -174 -58t-201 -17q-258 0 -403.5 150.5t-145.5 414.5zM348 670h502q-2 137 -66 207.5t-176 70.5t-179.5 -71t-80.5 -207z M458 1241v25q57 70 117.5 156t95.5 147h273v-21q-52 -61 -155.5 -157.5t-174.5 -149.5h-156z" />
184
+ <glyph unicode="&#xea;" horiz-adv-x="1180" d="M102 545q0 271 135 426t371 155q219 0 346 -133t127 -366v-127h-737q5 -161 87 -247.5t231 -86.5q98 0 182.5 18.5t181.5 61.5v-191q-86 -41 -174 -58t-201 -17q-258 0 -403.5 150.5t-145.5 414.5zM348 670h502q-2 137 -66 207.5t-176 70.5t-179.5 -71t-80.5 -207z M227 1241v25q191 198 254 303h260q63 -110 256 -303v-25h-159q-123 73 -228 180q-103 -103 -225 -180h-158z" />
185
+ <glyph unicode="&#xeb;" horiz-adv-x="1180" d="M102 545q0 271 135 426t371 155q219 0 346 -133t127 -366v-127h-737q5 -161 87 -247.5t231 -86.5q98 0 182.5 18.5t181.5 61.5v-191q-86 -41 -174 -58t-201 -17q-258 0 -403.5 150.5t-145.5 414.5zM348 670h502q-2 137 -66 207.5t-176 70.5t-179.5 -71t-80.5 -207z M307 1399q0 62 33.5 89.5t81.5 27.5q53 0 84.5 -31t31.5 -86q0 -53 -32 -85t-84 -32q-48 0 -81.5 29t-33.5 88zM700 1399q0 62 33.5 89.5t81.5 27.5q53 0 85 -31t32 -86q0 -54 -33 -85.5t-84 -31.5q-48 0 -81.5 29t-33.5 88z" />
186
+ <glyph unicode="&#xec;" horiz-adv-x="571" d="M168 0v1106h235v-1106h-235zM-69 1548v21h273q38 -70 103.5 -161t109.5 -142v-25h-158q-69 52 -174.5 150.5t-153.5 156.5z" />
187
+ <glyph unicode="&#xed;" horiz-adv-x="571" d="M168 0v1106h235v-1106h-235zM156 1241v25q57 70 117.5 156t95.5 147h273v-21q-52 -61 -155.5 -157.5t-174.5 -149.5h-156z" />
188
+ <glyph unicode="&#xee;" horiz-adv-x="571" d="M168 0v1106h235v-1106h-235zM-100 1241v25q191 198 254 303h260q63 -110 256 -303v-25h-159q-123 73 -228 180q-103 -103 -225 -180h-158z" />
189
+ <glyph unicode="&#xef;" horiz-adv-x="571" d="M168 0v1106h235v-1106h-235zM-25 1399q0 62 33.5 89.5t81.5 27.5q53 0 84.5 -31t31.5 -86q0 -53 -32 -85t-84 -32q-48 0 -81.5 29t-33.5 88zM368 1399q0 62 33.5 89.5t81.5 27.5q53 0 85 -31t32 -86q0 -54 -33 -85.5t-84 -31.5q-48 0 -81.5 29t-33.5 88z" />
190
+ <glyph unicode="&#xf0;" horiz-adv-x="1243" d="M102 481q0 231 131 365.5t351 134.5q214 0 301 -111l8 4q-62 189 -227 345l-250 -150l-88 133l204 119q-86 59 -167 102l84 146q140 -63 258 -144l231 138l88 -129l-188 -113q152 -140 231.5 -330t79.5 -424q0 -279 -137.5 -433t-388.5 -154q-235 0 -378 136t-143 365z M342 477q0 -153 74 -234t211 -81q148 0 215 91t67 269q0 127 -75.5 202t-206.5 75q-151 0 -218 -82t-67 -240z" />
191
+ <glyph unicode="&#xf1;" horiz-adv-x="1300" d="M168 0v1106h184l33 -145h12q50 79 142 122t204 43q398 0 398 -405v-721h-236v680q0 128 -51.5 191t-163.5 63q-149 0 -218 -88t-69 -295v-551h-235zM269 1239q12 139 77.5 212t167.5 73q43 0 84 -17.5t80 -39t75.5 -39t70.5 -17.5q79 0 106 115h125q-12 -134 -77 -209.5 t-169 -75.5q-42 0 -82.5 17.5t-79.5 39t-76 39t-71 17.5q-81 0 -109 -115h-122z" />
192
+ <glyph unicode="&#xf2;" horiz-adv-x="1251" d="M102 555q0 269 138 420t389 151q240 0 380 -154.5t140 -416.5q0 -271 -139 -423t-387 -152q-155 0 -274 70t-183 201t-64 304zM344 555q0 -383 283 -383q280 0 280 383q0 379 -282 379q-148 0 -214.5 -98t-66.5 -281zM293 1548v21h273q38 -70 103.5 -161t109.5 -142v-25 h-158q-69 52 -174.5 150.5t-153.5 156.5z" />
193
+ <glyph unicode="&#xf3;" horiz-adv-x="1251" d="M102 555q0 269 138 420t389 151q240 0 380 -154.5t140 -416.5q0 -271 -139 -423t-387 -152q-155 0 -274 70t-183 201t-64 304zM344 555q0 -383 283 -383q280 0 280 383q0 379 -282 379q-148 0 -214.5 -98t-66.5 -281zM473 1241v25q57 70 117.5 156t95.5 147h273v-21 q-52 -61 -155.5 -157.5t-174.5 -149.5h-156z" />
194
+ <glyph unicode="&#xf4;" horiz-adv-x="1251" d="M102 555q0 269 138 420t389 151q240 0 380 -154.5t140 -416.5q0 -271 -139 -423t-387 -152q-155 0 -274 70t-183 201t-64 304zM344 555q0 -383 283 -383q280 0 280 383q0 379 -282 379q-148 0 -214.5 -98t-66.5 -281zM239 1241v25q191 198 254 303h260q63 -110 256 -303 v-25h-159q-123 73 -228 180q-103 -103 -225 -180h-158z" />
195
+ <glyph unicode="&#xf5;" horiz-adv-x="1251" d="M102 555q0 269 138 420t389 151q240 0 380 -154.5t140 -416.5q0 -271 -139 -423t-387 -152q-155 0 -274 70t-183 201t-64 304zM344 555q0 -383 283 -383q280 0 280 383q0 379 -282 379q-148 0 -214.5 -98t-66.5 -281zM235 1239q12 139 77.5 212t167.5 73q43 0 84 -17.5 t80 -39t75.5 -39t70.5 -17.5q79 0 106 115h125q-12 -134 -77 -209.5t-169 -75.5q-42 0 -82.5 17.5t-79.5 39t-76 39t-71 17.5q-81 0 -109 -115h-122z" />
196
+ <glyph unicode="&#xf6;" horiz-adv-x="1251" d="M102 555q0 269 138 420t389 151q240 0 380 -154.5t140 -416.5q0 -271 -139 -423t-387 -152q-155 0 -274 70t-183 201t-64 304zM344 555q0 -383 283 -383q280 0 280 383q0 379 -282 379q-148 0 -214.5 -98t-66.5 -281zM311 1399q0 62 33.5 89.5t81.5 27.5q53 0 84.5 -31 t31.5 -86q0 -53 -32 -85t-84 -32q-48 0 -81.5 29t-33.5 88zM704 1399q0 62 33.5 89.5t81.5 27.5q53 0 85 -31t32 -86q0 -54 -33 -85.5t-84 -31.5q-48 0 -81.5 29t-33.5 88z" />
197
+ <glyph unicode="&#xf7;" d="M96 633v178h977v-178h-977zM457 373q0 64 31.5 99.5t95.5 35.5q61 0 93 -36t32 -99t-34 -100t-91 -37q-60 0 -93.5 35.5t-33.5 101.5zM457 1071q0 64 31.5 99.5t95.5 35.5q61 0 93 -36t32 -99t-34 -100t-91 -37q-60 0 -93.5 35.5t-33.5 101.5z" />
198
+ <glyph unicode="&#xf8;" horiz-adv-x="1251" d="M102 555q0 269 138 420t389 151q144 0 258 -63l69 100l136 -92l-78 -108q135 -152 135 -408q0 -271 -139 -423t-387 -152q-144 0 -250 57l-76 -109l-135 90l82 117q-142 155 -142 420zM344 555q0 -135 37 -219l391 559q-60 39 -147 39q-148 0 -214.5 -98t-66.5 -281z M487 205q54 -33 140 -33q280 0 280 383q0 121 -33 203z" />
199
+ <glyph unicode="&#xf9;" horiz-adv-x="1300" d="M158 383v723h237v-682q0 -127 52 -190.5t163 -63.5q148 0 217.5 88.5t69.5 296.5v551h236v-1106h-185l-33 145h-12q-49 -77 -139.5 -121t-206.5 -44q-201 0 -300 100t-99 303zM289 1548v21h273q38 -70 103.5 -161t109.5 -142v-25h-158q-69 52 -174.5 150.5t-153.5 156.5z " />
200
+ <glyph unicode="&#xfa;" horiz-adv-x="1300" d="M158 383v723h237v-682q0 -127 52 -190.5t163 -63.5q148 0 217.5 88.5t69.5 296.5v551h236v-1106h-185l-33 145h-12q-49 -77 -139.5 -121t-206.5 -44q-201 0 -300 100t-99 303zM501 1241v25q57 70 117.5 156t95.5 147h273v-21q-52 -61 -155.5 -157.5t-174.5 -149.5h-156z " />
201
+ <glyph unicode="&#xfb;" horiz-adv-x="1300" d="M158 383v723h237v-682q0 -127 52 -190.5t163 -63.5q148 0 217.5 88.5t69.5 296.5v551h236v-1106h-185l-33 145h-12q-49 -77 -139.5 -121t-206.5 -44q-201 0 -300 100t-99 303zM260 1241v25q191 198 254 303h260q63 -110 256 -303v-25h-159q-123 73 -228 180 q-103 -103 -225 -180h-158z" />
202
+ <glyph unicode="&#xfc;" horiz-adv-x="1300" d="M158 383v723h237v-682q0 -127 52 -190.5t163 -63.5q148 0 217.5 88.5t69.5 296.5v551h236v-1106h-185l-33 145h-12q-49 -77 -139.5 -121t-206.5 -44q-201 0 -300 100t-99 303zM332 1399q0 62 33.5 89.5t81.5 27.5q53 0 84.5 -31t31.5 -86q0 -53 -32 -85t-84 -32 q-48 0 -81.5 29t-33.5 88zM725 1399q0 62 33.5 89.5t81.5 27.5q53 0 85 -31t32 -86q0 -54 -33 -85.5t-84 -31.5q-48 0 -81.5 29t-33.5 88z" />
203
+ <glyph unicode="&#xfd;" horiz-adv-x="1098" d="M0 1106h256l225 -627q51 -134 68 -252h8q9 55 33 133.5t254 745.5h254l-473 -1253q-129 -345 -430 -345q-78 0 -152 17v186q53 -12 121 -12q170 0 239 197l41 104zM401 1241v25q57 70 117.5 156t95.5 147h273v-21q-52 -61 -155.5 -157.5t-174.5 -149.5h-156z" />
204
+ <glyph unicode="&#xfe;" horiz-adv-x="1276" d="M168 -492v2048h235v-430l-7 -138l-3 -27h10q61 86 142.5 125.5t187.5 39.5q206 0 322 -151t116 -420q0 -272 -116.5 -423.5t-321.5 -151.5q-219 0 -330 149h-14l8 -72l6 -92v-457h-235zM403 555q0 -202 64 -292.5t209 -90.5q254 0 254 385q0 190 -61.5 283.5t-194.5 93.5 q-142 0 -206.5 -82t-64.5 -260v-37z" />
205
+ <glyph unicode="&#xff;" horiz-adv-x="1098" d="M0 1106h256l225 -627q51 -134 68 -252h8q9 55 33 133.5t254 745.5h254l-473 -1253q-129 -345 -430 -345q-78 0 -152 17v186q53 -12 121 -12q170 0 239 197l41 104zM239 1399q0 62 33.5 89.5t81.5 27.5q53 0 84.5 -31t31.5 -86q0 -53 -32 -85t-84 -32q-48 0 -81.5 29 t-33.5 88zM632 1399q0 62 33.5 89.5t81.5 27.5q53 0 85 -31t32 -86q0 -54 -33 -85.5t-84 -31.5q-48 0 -81.5 29t-33.5 88z" />
206
+ <glyph unicode="&#x131;" horiz-adv-x="571" d="M168 0v1106h235v-1106h-235z" />
207
+ <glyph unicode="&#x152;" horiz-adv-x="1942" d="M121 735q0 360 172 555t491 195q115 0 209 -23h826v-202h-576v-398h539v-200h-539v-459h576v-203h-820q-102 -20 -211 -20q-320 0 -493.5 196.5t-173.5 558.5zM371 733q0 -269 106 -409t314 -140q129 0 213 35v1024q-80 37 -211 37q-208 0 -315 -139t-107 -408z" />
208
+ <glyph unicode="&#x153;" horiz-adv-x="1966" d="M102 555q0 272 137 421.5t382 149.5q121 0 223 -49t168 -145q131 194 379 194q221 0 349 -133.5t128 -365.5v-127h-738q11 -164 85.5 -249t228.5 -85q102 0 187 18.5t181 61.5v-191q-84 -40 -171.5 -57.5t-202.5 -17.5q-281 0 -420 194q-132 -194 -400 -194 q-236 0 -376 155t-140 420zM344 555q0 -189 65.5 -286t211.5 -97q141 0 206.5 95.5t65.5 283.5q0 192 -66 287.5t-211 95.5q-143 0 -207.5 -95t-64.5 -284zM1137 670h497q0 134 -63 206t-178 72q-110 0 -177.5 -69.5t-78.5 -208.5z" />
209
+ <glyph unicode="&#x178;" horiz-adv-x="1212" d="M0 1462h260l346 -667l346 667h260l-487 -895v-567h-240v559zM293 1737q0 62 33.5 89.5t81.5 27.5q53 0 84.5 -31t31.5 -86q0 -53 -32 -85t-84 -32q-48 0 -81.5 29t-33.5 88zM686 1737q0 62 33.5 89.5t81.5 27.5q53 0 85 -31t32 -86q0 -54 -33 -85.5t-84 -31.5 q-48 0 -81.5 29t-33.5 88z" />
210
+ <glyph unicode="&#x2c6;" horiz-adv-x="1227" d="M227 1241v25q191 198 254 303h260q63 -110 256 -303v-25h-159q-123 73 -228 180q-103 -103 -225 -180h-158z" />
211
+ <glyph unicode="&#x2da;" horiz-adv-x="1182" d="M352 1466q0 101 63.5 163.5t172.5 62.5q104 0 171.5 -62t67.5 -162q0 -102 -65.5 -165.5t-173.5 -63.5t-172 62.5t-64 164.5zM481 1466q0 -106 107 -106q46 0 76 27.5t30 78.5q0 50 -30 78.5t-76 28.5q-47 0 -77 -28.5t-30 -78.5z" />
212
+ <glyph unicode="&#x2dc;" horiz-adv-x="1227" d="M236 1239q12 139 77.5 212t167.5 73q43 0 84 -17.5t80 -39t75.5 -39t70.5 -17.5q79 0 106 115h125q-12 -134 -77 -209.5t-169 -75.5q-42 0 -82.5 17.5t-79.5 39t-76 39t-71 17.5q-81 0 -109 -115h-122z" />
213
+ <glyph unicode="&#x2000;" horiz-adv-x="953" />
214
+ <glyph unicode="&#x2001;" horiz-adv-x="1907" />
215
+ <glyph unicode="&#x2002;" horiz-adv-x="953" />
216
+ <glyph unicode="&#x2003;" horiz-adv-x="1907" />
217
+ <glyph unicode="&#x2004;" horiz-adv-x="635" />
218
+ <glyph unicode="&#x2005;" horiz-adv-x="476" />
219
+ <glyph unicode="&#x2006;" horiz-adv-x="317" />
220
+ <glyph unicode="&#x2007;" horiz-adv-x="317" />
221
+ <glyph unicode="&#x2008;" horiz-adv-x="238" />
222
+ <glyph unicode="&#x2009;" horiz-adv-x="381" />
223
+ <glyph unicode="&#x200a;" horiz-adv-x="105" />
224
+ <glyph unicode="&#x2010;" horiz-adv-x="659" d="M72 449v200h514v-200h-514z" />
225
+ <glyph unicode="&#x2011;" horiz-adv-x="659" d="M72 449v200h514v-200h-514z" />
226
+ <glyph unicode="&#x2012;" horiz-adv-x="659" d="M72 449v200h514v-200h-514z" />
227
+ <glyph unicode="&#x2013;" horiz-adv-x="1024" d="M82 455v190h860v-190h-860z" />
228
+ <glyph unicode="&#x2014;" horiz-adv-x="2048" d="M82 455v190h1884v-190h-1884z" />
229
+ <glyph unicode="&#x2018;" horiz-adv-x="395" d="M25 983q20 83 71 224t105 255h170q-64 -256 -101 -501h-233z" />
230
+ <glyph unicode="&#x2019;" horiz-adv-x="395" d="M25 961q69 289 100 501h231l15 -22q-53 -209 -176 -479h-170z" />
231
+ <glyph unicode="&#x201a;" horiz-adv-x="549" d="M63 -264q69 270 103 502h231l15 -23q-48 -186 -176 -479h-173z" />
232
+ <glyph unicode="&#x201c;" horiz-adv-x="813" d="M25 983q20 83 71 224t105 255h170q-64 -256 -101 -501h-233zM440 983q53 203 178 479h170q-69 -296 -100 -501h-233z" />
233
+ <glyph unicode="&#x201d;" horiz-adv-x="813" d="M25 961q69 289 100 501h231l15 -22q-53 -209 -176 -479h-170zM440 961q69 271 103 501h231l14 -22q-53 -209 -176 -479h-172z" />
234
+ <glyph unicode="&#x201e;" horiz-adv-x="944" d="M43 -264q66 260 102 502h232l14 -23q-55 -214 -176 -479h-172zM461 -264q66 260 102 502h232l14 -23q-48 -186 -176 -479h-172z" />
235
+ <glyph unicode="&#x2022;" horiz-adv-x="770" d="M131 748q0 138 66 210t188 72q121 0 187.5 -72.5t66.5 -209.5q0 -135 -67 -209t-187 -74t-187 72.5t-67 210.5z" />
236
+ <glyph unicode="&#x2026;" horiz-adv-x="1677" d="M133 125q0 73 38 112t110 39q73 0 111 -40.5t38 -110.5q0 -71 -38.5 -112.5t-110.5 -41.5t-110 41t-38 113zM690 125q0 73 38 112t110 39q73 0 111 -40.5t38 -110.5q0 -71 -38.5 -112.5t-110.5 -41.5t-110 41t-38 113zM1247 125q0 73 38 112t110 39q73 0 111 -40.5 t38 -110.5q0 -71 -38.5 -112.5t-110.5 -41.5t-110 41t-38 113z" />
237
+ <glyph unicode="&#x202f;" horiz-adv-x="381" />
238
+ <glyph unicode="&#x2039;" horiz-adv-x="688" d="M82 535v26l356 432l168 -94l-282 -350l282 -348l-168 -97z" />
239
+ <glyph unicode="&#x203a;" horiz-adv-x="688" d="M80 201l282 348l-282 350l168 94l358 -432v-26l-358 -431z" />
240
+ <glyph unicode="&#x2044;" horiz-adv-x="266" d="M-393 0l858 1462h190l-856 -1462h-192z" />
241
+ <glyph unicode="&#x205f;" horiz-adv-x="476" />
242
+ <glyph unicode="&#x2074;" horiz-adv-x="743" d="M16 762v127l396 579h188v-563h125v-143h-125v-176h-192v176h-392zM178 905h230v178q0 97 6 197q-52 -104 -88 -158z" />
243
+ <glyph unicode="&#x20ac;" horiz-adv-x="1188" d="M63 494v153h136l-2 37v37l2 65h-136v154h150q38 251 191 394t395 143q200 0 358 -88l-84 -187q-154 76 -274 76q-141 0 -230.5 -84t-119.5 -254h456v-154h-471l-2 -45v-55l2 -39h408v-153h-391q64 -312 364 -312q143 0 293 62v-203q-131 -61 -305 -61q-241 0 -391.5 132 t-196.5 382h-152z" />
244
+ <glyph unicode="&#x2122;" horiz-adv-x="1561" d="M27 1333v129h553v-129h-205v-592h-146v592h-202zM635 741v721h217l178 -534l187 534h210v-721h-147v414l4 129h-6l-193 -543h-122l-185 543h-6l4 -119v-424h-141z" />
245
+ <glyph unicode="&#xe000;" horiz-adv-x="1105" d="M0 1105h1105v-1105h-1105v1105z" />
246
+ <glyph unicode="&#xfb01;" horiz-adv-x="1315" d="M35 928v110l182 72v72q0 196 92 290.5t281 94.5q124 0 244 -41l-62 -178q-87 28 -166 28q-80 0 -116.5 -49.5t-36.5 -148.5v-72h270v-178h-270v-928h-236v928h-182zM897 1399q0 63 34.5 97t98.5 34q62 0 96.5 -34t34.5 -97q0 -60 -34.5 -94.5t-96.5 -34.5 q-64 0 -98.5 34.5t-34.5 94.5zM911 0v1106h235v-1106h-235z" />
247
+ <glyph unicode="&#xfb02;" horiz-adv-x="1315" d="M35 928v110l182 72v72q0 196 92 290.5t281 94.5q124 0 244 -41l-62 -178q-87 28 -166 28q-80 0 -116.5 -49.5t-36.5 -148.5v-72h270v-178h-270v-928h-236v928h-182zM911 0v1556h235v-1556h-235z" />
248
+ <glyph unicode="&#xfb03;" horiz-adv-x="2058" d="M35 928v110l182 72v72q0 196 92 290.5t281 94.5q124 0 244 -41l-62 -178q-87 28 -166 28q-80 0 -116.5 -49.5t-36.5 -148.5v-72h270v-178h-270v-928h-236v928h-182zM778 928v110l182 72v72q0 196 92 290.5t281 94.5q124 0 244 -41l-62 -178q-87 28 -166 28 q-80 0 -116.5 -49.5t-36.5 -148.5v-72h270v-178h-270v-928h-236v928h-182zM1641 1399q0 63 34.5 97t98.5 34q62 0 96.5 -34t34.5 -97q0 -60 -34.5 -94.5t-96.5 -34.5q-64 0 -98.5 34.5t-34.5 94.5zM1655 0v1106h235v-1106h-235z" />
249
+ <glyph unicode="&#xfb04;" horiz-adv-x="2058" d="M35 928v110l182 72v72q0 196 92 290.5t281 94.5q124 0 244 -41l-62 -178q-87 28 -166 28q-80 0 -116.5 -49.5t-36.5 -148.5v-72h270v-178h-270v-928h-236v928h-182zM778 928v110l182 72v72q0 196 92 290.5t281 94.5q124 0 244 -41l-62 -178q-87 28 -166 28 q-80 0 -116.5 -49.5t-36.5 -148.5v-72h270v-178h-270v-928h-236v928h-182zM1655 0v1556h235v-1556h-235z" />
250
+ </font>
251
+ </defs></svg>
css/fonts/OpenSans-Semibold-webfont.ttf ADDED
Binary file
css/fonts/OpenSans-Semibold-webfont.woff ADDED
Binary file
css/fonts/Oswald-Regular.ttf ADDED
Binary file
css/layout.css ADDED
@@ -0,0 +1,643 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Regular */
2
+ @font-face {
3
+ font-family: 'OpenSans-Regular';
4
+
5
+ src: url('fonts/OpenSans-Regular-webfont.eot');
6
+ src: url('fonts/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
7
+ url('fonts/OpenSans-Regular-webfont.woff') format('woff'),
8
+ url('fonts/OpenSans-Regular-webfont.ttf') format('truetype'),
9
+ url('fonts/OpenSans-Regular-webfont.svg#OpenSansRegular') format('svg');
10
+ font-weight: normal;
11
+ font-weight: 400;
12
+ font-style: normal;
13
+ }
14
+ /* Semibold */
15
+ @font-face {
16
+ font-family: 'OpenSans-Semibold';
17
+ src: url('fonts/OpenSans-Semibold-webfont.eot');
18
+ src: url('fonts/OpenSans-Semibold-webfont.eot?#iefix') format('embedded-opentype'),
19
+ url('fonts/OpenSans-Semibold-webfont.woff') format('woff'),
20
+ url('fonts/OpenSans-Semibold-webfont.ttf') format('truetype'),
21
+ url('fonts/OpenSans-Semibold-webfont.svg#OpenSansSemibold') format('svg');
22
+ font-weight: 500;
23
+ font-style: normal;
24
+ }
25
+ /* Oswald-Regular */
26
+ @font-face {
27
+ font-family: 'Oswald-Regular';
28
+ src:url('fonts/Oswald-Regular.ttf') format('truetype');
29
+ font-weight:normal;
30
+ font-style: normal;
31
+ }
32
+ #acx_smw_stars
33
+ {
34
+ color: #e6b800;
35
+ display: table;
36
+ text-align: center;
37
+ width: 100%;
38
+ margin-bottom:10px;
39
+ }
40
+ #acx_smw_stars span
41
+ {
42
+ cursor: pointer;
43
+ font-size: 30px;
44
+ margin: 6px;
45
+ }
46
+ #acx_smw_stars span:hover
47
+ {
48
+ color:#dcb208;
49
+ }
50
+ #acx_smw_option_page_holder
51
+ {
52
+ background: white none repeat scroll 0 0;
53
+ border: 1px solid lightgrey;
54
+ box-sizing: border-box;
55
+ margin-top: 10px;
56
+ min-height: 200px;
57
+ padding: 10px;
58
+ width: 99%;
59
+ display: inline-block;
60
+ }
61
+ .acx_smw_option_page_left
62
+ {
63
+ box-sizing: border-box;
64
+ display: inline-block;
65
+ float: left;
66
+ min-height: 200px;
67
+ width: 100%;
68
+ }
69
+ .acx_smw_option_page_right
70
+ {
71
+ box-sizing: border-box;
72
+ display: none;
73
+ float: left;
74
+ margin-left: 2%;
75
+ min-height: 200px;
76
+ width: 30%;
77
+ }
78
+ .acx_smw_option_head {
79
+ font-family: arial;
80
+ font-size: 20px;
81
+ font-weight: 400;
82
+ margin: 12px 0;
83
+ padding: 0;
84
+ text-indent: 5px;
85
+ }
86
+ .acx_smw_q_holder {
87
+ background: #f0f0f0 none repeat scroll 0 0;
88
+ border: 1px solid lightgray;
89
+ box-sizing: border-box;
90
+ width: 100%;
91
+ margin-bottom: 15px;
92
+ }
93
+ .acx_smw_q_holder h4 {
94
+ box-sizing: border-box;
95
+ color: #393939;
96
+ font-size: 14px;
97
+ font-weight: normal;
98
+ margin: 0;
99
+ padding: 7px;
100
+ width: 100%;
101
+ }
102
+ .acx_smw_q_holder_c {
103
+ background: white none repeat scroll 0 0;
104
+ box-sizing: border-box;
105
+ display: inline-block;
106
+ padding: 12px;
107
+ width: 100%;
108
+ }
109
+ .acx_smw_q_holder .label {
110
+ float: left;
111
+ padding-top: 4px;
112
+ width: 20%;
113
+ }
114
+ .acx_smw_q_holder_c input,.acx_smw_q_holder_c select,.acx_smw_q_holder_c textarea {
115
+ border: 1px solid lightblue;
116
+ box-sizing: border-box;
117
+ float: left;
118
+ width: 79%;
119
+ }
120
+ .acx_smw_q_holder_c textarea
121
+ {
122
+ height: 100px;
123
+ }
124
+ .acx_smw_q_holder_c label {
125
+ float: left;
126
+ padding-top: 4px;
127
+ }
128
+ .acx_smw_q_holder_c input[type="radio"] {
129
+ float: none;
130
+ margin-top: 6px;
131
+ width: auto;
132
+ }
133
+ .acx_smw_q_holder_c .acx_smw_q_sep
134
+ {
135
+ float: left;
136
+ height: 8px;
137
+ width: 100%;
138
+ }
139
+ .acx_smw_q_holder .note {
140
+ color: gray;
141
+ float: left;
142
+ font-family: arial;
143
+ font-size: 12px;
144
+ margin-top: 3px;
145
+ width: 100%;
146
+ }
147
+ #acx_smw_c_icon_p_info_lb_h
148
+ {
149
+ background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
150
+ height: 100%;
151
+ left: 0;
152
+ position: fixed;
153
+ top: 0;
154
+ width: 100%;
155
+ z-index: 199999;
156
+ }
157
+ #acx_smw_c_icon_p_info_lb_h .acx_smw_c_icon_p_info_c
158
+ {
159
+ background: white none repeat scroll 0 0;
160
+ border: 1px solid lightblue;
161
+ border-radius: 2px;
162
+ box-sizing: border-box;
163
+ margin-left: 24%;
164
+ margin-top: 7%;
165
+ position: relative;
166
+ width: 50%;
167
+ }
168
+ #acx_smw_c_icon_p_info_lb_h .acx_smw_c_icon_p_info_close
169
+ {
170
+ background: rgba(0, 0, 0, 0) url("../images/close.png") repeat scroll 0 0;
171
+ cursor: pointer;
172
+ height: 30px;
173
+ position: absolute;
174
+ right: 0;
175
+ top: 0;
176
+ width: 35px;
177
+ }
178
+ .smw_info_lb
179
+ {
180
+ cursor:pointer;
181
+ }
182
+ #acx_smw_c_icon_p_info_lb_h h4
183
+ {
184
+ background: #f0f0f0 none repeat scroll 0 0;
185
+ box-sizing: border-box;
186
+ font-family: arial;
187
+ font-size: 16px;
188
+ font-weight: normal;
189
+ margin: 0;
190
+ padding: 8px;
191
+ }
192
+ #acx_smw_c_icon_p_info_lb_h .acx_smw_c_icon_p_info_content
193
+ {
194
+ background: white none repeat scroll 0 0;
195
+ box-sizing: border-box;
196
+ font-family: arial;
197
+ font-size: 16px;
198
+ line-height: 22px;
199
+ min-height: 100px;
200
+ padding: 15px;
201
+ color:#707171;
202
+ }
203
+ .acx_smw_c_icon_p_info_content a {
204
+ border-bottom: 1px dashed;
205
+ font-family: arial;
206
+ font-size: 15px;
207
+ font-style: normal;
208
+ text-decoration: none;
209
+ }
210
+ #acx_smw_admin_left_section h4
211
+ {
212
+ box-sizing: border-box;
213
+ color: #393939;
214
+ font-weight: normal;
215
+ margin: 0;
216
+ padding: 7px;
217
+ text-transform: capitalize;
218
+ width: 100%;
219
+ }
220
+ @media screen and (min-width:840px)
221
+ {
222
+ .acx_smw_option_page_left
223
+ {
224
+ width: 68%;
225
+ }
226
+ .acx_smw_option_page_right
227
+ {
228
+ display:block;
229
+ }
230
+ }
231
+ /* STYLES Expert Support */
232
+ .acx_smw_es_common_raw
233
+ {
234
+ border: 1px dotted white;
235
+ border-radius: 8px;
236
+ float: left;
237
+ /* margin-top: 20px; */
238
+ width: 100%;
239
+ }
240
+
241
+ .acx_smw_es_common_bg
242
+ {
243
+ background:#004050;
244
+ }
245
+ .acx_smw_es_middle_section
246
+ {
247
+ margin-left:auto;
248
+ margin-right:auto;
249
+ }
250
+
251
+ .acx_smw_es_acx_content_area
252
+ {
253
+ float:left;
254
+ width:100%;
255
+ padding: 25px 0;
256
+ }
257
+
258
+ .acx_smw_es_wp_left_area
259
+ {
260
+ float:left;
261
+ width:550px;
262
+ padding-right: 60px;
263
+ }
264
+ .acx_smw_es_wp_left_content_inner
265
+ {
266
+ float:left;
267
+ width:100%;
268
+ }
269
+
270
+ .acx_smw_es_wp_main_head
271
+ {
272
+ float:left;
273
+ display:table;
274
+ color:#66d1ec;
275
+ font-family:Oswald-Regular;
276
+ font-size:32px;
277
+ line-height:44px;
278
+ text-align:left;
279
+ margin-bottom: 20px;
280
+ }
281
+
282
+ .acx_smw_es_wp_sub_para_des
283
+ {
284
+ float:left;
285
+ display:table;
286
+ color:#fff;
287
+ font-family:Opensans-Regular;
288
+ font-size:14px;
289
+ line-height:24px;
290
+ text-align:left;
291
+ margin-bottom: 15px;
292
+ }
293
+
294
+ .acx_smw_es_wp_sub_para_des a,
295
+ .acx_smw_es_wp_footer_area_desc a
296
+ {
297
+ color:#3ad0f5;
298
+ display:inline;
299
+ text-decoration:underline;
300
+ }
301
+
302
+ .acx_smw_es_wp_sub_para_des a:hover
303
+ {
304
+ color:#ffbf43;
305
+ }
306
+
307
+ .acx_smw_es_wp_acx_service_list
308
+ {
309
+ float:left;
310
+ width:100%;
311
+ }
312
+
313
+ .acx_smw_es_wp_acx_service_list ul
314
+ {
315
+ display:block;
316
+ float:left;
317
+ width:100%;
318
+ }
319
+
320
+ .acx_smw_es_wp_acx_service_list ul li
321
+ {
322
+ color:#fff;
323
+ font-family:Opensans-Semibold;
324
+ font-size:14px;
325
+ text-align:left;
326
+ display:block;
327
+ margin-top:10px;
328
+ padding-left:20px;
329
+ background-repeat:no-repeat;
330
+ background-position:0px 6px;
331
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAJCAYAAAAPU20uAAAACXBIWXMAAA9hAAAPYQGoP6dpAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAAExJREFUeNqM0LENgDAQQ9FLxwJMwUBswhjUbJJxmIGa4lGgdFzIl9xZlu1AxYL4Uni5cWDODI0LG6bM0DixohSInP03YbhDd0X3h2cAIc3gGqTftKUAAAAASUVORK5CYII=);
332
+ }
333
+
334
+
335
+ .acx_smw_es_wp_send_ylw_para
336
+ {
337
+ float:left;
338
+ display:table;
339
+ color:#ffde9e;
340
+ font-family:Opensans-Regular;
341
+ font-size:13px;
342
+ line-height:22px;
343
+ text-align:left;
344
+ margin-top:25px;
345
+ }
346
+
347
+
348
+ .acx_smw_es_wp_right_area
349
+ {
350
+ width:350px;
351
+ float:left;
352
+ }
353
+
354
+ .acx_smw_es_wp_right_inner_form_wrap
355
+ {
356
+ float:left;
357
+ width:100%;
358
+ }
359
+
360
+ .acx_smw_es_wp_inner_wp_form
361
+ {
362
+ width:100%;
363
+ float:left;
364
+ background:#134d5b;
365
+ padding:40px 30px;
366
+ border-radius:3px;
367
+ }
368
+
369
+ .acx_smw_es_wp_form_head
370
+ {
371
+ float:left;
372
+ display:table;
373
+ color:#ffde9e;
374
+ font-family:Opensans-Semibold;
375
+ font-size:18px;
376
+ line-height:26px;
377
+ text-align:center;
378
+ margin-bottom: 20px;
379
+ }
380
+
381
+ form.acx_smw_es_wp_support_acx
382
+ {
383
+ display:block;
384
+ float:left;
385
+ width:100%;
386
+ }
387
+ span.acx_smw_es_cnvas_input
388
+ {
389
+ display:block;
390
+ float:left;
391
+ width:100%;
392
+ margin-bottom:8px;
393
+ }
394
+
395
+ span.acx_smw_es_cnvas_input input,
396
+ span.acx_smw_es_cnvas_input textarea
397
+ {
398
+ display:block;
399
+ float:left;
400
+ width:100%;
401
+ padding:8px 10px;
402
+ font-family:Opensans-Regular;
403
+ font-size:14px;
404
+ color:#444;
405
+ border:none;
406
+ border-radius:3px;
407
+ }
408
+
409
+ span.acx_smw_es_cnvas_input input.acx_smw_es_wp_acx_submit
410
+ {
411
+ background:#ffb11a;
412
+ font-family:Opensans-Semibold;
413
+ font-size:16px;
414
+ color:#7d5200;
415
+ cursor:pointer;
416
+ }
417
+ span.acx_smw_es_cnvas_input input.acx_smw_es_wp_acx_submit:hover
418
+ {
419
+ background:#ff961a;
420
+ }
421
+
422
+ .acx_smw_es_footer_content_cvr
423
+ {
424
+ display:block;
425
+ float:left;
426
+ width:100%;
427
+ padding: 20px 0;
428
+ border-top:1px solid #072e38;
429
+ }
430
+
431
+ .acx_smw_es_wp_footer_area_desc
432
+ {
433
+ float:left;
434
+ display:table;
435
+ color:#5f93a0;
436
+ font-family:Opensans-Regular;
437
+ font-size:11px;
438
+ line-height:14px;
439
+ text-align:left;
440
+ }
441
+ /***** Desktop *****/
442
+
443
+ @media screen and (min-width:1024px)
444
+ {
445
+ .acx_smw_es_middle_section
446
+ {
447
+ max-width:1000px;
448
+ }
449
+ }
450
+
451
+ /***** Small Desktop Tablets *****/
452
+
453
+ @media screen and (min-width:960px) and (max-width:1023px)
454
+ {
455
+ .acx_smw_es_middle_section
456
+ {
457
+ max-width:900px;
458
+ }
459
+ .acx_smw_es_wp_right_area {
460
+ width: 380px;
461
+ }
462
+
463
+ .acx_smw_es_wp_left_area {
464
+ width: 520px;
465
+ }
466
+ }
467
+
468
+ /***** portrait Tablets *****/
469
+
470
+ @media screen and (min-width:768px) and (max-width:1245px)
471
+ {
472
+ .acx_smw_es_middle_section
473
+ {
474
+ max-width:700px;
475
+ }
476
+ .acx_smw_es_wp_right_area {
477
+ width: 100%;
478
+ margin-top:50px
479
+ }
480
+
481
+ .acx_smw_es_wp_left_area {
482
+ width:100%;
483
+ padding:0;
484
+ }
485
+ .acx_smw_es_half_width_sec {
486
+ width: 49% !important;
487
+ }
488
+
489
+ .acx_smw_es_haif_marg_left
490
+ {
491
+ margin-left:1%;
492
+ }
493
+
494
+ .acx_smw_es_haif_marg_right
495
+ {
496
+ margin-right:1%;
497
+ }
498
+ }
499
+ /***** Smart Phones *****/
500
+
501
+ @media screen and (min-width:540px) and (max-width:767px)
502
+ {
503
+ .acx_smw_es_middle_section
504
+ {
505
+ max-width:500px;
506
+ }
507
+ .acx_smw_es_wp_right_area {
508
+ width: 100%;
509
+ margin-top:50px
510
+ }
511
+
512
+ .acx_smw_es_wp_left_area {
513
+ width:100%;
514
+ padding:0;
515
+ }
516
+ }
517
+
518
+ /***** Small Screens (Mobiles) *****/
519
+
520
+ @media screen and (max-width:539px)
521
+ {
522
+ .acx_smw_es_middle_section
523
+ {
524
+ max-width:90%;
525
+ }
526
+ .acx_smw_es_wp_right_area
527
+ {
528
+ width: 100%;
529
+ margin-top:50px
530
+ }
531
+ .acx_smw_es_wp_left_area
532
+ {
533
+ width:100%;
534
+ padding:0;
535
+ }
536
+ .acx_smw_es_wp_inner_wp_form
537
+ {
538
+ padding: 40px 15px;
539
+ }
540
+ }
541
+ /* Starting SIDEBAR */
542
+ #acx_smw_sidebar
543
+ {
544
+ box-sizing: border-box;
545
+ display: inline-block;
546
+ padding-top: 40px;
547
+ width: 100%;
548
+ }
549
+ #acx_smw_sidebar .acx_smw_sidebar_widget
550
+ {
551
+ border: 1px dotted lightgray;
552
+ box-sizing: border-box;
553
+ float: left;
554
+ margin-bottom: 15px;
555
+ min-height: 100px;
556
+ width: 100%;
557
+ }
558
+ #acx_smw_sidebar .acx_smw_sidebar_w_title
559
+ {
560
+ background: lavender none repeat scroll 0 0;
561
+ box-sizing: border-box;
562
+ font-family: arial;
563
+ font-size: 14px;
564
+ font-weight: bold;
565
+ padding: 10px;
566
+ width: 100%;
567
+ }
568
+ #acx_smw_sidebar .acx_smw_sidebar_w_content
569
+ {
570
+ box-sizing: border-box;
571
+ display: table;
572
+ font-family: arial;
573
+ font-size: 12px;
574
+ line-height: 20px;
575
+ padding: 10px;
576
+ width: 100%;
577
+ }
578
+ /* Starting Ad Banner Code */
579
+ #acx_ad_banners_smw
580
+ {
581
+ float: left;
582
+ margin-bottom: 10px;
583
+ min-height: 80px;
584
+ width: 100%;
585
+ }
586
+ #acx_ad_banners_smw .acx_ad_smw_1
587
+ {
588
+ border: 1px solid lightgray;
589
+ display: block;
590
+ float: left;
591
+ height: auto;
592
+ margin-bottom: 12px;
593
+ overflow: hidden;
594
+ padding-bottom: 15px;
595
+ text-decoration: none;
596
+ width: 100%;
597
+ }
598
+ #acx_ad_banners_smw .acx_ad_smw_title
599
+ {
600
+ background: lavender none repeat scroll 0 0;
601
+ box-sizing: border-box;
602
+ color: black;
603
+ float: left;
604
+ font-family: arial;
605
+ font-size: 14px;
606
+ font-weight: bold;
607
+ opacity: 0.8;
608
+ padding: 10px;
609
+ text-align: left;
610
+ width: 100%;
611
+ }
612
+ #acx_ad_banners_smw .acx_ad_smw_1:hover {
613
+ border: 1px solid #00a0d2;
614
+ }
615
+ #acx_ad_banners_smw .acx_ad_smw_desc
616
+ {
617
+ background: rgba(0, 0, 0, 0) url("../images/wp.png") no-repeat scroll 5px 0;
618
+ box-sizing: border-box;
619
+ color: black;
620
+ float: left;
621
+ font-family: arial;
622
+ font-size: 13px;
623
+ height: 32px;
624
+ padding-right:3px;
625
+ margin-top: 15px;
626
+ padding-left: 42px;
627
+ padding-top: 6px;
628
+ text-transform: capitalize;
629
+ width: 100%;
630
+ }
631
+ #acx_ad_banners_smw .acx_ad_smw_desc2
632
+ {
633
+ background: url("../images/des.png") no-repeat scroll 5px center rgba(0, 0, 0, 0);
634
+ }
635
+ #acx_ad_banners_smw .acx_ad_smw_desc3
636
+ {
637
+ background: url("../images/plug.png") no-repeat scroll 5px center rgba(0, 0, 0, 0);
638
+ }
639
+ #acx_ad_banners_smw .acx_ad_smw_desc4
640
+ {
641
+ background: url("../images/quick.png") no-repeat scroll 5px center rgba(0, 0, 0, 0);
642
+ }
643
+ /* Ending Ad Banner Code */
style.css → css/style.css RENAMED
File without changes
style_for_admin.css → css/style_admin.css RENAMED
@@ -1,10 +1,10 @@
1
  @font-face {
2
  font-family: 'agency_fbbold';
3
- src: url('images/fonts/agencyb-webfont.eot');
4
- src: url('images/fonts/agencyb-webfont.eot?#iefix') format('embedded-opentype'),
5
- url('images/fonts/agencyb-webfont.woff') format('woff'),
6
- url('images/fonts/agencyb-webfont.ttf') format('truetype'),
7
- url('images/fonts/agencyb-webfont.svg#agency_fbbold') format('svg');
8
  font-weight: normal;
9
  font-style: normal;
10
  }
@@ -12,24 +12,24 @@
12
  font-family: 'Raleway';
13
  font-style: normal;
14
  font-weight: 400;
15
- src: url('images/fonts/raleway.woff') format('woff');
16
  }
17
  @font-face {
18
  font-family: 'Courgette';
19
  font-style: normal;
20
  font-weight: 400;
21
- src: url('images/fonts/courgette.woff') format('woff');
22
  }
23
  @import url(https://fonts.googleapis.com/css?family=Roboto);
24
  /* Regular */
25
  @font-face {
26
  font-family: 'OpenSans-Regular';
27
 
28
- src: url('images/fonts/OpenSans-Regular-webfont.eot');
29
- src: url('images/fonts/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
30
- url('images/fonts/OpenSans-Regular-webfont.woff') format('woff'),
31
- url('images/fonts/OpenSans-Regular-webfont.ttf') format('truetype'),
32
- url('images/fonts/OpenSans-Regular-webfont.svg#OpenSansRegular') format('svg');
33
  font-weight: normal;
34
  font-weight: 400;
35
  font-style: normal;
@@ -37,21 +37,24 @@
37
  /* Semibold */
38
  @font-face {
39
  font-family: 'OpenSans-Semibold';
40
- src: url('images/fonts/OpenSans-Semibold-webfont.eot');
41
- src: url('images/fonts/OpenSans-Semibold-webfont.eot?#iefix') format('embedded-opentype'),
42
- url('images/fonts/OpenSans-Semibold-webfont.woff') format('woff'),
43
- url('images/fonts/OpenSans-Semibold-webfont.ttf') format('truetype'),
44
- url('images/fonts/OpenSans-Semibold-webfont.svg#OpenSansSemibold') format('svg');
45
  font-weight: 500;
46
  font-style: normal;
47
  }
48
  /* Oswald-Regular */
49
  @font-face {
50
  font-family: 'Oswald-Regular';
51
- src:url('images/fonts/Oswald-Regular.ttf') format('truetype');
52
  font-weight:normal;
53
  font-style: normal;
54
  }
 
 
 
55
  .acx_asmw_admin_left {
56
  display: inline-block;
57
  max-width: 99%;
@@ -158,7 +161,7 @@ width: 50%;
158
  }
159
  #acx_asmw_c_icon_p_info_lb_h .acx_asmw_c_icon_p_info_close
160
  {
161
- background: rgba(0, 0, 0, 0) url("images/close.png") repeat scroll 0 0;
162
  cursor: pointer;
163
  height: 30px;
164
  position: absolute;
@@ -206,7 +209,7 @@ padding: 8px;
206
  }
207
  #acurax-social-media-widget
208
  {
209
- background: url("images/plugin_page_bg.png") repeat-x scroll 0 0 #FFFFFF;
210
  }
211
  #plugin_page_links
212
  {
@@ -217,9 +220,11 @@ min-height: 22px;
217
  padding: 5px;
218
  text-align: center;
219
  }
220
- #acurax-social-media-widget .plugin-title
221
  {
222
- background: url("images/from.png") no-repeat scroll 10% 94% transparent;
 
 
223
  }
224
  #plugin_page_links a
225
  {
@@ -351,7 +356,7 @@ font-weight:normal;
351
  }
352
  #ad_fsmi_2
353
  {
354
- background: url("images/lq.jpg") repeat scroll 0 0 transparent;
355
  border: 2px dashed black;
356
  border-radius: 10px 10px 10px 10px;
357
  height: 366px;
@@ -373,7 +378,7 @@ font-weight:normal;
373
  }
374
  #ad_fsmi_2_button_order
375
  {
376
- background: url("images/button.jpg") no-repeat scroll center 0 #FFFFFF;
377
  cursor: pointer;
378
  display: block;
379
  height: 115px;
@@ -416,7 +421,7 @@ width: 283px;
416
  }
417
  #acx_asmw_premium .buy_now
418
  {
419
- background: rgba(0, 0, 0, 0) url("images/buy.png") repeat scroll 0 0;
420
  cursor: pointer;
421
  display: block;
422
  float: left;
@@ -450,6 +455,7 @@ width: 283px;
450
  border-top: 1px solid #29A2DF;
451
  min-height: 500px;
452
  width: 100%;
 
453
  }
454
  #ss_middle_wrapper h2
455
  {
@@ -485,7 +491,7 @@ width: 283px;
485
  }
486
  .middle_h2_1
487
  {
488
- background: url("images/girl.png") no-repeat scroll left 0 rgba(0, 0, 0, 0);
489
  height: 149px;
490
  padding-left: 154px;
491
  padding-top: 53px;
@@ -494,7 +500,7 @@ width: 283px;
494
  }
495
  #ss_features_table
496
  {
497
- background: url("images/ss_table_footer.png") no-repeat scroll center bottom rgba(0, 0, 0, 0);
498
  float: left;
499
  margin: -62px 0 0;
500
  width: 940px;
@@ -516,7 +522,7 @@ width: 283px;
516
  }
517
  .tb_h1
518
  {
519
- background: url("images/table_head_1.jpg") no-repeat scroll left 0 rgba(0, 0, 0, 0);
520
  padding: 21px 0;
521
  width: 178px;
522
  float: left;
@@ -524,7 +530,7 @@ width: 283px;
524
  }
525
  .tb_h2
526
  {
527
- background: url("images/table_head_2.jpg") no-repeat scroll left 0 rgba(0, 0, 0, 0);
528
  padding: 21px 0;
529
  width: 340px;
530
  float: left;
@@ -532,7 +538,7 @@ width: 283px;
532
  }
533
  .tb_h3
534
  {
535
- background: url("images/table_head_3.png") no-repeat scroll left 0 rgba(0, 0, 0, 0);
536
  width: 211px;
537
  height: 88px;
538
  float: left;
@@ -549,7 +555,7 @@ width: 283px;
549
  }
550
  .tb_h4
551
  {
552
- background: url("images/table_head_4.png") no-repeat scroll left 0 rgba(0, 0, 0, 0);
553
  width: 211px;
554
  height: 118px;
555
  float: left;
@@ -629,14 +635,14 @@ width: 207px;
629
  }
630
  .ss_yes
631
  {
632
- background: url("images/ss_yes.png") no-repeat scroll center center rgba(0, 0, 0, 0);
633
  border-bottom: 1px solid #E6E6E6;
634
  height: 38px;
635
  width: 210px;
636
  }
637
  .ss_no
638
  {
639
- background: url("images/ss_no.png") no-repeat scroll center center rgba(0, 0, 0, 0);
640
  border-bottom: 1px solid #E6E6E6;
641
  height: 38px;
642
  width: 210px;
@@ -673,7 +679,7 @@ width: 100%;
673
  }
674
  #acx_trouble_ul li
675
  {
676
- background: url("images/tag.png") no-repeat scroll 6px center #F8F8FF;
677
  border: 1px dashed #808080;
678
  color: #006400;
679
  float: left;
@@ -692,7 +698,7 @@ color:#006400;
692
  }
693
  .acx_trouble_fixit
694
  {
695
- background: url("images/fix.png") no-repeat scroll 5px center #F0FFF0;
696
  border-bottom: 1px solid #D3D3D3;
697
  border-radius: 5px;
698
  border-right: 1px solid #D3D3D3;
@@ -700,7 +706,7 @@ margin-left: 10px;
700
  padding: 4px 10px 4px 28px;
701
  }
702
  #acx_td_asmw {
703
- background: white url("images/thank-you.png") no-repeat scroll 25px center;
704
  border: 1px solid lightsteelblue;
705
  border-radius: 3px;
706
  box-sizing: border-box;
@@ -806,7 +812,7 @@ width: 100%;
806
  }
807
  #acx_ad_banners_asmw .acx_ad_asmw_desc
808
  {
809
- background: rgba(0, 0, 0, 0) url("images/wp.png") no-repeat scroll 5px 0;
810
  box-sizing: border-box;
811
  color: black;
812
  float: left;
@@ -822,15 +828,15 @@ width: 100%;
822
  }
823
  #acx_ad_banners_asmw .acx_ad_asmw_desc2
824
  {
825
- background: url("images/des.png") no-repeat scroll 5px center rgba(0, 0, 0, 0);
826
  }
827
  #acx_ad_banners_asmw .acx_ad_asmw_desc3
828
  {
829
- background: url("images/plug.png") no-repeat scroll 5px center rgba(0, 0, 0, 0);
830
  }
831
  #acx_ad_banners_asmw .acx_ad_asmw_desc4
832
  {
833
- background: url("images/quick.png") no-repeat scroll 5px center rgba(0, 0, 0, 0);
834
  }
835
  /* Ending Ad Banner Code */
836
  @media screen and (min-width:840px)
1
  @font-face {
2
  font-family: 'agency_fbbold';
3
+ src: url('../images/fonts/agencyb-webfont.eot');
4
+ src: url('../images/fonts/agencyb-webfont.eot?#iefix') format('embedded-opentype'),
5
+ url('../images/fonts/agencyb-webfont.woff') format('woff'),
6
+ url('../images/fonts/agencyb-webfont.ttf') format('truetype'),
7
+ url('../images/fonts/agencyb-webfont.svg#agency_fbbold') format('svg');
8
  font-weight: normal;
9
  font-style: normal;
10
  }
12
  font-family: 'Raleway';
13
  font-style: normal;
14
  font-weight: 400;
15
+ src: url('../images/fonts/raleway.woff') format('woff');
16
  }
17
  @font-face {
18
  font-family: 'Courgette';
19
  font-style: normal;
20
  font-weight: 400;
21
+ src: url('../images/fonts/courgette.woff') format('woff');
22
  }
23
  @import url(https://fonts.googleapis.com/css?family=Roboto);
24
  /* Regular */
25
  @font-face {
26
  font-family: 'OpenSans-Regular';
27
 
28
+ src: url('../images/fonts/OpenSans-Regular-webfont.eot');
29
+ src: url('../images/fonts/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
30
+ url('../images/fonts/OpenSans-Regular-webfont.woff') format('woff'),
31
+ url('../images/fonts/OpenSans-Regular-webfont.ttf') format('truetype'),
32
+ url('../images/fonts/OpenSans-Regular-webfont.svg#OpenSansRegular') format('svg');
33
  font-weight: normal;
34
  font-weight: 400;
35
  font-style: normal;
37
  /* Semibold */
38
  @font-face {
39
  font-family: 'OpenSans-Semibold';
40
+ src: url('../images/fonts/OpenSans-Semibold-webfont.eot');
41
+ src: url('../images/fonts/OpenSans-Semibold-webfont.eot?#iefix') format('embedded-opentype'),
42
+ url('../images/fonts/OpenSans-Semibold-webfont.woff') format('woff'),
43
+ url('../images/fonts/OpenSans-Semibold-webfont.ttf') format('truetype'),
44
+ url('../images/fonts/OpenSans-Semibold-webfont.svg#OpenSansSemibold') format('svg');
45
  font-weight: 500;
46
  font-style: normal;
47
  }
48
  /* Oswald-Regular */
49
  @font-face {
50
  font-family: 'Oswald-Regular';
51
+ src:url('../images/fonts/Oswald-Regular.ttf') format('truetype');
52
  font-weight:normal;
53
  font-style: normal;
54
  }
55
+ #social-media-widget-by-acurax, #social-media-widget-by-acurax .column-description, #social-media-widget-by-acurax .check-column {
56
+ background: #ffffff url("../images/plugin_page_bg.png") repeat-x scroll 0 0;
57
+ }
58
  .acx_asmw_admin_left {
59
  display: inline-block;
60
  max-width: 99%;
161
  }
162
  #acx_asmw_c_icon_p_info_lb_h .acx_asmw_c_icon_p_info_close
163
  {
164
+ background: rgba(0, 0, 0, 0) url("../images/close.png") repeat scroll 0 0;
165
  cursor: pointer;
166
  height: 30px;
167
  position: absolute;
209
  }
210
  #acurax-social-media-widget
211
  {
212
+ background: url("../images/plugin_page_bg.png") repeat-x scroll 0 0 #FFFFFF;
213
  }
214
  #plugin_page_links
215
  {
220
  padding: 5px;
221
  text-align: center;
222
  }
223
+ #social-media-widget-by-acurax .plugin-title
224
  {
225
+ background: transparent url("../images/from.png") no-repeat scroll 2% 88%;
226
+ display: block;
227
+ min-height: 120px;
228
  }
229
  #plugin_page_links a
230
  {
356
  }
357
  #ad_fsmi_2
358
  {
359
+ background: url("../images/lq.jpg") repeat scroll 0 0 transparent;
360
  border: 2px dashed black;
361
  border-radius: 10px 10px 10px 10px;
362
  height: 366px;
378
  }
379
  #ad_fsmi_2_button_order
380
  {
381
+ background: url("../images/button.jpg") no-repeat scroll center 0 #FFFFFF;
382
  cursor: pointer;
383
  display: block;
384
  height: 115px;
421
  }
422
  #acx_asmw_premium .buy_now
423
  {
424
+ background: rgba(0, 0, 0, 0) url("../images/buy.png") repeat scroll 0 0;
425
  cursor: pointer;
426
  display: block;
427
  float: left;
455
  border-top: 1px solid #29A2DF;
456
  min-height: 500px;
457
  width: 100%;
458
+ float:left;
459
  }
460
  #ss_middle_wrapper h2
461
  {
491
  }
492
  .middle_h2_1
493
  {
494
+ background: url("../images/girl.png") no-repeat scroll left 0 rgba(0, 0, 0, 0);
495
  height: 149px;
496
  padding-left: 154px;
497
  padding-top: 53px;
500
  }
501
  #ss_features_table
502
  {
503
+ background: url("../images/ss_table_footer.png") no-repeat scroll center bottom rgba(0, 0, 0, 0);
504
  float: left;
505
  margin: -62px 0 0;
506
  width: 940px;
522
  }
523
  .tb_h1
524
  {
525
+ background: url("../images/table_head_1.jpg") no-repeat scroll left 0 rgba(0, 0, 0, 0);
526
  padding: 21px 0;
527
  width: 178px;
528
  float: left;
530
  }
531
  .tb_h2
532
  {
533
+ background: url("../images/table_head_2.jpg") no-repeat scroll left 0 rgba(0, 0, 0, 0);
534
  padding: 21px 0;
535
  width: 340px;
536
  float: left;
538
  }
539
  .tb_h3
540
  {
541
+ background: url("../images/table_head_3.png") no-repeat scroll left 0 rgba(0, 0, 0, 0);
542
  width: 211px;
543
  height: 88px;
544
  float: left;
555
  }
556
  .tb_h4
557
  {
558
+ background: url("../images/table_head_4.png") no-repeat scroll left 0 rgba(0, 0, 0, 0);
559
  width: 211px;
560
  height: 118px;
561
  float: left;
635
  }
636
  .ss_yes
637
  {
638
+ background: url("../images/ss_yes.png") no-repeat scroll center center rgba(0, 0, 0, 0);
639
  border-bottom: 1px solid #E6E6E6;
640
  height: 38px;
641
  width: 210px;
642
  }
643
  .ss_no
644
  {
645
+ background: url("../images/ss_no.png") no-repeat scroll center center rgba(0, 0, 0, 0);
646
  border-bottom: 1px solid #E6E6E6;
647
  height: 38px;
648
  width: 210px;
679
  }
680
  #acx_trouble_ul li
681
  {
682
+ background: url("../images/tag.png") no-repeat scroll 6px center #F8F8FF;
683
  border: 1px dashed #808080;
684
  color: #006400;
685
  float: left;
698
  }
699
  .acx_trouble_fixit
700
  {
701
+ background: url("../images/fix.png") no-repeat scroll 5px center #F0FFF0;
702
  border-bottom: 1px solid #D3D3D3;
703
  border-radius: 5px;
704
  border-right: 1px solid #D3D3D3;
706
  padding: 4px 10px 4px 28px;
707
  }
708
  #acx_td_asmw {
709
+ background: white url("../images/thank-you.png") no-repeat scroll 25px center;
710
  border: 1px solid lightsteelblue;
711
  border-radius: 3px;
712
  box-sizing: border-box;
812
  }
813
  #acx_ad_banners_asmw .acx_ad_asmw_desc
814
  {
815
+ background: rgba(0, 0, 0, 0) url("../images/wp.png") no-repeat scroll 5px 0;
816
  box-sizing: border-box;
817
  color: black;
818
  float: left;
828
  }
829
  #acx_ad_banners_asmw .acx_ad_asmw_desc2
830
  {
831
+ background: url("../images/des.png") no-repeat scroll 5px center rgba(0, 0, 0, 0);
832
  }
833
  #acx_ad_banners_asmw .acx_ad_asmw_desc3
834
  {
835
+ background: url("../images/plug.png") no-repeat scroll 5px center rgba(0, 0, 0, 0);
836
  }
837
  #acx_ad_banners_asmw .acx_ad_asmw_desc4
838
  {
839
+ background: url("../images/quick.png") no-repeat scroll 5px center rgba(0, 0, 0, 0);
840
  }
841
  /* Ending Ad Banner Code */
842
  @media screen and (min-width:840px)
function.php CHANGED
@@ -1,4 +1,217 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  //*************** Include style.css in Header ********
3
  // Getting Option From DB *****************************
4
  $acx_widget_si_theme = get_option('acx_widget_si_theme');
@@ -27,68 +240,81 @@ $acx_si_widget_current_page = $_GET['page'];
27
  {
28
  $acx_si_widget_current_page = "";
29
  }
30
- function acurax_si_widget_simple($theme = "")
31
  {
32
  // Getting Globals *****************************
33
  global $acx_widget_si_theme, $acx_widget_si_credit , $acx_widget_si_twitter, $acx_widget_si_facebook, $acx_widget_si_youtube,$acx_widget_si_gplus,
34
  $acx_widget_si_linkedin, $acx_widget_si_pinterest, $acx_widget_si_feed, $acx_widget_si_icon_size;
35
  // *****************************************************
36
 
37
-
 
 
 
 
 
 
 
 
38
  if ($theme == "") { $acx_widget_si_touse_theme = $acx_widget_si_theme; } else { $acx_widget_si_touse_theme = $theme; }
39
  //******** MAKING EACH BUTTON LINKS ********************
40
  if ($acx_widget_si_twitter == "") { $twitter_link = ""; } else
41
  {
42
- $twitter_link = "<a href='http://www.twitter.com/". $acx_widget_si_twitter ."' target='_blank' title='Visit Us On Twitter'>" . "<img src=" .
43
- plugins_url('images/themes/'. $acx_widget_si_touse_theme .'/twitter.png', __FILE__) . " style='border:0px;' alt='Visit Us On Twitter' /></a>";
44
  }
45
  if ($acx_widget_si_facebook == "") { $facebook_link = ""; } else
46
  {
47
- $facebook_link = "<a href='". $acx_widget_si_facebook ."' target='_blank' title='Visit Us On Facebook'>" . "<img src=" . plugins_url('images/themes/'
48
- . $acx_widget_si_touse_theme .'/facebook.png', __FILE__) . " style='border:0px;' alt='Visit Us On Facebook' /></a>";
49
  }
50
  if ($acx_widget_si_gplus == "") { $gplus_link = ""; } else
51
  {
52
- $gplus_link = "<a href='". $acx_widget_si_gplus ."' target='_blank' title='Visit Us On GooglePlus'>" . "<img src=" . plugins_url('images/themes/'.
53
- $acx_widget_si_touse_theme .'/googleplus.png', __FILE__) . " style='border:0px;' alt='Visit Us On GooglePlus' /></a>";
54
  }
55
  if ($acx_widget_si_pinterest == "") { $pinterest_link = ""; } else
56
  {
57
- $pinterest_link = "<a href='". $acx_widget_si_pinterest ."' target='_blank' title='Visit Us On Pinterest'>" . "<img src=" . plugins_url(
58
- 'images/themes/'. $acx_widget_si_touse_theme .'/pinterest.png', __FILE__) . " style='border:0px;' alt='Visit Us On Pinterest' /></a>";
59
  }
60
  if ($acx_widget_si_youtube == "") { $youtube_link = ""; } else
61
  {
62
- $youtube_link = "<a href='". $acx_widget_si_youtube ."' target='_blank' title='Visit Us On Youtube'>" . "<img src=" . plugins_url('images/themes/'.
63
- $acx_widget_si_touse_theme .'/youtube.png', __FILE__) . " style='border:0px;' alt='Visit Us On Youtube' /></a>";
64
  }
65
  if ($acx_widget_si_linkedin == "") { $linkedin_link = ""; } else
66
  {
67
- $linkedin_link = "<a href='". $acx_widget_si_linkedin ."' target='_blank' title='Visit Us On Linkedin'>" . "<img src=" . plugins_url('images/themes/'
68
- . $acx_widget_si_touse_theme .'/linkedin.png', __FILE__) . " style='border:0px;' alt='Visit Us On Linkedin' /></a>";
69
  }
70
  if ($acx_widget_si_feed == "") { $feed_link = ""; } else
71
  {
72
- $feed_link = "<a href='". $acx_widget_si_feed ."' target='_blank' title='Check Our Feed'>" . "<img src=" . plugins_url('images/themes/'
73
- . $acx_widget_si_touse_theme .'/feed.png', __FILE__) . " style='border:0px;' alt='Check Our Feed' /></a>";
74
  }
75
  $social_widget_icon_array_order = get_option('social_widget_icon_array_order');
76
  if(is_serialized($social_widget_icon_array_order))
77
  {
78
  $social_widget_icon_array_order = unserialize($social_widget_icon_array_order);
79
  }
 
80
  foreach ($social_widget_icon_array_order as $key => $value)
81
  {
82
- if ($value == 0) { echo $twitter_link; }
83
- else if ($value == 1) { echo $facebook_link; }
84
- else if ($value == 2) { echo $gplus_link; }
85
- else if ($value == 3) { echo $pinterest_link; }
86
- else if ($value == 4) { echo $youtube_link; }
87
- else if ($value == 5) { echo $linkedin_link; }
88
 
89
- else if ($value == 6) { echo $feed_link; }
90
  }
 
91
  } //acurax_si_widget_simple()
 
 
 
92
  // Check Credit Link
93
  function check_widget_acx_credit($yes,$no)
94
  { $acx_widget_si_credit = get_option('acx_widget_si_credit');
@@ -110,7 +336,9 @@ function acx_widget_theme_check_wp_head() {
110
  }
111
 
112
  // wp_head() not found:
113
- echo "<div class=\"highlight\" style=\"width: 99%; margin-top: 10px; margin-bottom: 10px; border: 1px solid darkred;\">" . "Your theme needs to be fixed for plugins to work. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>".htmlspecialchars("<?php wp_head(); ?>")."</code> just before the <code>".htmlspecialchars("</head>")."</code> line of your theme's <code>header.php</code> file." . "</div>";
 
 
114
  }
115
  } // theme check
116
  if($acx_si_smw_theme_warning_ignore != "yes")
@@ -128,7 +356,11 @@ function acurax_widget_icons()
128
  //*********************** STARTED DISPLAYING THE ICONS ***********************
129
  echo "\n\n\n<!-- Starting Icon Display Code For Social Media Icon From Acurax International www.acurax.com -->\n";
130
  echo "<div id='acx_social_widget' style='text-align:center;'>";
131
- acurax_si_widget_simple();
 
 
 
 
132
  echo "</div>\n";
133
  echo "<!-- Ending Icon Display Code For Social Media Icon From Acurax International www.acurax.com -->\n\n\n";
134
  //*****************************************************************************
@@ -154,10 +386,10 @@ function extra_style_acx_widget_icon()
154
  echo "</style>\n<!-- Ending Styles For Social Media Icon From Acurax International www.acurax.com -->\n\n\n\n";
155
  } add_action('admin_head', 'extra_style_acx_widget_icon'); // ADMIN
156
  add_action('wp_head', 'extra_style_acx_widget_icon'); // PUBLIC
157
- function acx_widget_si_admin_style() // Adding Style For Admin
158
  {
159
  echo '<link rel="stylesheet" type="text/css" href="' .plugins_url('style_for_admin.css', __FILE__). '">';
160
- } add_action('admin_head', 'acx_widget_si_admin_style'); // ADMIN
161
  $acx_widget_si_sc_id = 0; // Defined to assign shortcode unique id
162
  function DISPLAY_WIDGET_acurax_widget_icons_SC($atts)
163
  {
@@ -180,7 +412,11 @@ function DISPLAY_WIDGET_acurax_widget_icons_SC($atts)
180
  echo "width:" . $size . "px !important; \n}\n";
181
  echo "</style>";
182
  echo "<div id='short_code_si_icon' style='text-align:center;' class='acx_smw_float_fix scid-" . $acx_widget_si_sc_id . "'>";
183
- acurax_si_widget_simple($theme);
 
 
 
 
184
  echo "</div>";
185
  $content = ob_get_contents();
186
  ob_end_clean();
@@ -204,22 +440,18 @@ if(is_serialized($social_widget_icon_array_order))
204
  $social_widget_icon_array_count = count($social_widget_icon_array_order);
205
  if ($social_widget_icon_array_count < $total_arrays)
206
  {
207
- acx_asmw_orderarray_refresh();
208
  }
209
- function enqueue_acx_widget_si_style()
210
  {
211
  wp_enqueue_style ( 'acx-widget-si-style', plugins_url('style.css', __FILE__) );
212
- } add_action( 'wp_print_styles', 'enqueue_acx_widget_si_style' );
213
- $acx_widget_si_current_version = get_option('acx_widget_si_current_version');
214
- if($acx_widget_si_current_version != ACX_SMW_VERSION) // Current Version
215
- {
216
- update_option('acx_widget_si_current_version', ACX_SMW_VERSION);
217
- }
218
  // wp-admin Notices >> Plugin not configured
219
  function acx_widget_si_pluign_not_configured()
220
  {
221
  echo '<div class="updated">
222
- <p><b>Congratulations!, You Have Successfully Installed Acurax Social Media Widget, The Plugin Is Not Configured - <a href="admin.php?page=Acurax-Social-Widget-Settings">Click Here to Configure</a></b></p></div>';
223
  }
224
  if ($social_widget_icon_array_count == $total_arrays)
225
  {
@@ -247,7 +479,7 @@ if($acx_widget_si_current_user == "")
247
  {
248
  $acx_widget_si_current_user = "Webmaster";
249
  }
250
- echo '<div id="acx_td_asmw" class="notice">Hey <b>'.$acx_widget_si_current_user.'</b>, You were using Acurax Social Media Widget Wordpress Plugin for the last <b>'.$acx_widget_si_days_till_today_from_install.'</b>,and hope you are enjoying it.<br>From the bottom of our heart, we the team @ <a href="http://wordpress.acurax.com/?utm_source=asmw&utm_campaign=days" style="font-weight: normal; margin-left: 0px; color: rgb(68, 68, 68);" target="_blank">Acurax Technologies</a> thank you for being with us, and we appreciate your feedback,reviews and support.<br><a href="https://wordpress.org/support/view/plugin-reviews/acurax-social-media-widget?filter=5" target="_blank">Rate 5★\'s on wordpress</a><a href="admin.php?page=Acurax-Social-Widget-Premium">Premium Version Benefits</a><a href="admin.php?page=Acurax-Social-Widget-Premium&td=hide">Hide for Now</a></div>';
251
  }
252
  $acx_widget_si_installed_date = get_option('acx_widget_si_installed_date');
253
  if ($acx_widget_si_installed_date=="") { $acx_widget_si_installed_date = time();}
@@ -286,11 +518,11 @@ add_action('admin_notices', 'acx_widget_si_pluign_promotion',1);
286
  class acx_social_widget_icons_Widget extends WP_Widget
287
  {
288
  // Register the widget
289
- function acx_social_widget_icons_Widget()
290
  {
291
  // Set some widget options
292
- $widget_options = array( 'description' => 'Allow users to show Social Media Icons via Acurax Social Media Widget
293
- Plugin', 'classname' => 'acx-social-icons-desc' );
294
  // Set some control options (width, height etc)
295
  $control_options = array( 'width' => 300 );
296
  // Actually create the widget (widget id, widget name, options...)
@@ -318,7 +550,12 @@ class acx_social_widget_icons_Widget extends WP_Widget
318
  echo "</style>";
319
  echo "<div id='acurax_si_widget_simple' class='acx_smw_float_fix " . $this->get_field_id('widget') . "'";
320
  if($icon_align != "") { echo " style='text-align:" . $icon_align . ";'>"; } else { echo " style='text-align:center;'>"; }
321
- acurax_si_widget_simple($icon_theme);
 
 
 
 
 
322
  echo "</div>";
323
  // This is defined when you register a sidebar
324
  echo $after_widget;
@@ -329,64 +566,64 @@ class acx_social_widget_icons_Widget extends WP_Widget
329
  $total_themes = ACX_SOCIALMEDIA_WIDGET_TOTAL_THEMES;
330
  $total_themes = $total_themes + 1;
331
  // These are our default values
332
- $defaults = array( 'title' => 'Social Media Icons','icon_size' => '32' );
333
  // This overwrites any default values with saved values
334
  $instance = wp_parse_args( (array) $instance, $defaults );
335
  ?>
336
  <p>
337
- <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:'); ?></label>
338
  <input id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>"
339
  value="<?php echo $instance['title']; ?>" type="text" class="widefat" />
340
  </p>
341
  <p>
342
- <label for="<?php echo $this->get_field_id('icon_size'); ?>"><?php _e('Icon Size:'); ?></label>
343
  <select class="widefat" name="<?php echo $this->get_field_name('icon_size'); ?>" id="<?php echo $this
344
  ->get_field_id('icon_size'); ?>">
345
- <option value="16"<?php if ($instance['icon_size'] == "16") { echo 'selected="selected"'; } ?>>16px X 16px </
346
  option>
347
- <option value="25"<?php if ($instance['icon_size'] == "25") { echo 'selected="selected"'; } ?>>25px X 25px </
348
  option>
349
- <option value="32"<?php if ($instance['icon_size'] == "32") { echo 'selected="selected"'; } ?>>32px X 32px </
350
  option>
351
- <option value="40"<?php if ($instance['icon_size'] == "40") { echo 'selected="selected"'; } ?>>40px X 40px </
352
  option>
353
- <option value="48"<?php if ($instance['icon_size'] == "48") { echo 'selected="selected"'; } ?>>48px X 48px </
354
  option>
355
- <option value="55"<?php if ($instance['icon_size'] == "55") { echo 'selected="selected"'; } ?>>55px X 55px </
356
  option>
357
  </select>
358
  </p>
359
  <p>
360
- <label for="<?php echo $this->get_field_id('icon_theme'); ?>"><?php _e('Icon Theme:'); ?></label>
361
  <select class="widefat" name="<?php echo $this->get_field_name('icon_theme'); ?>" id="<?php echo $this
362
  ->get_field_id('icon_theme'); ?>">
363
  <option value=""<?php if(!ISSET($instance['icon_theme'])) { echo
364
- 'selected="selected"'; } ?>>Default Theme Design</option>
365
  <?php
366
  for ($i=1; $i < $total_themes; $i++)
367
  {
368
  ?>
369
  <option value="<?php echo $i; ?>"<?php if(ISSET($instance['icon_theme'])){if ($instance['icon_theme'] == $i) { echo
370
- 'selected="selected"'; }} ?>>Theme Design <?php echo $i; ?> </option>
371
  <?php
372
  } ?>
373
  </select>
374
  </p>
375
  <p>
376
- <label for="<?php echo $this->get_field_id('icon_align'); ?>"><?php _e('Icon Align:'); ?></label>
377
  <select class="widefat" name="<?php echo $this->get_field_name('icon_align'); ?>" id="<?php echo $this
378
  ->get_field_id('icon_align'); ?>">
379
- <option value=""<?php if(!ISSET($instance['icon_align'])) { echo 'selected="selected"'; } ?>>Default </
380
  option>
381
- <option value="left"<?php if(ISSET($instance['icon_align'])){ if($instance['icon_align'] == "left") { echo 'selected="selected"'; }} ?>>Left </
382
  option>
383
- <option value="center"<?php if(ISSET($instance['icon_align'])){ if($instance['icon_align'] == "center") { echo 'selected="selected"'; } }?>>Center </
384
  option>
385
- <option value="right"<?php if(ISSET($instance['icon_align'])){ if($instance['icon_align'] == "right") { echo 'selected="selected"'; } }?>>Right </
386
  option>
387
  </select>
388
  </p>
389
- <p>You can configure your social media profiles <a href="admin.php?page=Acurax-Social-Widget-Settings" target="_blank">here</a></p>
390
  <?php
391
  }
392
  // Processes the admin options form when saved
@@ -407,50 +644,51 @@ function acurax_smw_optin()
407
  {
408
  echo "";
409
  }
 
410
  function socialicons_widget_comparison($ad=2)
411
  {
412
  $ad_1 = '
413
  </hr>
414
- <a name="compare"></a><div id="ss_middle_wrapper">
415
  <div id="ss_middle_center">
416
  <div id="ss_middle_inline_block">
417
-
418
  <div class="middle_h2_1">
419
- <h2>Limited on Features ?</h2>
420
- <h3>Compare and Decide</h3>
421
  </div><!-- middle_h2_1 -->
422
 
423
  <div id="ss_features_table">
424
 
425
  <div id="ss_table_header">
426
- <div class="tb_h1"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
427
- <div class="tb_h2"> <h3>Features</h3> </div><!-- tb_h2 -->
428
  <div class="tb_h3"> <div class="ss_download"> </div><!-- ss_download --> </div><!-- tb_h3 -->
429
- <div class="tb_h4 fsmi_tb_h4"> <a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_asmw_settings_table&utm_medium=link&utm_campaign=compare_buynow" target="_blank"><div class="ss_buy_now"> </div><!-- ss_buy_now --></a> </div><!-- tb_h4 -->
430
  </div><!-- ss_table_header -->
431
 
432
  <div class="ss_column_holder">
433
 
434
- <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
435
- <div class="ss_feature_group" style="padding-top: 197px;"> Display </div><!-- -->
436
- <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
437
  <div class="ss_features">
438
  <ul>
439
- <li>More Sharp Quality Icons</li>
440
- <li>20+ Icon Theme/Style</li>
441
- <li>Can Choose Icon Theme/Style</li>
442
- <li>Can Choose Icon Size</li>
443
- <li>Automatic/Manual Integration</li>
444
- <li>Set MouseOver text for each icon in Share Mode</li>
445
- <li>Set MouseOver text for each icon in Profile Link Mode</li>
446
- <li>Option to HIDE Invididual Share Icon</li>
447
- <li><strong>Set Floating Icons in Vertical</strong></li>
448
- <li><strong>Define how many icons in 1 row</strong></li>
449
- <li class="ss_last_one"><strong>Add Custom Icons</strong></li>
450
  </ul>
451
  </div><!-- ss_features -->
452
 
453
- <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
454
  <div class="ss_y_n_holder">
455
  <div class="ss_no"> </div><!-- ss_no -->
456
  <div class="ss_yes"> </div><!-- ss_yes -->
@@ -483,17 +721,17 @@ $ad_1 = '
483
 
484
  <div class="ss_column_holder">
485
 
486
- <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
487
- <div class="ss_feature_group" style="padding-top: 30px;"> Icon Function </div><!-- -->
488
- <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
489
  <div class="ss_features">
490
  <ul>
491
- <li>Link to Social Media Profile</li>
492
- <li class="ss_last_one"><strong>Share On Social Media</strong></li>
493
  </ul>
494
  </div><!-- ss_features -->
495
 
496
- <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
497
  <div class="ss_y_n_holder">
498
  <div class="ss_yes"> </div><!-- ss_yes -->
499
  <div class="ss_no ss_last_one"> </div><!-- ss_no -->
@@ -508,17 +746,17 @@ $ad_1 = '
508
 
509
  <div class="ss_column_holder">
510
 
511
- <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
512
- <div class="ss_feature_group" style="padding-top: 30px;"> Animation </div><!-- -->
513
- <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
514
  <div class="ss_features">
515
  <ul>
516
  <li>Fly Animation</li>
517
- <li class="ss_last_one"><strong>Mouse Over Effects</strong></li>
518
  </ul>
519
  </div><!-- ss_features -->
520
 
521
- <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
522
  <div class="ss_y_n_holder">
523
  <div class="ss_yes"> </div><!-- ss_yes -->
524
  <div class="ss_no ss_last_one"> </div><!-- ss_no -->
@@ -533,20 +771,20 @@ $ad_1 = '
533
 
534
  <div class="ss_column_holder">
535
 
536
- <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
537
- <div class="ss_feature_group" style="padding-top: 84px;"> Fly Animation Repeat Interval</div><!-- -->
538
- <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
539
  <div class="ss_features">
540
  <ul>
541
- <li>Based On Time in Seconds</li>
542
- <li><strong>Based On Time in Minutes</strong></li>
543
- <li>Based On Time in Hours</li>
544
- <li>Based on Page Views</li>
545
- <li class="ss_last_one">Based On Page Views and Time</li>
546
  </ul>
547
  </div><!-- ss_features -->
548
 
549
- <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
550
  <div class="ss_y_n_holder">
551
  <div class="ss_no"> </div><!-- ss_no -->
552
  <div class="ss_no"> </div><!-- ss_no -->
@@ -567,17 +805,17 @@ $ad_1 = '
567
 
568
  <div class="ss_column_holder">
569
 
570
- <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
571
- <div class="ss_feature_group" style="padding-top: 30px;"> Multiple Fly Animation<br/></div><!-- -->
572
- <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
573
  <div class="ss_features">
574
  <ul>
575
- <li>Can Choose Fly Start Position</li>
576
- <li class="ss_last_one">Can Choose Fly End Position</li>
577
  </ul>
578
  </div><!-- ss_features -->
579
 
580
- <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
581
  <div class="ss_y_n_holder">
582
  <div class="ss_no"> </div><!-- ss_no -->
583
  <div class="ss_no ss_last_one"> </div><!-- ss_no -->
@@ -592,18 +830,18 @@ $ad_1 = '
592
 
593
  <div class="ss_column_holder">
594
 
595
- <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
596
- <div class="ss_feature_group" style="padding-top: 52px;">Easy to Configure</div><!-- -->
597
- <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
598
  <div class="ss_features">
599
  <ul>
600
- <li>Ajax Based Settings Page</li>
601
- <li>Drag & Drop Reorder Icons</li>
602
- <li class="ss_last_one">Easy to Configure</li>
603
  </ul>
604
  </div><!-- ss_features -->
605
 
606
- <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
607
  <div class="ss_y_n_holder">
608
  <div class="ss_no"> </div><!-- ss_no -->
609
  <div class="ss_yes"> </div><!-- ss_yes -->
@@ -620,21 +858,21 @@ $ad_1 = '
620
 
621
  <div class="ss_column_holder">
622
 
623
- <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
624
- <div class="ss_feature_group" style="padding-top: 106px;">Widget Support </div><!-- -->
625
- <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
626
  <div class="ss_features">
627
  <ul>
628
- <li>Multiple Widgets</li>
629
- <li>Separate Icon Style/Theme For Each</li>
630
- <li>Separate Icon Size For Each</li>
631
- <li>Set whether the icons to Link Profiles/SHARE</li>
632
- <li><strong>Separate Mouse Over Multiple Animation for Each</strong></li>
633
- <li class="ss_last_one">Separate Default Opacity for Each</li>
634
  </ul>
635
  </div><!-- ss_features -->
636
 
637
- <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
638
  <div class="ss_y_n_holder">
639
  <div class="ss_yes"> </div><!-- ss_yes -->
640
  <div class="ss_yes"> </div><!-- ss_yes -->
@@ -657,21 +895,21 @@ $ad_1 = '
657
 
658
  <div class="ss_column_holder">
659
 
660
- <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
661
- <div class="ss_feature_group" style="padding-top: 106px;">Shortcode Support </div><!-- -->
662
- <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
663
  <div class="ss_features">
664
  <ul>
665
- <li>Multiple Instances</li>
666
- <li>Separate Icon Style/Theme For Each</li>
667
- <li><strong>Separate Icon Size For Each</strong></li>
668
- <li>Set whether the icons to Link Profiles/SHARE</li>
669
- <li>Separate Mouse Over Multiple Animation for Each</li>
670
- <li class="ss_last_one">Separate Default Opacity for Each</li>
671
  </ul>
672
  </div><!-- ss_features -->
673
 
674
- <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
675
  <div class="ss_y_n_holder">
676
  <div class="ss_yes"> </div><!-- ss_yes -->
677
  <div class="ss_yes"> </div><!-- ss_yes -->
@@ -694,22 +932,22 @@ $ad_1 = '
694
 
695
  <div class="ss_column_holder">
696
 
697
- <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
698
- <div class="ss_feature_group" style="padding-top: 126px;">PHP Code Support </div><!-- -->
699
- <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
700
  <div class="ss_features">
701
  <ul>
702
- <li>Multiple Instances</li>
703
- <li>Use Outside Loop</li>
704
- <li>Separate Icon Style/Theme For Each</li>
705
- <li>Separate Icon Size For Each</li>
706
- <li><strong>Set whether the icons to Link Profiles/SHARE</strong></li>
707
- <li>Separate Mouse Over Multiple Animation for Each</li>
708
- <li class="ss_last_one">Separate Default Opacity for Each</li>
709
  </ul>
710
  </div><!-- ss_features -->
711
 
712
- <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
713
  <div class="ss_y_n_holder">
714
  <div class="ss_yes"> </div><!-- ss_yes -->
715
  <div class="ss_yes"> </div><!-- ss_yes -->
@@ -736,13 +974,14 @@ $ad_1 = '
736
 
737
  </div><!-- ss_features_table -->
738
 
739
- <div id="ad_fsmi_2_button_order" style="float: left; width: 100%;">
740
- <a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_asmw_settings&utm_medium=banner&utm_campaign=plugin_yellow_order" target="_blank"><div id="ad_fsmi_2_button_order_link"></div></a></div> <!-- ad_fsmi_2_button_order --></div></div></div>';
741
- $ad_2='<div id="ad_fsmi_2"> <a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_smw_settings&utm_medium=banner&utm_campaign=plugin_enjoy" target="_blank"><div id="ad_fsmi_2_button"></div></a> </div> <!-- ad_fsmi_2 --><br>
742
- <div id="ad_fsmi_2_button_order">
743
- <a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_smw_settings&utm_medium=banner&utm_campaign=plugin_yellow_order" target="_blank"><div id="ad_fsmi_2_button_order_link"></div></a></div> <!-- ad_fsmi_2_button_order --> ';
744
  if($ad=="" || $ad == 2) { echo $ad_2; } else if ($ad == 1) { echo $ad_1; } else { echo $ad_2; }
745
  }
 
746
  function acx_asmw_saveorder_callback()
747
  {
748
  global $wpdb;
@@ -756,68 +995,14 @@ if (current_user_can('manage_options')) {
756
  }
757
  die(); // this is required to return a proper result
758
  } add_action('wp_ajax_acx_asmw_saveorder', 'acx_asmw_saveorder_callback');
759
- function acx_quick_widget_request_submit_callback()
760
- {
761
-
762
- $acx_name = $_POST['acx_name'];
763
- $acx_email = $_POST['acx_email'];
764
- $acx_phone = $_POST['acx_phone'];
765
- $acx_weburl = $_POST['acx_weburl'];
766
- $acx_subject = $_POST['acx_subject'];
767
- $acx_question = $_POST['acx_question'];
768
- $acx_smw_es = $_POST['acx_smw_es'];
769
- if (!wp_verify_nonce($acx_smw_es,'acx_smw_es'))
770
- {
771
- $acx_smw_es == "";
772
- }
773
- if(!current_user_can('manage_options'))
774
- {
775
- $acx_smw_es == "";
776
- }
777
- if($acx_smw_es == "" || $acx_name == "" || $acx_email == "" || $acx_phone == "" || $acx_weburl == "" || $acx_subject == "" || $acx_question == "")
778
- {
779
- echo 2;
780
- } else
781
- {
782
- $current_user_acx = wp_get_current_user();
783
- $current_user_acx = $current_user->user_email;
784
- if($current_user_acx == "")
785
- {
786
- $current_user_acx = $acx_email;
787
- }
788
- $headers[] = 'From: ' . $acx_name . ' <' . $current_user_acx . '>';
789
- $headers[] = 'Content-Type: text/html; charset=UTF-8';
790
- $message = "Name: ".$acx_name . "\r\n <br>";
791
- $message = $message . "Email: ".$acx_email . "\r\n <br>";
792
- if($acx_phone != "")
793
- {
794
- $message = $message . "Phone: ".$acx_phone . "\r\n <br>";
795
- }
796
- // In case any of our lines are larger than 70 characters, we should use wordwrap()
797
- $acx_question = wordwrap($acx_question, 70, "\r\n <br>");
798
- $message = $message . "Request From: SMW - Expert Help Request Form \r\n <br>";
799
- $message = $message . "Website: ".$acx_weburl . "\r\n <br>";
800
- $message = $message . "Question: ".$acx_question . "\r\n <br>";
801
- $message = stripslashes($message);
802
- $acx_subject = "Quick Support - " . $acx_subject;
803
- $emailed = wp_mail( 'info@acurax.com', $acx_subject, $message, $headers );
804
- if($emailed)
805
- {
806
- echo 1;
807
- } else
808
- {
809
- echo 0;
810
- }
811
- }
812
- die(); // this is required to return a proper result
813
- }add_action('wp_ajax_acx_quick_widget_request_submit','acx_quick_widget_request_submit_callback');
814
 
815
  $social_widget_icon_array_order = get_option('social_widget_icon_array_order');
816
  if(is_serialized($social_widget_icon_array_order))
817
  {
818
  $social_widget_icon_array_order = unserialize($social_widget_icon_array_order);
819
  }
820
- function acx_asmw_orderarray_refresh()
821
  {
822
  global $social_widget_icon_array_order;
823
  /* Starting The Logic Count and Re Configuring Order Array */
@@ -879,184 +1064,6 @@ echo 0;
879
  } // else closing of if array null
880
  /* Ending The Logic Count and Re Configuring Order Array */
881
  }
882
- function acx_asmw_service_banners()
883
- {
884
- ?>
885
- <div id="acx_ad_banners_asmw">
886
- <?php
887
- $acx_asmw_service_banners = get_option('acx_si_smw_acx_service_banners');
888
- if ($acx_asmw_service_banners != "no") { ?>
889
- <div id="acx_ad_banners_asmw">
890
- <a href="http://wordpress.acurax.com/?utm_source=asmw&utm_campaign=sidebar_banner_1" target="_blank" class="acx_ad_asmw_1">
891
- <div class="acx_ad_asmw_title">Need Help on Wordpress?</div> <!-- acx_ad_asmw_title -->
892
- <div class="acx_ad_asmw_desc">Instant Solutions for your wordpress Issues</div> <!-- acx_ad_asmw_desc -->
893
- </a> <!-- acx_ad_asmw_1 -->
894
-
895
- <a href="http://wordpress.acurax.com/?utm_source=asmw&utm_campaign=sidebar_banner_2" target="_blank" class="acx_ad_asmw_1">
896
- <div class="acx_ad_asmw_title">Unique Design For Better Branding</div> <!-- acx_ad_asmw_title -->
897
- <div class="acx_ad_asmw_desc acx_ad_asmw_desc2" style="padding-top: 0px; padding-left: 50px; height: 41px; font-size: 13px; text-align: center;">Get Responsive Custom Designed Website For High Conversion</div> <!-- acx_ad_asmw_desc -->
898
- </a> <!-- acx_ad_asmw_1 -->
899
-
900
- <a href="http://wordpress.acurax.com/?utm_source=asmw&utm_campaign=sidebar_banner_3" target="_blank" class="acx_ad_asmw_1">
901
- <div class="acx_ad_asmw_title">Affordable Website Packages</div> <!-- acx_ad_asmw_title -->
902
- <div class="acx_ad_asmw_desc acx_ad_asmw_desc3" style="padding-top: 0px; height: 32px; font-size: 13px; text-align: center;">Get Feature Rich Packages For a Custom Designed Website</div> <!-- acx_ad_asmw_desc -->
903
- </a> <!-- acx_ad_asmw_1 -->
904
-
905
- </div> <!-- acx_ad_banners_asmw -->
906
- <?php } else { ?>
907
- <div class="acx_asmw_sidebar_widget">
908
- <div class="acx_asmw_sidebar_w_title">We Are Always Available</div> <!-- acx_ad_asmw_title -->
909
- <div class="acx_asmw_sidebar_w_content">
910
- We know you are in the process of improving your website, and we the team at Acurax is always available for any help or support that you need. <a href="http://wordpress.acurax.com/?utm_source=asmw&utm_campaign=sidebar_text_1" target="_blank">Get in touch</a>
911
- </div>
912
- </div> <!-- acx_asmw_sidebar_widget -->
913
-
914
 
915
- <div class="acx_asmw_sidebar_widget">
916
- <div class="acx_asmw_sidebar_w_title">Do You Know?</div> <!-- acx_ad_asmw_title -->
917
- <div class="acx_asmw_sidebar_w_content acx_asmw_sidebar_w_content_p_slide">
918
- </div>
919
- </div> <!-- acx_asmw_sidebar_widget -->
920
- <script type="text/javascript">
921
- var acx_asmw = new Array("A professionally designed website is the most cost effective marketing tool available in the world today...","Personalizing your website can create a unique one to one experience and convert your visitors into customers.","70% of searches from mobile devices are followed up with an action within 1 hour.");
922
- // jQuery(".acx_asmw_sidebar_w_content_p_slide p").height('30px');
923
- function acx_asmw_t_rotate()
924
- {
925
- acx_asmw_text = acx_asmw[Math.floor(Math.random()*acx_asmw.length)];
926
- jQuery(".acx_asmw_sidebar_w_content_p_slide").fadeOut('slow')
927
- jQuery(".acx_asmw_sidebar_w_content_p_slide").text(acx_asmw_text);
928
- jQuery(".acx_asmw_sidebar_w_content_p_slide").fadeIn('fast');
929
- }
930
- jQuery(document).ready(function() {
931
- acx_asmw_t_rotate();
932
- setInterval(function(){ acx_asmw_t_rotate(); }, 8000);
933
- });
934
- </script>
935
- <div class="acx_asmw_sidebar_widget">
936
- <div class="acx_asmw_sidebar_w_title">Grab The Blending Creativity</div>
937
- <div class="acx_asmw_sidebar_w_content">Make your website user friendly and optimized for mobile devices for better user interaction and satisfaction <a href="http://wordpress.acurax.com/?utm_source=asmw&utm_campaign=sidebar_text_2" target="_blank">Click Here</a></div>
938
- </div> <!-- acx_asmw_sidebar_widget -->
939
- <?php } ?>
940
- <div class="acx_asmw_sidebar_widget">
941
- <div class="acx_asmw_sidebar_w_title">Rate us on wordpress.org</div>
942
- <div class="acx_asmw_sidebar_w_content" style="text-align:center;font-size:13px;"><b>Thank you for being with us... If you like our plugin then please show us some love </b></br>
943
- <a href="https://wordpress.org/support/view/plugin-reviews/acurax-social-media-widget/" target="_blank" style="text-decoration:none;">
944
- <span id="acx_asmw_stars">
945
- <span class="dashicons dashicons-star-filled"></span>
946
- <span class="dashicons dashicons-star-filled"></span>
947
- <span class="dashicons dashicons-star-filled"></span>
948
- <span class="dashicons dashicons-star-filled"></span>
949
- <span class="dashicons dashicons-star-filled"></span>
950
- </span>
951
- <span class="acx_asmw_star_button button button-primary">Click Here</span>
952
- </a>
953
- <p>If you are facing any issues, kindly post them at plugins support forum <a href="http://wordpress.org/support/plugin/acurax-social-media-widget/" target="_blank">here</a>
954
- </div>
955
- </div> <!-- acx_asmw_sidebar_widget -->
956
- </div> <!-- acx_ad_banners_asmw -->
957
- <?php
958
- }
959
- function acx_asmw_quick_form()
960
- {
961
- if(ISSET($_SERVER['HTTP_HOST']))
962
- {
963
- $acx_installation_url = $_SERVER['HTTP_HOST'];
964
- } else
965
- {
966
- $acx_installation_url = "";
967
- }
968
- ?>
969
- <div class="acx_asmw_es_common_raw acx_asmw_es_common_bg">
970
- <div class="acx_asmw_es_middle_section">
971
-
972
- <div class="acx_asmw_es_acx_content_area">
973
- <div class="acx_asmw_es_wp_left_area">
974
- <div class="acx_asmw_es_wp_left_content_inner">
975
- <div class="acx_asmw_es_wp_main_head">Do you Need Technical Support Services to Get the Best Out of Your Wordpress Site ?</div> <!-- wp_main_head -->
976
- <div class="acx_asmw_es_wp_sub_para_des">Acurax offer a number of WordPress related services: Form installing WordPress on your domain to offering support for existing WordPress sites.</div> <!-- acx_asmw_es_wp_sub_para_des -->
977
- <div class="acx_asmw_es_wp_acx_service_list">
978
- <ul>
979
- <li>Troubleshoot WordPress Site Issues</li>
980
- <li>Recommend & Install Plugins For Improved WordPress Performance</li>
981
- <li>Create, Modify, Or Customise, Themes</li>
982
- <li>Explain Errors And Recommend Solutions</li>
983
- <li>Custom Plugin Development According To Your Needs</li>
984
- <li>Plugin Integration Support</li>
985
- <li>Many <a href="http://wordpress.acurax.com/?utm_source=asmw&utm_campaign=expert_support" target="_blank">More...</a></li>
986
- </ul>
987
- </div> <!-- acx_asmw_es_wp_acx_service_list -->
988
-
989
- <div class="acx_asmw_es_wp_send_ylw_para">We Have Extensive Experience in WordPress Troubleshooting,Theme Design & Plugin Development.</div> <!-- acx_asmw_es_wp_secnd_ylw_para-->
990
-
991
- </div> <!-- acx_asmw_es_wp_left_content_inner -->
992
- </div> <!-- acx_asmw_es_wp_left_area -->
993
-
994
- <div class="acx_asmw_es_wp_right_area">
995
- <div class="acx_asmw_es_wp_right_inner_form_wrap">
996
- <div class="acx_asmw_es_wp_inner_wp_form">
997
- <div class="acx_asmw_es_wp_form_head">WE ARE DEDICATED TO HELP YOU. SUBMIT YOUR REQUEST NOW..!</div> <!-- acx_asmw_es_wp_form_head -->
998
- <form class="acx_asmw_es_wp_support_acx">
999
- <span class="acx_asmw_es_cnvas_input acx_asmw_es_half_width_sec acx_asmw_es_haif_marg_right"><input type="text" placeholder="Name*" id="acx_name"></span> <!-- acx_asmw_es_cnvas_input -->
1000
- <span class="acx_asmw_es_cnvas_input acx_asmw_es_half_width_sec acx_asmw_es_haif_marg_left"><input type="email" placeholder="Email*" id="acx_email"></span> <!-- acx_asmw_es_cnvas_input -->
1001
- <span class="acx_asmw_es_cnvas_input acx_asmw_es_half_width_sec acx_asmw_es_haif_marg_right"><input type="text" placeholder="Phone Number*" id="acx_phone"></span> <!-- acx_asmw_es_cnvas_input -->
1002
- <span class="acx_asmw_es_cnvas_input acx_asmw_es_half_width_sec acx_asmw_es_haif_marg_left"><input type="text" placeholder="Website URL*" value="<?php echo $acx_installation_url; ?>" id="acx_weburl"></span> <!-- acx_asmw_es_cnvas_input -->
1003
- <span class="acx_asmw_es_cnvas_input"><input type="text" placeholder="Subject*" id="acx_subject"></span> <!-- acx_asmw_es_cnvas_input -->
1004
- <span class="acx_asmw_es_cnvas_input"><textarea placeholder="Question*" id="acx_question"></textarea></span> <!-- acx_asmw_es_cnvas_input -->
1005
- <span class="acx_asmw_es_cnvas_input"><input class="acx_asmw_es_wp_acx_submit" type="button" value="SUBMIT REQUEST" onclick="acx_quick_widget_request_submit();"></span> <!-- acx_asmw_es_cnvas_input -->
1006
- </form>
1007
- </div> <!-- acx_asmw_es_wp_inner_wp_form -->
1008
- </div> <!-- acx_asmw_es_wp_right_inner_form_wrap -->
1009
- </div> <!-- acx_asmw_es_wp_left_area -->
1010
- </div> <!-- acx_asmw_es_acx_content_area -->
1011
-
1012
- <div class="acx_asmw_es_footer_content_cvr">
1013
- <div class="acx_asmw_es_wp_footer_area_desc">Its our pleasure to thank you for using our plugin and being with us. We always do our best to help you on your needs. If you like to hide this menu, you can do so at <a href="admin.php?page=Acurax-Social-Widget-Misc">Misc</a> page which is under our plugin options.</div> <!--acx_asmw_es_wp_footer_area_desc -->
1014
- </div> <!-- acx_asmw_es_footer_content_cvr -->
1015
-
1016
- </div> <!-- acx_asmw_es_middle_section -->
1017
- </div> <!--acx_asmw_es_common_raw -->
1018
- <script type="text/javascript">
1019
- var request_acx_form_status = 0;
1020
- function acx_quick_form_reset()
1021
- {
1022
- jQuery("#acx_subject").val('');
1023
- jQuery("#acx_question").val('');
1024
- }
1025
- acx_quick_form_reset();
1026
- function acx_quick_widget_request_submit()
1027
- {
1028
- var acx_name = jQuery("#acx_name").val();
1029
- var acx_email = jQuery("#acx_email").val();
1030
- var acx_phone = jQuery("#acx_phone").val();
1031
- var acx_weburl = jQuery("#acx_weburl").val();
1032
- var acx_subject = jQuery("#acx_subject").val();
1033
- var acx_question = jQuery("#acx_question").val();
1034
- var order = '&action=acx_quick_widget_request_submit&acx_name='+acx_name+'&acx_email='+acx_email+'&acx_phone='+acx_phone+'&acx_weburl='+acx_weburl+'&acx_subject='+acx_subject+'&acx_question='+acx_question+'&acx_smw_es=<?php echo wp_create_nonce("acx_smw_es"); ?>';
1035
- if(request_acx_form_status == 0)
1036
- {
1037
- request_acx_form_status = 1;
1038
- jQuery.post(ajaxurl, order, function(quick_request_acx_response)
1039
- {
1040
- if(quick_request_acx_response == 1)
1041
- {
1042
- alert('Your Request Submitted Successfully!');
1043
- acx_quick_form_reset();
1044
- request_acx_form_status = 0;
1045
- } else if(quick_request_acx_response == 2)
1046
- {
1047
- alert('Please Fill Mandatory Fields.');
1048
- request_acx_form_status = 0;
1049
- } else
1050
- {
1051
- alert('There was an error processing the request, Please try again.');
1052
- acx_quick_form_reset();
1053
- request_acx_form_status = 0;
1054
- }
1055
- });
1056
- } else
1057
- {
1058
- alert('A request is already in progress.');
1059
- }
1060
- }
1061
- </script>
1062
- <?php } ?>
1
  <?php
2
+ function acx_smw_styles()
3
+ {
4
+ wp_register_style('acx_smw_admin_style', plugins_url('css/style_admin.css', __FILE__));
5
+ wp_enqueue_style('acx_smw_admin_style');
6
+ wp_register_style('acx_smw_box_style', plugins_url('css/layout.css', __FILE__));
7
+ wp_enqueue_style('acx_smw_box_style');
8
+ wp_register_style('acx_smw_widget_style', plugins_url('css/style.css', __FILE__));
9
+ wp_enqueue_style('acx_smw_widget_style');
10
+
11
+ }
12
+ add_action('admin_enqueue_scripts', 'acx_smw_styles');
13
+ add_action('wp_enqueue_scripts', 'acx_smw_styles');
14
+
15
+ function print_acx_smw_option_heading($heading)
16
+ {
17
+ $heading_format = "<h2 class='acx_smw_option_head'>";
18
+ $heading_format .= $heading;
19
+ $heading_format .= "</h2>";
20
+ return $heading_format;
21
+ }
22
+ function print_acx_smw_option_block_start($title,$pre_fix="",$suf_fix="")
23
+ {
24
+ global $acx_smw_options_uid;
25
+ if(!$acx_smw_options_uid || $acx_smw_options_uid == "")
26
+ {
27
+ $acx_smw_options_uid = 0;
28
+ }
29
+ $acx_smw_options_uid = $acx_smw_options_uid+1;
30
+ echo "<div class='acx_smw_q_holder acx_smw_q_holder_".$acx_smw_options_uid."'>";
31
+ echo $pre_fix;
32
+ echo "<h4>".$title."</h4>";
33
+ echo $suf_fix;
34
+ echo "<div class='acx_smw_q_holder_c acx_smw_q_holder_c_".$acx_smw_options_uid."'>";
35
+ }
36
+ function print_acx_smw_option_block_end()
37
+ {
38
+ echo "</div> <!-- acx_smw_q_holder_c -->";
39
+ echo "</div> <!-- acx_smw_q_holder -->";
40
+ }
41
+ function acx_smw_post_isset_check($field)
42
+ {
43
+ $value = "";
44
+ if(ISSET($_POST[$field]))
45
+ {
46
+ $value = $_POST[$field];
47
+ }
48
+ return $value;
49
+ }
50
+
51
+ function acx_smw_quick_form()
52
+ {
53
+ if(ISSET($_SERVER['HTTP_HOST']))
54
+ {
55
+ $acx_installation_url = $_SERVER['HTTP_HOST'];
56
+ } else
57
+ {
58
+ $acx_installation_url = "";
59
+ }
60
+ ?>
61
+ <div class="acx_smw_es_common_raw acx_smw_es_common_bg">
62
+ <div class="acx_smw_es_middle_section">
63
+
64
+ <div class="acx_smw_es_acx_content_area">
65
+ <div class="acx_smw_es_wp_left_area">
66
+ <div class="acx_smw_es_wp_left_content_inner">
67
+ <div class="acx_smw_es_wp_main_head"><?php _e('Do you Need Technical Support Services to Get the Best Out of Your Wordpress Site ?','acurax-social-media-widget');?></div> <!-- wp_main_head -->
68
+ <div class="acx_smw_es_wp_sub_para_des"><?php _e('Acurax offer a number of WordPress related services: Form installing WordPress on your domain to offering support for existing WordPress sites.','acurax-social-media-widget'); ?></div> <!-- acx_smw_es_wp_sub_para_des -->
69
+ <div class="acx_smw_es_wp_acx_service_list">
70
+ <ul>
71
+ <li><?php _e('Troubleshoot WordPress Site Issues','acurax-social-media-widget'); ?></li>
72
+ <li><?php _e('Recommend & Install Plugins For Improved WordPress Performance','acurax-social-media-widget'); ?></li>
73
+ <li><?php _e('Create, Modify, Or Customise, Themes','acurax-social-media-widget'); ?></li>
74
+ <li><?php _e('Explain Errors And Recommend Solutions','acurax-social-media-widget'); ?></li>
75
+ <li><?php _e('Custom Plugin Development According To Your Needs','acurax-social-media-widget'); ?></li>
76
+ <li><?php _e('Plugin Integration Support','acurax-social-media-widget'); ?></li>
77
+ <li><?php _e('Many','acurax-social-media-widget'); ?> <a href="http://wordpress.acurax.com/?utm_source=smw&utm_campaign=expert_support" target="_blank"><?php _e('More...','acurax-social-media-widget'); ?></a></li>
78
+ </ul>
79
+ </div> <!-- acx_smw_es_wp_acx_service_list -->
80
+
81
+ <div class="acx_smw_es_wp_send_ylw_para"><?php _e('We Have Extensive Experience in WordPress Troubleshooting,Theme Design & Plugin Development.','acurax-social-media-widget'); ?></div> <!-- acx_smw_es_wp_secnd_ylw_para-->
82
+
83
+ </div> <!-- acx_smw_es_wp_left_content_inner -->
84
+ </div> <!-- acx_smw_es_wp_left_area -->
85
+
86
+ <div class="acx_smw_es_wp_right_area">
87
+ <div class="acx_smw_es_wp_right_inner_form_wrap">
88
+ <div class="acx_smw_es_wp_inner_wp_form">
89
+ <div class="acx_smw_es_wp_form_head"><?php _e('WE ARE DEDICATED TO HELP YOU. SUBMIT YOUR REQUEST NOW..!','acurax-social-media-widget'); ?></div> <!-- acx_smw_es_wp_form_head -->
90
+ <form class="acx_smw_es_wp_support_acx">
91
+ <span class="acx_smw_es_cnvas_input acx_smw_es_half_width_sec acx_smw_es_haif_marg_right"><input type="text" placeholder="<?php _e('Name*','acurax-social-media-widget'); ?>" id="acx_name"></span> <!-- acx_smw_es_cnvas_input -->
92
+ <span class="acx_smw_es_cnvas_input acx_smw_es_half_width_sec acx_smw_es_haif_marg_left"><input type="email" placeholder="<?php _e('Email*','acurax-social-media-widget'); ?>" id="acx_email"></span> <!-- acx_smw_es_cnvas_input -->
93
+ <span class="acx_smw_es_cnvas_input acx_smw_es_half_width_sec acx_smw_es_haif_marg_right"><input type="text" placeholder="<?php _e('Phone Number*','acurax-social-media-widget'); ?>" id="acx_phone"></span> <!-- acx_smw_es_cnvas_input -->
94
+ <span class="acx_smw_es_cnvas_input acx_smw_es_half_width_sec acx_smw_es_haif_marg_left"><input type="text" placeholder="<?php _e('Website URL*','acurax-social-media-widget'); ?>" value="<?php echo $acx_installation_url; ?>" id="acx_weburl"></span> <!-- acx_smw_es_cnvas_input -->
95
+ <span class="acx_smw_es_cnvas_input"><input type="text" placeholder="<?php _e('Subject*','acurax-social-media-widget'); ?>" id="acx_subject"></span> <!-- acx_smw_es_cnvas_input -->
96
+ <span class="acx_smw_es_cnvas_input"><textarea placeholder="<?php _e('Question*','acurax-social-media-widget'); ?>" id="acx_question"></textarea></span> <!-- acx_smw_es_cnvas_input -->
97
+ <span class="acx_smw_es_cnvas_input"><input class="acx_smw_es_wp_acx_submit" type="button" value="<?php _e('SUBMIT REQUEST','acurax-social-media-widget'); ?>" onclick="acx_quick_smw_request_submit();"></span> <!-- acx_smw_es_cnvas_input -->
98
+ </form>
99
+ </div> <!-- acx_smw_es_wp_inner_wp_form -->
100
+ </div> <!-- acx_smw_es_wp_right_inner_form_wrap -->
101
+ </div> <!-- acx_smw_es_wp_left_area -->
102
+ </div> <!-- acx_smw_es_acx_content_area -->
103
+
104
+ <div class="acx_smw_es_footer_content_cvr">
105
+ <div class="acx_smw_es_wp_footer_area_desc"><?php _e('Its our pleasure to thank you for using our plugin and being with us. We always do our best to help you on your needs.','acurax-social-media-widget'); ?></div> <!--acx_smw_es_wp_footer_area_desc -->
106
+ </div> <!-- acx_smw_es_footer_content_cvr -->
107
+
108
+ </div> <!-- acx_smw_es_middle_section -->
109
+ </div> <!--acx_smw_es_common_raw -->
110
+ <script type="text/javascript">
111
+ var request_acx_form_status = 0;
112
+ function acx_quick_form_reset()
113
+ {
114
+ jQuery("#acx_subject").val('');
115
+ jQuery("#acx_question").val('');
116
+ }
117
+ acx_quick_form_reset();
118
+ function acx_quick_smw_request_submit()
119
+ {
120
+ var acx_name = jQuery("#acx_name").val();
121
+ var acx_email = jQuery("#acx_email").val();
122
+ var acx_phone = jQuery("#acx_phone").val();
123
+ var acx_weburl = jQuery("#acx_weburl").val();
124
+ var acx_subject = jQuery("#acx_subject").val();
125
+ var acx_question = jQuery("#acx_question").val();
126
+ var order = '&action=acx_quick_smw_request_submit&acx_name='+acx_name+'&acx_email='+acx_email+'&acx_phone='+acx_phone+'&acx_weburl='+acx_weburl+'&acx_subject='+acx_subject+'&acx_question='+acx_question+'&acx_smw_es=<?php echo wp_create_nonce("acx_smw_es"); ?>';
127
+ if(request_acx_form_status == 0)
128
+ {
129
+ request_acx_form_status = 1;
130
+ jQuery.post(ajaxurl, order, function(quick_request_acx_response)
131
+ {
132
+ if(quick_request_acx_response == 1)
133
+ {
134
+ alert('<?php _e('Your Request Submitted Successfully!','acurax-social-media-widget'); ?>');
135
+ acx_quick_form_reset();
136
+ request_acx_form_status = 0;
137
+ } else if(quick_request_acx_response == 2)
138
+ {
139
+ alert('<?php _e('Please Fill Mandatory Fields.','acurax-social-media-widget'); ?>');
140
+ request_acx_form_status = 0;
141
+ } else
142
+ {
143
+ alert('<?php _e('There was an error processing the request, Please try again.','acurax-social-media-widget'); ?>');
144
+ acx_quick_form_reset();
145
+ request_acx_form_status = 0;
146
+ }
147
+ });
148
+ } else
149
+ {
150
+ alert('<?php _e('A request is already in progress.','acurax-social-media-widget'); ?>');
151
+ }
152
+ }
153
+ </script>
154
+ <?php }
155
+
156
+
157
+ function acx_quick_smw_request_submit_callback()
158
+ {
159
+
160
+ $acx_name = $_POST['acx_name'];
161
+ $acx_email = $_POST['acx_email'];
162
+ $acx_phone = $_POST['acx_phone'];
163
+ $acx_weburl = $_POST['acx_weburl'];
164
+ $acx_subject = $_POST['acx_subject'];
165
+ $acx_question = $_POST['acx_question'];
166
+ $acx_smw_es = $_POST['acx_smw_es'];
167
+ if (!wp_verify_nonce($acx_smw_es,'acx_smw_es'))
168
+ {
169
+ $acx_smw_es == "";
170
+ }
171
+ if(!current_user_can('manage_options'))
172
+ {
173
+ $acx_smw_es == "";
174
+ }
175
+ if($acx_smw_es == "" || $acx_name == "" || $acx_email == "" || $acx_phone == "" || $acx_weburl == "" || $acx_subject == "" || $acx_question == "")
176
+ {
177
+ echo 2;
178
+ } else
179
+ {
180
+ $current_user_acx = wp_get_current_user();
181
+ $current_user_acx = $current_user->user_email;
182
+ if($current_user_acx == "")
183
+ {
184
+ $current_user_acx = $acx_email;
185
+ }
186
+ $headers[] = "from: ". $acx_name . ' <' . $current_user_acx . '>';
187
+ $headers[] = "Content-Type: text/html; charset=UTF-8";
188
+ $message = "Name: ".$acx_name . "\r\n <br>";
189
+ $message = $message ."E-mail: ".$acx_email . "\r\n <br>";
190
+ if($acx_phone != "")
191
+ {
192
+ $message = $message ."Phone: ".$acx_phone . "\r\n <br>";
193
+ }
194
+ // In case any of our lines are larger than 70 characters, we should use wordwrap()
195
+ $acx_question = wordwrap($acx_question, 70, "\r\n <br>");
196
+ $message = $message ."Request From: smw - Expert Help Request Form \r\n <br>";
197
+ $message = $message . "Website:".$acx_weburl . "\r\n <br>";
198
+ $message = $message . "Question:" .$acx_question . "\r\n <br>";
199
+ $message = stripslashes($message);
200
+ $acx_subject = "Quick support - " . $acx_subject;
201
+ $emailed = wp_mail( 'info@acurax.com', $acx_subject, $message, $headers );
202
+ if($emailed)
203
+ {
204
+ echo 1;
205
+ } else
206
+ {
207
+ echo 0;
208
+ }
209
+ }
210
+ die(); // this is required to return a proper result
211
+ }add_action('wp_ajax_acx_quick_smw_request_submit','acx_quick_smw_request_submit_callback');
212
+
213
+
214
+
215
  //*************** Include style.css in Header ********
216
  // Getting Option From DB *****************************
217
  $acx_widget_si_theme = get_option('acx_widget_si_theme');
240
  {
241
  $acx_si_widget_current_page = "";
242
  }
243
+ function acurax_si_widget_simple($acx_widget_array)
244
  {
245
  // Getting Globals *****************************
246
  global $acx_widget_si_theme, $acx_widget_si_credit , $acx_widget_si_twitter, $acx_widget_si_facebook, $acx_widget_si_youtube,$acx_widget_si_gplus,
247
  $acx_widget_si_linkedin, $acx_widget_si_pinterest, $acx_widget_si_feed, $acx_widget_si_icon_size;
248
  // *****************************************************
249
 
250
+ if(is_array($acx_widget_array) && array_key_exists('theme',$acx_widget_array))
251
+ {
252
+ $theme = $acx_widget_array['theme'];
253
+ }
254
+ else
255
+ {
256
+ $theme = '';
257
+ }
258
+
259
  if ($theme == "") { $acx_widget_si_touse_theme = $acx_widget_si_theme; } else { $acx_widget_si_touse_theme = $theme; }
260
  //******** MAKING EACH BUTTON LINKS ********************
261
  if ($acx_widget_si_twitter == "") { $twitter_link = ""; } else
262
  {
263
+ $twitter_link = "<a href='http://www.twitter.com/". $acx_widget_si_twitter ."' target='_blank' title='". __('Visit Us On Twitter','acurax-social-media-widget')."'>" . "<img src=" .
264
+ plugins_url('images/themes/'. $acx_widget_si_touse_theme .'/twitter.png', __FILE__) . " style='border:0px;' alt='". __('Visit Us On Twitter','acurax-social-media-widget'). "' /></a>";
265
  }
266
  if ($acx_widget_si_facebook == "") { $facebook_link = ""; } else
267
  {
268
+ $facebook_link = "<a href='". $acx_widget_si_facebook ."' target='_blank' title='". __('Visit Us On Facebook','acurax-social-media-widget'). "'>" . "<img src=" . plugins_url('images/themes/'
269
+ . $acx_widget_si_touse_theme .'/facebook.png', __FILE__) . " style='border:0px;' alt='" . __('Visit Us On Facebook','acurax-social-media-widget'). "' /></a>";
270
  }
271
  if ($acx_widget_si_gplus == "") { $gplus_link = ""; } else
272
  {
273
+ $gplus_link = "<a href='". $acx_widget_si_gplus ."' target='_blank' title='". __('Visit Us On GooglePlus','acurax-social-media-widget') . "'>" . "<img src=" . plugins_url('images/themes/'.
274
+ $acx_widget_si_touse_theme .'/googleplus.png', __FILE__) . " style='border:0px;' alt='". __('Visit Us On GooglePlus','acurax-social-media-widget') . "' /></a>";
275
  }
276
  if ($acx_widget_si_pinterest == "") { $pinterest_link = ""; } else
277
  {
278
+ $pinterest_link = "<a href='". $acx_widget_si_pinterest ."' target='_blank' title='". __('Visit Us On Pinterest','acurax-social-media-widget'). "'>" . "<img src=" . plugins_url(
279
+ 'images/themes/'. $acx_widget_si_touse_theme .'/pinterest.png', __FILE__) . " style='border:0px;' alt='". __('Visit Us On Pinterest','acurax-social-media-widget'). "' /></a>";
280
  }
281
  if ($acx_widget_si_youtube == "") { $youtube_link = ""; } else
282
  {
283
+ $youtube_link = "<a href='". $acx_widget_si_youtube ."' target='_blank' title='". __('Visit Us On Youtube','acurax-social-media-widget'). "'>" . "<img src=" . plugins_url('images/themes/'.
284
+ $acx_widget_si_touse_theme .'/youtube.png', __FILE__) . " style='border:0px;' alt='". __('Visit Us On Youtube','acurax-social-media-widget'). "' /></a>";
285
  }
286
  if ($acx_widget_si_linkedin == "") { $linkedin_link = ""; } else
287
  {
288
+ $linkedin_link = "<a href='". $acx_widget_si_linkedin ."' target='_blank' title='". __('Visit Us On Linkedin','acurax-social-media-widget'). "'>" . "<img src=" . plugins_url('images/themes/'
289
+ . $acx_widget_si_touse_theme .'/linkedin.png', __FILE__) . " style='border:0px;' alt='". __('Visit Us On Linkedin','acurax-social-media-widget'). "' /></a>";
290
  }
291
  if ($acx_widget_si_feed == "") { $feed_link = ""; } else
292
  {
293
+ $feed_link = "<a href='". $acx_widget_si_feed ."' target='_blank' title='". __('Check Our Feed','acurax-social-media-widget'). "'>" . "<img src=" . plugins_url('images/themes/'
294
+ . $acx_widget_si_touse_theme .'/feed.png', __FILE__) . " style='border:0px;' alt='". __('Check Our Feed','acurax-social-media-widget'). "' /></a>";
295
  }
296
  $social_widget_icon_array_order = get_option('social_widget_icon_array_order');
297
  if(is_serialized($social_widget_icon_array_order))
298
  {
299
  $social_widget_icon_array_order = unserialize($social_widget_icon_array_order);
300
  }
301
+ $acx_w_html = '' ;
302
  foreach ($social_widget_icon_array_order as $key => $value)
303
  {
304
+ if ($value == 0) { $acx_w_html .= $twitter_link; }
305
+ else if ($value == 1) { $acx_w_html .= $facebook_link; }
306
+ else if ($value == 2) { $acx_w_html .= $gplus_link; }
307
+ else if ($value == 3) { $acx_w_html .= $pinterest_link; }
308
+ else if ($value == 4) { $acx_w_html .= $youtube_link; }
309
+ else if ($value == 5) { $acx_w_html .= $linkedin_link; }
310
 
311
+ else if ($value == 6) { $acx_w_html .= $feed_link; }
312
  }
313
+ return $acx_w_html;
314
  } //acurax_si_widget_simple()
315
+
316
+
317
+
318
  // Check Credit Link
319
  function check_widget_acx_credit($yes,$no)
320
  { $acx_widget_si_credit = get_option('acx_widget_si_credit');
336
  }
337
 
338
  // wp_head() not found:
339
+ echo "<div class=\"highlight\" style=\"width: 99%; margin-top: 10px; margin-bottom: 10px; border: 1px solid darkred;\">" . __('Your theme needs to be fixed for plugins to work. To fix your theme, use the ','acurax-social-media-widget'). "<a href=\"theme-editor.php\">". __('Theme Editor','acurax-social-media-widget') ."</a>". __(' to insert','acurax-social-media-widget'). " <code>".htmlspecialchars("<?php wp_head(); ?>")."</code>". __('just before the','acurax-social-media-widget'). " <code>".htmlspecialchars("</head>")."</code> " . __("line of your theme's " ,"acurax-social-media-widget"). "<code>header.php</code> file." . "</div>";
340
+
341
+
342
  }
343
  } // theme check
344
  if($acx_si_smw_theme_warning_ignore != "yes")
356
  //*********************** STARTED DISPLAYING THE ICONS ***********************
357
  echo "\n\n\n<!-- Starting Icon Display Code For Social Media Icon From Acurax International www.acurax.com -->\n";
358
  echo "<div id='acx_social_widget' style='text-align:center;'>";
359
+ $acx_pass_array = array(
360
+ 'theme' => $acx_widget_si_theme,
361
+ 'size' => $acx_widget_si_icon_size
362
+ );
363
+ echo acurax_si_widget_simple($acx_pass_array);
364
  echo "</div>\n";
365
  echo "<!-- Ending Icon Display Code For Social Media Icon From Acurax International www.acurax.com -->\n\n\n";
366
  //*****************************************************************************
386
  echo "</style>\n<!-- Ending Styles For Social Media Icon From Acurax International www.acurax.com -->\n\n\n\n";
387
  } add_action('admin_head', 'extra_style_acx_widget_icon'); // ADMIN
388
  add_action('wp_head', 'extra_style_acx_widget_icon'); // PUBLIC
389
+ /* function acx_widget_si_admin_style() // Adding Style For Admin
390
  {
391
  echo '<link rel="stylesheet" type="text/css" href="' .plugins_url('style_for_admin.css', __FILE__). '">';
392
+ } add_action('admin_head', 'acx_widget_si_admin_style'); // ADMIN */
393
  $acx_widget_si_sc_id = 0; // Defined to assign shortcode unique id
394
  function DISPLAY_WIDGET_acurax_widget_icons_SC($atts)
395
  {
412
  echo "width:" . $size . "px !important; \n}\n";
413
  echo "</style>";
414
  echo "<div id='short_code_si_icon' style='text-align:center;' class='acx_smw_float_fix scid-" . $acx_widget_si_sc_id . "'>";
415
+ $acx_pass_array = array(
416
+ 'theme' => $theme,
417
+ 'size' => $size
418
+ );
419
+ echo acurax_si_widget_simple($acx_pass_array);
420
  echo "</div>";
421
  $content = ob_get_contents();
422
  ob_end_clean();
440
  $social_widget_icon_array_count = count($social_widget_icon_array_order);
441
  if ($social_widget_icon_array_count < $total_arrays)
442
  {
443
+ do_action('acx_asmw_orderarray_refresh');
444
  }
445
+ /* function enqueue_acx_widget_si_style()
446
  {
447
  wp_enqueue_style ( 'acx-widget-si-style', plugins_url('style.css', __FILE__) );
448
+ } add_action( 'wp_print_styles', 'enqueue_acx_widget_si_style' ); */
449
+
 
 
 
 
450
  // wp-admin Notices >> Plugin not configured
451
  function acx_widget_si_pluign_not_configured()
452
  {
453
  echo '<div class="updated">
454
+ <p><b>'. __('Congratulations!, You Have Successfully Installed Acurax Social Media Widget, The Plugin Is Not Configured - ','acurax-social-media-widget'). '<a href="admin.php?page=Acurax-Social-Widget-Settings">'. __('Click Here to Configure','acurax-social-media-widget').'</a></b></p></div>';
455
  }
456
  if ($social_widget_icon_array_count == $total_arrays)
457
  {
479
  {
480
  $acx_widget_si_current_user = "Webmaster";
481
  }
482
+ echo '<div id="acx_td_asmw" class="notice">' . __('Hey','acurax-social-media-widget'). ' <b>'.$acx_widget_si_current_user.'</b>,'. __(' You were using Acurax Social Media Widget Wordpress Plugin for the last','acurax-social-media-widget').' <b>'.$acx_widget_si_days_till_today_from_install.'</b>,'. __(' and hope you are enjoying it.','acurax-social-media-widget').'<br>' . __(' From the bottom of our heart, we the team @ ','acurax-social-media-widget').'<a href="http://wordpress.acurax.com/?utm_source=asmw&utm_campaign=days" style="font-weight: normal; margin-left: 0px; color: rgb(68, 68, 68);" target="_blank">'. __(' Acurax Technologies','acurax-social-media-widget').'</a>'. __(' thank you for being with us, and we appreciate your feedback,reviews and support.','acurax-social-media-widget').'<br><a href="https://wordpress.org/support/view/plugin-reviews/acurax-social-media-widget?filter=5" target="_blank">'. __('Rate 5★\'s on wordpress','acurax-social-media-widget').'</a><a href="admin.php?page=Acurax-Social-Widget-Premium">'. __('Premium Version Benefits','acurax-social-media-widget').'</a><a href="admin.php?page=Acurax-Social-Widget-Premium&td=hide">'. __('Hide for Now','acurax-social-media-widget'). '</a></div>';
483
  }
484
  $acx_widget_si_installed_date = get_option('acx_widget_si_installed_date');
485
  if ($acx_widget_si_installed_date=="") { $acx_widget_si_installed_date = time();}
518
  class acx_social_widget_icons_Widget extends WP_Widget
519
  {
520
  // Register the widget
521
+ function __construct()
522
  {
523
  // Set some widget options
524
+ $widget_options = array( 'description' => __('Allow users to show Social Media Icons from Acurax Social Media Widget
525
+ Plugin','acurax-social-media-widget'), 'classname' => 'acx-smw-social-icon-desc' );
526
  // Set some control options (width, height etc)
527
  $control_options = array( 'width' => 300 );
528
  // Actually create the widget (widget id, widget name, options...)
550
  echo "</style>";
551
  echo "<div id='acurax_si_widget_simple' class='acx_smw_float_fix " . $this->get_field_id('widget') . "'";
552
  if($icon_align != "") { echo " style='text-align:" . $icon_align . ";'>"; } else { echo " style='text-align:center;'>"; }
553
+ $acx_pass_array = array(
554
+ 'theme' => $icon_theme,
555
+ 'size' => $icon_size,
556
+ 'align' => $icon_align
557
+ );
558
+ echo acurax_si_widget_simple($acx_pass_array);
559
  echo "</div>";
560
  // This is defined when you register a sidebar
561
  echo $after_widget;
566
  $total_themes = ACX_SOCIALMEDIA_WIDGET_TOTAL_THEMES;
567
  $total_themes = $total_themes + 1;
568
  // These are our default values
569
+ $defaults = array( 'title' => __('Social Media Icons','acurax-social-media-widget'),'icon_size' => '32' );
570
  // This overwrites any default values with saved values
571
  $instance = wp_parse_args( (array) $instance, $defaults );
572
  ?>
573
  <p>
574
+ <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:','acurax-social-media-widget'); ?></label>
575
  <input id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>"
576
  value="<?php echo $instance['title']; ?>" type="text" class="widefat" />
577
  </p>
578
  <p>
579
+ <label for="<?php echo $this->get_field_id('icon_size'); ?>"><?php _e('Icon Size:','acurax-social-media-widget'); ?></label>
580
  <select class="widefat" name="<?php echo $this->get_field_name('icon_size'); ?>" id="<?php echo $this
581
  ->get_field_id('icon_size'); ?>">
582
+ <option value="16"<?php if ($instance['icon_size'] == "16") { echo 'selected="selected"'; } ?>>16<?php _e('px','floating-social-media-icon'); ?> X 16<?php _e('px','floating-social-media-icon'); ?> </
583
  option>
584
+ <option value="25"<?php if ($instance['icon_size'] == "25") { echo 'selected="selected"'; } ?>>25<?php _e('px','floating-social-media-icon'); ?> X 25<?php _e('px','floating-social-media-icon'); ?> </
585
  option>
586
+ <option value="32"<?php if ($instance['icon_size'] == "32") { echo 'selected="selected"'; } ?>>32<?php _e('px','floating-social-media-icon'); ?> X 32<?php _e('px','floating-social-media-icon'); ?> </
587
  option>
588
+ <option value="40"<?php if ($instance['icon_size'] == "40") { echo 'selected="selected"'; } ?>>40<?php _e('px','floating-social-media-icon'); ?> X 40<?php _e('px','floating-social-media-icon'); ?> </
589
  option>
590
+ <option value="48"<?php if ($instance['icon_size'] == "48") { echo 'selected="selected"'; } ?>>48<?php _e('px','floating-social-media-icon'); ?> X 48<?php _e('px','floating-social-media-icon'); ?> </
591
  option>
592
+ <option value="55"<?php if ($instance['icon_size'] == "55") { echo 'selected="selected"'; } ?>>55<?php _e('px','floating-social-media-icon'); ?> X 55<?php _e('px','floating-social-media-icon'); ?> </
593
  option>
594
  </select>
595
  </p>
596
  <p>
597
+ <label for="<?php echo $this->get_field_id('icon_theme'); ?>"><?php _e('Icon Theme:','acurax-social-media-widget'); ?></label>
598
  <select class="widefat" name="<?php echo $this->get_field_name('icon_theme'); ?>" id="<?php echo $this
599
  ->get_field_id('icon_theme'); ?>">
600
  <option value=""<?php if(!ISSET($instance['icon_theme'])) { echo
601
+ 'selected="selected"'; } ?>><?php _e('Default Theme Design','floating-social-media-icon'); ?></option>
602
  <?php
603
  for ($i=1; $i < $total_themes; $i++)
604
  {
605
  ?>
606
  <option value="<?php echo $i; ?>"<?php if(ISSET($instance['icon_theme'])){if ($instance['icon_theme'] == $i) { echo
607
+ 'selected="selected"'; }} ?>><?php _e('Theme Design','floating-social-media-icon'); ?> <?php echo $i; ?> </option>
608
  <?php
609
  } ?>
610
  </select>
611
  </p>
612
  <p>
613
+ <label for="<?php echo $this->get_field_id('icon_align'); ?>"><?php _e('Icon Align:','acurax-social-media-widget'); ?></label>
614
  <select class="widefat" name="<?php echo $this->get_field_name('icon_align'); ?>" id="<?php echo $this
615
  ->get_field_id('icon_align'); ?>">
616
+ <option value=""<?php if(!ISSET($instance['icon_align'])) { echo 'selected="selected"'; } ?>><?php _e('Default','acurax-social-media-widget'); ?> </
617
  option>
618
+ <option value="left"<?php if(ISSET($instance['icon_align'])){ if($instance['icon_align'] == "left") { echo 'selected="selected"'; }} ?>><?php _e('Left','acurax-social-media-widget'); ?></
619
  option>
620
+ <option value="center"<?php if(ISSET($instance['icon_align'])){ if($instance['icon_align'] == "center") { echo 'selected="selected"'; } }?>><?php _e('Center','acurax-social-media-widget'); ?></
621
  option>
622
+ <option value="right"<?php if(ISSET($instance['icon_align'])){ if($instance['icon_align'] == "right") { echo 'selected="selected"'; } }?>><?php _e('Right','acurax-social-media-widget'); ?> </
623
  option>
624
  </select>
625
  </p>
626
+ <p><?php _e('You can configure your social media profiles ','acurax-social-media-widget'); ?><a href="admin.php?page=Acurax-Social-Widget-Settings" target="_blank"><?php _e('here','acurax-social-media-widget'); ?></a></p>
627
  <?php
628
  }
629
  // Processes the admin options form when saved
644
  {
645
  echo "";
646
  }
647
+
648
  function socialicons_widget_comparison($ad=2)
649
  {
650
  $ad_1 = '
651
  </hr>
652
+ <div id="ss_middle_wrapper" style="margin-top:15px;">
653
  <div id="ss_middle_center">
654
  <div id="ss_middle_inline_block">
655
+ <a name="compare"></a>
656
  <div class="middle_h2_1">
657
+ <h2>'. __("Limited on Features ?","acurax-social-media-widget").'</h2>
658
+ <h3>'. __("Compare and Decide","acurax-social-media-widget").'</h3>
659
  </div><!-- middle_h2_1 -->
660
 
661
  <div id="ss_features_table">
662
 
663
  <div id="ss_table_header">
664
+ <div class="tb_h1"> <h3>'. __("Feature Group","acurax-social-media-widget").'</h3> </div><!-- tb_h1 -->
665
+ <div class="tb_h2"> <h3>'. __("Features","acurax-social-media-widget").'</h3> </div><!-- tb_h2 -->
666
  <div class="tb_h3"> <div class="ss_download"> </div><!-- ss_download --> </div><!-- tb_h3 -->
667
+ <div class="tb_h4 smw_tb_h4"> <a href="http://clients.acurax.com/order.php?pid=fsmi_power&utm_source=plugin_asmw_settings_table&utm_medium=link&utm_campaign=compare_buynow" target="_blank"><div class="ss_buy_now"> </div><!-- ss_buy_now --></a> </div><!-- tb_h4 -->
668
  </div><!-- ss_table_header -->
669
 
670
  <div class="ss_column_holder">
671
 
672
+ <div class="tb_h1 mini"> <h3>'. __("Feature Group","acurax-social-media-widget").'</h3> </div><!-- tb_h1 -->
673
+ <div class="ss_feature_group" style="padding-top: 197px;">'. __(" Display ","acurax-social-media-widget").'</div><!-- -->
674
+ <div class="tb_h1 mini"> <h3>'. __("Features","acurax-social-media-widget").'</h3> </div><!-- tb_h1 -->
675
  <div class="ss_features">
676
  <ul>
677
+ <li>'. __("More Sharp Quality Icons","acurax-social-media-widget").'</li>
678
+ <li>'. __("20+ Icon Theme/Style","acurax-social-media-widget").'</li>
679
+ <li>'. __("Can Choose Icon Theme/Style","acurax-social-media-widget").'</li>
680
+ <li>'. __("Can Choose Icon Size","acurax-social-media-widget").'</li>
681
+ <li>'. __("Automatic/Manual Integration","acurax-social-media-widget").'</li>
682
+ <li>'. __("Set MouseOver text for each icon in Share Mode","acurax-social-media-widget").'</li>
683
+ <li>'. __("Set MouseOver text for each icon in Profile Link Mode","acurax-social-media-widget").'</li>
684
+ <li>'. __("Option to HIDE Invididual Share Icon","acurax-social-media-widget").'</li>
685
+ <li><strong>'. __("Set Floating Icons in Vertical","acurax-social-media-widget").'</strong></li>
686
+ <li><strong>'. __("Define how many icons in 1 row","acurax-social-media-widget").'</strong></li>
687
+ <li class="ss_last_one"><strong>'. __("Add Custom Icons","acurax-social-media-widget").'</strong></li>
688
  </ul>
689
  </div><!-- ss_features -->
690
 
691
+ <div class="tb_h1 mini"> <h3>'. __("FREE","acurax-social-media-widget").' &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">'. __("PREMIUM","acurax-social-media-widget").'</span></h3> </div><!-- tb_h1 -->
692
  <div class="ss_y_n_holder">
693
  <div class="ss_no"> </div><!-- ss_no -->
694
  <div class="ss_yes"> </div><!-- ss_yes -->
721
 
722
  <div class="ss_column_holder">
723
 
724
+ <div class="tb_h1 mini"> <h3>'. __("Feature Group","acurax-social-media-widget").'</h3> </div><!-- tb_h1 -->
725
+ <div class="ss_feature_group" style="padding-top: 30px;">'. __(" Icon Function ","acurax-social-media-widget").'</div><!-- -->
726
+ <div class="tb_h1 mini"> <h3>'. __("Features","acurax-social-media-widget").'</h3> </div><!-- tb_h1 -->
727
  <div class="ss_features">
728
  <ul>
729
+ <li>'. __("Link to Social Media Profile","acurax-social-media-widget").'</li>
730
+ <li class="ss_last_one"><strong>'. __("Share On Social Media","acurax-social-media-widget").'</strong></li>
731
  </ul>
732
  </div><!-- ss_features -->
733
 
734
+ <div class="tb_h1 mini"> <h3>'. __("FREE ","acurax-social-media-widget").'&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">'. __("PREMIUM","acurax-social-media-widget").'</span></h3> </div><!-- tb_h1 -->
735
  <div class="ss_y_n_holder">
736
  <div class="ss_yes"> </div><!-- ss_yes -->
737
  <div class="ss_no ss_last_one"> </div><!-- ss_no -->
746
 
747
  <div class="ss_column_holder">
748
 
749
+ <div class="tb_h1 mini"> <h3>'. __("Feature Group","acurax-social-media-widget").'</h3> </div><!-- tb_h1 -->
750
+ <div class="ss_feature_group" style="padding-top: 30px;">'. __(" Animation ","acurax-social-media-widget").'</div><!-- -->
751
+ <div class="tb_h1 mini"> <h3>'. __("Features","acurax-social-media-widget").'</h3> </div><!-- tb_h1 -->
752
  <div class="ss_features">
753
  <ul>
754
  <li>Fly Animation</li>
755
+ <li class="ss_last_one"><strong>'. __("Mouse Over Effects","acurax-social-media-widget").'</strong></li>
756
  </ul>
757
  </div><!-- ss_features -->
758
 
759
+ <div class="tb_h1 mini"> <h3>'. __("FREE","acurax-social-media-widget").' &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">'. __("PREMIUM","acurax-social-media-widget").'</span></h3> </div><!-- tb_h1 -->
760
  <div class="ss_y_n_holder">
761
  <div class="ss_yes"> </div><!-- ss_yes -->
762
  <div class="ss_no ss_last_one"> </div><!-- ss_no -->
771
 
772
  <div class="ss_column_holder">
773
 
774
+ <div class="tb_h1 mini"> <h3>'. __("Feature Group","acurax-social-media-widget").'</h3> </div><!-- tb_h1 -->
775
+ <div class="ss_feature_group" style="padding-top: 84px;">'. __(" Fly Animation Repeat Interval","acurax-social-media-widget").'</div><!-- -->
776
+ <div class="tb_h1 mini"> <h3>'. __("Features","acurax-social-media-widget").'</h3> </div><!-- tb_h1 -->
777
  <div class="ss_features">
778
  <ul>
779
+ <li>'. __("Based On Time in Seconds","acurax-social-media-widget").'</li>
780
+ <li><strong>'. __("Based On Time in Minutes","acurax-social-media-widget").'</strong></li>
781
+ <li>'. __("Based On Time in Hours","acurax-social-media-widget").'</li>
782
+ <li>'. __("Based on Page Views","acurax-social-media-widget").'</li>
783
+ <li class="ss_last_one">'. __("Based On Page Views and Time","acurax-social-media-widget").'</li>
784
  </ul>
785
  </div><!-- ss_features -->
786
 
787
+ <div class="tb_h1 mini"> <h3>'. __("FREE","acurax-social-media-widget").' &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">'. __("PREMIUM","acurax-social-media-widget").'</span></h3> </div><!-- tb_h1 -->
788
  <div class="ss_y_n_holder">
789
  <div class="ss_no"> </div><!-- ss_no -->
790
  <div class="ss_no"> </div><!-- ss_no -->
805
 
806
  <div class="ss_column_holder">
807
 
808
+ <div class="tb_h1 mini"> <h3>'. __("Feature Group","acurax-social-media-widget").'</h3> </div><!-- tb_h1 -->
809
+ <div class="ss_feature_group" style="padding-top: 30px;"> '. __("Multiple Fly Animation","acurax-social-media-widget").'<br/></div><!-- -->
810
+ <div class="tb_h1 mini"> <h3>'. __("Features","acurax-social-media-widget").'</h3> </div><!-- tb_h1 -->
811
  <div class="ss_features">
812
  <ul>
813
+ <li>'. __("Can Choose Fly Start Position","acurax-social-media-widget").'</li>
814
+ <li class="ss_last_one">'. __("Can Choose Fly End Position","acurax-social-media-widget").'</li>
815
  </ul>
816
  </div><!-- ss_features -->
817
 
818
+ <div class="tb_h1 mini"> <h3>'. __("FREE ","acurax-social-media-widget").'&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">'. __("PREMIUM","acurax-social-media-widget").'</span></h3> </div><!-- tb_h1 -->
819
  <div class="ss_y_n_holder">
820
  <div class="ss_no"> </div><!-- ss_no -->
821
  <div class="ss_no ss_last_one"> </div><!-- ss_no -->
830
 
831
  <div class="ss_column_holder">
832
 
833
+ <div class="tb_h1 mini"> <h3>'. __("Feature Group","acurax-social-media-widget").'</h3> </div><!-- tb_h1 -->
834
+ <div class="ss_feature_group" style="padding-top: 52px;">'. __("Easy to Configure","acurax-social-media-widget").'</div><!-- -->
835
+ <div class="tb_h1 mini"> <h3>'. __("Features","acurax-social-media-widget").'</h3> </div><!-- tb_h1 -->
836
  <div class="ss_features">
837
  <ul>
838
+ <li>'. __("Ajax Based Settings Page","acurax-social-media-widget").'</li>
839
+ <li>'. __("Drag & Drop Reorder Icons","acurax-social-media-widget").'</li>
840
+ <li class="ss_last_one">'. __("Easy to Configure","acurax-social-media-widget").'</li>
841
  </ul>
842
  </div><!-- ss_features -->
843
 
844
+ <div class="tb_h1 mini"> <h3>'. __("FREE ","acurax-social-media-widget").'&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">'.__("PREMIUM","acurax-social-media-widget").'</span></h3> </div><!-- tb_h1 -->
845
  <div class="ss_y_n_holder">
846
  <div class="ss_no"> </div><!-- ss_no -->
847
  <div class="ss_yes"> </div><!-- ss_yes -->
858
 
859
  <div class="ss_column_holder">
860
 
861
+ <div class="tb_h1 mini"> <h3>'. __("Feature Group","acurax-social-media-widget").'</h3> </div><!-- tb_h1 -->
862
+ <div class="ss_feature_group" style="padding-top: 106px;">'. __("Widget Support ","acurax-social-media-widget").'</div><!-- -->
863
+ <div class="tb_h1 mini"> <h3>'. __("Features","acurax-social-media-widget").'</h3> </div><!-- tb_h1 -->
864
  <div class="ss_features">
865
  <ul>
866
+ <li>'. __("Multiple Widgets","acurax-social-media-widget").'</li>
867
+ <li>'. __("Separate Icon Style/Theme For Each","acurax-social-media-widget").'</li>
868
+ <li>'. __("Separate Icon Size For Each","acurax-social-media-widget").'</li>
869
+ <li>'. __("Set whether the icons to Link Profiles/SHARE","acurax-social-media-widget").'</li>
870
+ <li><strong>'. __("Separate Mouse Over Multiple Animation for Each","acurax-social-media-widget").'</strong></li>
871
+ <li class="ss_last_one">'. __("Separate Default Opacity for Each","acurax-social-media-widget").'</li>
872
  </ul>
873
  </div><!-- ss_features -->
874
 
875
+ <div class="tb_h1 mini"> <h3>'. __("FREE ","acurax-social-media-widget").'&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">'. __("PREMIUM","acurax-social-media-widget").'</span></h3> </div><!-- tb_h1 -->
876
  <div class="ss_y_n_holder">
877
  <div class="ss_yes"> </div><!-- ss_yes -->
878
  <div class="ss_yes"> </div><!-- ss_yes -->
895
 
896
  <div class="ss_column_holder">
897
 
898
+ <div class="tb_h1 mini"> <h3>'. __("Feature Group","acurax-social-media-widget").'</h3> </div><!-- tb_h1 -->
899
+ <div class="ss_feature_group" style="padding-top: 106px;">'. __("Shortcode Support","acurax-social-media-widget").' </div><!-- -->
900
+ <div class="tb_h1 mini"> <h3>'. __("Features","acurax-social-media-widget").'</h3> </div><!-- tb_h1 -->
901
  <div class="ss_features">
902
  <ul>
903
+ <li>'. __("Multiple Instances","acurax-social-media-widget").'</li>
904
+ <li>'. __("Separate Icon Style/Theme For Each","acurax-social-media-widget").'</li>
905
+ <li><strong>'. __("Separate Icon Size For Each","acurax-social-media-widget").'</strong></li>
906
+ <li>'. __("Set whether the icons to Link Profiles/SHARE","acurax-social-media-widget").'</li>
907
+ <li>'. __("Separate Mouse Over Multiple Animation for Each","acurax-social-media-widget").'</li>
908
+ <li class="ss_last_one">'. __("Separate Default Opacity for Each","acurax-social-media-widget").'</li>
909
  </ul>
910
  </div><!-- ss_features -->
911
 
912
+ <div class="tb_h1 mini"> <h3>'. __("FREE ","acurax-social-media-widget").'&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">'. __("PREMIUM","acurax-social-media-widget").'</span></h3> </div><!-- tb_h1 -->
913
  <div class="ss_y_n_holder">
914
  <div class="ss_yes"> </div><!-- ss_yes -->
915
  <div class="ss_yes"> </div><!-- ss_yes -->
932
 
933
  <div class="ss_column_holder">
934
 
935
+ <div class="tb_h1 mini"> <h3>'. __("Feature Group","acurax-social-media-widget").'</h3> </div><!-- tb_h1 -->
936
+ <div class="ss_feature_group" style="padding-top: 126px;">'. __("PHP Code Support ","acurax-social-media-widget").'</div><!-- -->
937
+ <div class="tb_h1 mini"> <h3>'. __("Features","acurax-social-media-widget").'</h3> </div><!-- tb_h1 -->
938
  <div class="ss_features">
939
  <ul>
940
+ <li>'. __("Multiple Instances","acurax-social-media-widget").'</li>
941
+ <li>'. __("Use Outside Loop","acurax-social-media-widget").'</li>
942
+ <li>'. __("Separate Icon Style/Theme For Each","acurax-social-media-widget").'</li>
943
+ <li>'. __("Separate Icon Size For Each","acurax-social-media-widget").'</li>
944
+ <li><strong>'. __("Set whether the icons to Link Profiles/SHARE","acurax-social-media-widget").'</strong></li>
945
+ <li>'. __("Separate Mouse Over Multiple Animation for Each","acurax-social-media-widget").'</li>
946
+ <li class="ss_last_one">'. __("Separate Default Opacity for Each","acurax-social-media-widget").'</li>
947
  </ul>
948
  </div><!-- ss_features -->
949
 
950
+ <div class="tb_h1 mini"> <h3>'. __("FREE ","acurax-social-media-widget").'&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">'. __("PREMIUM","acurax-social-media-widget").'</span></h3> </div><!-- tb_h1 -->
951
  <div class="ss_y_n_holder">
952
  <div class="ss_yes"> </div><!-- ss_yes -->
953
  <div class="ss_yes"> </div><!-- ss_yes -->
974
 
975
  </div><!-- ss_features_table -->
976
 
977
+ <div id="ad_smw_2_button_order" style="float: left; width: 100%;">
978
+ <a href="http://clients.acurax.com/order.php?pid=fsmi_power&utm_source=plugin_asmw_settings&utm_medium=banner&utm_campaign=plugin_yellow_order" target="_blank"><div id="ad_smw_2_button_order_link"></div></a></div> <!-- ad_smw_2_button_order --></div></div></div>';
979
+ $ad_2='<div id="ad_smw_2"> <a href="http://clients.acurax.com/order.php?pid=fsmi_power&utm_source=plugin_smw_settings&utm_medium=banner&utm_campaign=plugin_enjoy" target="_blank"><div id="ad_smw_2_button"></div></a> </div> <!-- ad_smw_2 --><br>
980
+ <div id="ad_smw_2_button_order">
981
+ <a href="http://clients.acurax.com/order.php?pid=fsmi_power&utm_source=plugin_smw_settings&utm_medium=banner&utm_campaign=plugin_yellow_order" target="_blank"><div id="ad_smw_2_button_order_link"></div></a></div> <!-- ad_smw_2_button_order --> ';
982
  if($ad=="" || $ad == 2) { echo $ad_2; } else if ($ad == 1) { echo $ad_1; } else { echo $ad_2; }
983
  }
984
+ add_action('acx_smw_comparison_premium','socialicons_widget_comparison',1);
985
  function acx_asmw_saveorder_callback()
986
  {
987
  global $wpdb;
995
  }
996
  die(); // this is required to return a proper result
997
  } add_action('wp_ajax_acx_asmw_saveorder', 'acx_asmw_saveorder_callback');
998
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
999
 
1000
  $social_widget_icon_array_order = get_option('social_widget_icon_array_order');
1001
  if(is_serialized($social_widget_icon_array_order))
1002
  {
1003
  $social_widget_icon_array_order = unserialize($social_widget_icon_array_order);
1004
  }
1005
+ function acx_asmw_orderarray_refresh_array()
1006
  {
1007
  global $social_widget_icon_array_order;
1008
  /* Starting The Logic Count and Re Configuring Order Array */
1064
  } // else closing of if array null
1065
  /* Ending The Logic Count and Re Configuring Order Array */
1066
  }
1067
+ add_action('acx_asmw_orderarray_refresh','acx_asmw_orderarray_refresh_array');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1068
 
1069
+ ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
images/acurax_international.png DELETED
Binary file
images/table_head_4.png CHANGED
Binary file
includes/acx_smw_misc.php ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ acx_smw_hook_function('acx_smw_misc_hook_option_above_ifpost');
3
+ if(ISSET($_POST['acx_smw_misc_hidden']))
4
+ {
5
+ $acx_smw_misc_hidden = $_POST['acx_smw_misc_hidden'];
6
+ }
7
+ else
8
+ {
9
+ $acx_smw_misc_hidden = "";
10
+ }
11
+ if($acx_smw_misc_hidden == 'Y')
12
+ {
13
+ acx_smw_hook_function('acx_smw_misc_hook_option_onpost');
14
+ } else
15
+ {
16
+ acx_smw_hook_function('acx_smw_misc_hook_option_postelse');
17
+ }
18
+ acx_smw_hook_function('acx_smw_misc_hook_option_after_else');
19
+ acx_smw_hook_function('acx_smw_misc_hook_option_form_head');
20
+ acx_smw_hook_function('acx_smw_misc_hook_option_fields');
21
+ acx_smw_hook_function('acx_smw_misc_hook_option_form_footer');
22
+ acx_smw_hook_function('acx_smw_misc_hook_option_sidebar');
23
+ ?>
includes/acx_smw_options.php ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ acx_smw_hook_function('acx_smw_hook_option_above_ifpost');
3
+ if(ISSET($_POST['acx_smw_hidden']))
4
+ {
5
+ $acx_smw_hidden = $_POST['acx_smw_hidden'];
6
+ }
7
+ else
8
+ {
9
+ $acx_smw_hidden = "";
10
+ }
11
+ if($acx_smw_hidden == 'Y')
12
+ {
13
+ acx_smw_hook_function('acx_smw_hook_option_onpost');
14
+ } else
15
+ {
16
+ acx_smw_hook_function('acx_smw_hook_option_postelse');
17
+ }
18
+ acx_smw_hook_function('acx_smw_hook_option_after_else');
19
+ acx_smw_hook_function('acx_smw_hook_option_form_head');
20
+ acx_smw_hook_function('acx_smw_hook_option_fields');
21
+ acx_smw_hook_function('acx_smw_hook_option_form_footer');
22
+ acx_smw_hook_function('acx_smw_hook_option_sidebar');
23
+ ?>
includes/acx_smw_premium.php ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <?php
2
+ acx_smw_hook_function('acx_smw_premium_hook_option_footer');
3
+ ?>
includes/acx_smw_social_help.php ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ <?php
2
+ acx_smw_hook_function('acx_smw_help_hook_option_form_head');
3
+ acx_smw_hook_function('acx_smw_help_hook_option_fields');
4
+ acx_smw_hook_function('acx_smw_help_hook_option_sidebar');
5
+ ?>
includes/acx_smw_troubleshoot.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ acx_smw_hook_function('acx_smw_exprt_hook_option_exprt_quick');
3
+ acx_smw_hook_function('acx_smw_exprt_hook_option_form_head');
4
+ if($_GET['page'] == "Acurax-Social-Widget-Expert-Support")
5
+ {
6
+ acx_smw_quick_form();
7
+ }
8
+ acx_smw_hook_function('acx_smw_exprt_hook_option_fields');
9
+ acx_smw_hook_function('acx_smw_exprt_hook_option_sidebar');
10
+ ?>
includes/hook_functions.php ADDED
@@ -0,0 +1,267 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /************************************************ OPTION PAGE ***************************************************/
3
+ function acx_smw_nonce_check()
4
+ {
5
+ if (!isset($_POST['acx_smw_nonce'])) die("<br><br>Unknown Error Occurred, Try Again... <a href=''>Click Here</a>");
6
+ if (!wp_verify_nonce($_POST['acx_smw_nonce'],'acx_smw_nonce')) die("<br><br>Unknown Error Occurred, Try Again... <a href=''>Click Here</a>");
7
+ if(!current_user_can('manage_options')) die("<br><br>Sorry, You have no permission to do this action...</a>");
8
+ } add_action('acx_smw_hook_option_onpost','acx_smw_nonce_check',1);
9
+
10
+ function acx_smw_nonce_field()
11
+ {
12
+ echo "<input name='acx_smw_nonce' type='hidden' value='".wp_create_nonce('acx_smw_nonce')."' />";
13
+ echo "<input name='acx_smw_hidden' type='hidden' value='Y' />";
14
+ } add_action('acx_smw_hook_option_fields','acx_smw_nonce_field',10);
15
+
16
+ function acx_smw_option_form_start()
17
+ {
18
+ echo "<form name='acx_smw_form' id='acx_smw_form' method='post' action='".str_replace( '%7E', '~',$_SERVER['REQUEST_URI'])."'>";
19
+ } add_action('acx_smw_hook_option_form_head','acx_smw_option_form_start',100);
20
+
21
+
22
+ function acx_smw_option_form_end()
23
+ {
24
+ echo "</form>";
25
+ } add_action('acx_smw_hook_option_form_footer','acx_smw_option_form_end',100);
26
+
27
+
28
+ function acx_smw_option_div_start()
29
+ {
30
+ echo "<div id=\"acx_smw_option_page_holder\"> \n";
31
+ echo "<div class=\"acx_smw_option_page_left\"> \n";
32
+ } add_action('acx_smw_hook_option_form_head','acx_smw_option_div_start',30);
33
+
34
+
35
+ function acx_smw_option_sidebar_start()
36
+ {
37
+ echo "</div> <!-- acx_smw_option_page_left --> \n";
38
+ echo "<div class=\"acx_smw_option_page_right\"> \n";
39
+ } add_action('acx_smw_hook_option_sidebar','acx_smw_option_sidebar_start',10);
40
+
41
+
42
+ function acx_smw_option_sidebar_end()
43
+ {
44
+ echo "</div> <!-- acx_smw_option_page_right --> \n";
45
+ acx_smw_hook_function('acx_smw_hook_option_footer');
46
+ echo "</div> <!-- acx_smw_option_page_holder --> \n";
47
+ } add_action('acx_smw_hook_option_sidebar','acx_smw_option_sidebar_end',500);
48
+
49
+ function acx_smw_print_option_page_title()
50
+ {
51
+ echo print_acx_smw_option_heading("Acurax Social Icons Options");
52
+ } add_action('acx_smw_hook_option_form_head','acx_smw_print_option_page_title',50);
53
+
54
+ function display_acx_smw_saved_success()
55
+ { ?>
56
+ <div class="updated"><p><strong><?php _e('Settings Saved Successfully.'); ?></strong></p></div>
57
+ <script type="text/javascript">
58
+ setTimeout(function(){
59
+ jQuery('.updated').fadeOut('slow');
60
+
61
+ }, 4000);
62
+
63
+ </script>
64
+ <?php
65
+ } add_action('acx_smw_hook_option_onpost','display_acx_smw_saved_success',5000);
66
+
67
+ function acx_smw_lb_infobox()
68
+ { ?>
69
+ <script type="text/javascript">
70
+ jQuery( ".smw_info_lb" ).click(function() {
71
+ var lb_title = jQuery(this).attr('lb_title');
72
+ var lb_content = jQuery(this).attr('lb_content');
73
+ var html= '<div id="acx_smw_c_icon_p_info_lb_h" style="display:none;"><div class="acx_smw_c_icon_p_info_c"><span class="acx_smw_c_icon_p_info_close" onclick="smw_remove_info()"></span><h4>'+lb_title+'</h4><div class="acx_smw_c_icon_p_info_content">'+lb_content+'</div></div></div> <!-- acx_smw_c_icon_p_info_lb_h -->';
74
+ jQuery( "body" ).append(html)
75
+ jQuery( "#acx_smw_c_icon_p_info_lb_h" ).fadeIn();
76
+ });
77
+
78
+ function smw_remove_info()
79
+ {
80
+ jQuery( "#acx_smw_c_icon_p_info_lb_h" ).fadeOut()
81
+ jQuery( "#acx_smw_c_icon_p_info_lb_h" ).remove();
82
+ };
83
+ </script>
84
+ <?php
85
+ } add_action('acx_smw_misc_hook_option_footer','acx_smw_lb_infobox');
86
+
87
+ function acx_smw_service_banners()
88
+ {
89
+ ?>
90
+ <div id="acx_smw_sidebar">
91
+ <?php $acx_si_smw_acx_service_banners = get_option('acx_si_smw_acx_service_banners');
92
+ if ($acx_si_smw_acx_service_banners != "no") { ?>
93
+ <div id="acx_ad_banners_smw">
94
+ <a href="http://wordpress.acurax.com/?utm_source=smw&utm_campaign=sidebar_banner_1" target="_blank" class="acx_ad_smw_1">
95
+ <div class="acx_ad_smw_title"><?php _e('Need Help on Wordpress?','acurax-social-media-widget'); ?></div> <!-- acx_ad_smw_title -->
96
+ <div class="acx_ad_smw_desc"><?php _e('Instant Solutions for your wordpress Issues','acurax-social-media-widget'); ?></div> <!-- acx_ad_smw_desc -->
97
+ </a> <!-- acx_ad_smw_1 -->
98
+
99
+ <a href="http://wordpress.acurax.com/?utm_source=smw&utm_campaign=sidebar_banner_2" target="_blank" class="acx_ad_smw_1">
100
+ <div class="acx_ad_smw_title"><?php _e('Unique Design For Better Branding','acurax-social-media-widget'); ?></div> <!-- acx_ad_smw_title -->
101
+ <div class="acx_ad_smw_desc acx_ad_smw_desc2" style="padding-top: 0px; padding-left: 50px; height: 41px; font-size: 13px; text-align: center;"><?php _e('Get Responsive Custom Designed Website For High Conversion','acurax-social-media-widget'); ?></div> <!-- acx_ad_smw_desc -->
102
+ </a> <!-- acx_ad_smw_1 -->
103
+
104
+ <a href="http://wordpress.acurax.com/?utm_source=smw&utm_campaign=sidebar_banner_3" target="_blank" class="acx_ad_smw_1">
105
+ <div class="acx_ad_smw_title"><?php _e('Affordable Website Packages','acurax-social-media-widget'); ?></div> <!-- acx_ad_smw_title -->
106
+ <div class="acx_ad_smw_desc acx_ad_smw_desc3" style="padding-top: 0px; height: 32px; font-size: 13px; text-align: center;"><?php _e('Get Feature Rich Packages For a Custom Designed Website','acurax-social-media-widget'); ?></div> <!-- acx_ad_smw_desc -->
107
+ </a> <!-- acx_ad_smw_1 -->
108
+
109
+ </div> <!-- acx_ad_banners_smw -->
110
+ <?php } else { ?>
111
+
112
+
113
+ <div class="acx_smw_sidebar_widget">
114
+ <div class="acx_smw_sidebar_w_title"><?php _e('We Are Always Available','acurax-social-media-widget');?></div> <!-- acx_ad_smw_title -->
115
+ <div class="acx_smw_sidebar_w_content">
116
+ <?php _e('We know you are in the process of improving your website, and we the team at Acurax is always available for any help or support that you need. ','acurax-social-media-widget'); ?><a href="http://wordpress.acurax.com/?utm_source=smw&utm_campaign=sidebar_text_1" target="_blank"><?php _e('Get in touch','acurax-social-media-widget') ;?></a>
117
+ </div>
118
+ </div> <!-- acx_smw_sidebar_widget -->
119
+
120
+
121
+ <div class="acx_smw_sidebar_widget">
122
+ <div class="acx_smw_sidebar_w_title"><?php _e('Do You Know?','acurax-social-media-widget'); ?></div> <!-- acx_ad_smw_title -->
123
+ <div class="acx_smw_sidebar_w_content acx_smw_sidebar_w_content_p_slide">
124
+ </div>
125
+ </div> <!-- acx_smw_sidebar_widget -->
126
+ <script type="text/javascript">
127
+
128
+ var acx_smw = new Array("<?php _e('A professionally designed website is the most cost effective marketing tool available in the world today...','acurax-social-media-widget'); ?>","<?php _e('Personalizing your website can create a unique one to one experience and convert your visitors into customers.','acurax-social-media-widget'); ?>","<?php _e('70% of searches from mobile devices are followed up with an action within 1 hour.','acurax-social-media-widget'); ?>");
129
+
130
+ // jQuery(".acx_smw_sidebar_w_content_p_slide p").height('30px');
131
+ function acx_smw_t_rotate()
132
+ {
133
+ acx_smw_text = acx_smw[Math.floor(Math.random()*acx_smw.length)];
134
+ jQuery(".acx_smw_sidebar_w_content_p_slide").fadeOut('slow')
135
+ jQuery(".acx_smw_sidebar_w_content_p_slide").text(acx_smw_text);
136
+ jQuery(".acx_smw_sidebar_w_content_p_slide").fadeIn('fast');
137
+ }
138
+ jQuery(document).ready(function() {
139
+ acx_smw_t_rotate();
140
+ setInterval(function(){ acx_smw_t_rotate(); }, 8000);
141
+ });
142
+ </script>
143
+ <div class="acx_smw_sidebar_widget">
144
+ <div class="acx_smw_sidebar_w_title"><?php _e('Grab The Blending Creativity','acurax-social-media-widget');?></div>
145
+ <div class="acx_smw_sidebar_w_content"><?php _e('Make your website user friendly and optimized for mobile devices for better user interaction and satisfaction','acurax-social-media-widget');?> <a href="http://wordpress.acurax.com/?utm_source=smw&utm_campaign=sidebar_text_2" target="_blank"><?php _e('Click Here','acurax-social-media-widget'); ?></a></div>
146
+ </div> <!-- acx_smw_sidebar_widget -->
147
+ <?php } ?>
148
+ <div class="acx_smw_sidebar_widget">
149
+ <div class="acx_smw_sidebar_w_title"><?php _e('Rate us on wordpress.org','acurax-social-media-widget'); ?></div>
150
+ <div class="acx_smw_sidebar_w_content" style="text-align:center;font-size:13px;"><b><?php _e('Thank you for being with us... If you like our plugin then please show us some love','acurax-social-media-widget');?> </b></br>
151
+ <a href="https://wordpress.org/support/view/plugin-reviews/<?php echo ACX_SMW_WP_SLUG; ?>/" target="_blank" style="text-decoration:none;">
152
+ <span id="acx_smw_stars">
153
+ <span class="dashicons dashicons-star-filled"></span>
154
+ <span class="dashicons dashicons-star-filled"></span>
155
+ <span class="dashicons dashicons-star-filled"></span>
156
+ <span class="dashicons dashicons-star-filled"></span>
157
+ <span class="dashicons dashicons-star-filled"></span>
158
+ </span>
159
+ <span class="acx_smw_star_button button button-primary"><?php _e('Click Here','acurax-social-media-widget'); ?></span>
160
+ </a>
161
+ <p><?php _e('If you are facing any issues, kindly post them at plugins support forum','acurax-social-media-widget');?> <a href="http://wordpress.org/support/plugin/<?php echo ACX_SMW_WP_SLUG; ?>/" target="_blank"><?php _e('here','acurax-social-media-widget'); ?></a>
162
+ </div>
163
+ </div> <!-- acx_smw_sidebar_widget -->
164
+ </div> <!-- acx_smw_sidebar -->
165
+ <?php
166
+ }
167
+ add_action('acx_smw_hook_option_sidebar','acx_smw_service_banners');
168
+ add_action('acx_smw_misc_hook_option_sidebar','acx_smw_service_banners',100);
169
+ /************************************************ MISC PAGE ***************************************************/
170
+ function acx_smw_misc_nonce_check()
171
+ {
172
+ if (!isset($_POST['acx_smw_misc_nonce'])) die("<br><br>".__('Unknown Error Occurred, Try Again... ','acurax-social-media-widget')."<a href=''>Click Here</a>");
173
+ if (!wp_verify_nonce($_POST['acx_smw_misc_nonce'],'acx_smw_misc_nonce')) die("<br><br>".__('Unknown Error Occurred, Try Again... ','acurax-social-media-widget')."<a href=''>Click Here</a>");
174
+ if(!current_user_can('manage_options')) die("<br><br>".__('Sorry, You have no permission to do this action...','acurax-social-media-widget')."</a>");
175
+ } add_action('acx_smw_misc_hook_option_onpost','acx_smw_misc_nonce_check',1);
176
+
177
+
178
+ function acx_smw_misc_nonce_field()
179
+ {
180
+ echo "<input name='acx_smw_misc_nonce' type='hidden' value='".wp_create_nonce('acx_smw_misc_nonce')."' />";
181
+ echo "<input name='acx_smw_misc_hidden' type='hidden' value='Y' />";
182
+ } add_action('acx_smw_misc_hook_option_fields','acx_smw_misc_nonce_field',10);
183
+
184
+ function acx_smw_misc_option_form_start()
185
+ {
186
+ echo "<form name='acx_smw_misc_form' id='acx_smw_form' method='post' action='".str_replace( '%7E', '~',$_SERVER['REQUEST_URI'])."'>";
187
+ } add_action('acx_smw_misc_hook_option_form_head','acx_smw_misc_option_form_start',100);
188
+
189
+
190
+ function acx_smw_misc_option_form_end()
191
+ {
192
+ echo "</form>";
193
+ } add_action('acx_smw_misc_hook_option_form_footer','acx_smw_misc_option_form_end',100);
194
+
195
+ function acx_smw_misc_option_div_start()
196
+ {
197
+ echo "<div id=\"acx_smw_option_page_holder\"> \n";
198
+ acx_smw_hook_function('acx_smw_misc_hook_option_above_page_left');
199
+ echo "<div class=\"acx_smw_option_page_left\"> \n";
200
+ } add_action('acx_smw_misc_hook_option_form_head','acx_smw_misc_option_div_start',30);
201
+
202
+ function acx_smw_misc_option_sidebar_start()
203
+ {
204
+ echo "</div> <!-- acx_smw_option_page_left --> \n";
205
+ echo "<div class=\"acx_smw_option_page_right\"> \n";
206
+ } add_action('acx_smw_misc_hook_option_sidebar','acx_smw_misc_option_sidebar_start',10);
207
+
208
+
209
+ function acx_smw_misc_option_sidebar_end()
210
+ {
211
+ echo "</div> <!-- acx_smw_option_page_right --> \n";
212
+ acx_smw_hook_function('acx_smw_misc_hook_option_footer');
213
+ echo "</div> <!-- acx_smw_option_page_holder --> \n";
214
+ } add_action('acx_smw_misc_hook_option_sidebar','acx_smw_misc_option_sidebar_end',500);
215
+
216
+ function acx_smw_misc_print_option_page_title()
217
+ {
218
+ $acx_string = __("Acurax Social Widget Misc Settings","acurax-social-media-widget");
219
+ echo print_acx_smw_option_heading($acx_string);
220
+ } add_action('acx_smw_misc_hook_option_form_head','acx_smw_misc_print_option_page_title',50);
221
+
222
+ function display_acx_smw_misc_saved_success()
223
+ { ?>
224
+ <div class="updated"><p><strong><?php _e('Acurax Widgets Misc Settings Saved!.','acurax-social-media-widget' ); ?></strong></p></div>
225
+ <script type="text/javascript">
226
+ setTimeout(function(){
227
+ jQuery('.updated').fadeOut('slow');
228
+
229
+ }, 4000);
230
+
231
+ </script>
232
+
233
+ <?php
234
+ } add_action('acx_smw_misc_hook_option_onpost','display_acx_smw_misc_saved_success',5000);
235
+
236
+ /*********************************************** Expert Support *************************************************/
237
+ function acx_smw_exprt_option_div_start()
238
+ {
239
+ echo "<div id=\"acx_smw_option_page_holder\"> \n";
240
+
241
+ } add_action('acx_smw_exprt_hook_option_form_head','acx_smw_exprt_option_div_start',100);
242
+
243
+
244
+ function acx_smw_exprt_option_sidebar_end()
245
+ {
246
+ acx_smw_hook_function('acx_smw_exprt_hook_option_above_page_left');
247
+ echo "</div> <!-- acx_smw_option_page_holder --> \n";
248
+ }
249
+ add_action('acx_smw_exprt_hook_option_sidebar','acx_smw_exprt_option_sidebar_end',500);
250
+ /******************************************************* HELP *****************************************************/
251
+ function acx_smw_help_option_div_start()
252
+ {
253
+ echo "<div id=\"acx_smw_option_page_holder\"> \n";
254
+ acx_smw_hook_function('acx_smw_help_hook_option_above_page_left');
255
+ } add_action('acx_smw_help_hook_option_form_head','acx_smw_help_option_div_start',100);
256
+
257
+
258
+ function acx_smw_help_option_sidebar_end()
259
+ {
260
+
261
+ echo "</div> <!-- acx_smw_option_page_holder --> \n";
262
+ } add_action('acx_smw_help_hook_option_sidebar','acx_smw_help_option_sidebar_end',500);
263
+
264
+
265
+
266
+
267
+ ?>
includes/hooks.php ADDED
@@ -0,0 +1,125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ function acx_smw_hook_function($function_name)
3
+ {
4
+ if($function_name!="")
5
+ {
6
+ if(function_exists($function_name))
7
+ {
8
+ $function_name();
9
+ }
10
+ }
11
+ }
12
+ function acx_smw_hook_option_above_ifpost()
13
+ {
14
+ do_action('acx_smw_hook_option_above_ifpost');
15
+ }
16
+ function acx_smw_hook_option_onpost()
17
+ {
18
+ do_action('acx_smw_hook_option_onpost');
19
+ }
20
+ function acx_smw_hook_option_postelse()
21
+ {
22
+ do_action('acx_smw_hook_option_postelse');
23
+ }
24
+ function acx_smw_hook_option_after_else()
25
+ {
26
+ do_action('acx_smw_hook_option_after_else');
27
+ }
28
+ function acx_smw_hook_option_form_head()
29
+ {
30
+ do_action('acx_smw_hook_option_form_head');
31
+ }
32
+ function acx_smw_hook_option_fields()
33
+ {
34
+ do_action('acx_smw_hook_option_fields');
35
+ }
36
+ function acx_smw_hook_option_form_footer()
37
+ {
38
+ do_action('acx_smw_hook_option_form_footer');
39
+ }
40
+ function acx_smw_hook_option_sidebar()
41
+ {
42
+ do_action('acx_smw_hook_option_sidebar');
43
+ }
44
+ function acx_smw_hook_option_footer()
45
+ {
46
+ do_action('acx_smw_hook_option_footer');
47
+ }
48
+ /* Misc Page */
49
+
50
+ function acx_smw_misc_hook_option_onpost()
51
+ {
52
+ do_action('acx_smw_misc_hook_option_onpost');
53
+ }
54
+ function acx_smw_misc_hook_option_postelse()
55
+ {
56
+ do_action('acx_smw_misc_hook_option_postelse');
57
+ }
58
+ function acx_smw_misc_hook_option_after_else()
59
+ {
60
+ do_action('acx_smw_misc_hook_option_after_else');
61
+ }
62
+ function acx_smw_misc_hook_option_fields()
63
+ {
64
+ do_action('acx_smw_misc_hook_option_fields');
65
+ }
66
+ function acx_smw_misc_hook_option_above_page_left()
67
+ {
68
+ do_action('acx_smw_misc_hook_option_above_page_left');
69
+ }
70
+ function acx_smw_misc_hook_option_form_head()
71
+ {
72
+ do_action('acx_smw_misc_hook_option_form_head');
73
+ }
74
+ function acx_smw_misc_hook_option_form_footer()
75
+ {
76
+ do_action('acx_smw_misc_hook_option_form_footer');
77
+ }
78
+ function acx_smw_misc_hook_option_sidebar()
79
+ {
80
+ do_action('acx_smw_misc_hook_option_sidebar');
81
+ }
82
+ function acx_smw_misc_hook_option_footer()
83
+ {
84
+ do_action('acx_smw_misc_hook_option_footer');
85
+ }
86
+ /* Premium */
87
+ function acx_smw_premium_hook_option_footer()
88
+ {
89
+ do_action('acx_smw_premium_hook_option_footer');
90
+ }
91
+ /* EXpert and Troubleshoot */
92
+ function acx_smw_exprt_hook_option_exprt_quick()
93
+ {
94
+ do_action('acx_smw_exprt_hook_option_exprt_quick');
95
+ }
96
+ function acx_smw_exprt_hook_option_above_page_left()
97
+ {
98
+ do_action('acx_smw_exprt_hook_option_above_page_left');
99
+ }
100
+ function acx_smw_exprt_hook_option_sidebar()
101
+ {
102
+ do_action('acx_smw_exprt_hook_option_sidebar');
103
+ }
104
+ function acx_smw_exprt_hook_option_form_head()
105
+ {
106
+ do_action('acx_smw_exprt_hook_option_form_head');
107
+ }
108
+ /* Help Page */
109
+ function acx_smw_help_hook_option_form_head()
110
+ {
111
+ do_action('acx_smw_help_hook_option_form_head');
112
+ }
113
+ function acx_smw_help_hook_option_above_page_left()
114
+ {
115
+ do_action('acx_smw_help_hook_option_above_page_left');
116
+ }
117
+ function acx_smw_help_hook_option_sidebar()
118
+ {
119
+ do_action('acx_smw_help_hook_option_sidebar');
120
+ }
121
+ function acx_smw_help_hook_option_fields()
122
+ {
123
+ do_action('acx_smw_help_hook_option_fields');
124
+ }
125
+ ?>
includes/option_fields.php ADDED
@@ -0,0 +1,1056 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /********************** ICON SETTINGS PAGE ******************************/
3
+
4
+ /*
5
+ Premium Info HTML - Save - Get - Set Default Logic Starts Here
6
+ */
7
+ function acx_smw_premium_advert_above_form()
8
+ {
9
+ global $acx_si_smw_hide_advert;
10
+ if($acx_si_smw_hide_advert == "no")
11
+ { ?>
12
+ <div id="acx_asmw_premium">
13
+ <a href="#compare" style="margin: 10px 0px 0px 10px; font-weight: bold; font-size: 14px; display: block;"><?php _e("Fully Featured - Acurax Social Media Widget is Available With Tons of Extra Features!","acurax-social-media-widget");?></a><a href="http://clients.acurax.com/order.php?pid=fsmi_power&utm_source=asmw&utm_campaign=day_button" target="_blank" class="buy_now"></a></div> <!-- acx_smw_premium -->
14
+ <?php }
15
+ echo "<span class='acx_smw_q_sep'></span>";
16
+ } add_action('acx_smw_hook_option_above_page_left','acx_smw_premium_advert_above_form',50);
17
+
18
+ /*
19
+ Premium Info HTML - Save - Get - Set Default Logic Starts Here
20
+ */
21
+ /*
22
+ Current Theme HTML - Save - Get - Set Default Logic Starts Here
23
+ */
24
+ function acx_smw_current_icon_html()
25
+ {
26
+ global $acx_widget_si_icon_size , $acx_widget_si_theme;
27
+ $acx_smw_string = __("Your Current Theme is","acurax-social-media-widget");
28
+ print_acx_smw_option_block_start($acx_smw_string.' ' .$acx_widget_si_theme);
29
+ echo "<div class='image_div'>
30
+ <img src='".ACX_SMW_BASE_LOCATION."images/themes/".$acx_widget_si_theme."/twitter.png' style='height:
31
+ ".$acx_widget_si_icon_size."px'>
32
+ <img src='".ACX_SMW_BASE_LOCATION."images/themes/".$acx_widget_si_theme."/facebook.png' style='height:
33
+ ".$acx_widget_si_icon_size."px'>
34
+ <img src='".ACX_SMW_BASE_LOCATION."images/themes/".$acx_widget_si_theme."/googleplus.png' style='height:
35
+ ".$acx_widget_si_icon_size."px'>
36
+ <img src='".ACX_SMW_BASE_LOCATION."images/themes/".$acx_widget_si_theme."/pinterest.png' style='height:
37
+ ".$acx_widget_si_icon_size."px'>
38
+ <img src='".ACX_SMW_BASE_LOCATION."images/themes/".$acx_widget_si_theme."/youtube.png' style='height:
39
+ ".$acx_widget_si_icon_size."px'>
40
+ <img src='".ACX_SMW_BASE_LOCATION."images/themes/".$acx_widget_si_theme."/linkedin.png' style='height:
41
+ ".$acx_widget_si_icon_size."px'>
42
+ <img src='".ACX_SMW_BASE_LOCATION."images/themes/".$acx_widget_si_theme."/feed.png' style='height:
43
+ ".$acx_widget_si_icon_size."px'>
44
+ </div>";
45
+ echo "<span class='acx_smw_q_sep'></span>";
46
+ print_acx_smw_option_block_end();
47
+ } add_action('acx_smw_hook_option_fields','acx_smw_current_icon_html',100);
48
+
49
+ /*
50
+ Current Theme Save - Get - Set Default Logic Ends Here
51
+ */
52
+ /*
53
+ Icon Theme Settings - Save - Get - Set Default Logic Starts Here
54
+ */
55
+
56
+ function acx_smw_icon_theme_settings_html()
57
+ {
58
+ global $smw_total_themes,$acx_widget_si_theme,$social_widget_icon_array_order;
59
+ if(is_serialized($social_widget_icon_array_order))
60
+ {
61
+ $social_widget_icon_array_order = unserialize($social_widget_icon_array_order);
62
+ }
63
+ $acx_smw_string = __('Icon Theme Settings','acurax-social-media-widget');
64
+ print_acx_smw_option_block_start($acx_smw_string);
65
+
66
+
67
+ echo "<div id='acx_widget_si_theme_display' class='widefat'>";
68
+ for ($i=1; $i < $smw_total_themes; $i++)
69
+ { ?>
70
+ <label class="acx_widget_si_single_theme_display <?php if ($acx_widget_si_theme == $i) { echo "selected"; } ?>" id="icon_selection">
71
+ <div class="acx_widget_si_single_label"><?php _e('Theme','acurax-social-media-widget');?><?php echo $i; ?><br><input type="radio" name="acx_widget_si_theme" value="<?php echo $i; ?>"<?php if ($acx_widget_si_theme == $i) { echo " checked"; } ?>></div>
72
+ <div class="image_div">
73
+ <?php
74
+ foreach ($social_widget_icon_array_order as $key => $value)
75
+ {
76
+ if ($value == 0)
77
+ {
78
+ echo "<img src='".ACX_SMW_BASE_LOCATION."images/themes/". $i ."/twitter.png'>";
79
+ } else
80
+ if ($value == 1)
81
+ {
82
+ echo "<img src='".ACX_SMW_BASE_LOCATION."images/themes/". $i ."/facebook.png'>";
83
+ } else
84
+ if ($value == 2)
85
+ {
86
+ echo "<img src='".ACX_SMW_BASE_LOCATION."images/themes/". $i ."/googleplus.png'>";
87
+ } else
88
+
89
+ if ($value == 3)
90
+ {
91
+ echo "<img src='".ACX_SMW_BASE_LOCATION."images/themes/". $i ."/pinterest.png'>";
92
+ } else
93
+ if ($value == 4)
94
+ {
95
+ echo "<img src='".ACX_SMW_BASE_LOCATION."images/themes/". $i ."/youtube.png'>";
96
+ } else
97
+ if ($value == 5)
98
+ {
99
+ echo "<img src='".ACX_SMW_BASE_LOCATION."images/themes/". $i ."/linkedin.png'>";
100
+ }
101
+
102
+ if ($value == 6)
103
+ {
104
+
105
+ echo "<img src='".ACX_SMW_BASE_LOCATION."images/themes/". $i ."/feed.png'>";
106
+ }
107
+ }
108
+ ?>
109
+ </div>
110
+ </label>
111
+ <?php
112
+ }
113
+ echo "</div> <!-- acx_widget_si_theme_display -->";
114
+ // Ending The Theme List
115
+
116
+ echo "<span class='note'></span>";
117
+ echo "<span class='acx_smw_q_sep'></span>";
118
+ print_acx_smw_option_block_end();
119
+ } add_action('acx_smw_hook_option_fields','acx_smw_icon_theme_settings_html',200);
120
+
121
+ function acx_smw_icon_theme_settings_ifpost()
122
+ {
123
+ global $acx_widget_si_theme;
124
+ $acx_widget_si_theme = sanitize_text_field(acx_smw_post_isset_check('acx_widget_si_theme'));
125
+ if(!is_numeric($acx_widget_si_theme))
126
+ {
127
+ $acx_widget_si_theme = 1;
128
+ }
129
+ update_option('acx_widget_si_theme', $acx_widget_si_theme);
130
+ } add_action('acx_smw_hook_option_onpost','acx_smw_icon_theme_settings_ifpost');
131
+ function acx_smw_icon_theme_settings_else()
132
+ {
133
+ global $acx_widget_si_theme,$social_widget_icon_array_order;
134
+ $acx_widget_si_theme = get_option('acx_widget_si_theme');
135
+ $social_widget_icon_array_order = get_option('social_widget_icon_array_order');
136
+ if(is_serialized($social_widget_icon_array_order))
137
+ {
138
+ $social_widget_icon_array_order = unserialize($social_widget_icon_array_order);
139
+ }
140
+
141
+ } add_action('acx_smw_hook_option_postelse','acx_smw_icon_theme_settings_else');
142
+ function acx_smw_icon_theme_settings_after_else()
143
+ {
144
+ global $acx_widget_si_theme;
145
+ if ($acx_widget_si_theme == "")
146
+ {
147
+ $acx_widget_si_theme = "1";
148
+ }
149
+ } add_action('acx_smw_hook_option_after_else','acx_smw_icon_theme_settings_after_else');
150
+ /*
151
+ Icon Theme Settings Save - Get - Set Default Logic Ends Here
152
+ */
153
+ /*
154
+ Icon Theme Size - Save - Get - Set Default Logic Starts Here
155
+ */
156
+ function acx_smw_icon_theme_size_html()
157
+ {
158
+ global $acx_widget_si_icon_size;
159
+ $acx_smw_string = __('Icon Size Settings','acurax-social-media-widget');
160
+ print_acx_smw_option_block_start($acx_smw_string);
161
+ ?>
162
+ <select name="acx_widget_si_icon_size" style="width: 99.7%">
163
+ <option value="16"<?php if ($acx_widget_si_icon_size == "16") { echo 'selected="selected"'; } ?>>16<?php _e('px','acurax-social-media-widget'); ?> X 16<?php _e('px','acurax-social-media-widget'); ?> </option>
164
+ <option value="25"<?php if ($acx_widget_si_icon_size == "25") { echo 'selected="selected"'; } ?>>25<?php _e('px','acurax-social-media-widget'); ?> X 25<?php _e('px','acurax-social-media-widget'); ?> </option>
165
+ <option value="32"<?php if ($acx_widget_si_icon_size == "32") { echo 'selected="selected"'; } ?>>32<?php _e('px','acurax-social-media-widget'); ?> X 32<?php _e('px','acurax-social-media-widget'); ?> </option>
166
+ <option value="40"<?php if ($acx_widget_si_icon_size == "40") { echo 'selected="selected"'; } ?>>40<?php _e('px','acurax-social-media-widget'); ?> X 40<?php _e('px','acurax-social-media-widget'); ?> </option>
167
+ <option value="48"<?php if ($acx_widget_si_icon_size == "48") { echo 'selected="selected"'; } ?>>48<?php _e('px','acurax-social-media-widget'); ?> X 48<?php _e('px','acurax-social-media-widget'); ?> </option>
168
+ <option value="55"<?php if ($acx_widget_si_icon_size == "55") { echo 'selected="selected"'; } ?>>55<?php _e('px','acurax-social-media-widget'); ?> X 55<?php _e('px','acurax-social-media-widget'); ?> </option>
169
+ </select>
170
+ <?php
171
+ echo "<span class='acx_smw_q_sep'></span>";
172
+ print_acx_smw_option_block_end();
173
+ } add_action('acx_smw_hook_option_fields','acx_smw_icon_theme_size_html',300);
174
+ function acx_smw_icon_theme_size_ifpost()
175
+ {
176
+ global $acx_widget_si_icon_size;
177
+ $acx_widget_si_icon_size = acx_smw_post_isset_check('acx_widget_si_icon_size');
178
+ update_option('acx_widget_si_icon_size', $acx_widget_si_icon_size);
179
+
180
+ } add_action('acx_smw_hook_option_onpost','acx_smw_icon_theme_size_ifpost');
181
+ function acx_smw_icon_theme_size_else()
182
+ {
183
+ global $acx_widget_si_icon_size;
184
+ $acx_widget_si_icon_size = get_option('acx_widget_si_icon_size');
185
+
186
+ } add_action('acx_smw_hook_option_postelse','acx_smw_icon_theme_size_else');
187
+ function acx_smw_icon_theme_size_after_else()
188
+ {
189
+ global $acx_widget_si_icon_size;
190
+ if ($acx_widget_si_icon_size == "") { $acx_widget_si_icon_size = "32"; }
191
+
192
+ } add_action('acx_smw_hook_option_after_else','acx_smw_icon_theme_size_after_else');
193
+
194
+ /*
195
+ Icon Theme Size Save - Get - Set Default Logic Ends Here
196
+ */
197
+
198
+ /*
199
+ Icon Theme Order - Save - Get - Set Default Logic Starts Here
200
+ */
201
+
202
+
203
+ function acx_smw_icon_theme_order_html()
204
+ {
205
+ global $acx_widget_si_icon_size,$social_widget_icon_array_order,$acx_widget_si_theme;
206
+ if(is_serialized($social_widget_icon_array_order))
207
+ {
208
+ $social_widget_icon_array_order = unserialize($social_widget_icon_array_order);
209
+ }
210
+ $acx_smw_string = __("Social Media Icon Display Order - Drag and Drop to Reorder","acurax-social-media-widget");
211
+ print_acx_smw_option_block_start($acx_smw_string);
212
+ ?>
213
+ <script type="text/javascript">
214
+ jQuery(document).ready(function()
215
+ {
216
+ jQuery(function()
217
+ {
218
+ jQuery("#contentLeft ul").sortable(
219
+ {
220
+ opacity: 0.5, cursor: 'move', update: function()
221
+ {
222
+ var order = jQuery(this).sortable("serialize") + '&action=acx_asmw_saveorder'+'&acx_asmw_saveorder_es=<?php echo wp_create_nonce("acx_asmw_saveorder_es"); ?>';
223
+ jQuery.post(ajaxurl, order, function(theResponse)
224
+ {
225
+ jQuery("#contentRight").html(theResponse);
226
+ });
227
+ }
228
+ });
229
+ });
230
+ });
231
+ </script>
232
+ <?php
233
+ echo "<div class='acx_smw_admin_left_section_c'>
234
+ <div id='contentLeft'>
235
+ <ul>";
236
+
237
+ foreach ($social_widget_icon_array_order as $key => $value)
238
+ {
239
+
240
+ echo "<li id='recordsArray_$value'>";
241
+
242
+ if ($value == 0)
243
+ {
244
+ echo "<img src='".ACX_SMW_BASE_LOCATION."images/themes/". $acx_widget_si_theme ."/twitter.png' border='0'><br> Twitter";
245
+ } else
246
+ if ($value == 1)
247
+ {
248
+ echo "<img src='".ACX_SMW_BASE_LOCATION."images/themes/". $acx_widget_si_theme ."/facebook.png' border='0'><br> Facebook";
249
+ } else
250
+ if ($value == 2)
251
+ {
252
+ echo "<img src='".ACX_SMW_BASE_LOCATION."images/themes/". $acx_widget_si_theme ."/googleplus.png' border='0'><br> Google Plus";
253
+ } else
254
+
255
+ if ($value == 3)
256
+ {
257
+ echo "<img src='".ACX_SMW_BASE_LOCATION."images/themes/". $acx_widget_si_theme ."/pinterest.png' border='0'><br> Pinterest";
258
+ } else
259
+ if ($value == 4)
260
+ {
261
+ echo "<img src='".ACX_SMW_BASE_LOCATION."images/themes/". $acx_widget_si_theme ."/youtube.png' border='0'><br> Youtube";
262
+ } else
263
+ if ($value == 5)
264
+ {
265
+ echo "<img src='".ACX_SMW_BASE_LOCATION."images/themes/". $acx_widget_si_theme ."/linkedin.png' border='0'><br> Linkedin";
266
+ }
267
+
268
+ if ($value == 6)
269
+ {
270
+ echo "<img src='".ACX_SMW_BASE_LOCATION."images/themes/". $acx_widget_si_theme ."/feed.png' border='0'><br> Rss Feed";
271
+ }
272
+
273
+ echo "</li> ";
274
+ }
275
+ echo "</ul>
276
+ </div>
277
+ <div id='contentRight'></div> <!-- contentRight -->";
278
+ _e("Drag and Reorder Icons (It will automatically save on reorder)","acurax-social-media-widget" );
279
+ echo "</div> <!-- acx_smw_admin_left_section_c -->";
280
+
281
+ echo "<span class='acx_smw_q_sep'></span>";
282
+ print_acx_smw_option_block_end();
283
+ }
284
+ add_action('acx_smw_hook_option_fields','acx_smw_icon_theme_order_html',400);
285
+
286
+ /*
287
+ Icon Theme Order Save - Get - Set Default Logic Ends Here
288
+ */
289
+
290
+ /*
291
+ Social Media Configuration Starts Here
292
+ */
293
+ function acx_smw_social_media_configuration()
294
+ {
295
+ global $acx_widget_si_twitter;
296
+ $acx_smw_string = __("Social Media Configuration","acurax-social-media-widget");
297
+ print_acx_smw_option_block_start($acx_smw_string);
298
+ do_action('acx_smw_icons_option_field');
299
+ echo "<span class='acx_smw_q_sep'></span>";
300
+ print_acx_smw_option_block_end();
301
+ }
302
+ add_action('acx_smw_hook_option_fields','acx_smw_social_media_configuration',500);
303
+
304
+ function acx_smw_social_media_twitter_icon_field()
305
+ {
306
+ global $acx_widget_si_twitter;
307
+ echo "<span class='label'>". __('Twitter Username:','acurax-social-media-widget')."</span>";
308
+ echo "<input type='text' name='acx_widget_si_twitter' value='".$acx_widget_si_twitter."' placeholder='" . __("acuraxdotcom","acurax-social-media-widget"). "'>";
309
+ echo "<span class='acx_smw_q_sep'></span>";
310
+ }
311
+ add_action('acx_smw_icons_option_field','acx_smw_social_media_twitter_icon_field',100);
312
+
313
+
314
+ function acx_smw_twitter_post_if()
315
+ {
316
+ global $acx_widget_si_twitter;
317
+ $acx_widget_si_twitter = acx_smw_post_isset_check('acx_widget_si_twitter');
318
+ update_option('acx_widget_si_twitter', $acx_widget_si_twitter);
319
+ } add_action('acx_smw_hook_option_onpost','acx_smw_twitter_post_if');
320
+
321
+ function acx_smw_twitter_post_else()
322
+ {
323
+ global $acx_widget_si_twitter;
324
+ $acx_widget_si_twitter = get_option('acx_widget_si_twitter');
325
+ }
326
+ add_action('acx_smw_hook_option_postelse','acx_smw_twitter_post_else');
327
+
328
+ function acx_smw_social_media_facebook_icon_field()
329
+ {
330
+ global $acx_widget_si_facebook;
331
+ echo "<span class='acx_smw_q_sep'></span>";
332
+ echo "<span class='label'>". __('Facebook Profile URL:','acurax-social-media-widget')."</span>";
333
+ echo "<input type='text' name='acx_widget_si_facebook' value='".$acx_widget_si_facebook."' placeholder='".__('eg: http://www.facebook.com/AcuraxInternational','acurax-social-media-widget')."'>";
334
+ echo "<span class='acx_smw_q_sep'></span>";
335
+ }
336
+ add_action('acx_smw_icons_option_field','acx_smw_social_media_facebook_icon_field',200);
337
+
338
+ function acx_smw_facebook_post_if()
339
+ {
340
+ global $acx_widget_si_facebook;
341
+ $acx_widget_si_facebook = acx_smw_post_isset_check('acx_widget_si_facebook');
342
+ if($acx_widget_si_facebook != "")
343
+ {
344
+ if (substr($acx_widget_si_facebook, 0, 4) != 'http') {
345
+ $acx_widget_si_facebook = 'http://' . $acx_widget_si_facebook;
346
+ } if($acx_widget_si_facebook == "http://#") { $acx_widget_si_facebook = "#"; }
347
+ } update_option('acx_widget_si_facebook', $acx_widget_si_facebook);
348
+ } add_action('acx_smw_hook_option_onpost','acx_smw_facebook_post_if');
349
+
350
+ function acx_smw_facebook_post_else()
351
+ {
352
+ global $acx_widget_si_facebook;
353
+ $acx_widget_si_facebook = get_option('acx_widget_si_facebook');
354
+ }
355
+ add_action('acx_smw_hook_option_postelse','acx_smw_facebook_post_else');
356
+
357
+ function acx_smw_social_media_gplus_icon_field()
358
+ { global $acx_widget_si_gplus;
359
+ echo "<span class='label'> ". __('Google Plus URL:','acurax-social-media-widget')."</span>";
360
+ echo "<input type='text' name='acx_widget_si_gplus' value='".esc_url($acx_widget_si_gplus)."' placeholder='".__('Enter Your Complete Google Plus Url Starting With http://','acurax-social-media-widget')."'>";
361
+ echo "<span class='acx_smw_q_sep'></span>";
362
+ }
363
+ add_action('acx_smw_icons_option_field','acx_smw_social_media_gplus_icon_field',300);
364
+
365
+ function acx_smw_gplus_post_if()
366
+ {
367
+ global $acx_widget_si_gplus;
368
+ $acx_widget_si_gplus = esc_url_raw(acx_smw_post_isset_check('acx_widget_si_gplus'));
369
+ update_option('acx_widget_si_gplus', $acx_widget_si_gplus);
370
+ } add_action('acx_smw_hook_option_onpost','acx_smw_gplus_post_if');
371
+
372
+ function acx_smw_gplus_post_else()
373
+ {
374
+ global $acx_widget_si_gplus;
375
+ $acx_widget_si_gplus = get_option('acx_widget_si_gplus');
376
+ }
377
+ add_action('acx_smw_hook_option_postelse','acx_smw_gplus_post_else');
378
+
379
+ function acx_smw_social_media_pinterest_icon_field()
380
+ { global $acx_widget_si_pinterest;
381
+ echo "<span class='label'> ". __('Pinterest URL:','acurax-social-media-widget')."</span>";
382
+ echo "<input type='text' name='acx_widget_si_pinterest' value='".esc_url($acx_widget_si_pinterest)."' placeholder='".__('Enter Your Complete Pinterest Url Starting With http://','acurax-social-media-widget')."'>";
383
+ echo "<span class='acx_smw_q_sep'></span>";
384
+ }
385
+ add_action('acx_smw_icons_option_field','acx_smw_social_media_pinterest_icon_field',400);
386
+
387
+ function acx_smw_pinterest_post_if()
388
+ {
389
+ global $acx_widget_si_pinterest;
390
+ $acx_widget_si_pinterest = esc_url_raw(acx_smw_post_isset_check('acx_widget_si_pinterest'));
391
+ update_option('acx_widget_si_pinterest', $acx_widget_si_pinterest);
392
+ } add_action('acx_smw_hook_option_onpost','acx_smw_pinterest_post_if');
393
+
394
+ function acx_smw_pinterest_post_else()
395
+ {
396
+ global $acx_widget_si_pinterest;
397
+ $acx_widget_si_pinterest = get_option('acx_widget_si_pinterest');
398
+ }
399
+ add_action('acx_smw_hook_option_postelse','acx_smw_pinterest_post_else');
400
+
401
+ function acx_smw_social_media_youtube_icon_field()
402
+ {
403
+ global $acx_widget_si_youtube;
404
+ echo "<span class='label'>". __('Youtube URL:','acurax-social-media-widget')."</span>";
405
+ echo "<input type='text' name='acx_widget_si_youtube' value='".esc_url($acx_widget_si_youtube)."' placeholder='".__('http://www.youtube.com/user/acuraxdotcom','acurax-social-media-widget')."'>";
406
+ echo "<span class='acx_smw_q_sep'></span>";
407
+ }
408
+ add_action('acx_smw_icons_option_field','acx_smw_social_media_youtube_icon_field',500);
409
+
410
+ function acx_smw_youtube_post_if()
411
+ {
412
+ global $acx_widget_si_youtube;
413
+ $acx_widget_si_youtube = esc_url_raw(acx_smw_post_isset_check('acx_widget_si_youtube'));
414
+ update_option('acx_widget_si_youtube', $acx_widget_si_youtube);
415
+ } add_action('acx_smw_hook_option_onpost','acx_smw_youtube_post_if');
416
+
417
+ function acx_smw_youtube_post_else()
418
+ {
419
+ global $acx_widget_si_youtube;
420
+ $acx_widget_si_youtube = get_option('acx_widget_si_youtube');
421
+ }
422
+ add_action('acx_smw_hook_option_postelse','acx_smw_youtube_post_else');
423
+
424
+ function acx_smw_social_media_linkedin_icon_field()
425
+ {
426
+ global $acx_widget_si_linkedin;
427
+ echo "<span class='label'>". __('Linkedin URL:','acurax-social-media-widget')."</span>";
428
+ echo "<input type='text' name='acx_widget_si_linkedin' value='".esc_url($acx_widget_si_linkedin)."' placeholder='".__('http://www.linkedin.com/company/acurax-international','acurax-social-media-widget')."'>";
429
+ echo "<span class='acx_smw_q_sep'></span>";
430
+ }
431
+ add_action('acx_smw_icons_option_field','acx_smw_social_media_linkedin_icon_field',600);
432
+
433
+ function acx_smw_linkedin_post_if()
434
+ {
435
+ global $acx_widget_si_linkedin;
436
+ $acx_widget_si_linkedin = esc_url_raw(acx_smw_post_isset_check('acx_widget_si_linkedin'));
437
+ update_option('acx_widget_si_linkedin', $acx_widget_si_linkedin);
438
+ } add_action('acx_smw_hook_option_onpost','acx_smw_linkedin_post_if');
439
+
440
+ function acx_smw_linkedin_post_else()
441
+ {
442
+ global $acx_widget_si_linkedin;
443
+ $acx_widget_si_linkedin = get_option('acx_widget_si_linkedin');
444
+ }
445
+ add_action('acx_smw_hook_option_postelse','acx_smw_linkedin_post_else');
446
+ function acx_smw_social_media_feed_field()
447
+ {
448
+ global $acx_widget_si_feed;
449
+ echo "<span class='label'>". __('Feed URL:','acurax-social-media-widget')."</span>";
450
+ echo "<input type='text' name='acx_widget_si_feed' value='".esc_url($acx_widget_si_feed)."' placeholder='".__('http://www.yourwebsite.com/feed','acurax-social-media-widget')."'>";
451
+ echo "<span class='acx_smw_q_sep'></span>";
452
+ }
453
+ add_action('acx_smw_icons_option_field','acx_smw_social_media_feed_field',700);
454
+
455
+ function acx_smw_feed_post_if()
456
+ {
457
+ global $acx_widget_si_feed;
458
+ $acx_widget_si_feed = esc_url_raw(acx_smw_post_isset_check('acx_widget_si_feed'));
459
+ update_option('acx_widget_si_feed', $acx_widget_si_feed);
460
+ } add_action('acx_smw_hook_option_onpost','acx_smw_feed_post_if');
461
+
462
+ function acx_smw_feed_post_else()
463
+ {
464
+ global $acx_widget_si_feed;
465
+ $acx_widget_si_feed = get_option('acx_widget_si_feed');
466
+ }
467
+ add_action('acx_smw_hook_option_postelse','acx_smw_feed_post_else');
468
+
469
+
470
+ function acx_smw_custom_icon_btn_field()
471
+ {
472
+ ?><span class='button smw_info_premium smw_info_lb' lb_title='<?php _e('Adding Extra Icons Feature','acurax-social-media-widget'); ?>' lb_content='<?php _e('Its possible to add any number of extra icons by uploading them and you can link them to anywhere you need.','acurax-social-media-widget'); ?><br><br><?php _e('Lets say, you needs to have an icon which links to your contact page or services page, you can do that.','acurax-social-media-widget'); ?><br><br><i><?php _e('This feature is only available in our premium version - ','acurax-social-media-widget'); ?><a href="admin.php?page=Acurax-Social-Icons-Premium" target="_blank"><?php _e('Compare Features','acurax-social-media-widget'); ?></a> / <a href="http://clients.acurax.com/order.php?pid=fsmi_power&utm_source=smw&utm_campaign=premium-info" target="_blank"><?php _e('Order Now','acurax-social-media-widget'); ?></a>'><?php _e('Add Custom Icon','acurax-social-media-widget'); ?></span><?php
473
+ echo "<span class='acx_smw_q_sep'></span>";
474
+ }
475
+ add_action('acx_smw_icons_option_field','acx_smw_custom_icon_btn_field',800);
476
+
477
+ /*
478
+ Social Media Configuration Ends Here
479
+ */
480
+
481
+ /*
482
+ Define Submit Button Starts Here
483
+ */
484
+ function acx_smw_submit_button_html()
485
+ {
486
+ echo "<span class='acx_smw_q_sep'></span>";?>
487
+ <span id='acx_smw_save_btn' style='clear:both;'><input type='submit' name='Submit' class='button button-primary' value='<?php _e('Save Configuration','acurax-social-media-widget'); ?>' /></span>
488
+ <?php
489
+ echo "<span class='acx_smw_q_sep'></span>";
490
+ }
491
+ add_action('acx_smw_hook_option_fields','acx_smw_submit_button_html',900);
492
+ /*
493
+ Define Submit Button Ends Here
494
+ */
495
+ /*
496
+ Define options in else post Starts Here
497
+ */
498
+
499
+ function acx_smw_social_media_else()
500
+ {
501
+
502
+ global $acx_widget_si_installed_date,$acx_widget_si_credit,$social_widget_icon_array_order,$acx_si_smw_hide_advert;
503
+ $acx_widget_si_installed_date = get_option('acx_widget_si_installed_date');
504
+ if ($acx_widget_si_installed_date=="")
505
+ { $acx_widget_si_installed_date = time();
506
+ update_option('acx_widget_si_installed_date', $acx_widget_si_installed_date);
507
+ }
508
+
509
+ $acx_widget_si_credit = get_option('acx_widget_si_credit');
510
+ if ($acx_widget_si_credit == "") { $acx_widget_si_credit = 'no'; }
511
+ $acx_si_smw_hide_advert = get_option('acx_si_smw_hide_advert');
512
+ if ($acx_si_smw_hide_advert == "") { $acx_si_smw_hide_advert = 'no'; }
513
+ do_action('acx_asmw_orderarray_refresh');
514
+ $social_widget_icon_array_order = get_option('social_widget_icon_array_order');
515
+ $social_widget_icon_array_order = unserialize($social_widget_icon_array_order);
516
+
517
+
518
+ }
519
+ add_action('acx_smw_hook_option_postelse','acx_smw_social_media_else',100);
520
+ /*
521
+ Define options in else post Ends Here
522
+ */
523
+
524
+ /*
525
+ Comparison HTML Starts Here
526
+ */
527
+ function acx_smw_show_comparison()
528
+ {
529
+ global $acx_si_smw_hide_advert;
530
+ if($acx_si_smw_hide_advert == "no")
531
+ {
532
+ echo "<span class='acx_smw_q_sep'></span>";
533
+ do_action('acx_smw_comparison_premium',1);
534
+ echo "<span class='acx_smw_q_sep'></span>";
535
+ }
536
+ }
537
+ add_action('acx_smw_hook_option_footer','acx_smw_show_comparison',400);
538
+
539
+ /*
540
+ Comparison HTML Ends Here
541
+ */
542
+
543
+ /*
544
+ Footer HTML Starts Here
545
+ */
546
+ function acx_smw_show_footer_contact_section()
547
+ {
548
+ ?><p class="widefat" style="padding:8px;width:99%;"><?php _e('Something Not Working Well? Have a Doubt? Have a Suggestion?','acurax-social-media-widget'); ?> - <a href="http://www.acurax.com/contact.php" target="_blank"><?php _e('Contact us now','acurax-social-media-widget'); ?></a> |<?php _e(' Need a Custom Designed Theme For your Blog or Website? Need a Custom Header Image?','acurax-social-media-widget'); ?> - <a href="http://www.acurax.com/contact.php" target="_blank"><?php _e('Contact us now','acurax-social-media-widget'); ?></a></p>
549
+ <?php
550
+ echo "<span class='acx_smw_q_sep'></span>";
551
+ }
552
+ add_action('acx_smw_hook_option_footer','acx_smw_show_footer_contact_section',500);
553
+ /*
554
+ Footer HTML Ends Here
555
+ */
556
+
557
+
558
+ /*
559
+ Define options above if post Starts Here
560
+ */
561
+ function acx_smw_options_above_if()
562
+ {
563
+ global $smw_total_themes;
564
+ /**********************************************/
565
+ $smw_total_themes = ACX_SOCIALMEDIA_WIDGET_TOTAL_THEMES; // DEFINE NUMBER OF THEMES HERE
566
+ $smw_total_themes = ($smw_total_themes+1); // DO NOT EDIT THIS
567
+ /**********************************************/
568
+
569
+ }
570
+ add_action('acx_smw_hook_option_above_ifpost','acx_smw_options_above_if',100);
571
+ /*
572
+ Define options above if post Ends Here
573
+ */
574
+
575
+ /********************************************** MISC PAGE *******************************************/
576
+ /*
577
+ Premium Info HTML - Save - Get - Set Default Logic Starts Here
578
+ */
579
+ function acx_smw_misc_premium_advert_above_form()
580
+ {
581
+ global $acx_si_smw_hide_advert,$acx_widget_si_credit;
582
+ if($acx_si_smw_hide_advert == "no")
583
+ {
584
+ echo "<span class='acx_smw_q_sep'></span>"; ?>
585
+ <div id="acx_asmw_premium">
586
+ <a href="#compare" style="margin: 10px 0px 0px 10px; font-weight: bold; font-size: 14px; display: block;"><?php _e('Fully Featured - Acurax Social Media Widget is Available With Tons of Extra Features!','acurax-social-media-widget'); ?></a><a href="http://clients.acurax.com/order.php?pid=fsmi_power&utm_source=asmw&utm_campaign=day_button" target="_blank" class="buy_now"></a></div> <!-- acx_smw_premium -->
587
+ <?php }
588
+ echo "<span class='acx_smw_q_sep'></span>";
589
+ } add_action('acx_smw_misc_hook_option_above_page_left','acx_smw_misc_premium_advert_above_form',50);
590
+
591
+ /*
592
+ Premium Info HTML - Save - Get - Set Default Logic Starts Here
593
+ */
594
+
595
+ /*
596
+ Acurax Theme Conflict Settings Starts Here
597
+ */
598
+ function acx_smw_misc_icons_vertical_html()
599
+ {
600
+
601
+ $acx_string = __('Acurax Theme Conflict Settings','acurax-social-media-widget');
602
+ print_acx_smw_option_block_start($acx_string);
603
+ do_action('acx_smw_misc_theme_conflict_option_field');
604
+ echo "<span class='acx_smw_q_sep'></span>";
605
+ print_acx_smw_option_block_end();
606
+
607
+
608
+ } add_action('acx_smw_misc_hook_option_fields','acx_smw_misc_icons_vertical_html',100);
609
+
610
+ function acx_smw_icons_vertical()
611
+ {
612
+ global $acx_si_smw_float_fix;
613
+ ?>
614
+ <span class='label'><?php _e('Widget Icons Vertical','acurax-social-media-widget'); ?><a style="cursor:pointer;" class="asmw_info_premium smw_info_lb" lb_title="<?php _e('Icon Shows Vertical Instead of Horizontal','acurax-social-media-widget'); ?>" lb_content="<?php _e('If your social media icons is displaying vertically instead of horizontal, You can change this settings.','acurax-social-media-widget'); ?>">[?]</a></span>
615
+ <select name="acx_si_smw_float_fix">
616
+ <option value="yes"<?php if ($acx_si_smw_float_fix == "yes") { echo 'selected="selected"'; } ?>><?php _e('Yes,Make My Vertical Icons Horizontal','acurax-social-media-widget'); ?></option>
617
+ <option value="no"<?php if ($acx_si_smw_float_fix == "no") { echo 'selected="selected"'; } ?>><?php _e('No, I Dont Have Any Issues','acurax-social-media-widget'); ?></option>
618
+ </select>
619
+ <?php
620
+ echo "<span class='acx_smw_q_sep'></span>";
621
+ }
622
+ add_action('acx_smw_misc_theme_conflict_option_field','acx_smw_icons_vertical',100);
623
+ function acx_smw_float_fix_if()
624
+ {
625
+ global $acx_si_smw_float_fix;
626
+ $acx_si_smw_float_fix = sanitize_text_field(acx_smw_post_isset_check('acx_si_smw_float_fix'));
627
+ update_option('acx_si_smw_float_fix', $acx_si_smw_float_fix);
628
+ } add_action('acx_smw_misc_hook_option_onpost','acx_smw_float_fix_if');
629
+
630
+ function acx_smw_smw_float_fix_else()
631
+ {
632
+ global $acx_si_smw_float_fix;
633
+ $acx_si_smw_float_fix = get_option('acx_si_smw_float_fix');
634
+ }
635
+ add_action('acx_smw_misc_hook_option_postelse','acx_smw_smw_float_fix_else');
636
+ function acx_smw_smw_float_fix_after_else()
637
+ {
638
+ global $acx_si_smw_float_fix;
639
+
640
+ if ($acx_si_smw_float_fix == "") { $acx_si_smw_float_fix = "no"; }
641
+ } add_action('acx_smw_misc_hook_option_after_else','acx_smw_smw_float_fix_after_else');
642
+
643
+ function acx_smw_ignore_theme_warning()
644
+ {
645
+ global $acx_si_smw_theme_warning_ignore;
646
+ ?>
647
+ <span class='label'><?php _e('Ignore Theme Warning','acurax-social-media-widget'); ?></span>
648
+ <select name="acx_si_smw_theme_warning_ignore">
649
+ <option value="yes"<?php if ($acx_si_smw_theme_warning_ignore == "yes") { echo 'selected="selected"'; } ?>><?php _e('Yes, Everything is working fine and and i still see theme warning - Fix This','acurax-social-media-widget'); ?></option>
650
+ <option value="no"<?php if ($acx_si_smw_theme_warning_ignore == "no") { echo 'selected="selected"'; } ?>><?php _e('No, I Have No Issues ','acurax-social-media-widget'); ?></option>
651
+ </select>
652
+ <?php
653
+ echo "<span class='acx_smw_q_sep'></span>";
654
+ }
655
+ add_action('acx_smw_misc_theme_conflict_option_field','acx_smw_ignore_theme_warning',200);
656
+ function acx_smw_theme_warning_if()
657
+ {
658
+ global $acx_si_smw_theme_warning_ignore;
659
+ $acx_si_smw_theme_warning_ignore = sanitize_text_field(acx_smw_post_isset_check('acx_si_smw_theme_warning_ignore'));
660
+ update_option('acx_si_smw_theme_warning_ignore', $acx_si_smw_theme_warning_ignore);
661
+ } add_action('acx_smw_misc_hook_option_onpost','acx_smw_theme_warning_if');
662
+
663
+ function acx_smw_theme_warning_else()
664
+ {
665
+ global $acx_si_smw_theme_warning_ignore;
666
+ $acx_si_smw_theme_warning_ignore = get_option('acx_si_smw_theme_warning_ignore');
667
+ }
668
+ add_action('acx_smw_misc_hook_option_postelse','acx_smw_theme_warning_else');
669
+ function acx_smw_theme_warning_after_else()
670
+ {
671
+ global $acx_si_smw_theme_warning_ignore;
672
+
673
+ if ($acx_si_smw_theme_warning_ignore == "") { $acx_si_smw_theme_warning_ignore = "no"; }
674
+ } add_action('acx_smw_misc_hook_option_after_else','acx_smw_theme_warning_after_else');
675
+
676
+
677
+ /*
678
+ Acurax Theme Conflict Settings Starts Here
679
+ */
680
+
681
+
682
+
683
+ /*
684
+ Acurax Service/Info Settings HTML - Get - Set Default Logic Starts Here
685
+ */
686
+ function acx_smw_misc_service_info_html()
687
+ {
688
+ $acx_string = __('Acurax Service/Info Settings','acurax-social-media-widget');
689
+ print_acx_smw_option_block_start($acx_string);
690
+ do_action('acx_smw_misc_service_info');
691
+ echo "<span class='acx_smw_q_sep'></span>";
692
+ print_acx_smw_option_block_end();
693
+ } add_action('acx_smw_misc_hook_option_fields','acx_smw_misc_service_info_html',200);
694
+
695
+ function acx_smw_service_info_option()
696
+ {
697
+ global $acx_si_smw_acx_service_banners;
698
+ echo "<span class='label'>". __('Acurax Service Info ','acurax-social-media-widget')."</span>";?>
699
+ <select name="acx_si_smw_acx_service_banners">
700
+ <option value="yes"<?php if ($acx_si_smw_acx_service_banners == "yes") { echo 'selected="selected"'; } ?>><?php _e('Show Acurax Service Banner','acurax-social-media-widget');?></option>
701
+ <option value="no"<?php if ($acx_si_smw_acx_service_banners == "no") { echo 'selected="selected"'; } ?>><?php _e('Hide Acurax Service Banner','acurax-social-media-widget');?></option>
702
+ </select>
703
+ <?php
704
+ echo "<span class='acx_smw_q_sep'></span>";
705
+
706
+ }
707
+ add_action('acx_smw_misc_service_info','acx_smw_service_info_option',100);
708
+
709
+
710
+ function acx_smw_service_info_if()
711
+ {
712
+ global $acx_si_smw_acx_service_banners;
713
+ $acx_si_smw_acx_service_banners = sanitize_text_field(acx_smw_post_isset_check('acx_si_smw_acx_service_banners'));
714
+ update_option('acx_si_smw_acx_service_banners', $acx_si_smw_acx_service_banners);
715
+ } add_action('acx_smw_misc_hook_option_onpost','acx_smw_service_info_if');
716
+
717
+ function acx_smw_service_info_else()
718
+ {
719
+ global $acx_si_smw_acx_service_banners;
720
+ $acx_si_smw_acx_service_banners = get_option('acx_si_smw_acx_service_banners');
721
+ }
722
+ add_action('acx_smw_misc_hook_option_postelse','acx_smw_service_info_else');
723
+ function acx_smw_service_info_after_else()
724
+ {
725
+ global $acx_si_smw_acx_service_banners;
726
+
727
+ if ($acx_si_smw_acx_service_banners == "") { $acx_si_smw_acx_service_banners = "yes"; }
728
+ } add_action('acx_smw_misc_hook_option_after_else','acx_smw_service_info_after_else');
729
+
730
+ /*
731
+ Acurax Service/Info Settings HTML - Get - Set Default Logic Ends Here
732
+ */
733
+
734
+ /*
735
+ Premium Version Info Settings HTML - Get - Set Default Logic Starts Here
736
+ */
737
+
738
+
739
+ function acx_smw_misc_premium_info_option()
740
+ {
741
+ global $acx_si_smw_hide_advert;
742
+ echo "<span class='label'>". __('Premium Version Info ','acurax-social-media-widget')."</span>";?>
743
+ <select name="acx_si_smw_hide_advert">
744
+ <option value="yes"<?php if ($acx_si_smw_hide_advert == "yes") { echo 'selected="selected"'; } ?>><?php _e('Hide Premium Version Infos','acurax-social-media-widget');?></option>
745
+ <option value="no"<?php if ($acx_si_smw_hide_advert == "no") { echo 'selected="selected"'; } ?>><?php _e('Show Premium Version Infos','acurax-social-media-widget');?></option>
746
+ </select>
747
+ <?php
748
+ echo "<span class='acx_smw_q_sep'></span>";
749
+
750
+ }
751
+ add_action('acx_smw_misc_service_info','acx_smw_misc_premium_info_option',200);
752
+
753
+
754
+ function acx_smw_premium_info_if()
755
+ {
756
+ global $acx_si_smw_hide_advert;
757
+ $acx_si_smw_hide_advert = sanitize_text_field(acx_smw_post_isset_check('acx_si_smw_hide_advert'));
758
+ update_option('acx_si_smw_hide_advert', $acx_si_smw_hide_advert);
759
+ } add_action('acx_smw_misc_hook_option_onpost','acx_smw_premium_info_if');
760
+
761
+ function acx_smw_premium_info_else()
762
+ {
763
+ global $acx_si_smw_hide_advert;
764
+ $acx_si_smw_hide_advert = get_option('acx_si_smw_hide_advert');
765
+ }
766
+ add_action('acx_smw_misc_hook_option_postelse','acx_smw_premium_info_else');
767
+ function acx_smw_premium_info_after_else()
768
+ {
769
+ global $acx_si_smw_hide_advert;
770
+ if ($acx_si_smw_hide_advert == "") { $acx_si_smw_hide_advert = "no"; }
771
+ } add_action('acx_smw_misc_hook_option_after_else','acx_smw_premium_info_after_else');
772
+
773
+ /* Premium Version Info Settings Settings HTML - Get - Set Default Logic Ends Here */
774
+ /* Expert Support Menu Settings HTML - Get - Set Default Logic Starts Here */
775
+
776
+
777
+ function acx_smw_misc_expert_support_option()
778
+ {
779
+ global $acx_si_asmw_hide_expert_support_menu;
780
+ echo "<span class='label'>". __('Expert Support Menu','acurax-social-media-widget')."</span>";?>
781
+ <select name="acx_si_asmw_hide_expert_support_menu">
782
+ <option value="yes"<?php if ($acx_si_asmw_hide_expert_support_menu == "yes") { echo 'selected="selected"'; } ?>><?php _e('Hide Expert Support Menu From Acurax ','acurax-social-media-widget');?></option>
783
+ <option value="no"<?php if ($acx_si_asmw_hide_expert_support_menu == "no") { echo 'selected="selected"'; } ?>><?php _e('Show Expert Support Menu From Acurax ','acurax-social-media-widget');?></option>
784
+ </select>
785
+ <?php
786
+ echo "<span class='acx_smw_q_sep'></span>";
787
+
788
+ }
789
+ add_action('acx_smw_misc_service_info','acx_smw_misc_expert_support_option',300);
790
+
791
+
792
+ function acx_smw_expert_support_if()
793
+ {
794
+ global $acx_si_asmw_hide_expert_support_menu;
795
+ $acx_si_asmw_hide_expert_support_menu = sanitize_text_field(acx_smw_post_isset_check('acx_si_asmw_hide_expert_support_menu'));
796
+ update_option('acx_si_asmw_hide_expert_support_menu', $acx_si_asmw_hide_expert_support_menu);
797
+ } add_action('acx_smw_misc_hook_option_onpost','acx_smw_expert_support_if');
798
+
799
+ function acx_smw_expert_support_else()
800
+ {
801
+ global $acx_si_asmw_hide_expert_support_menu;
802
+ $acx_si_asmw_hide_expert_support_menu = get_option('acx_si_asmw_hide_expert_support_menu');
803
+ }
804
+ add_action('acx_smw_misc_hook_option_postelse','acx_smw_expert_support_else');
805
+ function acx_smw_expert_support_after_else()
806
+ {
807
+ global $acx_si_asmw_hide_expert_support_menu;
808
+
809
+ if ($acx_si_asmw_hide_expert_support_menu == "") { $acx_si_asmw_hide_expert_support_menu = "no"; }
810
+ } add_action('acx_smw_misc_hook_option_after_else','acx_smw_expert_support_after_else');
811
+
812
+ /*
813
+ Expert Support Menu Settings Settings HTML - Get - Set Default Logic Ends Here
814
+ */
815
+
816
+ /*
817
+ Define Misc Submit Button Starts Here
818
+ */
819
+ function acx_smw_misc_submit_button_html()
820
+ {
821
+ echo "<span class='acx_smw_q_sep'></span>";?>
822
+ <input type='submit' name='Submit' class='button button-primary' value='<?php _e('Save Settings','acurax-social-media-widget'); ?>' />
823
+ <?php
824
+ echo "<span class='acx_smw_q_sep'></span>";
825
+ }
826
+ add_action('acx_smw_misc_hook_option_fields','acx_smw_misc_submit_button_html',300);
827
+ /*
828
+ Define Misc Submit Button Ends Here
829
+ */
830
+ /*
831
+ Comparison HTML Starts Here
832
+ */
833
+ function acx_smw_misc_show_comparison()
834
+ {
835
+ global $acx_si_smw_hide_advert;
836
+ if($acx_si_smw_hide_advert == "no")
837
+ {
838
+ echo "<span class='acx_smw_q_sep'></span>";
839
+ do_action('acx_smw_comparison_premium',1);
840
+ echo "<span class='acx_smw_q_sep'></span>";
841
+ }
842
+ }
843
+ add_action('acx_smw_misc_hook_option_footer','acx_smw_misc_show_comparison',100);
844
+
845
+ /*
846
+ Comparison HTML Starts Here
847
+ */
848
+
849
+ /*
850
+ Footer HTML Starts Here
851
+ */
852
+ function acx_smw_misc_show_footer_contact_section()
853
+ {
854
+ echo "<span class='acx_smw_q_sep'></span>";
855
+ ?><p class="widefat" style="padding:8px;width:99%;">
856
+ <?php _e('Something Not Working Well? Have a Doubt? Have a Suggestion? -','acurax-social-media-widget'); ?> <a href="http://www.acurax.com/contact.php" target="_blank"><?php _e('Contact us now','acurax-social-media-widget'); ?></a> | <?php _e('Need a Custom Designed Theme For your Blog or Website? Need a Custom Header Image? ','acurax-social-media-widget'); ?>- <a href="http://www.acurax.com/contact.php" target="_blank"><?php _e('Contact us now','acurax-social-media-widget');?></a></p>
857
+ <?php
858
+ echo "<span class='acx_smw_q_sep'></span>";
859
+ }
860
+ add_action('acx_smw_misc_hook_option_footer','acx_smw_misc_show_footer_contact_section',200);
861
+
862
+ /*
863
+ Footer HTML Ends Here
864
+ */
865
+
866
+
867
+ /*********************************** PREMIUM *****************************************************************/
868
+ /* Premium Updation HTML Starts Here */
869
+ function acx_smw_premium_html()
870
+ {
871
+ $get_td ="";
872
+ if(ISSET($_GET['td']))
873
+ {
874
+ if(sanitize_text_field($_GET['td']) == 'hide')
875
+ {
876
+ $get_td = "hide";
877
+ }
878
+ }
879
+ if($get_td == 'hide')
880
+ {
881
+ update_option('acx_widget_si_td', "hidden");
882
+ ?>
883
+ <style type='text/css'>
884
+ #acx_td
885
+ {
886
+ display:none;
887
+ }
888
+ </style>
889
+ <div class="error" style="background: none repeat scroll 0pt 0pt infobackground; border: 1px solid inactivecaption; padding: 5px;line-height:16px;"><?php _e('Thanks again for using the plugin.','acurax-social-media-widget'); ?>
890
+
891
+ </div>
892
+ <?php
893
+ }
894
+ }
895
+ add_action('acx_smw_premium_hook_option_footer','acx_smw_premium_html',100);
896
+ /* Premium Updation HTML Ends Here */
897
+ /* Comparison HTML Starts Here */
898
+ function acx_smw_premium_comparison_html()
899
+ {
900
+ echo "<span class='acx_smw_q_sep'></span>";
901
+ do_action('acx_smw_comparison_premium',1);
902
+ echo "<span class='acx_smw_q_sep'></span>";
903
+
904
+ }
905
+ add_action('acx_smw_premium_hook_option_footer','acx_smw_premium_comparison_html',200);
906
+ /* Comparison HTML Ends Here */
907
+ /* Money Back Guarantee Starts Here */
908
+
909
+ function acx_smw_money_back_html()
910
+ {
911
+ echo "<span class='acx_smw_q_sep'></span>";
912
+ echo "<div align='center'><img style='border:1px solid gray;box-shadow:1px 1px 20px -9px black;border-radius: 8px 8px 8px 8px;' src='".ACX_SMW_BASE_LOCATION."images/money_back.jpg'></div>";
913
+ echo "<span class='acx_smw_q_sep'></span>";
914
+
915
+ }
916
+ add_action('acx_smw_premium_hook_option_footer','acx_smw_money_back_html',300);
917
+
918
+ /* Money Back Guarantee Ends Here */
919
+
920
+ /********************************************************* Expert Page *****************************************************/
921
+ /* Troubleshooter page options Starts Here*/
922
+ function acx_smw_quick_fix_applied()
923
+ {
924
+ global $smw_fix_applied;
925
+ if($smw_fix_applied == 1)
926
+ {
927
+ echo "<div style='background: none repeat scroll 0% 0% lightgreen; width: 300px; text-align: center; margin-right: auto; margin-left: auto; padding: 7px 7px 5px; border-top-right-radius: 7px; border-top-left-radius: 7px; border-bottom: 2px solid green;'>". __('Action Completed Successfully','acurax-social-media-widget')."</div>";
928
+ }
929
+ }
930
+ add_action('acx_smw_exprt_hook_option_form_head','acx_smw_quick_fix_applied',120);
931
+ function acx_smw_expert_icon_select_html()
932
+ {
933
+ global $smw_page;
934
+ if($smw_page == "Acurax-Social-Widget-Troubleshooter")
935
+ {
936
+ echo "<h2 class='acx_smw_option_head'>". __('Social Media Widget by Acurax','floating-social-media-icon')."</h2>";
937
+ echo "<span class='acx_smw_q_sep'></span>";?>
938
+ <p style="font-weight:bold;text-align:center;color:darkred;"><?php _e('IMPORTANT NOTE: Please do troubleshooting only if you got instructions from support or know what you are going to do.','acurax-social-media-widget') ;?></p>
939
+
940
+ <p class="widefat" style="background: none repeat scroll 0% 0% menu; border-bottom: 2px dashed lavender; border-right: 2px dashed lavender; margin-bottom: 15px; margin-top: 8px; padding: 8px; width: 99%;"> <?php _e("1) Icon Selection Display Fix: ","acurax-social-media-widget" ); ?>
941
+ <?php _e("If you cant find any icons on the icon theme/style selection section, try this fix","acurax-social-media-widget" ); ?>
942
+ <a href="admin.php?page=Acurax-Social-Widget-Troubleshooter&quickfix=1&sid=<?php echo wp_create_nonce('acx_smw_qfix'); ?>" class="acx_trouble_fixit"><?php _e('Click here to try this fix!','acurax-social-media-widget') ;?></a>
943
+ </p>
944
+ <?php
945
+ echo "<span class='acx_smw_q_sep'></span>";
946
+
947
+ }
948
+ }
949
+ add_action('acx_smw_exprt_hook_option_above_page_left','acx_smw_expert_icon_select_html',200);
950
+
951
+ function acx_smw_expert_down_note_html()
952
+ {
953
+ global $smw_page;
954
+ if($smw_page == "Acurax-Social-Widget-Troubleshooter")
955
+ {
956
+ echo "<span class='acx_smw_q_sep'></span>";?>
957
+ <p style="text-align:center;"><?php _e('We will be adding more troubleshooting quick fix options according to requests','acurax-social-media-widget') ;?></p>
958
+ <?php
959
+ echo "<span class='acx_smw_q_sep'></span>";
960
+ acx_smw_quick_form();
961
+ }
962
+ }
963
+ add_action('acx_smw_exprt_hook_option_above_page_left','acx_smw_expert_down_note_html',400);
964
+ function acx_smw_exprt_quick_fix_add()
965
+ {
966
+ global $social_widget_icon_array_order,$smw_fix_applied,$smw_page;
967
+ if(is_serialized($social_widget_icon_array_order))
968
+ {
969
+ $social_widget_icon_array_order = unserialize($social_widget_icon_array_order);
970
+ }
971
+ if(ISSET($_GET['page']))
972
+ {
973
+ $smw_page = $_GET['page'];
974
+ }
975
+ else{
976
+ $smw_page = '';
977
+ }
978
+
979
+ if(ISSET($_GET['quickfix']))
980
+ {
981
+ $get_quickfix = sanitize_text_field($_GET['quickfix']);
982
+ } else
983
+ {
984
+ $get_quickfix = "";
985
+ }
986
+ if(ISSET($_GET['sid']))
987
+ {
988
+ $get_sid = sanitize_text_field($_GET['sid']);
989
+ } else
990
+ {
991
+ $get_sid = "";
992
+ }
993
+ if (!wp_verify_nonce($get_sid,'acx_smw_qfix'))
994
+ {
995
+ $get_sid = "";
996
+ }
997
+ if(!current_user_can('manage_options'))
998
+ {
999
+ $get_sid = "";
1000
+ }
1001
+
1002
+ $fix_applied = 0;
1003
+ if($get_sid != "")
1004
+ {
1005
+ if($get_quickfix == 1)
1006
+ {
1007
+ do_action('acx_asmw_orderarray_refresh');
1008
+ $smw_fix_applied = 1;
1009
+ }
1010
+ }
1011
+ }
1012
+ add_action('acx_smw_exprt_hook_option_exprt_quick','acx_smw_exprt_quick_fix_add',100);
1013
+ /**************************************************** Help Page*******************************************************************/
1014
+ /* Premium Ad on the top starts Here*/
1015
+ function acx_smw_help_html()
1016
+ {
1017
+ $acx_si_smw_hide_advert = get_option('acx_si_smw_hide_advert');
1018
+
1019
+ if($acx_si_smw_hide_advert == "no")
1020
+ {
1021
+ ?>
1022
+ <div id="acx_asmw_premium">
1023
+ <a href="#compare" style="margin: 10px 0px 0px 10px; font-weight: bold; font-size: 14px; display: block;"><?php _e('Fully Featured - Acurax Social Media Widget is Available With Tons of Extra Features!','acurax-social-media-widget') ;?></a><a href="http://clients.acurax.com/order.php?pid=fsmi_power&utm_source=asmw&utm_campaign=day_button" target="_blank" class="buy_now"></a></div> <!-- acx_smw_premium -->
1024
+ <?php }
1025
+ }
1026
+ add_action('acx_smw_help_hook_option_above_page_left','acx_smw_help_html',100);
1027
+ /* Premium Ad on the top Ends Here*/
1028
+
1029
+
1030
+ /* Help/Support HTML starts Here*/
1031
+ function acx_smw_help_support_html()
1032
+ {
1033
+ ?>
1034
+ <h2 style="text-align:center;"><?php _e('Acurax Social Media Widget - Wordpress Plugin - Help/Support','floating-social-media-icon');?></h2>
1035
+ <p style="text-align:center;"><?php _e('Thank you for using Floating Social Media Icon Plugin For Your Wordpress Social Media Profile Linking Need.','acurax-social-media-widget')?></p>
1036
+ <h3 style="text-align:center;"><a href="http://clients.acurax.com/link.php?id=14" target="_blank" class="button"><?php _e('Click here to open the FAQ and Help Page','acurax-social-media-widget'); ?></a></h3>
1037
+ <?php }
1038
+ add_action('acx_smw_help_hook_option_above_page_left','acx_smw_help_support_html',200);
1039
+
1040
+ /* Help/Support HTML starts Here*/
1041
+ /* Comparison HTML starts Here*/
1042
+
1043
+ function acx_smw_help_show_comparison()
1044
+ {
1045
+ $acx_si_smw_hide_advert = get_option('acx_si_smw_hide_advert');
1046
+ if($acx_si_smw_hide_advert == "no")
1047
+ {
1048
+ echo "<span class='acx_smw_q_sep'></span>";
1049
+ do_action('acx_smw_comparison_premium',1);
1050
+ echo "<span class='acx_smw_q_sep'></span>";
1051
+ }
1052
+ }
1053
+ add_action('acx_smw_help_hook_option_above_page_left','acx_smw_help_show_comparison',300);
1054
+ /* Comparison HTML Ends Here*/
1055
+
1056
+ ?>
premium.php DELETED
@@ -1,32 +0,0 @@
1
- <?php
2
- $get_td ="";
3
- if(ISSET($_GET['td']))
4
- {
5
- if(sanitize_text_field($_GET['td']) == 'hide')
6
- {
7
- $get_td = "hide";
8
- }
9
- }
10
- if($get_td == 'hide')
11
- {
12
- update_option('acx_widget_si_td', "hidden");
13
- ?>
14
- <style type='text/css'>
15
- #acx_td
16
- {
17
- display:none;
18
- }
19
- </style>
20
- <div class="error" style="background: none repeat scroll 0pt 0pt infobackground; border: 1px solid inactivecaption; padding: 5px;line-height:16px;">
21
- Thanks again for using the plugin.
22
- </div>
23
- <?php
24
- }
25
- ?>
26
- <div id="acx_help_page">
27
- <?php
28
- socialicons_widget_comparison(1);
29
- acurax_smw_optin();
30
- ?>
31
- <div align="center"><img style="border:1px solid gray;box-shadow:1px 1px 20px -9px black;border-radius: 8px 8px 8px 8px;" src="<?php echo plugins_url('images/money_back.jpg', __FILE__); ?>"></div>
32
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: Acurax
3
 
4
  Tags: Social Media Widget,social icon widget,social media icon,socialmedia,fb widget,business social media,pinterest,social media marketing tools,social profile link,twitter facebook,social media button,pinterest button,social media logos,social media buttons,google plus button
5
  Requires at least: 2.8
6
- Tested up to: 4.4.1
7
  Stable tag: trunk
8
 
9
  Social Media Widget Plugin, A Simple Social Icon Widget To Show Essential Social Media Icons - Can Select Social Media Icon Style , Size and Order.
@@ -67,7 +67,7 @@ To add a social media widget to your sidebar.. your theme must support sidebars.
67
 
68
  = How Many Social Media Widget Can i use? =
69
 
70
- Plugin Support More than one instance of Social Media Widgets, SO you can use as many social media widget on your sidebars and each can have separate icon style or size.
71
 
72
  = Why my social media icons are displaying vertically? =
73
 
@@ -108,6 +108,13 @@ Have more questions ? [Drop a mail](http://www.acurax.com/contact.php/ "Drop an
108
 
109
  == Upgrade Notice ==
110
 
 
 
 
 
 
 
 
111
  = 2.4.1 =
112
  * Dec 07, 2015
113
  * Bug Fixes
@@ -191,6 +198,13 @@ Have more questions ? [Drop a mail](http://www.acurax.com/contact.php/ "Drop an
191
 
192
  == Changelog ==
193
 
 
 
 
 
 
 
 
194
  = 2.4.1 =
195
  * Dec 07, 2015
196
  * Bug Fixes
3
 
4
  Tags: Social Media Widget,social icon widget,social media icon,socialmedia,fb widget,business social media,pinterest,social media marketing tools,social profile link,twitter facebook,social media button,pinterest button,social media logos,social media buttons,google plus button
5
  Requires at least: 2.8
6
+ Tested up to: 4.5.2
7
  Stable tag: trunk
8
 
9
  Social Media Widget Plugin, A Simple Social Icon Widget To Show Essential Social Media Icons - Can Select Social Media Icon Style , Size and Order.
67
 
68
  = How Many Social Media Widget Can i use? =
69
 
70
+ Plugin Support More than one instance of Social Media Widgets, So you can use as many social media widget on your sidebars and each can have separate icon style or size.
71
 
72
  = Why my social media icons are displaying vertically? =
73
 
108
 
109
  == Upgrade Notice ==
110
 
111
+ = 3.0 =
112
+ * Total Programming Logic Changes
113
+ * Perfomance Improvements
114
+ * Optimized Speed
115
+ * Improved and Solid Structure
116
+ * Stable Release
117
+
118
  = 2.4.1 =
119
  * Dec 07, 2015
120
  * Bug Fixes
198
 
199
  == Changelog ==
200
 
201
+ = 3.0 =
202
+ * Total Programming Logic Changes
203
+ * Perfomance Improvements
204
+ * Optimized Speed
205
+ * Improved and Solid Structure
206
+ * Stable Release
207
+
208
  = 2.4.1 =
209
  * Dec 07, 2015
210
  * Bug Fixes
smw-misc.php DELETED
@@ -1,151 +0,0 @@
1
- <?php
2
- if(ISSET($_POST['acurax_social_widget_icon_hidden']))
3
- {
4
- $acurax_social_widget_icon_hidden = $_POST['acurax_social_widget_icon_hidden'];
5
- }
6
- else
7
- {
8
- $acurax_social_widget_icon_hidden = '';
9
- }
10
-
11
- if($acurax_social_widget_icon_hidden == 'Y')
12
- { //Form data sent
13
-
14
- if (!isset($_POST['acx_si_misc_submit'])) die("<br><br>Unknown Error Occurred, Try Again... <a href=''>Click Here</a>");
15
- if (!wp_verify_nonce($_POST['acx_si_misc_submit'],'acx_si_misc_submit')) die("<br><br>Unknown Error Occurred, Try Again... <a href=''>Click Here</a>");
16
- if(!current_user_can('manage_options')) die("<br><br>Sorry, You have no permission to do this action...</a>");
17
-
18
- $acx_si_smw_theme_warning_ignore = sanitize_text_field($_POST['acx_si_smw_theme_warning_ignore']);
19
- update_option('acx_si_smw_theme_warning_ignore', $acx_si_smw_theme_warning_ignore);
20
- $acx_si_smw_acx_service_banners = sanitize_text_field($_POST['acx_si_smw_acx_service_banners']);
21
- update_option('acx_si_smw_acx_service_banners', $acx_si_smw_acx_service_banners);
22
- $acx_si_smw_float_fix = sanitize_text_field($_POST['acx_si_smw_float_fix']);
23
- update_option('acx_si_smw_float_fix', $acx_si_smw_float_fix);
24
- $acx_si_smw_hide_advert = sanitize_text_field($_POST['acx_si_smw_hide_advert']);
25
- update_option('acx_si_smw_hide_advert', $acx_si_smw_hide_advert);
26
- $acx_si_asmw_hide_expert_support_menu = sanitize_text_field($_POST['acx_si_asmw_hide_expert_support_menu']);
27
- update_option('acx_si_asmw_hide_expert_support_menu', $acx_si_asmw_hide_expert_support_menu);
28
- ?>
29
- <div class="updated"><p><strong><?php _e('Acurax Widgets Misc Settings Saved!.' ); ?></strong></p></div>
30
- <?php
31
- }
32
- else
33
- { //Normal page display
34
- $acx_si_smw_theme_warning_ignore = get_option('acx_si_smw_theme_warning_ignore');
35
- $acx_si_smw_acx_service_banners = get_option('acx_si_smw_acx_service_banners');
36
- $acx_si_smw_float_fix = get_option('acx_si_smw_float_fix');
37
- $acx_si_smw_hide_advert = get_option('acx_si_smw_hide_advert');
38
- $acx_si_asmw_hide_expert_support_menu = get_option('acx_si_asmw_hide_expert_support_menu');
39
- // Setting Defaults
40
- if ($acx_si_smw_theme_warning_ignore == "") { $acx_si_smw_theme_warning_ignore = "no"; }
41
- if ($acx_si_smw_acx_service_banners == "") { $acx_si_smw_acx_service_banners = "yes"; }
42
- if ($acx_si_smw_float_fix == "") { $acx_si_smw_float_fix = "no"; }
43
- if ($acx_si_smw_hide_advert == "") { $acx_si_smw_hide_advert = "no"; }
44
- if ($acx_si_asmw_hide_expert_support_menu == "") { $acx_si_asmw_hide_expert_support_menu = "no"; }
45
- } //Main else
46
- ?>
47
- <div class="wrap">
48
- <div style='background: none repeat scroll 0% 0% white; height: 100%; display: inline-block; padding: 8px; margin-top: 5px; border-radius: 15px; min-height: 450px; width: 100%;'>
49
- <?php if($acx_si_smw_hide_advert == "no")
50
- { ?>
51
- <div id="acx_asmw_premium">
52
- <a href="#compare" style="margin: 10px 0px 0px 10px; font-weight: bold; font-size: 14px; display: block;">Fully Featured - Acurax Social Media Widget is Available With Tons of Extra Features!</a><a href="http://clients.acurax.com/floating-socialmedia.php/?utm_source=asmw&utm_campaign=day_button" target="_blank" class="buy_now"></a></div> <!-- acx_fsmi_premium -->
53
- <?php } ?>
54
- <?php echo "<h2 class='acx_asmw_h2'>" . __( 'Acurax Social Widget Misc Settings', 'acx_si_config' ) . "</h2>"; ?>
55
- <div class="acx_asmw_admin_left">
56
- <form name="acurax_si_form" id="acurax_asmw_misc_form" method="post" action="<?php echo str_replace( '%7E', '~', $_SERVER['REQUEST_URI']); ?>">
57
- <input type="hidden" name="acurax_social_widget_icon_hidden" value="Y">
58
-
59
-
60
-
61
-
62
-
63
-
64
-
65
- <div id="acx_asmw_admin_left_section">
66
- <h4><?php _e("Acurax Theme Conflict Settings" ); ?></h4>
67
- <div class="acx_asmw_admin_left_section_c">
68
- <p class="field_label">Widget Icons Vertical <a style="cursor:pointer;" class="asmw_info_premium" lb_title="Icon Shows Vertical Instead of Horizontal" lb_content="If your social media icons is displaying vertically instead of horizontal, You can change this settings.">[?]</a></p>
69
- <select name="acx_si_smw_float_fix">
70
- <option value="yes"<?php if ($acx_si_smw_float_fix == "yes") { echo 'selected="selected"'; } ?>>Yes,Make My Vertical Icons Horizontal</option>
71
- <option value="no"<?php if ($acx_si_smw_float_fix == "no") { echo 'selected="selected"'; } ?>>No, I Dont Have Any Issues</option>
72
- </select>
73
- <span class="field_sep"></span>
74
- <p class="field_label"><?php _e("Ignore Theme Warning?" ); ?></p>
75
- <select name="acx_si_smw_theme_warning_ignore">
76
- <option value="yes"<?php if ($acx_si_smw_theme_warning_ignore == "yes") { echo 'selected="selected"'; } ?>>Yes, Everything is working fine and and i still see theme warning - Fix This</option>
77
- <option value="no"<?php if ($acx_si_smw_theme_warning_ignore == "no") { echo 'selected="selected"'; } ?>>No, I Have No Issues </option>
78
- </select>
79
- <span class="field_sep"></span>
80
- </div> <!-- acx_asmw_admin_left_section_c -->
81
- </div> <!-- acx_asmw_admin_left_section -->
82
-
83
-
84
-
85
-
86
-
87
-
88
-
89
- <div id="acx_asmw_admin_left_section">
90
- <h4><?php _e("Acurax Service/Info Settings" ); ?></h4>
91
- <div class="acx_asmw_admin_left_section_c">
92
- <p class="field_label">Acurax Service Info</p>
93
- <select name="acx_si_smw_acx_service_banners">
94
- <option value="yes"<?php if ($acx_si_smw_acx_service_banners == "yes") { echo 'selected="selected"'; } ?>>Show Acurax Service Banner</option>
95
- <option value="no"<?php if ($acx_si_smw_acx_service_banners == "no") { echo 'selected="selected"'; } ?>>Hide Acurax Service Banner</option>
96
- </select>
97
- <span class="field_sep"></span>
98
- <p class="field_label">Premium Version Info</p>
99
- <select name="acx_si_smw_hide_advert">
100
- <option value="yes"<?php if ($acx_si_smw_hide_advert == "yes") { echo 'selected="selected"'; } ?>>Hide Premium Version Infos</option>
101
- <option value="no"<?php if ($acx_si_smw_hide_advert == "no") { echo 'selected="selected"'; } ?>>Show Premium Version Infos</option>
102
- </select>
103
- <span class="field_sep"></span>
104
-
105
- <p class="field_label"><?php _e("Expert Support Menu" ); ?></p>
106
- <select name="acx_si_asmw_hide_expert_support_menu">
107
- <option value="yes"<?php if ($acx_si_asmw_hide_expert_support_menu == "yes") { echo 'selected="selected"'; } ?>>Hide Expert Support Menu From Acurax </option>
108
- <option value="no"<?php if ($acx_si_asmw_hide_expert_support_menu == "no") { echo 'selected="selected"'; } ?>>Show Expert Support Menu From Acurax</option>
109
- </select>
110
- <span class="field_sep"></span>
111
- </div> <!-- acx_asmw_admin_left_section_c -->
112
- </div> <!-- acx_asmw_admin_left_section -->
113
-
114
-
115
-
116
-
117
-
118
- <input name="acx_si_misc_submit" type="hidden" value="<?php echo wp_create_nonce('acx_si_misc_submit'); ?>" />
119
- <p class="submit">
120
- <input type="submit" name="Submit" class="button" value="<?php _e('Save Settings', 'acx_si_config' ) ?>" />
121
- </p>
122
- </form>
123
- <div id="acx_asmw_sidebar">
124
- <?php acx_asmw_service_banners(); ?>
125
- </div> <!-- acx_csma_sidebar -->
126
- </div> <!-- acx_asmw_admin_left -->
127
- <?php if($acx_si_smw_hide_advert == "no")
128
- {
129
- socialicons_widget_comparison(1);
130
- } ?>
131
- <br>
132
- <p class="widefat" style="padding:8px;width:99%;">
133
- Something Not Working Well? Have a Doubt? Have a Suggestion? - <a href="http://www.acurax.com/contact.php" target="_blank">Contact us now</a> | Need a Custom Designed Theme For your Blog or Website? Need a Custom Header Image? - <a href="http://www.acurax.com/contact.php" target="_blank">Contact us now</a>
134
- </p>
135
- </div>
136
- </div>
137
- <script type="text/javascript">
138
- jQuery( ".asmw_info_premium" ).click(function() {
139
- var lb_title = jQuery(this).attr('lb_title');
140
- var lb_content = jQuery(this).attr('lb_content');
141
- var html= '<div id="acx_asmw_c_icon_p_info_lb_h" style="display:none;"><div class="acx_asmw_c_icon_p_info_c"><span class="acx_asmw_c_icon_p_info_close" onclick="remove_info()"></span><h4>'+lb_title+'</h4><div class="acx_asmw_c_icon_p_info_content">'+lb_content+'</div></div></div> <!-- acx_asmw_c_icon_p_info_lb_h -->';
142
- jQuery( "body" ).append(html)
143
- jQuery( "#acx_asmw_c_icon_p_info_lb_h" ).fadeIn();
144
- });
145
-
146
- function remove_info()
147
- {
148
- jQuery( "#acx_asmw_c_icon_p_info_lb_h" ).fadeOut()
149
- jQuery( "#acx_asmw_c_icon_p_info_lb_h" ).remove();
150
- };
151
- </script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
social-help.php DELETED
@@ -1,21 +0,0 @@
1
- <div id="acx_help_page">
2
- <?php
3
- $acx_si_smw_hide_advert = get_option('acx_si_smw_hide_advert');
4
- if ($acx_si_smw_hide_advert == "") { $acx_si_smw_hide_advert = "no"; }
5
- if($acx_si_smw_hide_advert == "no")
6
- {
7
- ?>
8
- <div id="acx_asmw_premium">
9
- <a href="#compare" style="margin: 10px 0px 0px 10px; font-weight: bold; font-size: 14px; display: block;">Fully Featured - Acurax Social Media Widget is Available With Tons of Extra Features!</a><a href="http://clients.acurax.com/floating-socialmedia.php/?utm_source=asmw&utm_campaign=day_button" target="_blank" class="buy_now"></a></div> <!-- acx_fsmi_premium -->
10
- <?php } ?>
11
- <h2>Acurax Social Media Widget - Wordpress Plugin - Help/Support</h2>
12
- <p style="text-align:center;">Thank you for using Acurax Social Media Widget Plugin For Your Wordpress Social Media Profile Linking Need.</p>
13
- <h3 style="text-align:center;"><a href="http://clients.acurax.com/link.php?id=14" target="_blank" class="button">Click here to open the FAQ and Help Page</a></h3>
14
- <?php
15
- if($acx_si_smw_hide_advert == "no")
16
- {
17
- socialicons_widget_comparison(1);
18
- acurax_smw_optin();
19
- }
20
- ?>
21
- </div> <!-- acx_help_page -->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
social-icon.php DELETED
@@ -1,354 +0,0 @@
1
- <?php
2
- /**********************************************/
3
- $total_themes = ACX_SOCIALMEDIA_WIDGET_TOTAL_THEMES; // DEFINE NUMBER OF THEMES HERE
4
- $total_themes = ($total_themes+1); // DO NOT EDIT THIS
5
- /**********************************************/
6
- if(ISSET($_POST['acurax_social_widget_icon_hidden']))
7
- {
8
- $acurax_social_widget_icon_hidden = $_POST['acurax_social_widget_icon_hidden'];
9
- }
10
- else
11
- {
12
- $acurax_social_widget_icon_hidden = '';
13
- }
14
- if($acurax_social_widget_icon_hidden == 'Y')
15
- { //Form data sent
16
-
17
- if (!isset($_POST['acx_si_settings_submit'])) die("<br><br>Unknown Error Occurred, Try Again... <a href=''>Click Here</a>");
18
- if (!wp_verify_nonce($_POST['acx_si_settings_submit'],'acx_si_settings_submit')) die("<br><br>Unknown Error Occurred, Try Again... <a href=''>Click Here</a>");
19
- if(!current_user_can('manage_options')) die("<br><br>Sorry, You have no permission to do this action...</a>");
20
-
21
-
22
- $acx_widget_si_theme = sanitize_text_field($_POST['acx_widget_si_theme']);
23
- if(!is_numeric($acx_widget_si_theme))
24
- {
25
- $acx_widget_si_theme = 1;
26
- }
27
- update_option('acx_widget_si_theme', $acx_widget_si_theme);
28
- $acx_widget_si_twitter = sanitize_text_field($_POST['acx_widget_si_twitter']);
29
- update_option('acx_widget_si_twitter', $acx_widget_si_twitter);
30
-
31
- $acx_widget_si_facebook = $_POST['acx_widget_si_facebook'];
32
- if($acx_widget_si_facebook != "")
33
- {
34
- if (substr($acx_widget_si_facebook, 0, 4) != 'http') {
35
- $acx_widget_si_facebook = 'http://' . $acx_widget_si_facebook;
36
- } if($acx_widget_si_facebook == "http://#") { $acx_widget_si_facebook = "#"; }
37
- } update_option('acx_widget_si_facebook', $acx_widget_si_facebook);
38
-
39
- /* $acx_widget_si_facebook = $_POST['acx_widget_si_facebook'];
40
- update_option('acx_widget_si_facebook', $acx_widget_si_facebook); */
41
-
42
- $acx_widget_si_youtube = $_POST['acx_widget_si_youtube'];
43
- update_option('acx_widget_si_youtube', $acx_widget_si_youtube);
44
- $acx_widget_si_linkedin = $_POST['acx_widget_si_linkedin'];
45
- update_option('acx_widget_si_linkedin', $acx_widget_si_linkedin);
46
- $acx_widget_si_gplus = $_POST['acx_widget_si_gplus'];
47
- update_option('acx_widget_si_gplus', $acx_widget_si_gplus);
48
- $acx_widget_si_credit = sanitize_text_field(ISSET($_POST['acx_widget_si_credit']));
49
- update_option('acx_widget_si_credit', $acx_widget_si_credit);
50
- $acx_widget_si_icon_size = sanitize_text_field($_POST['acx_widget_si_icon_size']);
51
- update_option('acx_widget_si_icon_size', $acx_widget_si_icon_size);
52
- $acx_widget_si_pinterest = $_POST['acx_widget_si_pinterest'];
53
- update_option('acx_widget_si_pinterest', $acx_widget_si_pinterest);
54
-
55
- $acx_widget_si_feed = $_POST['acx_widget_si_feed'];
56
- update_option('acx_widget_si_feed', $acx_widget_si_feed);
57
- $social_widget_icon_array_order = get_option('social_widget_icon_array_order');
58
- if(is_serialized($social_widget_icon_array_order))
59
- {
60
- $social_widget_icon_array_order = unserialize($social_widget_icon_array_order);
61
- }
62
- $acx_si_smw_hide_advert = get_option('acx_si_smw_hide_advert');
63
- ?>
64
- <div class="updated"><p><strong><?php _e('Acurax Social Icon Widget Settings Saved!.' ); ?></strong></p></div>
65
- <?php
66
- }
67
- else
68
- { //Normal page display
69
- $acx_widget_si_installed_date = get_option('acx_widget_si_installed_date');
70
- if ($acx_widget_si_installed_date=="") { $acx_widget_si_installed_date = time();
71
- update_option('acx_widget_si_installed_date', $acx_widget_si_installed_date);
72
- }
73
- $acx_widget_si_theme = get_option('acx_widget_si_theme');
74
- $acx_widget_si_twitter = get_option('acx_widget_si_twitter');
75
- $acx_widget_si_facebook = get_option('acx_widget_si_facebook');
76
- $acx_widget_si_youtube = get_option('acx_widget_si_youtube');
77
- $acx_widget_si_linkedin = get_option('acx_widget_si_linkedin');
78
- $acx_widget_si_pinterest = get_option('acx_widget_si_pinterest');
79
- $acx_widget_si_feed = get_option('acx_widget_si_feed');
80
- $acx_widget_si_gplus = get_option('acx_widget_si_gplus');
81
- $acx_widget_si_credit = get_option('acx_widget_si_credit');
82
- $acx_widget_si_icon_size = get_option('acx_widget_si_icon_size');
83
- acx_asmw_orderarray_refresh();
84
- $social_widget_icon_array_order = get_option('social_widget_icon_array_order');
85
- if(is_serialized($social_widget_icon_array_order))
86
- {
87
- $social_widget_icon_array_order = unserialize($social_widget_icon_array_order);
88
- }
89
- $acx_si_smw_hide_advert = get_option('acx_si_smw_hide_advert');
90
- // Setting Defaults
91
- if ($acx_widget_si_credit == "") { $acx_widget_si_credit = "no"; }
92
- if ($acx_widget_si_icon_size == "") { $acx_widget_si_icon_size = "32"; }
93
- if ($acx_widget_si_theme == "") { $acx_widget_si_theme = "1"; }
94
- if ($acx_si_smw_hide_advert == "") { $acx_si_smw_hide_advert = "no"; }
95
-
96
- } //Main else
97
- ?>
98
- <!-- To Update Drag and Drop -->
99
- <script type="text/javascript">
100
- jQuery(document).ready(function()
101
- {
102
- jQuery(function()
103
- {
104
- jQuery("#contentLeft ul").sortable(
105
- {
106
- opacity: 0.5, cursor: 'move', update: function()
107
- {
108
- var order = jQuery(this).sortable("serialize") + '&action=acx_asmw_saveorder';
109
- jQuery.post(ajaxurl, order, function(theResponse)
110
- {
111
- jQuery("#contentRight").html(theResponse);
112
- });
113
- }
114
- });
115
- });
116
- });
117
- </script>
118
-
119
-
120
- <div class="wrap">
121
- <div style='background: none repeat scroll 0% 0% white; height: 100%; display: inline-block; padding: 8px; margin-top: 5px; border-radius: 15px; min-height: 450px; width: 100%;'>
122
- <?php if($acx_si_smw_hide_advert == "no")
123
- { ?>
124
- <div id="acx_asmw_premium">
125
- <a href="#compare" style="margin: 10px 0px 0px 10px; font-weight: bold; font-size: 14px; display: block;">Fully Featured - Acurax Social Media Widget is Available With Tons of Extra Features!</a><a href="http://clients.acurax.com/floating-socialmedia.php/?utm_source=asmw&utm_campaign=day_button" target="_blank" class="buy_now"></a></div> <!-- acx_fsmi_premium -->
126
- <?php } ?>
127
- <?php echo "<h2 class='acx_asmw_h2'>" . __( 'Acurax Social Icons Options', 'acx_widget_si_config' ) . "</h2>"; ?>
128
- <div class="acx_asmw_admin_left">
129
- <form name="acurax_si_form" id="acx_asmw_form" method="post" action="<?php echo str_replace( '%7E', '~', $_SERVER['REQUEST_URI']); ?>">
130
- <input type="hidden" name="acurax_social_widget_icon_hidden" value="Y">
131
- <div id="acx_asmw_admin_left_section">
132
- <?php echo "<h4>" . "Your Current Theme is <b>Theme" . $acx_widget_si_theme."</b>" . "</h4>"; ?>
133
- <div class="acx_asmw_admin_left_section_c">
134
- <div class="image_div" style="margin-top:8px;">
135
- <img src="<?php echo plugins_url('images/themes/'.$acx_widget_si_theme.'/twitter.png', __FILE__);?>" style="height:<?php
136
- echo $acx_widget_si_icon_size;?>px;">
137
- <img src="<?php echo plugins_url('images/themes/'.$acx_widget_si_theme.'/facebook.png', __FILE__);?>" style="height:
138
- <?php echo $acx_widget_si_icon_size;?>px;">
139
- <img src="<?php echo plugins_url('images/themes/'.$acx_widget_si_theme.'/googleplus.png', __FILE__);?>" style="height:
140
- <?php echo $acx_widget_si_icon_size;?>px;">
141
- <img src="<?php echo plugins_url('images/themes/'.$acx_widget_si_theme.'/pinterest.png', __FILE__);?>" style="height:
142
- <?php echo $acx_widget_si_icon_size;?>px;">
143
- <img src="<?php echo plugins_url('images/themes/'.$acx_widget_si_theme.'/youtube.png', __FILE__);?>" style="height:<?php
144
- echo $acx_widget_si_icon_size;?>px;">
145
- <img src="<?php echo plugins_url('images/themes/'.$acx_widget_si_theme.'/linkedin.png', __FILE__);?>" style="height:
146
- <?php echo $acx_widget_si_icon_size;?>px;">
147
- <img src="<?php echo plugins_url('images/themes/'.$acx_widget_si_theme.'/feed.png', __FILE__);?>" style="height:
148
- <?php echo $acx_widget_si_icon_size;?>px;">
149
- </div>
150
- </div> <!-- acx_asmw_admin_left_section_c -->
151
- </div> <!-- acx_asmw_admin_left_section -->
152
- <div id="acx_asmw_admin_left_section">
153
- <?php echo "<h4>" . "Icon Theme Settings" . "</h4>"; ?>
154
- <div class="acx_asmw_admin_left_section_c">
155
- <?php
156
- // Starting The Theme List
157
- echo "<div id='acx_widget_si_theme_display' class='widefat'>";
158
- for ($i=1; $i < $total_themes; $i++)
159
- { ?>
160
- <label class="acx_widget_si_single_theme_display <?php if ($acx_widget_si_theme == $i) { echo "selected"; } ?>" id="icon_selection">
161
- <div class="acx_widget_si_single_label">Theme <?php echo $i; ?><br><input type="radio" name="acx_widget_si_theme" value="<?php echo $i; ?>"<?php if ($acx_widget_si_theme == $i) { echo " checked"; } ?>></div>
162
- <div class="image_div">
163
- <?php
164
- foreach ($social_widget_icon_array_order as $key => $value)
165
- {
166
- if ($value == 0)
167
- {
168
- echo "<img src=" . plugins_url('images/themes/'. $i .'/twitter.png', __FILE__) . ">";
169
- } else
170
- if ($value == 1)
171
- {
172
- echo "<img src=" . plugins_url('images/themes/'. $i .'/facebook.png', __FILE__) . ">";
173
- } else
174
- if ($value == 2)
175
- {
176
- echo "<img src=" . plugins_url('images/themes/'. $i .'/googleplus.png', __FILE__) . ">";
177
- } else
178
-
179
- if ($value == 3)
180
- {
181
- echo "<img src=" . plugins_url('images/themes/'. $i .'/pinterest.png', __FILE__) . ">";
182
- } else
183
- if ($value == 4)
184
- {
185
- echo "<img src=" . plugins_url('images/themes/'. $i .'/youtube.png', __FILE__) . ">";
186
- } else
187
- if ($value == 5)
188
- {
189
- echo "<img src=" . plugins_url('images/themes/'. $i .'/linkedin.png', __FILE__) . ">";
190
- }
191
-
192
- if ($value == 6)
193
- {
194
- echo "<img src=" . plugins_url('images/themes/'. $i .'/feed.png', __FILE__) . ">";
195
- }
196
- }
197
- ?>
198
- </div>
199
- </label>
200
- <?php
201
- }
202
- echo "</div> <!-- acx_widget_si_theme_display -->";
203
- // Ending The Theme List
204
- ?>
205
- </div> <!-- acx_asmw_admin_left_section_c -->
206
- </div> <!-- acx_asmw_admin_left_section -->
207
- <div id="acx_asmw_admin_left_section">
208
- <?php echo "<h4>" . "Icon Size Settings" . "</h4>"; ?>
209
- <div class="acx_asmw_admin_left_section_c">
210
- <select name="acx_widget_si_icon_size" style="width: 99.5%">
211
- <option value="16"<?php if ($acx_widget_si_icon_size == "16") { echo 'selected="selected"'; } ?>>16px X 16px </option>
212
- <option value="25"<?php if ($acx_widget_si_icon_size == "25") { echo 'selected="selected"'; } ?>>25px X 25px </option>
213
- <option value="32"<?php if ($acx_widget_si_icon_size == "32") { echo 'selected="selected"'; } ?>>32px X 32px </option>
214
- <option value="40"<?php if ($acx_widget_si_icon_size == "40") { echo 'selected="selected"'; } ?>>40px X 40px </option>
215
- <option value="48"<?php if ($acx_widget_si_icon_size == "48") { echo 'selected="selected"'; } ?>>48px X 48px </option>
216
- <option value="55"<?php if ($acx_widget_si_icon_size == "55") { echo 'selected="selected"'; } ?>>55px X 55px </option>
217
- </select>
218
- </div> <!-- acx_asmw_admin_left_section_c -->
219
- </div> <!-- acx_asmw_admin_left_section -->
220
-
221
- <div id="acx_asmw_admin_left_section">
222
- <?php echo "<h4>" . "Social Media Icon Display Order - Drag and Drop to Reorder" . "</h4>"; ?>
223
- <div class="acx_asmw_admin_left_section_c">
224
- <div id="contentLeft">
225
- <ul>
226
- <?php
227
- foreach ($social_widget_icon_array_order as $key => $value)
228
- {
229
- ?>
230
- <li id="recordsArray_<?php echo $value; ?>">
231
- <?php
232
- if ($value == 0)
233
- {
234
- echo "<img src=" . plugins_url('images/themes/'. $acx_widget_si_theme .'/twitter.png', __FILE__) . "
235
- border='0'><br> Twitter";
236
- } else
237
- if ($value == 1)
238
- {
239
- echo "<img src=" . plugins_url('images/themes/'. $acx_widget_si_theme .'/facebook.png', __FILE__) . "
240
- border='0'><br> Facebook";
241
- } else
242
- if ($value == 2)
243
- {
244
- echo "<img src=" . plugins_url('images/themes/'. $acx_widget_si_theme .'/googleplus.png', __FILE__) . "
245
- border='0'><br> Google Plus";
246
- } else
247
-
248
- if ($value == 3)
249
- {
250
- echo "<img src=" . plugins_url('images/themes/'. $acx_widget_si_theme .'/pinterest.png', __FILE__) . "
251
- border='0'><br> Pinterest";
252
- } else
253
- if ($value == 4)
254
- {
255
- echo "<img src=" . plugins_url('images/themes/'. $acx_widget_si_theme .'/youtube.png', __FILE__) . "
256
- border='0'><br> Youtube";
257
- } else
258
- if ($value == 5)
259
- {
260
- echo "<img src=" . plugins_url('images/themes/'. $acx_widget_si_theme .'/linkedin.png', __FILE__) . "
261
- border='0'><br> Linkedin";
262
- }
263
-
264
- if ($value == 6)
265
- {
266
- echo "<img src=" . plugins_url('images/themes/'. $acx_widget_si_theme .'/feed.png', __FILE__) . "
267
- border='0'><br> Rss Feed";
268
- }
269
- ?>
270
- </li> <?php
271
- } ?>
272
- </ul>
273
- </div>
274
- <div id="contentRight"></div> <!-- contentRight -->
275
- <?php _e("Drag and Reorder Icons (It will automatically save on reorder)" ); ?>
276
- </div> <!-- acx_asmw_admin_left_section_c -->
277
- </div> <!-- acx_asmw_admin_left_section -->
278
-
279
- <div id="acx_asmw_admin_left_section">
280
- <?php echo "<h4>" . "Social Media Configuration" . "</h4>"; ?>
281
- <div class="acx_asmw_admin_left_section_c">
282
- <p class="field_label">
283
- <?php _e("Twitter Username: " ); ?>
284
- </p>
285
- <input type="text" name="acx_widget_si_twitter" value="<?php echo $acx_widget_si_twitter; ?>" size="50" placeholder="acuraxdotcom">
286
- <span class="field_sep"></span>
287
- <p class="field_label">
288
- <?php _e("Facebook Profile URL: " ); ?>
289
- </p>
290
- <input type="text" name="acx_widget_si_facebook" value="<?php echo $acx_widget_si_facebook; ?>" size="50" placeholder="http://www.facebook.com/AcuraxInternational">
291
- <span class="field_sep"></span>
292
- <p class="field_label"><?php _e("Google Plus URL: " ); ?></p>
293
- <input type="text" name="acx_widget_si_gplus" value="<?php echo $acx_widget_si_gplus; ?>" size="50" placeholder="Enter Your Complete Google Plus Url Starting With http://">
294
- <span class="field_sep"></span>
295
- <p class="field_label">
296
- <?php _e("Pinterest URL: " ); ?></p>
297
- <input type="text" name="acx_widget_si_pinterest" value="<?php echo $acx_widget_si_pinterest; ?>" size="50" placeholder="Enter Your Complete Pinterest Url Starting With http://">
298
- <span class="field_sep"></span>
299
- <p class="field_label">
300
- <?php _e("Youtube URL: " ); ?></p>
301
- <input type="text" name="acx_widget_si_youtube" value="<?php echo $acx_widget_si_youtube; ?>" size="50" placeholder="http://www.youtube.com/user/acuraxdotcom">
302
- <span class="field_sep"></span>
303
- <p class="field_label">
304
- <?php _e("Linkedin URL: " ); ?></p>
305
- <input type="text" name="acx_widget_si_linkedin" value="<?php echo $acx_widget_si_linkedin; ?>" size="50" placeholder="http://www.linkedin.com/company/acurax-international">
306
- <span class="field_sep"></span>
307
- <p class="field_label">
308
- <?php _e("Feed URL: " ); ?></p>
309
- <input type="text" name="acx_widget_si_feed" value="<?php echo $acx_widget_si_feed; ?>" size="50" placeholder="http://www.yourwebsite.com/feed">
310
- <span class="field_sep"></span>
311
- <span class="button asmw_info_premium" lb_title="Adding Extra Icons Feature" lb_content="Its possible to add any number of extra icons by uploading them and you can link them to anywhere you need.<br><br>Lets say, you needs to have an icon which links to your contact page or services page, you can do that.<br><br><i>This feature is only available in our premium version - <a href='admin.php?page=Acurax-Social-Widget-Premium' target='_blank'>Compare Features</a> / <a href='http://clients.acurax.com/floating-socialmedia.php' target='_blank'>Order Now</a>">Add Custom Icon</span>
312
- <span class="field_sep"></span>
313
- </div> <!-- acx_asmw_admin_left_section_c -->
314
- </div> <!-- acx_asmw_admin_left_section -->
315
- <input name="acx_si_settings_submit" type="hidden" value="<?php echo wp_create_nonce('acx_si_settings_submit'); ?>" />
316
- <p class="submit">
317
- <input type="submit" name="Submit" class="button button-primary" value="<?php _e('Save Configuration', 'acx_widget_si_config' ) ?>" />
318
- <a name="updated">.</a>
319
- </p>
320
- </form>
321
-
322
- <div id="acx_asmw_sidebar">
323
- <?php acx_asmw_service_banners(); ?>
324
- </div> <!-- acx_csma_sidebar -->
325
-
326
- </div> <!-- acx_asmw_admin_left -->
327
- <hr/>
328
- <?php if($acx_si_smw_hide_advert == "no")
329
- {
330
- socialicons_widget_comparison(1);
331
- acurax_smw_optin();
332
- }
333
- ?>
334
- <br>
335
- <p class="widefat" style="padding:8px;width:99%;">
336
- Something Not Working Well? Have a Doubt? Have a Suggestion? - <a href="http://www.acurax.com/contact.php" target="_blank">Contact us now</a> | Need a Custom Designed Theme For your Blog or Website? Need a Custom Header Image? - <a href="http://www.acurax.com/contact.php" target="_blank">Contact us now</a>
337
- </p>
338
- </div>
339
- </div>
340
- <script type="text/javascript">
341
- jQuery( ".asmw_info_premium" ).click(function() {
342
- var lb_title = jQuery(this).attr('lb_title');
343
- var lb_content = jQuery(this).attr('lb_content');
344
- var html= '<div id="acx_asmw_c_icon_p_info_lb_h" style="display:none;"><div class="acx_asmw_c_icon_p_info_c"><span class="acx_asmw_c_icon_p_info_close" onclick="remove_info()"></span><h4>'+lb_title+'</h4><div class="acx_asmw_c_icon_p_info_content">'+lb_content+'</div></div></div> <!-- acx_asmw_c_icon_p_info_lb_h -->';
345
- jQuery( "body" ).append(html)
346
- jQuery( "#acx_asmw_c_icon_p_info_lb_h" ).fadeIn();
347
- });
348
-
349
- function remove_info()
350
- {
351
- jQuery( "#acx_asmw_c_icon_p_info_lb_h" ).fadeOut()
352
- jQuery( "#acx_asmw_c_icon_p_info_lb_h" ).remove();
353
- };
354
- </script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
troubleshoot.php DELETED
@@ -1,76 +0,0 @@
1
- <?php
2
- if(ISSET($_GET['quickfix']))
3
- {
4
- $get_quickfix = sanitize_text_field($_GET['quickfix']);
5
- } else
6
- {
7
- $get_quickfix = "";
8
- }
9
- if(ISSET($_GET['sid']))
10
- {
11
- $get_sid = sanitize_text_field($_GET['sid']);
12
- } else
13
- {
14
- $get_sid = "";
15
- }
16
- if (!wp_verify_nonce($get_sid,'acx_smw_qfix'))
17
- {
18
- $get_sid = "";
19
- }
20
- if(!current_user_can('manage_options'))
21
- {
22
- $get_sid = "";
23
- }
24
-
25
- $fix_applied = 0;
26
- if($get_sid != "")
27
- {
28
- if($get_quickfix == 1)
29
- {
30
- $social_widget_icon_array_order = array(0,1,2,3,4,5,6); // Number Of Services
31
- $social_widget_icon_array_order = serialize($social_widget_icon_array_order);
32
- update_option('social_widget_icon_array_order', $social_widget_icon_array_order);
33
- $fix_applied = 1;
34
- }
35
- }
36
- $acx_installation_domain = $_SERVER['HTTP_HOST'];
37
- $acx_installation_domain = str_replace("www.","",$acx_installation_domain);
38
- $acx_installation_domain = str_replace(".","_",$acx_installation_domain);
39
- if($acx_installation_domain == "") { $acx_installation_domain = "not_defined";}
40
-
41
- if($_GET['page'] == "Acurax-Social-Widget-Expert-Support")
42
- {
43
- $acx_page_loaded = "_es";
44
- } else
45
- {
46
- $acx_page_loaded = "";
47
- }
48
-
49
-
50
- echo "<div style='background: none repeat scroll 0% 0% white; height: 100%; display: inline-block; padding: 15px; width: 95%; margin-top: 15px; border-radius: 15px; min-height: 450px;'>";
51
-
52
- if($fix_applied == 1)
53
- {
54
- echo "<div style='background: none repeat scroll 0% 0% lightgreen; width: 300px; text-align: center; margin-right: auto; margin-left: auto; padding: 7px 7px 5px; border-top-right-radius: 7px; border-top-left-radius: 7px; border-bottom: 2px solid green;'>Action Completed Successfully</div>";
55
- }
56
- if($_GET['page'] == "Acurax-Social-Widget-Expert-Support")
57
- {
58
- acx_asmw_quick_form();
59
- } else
60
- {
61
- echo "<h2 class='acx_asmw_h2'>Social Media Widget by Acurax</h2>"; ?>
62
- <p style="font-weight:bold;text-align:center;color:darkred;">IMPORTANT NOTE: Please do troubleshooting only if you got instructions from support or know what you are going to do.</p>
63
-
64
- <p class="widefat" style="background: none repeat scroll 0% 0% menu; border-bottom: 2px dashed lavender; border-right: 2px dashed lavender; margin-bottom: 15px; margin-top: 8px; padding: 8px; width: 99%;"> <?php _e("1) Icon Selection Display Fix: " ); ?>
65
- <?php _e("If you cant find any icons on the icon theme/style selection section, try this fix" ); ?>
66
- <a href="admin.php?page=Acurax-Social-Widget-Troubleshooter&quickfix=1&sid=<?php echo wp_create_nonce('acx_smw_qfix'); ?>" class="acx_trouble_fixit">Click here to try this fix!</a>
67
- </p>
68
-
69
-
70
- <p style="text-align:center;">We will be adding more troubleshooting quick fix options according to requests</p>
71
-
72
- <?php
73
- acx_asmw_quick_form();
74
- }
75
- echo "</div>";
76
- ?>