· 9 years ago · Jan 03, 2017, 05:32 PM
1-- MySQL dump 10.9
2--
3-- Host: localhost Database: phototun_copp3
4-- ------------------------------------------------------
5-- Server version 4.1.21-standard
6
7/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
8/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
9/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
10/*!40101 SET NAMES utf8 */;
11/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
12/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
13/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
14/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
15
16--
17-- Table structure for table `cpg_albums`
18--
19
20DROP TABLE IF EXISTS `cpg_albums`;
21CREATE TABLE `cpg_albums` (
22 `aid` int(11) NOT NULL auto_increment,
23 `title` varchar(255) NOT NULL default '',
24 `description` text NOT NULL,
25 `visibility` int(11) NOT NULL default '0',
26 `uploads` enum('YES','NO') NOT NULL default 'NO',
27 `comments` enum('YES','NO') NOT NULL default 'YES',
28 `votes` enum('YES','NO') NOT NULL default 'YES',
29 `pos` int(11) NOT NULL default '0',
30 `category` int(11) NOT NULL default '0',
31 `thumb` int(11) NOT NULL default '0',
32 `keyword` varchar(50) default NULL,
33 `alb_password` varchar(32) default NULL,
34 `alb_password_hint` text,
35 PRIMARY KEY (`aid`),
36 KEY `alb_category` (`category`)
37) ENGINE=MyISAM AUTO_INCREMENT=28 DEFAULT CHARSET=latin1;
38
39--
40-- Dumping data for table `cpg_albums`
41--
42
43LOCK TABLES `cpg_albums` WRITE;
44/*!40000 ALTER TABLE `cpg_albums` DISABLE KEYS */;
45INSERT INTO `cpg_albums` (`aid`, `title`, `description`, `visibility`, `uploads`, `comments`, `votes`, `pos`, `category`, `thumb`, `keyword`, `alb_password`, `alb_password_hint`) VALUES (1,'Gril-24.06 06','',0,'NO','YES','YES',100,5,0,NULL,NULL,NULL),(2,'Foto-montaż','',0,'NO','YES','YES',101,6,0,NULL,NULL,NULL),(3,'18 nastka Jolki','',0,'NO','YES','YES',1,10009,0,NULL,NULL,NULL),(4,'Studniówka 20.01.2007','',0,'NO','YES','YES',100,4,0,NULL,NULL,NULL),(5,'PoÅ‚owinki','',0,'NO','YES','YES',101,3,0,NULL,NULL,NULL),(6,'Karwia','',0,'NO','YES','YES',100,2,0,NULL,NULL,NULL),(7,'Åeba','',0,'NO','YES','YES',102,3,0,NULL,NULL,NULL),(19,'Sanki','',0,'NO','YES','YES',103,3,0,NULL,NULL,NULL),(20,'Wigilia','',0,'NO','YES','YES',104,3,0,NULL,NULL,NULL),(21,'Przerwa:)','',0,'NO','YES','YES',105,3,0,NULL,NULL,NULL),(14,'Mapa Powiatu Bartoszyckiego','',0,'NO','YES','YES',100,7,0,NULL,NULL,NULL),(22,'Jordan','',0,'NO','YES','YES',101,4,0,NULL,NULL,NULL),(18,'Nasza SzkoÅ‚a','',0,'NO','YES','YES',102,6,0,NULL,NULL,NULL),(17,'Kinkajmy','',0,'NO','YES','YES',104,7,0,NULL,NULL,NULL),(23,'ZakoÅ„czenie roku','',0,'NO','YES','YES',1,3,0,NULL,NULL,NULL),(24,'Meczyk','',0,'NO','YES','YES',101,5,0,NULL,NULL,NULL),(25,'mleko','',0,'NO','YES','YES',102,5,0,NULL,NULL,NULL),(26,'U Grzesia 09.10.07r','',0,'NO','YES','YES',103,5,0,NULL,NULL,NULL),(27,'Nasza klasa od poczÄ…tku... do koÅ„ca..','',0,'NO','YES','YES',100,6,0,NULL,NULL,NULL);
46/*!40000 ALTER TABLE `cpg_albums` ENABLE KEYS */;
47UNLOCK TABLES;
48
49--
50-- Table structure for table `cpg_banned`
51--
52
53DROP TABLE IF EXISTS `cpg_banned`;
54CREATE TABLE `cpg_banned` (
55 `ban_id` int(11) NOT NULL auto_increment,
56 `user_id` int(11) default NULL,
57 `ip_addr` tinytext,
58 `expiry` datetime default NULL,
59 `brute_force` tinyint(5) NOT NULL default '0',
60 PRIMARY KEY (`ban_id`)
61) ENGINE=MyISAM AUTO_INCREMENT=154 DEFAULT CHARSET=latin1;
62
63--
64-- Dumping data for table `cpg_banned`
65--
66
67LOCK TABLES `cpg_banned` WRITE;
68/*!40000 ALTER TABLE `cpg_banned` DISABLE KEYS */;
69/*!40000 ALTER TABLE `cpg_banned` ENABLE KEYS */;
70UNLOCK TABLES;
71
72--
73-- Table structure for table `cpg_bridge`
74--
75
76DROP TABLE IF EXISTS `cpg_bridge`;
77CREATE TABLE `cpg_bridge` (
78 `name` varchar(40) NOT NULL default '0',
79 `value` varchar(255) NOT NULL default '',
80 UNIQUE KEY `name` (`name`)
81) ENGINE=MyISAM DEFAULT CHARSET=latin1;
82
83--
84-- Dumping data for table `cpg_bridge`
85--
86
87LOCK TABLES `cpg_bridge` WRITE;
88/*!40000 ALTER TABLE `cpg_bridge` DISABLE KEYS */;
89INSERT INTO `cpg_bridge` (`name`, `value`) VALUES ('short_name',''),('license_number',''),('db_database_name',''),('db_hostname',''),('db_username',''),('db_password',''),('full_forum_url',''),('relative_path_of_forum_from_webroot',''),('relative_path_to_config_file',''),('logout_flag',''),('use_post_based_groups',''),('cookie_prefix',''),('table_prefix',''),('user_table',''),('session_table',''),('group_table',''),('group_relation_table',''),('group_mapping_table',''),('use_standard_groups','1'),('validating_group',''),('guest_group',''),('member_group',''),('admin_group',''),('banned_group',''),('global_moderators_group',''),('recovery_logon_failures','0'),('recovery_logon_timestamp','');
90/*!40000 ALTER TABLE `cpg_bridge` ENABLE KEYS */;
91UNLOCK TABLES;
92
93--
94-- Table structure for table `cpg_categories`
95--
96
97DROP TABLE IF EXISTS `cpg_categories`;
98CREATE TABLE `cpg_categories` (
99 `cid` int(11) NOT NULL auto_increment,
100 `owner_id` int(11) NOT NULL default '0',
101 `name` varchar(255) NOT NULL default '',
102 `description` text NOT NULL,
103 `pos` int(11) NOT NULL default '0',
104 `parent` int(11) NOT NULL default '0',
105 `thumb` int(11) NOT NULL default '0',
106 PRIMARY KEY (`cid`),
107 KEY `cat_parent` (`parent`),
108 KEY `cat_pos` (`pos`),
109 KEY `cat_owner_id` (`owner_id`)
110) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
111
112--
113-- Dumping data for table `cpg_categories`
114--
115
116LOCK TABLES `cpg_categories` WRITE;
117/*!40000 ALTER TABLE `cpg_categories` DISABLE KEYS */;
118INSERT INTO `cpg_categories` (`cid`, `owner_id`, `name`, `description`, `pos`, `parent`, `thumb`) VALUES (1,0,'User galleries','This category contains albums that belong to Coppermine users.',0,0,0),(2,0,'I klasa liceum','',3,0,0),(3,0,'II klasa liceum','',2,0,0),(4,0,'III klasa liceum','',1,0,0),(5,0,'Imprezy poza-szkolne:)','',4,0,0),(6,0,'Inne','wszystko',6,0,0),(7,0,'Nasze wioski:p','',5,0,0);
119/*!40000 ALTER TABLE `cpg_categories` ENABLE KEYS */;
120UNLOCK TABLES;
121
122--
123-- Table structure for table `cpg_comments`
124--
125
126DROP TABLE IF EXISTS `cpg_comments`;
127CREATE TABLE `cpg_comments` (
128 `pid` mediumint(10) NOT NULL default '0',
129 `msg_id` mediumint(10) NOT NULL auto_increment,
130 `msg_author` varchar(25) NOT NULL default '',
131 `msg_body` text NOT NULL,
132 `msg_date` datetime NOT NULL default '0000-00-00 00:00:00',
133 `msg_raw_ip` tinytext,
134 `msg_hdr_ip` tinytext,
135 `author_md5_id` varchar(32) NOT NULL default '',
136 `author_id` int(11) NOT NULL default '0',
137 PRIMARY KEY (`msg_id`),
138 KEY `com_pic_id` (`pid`)
139) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
140
141--
142-- Dumping data for table `cpg_comments`
143--
144
145LOCK TABLES `cpg_comments` WRITE;
146/*!40000 ALTER TABLE `cpg_comments` DISABLE KEYS */;
147INSERT INTO `cpg_comments` (`pid`, `msg_id`, `msg_author`, `msg_body`, `msg_date`, `msg_raw_ip`, `msg_hdr_ip`, `author_md5_id`, `author_id`) VALUES (1,1,'ex2','nawet nawet ;] sam bym lepiej nie zrobil;]','2007-03-04 06:11:11','83.9.72.115','83.9.72.115','',7),(3,2,'sonicius',':lol:','2007-03-04 14:30:38','83.9.55.228','83.9.55.228','',1);
148/*!40000 ALTER TABLE `cpg_comments` ENABLE KEYS */;
149UNLOCK TABLES;
150
151--
152-- Table structure for table `cpg_config`
153--
154
155DROP TABLE IF EXISTS `cpg_config`;
156CREATE TABLE `cpg_config` (
157 `name` varchar(40) NOT NULL default '',
158 `value` varchar(255) NOT NULL default '',
159 PRIMARY KEY (`name`)
160) ENGINE=MyISAM DEFAULT CHARSET=latin1;
161
162--
163-- Dumping data for table `cpg_config`
164--
165
166LOCK TABLES `cpg_config` WRITE;
167/*!40000 ALTER TABLE `cpg_config` DISABLE KEYS */;
168INSERT INTO `cpg_config` (`name`, `value`) VALUES ('albums_per_page','24'),('album_list_cols','2'),('display_pic_info','0'),('alb_list_thumb_size','50'),('allowed_mov_types','ALL'),('allowed_doc_types','doc/txt/rtf/pdf/xls/pps/ppt/zip/gz/mdb'),('allowed_snd_types','mp3/midi/mid/wma/wav/ogg'),('allowed_img_types','ALL'),('allow_private_albums','0'),('allow_user_registration','1'),('allow_unlogged_access','0'),('allow_duplicate_emails_addr','0'),('caption_in_thumbview','1'),('views_in_thumbview','1'),('charset','utf-8'),('cookie_name','cpg143'),('cookie_path','/'),('debug_mode','0'),('debug_notice','0'),('default_dir_mode','0777'),('default_file_mode','0666'),('default_sort_order','da'),('ecards_more_pic_target','http://phototuning.roob.pl/klasa//'),('home_target','index.php'),('custom_lnk_name',''),('custom_lnk_url',''),('enable_smilies','1'),('filter_bad_words','1'),('forbiden_fname_char','$/\\\\:*?"'<>|` &'),('fullpath','albums/'),('gallery_admin_email','sonicius@o2.pl'),('gallery_description',''),('gallery_name','Galeria klasy llla'),('im_options','-antialias'),('impath','/usr/bin/'),('jpeg_qual','3000'),('keep_votes_time','30'),('lang','english'),('main_page_layout','breadcrumb/catlist/alblist/random,2/lastup,2'),('main_table_width','700'),('make_intermediate','1'),('max_com_lines','20'),('max_com_size','512'),('max_com_wlength','38'),('max_img_desc_length','5555'),('max_tabs','12'),('max_upl_size','1000'),('max_upl_width_height','3000'),('auto_resize','1'),('min_votes_for_rating','1'),('normal_pfx','normal_'),('offline','0'),('picture_table_width','750'),('picture_width','400'),('read_exif_data','0'),('reg_requires_valid_email','0'),('subcat_level','4'),('theme','hardwired'),('thumbcols','4'),('thumbrows','3'),('thumb_method','gd2'),('thumb_pfx','thumb_'),('thumb_width','100'),('userpics','userpics/'),('vanity_block','1'),('user_profile1_name','Location'),('user_profile2_name','Interests'),('user_profile3_name','Website'),('user_profile4_name','Occupation'),('user_profile5_name',''),('user_profile6_name','koniecznie napisz w tym polu IMIE i NAZWISKO oraz swoją FUNKCJĘ!!!'),('user_field1_name',''),('user_field2_name',''),('user_field3_name',''),('user_field4_name',''),('display_comment_count','1'),('show_private','0'),('first_level','1'),('display_film_strip','1'),('display_film_strip_filename','1'),('max_film_strip_items','5'),('thumb_use','any'),('read_iptc_data','0'),('reg_notify_admin_email','1'),('disable_comment_flood_protect','1'),('upl_notify_admin_email','0'),('display_uploader','1'),('display_filename','0'),('language_list','0'),('language_flags','2'),('theme_list','0'),('language_reset','1'),('theme_reset','1'),('allow_memberlist','1'),('display_faq','0'),('show_bbcode_help','1'),('log_ecards','0'),('email_comment_notification','1'),('enable_zipdownload','1'),('slideshow_interval','5000'),('log_mode','0'),('media_autostart','1'),('enable_encrypted_passwords','1'),('time_offset','0'),('ban_private_ip','0'),('smtp_host',''),('smtp_username',''),('smtp_password',''),('enable_plugins','1'),('enable_help','2'),('categories_alpha_sort','0'),('login_threshold','5'),('login_expiry','10'),('allow_email_change','1'),('clickable_keyword_search','1'),('users_can_edit_pics','0'),('show_which_exif','|0|0|0|0|0|0|0|0|1|0|1|1|0|0|0|0|0|0|0|0|0|0|0|1|0|0|0|1|0|0|0|1|1|0|0|0|0|1|0|0|0|1|0|0|1|1|0|0|0|0|0|1|0|1|1'),('alb_desc_thumb','1'),('link_pic_count','0'),('bridge_enable','0'),('language_fallback','1'),('vote_details','0'),('hit_details','0'),('browse_batch_add','1'),('custom_header_path',''),('custom_footer_path',''),('comments_sort_descending','0'),('report_post','0'),('comments_anon_pfx','Gość'),('admin_activation','1');
169/*!40000 ALTER TABLE `cpg_config` ENABLE KEYS */;
170UNLOCK TABLES;
171
172--
173-- Table structure for table `cpg_dict`
174--
175
176DROP TABLE IF EXISTS `cpg_dict`;
177CREATE TABLE `cpg_dict` (
178 `keyId` bigint(20) NOT NULL auto_increment,
179 `keyword` varchar(60) NOT NULL default '',
180 PRIMARY KEY (`keyId`)
181) ENGINE=MyISAM DEFAULT CHARSET=latin1;
182
183--
184-- Dumping data for table `cpg_dict`
185--
186
187LOCK TABLES `cpg_dict` WRITE;
188/*!40000 ALTER TABLE `cpg_dict` DISABLE KEYS */;
189/*!40000 ALTER TABLE `cpg_dict` ENABLE KEYS */;
190UNLOCK TABLES;
191
192--
193-- Table structure for table `cpg_ecards`
194--
195
196DROP TABLE IF EXISTS `cpg_ecards`;
197CREATE TABLE `cpg_ecards` (
198 `eid` int(11) NOT NULL auto_increment,
199 `sender_name` varchar(50) NOT NULL default '',
200 `sender_email` text NOT NULL,
201 `recipient_name` varchar(50) NOT NULL default '',
202 `recipient_email` text NOT NULL,
203 `link` text NOT NULL,
204 `date` tinytext NOT NULL,
205 `sender_ip` tinytext NOT NULL,
206 PRIMARY KEY (`eid`)
207) ENGINE=MyISAM DEFAULT CHARSET=latin1;
208
209--
210-- Dumping data for table `cpg_ecards`
211--
212
213LOCK TABLES `cpg_ecards` WRITE;
214/*!40000 ALTER TABLE `cpg_ecards` DISABLE KEYS */;
215/*!40000 ALTER TABLE `cpg_ecards` ENABLE KEYS */;
216UNLOCK TABLES;
217
218--
219-- Table structure for table `cpg_exif`
220--
221
222DROP TABLE IF EXISTS `cpg_exif`;
223CREATE TABLE `cpg_exif` (
224 `filename` varchar(255) NOT NULL default '',
225 `exifData` text NOT NULL,
226 UNIQUE KEY `filename` (`filename`)
227) ENGINE=MyISAM DEFAULT CHARSET=latin1;
228
229--
230-- Dumping data for table `cpg_exif`
231--
232
233LOCK TABLES `cpg_exif` WRITE;
234/*!40000 ALTER TABLE `cpg_exif` DISABLE KEYS */;
235/*!40000 ALTER TABLE `cpg_exif` ENABLE KEYS */;
236UNLOCK TABLES;
237
238--
239-- Table structure for table `cpg_favpics`
240--
241
242DROP TABLE IF EXISTS `cpg_favpics`;
243CREATE TABLE `cpg_favpics` (
244 `user_id` int(11) NOT NULL default '0',
245 `user_favpics` text NOT NULL,
246 PRIMARY KEY (`user_id`)
247) ENGINE=MyISAM DEFAULT CHARSET=latin1;
248
249--
250-- Dumping data for table `cpg_favpics`
251--
252
253LOCK TABLES `cpg_favpics` WRITE;
254/*!40000 ALTER TABLE `cpg_favpics` DISABLE KEYS */;
255/*!40000 ALTER TABLE `cpg_favpics` ENABLE KEYS */;
256UNLOCK TABLES;
257
258--
259-- Table structure for table `cpg_filetypes`
260--
261
262DROP TABLE IF EXISTS `cpg_filetypes`;
263CREATE TABLE `cpg_filetypes` (
264 `extension` varchar(7) NOT NULL default '',
265 `mime` varchar(30) default NULL,
266 `content` varchar(15) default NULL,
267 `player` varchar(5) default NULL,
268 PRIMARY KEY (`extension`)
269) ENGINE=MyISAM DEFAULT CHARSET=latin1;
270
271--
272-- Dumping data for table `cpg_filetypes`
273--
274
275LOCK TABLES `cpg_filetypes` WRITE;
276/*!40000 ALTER TABLE `cpg_filetypes` DISABLE KEYS */;
277INSERT INTO `cpg_filetypes` (`extension`, `mime`, `content`, `player`) VALUES ('jpg','image/jpg','image',''),('jpeg','image/jpeg','image',''),('jpe','image/jpe','image',''),('gif','image/gif','image',''),('png','image/png','image',''),('bmp','image/bmp','image',''),('jpc','image/jpc','image',''),('jp2','image/jp2','image',''),('jpx','image/jpx','image',''),('jb2','image/jb2','image',''),('swc','image/swc','image',''),('iff','image/iff','image',''),('asf','video/x-ms-asf','movie','WMP'),('asx','video/x-ms-asx','movie','WMP'),('mpg','video/mpeg','movie','WMP'),('mpeg','video/mpeg','movie','WMP'),('wmv','video/x-ms-wmv','movie','WMP'),('swf','application/x-shockwave-flash','movie','SWF'),('avi','video/avi','movie','WMP'),('mov','video/quicktime','movie','QT'),('mp3','audio/mpeg3','audio','WMP'),('midi','audio/midi','audio','WMP'),('mid','audio/midi','audio','WMP'),('wma','audio/x-ms-wma','audio','WMP'),('wav','audio/wav','audio','WMP'),('ogg','audio/ogg','audio',''),('psd','image/psd','image',''),('ram','audio/x-pn-realaudio','document','RMP'),('ra','audio/x-realaudio','document','RMP'),('rm','audio/x-realmedia','document','RMP'),('tiff','image/tiff','document',''),('tif','image/tif','document',''),('doc','application/msword','document',''),('txt','text/plain','document',''),('rtf','text/richtext','document',''),('pdf','application/pdf','document',''),('xls','application/excel','document',''),('pps','application/powerpoint','document',''),('ppt','application/powerpoint','document',''),('zip','application/zip','document',''),('rar','application/rar','document',''),('gz','application/gz','document',''),('mdb','application/msaccess','document','');
278/*!40000 ALTER TABLE `cpg_filetypes` ENABLE KEYS */;
279UNLOCK TABLES;
280
281--
282-- Table structure for table `cpg_hit_stats`
283--
284
285DROP TABLE IF EXISTS `cpg_hit_stats`;
286CREATE TABLE `cpg_hit_stats` (
287 `sid` int(11) NOT NULL auto_increment,
288 `pid` varchar(100) NOT NULL default '',
289 `ip` varchar(20) NOT NULL default '',
290 `search_phrase` varchar(255) NOT NULL default '',
291 `sdate` bigint(20) NOT NULL default '0',
292 `referer` text NOT NULL,
293 `browser` varchar(255) NOT NULL default '',
294 `os` varchar(50) NOT NULL default '',
295 PRIMARY KEY (`sid`)
296) ENGINE=MyISAM DEFAULT CHARSET=latin1;
297
298--
299-- Dumping data for table `cpg_hit_stats`
300--
301
302LOCK TABLES `cpg_hit_stats` WRITE;
303/*!40000 ALTER TABLE `cpg_hit_stats` DISABLE KEYS */;
304/*!40000 ALTER TABLE `cpg_hit_stats` ENABLE KEYS */;
305UNLOCK TABLES;
306
307--
308-- Table structure for table `cpg_pictures`
309--
310
311DROP TABLE IF EXISTS `cpg_pictures`;
312CREATE TABLE `cpg_pictures` (
313 `pid` int(11) NOT NULL auto_increment,
314 `aid` int(11) NOT NULL default '0',
315 `filepath` varchar(255) NOT NULL default '',
316 `filename` varchar(255) NOT NULL default '',
317 `filesize` int(11) NOT NULL default '0',
318 `total_filesize` int(11) NOT NULL default '0',
319 `pwidth` smallint(6) NOT NULL default '0',
320 `pheight` smallint(6) NOT NULL default '0',
321 `hits` int(10) NOT NULL default '0',
322 `mtime` datetime NOT NULL default '0000-00-00 00:00:00',
323 `ctime` int(11) NOT NULL default '0',
324 `owner_id` int(11) NOT NULL default '0',
325 `owner_name` varchar(40) NOT NULL default '',
326 `pic_rating` int(11) NOT NULL default '0',
327 `votes` int(11) NOT NULL default '0',
328 `title` varchar(255) NOT NULL default '',
329 `caption` text NOT NULL,
330 `keywords` varchar(255) NOT NULL default '',
331 `approved` enum('YES','NO') NOT NULL default 'NO',
332 `galleryicon` int(11) NOT NULL default '0',
333 `user1` varchar(255) NOT NULL default '',
334 `user2` varchar(255) NOT NULL default '',
335 `user3` varchar(255) NOT NULL default '',
336 `user4` varchar(255) NOT NULL default '',
337 `url_prefix` tinyint(4) NOT NULL default '0',
338 `pic_raw_ip` tinytext,
339 `pic_hdr_ip` tinytext,
340 `lasthit_ip` tinytext,
341 `position` int(11) NOT NULL default '0',
342 PRIMARY KEY (`pid`),
343 KEY `owner_id` (`owner_id`),
344 KEY `pic_hits` (`hits`),
345 KEY `pic_rate` (`pic_rating`),
346 KEY `aid_approved` (`aid`,`approved`),
347 KEY `pic_aid` (`aid`),
348 FULLTEXT KEY `search` (`title`,`caption`,`keywords`,`filename`)
349) ENGINE=MyISAM AUTO_INCREMENT=253 DEFAULT CHARSET=latin1;
350
351--
352-- Dumping data for table `cpg_pictures`
353--
354
355LOCK TABLES `cpg_pictures` WRITE;
356/*!40000 ALTER TABLE `cpg_pictures` DISABLE KEYS */;
357INSERT INTO `cpg_pictures` (`pid`, `aid`, `filepath`, `filename`, `filesize`, `total_filesize`, `pwidth`, `pheight`, `hits`, `mtime`, `ctime`, `owner_id`, `owner_name`, `pic_rating`, `votes`, `title`, `caption`, `keywords`, `approved`, `galleryicon`, `user1`, `user2`, `user3`, `user4`, `url_prefix`, `pic_raw_ip`, `pic_hdr_ip`, `lasthit_ip`, `position`) VALUES (1,2,'userpics/','celica2~1.jpg',327634,476340,640,480,8,'2007-04-09 14:47:01',1173015851,1,'sonicius',10000,1,'marcykowy tuning:)','po wypadku..','','YES',0,'','','','',0,'83.9.55.228','83.9.55.228','80.54.57.197',0),(2,2,'userpics/','honda.jpg',181211,303572,640,480,10,'2007-04-09 14:47:21',1173024725,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.55.228','83.9.55.228','80.54.57.197',0),(3,2,'userpics/','tuningzlalaaa.jpg',177155,323045,800,600,12,'2007-04-05 13:39:25',1173028367,1,'sonicius',5333,3,'Uran tuning:D',':p','','YES',0,'','','','',0,'83.9.55.228','83.9.55.228','80.54.57.197',0),(4,2,'userpics/','sei.jpg',176598,292241,640,466,8,'2007-04-05 13:40:07',1173028397,1,'sonicius',0,0,'marcykowy tuning','helmud;d','','YES',0,'','','','',0,'83.9.55.228','83.9.55.228','80.54.57.197',0),(5,2,'userpics/','2.jpg',73727,160117,800,600,7,'2007-03-10 10:30:14',1173028834,1,'sonicius',0,0,'marcykowy tuning:o','','','YES',0,'','','','',0,'83.9.55.228','83.9.55.228','83.9.62.176',0),(8,4,'userpics/','IMG_9043.jpg',61205,157900,640,480,1,'2007-04-12 03:38:08',1175798160,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28','80.51.49.49',0),(9,4,'userpics/','IMG_9042.jpg',60448,158825,640,480,1,'2007-04-12 03:39:35',1175798176,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28','80.51.49.49',0),(10,4,'userpics/','IMG_9041.jpg',74127,185197,640,480,0,'0000-00-00 00:00:00',1175798185,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(11,4,'userpics/','IMG_9046.jpg',62801,163022,640,480,0,'0000-00-00 00:00:00',1175798305,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(12,4,'userpics/','IMG_9045.jpg',61806,163634,640,480,1,'2007-04-12 09:56:10',1175798314,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28','83.9.247.239',0),(13,4,'userpics/','IMG_9044.jpg',63584,163228,640,480,0,'0000-00-00 00:00:00',1175798322,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(14,4,'userpics/','IMG_9056.jpg',66107,167540,640,480,0,'0000-00-00 00:00:00',1175798408,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(15,4,'userpics/','IMG_9055.jpg',75776,190250,640,480,0,'0000-00-00 00:00:00',1175798453,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(16,4,'userpics/','IMG_9047.jpg',72323,181591,640,480,0,'0000-00-00 00:00:00',1175798460,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(17,4,'userpics/','IMG_9069.jpg',60982,158803,640,480,0,'0000-00-00 00:00:00',1175798885,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(18,4,'userpics/','IMG_9059.jpg',67063,170462,640,480,0,'0000-00-00 00:00:00',1175798891,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(19,4,'userpics/','IMG_9058.jpg',57876,155325,640,480,0,'0000-00-00 00:00:00',1175798897,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(20,4,'userpics/','IMG_9078.jpg',59401,152262,640,480,0,'0000-00-00 00:00:00',1175799140,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(21,4,'userpics/','IMG_9077.jpg',47431,127732,640,480,0,'0000-00-00 00:00:00',1175799146,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(22,4,'userpics/','IMG_9073.jpg',50947,134197,640,480,0,'0000-00-00 00:00:00',1175799151,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(23,4,'userpics/','IMG_9085.jpg',71481,182059,640,480,0,'0000-00-00 00:00:00',1175799331,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(24,4,'userpics/','IMG_9081.jpg',85540,208662,640,480,0,'0000-00-00 00:00:00',1175799337,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(25,4,'userpics/','IMG_9080.jpg',88911,215563,640,480,0,'0000-00-00 00:00:00',1175799346,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(26,4,'userpics/','IMG_9088.jpg',88919,215934,640,480,0,'0000-00-00 00:00:00',1175799737,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(27,4,'userpics/','IMG_9089.jpg',87623,210433,640,480,0,'0000-00-00 00:00:00',1175800184,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(28,4,'userpics/','IMG_9087.jpg',94898,226312,640,480,0,'0000-00-00 00:00:00',1175800229,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(29,4,'userpics/','IMG_9086.jpg',88162,214832,640,480,0,'0000-00-00 00:00:00',1175800246,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(30,4,'userpics/','IMG_9093.jpg',90034,213192,640,480,0,'0000-00-00 00:00:00',1175800405,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(31,4,'userpics/','IMG_9091.jpg',90633,216924,640,480,0,'0000-00-00 00:00:00',1175800452,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(32,4,'userpics/','IMG_9090.jpg',90833,217119,640,480,0,'0000-00-00 00:00:00',1175800459,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(33,4,'userpics/','IMG_9096.jpg',82155,201919,640,480,0,'0000-00-00 00:00:00',1175800571,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(34,4,'userpics/','IMG_9095.jpg',85317,207497,640,480,0,'0000-00-00 00:00:00',1175800578,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(35,4,'userpics/','IMG_9094.jpg',83501,203365,640,480,0,'0000-00-00 00:00:00',1175800585,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(36,4,'userpics/','IMG_9099.jpg',75922,187739,640,480,0,'0000-00-00 00:00:00',1175800717,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(37,4,'userpics/','IMG_9098.jpg',70121,175847,640,480,0,'0000-00-00 00:00:00',1175800739,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(38,4,'userpics/','IMG_9097.jpg',86704,207948,640,480,0,'0000-00-00 00:00:00',1175800746,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(39,4,'userpics/','IMG_9102.jpg',93649,225347,640,480,0,'0000-00-00 00:00:00',1175800805,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(40,4,'userpics/','IMG_9101.jpg',61586,159762,640,480,0,'0000-00-00 00:00:00',1175800822,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(41,4,'userpics/','IMG_9100.jpg',83655,204860,640,480,0,'0000-00-00 00:00:00',1175800838,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(42,4,'userpics/','IMG_9105.jpg',80158,199568,640,480,0,'0000-00-00 00:00:00',1175800996,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(43,4,'userpics/','IMG_9104.jpg',82547,201723,640,480,0,'0000-00-00 00:00:00',1175801017,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(44,4,'userpics/','IMG_9103.jpg',90585,218119,640,480,0,'0000-00-00 00:00:00',1175801047,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(45,4,'userpics/','IMG_9109.jpg',95020,227336,640,480,0,'0000-00-00 00:00:00',1175801158,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(46,4,'userpics/','IMG_9107.jpg',61316,161042,640,480,0,'0000-00-00 00:00:00',1175801191,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(47,4,'userpics/','IMG_9106.jpg',77650,196241,640,480,0,'0000-00-00 00:00:00',1175801214,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(48,4,'userpics/','IMG_9112.jpg',92281,223087,640,480,0,'0000-00-00 00:00:00',1175801325,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(49,4,'userpics/','IMG_9111.jpg',93918,228230,640,480,0,'0000-00-00 00:00:00',1175801331,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(50,4,'userpics/','IMG_9110.jpg',103469,244578,640,480,0,'0000-00-00 00:00:00',1175801340,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(51,4,'userpics/','IMG_9115.jpg',93813,224012,640,480,0,'0000-00-00 00:00:00',1175801469,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(52,4,'userpics/','IMG_9114.jpg',87399,213682,640,480,0,'0000-00-00 00:00:00',1175801478,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(53,4,'userpics/','IMG_9113.jpg',87331,216348,640,480,0,'0000-00-00 00:00:00',1175801493,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(54,4,'userpics/','IMG_9127.jpg',95541,230616,640,480,0,'0000-00-00 00:00:00',1175801626,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(55,4,'userpics/','IMG_9126.jpg',83269,206469,640,480,0,'0000-00-00 00:00:00',1175801648,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(56,4,'userpics/','IMG_9125.jpg',98014,236001,640,480,0,'0000-00-00 00:00:00',1175801654,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(57,4,'userpics/','IMG_9134.jpg',77192,193510,640,480,0,'0000-00-00 00:00:00',1175801737,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(58,4,'userpics/','IMG_9130.jpg',87189,212327,640,480,0,'0000-00-00 00:00:00',1175801745,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(59,4,'userpics/','IMG_9128.jpg',96942,232632,640,480,0,'0000-00-00 00:00:00',1175801751,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(60,4,'userpics/','IMG_9144.jpg',57234,147657,640,480,0,'0000-00-00 00:00:00',1175801869,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(61,4,'userpics/','IMG_9139.jpg',61300,162348,640,480,0,'0000-00-00 00:00:00',1175801887,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(62,4,'userpics/','IMG_9137.jpg',66227,166287,640,480,0,'0000-00-00 00:00:00',1175801892,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(63,4,'userpics/','IMG_9188.jpg',72884,182429,640,480,0,'0000-00-00 00:00:00',1175801961,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(64,4,'userpics/','IMG_9187.jpg',71700,179863,640,480,0,'0000-00-00 00:00:00',1175801968,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(65,4,'userpics/','IMG_9150.jpg',70022,170940,640,480,0,'0000-00-00 00:00:00',1175801974,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(66,4,'userpics/','IMG_9231.jpg',73413,179533,640,480,0,'0000-00-00 00:00:00',1175802082,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(67,4,'userpics/','IMG_9230.jpg',59636,152717,640,480,0,'0000-00-00 00:00:00',1175802092,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(68,4,'userpics/','IMG_9229.jpg',51622,139536,640,480,0,'0000-00-00 00:00:00',1175802098,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(69,4,'userpics/','IMG_9241.jpg',56291,150396,640,480,0,'0000-00-00 00:00:00',1175802154,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(70,4,'userpics/','IMG_9240.jpg',60943,153315,640,480,0,'0000-00-00 00:00:00',1175802162,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(71,4,'userpics/','IMG_9239.jpg',51738,135208,640,480,0,'0000-00-00 00:00:00',1175802167,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(72,4,'userpics/','IMG_9242.jpg',56985,151544,640,480,0,'0000-00-00 00:00:00',1175802186,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(73,17,'userpics/','PICT0204_edited_(Small).JPG',61572,187824,640,480,0,'0000-00-00 00:00:00',1175803125,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28',NULL,0),(74,17,'userpics/','PICT0203_edited_(Small).JPG',51980,160121,640,480,1,'2007-04-09 14:43:58',1175803132,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28','80.54.57.197',0),(75,17,'userpics/','PICT010_(Small).jpg',66565,183543,640,402,1,'2007-04-09 14:44:09',1175803139,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28','80.54.57.197',0),(76,17,'userpics/','PICT007_(Small).jpg',64277,185344,640,480,1,'2007-04-09 14:44:19',1175803145,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28','80.54.57.197',0),(77,17,'userpics/','PICT001_(Small).jpg',69243,197712,640,480,1,'2007-04-09 14:44:36',1175803154,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28','80.54.57.197',0),(78,17,'userpics/','PICT0216_edited_(Small).JPG',80748,221420,640,480,2,'2007-04-09 14:44:45',1175803249,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28','80.54.57.197',0),(79,17,'userpics/','PICT0209_edited_(Small).JPG',111810,283235,640,480,1,'2007-04-09 14:44:58',1175803255,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28','80.54.57.197',0),(80,17,'userpics/','PICT0208_edited_(Small).JPG',47865,152236,640,480,1,'2007-04-09 14:45:07',1175803261,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28','80.54.57.197',0),(81,17,'userpics/','PICT0207_edited_(Small).JPG',51055,157114,640,480,2,'2007-04-09 14:45:14',1175803267,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28','80.54.57.197',0),(82,17,'userpics/','PICT0205_edited_(Small).JPG',40086,130110,640,480,1,'2007-04-09 14:45:21',1175803274,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28','80.54.57.197',0),(83,17,'userpics/','IMAGE0017.JPG',612361,676288,1500,1125,1,'2007-04-09 14:45:27',1175803708,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28','80.54.57.197',0),(84,17,'userpics/','jezioro.JPG',1022279,1125414,1500,1125,1,'2007-04-09 14:45:33',1175803723,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.28','80.54.57.197',0),(85,18,'userpics/','PICT5430.jpg',73368,196027,540,405,0,'0000-00-00 00:00:00',1176307129,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.253.212','83.9.253.212',NULL,0),(86,18,'userpics/','PICT5427.jpg',64747,183097,540,405,0,'0000-00-00 00:00:00',1176307185,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.253.212','83.9.253.212',NULL,0),(87,18,'userpics/','PICT5426.jpg',42064,127897,520,390,0,'0000-00-00 00:00:00',1176307193,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.253.212','83.9.253.212',NULL,0),(88,18,'userpics/','PICT5417.jpg',37990,120006,520,390,0,'0000-00-00 00:00:00',1176307198,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.253.212','83.9.253.212',NULL,0),(89,18,'userpics/','1.jpg',63309,180095,520,390,0,'0000-00-00 00:00:00',1176307204,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.253.212','83.9.253.212',NULL,0),(90,18,'userpics/','PICT5433.jpg',59551,171352,540,405,0,'0000-00-00 00:00:00',1176317237,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.253.210','83.9.253.210',NULL,0),(91,18,'userpics/','PICT8135.jpg',81696,223478,540,405,0,'0000-00-00 00:00:00',1176317414,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.253.210','83.9.253.210',NULL,0),(92,18,'userpics/','PICT8128.jpg',59670,170342,520,390,0,'0000-00-00 00:00:00',1176317422,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.253.210','83.9.253.210',NULL,0),(93,18,'userpics/','PICT5436.jpg',40043,126542,520,390,0,'0000-00-00 00:00:00',1176317442,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.253.210','83.9.253.210',NULL,0),(94,18,'userpics/','PICT8233.JPG',1044781,1152151,1500,1125,0,'0000-00-00 00:00:00',1176359507,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(95,18,'userpics/','PICT8257.JPG',1468178,1605156,1500,1125,0,'0000-00-00 00:00:00',1176359518,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(96,18,'userpics/','PICT8258.JPG',1530814,1672161,1500,1125,0,'0000-00-00 00:00:00',1176359533,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(97,18,'userpics/','PICT8135~0.jpg',81696,223478,540,405,0,'0000-00-00 00:00:00',1176363285,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(98,18,'userpics/','PICT8141.jpg',78937,210821,540,405,0,'0000-00-00 00:00:00',1176363290,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(99,18,'userpics/','PICT8188.jpg',38683,120577,520,390,0,'0000-00-00 00:00:00',1176363294,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(100,4,'userpics/','DSCN9209.JPG',1159365,1267865,1500,1125,0,'0000-00-00 00:00:00',1176365877,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(101,4,'userpics/','DSCN9164.JPG',1319245,1448311,1500,1125,0,'0000-00-00 00:00:00',1176365893,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(102,4,'userpics/','DSCN9158.JPG',1250412,1376044,1500,1125,0,'0000-00-00 00:00:00',1176365905,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(103,4,'userpics/','DSCN9157.JPG',1370998,1499367,1500,1125,0,'0000-00-00 00:00:00',1176365917,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(104,4,'userpics/','studniowka_039-2.jpg',961400,1064685,1500,1125,0,'0000-00-00 00:00:00',1176366443,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(105,4,'userpics/','studniowka_050.jpg',1148804,1254705,1500,1125,0,'0000-00-00 00:00:00',1176366469,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(106,4,'userpics/','studniowka_065.jpg',1143653,1244364,1500,1125,0,'0000-00-00 00:00:00',1176366482,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(107,19,'userpics/','DSCN4494.jpg',61759,164738,615,461,0,'0000-00-00 00:00:00',1176366665,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(108,19,'userpics/','DSCN4492.jpg',35861,111190,615,461,0,'0000-00-00 00:00:00',1176366670,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(109,19,'userpics/','DSCN4487.jpg',49738,140884,615,461,0,'0000-00-00 00:00:00',1176366671,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(110,19,'userpics/','DSCN4483.jpg',58345,155633,615,461,0,'0000-00-00 00:00:00',1176366677,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(111,19,'userpics/','DSCN4482.jpg',52032,142867,615,461,0,'0000-00-00 00:00:00',1176366683,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(112,19,'userpics/','DSCN4502.jpg',75583,190488,615,461,1,'2007-04-12 05:45:21',1176366745,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104','80.54.57.197',0),(113,19,'userpics/','DSCN4501.jpg',58881,158641,615,461,0,'0000-00-00 00:00:00',1176366751,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(114,19,'userpics/','DSCN4496.jpg',60091,163657,615,461,0,'0000-00-00 00:00:00',1176366756,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(198,5,'userpics/','18.jpg',65001,174346,614,460,0,'0000-00-00 00:00:00',1176398659,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79',NULL,0),(116,20,'userpics/','DSCN4514.jpg',55005,160276,615,461,0,'0000-00-00 00:00:00',1176366948,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(117,20,'userpics/','DSCN4509.jpg',63443,181531,461,615,0,'0000-00-00 00:00:00',1176366957,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(118,20,'userpics/','DSCN4507.jpg',58885,171066,615,461,0,'0000-00-00 00:00:00',1176366963,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(119,20,'userpics/','DSCN4503.jpg',66547,187169,615,461,0,'0000-00-00 00:00:00',1176366969,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(120,20,'userpics/','DSCN4520.jpg',53466,161414,615,461,0,'0000-00-00 00:00:00',1176367024,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(121,20,'userpics/','DSCN4526.jpg',56515,165534,615,461,0,'0000-00-00 00:00:00',1176367032,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(122,20,'userpics/','DSCN4527.jpg',66365,184827,461,615,0,'0000-00-00 00:00:00',1176367039,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(123,20,'userpics/','DSCN4530.jpg',44954,137284,461,615,0,'0000-00-00 00:00:00',1176367050,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(124,21,'userpics/','DSCN5093.jpg',124556,239361,1024,768,1,'2007-04-12 05:38:48',1176367192,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104','80.54.57.197',0),(125,21,'userpics/','DSCN5085.jpg',119843,222031,1024,768,0,'0000-00-00 00:00:00',1176367199,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(126,21,'userpics/','DSCN5084.jpg',75575,159157,1024,768,0,'0000-00-00 00:00:00',1176367207,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(127,21,'userpics/','DSCN5083.jpg',97982,191795,1024,768,0,'0000-00-00 00:00:00',1176367208,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.242.104','83.9.242.104',NULL,0),(128,6,'userpics/','Bild0412.jpg',339565,504373,800,600,1,'2007-04-12 05:39:26',1176381269,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23','80.54.57.197',0),(129,6,'userpics/','Bild0408.jpg',274877,415517,800,600,0,'0000-00-00 00:00:00',1176381276,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(130,6,'userpics/','Bild0390.jpg',403199,584400,800,600,0,'0000-00-00 00:00:00',1176381282,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(131,6,'userpics/','Bild0379.jpg',176060,277550,800,600,1,'2007-04-12 05:39:55',1176381296,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23','80.54.57.197',0),(132,6,'userpics/','Bild0359.jpg',155312,250214,800,600,1,'2007-04-12 05:39:37',1176381307,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23','80.54.57.197',0),(133,6,'userpics/','Bild0469.jpg',253319,389969,800,600,0,'0000-00-00 00:00:00',1176382364,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(134,6,'userpics/','Bild0455.jpg',185051,291302,800,600,0,'0000-00-00 00:00:00',1176382399,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(135,6,'userpics/','Bild0450.jpg',256796,390100,800,600,0,'0000-00-00 00:00:00',1176382408,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(136,6,'userpics/','Bild0445.jpg',178584,281243,800,600,1,'2007-04-12 09:59:56',1176382425,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23','83.9.247.239',0),(137,6,'userpics/','Bild0427.jpg',264291,403076,800,600,0,'0000-00-00 00:00:00',1176382458,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(138,6,'userpics/','DSCN1302.jpg',141165,233103,600,800,0,'0000-00-00 00:00:00',1176382807,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(139,6,'userpics/','Bild0520.jpg',190473,304293,800,600,0,'0000-00-00 00:00:00',1176382817,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(140,6,'userpics/','Bild0512.jpg',201039,316041,800,600,0,'0000-00-00 00:00:00',1176382861,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(141,6,'userpics/','Bild0495.jpg',265141,410389,800,600,0,'0000-00-00 00:00:00',1176382934,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(142,6,'userpics/','Bild0470.jpg',222071,344707,800,600,1,'2007-04-12 10:01:20',1176382947,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23','83.9.247.239',0),(143,6,'userpics/','DSCN1327.jpg',190905,299677,800,600,0,'0000-00-00 00:00:00',1176383273,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(144,6,'userpics/','DSCN1324.jpg',238207,375216,800,600,0,'0000-00-00 00:00:00',1176383280,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(145,6,'userpics/','DSCN1323.jpg',342286,512755,800,600,0,'0000-00-00 00:00:00',1176383287,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(146,6,'userpics/','DSCN1314.jpg',383176,553756,600,800,0,'0000-00-00 00:00:00',1176383297,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(147,6,'userpics/','DSCN1313.jpg',279458,426562,800,600,0,'0000-00-00 00:00:00',1176383303,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(148,6,'userpics/','Karwia__]_060.jpg',192567,302148,800,600,0,'0000-00-00 00:00:00',1176384630,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(149,6,'userpics/','DSCN1343.jpg',176078,278387,600,800,0,'0000-00-00 00:00:00',1176384638,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(150,6,'userpics/','DSCN1335.jpg',255475,402508,800,600,0,'0000-00-00 00:00:00',1176384675,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(151,6,'userpics/','DSCN1332.jpg',341742,513748,800,600,0,'0000-00-00 00:00:00',1176384686,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(152,6,'userpics/','DSCN1331.jpg',292246,444545,800,600,0,'0000-00-00 00:00:00',1176384696,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(153,6,'userpics/','Karwia__]_070.jpg',171705,270662,800,600,0,'0000-00-00 00:00:00',1176384896,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(154,6,'userpics/','Karwia__]_121.jpg',276776,427175,800,600,0,'0000-00-00 00:00:00',1176384908,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(155,6,'userpics/','Karwia__]_128.jpg',274689,421777,800,600,0,'0000-00-00 00:00:00',1176384919,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(156,6,'userpics/','Karwia__]_130.jpg',328205,497185,600,800,0,'0000-00-00 00:00:00',1176384928,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(157,22,'userpics/','DSCN8418.JPG',1042848,1133403,1125,1500,1,'2007-04-12 09:53:50',1176385721,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23','83.9.247.239',0),(158,22,'userpics/','DSCN8422.JPG',1523578,1670525,1125,1500,1,'2007-04-12 09:54:10',1176385737,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23','83.9.247.239',0),(159,22,'userpics/','DSCN8415.JPG',1056942,1135638,1125,1500,0,'0000-00-00 00:00:00',1176385786,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(160,22,'userpics/','DSCN8414.JPG',923264,1008112,1500,1125,0,'0000-00-00 00:00:00',1176385801,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(161,22,'userpics/','DSCN8413.JPG',886513,965882,1500,1125,1,'2007-04-12 09:54:26',1176385833,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23','83.9.247.239',0),(162,22,'userpics/','DSCN8417.JPG',972455,1067978,1500,1125,0,'0000-00-00 00:00:00',1176386075,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(163,22,'userpics/','DSCN8416.JPG',922726,1007164,1500,1125,0,'0000-00-00 00:00:00',1176386101,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(164,23,'userpics/','DSCN5765_(Custom).JPG',71520,180652,600,800,0,'0000-00-00 00:00:00',1176388210,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(165,23,'userpics/','DSCN5740_(Medium).JPG',88835,208026,800,600,0,'0000-00-00 00:00:00',1176388230,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(166,23,'userpics/','DSCN5709_(Medium).JPG',122760,267155,800,600,0,'0000-00-00 00:00:00',1176388285,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(167,23,'userpics/','DSCN5706_(Medium).JPG',95496,216757,800,600,0,'0000-00-00 00:00:00',1176388322,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(168,23,'userpics/','DSCN5697_(Medium).JPG',76803,191184,800,600,0,'0000-00-00 00:00:00',1176388495,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(169,23,'userpics/','DSCN5773_(Custom).JPG',62068,160789,600,800,0,'0000-00-00 00:00:00',1176389818,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(170,23,'userpics/','DSCN5772_(Custom).JPG',54073,142184,600,800,0,'0000-00-00 00:00:00',1176389836,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(171,23,'userpics/','DSCN5771_(Custom).JPG',54802,147353,600,800,1,'2007-04-12 09:58:19',1176389847,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23','83.9.247.239',0),(172,23,'userpics/','DSCN5770_(Custom).JPG',68218,171663,600,800,0,'0000-00-00 00:00:00',1176389874,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(173,23,'userpics/','DSCN5765_(Custom)~0.JPG',71520,180652,600,800,0,'0000-00-00 00:00:00',1176389891,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(174,23,'userpics/','DSCN5778_(Custom).JPG',49075,124439,600,800,0,'0000-00-00 00:00:00',1176389989,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(175,23,'userpics/','DSCN5777_(Custom).JPG',66635,170372,600,800,0,'0000-00-00 00:00:00',1176390000,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(176,23,'userpics/','DSCN5776_(Custom).JPG',49063,134782,600,800,0,'0000-00-00 00:00:00',1176390013,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(177,23,'userpics/','DSCN5775_(Custom).JPG',50991,136827,600,800,1,'2007-04-12 09:58:33',1176390029,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23','83.9.247.239',0),(178,23,'userpics/','DSCN5774_(Custom).JPG',54067,144457,600,800,0,'0000-00-00 00:00:00',1176390042,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(179,23,'userpics/','DSCN5781_(Custom).JPG',42714,112907,600,800,0,'0000-00-00 00:00:00',1176390162,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(180,23,'userpics/','DSCN5780_(Custom).JPG',40384,107930,600,800,0,'0000-00-00 00:00:00',1176390171,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(181,23,'userpics/','DSCN5779_(Custom).JPG',49348,125575,600,800,1,'2007-04-12 09:57:51',1176390182,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23','83.9.247.239',0),(182,14,'userpics/','powiaty.GIF',4057,12893,400,309,0,'0000-00-00 00:00:00',1176391446,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79',NULL,0),(183,5,'userpics/','5.JPG',113908,226983,844,634,0,'0000-00-00 00:00:00',1176391991,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79',NULL,0),(184,5,'userpics/','4.JPG',167940,291171,1024,768,1,'2007-04-12 10:05:41',1176392000,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79','83.9.247.239',0),(185,5,'userpics/','3.JPG',111932,226292,844,634,1,'2007-04-12 10:05:04',1176392008,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79','83.9.247.239',0),(186,5,'userpics/','2.JPG',121203,239944,844,634,0,'0000-00-00 00:00:00',1176392019,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79',NULL,0),(187,5,'userpics/','1.JPG',105442,225265,800,600,1,'2007-04-12 10:04:32',1176392033,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79','83.9.247.239',0),(188,5,'userpics/','9.JPG',105459,222631,768,576,0,'0000-00-00 00:00:00',1176395819,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79',NULL,0),(189,5,'userpics/','8.JPG',106034,226219,768,576,1,'2007-04-12 10:03:59',1176395828,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79','83.9.247.239',0),(190,5,'userpics/','7.JPG',104177,217547,768,571,1,'2007-04-12 10:03:39',1176395843,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79','83.9.247.239',0),(191,5,'userpics/','6.JPG',65287,159583,768,576,0,'0000-00-00 00:00:00',1176395855,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79',NULL,0),(192,5,'userpics/','10.jpg',71896,186414,614,442,0,'0000-00-00 00:00:00',1176396403,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79',NULL,0),(193,5,'userpics/','12.jpg',66358,178560,614,460,0,'0000-00-00 00:00:00',1176396524,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79',NULL,0),(194,5,'userpics/','11.jpg',64088,173641,614,460,0,'0000-00-00 00:00:00',1176396532,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79',NULL,0),(195,5,'userpics/','15.jpg',52634,149876,614,460,0,'0000-00-00 00:00:00',1176397591,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79',NULL,0),(196,5,'userpics/','14.jpg',62637,169875,614,460,0,'0000-00-00 00:00:00',1176397597,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79',NULL,0),(197,5,'userpics/','13.jpg',69370,184730,614,460,0,'0000-00-00 00:00:00',1176397619,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79',NULL,0),(199,5,'userpics/','17.jpg',55882,157453,614,460,0,'0000-00-00 00:00:00',1176398669,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79',NULL,0),(200,5,'userpics/','16.jpg',67639,179763,614,460,0,'0000-00-00 00:00:00',1176398674,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79',NULL,0),(201,5,'userpics/','19.jpg',57595,160816,614,460,0,'0000-00-00 00:00:00',1176398711,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79',NULL,0),(202,7,'userpics/','DSCN6324_(Medium).JPG',97489,216563,800,600,0,'0000-00-00 00:00:00',1176400051,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(203,7,'userpics/','DSCN6324_(Medium)~0.JPG',97489,216563,800,600,0,'0000-00-00 00:00:00',1176400060,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(204,7,'userpics/','DSCN6286_(Medium).JPG',61075,182010,450,600,0,'0000-00-00 00:00:00',1176400071,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(205,7,'userpics/','DSCN6281_(Medium).JPG',56809,168342,450,600,0,'0000-00-00 00:00:00',1176400082,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(206,7,'userpics/','DSCN6276_(Medium).JPG',85438,201564,800,600,0,'0000-00-00 00:00:00',1176400093,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(207,7,'userpics/','DSCN6436_(Medium).JPG',50360,126057,800,600,0,'0000-00-00 00:00:00',1176400242,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(208,7,'userpics/','DSCN6404_(Medium).JPG',102570,235005,800,600,0,'0000-00-00 00:00:00',1176400253,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(209,7,'userpics/','DSCN6366_(Medium).JPG',84847,192182,800,600,0,'0000-00-00 00:00:00',1176400264,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(210,7,'userpics/','DSCN6360_(Medium).JPG',39248,125701,450,600,0,'0000-00-00 00:00:00',1176400306,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(211,7,'userpics/','DSCN6339_(Medium).JPG',45146,135271,450,600,0,'0000-00-00 00:00:00',1176400315,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(212,7,'userpics/','DSCN6442_(Medium).JPG',46529,123188,800,600,0,'0000-00-00 00:00:00',1176400542,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(213,7,'userpics/','DSCN6468_(Medium).JPG',41005,106704,800,600,0,'0000-00-00 00:00:00',1176400554,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(214,7,'userpics/','DSCN6486_(Medium).JPG',31669,84049,800,600,0,'0000-00-00 00:00:00',1176400805,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(215,1,'userpics/','IMG_1235_(Small).jpg',24544,89206,640,480,0,'0000-00-00 00:00:00',1176401278,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(216,1,'userpics/','IMG_1167_(Small).jpg',41552,132061,640,480,0,'0000-00-00 00:00:00',1176401287,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(217,1,'userpics/','DSC09625_(Small).JPG',46987,152300,640,480,0,'0000-00-00 00:00:00',1176401298,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(218,1,'userpics/','DSC09613_(Small).JPG',52152,161184,640,480,0,'0000-00-00 00:00:00',1176401307,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(219,1,'userpics/','IMG_1255_(Small).jpg',35856,122482,640,480,0,'0000-00-00 00:00:00',1176401711,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(220,1,'userpics/','IMG_1246_(Small).jpg',41282,137911,640,480,0,'0000-00-00 00:00:00',1176401725,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(221,1,'userpics/','IMG_1245_(Small).jpg',41899,137426,640,480,0,'0000-00-00 00:00:00',1176401744,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(222,1,'userpics/','DSC09577_(Small).JPG',50140,160636,640,480,0,'0000-00-00 00:00:00',1176401765,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(223,1,'userpics/','DSC09592_(Small).JPG',23089,88701,640,480,0,'0000-00-00 00:00:00',1176401968,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(224,1,'userpics/','DSC09603_(Small).JPG',42826,144300,640,480,0,'0000-00-00 00:00:00',1176401979,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(225,24,'userpics/','IMG_1051_(Small).jpg',35512,120111,640,480,0,'0000-00-00 00:00:00',1176402167,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(226,24,'userpics/','IMG_1072_(Small).jpg',56704,174624,640,480,0,'0000-00-00 00:00:00',1176402440,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(227,27,'userpics/','1a_2004_(Small).JPG',79020,213532,640,445,0,'0000-00-00 00:00:00',1176402578,1,'sonicius',0,0,'','Nasze pierwsze wspólne zdjÄ™cie. \r\nKlasa:\r\nNa dole od lewej: Anna Doroszko, Alicja ÅšliwczyÅ„ska, Ewa Pawlak, Krystian Masalski, Agnieszka Kalinowska, Ewelina PaÅ‚yga, Wojciech Sulima, Grzegorz Marzec, Maciej Sadowski, Kamil WÄ…sewicz.\r\nW Å›rodku od lewej:\r\nÅukasz GOtowt, Jolanta Ostromecka, Kinga Paczkowska, Grzegorz Åukasik, Anna Matysiak, Åukasz Rymko, Agnieszka Dowejko, Katarzyna Stelmarska, Natalia PrzybyÅ‚ek, Monika Czaplicka, Ewelina Pawlik, mgr Beata Machnowska, Kamil Mazurek.\r\nNa górze od lewej:\r\nMarcin Jodko, Patryk Lebioda, Damian Sienkiewicz, Witold Kacperski, MichaÅ‚ Sochaj, Damian KuÅ›, Maciej Uhryn, PaweÅ‚ Prach, Piotr SzymaÅ„ski, MichaÅ‚ Å»ukowski.','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79',NULL,0),(228,24,'userpics/','IMG_10855_(Small).jpg',35216,123411,640,480,0,'0000-00-00 00:00:00',1176402763,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(229,24,'userpics/','IMG_1096_(Small).jpg',40354,132098,640,480,0,'0000-00-00 00:00:00',1176402769,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(230,24,'userpics/','IMG_1091_(Small).jpg',50891,159509,640,480,0,'0000-00-00 00:00:00',1176402776,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(231,27,'userpics/','Ia_(Small).jpg',83072,219929,640,434,0,'0000-00-00 00:00:00',1176402790,1,'sonicius',0,0,'','Ia po raz drugi :) Tym razem wiosnÄ… i bez wychowawcy. Klasa: Od lewej na dole:\r\nMaciej Sadowski, Anna Doroszko, Monika Czaplicka, Wojciech Sulima, Grzegorz Marzec, Mateusz Sadowski, Krystian Masalski, Åukasz Gotowt, Kamil Mazurek, Åukasz Rymko.\r\nOd lewej w Å›rodku:\r\nGrzegorz Åukasik, Jolanta OStromecka, Ewa Pawlak, Marcin Jodko, Agnieszka Kalinowska, Witold Kacperski, Ewelina PaÅ‚yga, Agnieszka Dowejko, Katarzyna Stelmarska, Natalia PrzybyÅ‚ek, MichaÅ‚ Å»ukowski, Damian KuÅ›.\r\nOd lewej na górze:\r\nPatryk Lebioda, Kinga Paczkowska, MichaÅ‚ Sochaj, PaweÅ‚ Prach, Maciej Uhryn, Damian Sienkiewicz, Piotr SzymaÅ„ski, Kamil WÄ…sewicz, Alicja ÅšliwczyÅ„ska, Anna Matysiak.','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79',NULL,0),(232,27,'userpics/','IIa_(Small).jpg',80251,219758,640,457,0,'0000-00-00 00:00:00',1176402880,1,'sonicius',0,0,'','Kolejny rok szkolny. Z nowÄ… wychowawczyniÄ… - mgr MariÄ… KarólewskÄ…. \r\n Klasa: \r\nNa dole od lewej:\r\nÅukasz Gotowt, Grzegorz Marzec, Krystian Masalski, Anna Doroszko, Kinga Paczkowska, Alicja ÅšliwczyÅ„ska, Anna Matysiak, Katarzyna Stelmarska, Monika CZaplicka, Agnieszka Kalinowska, Kamil WÄ…sewicz.\r\nW Å›rodku od lewej:\r\nEwelina Pawlik, Kamil Mazurek, Witold Kacperski, Patryk Lebioda, Ewa Pawlak, Jolanta Ostromecka, Agnieszka Dowejko, Ewelina PAÅ‚yga, mgr Maria Karólewska, Piotr SzymaÅ„ski, Marcin Jodko, Damian KuÅ›, Damian Sienkiewicz.\r\nNa górze od lewej:\r\nMaciej Uhryn, WOjciech Sulima, Maciej Sadowski, Mateusz Sadowski, MichaÅ‚ Sochaj, MichaÅ‚ Å»ukowski, Åukasz Rymko, PaweÅ‚ Prach.\r\n','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79',NULL,0),(233,25,'userpics/','PIC00452_(Small).JPG',49810,154573,640,480,0,'0000-00-00 00:00:00',1176403128,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(234,27,'userpics/','IIIa_1_(Small).jpg',93099,258598,640,470,0,'0000-00-00 00:00:00',1176403130,1,'sonicius',0,0,'','Klasa maturalna. W niezmienionym skÅ‚adzie i jak widać z uÅ›miechami na twarzy rozpoczynamy ten ostatni i najcięższy ;) rok nauki w naszym LO.\r\nKlasa:\r\nNa dole od lewej:\r\nKinga Paczkowska, Ewa Pawlak, Mateusz Sadowski, mgr Maria Karólewska, Grzegorz Marzec, Ewelina PaÅ‚yga, Monika Czaplicka, Agnieszka Kalinowska.\r\nW Å›rodku od lewej:\r\nÅukasz GOtowt, Anna Doroszko, Jolanta Ostromecka, Agnieszka Dowejko, Katarzyna Stelmarska, Natalia PrzybyÅ‚ek, Krystian Masalski, Åukasz Rymko, Damian KuÅ›.\r\nNa górze od lewej:\r\nGrzegorz Åukasik, Maciej Sadowski, Patryk Lebioda, Maciej Uhryn, Witold Kacperski, Damian Sienkiewicz, PaweÅ‚ Prach, Kamil Mazurek, Kamil WÄ…sewicz, MichaÅ‚ Sochaj, Piotr SzymaÅ„ski, Marcin Jodko.','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79',NULL,0),(235,25,'userpics/','PIC00449_(Small).JPG',21559,100280,360,480,0,'0000-00-00 00:00:00',1176403137,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(236,25,'userpics/','PIC00459_(Small).JPG',59190,172906,640,480,0,'0000-00-00 00:00:00',1176403220,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(237,25,'userpics/','PIC00454_(Small).JPG',42364,138792,640,480,0,'0000-00-00 00:00:00',1176403234,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(238,27,'userpics/','IIIa_2_(Small).jpg',87775,242365,640,471,0,'0000-00-00 00:00:00',1176403302,1,'sonicius',0,0,'','IIIa w wydaniu specjalnym ;)\r\nKlasa:\r\nOd lewej w pierwszym rzÄ™dzie:\r\nMaciej Uhryn, Witold Kacperski, Ewelina PaÅ‚yga, Monika Czaplicka.\r\nOd lewej w drugim rzÄ™dzie:\r\nKinga Paczkowska, Agnieszka Kalinowska, Anna Doroszko, PaweÅ‚ Prach, Natalia PzrybyÅ‚ek, Grzegorz Marzec, Mateusz Sadowski, Damian KuÅ›, Kamil WÄ…sewicz, Piotr SzymaÅ„ski.\r\nOd lewej W trzecim rzÄ™dzie:\r\nEwa Pawlak, Agnieszka Dowejko, Katarzyna Stelmarska, Åukasz Rymko.\r\nOd lewej na górze:\r\nJolanta Ostromecka, Patryk Lebioda, Maciej Sadowski, Krystian Masalski, Anna Matysiak i Damian Sienkiewicz, Marcin Jodko, MichaÅ‚ Å»ukowski, MichaÅ‚ Sochaj, Kamil Mazurek.\r\nNad wszystkimi czuwa mgr Maria Karólewska.','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79',NULL,0),(239,25,'userpics/','PIC00461_(Small).JPG',52994,164977,640,480,0,'0000-00-00 00:00:00',1176403401,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(240,25,'userpics/','PIC00462_(Small).JPG',53650,162413,640,480,0,'0000-00-00 00:00:00',1176403470,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(241,25,'userpics/','PIC00464_(Small).JPG',50341,155841,640,480,0,'0000-00-00 00:00:00',1176403553,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(242,25,'userpics/','PIC00473_(Small).JPG',65326,186831,640,480,0,'0000-00-00 00:00:00',1176405060,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79',NULL,0),(243,25,'userpics/','PIC00473_(Small)~0.JPG',65326,186831,640,480,0,'0000-00-00 00:00:00',1176405265,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(244,26,'userpics/','IMG_4028_(Small).jpg',46033,130823,640,361,0,'0000-00-00 00:00:00',1176405701,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79',NULL,0),(245,26,'userpics/','IMG_4032_(Small).jpg',44142,140167,640,480,0,'0000-00-00 00:00:00',1176405742,1,'sonicius',0,0,'','','','YES',0,'','','','',0,'83.9.228.79','83.9.228.79',NULL,0),(246,26,'userpics/','PIC00473_(Small)~1.JPG',39406,132062,640,480,0,'0000-00-00 00:00:00',1176405764,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(247,26,'userpics/','IMG_3978_(Small).jpg',35220,108940,640,361,0,'0000-00-00 00:00:00',1176405949,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(248,26,'userpics/','IMG_3969_(Small)_(2).jpg',46564,146715,640,480,0,'0000-00-00 00:00:00',1176405989,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(249,26,'userpics/','IMG_4009_(Small).jpg',42470,134249,640,480,0,'0000-00-00 00:00:00',1176406255,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(250,26,'userpics/','IMG_3980_(Small)_(2).jpg',32883,100908,640,361,0,'0000-00-00 00:00:00',1176406495,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(251,26,'userpics/','IMG_4025_(Small).jpg',33427,113614,640,480,0,'0000-00-00 00:00:00',1176406670,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0),(252,26,'userpics/','IMG_4021_(Small).jpg',44225,142636,640,480,0,'0000-00-00 00:00:00',1176406729,14,'Lurym',0,0,'','','','YES',0,'','','','',0,'80.55.166.10','192.168.1.23',NULL,0);
358/*!40000 ALTER TABLE `cpg_pictures` ENABLE KEYS */;
359UNLOCK TABLES;
360
361--
362-- Table structure for table `cpg_plugins`
363--
364
365DROP TABLE IF EXISTS `cpg_plugins`;
366CREATE TABLE `cpg_plugins` (
367 `plugin_id` int(10) unsigned NOT NULL auto_increment,
368 `name` varchar(64) NOT NULL default '',
369 `path` varchar(128) NOT NULL default '',
370 `priority` int(10) unsigned NOT NULL default '0',
371 PRIMARY KEY (`plugin_id`),
372 UNIQUE KEY `name` (`name`),
373 UNIQUE KEY `path` (`path`)
374) ENGINE=MyISAM DEFAULT CHARSET=latin1;
375
376--
377-- Dumping data for table `cpg_plugins`
378--
379
380LOCK TABLES `cpg_plugins` WRITE;
381/*!40000 ALTER TABLE `cpg_plugins` DISABLE KEYS */;
382/*!40000 ALTER TABLE `cpg_plugins` ENABLE KEYS */;
383UNLOCK TABLES;
384
385--
386-- Table structure for table `cpg_sessions`
387--
388
389DROP TABLE IF EXISTS `cpg_sessions`;
390CREATE TABLE `cpg_sessions` (
391 `session_id` varchar(40) NOT NULL default '',
392 `user_id` int(11) default '0',
393 `time` int(11) default NULL,
394 `remember` int(1) default '0',
395 PRIMARY KEY (`session_id`)
396) ENGINE=MyISAM DEFAULT CHARSET=latin1;
397
398--
399-- Dumping data for table `cpg_sessions`
400--
401
402LOCK TABLES `cpg_sessions` WRITE;
403/*!40000 ALTER TABLE `cpg_sessions` DISABLE KEYS */;
404INSERT INTO `cpg_sessions` (`session_id`, `user_id`, `time`, `remember`) VALUES ('2dddfba32bcf4bb68aed34236c25d21a',14,1176406773,1),('b98829cedd5824e4d189199e6ac1b58b',1,1176367403,1),('72896a3eb8a8efbe8e765e4a8e21690e',11,1176380531,1),('4e73dd135b0ad30b074a78696ed3de58',0,1176409975,0),('644573ec2fcc5ffe81f39394a92cb737',0,1176410000,0);
405/*!40000 ALTER TABLE `cpg_sessions` ENABLE KEYS */;
406UNLOCK TABLES;
407
408--
409-- Table structure for table `cpg_temp_data`
410--
411
412DROP TABLE IF EXISTS `cpg_temp_data`;
413CREATE TABLE `cpg_temp_data` (
414 `unique_ID` varchar(8) NOT NULL default '',
415 `encoded_string` blob NOT NULL,
416 `timestamp` int(11) unsigned NOT NULL default '0',
417 PRIMARY KEY (`unique_ID`)
418) ENGINE=MyISAM DEFAULT CHARSET=latin1;
419
420--
421-- Dumping data for table `cpg_temp_data`
422--
423
424LOCK TABLES `cpg_temp_data` WRITE;
425/*!40000 ALTER TABLE `cpg_temp_data` DISABLE KEYS */;
426INSERT INTO `cpg_temp_data` (`unique_ID`, `encoded_string`, `timestamp`) VALUES ('5843189f','YToxOntpOjA7YToyOntzOjExOiJhY3R1YWxfbmFtZSI7czoxODoiSUlJYV8xXyhTbWFsbCkuanBnIjtzOjE0OiJ0ZW1wb3JhcnlfbmFtZSI7czoyMzoibUhUVFBfdGVtcF80YzYxYzBkMC5qcGciO319',1176402968);
427/*!40000 ALTER TABLE `cpg_temp_data` ENABLE KEYS */;
428UNLOCK TABLES;
429
430--
431-- Table structure for table `cpg_usergroups`
432--
433
434DROP TABLE IF EXISTS `cpg_usergroups`;
435CREATE TABLE `cpg_usergroups` (
436 `group_id` int(11) NOT NULL auto_increment,
437 `group_name` varchar(255) NOT NULL default '',
438 `group_quota` int(11) NOT NULL default '0',
439 `has_admin_access` tinyint(4) NOT NULL default '0',
440 `can_rate_pictures` tinyint(4) NOT NULL default '0',
441 `can_send_ecards` tinyint(4) NOT NULL default '0',
442 `can_post_comments` tinyint(4) NOT NULL default '0',
443 `can_upload_pictures` tinyint(4) NOT NULL default '0',
444 `can_create_albums` tinyint(4) NOT NULL default '0',
445 `pub_upl_need_approval` tinyint(4) NOT NULL default '1',
446 `priv_upl_need_approval` tinyint(4) NOT NULL default '1',
447 `upload_form_config` tinyint(4) NOT NULL default '3',
448 `custom_user_upload` tinyint(4) NOT NULL default '0',
449 `num_file_upload` tinyint(4) NOT NULL default '5',
450 `num_URI_upload` tinyint(4) NOT NULL default '3',
451 PRIMARY KEY (`group_id`)
452) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
453
454--
455-- Dumping data for table `cpg_usergroups`
456--
457
458LOCK TABLES `cpg_usergroups` WRITE;
459/*!40000 ALTER TABLE `cpg_usergroups` DISABLE KEYS */;
460INSERT INTO `cpg_usergroups` (`group_id`, `group_name`, `group_quota`, `has_admin_access`, `can_rate_pictures`, `can_send_ecards`, `can_post_comments`, `can_upload_pictures`, `can_create_albums`, `pub_upl_need_approval`, `priv_upl_need_approval`, `upload_form_config`, `custom_user_upload`, `num_file_upload`, `num_URI_upload`) VALUES (1,'Administrators',0,1,1,1,1,1,1,0,0,3,0,5,3),(2,'Registered',1024,0,1,1,1,1,1,1,0,3,0,5,3),(3,'Guests',0,0,1,0,0,0,0,1,1,0,0,5,3),(4,'Banned',0,0,0,0,0,0,0,1,1,0,0,5,3);
461/*!40000 ALTER TABLE `cpg_usergroups` ENABLE KEYS */;
462UNLOCK TABLES;
463
464--
465-- Table structure for table `cpg_users`
466--
467
468DROP TABLE IF EXISTS `cpg_users`;
469CREATE TABLE `cpg_users` (
470 `user_id` int(11) NOT NULL auto_increment,
471 `user_group` int(11) NOT NULL default '2',
472 `user_active` enum('YES','NO') NOT NULL default 'NO',
473 `user_name` varchar(25) NOT NULL default '',
474 `user_password` varchar(40) NOT NULL default '',
475 `user_lastvisit` datetime NOT NULL default '0000-00-00 00:00:00',
476 `user_regdate` datetime NOT NULL default '0000-00-00 00:00:00',
477 `user_group_list` varchar(255) NOT NULL default '',
478 `user_email` varchar(255) NOT NULL default '',
479 `user_profile1` varchar(255) NOT NULL default '',
480 `user_profile2` varchar(255) NOT NULL default '',
481 `user_profile3` varchar(255) NOT NULL default '',
482 `user_profile4` varchar(255) NOT NULL default '',
483 `user_profile5` varchar(255) NOT NULL default '',
484 `user_profile6` text NOT NULL,
485 `user_actkey` varchar(32) NOT NULL default '',
486 PRIMARY KEY (`user_id`),
487 UNIQUE KEY `user_name` (`user_name`)
488) ENGINE=MyISAM AUTO_INCREMENT=36 DEFAULT CHARSET=latin1;
489
490--
491-- Dumping data for table `cpg_users`
492--
493
494LOCK TABLES `cpg_users` WRITE;
495/*!40000 ALTER TABLE `cpg_users` DISABLE KEYS */;
496INSERT INTO `cpg_users` (`user_id`, `user_group`, `user_active`, `user_name`, `user_password`, `user_lastvisit`, `user_regdate`, `user_group_list`, `user_email`, `user_profile1`, `user_profile2`, `user_profile3`, `user_profile4`, `user_profile5`, `user_profile6`, `user_actkey`) VALUES (1,1,'YES','sonicius','8700ed4820c703ee62c092f05901ecfc','2007-04-12 09:16:35','2007-03-02 15:32:32','','sonicius@o2.pl','','','','','','Grzegorz Marzec (twórca strony)',''),(2,2,'YES','Jojek','92ee643229ee1adf4355dcc73ecaef2d','2007-04-12 12:19:39','2007-03-03 08:46:09','','jojekjr@o2.pl','Czeczenia','Poezja, szydeÅ‚kowanie, robienie na drutach','','','','Marian Waligrucha','d971fb7ea4c6162366ac58a859285e66'),(3,2,'YES','ssunflower','07f4834e25035df2cd574b3bf2bd8516','2007-04-12 04:50:18','2007-03-03 08:58:30','','zlotowa@gmail.com','','','','','','admin_foty nie zmieniac(grzech)','64b42677407a04e39597f929e7aa653c'),(4,2,'YES','zukoo','11c589cba1a208e0359048a78e6b88b8','2007-03-06 01:06:18','2007-03-03 09:22:56','','zukoo@interia.pl','','','','','','MichaÅ‚ Å»ukowski ex-szef','136ed351a1113638ae49b66ac48f6178'),(5,2,'YES','Wojtek','c3e7029207f1c67b262457ce56e0af4f','2007-03-06 05:12:37','2007-03-03 09:54:23','','wojteks23@o2.pl','','','','','','admin_foty nie zmieniac(grzech)','6a52b8eee88586ff090533c955e7bcd2'),(6,2,'YES','noska','831ee7ad177fc0e2907f1f662db339c0','2007-04-12 04:50:18','2007-03-03 10:54:26','','nosiowa@gmail.pl','Poland','','','','','','482e489450ccbccb9bf86dd86709f330'),(7,2,'YES','ex2','b5a52984b0edd9a754d8ca8fda3e7154','2007-03-27 00:58:09','2007-03-03 11:12:05','','uranek_88@o2.pl','ex','ex','ex','ex','','admin_foty nie zmieniac(grzech)','3143ae3553f47c3f98714809f0666c9e'),(11,2,'YES','klasa3a','41624b78b07fd3274dee20be2038a9a5','2007-04-12 00:47:55','2007-03-03 13:20:55','','','','','','','','',''),(12,2,'YES','SidoSadowski','9f2aa5f71c353b02e6db30640b00e44d','2007-03-05 12:06:30','2007-03-03 13:32:04','','sajdor@o2.pl','','','','','','Mateusz Sadowski zdjÄ™cia z imprez klasowych po za szkolnych ;o]\r\n\r\nadmin_foty nie zmieniac(grzech)','f3a998941d8806b06485961a402ce67b'),(9,2,'YES','kusiek88','40fb7e6030851ad33b9c770f8fe3b14d','2007-03-04 07:17:15','2007-03-03 11:23:12','','kusiek88@wp.pl','B-ce','','','','','admin_foty nie zmieniac(grzech)','1992386969ea83dc1f57700c4559ab32'),(10,2,'YES','maciek','8987493c009cfd27902f7611afe323b5','2007-04-12 09:53:27','2007-03-03 11:47:50','','maciek_19891@gazeta.pl','','','','','','admin_foty nie zmieniac(grzech)','1d2cb2092f7a3b1a1bdb5dad3227c76c'),(14,1,'YES','Lurym','3086ee666866b8a1f376ed4172ee991f','2007-04-05 13:11:10','2007-03-04 03:06:09','','lurym@poczta.onet.pl','Kinkajmy','','','','','Åukasz Rymko MUÅ\r\n\r\nadmin_strony nie zmieniac(grzech)','4629b05aec68b9c4cd582bab7341cd48'),(15,2,'YES','prachu','e2a7106f1cc8bb1e1318df70aa0a3540','2007-03-04 06:58:01','2007-03-04 06:56:29','','prachu@wp.pl','','','','','','prachu','aa21b71ab545cee23eafd8f51aac1fcc'),(28,2,'YES','gotek','568273df4b1c07c85d043f2317b7df39','0000-00-00 00:00:00','2007-03-08 04:55:45','','','','','','','','admin_foty nie zmieniac(grzech)',''),(18,2,'YES','panidomu','061cc573d87ce90d5c3cf3b2291cb3bd','2007-03-14 10:47:37','2007-03-05 09:53:51','','misuuszatek@o2.pl','gaÅ‚ajny','gaÅ‚ajny','www.galajny.pl','gaÅ‚ajny','','Imie:pani\r\nNazwisko:domu\r\nFunkcja:pani domu','718b755685f38c38239fe2275f40e67c'),(29,2,'YES','jola','c3530a3f72f21d41cacc2d68987b5a4a','0000-00-00 00:00:00','2007-03-08 04:56:45','','','','','','','','admin_foty nie zmieniac(grzech)',''),(20,2,'YES','Lolek','ea5f7d9874c7c4819b1e0e78e0558409','0000-00-00 00:00:00','2007-03-05 12:07:40','','lary7@gazeta.pl','B-ce','','','','','XXX XXX','9dfec97d6754d3e5330c341ce0668f84'),(21,2,'YES','alicja','772f50c9e91d2d4bd944f1a77e559fba','0000-00-00 00:00:00','2007-03-05 12:23:29','','alicja.sliwka88@wp.pl','','','','','','','c64773cbe3c60a8eb2cef541bed7f139'),(23,2,'YES','dora','6c84cbd30cf9350a990bad2bcc1bec5f','0000-00-00 00:00:00','2007-03-05 14:30:50','','doritka178@wp.pl','','','','','','admin_foty nie zmieniac(grzech)','3a2cc7c9650164e797155550f6ea26bc'),(30,2,'YES','kasia','823e3faa4136b36a31317d3403f88204','0000-00-00 00:00:00','2007-03-08 04:57:01','','','','','','','','admin_foty nie zmieniac(grzech)',''),(31,2,'YES','nati','2eedd3b873e72e36b00e3512911868a0','0000-00-00 00:00:00','2007-03-08 04:57:24','','','','','','','','admin_foty nie zmieniac(grzech)',''),(33,2,'YES','Heniu','1d76f6b9a2f1a9514ade79eb12004811','2007-04-12 04:42:05','2007-03-08 05:12:15','','dymek60@wp.pl','','','','','','Damian Sienkiewicz - Gospodarz ','d2eb88104a9fa32d2137ee18a577c26c'),(34,2,'YES','patryk','6a7ca3fef2b24679f75745b2dbd09c86','2007-04-12 05:35:52','2007-04-05 13:32:55','','rykpat@interia.pl','','','','','','','d4c90180435dc1dceb4e0c843eb28bb7'),(35,2,'YES','alfi12','c7d08e09a44d2b453e7eeecebf0a8daf','0000-00-00 00:00:00','2007-04-12 04:46:23','','alfi12@o2.pl','','','','','','','14c8f06ea8f4884f3058df56ff35fc25');
497/*!40000 ALTER TABLE `cpg_users` ENABLE KEYS */;
498UNLOCK TABLES;
499
500--
501-- Table structure for table `cpg_vote_stats`
502--
503
504DROP TABLE IF EXISTS `cpg_vote_stats`;
505CREATE TABLE `cpg_vote_stats` (
506 `sid` int(11) NOT NULL auto_increment,
507 `pid` varchar(100) NOT NULL default '',
508 `rating` smallint(6) NOT NULL default '0',
509 `ip` varchar(20) NOT NULL default '',
510 `sdate` bigint(20) NOT NULL default '0',
511 `referer` text NOT NULL,
512 `browser` varchar(255) NOT NULL default '',
513 `os` varchar(50) NOT NULL default '',
514 PRIMARY KEY (`sid`)
515) ENGINE=MyISAM DEFAULT CHARSET=latin1;
516
517--
518-- Dumping data for table `cpg_vote_stats`
519--
520
521LOCK TABLES `cpg_vote_stats` WRITE;
522/*!40000 ALTER TABLE `cpg_vote_stats` DISABLE KEYS */;
523/*!40000 ALTER TABLE `cpg_vote_stats` ENABLE KEYS */;
524UNLOCK TABLES;
525
526--
527-- Table structure for table `cpg_votes`
528--
529
530DROP TABLE IF EXISTS `cpg_votes`;
531CREATE TABLE `cpg_votes` (
532 `pic_id` mediumint(9) NOT NULL default '0',
533 `user_md5_id` varchar(32) NOT NULL default '',
534 `vote_time` int(11) NOT NULL default '0',
535 PRIMARY KEY (`pic_id`,`user_md5_id`)
536) ENGINE=MyISAM DEFAULT CHARSET=latin1;
537
538--
539-- Dumping data for table `cpg_votes`
540--
541
542LOCK TABLES `cpg_votes` WRITE;
543/*!40000 ALTER TABLE `cpg_votes` DISABLE KEYS */;
544INSERT INTO `cpg_votes` (`pic_id`, `user_md5_id`, `vote_time`) VALUES (3,'e369853df766fa44e1ed0ff613f563bd',1175805589);
545/*!40000 ALTER TABLE `cpg_votes` ENABLE KEYS */;
546UNLOCK TABLES;
547
548/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
549/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
550/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
551/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
552/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
553/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
554/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;