· 6 years ago · Jun 08, 2019, 01:56 PM
1██████╗ ███████╗███╗ ███╗ ██████╗ ███╗ ██╗███████╗ █████╗ ██████╗
2██╔══██╗██╔════╝████╗ ████║██╔═══██╗████╗ ██║██╔════╝██╔══██╗██╔══██╗
3██║ ██║█████╗ ██╔████╔██║██║ ██║██╔██╗ ██║███████╗███████║██║ ██║
4██║ ██║██╔══╝ ██║╚██╔╝██║██║ ██║██║╚██╗██║╚════██║██╔══██║██║ ██║
5██████╔╝███████╗██║ ╚═╝ ██║╚██████╔╝██║ ╚████║███████║██║ ██║██████╔╝
6╚═════╝ ╚══════╝╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝╚══════╝╚═╝ ╚═╝╚═════╝
7
8I am DemonSad <3 ( mec.gov.br ) "Vazamento De Dados Do Ministério da Educação"
9
10Target : https://unique.net ( Unique Communications )
11
12Greetings: TioSan, Angel, Cloudmore, NedLock
13
14-- -------------------------------------------------------------------------------------------------
15"Desculpe Pelo Meu Geito Retartado De Mandar Ataques Desparadamente"
16-----------------------------------------------------------------------------------------------------
17
18-- phpMyAdmin SQL Dump
19-- version 4.0.5
20-- http://www.phpmyadmin.net
21--
22-- Host: localhost
23-- Generation Time: Sep 19, 2013 at 06:19 AM
24-- Server version: 5.1.67-rel14.3-log
25-- PHP Version: 5.3.17
26
27SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
28SET time_zone = "+00:00";
29
30
31/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
32/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
33/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
34/*!40101 SET NAMES utf8 */;
35
36--
37-- Database: `thematri_unique`
38--
39
40-- --------------------------------------------------------
41
42--
43-- Table structure for table `wp_commentmeta`
44--
45
46CREATE TABLE IF NOT EXISTS `wp_commentmeta` (
47 `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
48 `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
49 `meta_key` varchar(255) DEFAULT NULL,
50 `meta_value` longtext,
51 PRIMARY KEY (`meta_id`),
52 KEY `comment_id` (`comment_id`),
53 KEY `meta_key` (`meta_key`)
54) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
55
56-- --------------------------------------------------------
57
58--
59-- Table structure for table `wp_comments`
60--
61
62CREATE TABLE IF NOT EXISTS `wp_comments` (
63 `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
64 `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
65 `comment_author` tinytext NOT NULL,
66 `comment_author_email` varchar(100) NOT NULL DEFAULT '',
67 `comment_author_url` varchar(200) NOT NULL DEFAULT '',
68 `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
69 `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
70 `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
71 `comment_content` text NOT NULL,
72 `comment_karma` int(11) NOT NULL DEFAULT '0',
73 `comment_approved` varchar(20) NOT NULL DEFAULT '1',
74 `comment_agent` varchar(255) NOT NULL DEFAULT '',
75 `comment_type` varchar(20) NOT NULL DEFAULT '',
76 `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
77 `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
78 PRIMARY KEY (`comment_ID`),
79 KEY `comment_post_ID` (`comment_post_ID`),
80 KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
81 KEY `comment_date_gmt` (`comment_date_gmt`),
82 KEY `comment_parent` (`comment_parent`)
83) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
84
85--
86-- Dumping data for table `wp_comments`
87--
88
89INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
90(1, 1, 'Mr WordPress', '', 'http://wordpress.org/', '', '2013-09-11 10:04:24', '2013-09-11 10:04:24', 'Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.', 0, '1', '', '', 0, 0);
91
92-- --------------------------------------------------------
93
94--
95-- Table structure for table `wp_links`
96--
97
98CREATE TABLE IF NOT EXISTS `wp_links` (
99 `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
100 `link_url` varchar(255) NOT NULL DEFAULT '',
101 `link_name` varchar(255) NOT NULL DEFAULT '',
102 `link_image` varchar(255) NOT NULL DEFAULT '',
103 `link_target` varchar(25) NOT NULL DEFAULT '',
104 `link_description` varchar(255) NOT NULL DEFAULT '',
105 `link_visible` varchar(20) NOT NULL DEFAULT 'Y',
106 `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
107 `link_rating` int(11) NOT NULL DEFAULT '0',
108 `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
109 `link_rel` varchar(255) NOT NULL DEFAULT '',
110 `link_notes` mediumtext NOT NULL,
111 `link_rss` varchar(255) NOT NULL DEFAULT '',
112 PRIMARY KEY (`link_id`),
113 KEY `link_visible` (`link_visible`)
114) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
115
116-- --------------------------------------------------------
117
118--
119-- Table structure for table `wp_options`
120--
121
122CREATE TABLE IF NOT EXISTS `wp_options` (
123 `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
124 `option_name` varchar(64) NOT NULL DEFAULT '',
125 `option_value` longtext NOT NULL,
126 `autoload` varchar(20) NOT NULL DEFAULT 'yes',
127 PRIMARY KEY (`option_id`),
128 UNIQUE KEY `option_name` (`option_name`)
129) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=507 ;
130
131--
132-- Dumping data for table `wp_options`
133--
134
135INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
136(1, 'siteurl', 'http://stalexxx.com', 'yes'),
137(2, 'blogname', 'Unique Communications', 'yes'),
138(3, 'blogdescription', '', 'yes'),
139(4, 'users_can_register', '0', 'yes'),
140(5, 'admin_email', 'astalexxx@gmail.com', 'yes'),
141(6, 'start_of_week', '1', 'yes'),
142(7, 'use_balanceTags', '0', 'yes'),
143(8, 'use_smilies', '1', 'yes'),
144(9, 'require_name_email', '1', 'yes'),
145(10, 'comments_notify', '1', 'yes'),
146(11, 'posts_per_rss', '10', 'yes'),
147(12, 'rss_use_excerpt', '0', 'yes'),
148(13, 'mailserver_url', 'mail.example.com', 'yes'),
149(14, 'mailserver_login', 'login@example.com', 'yes'),
150(15, 'mailserver_pass', 'password', 'yes'),
151(16, 'mailserver_port', '110', 'yes'),
152(17, 'default_category', '1', 'yes'),
153(18, 'default_comment_status', 'closed', 'yes'),
154(19, 'default_ping_status', 'closed', 'yes'),
155(20, 'default_pingback_flag', '', 'yes'),
156(21, 'posts_per_page', '10', 'yes'),
157(22, 'date_format', 'F j, Y', 'yes'),
158(23, 'time_format', 'g:i a', 'yes'),
159(24, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
160(25, 'links_recently_updated_prepend', '<em>', 'yes'),
161(26, 'links_recently_updated_append', '</em>', 'yes'),
162(27, 'links_recently_updated_time', '120', 'yes'),
163(28, 'comment_moderation', '', 'yes'),
164(29, 'moderation_notify', '1', 'yes'),
165(30, 'permalink_structure', '/%postname%/', 'yes'),
166(31, 'gzipcompression', '0', 'yes'),
167(32, 'hack_file', '0', 'yes'),
168(33, 'blog_charset', 'UTF-8', 'yes'),
169(34, 'moderation_keys', '', 'no'),
170(35, 'active_plugins', 'a:2:{i:0;s:35:"backupwordpress/backupwordpress.php";i:1;s:25:"subscribe2/subscribe2.php";}', 'yes'),
171(36, 'home', 'http://stalexxx.com', 'yes'),
172(37, 'category_base', '', 'yes'),
173(38, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
174(39, 'advanced_edit', '0', 'yes'),
175(40, 'comment_max_links', '2', 'yes'),
176(41, 'gmt_offset', '0', 'yes'),
177(42, 'default_email_category', '1', 'yes'),
178(43, 'recently_edited', 'a:5:{i:0;s:74:"/home/thematri/public_html/stalexxx.com/wp-content/themes/unique/style.css";i:2;s:75:"/home/thematri/public_html/stalexxx.com/wp-content/themes/unique/footer.php";i:3;s:75:"/home/thematri/public_html/stalexxx.com/wp-content/themes/unique/header.php";i:4;s:86:"/home/thematri/public_html/stalexxx.com/wp-content/themes/unique/inc/custom-header.php";i:5;s:0:"";}', 'no'),
179(44, 'template', 'unique', 'yes'),
180(45, 'stylesheet', 'unique', 'yes'),
181(46, 'comment_whitelist', '1', 'yes'),
182(47, 'blacklist_keys', '', 'no'),
183(48, 'comment_registration', '', 'yes'),
184(49, 'html_type', 'text/html', 'yes'),
185(50, 'use_trackback', '0', 'yes'),
186(51, 'default_role', 'subscriber', 'yes'),
187(52, 'db_version', '24448', 'yes'),
188(53, 'uploads_use_yearmonth_folders', '1', 'yes'),
189(54, 'upload_path', '', 'yes'),
190(55, 'blog_public', '0', 'yes'),
191(56, 'default_link_category', '2', 'yes'),
192(57, 'show_on_front', 'page', 'yes'),
193(58, 'tag_base', '', 'yes'),
194(59, 'show_avatars', '1', 'yes'),
195(60, 'avatar_rating', 'G', 'yes'),
196(61, 'upload_url_path', '', 'yes'),
197(62, 'thumbnail_size_w', '150', 'yes'),
198(63, 'thumbnail_size_h', '150', 'yes'),
199(64, 'thumbnail_crop', '1', 'yes'),
200(65, 'medium_size_w', '300', 'yes'),
201(66, 'medium_size_h', '300', 'yes'),
202(67, 'avatar_default', 'mystery', 'yes'),
203(68, 'large_size_w', '1024', 'yes'),
204(69, 'large_size_h', '1024', 'yes'),
205(70, 'image_default_link_type', 'file', 'yes'),
206(71, 'image_default_size', '', 'yes'),
207(72, 'image_default_align', '', 'yes'),
208(73, 'close_comments_for_old_posts', '', 'yes'),
209(74, 'close_comments_days_old', '14', 'yes'),
210(75, 'thread_comments', '', 'yes'),
211(76, 'thread_comments_depth', '5', 'yes'),
212(77, 'page_comments', '', 'yes'),
213(78, 'comments_per_page', '50', 'yes'),
214(79, 'default_comments_page', 'newest', 'yes'),
215(80, 'comment_order', 'asc', 'yes'),
216(81, 'sticky_posts', 'a:0:{}', 'yes'),
217(82, 'widget_categories', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
218(83, 'widget_text', 'a:0:{}', 'yes'),
219(84, 'widget_rss', 'a:0:{}', 'yes'),
220(85, 'uninstall_plugins', 'a:0:{}', 'no'),
221(86, 'timezone_string', '', 'yes'),
222(87, 'page_for_posts', '0', 'yes'),
223(88, 'page_on_front', '31', 'yes'),
224(89, 'default_post_format', '0', 'yes'),
225(90, 'link_manager_enabled', '0', 'yes'),
226(91, 'initial_db_version', '24448', 'yes'),
227(92, 'wp_user_roles', 'a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:62:
228
229-- Table structure for table `wp_subscribe2`
230--
231
232CREATE TABLE IF NOT EXISTS `wp_subscribe2` (
233 `id` int(11) NOT NULL AUTO_INCREMENT,
234 `email` varchar(64) NOT NULL DEFAULT '',
235 `active` tinyint(1) DEFAULT '0',
236 `date` date NOT NULL DEFAULT '2013-09-16',
237 `time` time NOT NULL DEFAULT '00:00:00',
238 `ip` char(64) NOT NULL DEFAULT 'admin',
239 `conf_date` date DEFAULT NULL,
240 `conf_time` time DEFAULT NULL,
241 `conf_ip` char(64) DEFAULT NULL,
242 PRIMARY KEY (`id`)
243) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
244
245--
246-- Dumping data for table `wp_subscribe2`
247--
248
249INSERT INTO `wp_subscribe2` (`id`, `email`, `active`, `date`, `time`, `ip`, `conf_date`, `conf_time`, `conf_ip`) VALUES
250(1, 'jayson.sevison@live.com', 1, '2013-09-16', '16:00:33', 'admin', NULL, NULL, NULL),
251(2, 'jrdsevison@gmail.com', 1, '2013-09-16', '16:00:33', 'admin', NULL, NULL, NULL),
252(3, 'jrdsevisonjunk@gmail.com', 1, '2013-09-16', '16:00:33', 'admin', NULL, NULL, NULL),
253(4, 'jayson@unique.net', 1, '2013-09-16', '16:00:33', 'admin', NULL, NULL, NULL);
254
255-- --------------------------------------------------------
256
257--
258-- Table structure for table `wp_terms`
259--
260
261CREATE TABLE IF NOT EXISTS `wp_terms` (
262 `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
263 `name` varchar(200) NOT NULL DEFAULT '',
264 `slug` varchar(200) NOT NULL DEFAULT '',
265 `term_group` bigint(10) NOT NULL DEFAULT '0',
266 PRIMARY KEY (`term_id`),
267 UNIQUE KEY `slug` (`slug`),
268 KEY `name` (`name`)
269) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;
270
271--
272-- Dumping data for table `wp_terms`
273--
274
275INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
276(1, 'Uncategorized', 'uncategorized', 0),
277(2, 'Menu 1', 'menu-1', 0),
278(3, 'menu-sidebar', 'menu-sidebar', 0),
279(4, 'menu-sidebar-big', 'menu-sidebar-big', 0),
280(5, 'Footer Menu', 'footer-menu', 0),
281(6, 'cairs.net Learning Center', 'cairs-net-learning-center', 0),
282(7, 'cairs.net Features', 'cairs-net-features', 0),
283(8, 'Support', 'support', 0),
284(9, 'Connect', 'connect', 0),
285(10, 'Test Category', 'test-category', 0);
286
287-- --------------------------------------------------------
288
289--
290-- Table structure for table `wp_term_relationships`
291--
292
293CREATE TABLE IF NOT EXISTS `wp_term_relationships` (
294 `object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
295 `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
296 `term_order` int(11) NOT NULL DEFAULT '0',
297 PRIMARY KEY (`object_id`,`term_taxonomy_id`),
298 KEY `term_taxonomy_id` (`term_taxonomy_id`)
299) ENGINE=InnoDB DEFAULT CHARSET=utf8;
300
301--
302-- Dumping data for table `wp_term_relationships`
303--
304
305INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
306(1, 1, 0),
307(7, 2, 0),
308(29, 2, 0),
309(30, 4, 0),
310(37, 5, 0),
311(38, 5, 0),
312(39, 5, 0),
313(40, 5, 0),
314(41, 6, 0),
315(42, 6, 0),
316(43, 6, 0),
317(44, 6, 0),
318(45, 6, 0),
319(46, 6, 0),
320(47, 6, 0),
321(48, 6, 0),
322(49, 6, 0),
323(50, 6, 0),
324(51, 6, 0),
325(52, 7, 0),
326(53, 7, 0),
327(54, 7, 0),
328(55, 7, 0),
329(56, 7, 0),
330(57, 7, 0),
331(58, 7, 0),
332(59, 7, 0),
333(60, 8, 0),
334(61, 8, 0),
335(62, 8, 0),
336(63, 8, 0),
337(64, 9, 0),
338(65, 9, 0),
339(66, 9, 0),
340(101, 2, 0),
341(104, 2, 0),
342(107, 2, 0),
343(108, 1, 0),
344(112, 4, 0),
345(119, 4, 0),
346(120, 4, 0),
347(121, 4, 0),
348(128, 3, 0),
349(129, 3, 0),
350(130, 3, 0),
351(131, 4, 0),
352(155, 10, 0);
353
354-- --------------------------------------------------------
355
356--
357-- Table structure for table `wp_term_taxonomy`
358--
359
360CREATE TABLE IF NOT EXISTS `wp_term_taxonomy` (
361 `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
362 `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
363 `taxonomy` varchar(32) NOT NULL DEFAULT '',
364 `description` longtext NOT NULL,
365 `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
366 `count` bigint(20) NOT NULL DEFAULT '0',
367 PRIMARY KEY (`term_taxonomy_id`),
368 UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
369 KEY `taxonomy` (`taxonomy`)
370) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;
371
372--
373-- Dumping data for table `wp_term_taxonomy`
374--
375
376INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
377(1, 1, 'category', '', 0, 2),
378(2, 2, 'nav_menu', '', 0, 5),
379(3, 3, 'nav_menu', '', 0, 3),
380(4, 4, 'nav_menu', '', 0, 6),
381(5, 5, 'nav_menu', '', 0, 4),
382(6, 6, 'nav_menu', '', 0, 11),
383(7, 7, 'nav_menu', '', 0, 8),
384(8, 8, 'nav_menu', '', 0, 4),
385(9, 9, 'nav_menu', '', 0, 3),
386(10, 10, 'category', '', 0, 1);
387
388-- --------------------------------------------------------
389
390--
391-- Table structure for table `wp_usermeta`
392--
393
394CREATE TABLE IF NOT EXISTS `wp_usermeta` (
395 `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
396 `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
397 `meta_key` varchar(255) DEFAULT NULL,
398 `meta_value` longtext,
399 PRIMARY KEY (`umeta_id`),
400 KEY `user_id` (`user_id`),
401 KEY `meta_key` (`meta_key`)
402) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=26 ;
403
404--
405-- Dumping data for table `wp_usermeta`
406--
407
408INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
409(1, 1, 'first_name', ''),
410(2, 1, 'last_name', ''),
411(3, 1, 'nickname', 'admin'),
412(4, 1, 'description', ''),
413(5, 1, 'rich_editing', 'true'),
414(6, 1, 'comment_shortcuts', 'false'),
415(7, 1, 'admin_color', 'fresh'),
416(8, 1, 'use_ssl', '0'),
417(9, 1, 'show_admin_bar_front', 'true'),
418(10, 1, 'wp_capabilities', 'a:1:{s:13:"administrator";b:1;}'),
419(11, 1, 'wp_user_level', '10'),
420(12, 1, 'dismissed_wp_pointers', 'wp330_toolbar,wp330_saving_widgets,wp340_choose_image_from_library,wp340_customize_current_theme_link,wp350_media,wp360_revisions,wp360_locks'),
421(13, 1, 'show_welcome_panel', '1'),
422(14, 1, 'wp_dashboard_quick_press_last_post_id', '3'),
423(15, 1, 'managenav-menuscolumnshidden', 'a:4:{i:0;s:11:"link-target";i:1;s:11:"css-classes";i:2;s:3:"xfn";i:3;s:11:"description";}'),
424(16, 1, 'metaboxhidden_nav-menus', 'a:3:{i:0;s:8:"add-post";i:1;s:12:"add-post_tag";i:2;s:15:"add-post_format";}'),
425(17, 1, 'nav_menu_recently_edited', '6'),
426(18, 1, 'wp_user-settings', 'hidetb=1&libraryContent=browse&imgsize=medium&editor=html&align=left'),
427(19, 1, 'wp_user-settings-time', '1379366588'),
428(20, 1, 's2_format', 'html'),
429(21, 1, 's2_autosub', 'yes'),
430(22, 1, 's2_authors', ''),
431(23, 1, 'closedpostboxes_page', 'a:0:{}'),
432(24, 1, 'metaboxhidden_page', 'a:5:{i:0;s:10:"postcustom";i:1;s:16:"commentstatusdiv";i:2;s:11:"commentsdiv";i:3;s:7:"slugdiv";i:4;s:9:"authordiv";}'),
433(25, 1, 's2_subscribed', '');
434
435-- --------------------------------------------------------
436
437--
438-- Table structure for table `wp_users`
439--
440
441CREATE TABLE IF NOT EXISTS `wp_users` (
442 `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
443 `user_login` varchar(60) NOT NULL DEFAULT '',
444 `user_pass` varchar(64) NOT NULL DEFAULT '',
445 `user_nicename` varchar(50) NOT NULL DEFAULT '',
446 `user_email` varchar(100) NOT NULL DEFAULT '',
447 `user_url` varchar(100) NOT NULL DEFAULT '',
448 `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
449 `user_activation_key` varchar(60) NOT NULL DEFAULT '',
450 `user_status` int(11) NOT NULL DEFAULT '0',
451 `display_name` varchar(250) NOT NULL DEFAULT '',
452 PRIMARY KEY (`ID`),
453 KEY `user_login_key` (`user_login`),
454 KEY `user_nicename` (`user_nicename`)
455) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
456
457--
458-- Dumping data for table `wp_users`
459--
460
461INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
462(1, 'admin', '$P$BmKFzCglXTBWERrabSBbREa8qzCVDs.', 'admin', 'astalexxx@gmail.com', '', '2013-09-11 10:04:23', '', 0, 'admin');
463
464/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
465/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
466/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;