-- MySQL dump 10.10
--
-- Host: localhost    Database: edanas_lt
-- ------------------------------------------------------
-- Server version	5.0.18-max

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `jos_banner`
--

DROP TABLE IF EXISTS `jos_banner`;
CREATE TABLE `jos_banner` (
  `bid` int(11) NOT NULL auto_increment,
  `cid` int(11) NOT NULL default '0',
  `type` varchar(30) NOT NULL default 'banner',
  `name` varchar(255) NOT NULL default '',
  `alias` varchar(255) NOT NULL default '',
  `imptotal` int(11) NOT NULL default '0',
  `impmade` int(11) NOT NULL default '0',
  `clicks` int(11) NOT NULL default '0',
  `imageurl` varchar(100) NOT NULL default '',
  `clickurl` varchar(200) NOT NULL default '',
  `date` datetime default NULL,
  `showBanner` tinyint(1) NOT NULL default '0',
  `checked_out` tinyint(1) NOT NULL default '0',
  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `editor` varchar(50) default NULL,
  `custombannercode` text,
  `catid` int(10) unsigned NOT NULL default '0',
  `description` text NOT NULL,
  `sticky` tinyint(1) unsigned NOT NULL default '0',
  `ordering` int(11) NOT NULL default '0',
  `publish_up` datetime NOT NULL default '0000-00-00 00:00:00',
  `publish_down` datetime NOT NULL default '0000-00-00 00:00:00',
  `tags` text NOT NULL,
  `params` text NOT NULL,
  PRIMARY KEY  (`bid`),
  KEY `viewbanner` (`showBanner`),
  KEY `idx_banner_catid` (`catid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_banner`
--


/*!40000 ALTER TABLE `jos_banner` DISABLE KEYS */;
LOCK TABLES `jos_banner` WRITE;
INSERT INTO `jos_banner` VALUES (1,1,'banner','OSM 1','osm-1',0,43,0,'osmbanner1.png','http://www.opensourcematters.org','2004-07-07 15:31:29',1,0,'0000-00-00 00:00:00','','',13,'',0,1,'0000-00-00 00:00:00','0000-00-00 00:00:00','',''),(2,1,'banner','OSM 2','osm-2',0,49,0,'osmbanner2.png','http://www.opensourcematters.org','2004-07-07 15:31:29',1,0,'0000-00-00 00:00:00','','',13,'',0,2,'0000-00-00 00:00:00','0000-00-00 00:00:00','',''),(3,1,'','Joomla!','joomla',0,36,0,'','http://www.joomla.org','2006-05-29 14:21:28',1,0,'0000-00-00 00:00:00','','<a href=\"{CLICKURL}\" target=\"_blank\">{NAME}</a>\r\n<br/>\r\nJoomla! The most popular and widely used Open Source CMS Project in the world.',14,'',0,1,'0000-00-00 00:00:00','0000-00-00 00:00:00','',''),(4,1,'','JoomlaCode','joomlacode',0,36,0,'','http://joomlacode.org','2006-05-29 14:19:26',1,0,'0000-00-00 00:00:00','','<a href=\"{CLICKURL}\" target=\"_blank\">{NAME}</a>\r\n<br/>\r\nJoomlaCode, development and distribution made easy.',14,'',0,2,'0000-00-00 00:00:00','0000-00-00 00:00:00','',''),(5,1,'','Joomla! Extensions','joomla-extensions',0,31,0,'','http://extensions.joomla.org','2006-05-29 14:23:21',1,0,'0000-00-00 00:00:00','','<a href=\"{CLICKURL}\" target=\"_blank\">{NAME}</a>\r\n<br/>\r\nJoomla! Components, Modules, Plugins and Languages by the bucket load.',14,'',0,3,'0000-00-00 00:00:00','0000-00-00 00:00:00','',''),(6,1,'','Joomla! Shop','joomla-shop',0,31,0,'','http://shop.joomla.org','2006-05-29 14:23:21',1,0,'0000-00-00 00:00:00','','<a href=\"{CLICKURL}\" target=\"_blank\">{NAME}</a>\r\n<br/>\r\nFor all your Joomla! merchandise.',14,'',0,4,'0000-00-00 00:00:00','0000-00-00 00:00:00','',''),(7,1,'','Joomla! Promo Shop','joomla-promo-shop',0,27,1,'shop-ad.jpg','http://shop.joomla.org','2007-09-19 17:26:24',1,0,'0000-00-00 00:00:00','','',33,'',0,3,'0000-00-00 00:00:00','0000-00-00 00:00:00','',''),(8,1,'','Joomla! Promo Books','joomla-promo-books',0,27,0,'shop-ad-books.jpg','http://shop.joomla.org/amazoncom-bookstores.html','2007-09-19 17:28:01',1,0,'0000-00-00 00:00:00','','',33,'',0,4,'0000-00-00 00:00:00','0000-00-00 00:00:00','','');
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_banner` ENABLE KEYS */;

--
-- Table structure for table `jos_bannerclient`
--

DROP TABLE IF EXISTS `jos_bannerclient`;
CREATE TABLE `jos_bannerclient` (
  `cid` int(11) NOT NULL auto_increment,
  `name` varchar(255) NOT NULL default '',
  `contact` varchar(255) NOT NULL default '',
  `email` varchar(255) NOT NULL default '',
  `extrainfo` text NOT NULL,
  `checked_out` tinyint(1) NOT NULL default '0',
  `checked_out_time` time default NULL,
  `editor` varchar(50) default NULL,
  PRIMARY KEY  (`cid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_bannerclient`
--


/*!40000 ALTER TABLE `jos_bannerclient` DISABLE KEYS */;
LOCK TABLES `jos_bannerclient` WRITE;
INSERT INTO `jos_bannerclient` VALUES (1,'Open Source Matters','Administrator','admin@opensourcematters.org','',0,'00:00:00',NULL);
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_bannerclient` ENABLE KEYS */;

--
-- Table structure for table `jos_bannertrack`
--

DROP TABLE IF EXISTS `jos_bannertrack`;
CREATE TABLE `jos_bannertrack` (
  `track_date` date NOT NULL,
  `track_type` int(10) unsigned NOT NULL,
  `banner_id` int(10) unsigned NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_bannertrack`
--


/*!40000 ALTER TABLE `jos_bannertrack` DISABLE KEYS */;
LOCK TABLES `jos_bannertrack` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_bannertrack` ENABLE KEYS */;

--
-- Table structure for table `jos_categories`
--

DROP TABLE IF EXISTS `jos_categories`;
CREATE TABLE `jos_categories` (
  `id` int(11) NOT NULL auto_increment,
  `parent_id` int(11) NOT NULL default '0',
  `title` varchar(255) NOT NULL default '',
  `name` varchar(255) NOT NULL default '',
  `alias` varchar(255) NOT NULL default '',
  `image` varchar(255) NOT NULL default '',
  `section` varchar(50) NOT NULL default '',
  `image_position` varchar(30) NOT NULL default '',
  `description` text NOT NULL,
  `published` tinyint(1) NOT NULL default '0',
  `checked_out` int(11) unsigned NOT NULL default '0',
  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `editor` varchar(50) default NULL,
  `ordering` int(11) NOT NULL default '0',
  `access` tinyint(3) unsigned NOT NULL default '0',
  `count` int(11) NOT NULL default '0',
  `params` text NOT NULL,
  PRIMARY KEY  (`id`),
  KEY `cat_idx` (`section`,`published`,`access`),
  KEY `idx_access` (`access`),
  KEY `idx_checkout` (`checked_out`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_categories`
--


/*!40000 ALTER TABLE `jos_categories` DISABLE KEYS */;
LOCK TABLES `jos_categories` WRITE;
INSERT INTO `jos_categories` VALUES (2,0,'Joomla! Specific Links','','joomla-specific-links','clock.jpg','com_weblinks','left','A selection of links that are all related to the Joomla! Project.',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(4,0,'Joomla!','','joomla','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,2,0,0,''),(5,0,'Free and Open Source Software','','free-and-open-source-software','','com_newsfeeds','left','Read the latest news about free and open source software from some of its leading advocates.',1,0,'0000-00-00 00:00:00',NULL,3,0,0,''),(6,0,'Related Projects','','related-projects','','com_newsfeeds','left','Joomla builds on and collaborates with many other free and open source projects. Keep up with the latest news from some of them.',1,0,'0000-00-00 00:00:00',NULL,4,0,0,''),(12,0,'Contacts','','contacts','','com_contact_details','left','Contact Details for this Web site',1,0,'0000-00-00 00:00:00',NULL,0,0,0,''),(13,0,'Joomla','','joomla','','com_banner','left','',1,0,'0000-00-00 00:00:00',NULL,0,0,0,''),(14,0,'Text Ads','','text-ads','','com_banner','left','',1,0,'0000-00-00 00:00:00',NULL,0,0,0,''),(15,0,'Features','','features','','com_content','left','',0,0,'0000-00-00 00:00:00',NULL,6,0,0,''),(17,0,'Benefits','','benefits','','com_content','left','',0,0,'0000-00-00 00:00:00',NULL,4,0,0,''),(18,0,'Platforms','','platforms','','com_content','left','',0,0,'0000-00-00 00:00:00',NULL,3,0,0,''),(19,0,'Other Resources','','other-resources','','com_weblinks','left','',1,0,'0000-00-00 00:00:00',NULL,2,0,0,''),(37,0,'Rekvizitai','','rekvizitai','','6','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(38,0,'Naujienos','','naujienos','','5','left','',1,0,'0000-00-00 00:00:00',NULL,3,0,0,''),(35,0,'Kaires puses meniu','','kaires-puses-meniu','','5','left','',1,0,'0000-00-00 00:00:00',NULL,2,0,0,''),(34,0,'Virsutinis meniu','','virsutinis-meniu','','5','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(33,0,'Joomla! Promo','','joomla-promo','','com_banner','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,'');
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_categories` ENABLE KEYS */;

--
-- Table structure for table `jos_components`
--

DROP TABLE IF EXISTS `jos_components`;
CREATE TABLE `jos_components` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(50) NOT NULL default '',
  `link` varchar(255) NOT NULL default '',
  `menuid` int(11) unsigned NOT NULL default '0',
  `parent` int(11) unsigned NOT NULL default '0',
  `admin_menu_link` varchar(255) NOT NULL default '',
  `admin_menu_alt` varchar(255) NOT NULL default '',
  `option` varchar(50) NOT NULL default '',
  `ordering` int(11) NOT NULL default '0',
  `admin_menu_img` varchar(255) NOT NULL default '',
  `iscore` tinyint(4) NOT NULL default '0',
  `params` text NOT NULL,
  `enabled` tinyint(4) NOT NULL default '1',
  PRIMARY KEY  (`id`),
  KEY `parent_option` (`parent`,`option`(32))
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_components`
--


/*!40000 ALTER TABLE `jos_components` DISABLE KEYS */;
LOCK TABLES `jos_components` WRITE;
INSERT INTO `jos_components` VALUES (1,'Banners','',0,0,'','Banner Management','com_banners',0,'js/ThemeOffice/component.png',0,'track_impressions=0\ntrack_clicks=0\ntag_prefix=\n\n',1),(2,'Banners','',0,1,'option=com_banners','Active Banners','com_banners',1,'js/ThemeOffice/edit.png',0,'',1),(3,'Clients','',0,1,'option=com_banners&c=client','Manage Clients','com_banners',2,'js/ThemeOffice/categories.png',0,'',1),(4,'Web Links','option=com_weblinks',0,0,'','Manage Weblinks','com_weblinks',0,'js/ThemeOffice/component.png',0,'show_comp_description=1\ncomp_description=\nshow_link_hits=1\nshow_link_description=1\nshow_other_cats=1\nshow_headings=1\nshow_page_title=1\nlink_target=0\nlink_icons=\n\n',1),(5,'Links','',0,4,'option=com_weblinks','View existing weblinks','com_weblinks',1,'js/ThemeOffice/edit.png',0,'',1),(6,'Categories','',0,4,'option=com_categories&section=com_weblinks','Manage weblink categories','',2,'js/ThemeOffice/categories.png',0,'',1),(7,'Contacts','option=com_contact',0,0,'','Edit contact details','com_contact',0,'js/ThemeOffice/component.png',1,'contact_icons=0\nicon_address=\nicon_email=\nicon_telephone=\nicon_fax=\nicon_misc=\nshow_headings=1\nshow_position=1\nshow_email=0\nshow_telephone=1\nshow_mobile=1\nshow_fax=1\nbannedEmail=\nbannedSubject=\nbannedText=\nsession=1\ncustomReply=0\n\n',1),(8,'Contacts','',0,7,'option=com_contact','Edit contact details','com_contact',0,'js/ThemeOffice/edit.png',1,'',1),(9,'Categories','',0,7,'option=com_categories&section=com_contact_details','Manage contact categories','',2,'js/ThemeOffice/categories.png',1,'contact_icons=0\nicon_address=\nicon_email=\nicon_telephone=\nicon_fax=\nicon_misc=\nshow_headings=1\nshow_position=1\nshow_email=0\nshow_telephone=1\nshow_mobile=1\nshow_fax=1\nbannedEmail=\nbannedSubject=\nbannedText=\nsession=1\ncustomReply=0\n\n',1),(10,'Polls','option=com_poll',0,0,'option=com_poll','Manage Polls','com_poll',0,'js/ThemeOffice/component.png',0,'',1),(11,'News Feeds','option=com_newsfeeds',0,0,'','News Feeds Management','com_newsfeeds',0,'js/ThemeOffice/component.png',0,'',1),(12,'Feeds','',0,11,'option=com_newsfeeds','Manage News Feeds','com_newsfeeds',1,'js/ThemeOffice/edit.png',0,'show_headings=1\nshow_name=1\nshow_articles=1\nshow_link=1\nshow_cat_description=1\nshow_cat_items=1\nshow_feed_image=1\nshow_feed_description=1\nshow_item_description=1\nfeed_word_count=0\n\n',1),(13,'Categories','',0,11,'option=com_categories&section=com_newsfeeds','Manage Categories','',2,'js/ThemeOffice/categories.png',0,'',1),(14,'User','option=com_user',0,0,'','','com_user',0,'',1,'',1),(15,'Search','option=com_search',0,0,'option=com_search','Search Statistics','com_search',0,'js/ThemeOffice/component.png',1,'enabled=0\n\n',1),(16,'Categories','',0,1,'option=com_categories&section=com_banner','Categories','',3,'',1,'',1),(17,'Wrapper','option=com_wrapper',0,0,'','Wrapper','com_wrapper',0,'',1,'',1),(18,'Mail To','',0,0,'','','com_mailto',0,'',1,'',1),(19,'Media Manager','',0,0,'option=com_media','Media Manager','com_media',0,'',1,'upload_extensions=bmp,csv,doc,epg,gif,ico,jpg,odg,odp,ods,odt,pdf,png,ppt,swf,txt,xcf,xls,BMP,CSV,DOC,EPG,GIF,ICO,JPG,ODG,ODP,ODS,ODT,PDF,PNG,PPT,SWF,TXT,XCF,XLS\nupload_maxsize=10000000\nfile_path=images\nimage_path=images/stories\nrestrict_uploads=1\ncheck_mime=1\nimage_extensions=bmp,gif,jpg,png\nignore_extensions=\nupload_mime=image/jpeg,image/gif,image/png,image/bmp,application/x-shockwave-flash,application/msword,application/excel,application/pdf,application/powerpoint,text/plain,application/x-zip\nupload_mime_illegal=text/html\nenable_flash=0\n\n',1),(20,'Articles','option=com_content',0,0,'','','com_content',0,'',1,'show_noauth=0\nshow_title=1\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=0\nshow_hits=1\nfeed_summary=0\nfilter_tags=\nfilter_attritbutes=\n\n',1),(21,'Configuration Manager','',0,0,'','Configuration','com_config',0,'',1,'',1),(22,'Installation Manager','',0,0,'','Installer','com_installer',0,'',1,'',1),(23,'Language Manager','',0,0,'','Languages','com_languages',0,'',1,'administrator=en-GB\nsite=lt-LT\n\n',1),(24,'Mass mail','',0,0,'','Mass Mail','com_massmail',0,'',1,'mailSubjectPrefix=\nmailBodySuffix=\n\n',1),(25,'Menu Editor','',0,0,'','Menu Editor','com_menus',0,'',1,'',1),(27,'Messaging','',0,0,'','Messages','com_messages',0,'',1,'',1),(28,'Modules Manager','',0,0,'','Modules','com_modules',0,'',1,'',1),(29,'Plugin Manager','',0,0,'','Plugins','com_plugins',0,'',1,'',1),(30,'Template Manager','',0,0,'','Templates','com_templates',0,'',1,'',1),(31,'User Manager','',0,0,'','Users','com_users',0,'',1,'allowUserRegistration=1\nnew_usertype=Registered\nuseractivation=1\nfrontend_userparams=1\n\n',1),(32,'Cache Manager','',0,0,'','Cache','com_cache',0,'',1,'',1),(33,'Control Panel','',0,0,'','Control Panel','com_cpanel',0,'',1,'',1),(34,'Joom!Fish','option=com_joomfish',0,0,'option=com_joomfish','Joom!Fish','com_joomfish',0,'components/com_joomfish/assets/images/icon-16-joomfish.png',0,'noTranslation=2\ndefaultText=\noverwriteGlobalConfig=1\nstorageOfOriginal=md5\nfrontEndPublish=1\nfrontEndPreview=1\nshowPanelNews=1\nshowPanelUnpublished=1\nshowPanelState=1\ncopyparams=1\ntranscaching=0\ncachelife=180\nqacaching=1\nqalogging=0\n',1),(35,'Control Panel','',0,34,'option=com_joomfish','Control Panel','com_joomfish',0,'components/com_joomfish/assets/images/icon-16-cpanel.png',0,'',1),(36,'Translation','',0,34,'option=com_joomfish&task=translate.overview','Translation','com_joomfish',1,'components/com_joomfish/assets/images/icon-16-translation.png',0,'',1),(37,'Orphan Translations','',0,34,'option=com_joomfish&task=translate.orphans','Orphan Translations','com_joomfish',2,'components/com_joomfish/assets/images/icon-16-orphan.png',0,'',1),(38,'Manage Translations','',0,34,'option=com_joomfish&task=manage.overview','Manage Translations','com_joomfish',3,'components/com_joomfish/assets/images/icon-16-manage.png',0,'',1),(39,'Statistics','',0,34,'option=com_joomfish&task=statistics.overview','Statistics','com_joomfish',4,'components/com_joomfish/assets/images/icon-16-statistics.png',0,'',1),(40,'','',0,34,'option=com_joomfish','','com_joomfish',5,'components/com_joomfish/assets/images/icon-10-blank.png',0,'',1),(41,'Languages','',0,34,'option=com_joomfish&task=languages.show','Languages','com_joomfish',6,'components/com_joomfish/assets/images/icon-16-language.png',0,'',1),(42,'Content elements','',0,34,'option=com_joomfish&task=elements.show','Content elements','com_joomfish',7,'components/com_joomfish/assets/images/icon-16-extension.png',0,'',1),(43,'Plugins','',0,34,'option=com_joomfish&task=plugin.show','Plugins','com_joomfish',8,'components/com_joomfish/assets/images/icon-16-plugin.png',0,'',1),(44,'','',0,34,'option=com_joomfish','','com_joomfish',9,'components/com_joomfish/assets/images/icon-10-blank.png',0,'',1),(45,'Help','',0,34,'option=com_joomfish&task=help.show','Help','com_joomfish',10,'components/com_joomfish/assets/images/icon-16-help.png',0,'',1);
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_components` ENABLE KEYS */;

--
-- Table structure for table `jos_contact_details`
--

DROP TABLE IF EXISTS `jos_contact_details`;
CREATE TABLE `jos_contact_details` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(255) NOT NULL default '',
  `alias` varchar(255) NOT NULL default '',
  `con_position` varchar(255) default NULL,
  `address` text,
  `suburb` varchar(100) default NULL,
  `state` varchar(100) default NULL,
  `country` varchar(100) default NULL,
  `postcode` varchar(100) default NULL,
  `telephone` varchar(255) default NULL,
  `fax` varchar(255) default NULL,
  `misc` mediumtext,
  `image` varchar(255) default NULL,
  `imagepos` varchar(20) default NULL,
  `email_to` varchar(255) default NULL,
  `default_con` tinyint(1) unsigned NOT NULL default '0',
  `published` tinyint(1) unsigned NOT NULL default '0',
  `checked_out` int(11) unsigned NOT NULL default '0',
  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `ordering` int(11) NOT NULL default '0',
  `params` text NOT NULL,
  `user_id` int(11) NOT NULL default '0',
  `catid` int(11) NOT NULL default '0',
  `access` tinyint(3) unsigned NOT NULL default '0',
  `mobile` varchar(255) NOT NULL default '',
  `webpage` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`id`),
  KEY `catid` (`catid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_contact_details`
--


/*!40000 ALTER TABLE `jos_contact_details` DISABLE KEYS */;
LOCK TABLES `jos_contact_details` WRITE;
INSERT INTO `jos_contact_details` VALUES (1,'Name','name','Position','Street','Suburb','State','Country','Zip Code','Telephone','Fax','Miscellanous info','powered_by.png','top','email@email.com',1,1,0,'0000-00-00 00:00:00',1,'show_name=1\r\nshow_position=1\r\nshow_email=0\r\nshow_street_address=1\r\nshow_suburb=1\r\nshow_state=1\r\nshow_postcode=1\r\nshow_country=1\r\nshow_telephone=1\r\nshow_mobile=1\r\nshow_fax=1\r\nshow_webpage=1\r\nshow_misc=1\r\nshow_image=1\r\nallow_vcard=0\r\ncontact_icons=0\r\nicon_address=\r\nicon_email=\r\nicon_telephone=\r\nicon_fax=\r\nicon_misc=\r\nshow_email_form=1\r\nemail_description=1\r\nshow_email_copy=1\r\nbanned_email=\r\nbanned_subject=\r\nbanned_text=',0,12,0,'','');
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_contact_details` ENABLE KEYS */;

--
-- Table structure for table `jos_content`
--

DROP TABLE IF EXISTS `jos_content`;
CREATE TABLE `jos_content` (
  `id` int(11) unsigned NOT NULL auto_increment,
  `title` varchar(255) NOT NULL default '',
  `alias` varchar(255) NOT NULL default '',
  `title_alias` varchar(255) NOT NULL default '',
  `introtext` mediumtext NOT NULL,
  `fulltext` mediumtext NOT NULL,
  `state` tinyint(3) NOT NULL default '0',
  `sectionid` int(11) unsigned NOT NULL default '0',
  `mask` int(11) unsigned NOT NULL default '0',
  `catid` int(11) unsigned NOT NULL default '0',
  `created` datetime NOT NULL default '0000-00-00 00:00:00',
  `created_by` int(11) unsigned NOT NULL default '0',
  `created_by_alias` varchar(255) NOT NULL default '',
  `modified` datetime NOT NULL default '0000-00-00 00:00:00',
  `modified_by` int(11) unsigned NOT NULL default '0',
  `checked_out` int(11) unsigned NOT NULL default '0',
  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `publish_up` datetime NOT NULL default '0000-00-00 00:00:00',
  `publish_down` datetime NOT NULL default '0000-00-00 00:00:00',
  `images` text NOT NULL,
  `urls` text NOT NULL,
  `attribs` text NOT NULL,
  `version` int(11) unsigned NOT NULL default '1',
  `parentid` int(11) unsigned NOT NULL default '0',
  `ordering` int(11) NOT NULL default '0',
  `metakey` text NOT NULL,
  `metadesc` text NOT NULL,
  `access` int(11) unsigned NOT NULL default '0',
  `hits` int(11) unsigned NOT NULL default '0',
  `metadata` text NOT NULL,
  PRIMARY KEY  (`id`),
  KEY `idx_section` (`sectionid`),
  KEY `idx_access` (`access`),
  KEY `idx_checkout` (`checked_out`),
  KEY `idx_state` (`state`),
  KEY `idx_catid` (`catid`),
  KEY `idx_createdby` (`created_by`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_content`
--


/*!40000 ALTER TABLE `jos_content` DISABLE KEYS */;
LOCK TABLES `jos_content` WRITE;
INSERT INTO `jos_content` VALUES (46,'Pagrindinis','pagrindinis-','','Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas Pagrindinio meniu tekstas','',1,5,0,34,'2009-05-02 13:57:48',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2009-05-02 13:57:48','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,4,'','',0,319,'robots=\nauthor='),(47,'Apie mus','apie-mus','','Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstas Apie mus tekstasv','',1,5,0,34,'2009-05-02 13:58:28',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2009-05-02 13:58:28','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,3,'','',0,157,'robots=\nauthor='),(48,'Karjera','karjera','','Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstas Karjera tekstasv','',1,5,0,34,'2009-05-02 14:04:22',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2009-05-02 14:04:22','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,2,'','',0,166,'robots=\nauthor='),(49,'Kontaktai','kontaktai','','Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas Kontaktu tekstas','',1,5,0,34,'2009-05-02 14:14:44',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2009-05-02 14:14:44','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,1,'','',0,216,'robots=\nauthor='),(50,'Mini namas','mini-namas','','Mini namo tekstas Mini namo tekstas Mini namo tekstas Mini namo tekstas Mini namo tekstas Mini namo tekstas Mini namo tekstas Mini namo tekstas Mini namo tekstas Mini namo tekstas Mini namo tekstas Mini namo tekstas Mini namo tekstas Mini namo tekstas Mini namo tekstas Mini namo tekstas Mini namo tekstas Mini namo tekstas Mini namo tekstas Mini namo tekstas Mini namo tekstas Mini namo tekstas Mini namo tekstas Mini namo tekstasv','',1,5,0,35,'2009-05-02 14:16:36',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2009-05-02 14:16:36','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,6,'','',0,41,'robots=\nauthor='),(51,'Kempingai','kempingai','','Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas Kempingai tekstas','',1,5,0,35,'2009-05-02 14:17:15',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2009-05-02 14:17:15','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,5,'','',0,48,'robots=\nauthor='),(52,'Projektai','projektai','','Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas Projektai tekstas','',1,5,0,35,'2009-05-02 14:17:36',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2009-05-02 14:17:36','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,4,'','',0,43,'robots=\nauthor='),(53,'Galerija','galerija','','Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija Galerija','',1,5,0,35,'2009-05-02 14:17:58',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2009-05-02 14:17:58','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,3,'','',0,19,'robots=\nauthor='),(54,'Eko kuras','eko-kuras','','eko kuras aprasymas eko kuras aprasymas eko kuras aprasymas eko kuras aprasymas eko kuras aprasymas eko kuras aprasymas eko kuras aprasymas eko kuras aprasymas eko kuras aprasymas eko kuras aprasymas eko kuras aprasymas eko kuras aprasymas eko kuras aprasymas eko kuras aprasymas eko kuras aprasymas eko kuras aprasymas eko kuras aprasymas eko kuras aprasymas eko kuras aprasymas eko kuras aprasymas eko kuras aprasymas eko kuras aprasymas eko kuras aprasymas eko kuras aprasymas','',1,5,0,35,'2009-05-02 14:18:22',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2009-05-02 14:18:22','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,2,'','',0,17,'robots=\nauthor='),(55,'Karjeras','karjeras','','Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstas Karjeras tekstasv','',1,5,0,35,'2009-05-02 14:18:46',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2009-05-02 14:18:46','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,1,'','',0,33,'robots=\nauthor='),(56,'Rekvizitai','rekvizitai','','<p>UAB EDANAS</p><p>Įm. kodas 301522627</p><p>PVM kodas LT-100003752511 </p>','',1,6,0,37,'2009-05-02 17:02:40',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2009-05-02 17:02:40','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,1,'','',0,0,'robots=\nauthor='),(57,'Pirma naujiena','pirma-naujiena','','<p>Pirmos naujienos abtraktas Pirmos naujienos abtraktas Pirmos naujienos abtraktas Pirmos naujienos abtraktas Pirmos naujienos abtraktas Pirmos naujienos abtraktas Pirmos naujienos abtraktas Pirmos naujienos abtraktas Pirmos naujienos abtraktas </p>','Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more Pirmos naujienos visas tekstas po read more <p>&nbsp;</p>',1,5,0,38,'2009-05-02 17:05:30',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2009-05-02 17:05:30','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,2,'','',0,1,'robots=\nauthor='),(58,'Antra naujiena','antra-naujiena','','<p>Antrros naujienos abstraktas Antrros naujienos abstraktas Antrros naujienos abstraktas Antrros naujienos abstraktas Antrros naujienos abstraktas Antrros naujienos abstraktas Antrros naujienos abstraktas Antrros naujienos abstraktas Antrros naujienos abstraktas Antrros naujienos abstraktas Antrros naujienos abstraktas Antrros naujienos abstraktas Antrros naujienos abstraktas Antrros naujienos abstraktas Antrros naujienos abstraktas Antrros naujienos abstraktas Antrros naujienos abstraktas Antrros naujienos abstraktas Antrros naujienos abstraktas Antrros naujienos abstraktas Antrros naujienos abstraktas </p>','<p> ntros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas Antros naujienos visas tekstas  </p>',1,5,0,38,'2009-05-02 17:06:22',62,'','2009-05-02 17:07:05',62,0,'0000-00-00 00:00:00','2009-05-02 17:06:22','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',2,0,1,'','',0,16,'robots=\nauthor=');
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_content` ENABLE KEYS */;

--
-- Table structure for table `jos_content_frontpage`
--

DROP TABLE IF EXISTS `jos_content_frontpage`;
CREATE TABLE `jos_content_frontpage` (
  `content_id` int(11) NOT NULL default '0',
  `ordering` int(11) NOT NULL default '0',
  PRIMARY KEY  (`content_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_content_frontpage`
--


/*!40000 ALTER TABLE `jos_content_frontpage` DISABLE KEYS */;
LOCK TABLES `jos_content_frontpage` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_content_frontpage` ENABLE KEYS */;

--
-- Table structure for table `jos_content_rating`
--

DROP TABLE IF EXISTS `jos_content_rating`;
CREATE TABLE `jos_content_rating` (
  `content_id` int(11) NOT NULL default '0',
  `rating_sum` int(11) unsigned NOT NULL default '0',
  `rating_count` int(11) unsigned NOT NULL default '0',
  `lastip` varchar(50) NOT NULL default '',
  PRIMARY KEY  (`content_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_content_rating`
--


/*!40000 ALTER TABLE `jos_content_rating` DISABLE KEYS */;
LOCK TABLES `jos_content_rating` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_content_rating` ENABLE KEYS */;

--
-- Table structure for table `jos_core_acl_aro`
--

DROP TABLE IF EXISTS `jos_core_acl_aro`;
CREATE TABLE `jos_core_acl_aro` (
  `id` int(11) NOT NULL auto_increment,
  `section_value` varchar(240) NOT NULL default '0',
  `value` varchar(240) NOT NULL default '',
  `order_value` int(11) NOT NULL default '0',
  `name` varchar(255) NOT NULL default '',
  `hidden` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `jos_section_value_value_aro` (`section_value`(100),`value`(100)),
  KEY `jos_gacl_hidden_aro` (`hidden`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_core_acl_aro`
--


/*!40000 ALTER TABLE `jos_core_acl_aro` DISABLE KEYS */;
LOCK TABLES `jos_core_acl_aro` WRITE;
INSERT INTO `jos_core_acl_aro` VALUES (10,'users','62',0,'Administrator',0);
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_core_acl_aro` ENABLE KEYS */;

--
-- Table structure for table `jos_core_acl_aro_groups`
--

DROP TABLE IF EXISTS `jos_core_acl_aro_groups`;
CREATE TABLE `jos_core_acl_aro_groups` (
  `id` int(11) NOT NULL auto_increment,
  `parent_id` int(11) NOT NULL default '0',
  `name` varchar(255) NOT NULL default '',
  `lft` int(11) NOT NULL default '0',
  `rgt` int(11) NOT NULL default '0',
  `value` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`id`),
  KEY `jos_gacl_parent_id_aro_groups` (`parent_id`),
  KEY `jos_gacl_lft_rgt_aro_groups` (`lft`,`rgt`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_core_acl_aro_groups`
--


/*!40000 ALTER TABLE `jos_core_acl_aro_groups` DISABLE KEYS */;
LOCK TABLES `jos_core_acl_aro_groups` WRITE;
INSERT INTO `jos_core_acl_aro_groups` VALUES (17,0,'ROOT',1,22,'ROOT'),(28,17,'USERS',2,21,'USERS'),(29,28,'Public Frontend',3,12,'Public Frontend'),(18,29,'Registered',4,11,'Registered'),(19,18,'Author',5,10,'Author'),(20,19,'Editor',6,9,'Editor'),(21,20,'Publisher',7,8,'Publisher'),(30,28,'Public Backend',13,20,'Public Backend'),(23,30,'Manager',14,19,'Manager'),(24,23,'Administrator',15,18,'Administrator'),(25,24,'Super Administrator',16,17,'Super Administrator');
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_core_acl_aro_groups` ENABLE KEYS */;

--
-- Table structure for table `jos_core_acl_aro_map`
--

DROP TABLE IF EXISTS `jos_core_acl_aro_map`;
CREATE TABLE `jos_core_acl_aro_map` (
  `acl_id` int(11) NOT NULL default '0',
  `section_value` varchar(230) NOT NULL default '0',
  `value` varchar(100) NOT NULL,
  PRIMARY KEY  (`acl_id`,`section_value`,`value`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_core_acl_aro_map`
--


/*!40000 ALTER TABLE `jos_core_acl_aro_map` DISABLE KEYS */;
LOCK TABLES `jos_core_acl_aro_map` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_core_acl_aro_map` ENABLE KEYS */;

--
-- Table structure for table `jos_core_acl_aro_sections`
--

DROP TABLE IF EXISTS `jos_core_acl_aro_sections`;
CREATE TABLE `jos_core_acl_aro_sections` (
  `id` int(11) NOT NULL auto_increment,
  `value` varchar(230) NOT NULL default '',
  `order_value` int(11) NOT NULL default '0',
  `name` varchar(230) NOT NULL default '',
  `hidden` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `jos_gacl_value_aro_sections` (`value`),
  KEY `jos_gacl_hidden_aro_sections` (`hidden`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_core_acl_aro_sections`
--


/*!40000 ALTER TABLE `jos_core_acl_aro_sections` DISABLE KEYS */;
LOCK TABLES `jos_core_acl_aro_sections` WRITE;
INSERT INTO `jos_core_acl_aro_sections` VALUES (10,'users',1,'Users',0);
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_core_acl_aro_sections` ENABLE KEYS */;

--
-- Table structure for table `jos_core_acl_groups_aro_map`
--

DROP TABLE IF EXISTS `jos_core_acl_groups_aro_map`;
CREATE TABLE `jos_core_acl_groups_aro_map` (
  `group_id` int(11) NOT NULL default '0',
  `section_value` varchar(240) NOT NULL default '',
  `aro_id` int(11) NOT NULL default '0',
  UNIQUE KEY `group_id_aro_id_groups_aro_map` (`group_id`,`section_value`,`aro_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_core_acl_groups_aro_map`
--


/*!40000 ALTER TABLE `jos_core_acl_groups_aro_map` DISABLE KEYS */;
LOCK TABLES `jos_core_acl_groups_aro_map` WRITE;
INSERT INTO `jos_core_acl_groups_aro_map` VALUES (25,'',10);
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_core_acl_groups_aro_map` ENABLE KEYS */;

--
-- Table structure for table `jos_core_log_items`
--

DROP TABLE IF EXISTS `jos_core_log_items`;
CREATE TABLE `jos_core_log_items` (
  `time_stamp` date NOT NULL default '0000-00-00',
  `item_table` varchar(50) NOT NULL default '',
  `item_id` int(11) unsigned NOT NULL default '0',
  `hits` int(11) unsigned NOT NULL default '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_core_log_items`
--


/*!40000 ALTER TABLE `jos_core_log_items` DISABLE KEYS */;
LOCK TABLES `jos_core_log_items` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_core_log_items` ENABLE KEYS */;

--
-- Table structure for table `jos_core_log_searches`
--

DROP TABLE IF EXISTS `jos_core_log_searches`;
CREATE TABLE `jos_core_log_searches` (
  `search_term` varchar(128) NOT NULL default '',
  `hits` int(11) unsigned NOT NULL default '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_core_log_searches`
--


/*!40000 ALTER TABLE `jos_core_log_searches` DISABLE KEYS */;
LOCK TABLES `jos_core_log_searches` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_core_log_searches` ENABLE KEYS */;

--
-- Table structure for table `jos_dbcache`
--

DROP TABLE IF EXISTS `jos_dbcache`;
CREATE TABLE `jos_dbcache` (
  `id` varchar(32) NOT NULL default '',
  `groupname` varchar(32) NOT NULL default '',
  `expire` datetime NOT NULL default '0000-00-00 00:00:00',
  `value` mediumblob NOT NULL,
  PRIMARY KEY  (`id`,`groupname`),
  KEY `expire` (`expire`,`groupname`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_dbcache`
--


/*!40000 ALTER TABLE `jos_dbcache` DISABLE KEYS */;
LOCK TABLES `jos_dbcache` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_dbcache` ENABLE KEYS */;

--
-- Table structure for table `jos_groups`
--

DROP TABLE IF EXISTS `jos_groups`;
CREATE TABLE `jos_groups` (
  `id` tinyint(3) unsigned NOT NULL default '0',
  `name` varchar(50) NOT NULL default '',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_groups`
--


/*!40000 ALTER TABLE `jos_groups` DISABLE KEYS */;
LOCK TABLES `jos_groups` WRITE;
INSERT INTO `jos_groups` VALUES (0,'Public'),(1,'Registered'),(2,'Special');
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_groups` ENABLE KEYS */;

--
-- Table structure for table `jos_jf_content`
--

DROP TABLE IF EXISTS `jos_jf_content`;
CREATE TABLE `jos_jf_content` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `language_id` int(11) NOT NULL default '0',
  `reference_id` int(11) NOT NULL default '0',
  `reference_table` varchar(100) NOT NULL default '',
  `reference_field` varchar(100) NOT NULL default '',
  `value` mediumtext NOT NULL,
  `original_value` varchar(255) default NULL,
  `original_text` mediumtext NOT NULL,
  `modified` datetime NOT NULL default '0000-00-00 00:00:00',
  `modified_by` int(11) unsigned NOT NULL default '0',
  `published` tinyint(1) unsigned NOT NULL default '0',
  PRIMARY KEY  (`id`),
  KEY `combo` (`reference_id`,`reference_field`,`reference_table`),
  KEY `jfContent` (`language_id`,`reference_id`,`reference_table`),
  KEY `jfContentLanguage` (`reference_id`,`reference_field`,`reference_table`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_jf_content`
--


/*!40000 ALTER TABLE `jos_jf_content` DISABLE KEYS */;
LOCK TABLES `jos_jf_content` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_jf_content` ENABLE KEYS */;

--
-- Table structure for table `jos_jf_tableinfo`
--

DROP TABLE IF EXISTS `jos_jf_tableinfo`;
CREATE TABLE `jos_jf_tableinfo` (
  `id` int(11) NOT NULL auto_increment,
  `joomlatablename` varchar(100) NOT NULL default '',
  `tablepkID` varchar(100) NOT NULL default '',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_jf_tableinfo`
--


/*!40000 ALTER TABLE `jos_jf_tableinfo` DISABLE KEYS */;
LOCK TABLES `jos_jf_tableinfo` WRITE;
INSERT INTO `jos_jf_tableinfo` VALUES (14,'banner','bid'),(15,'bannerclient','cid'),(16,'categories','id'),(17,'contact_details','id'),(18,'content','id'),(19,'menu','id'),(20,'modules','id'),(21,'newsfeeds','id'),(22,'poll_data','id'),(23,'polls','id'),(24,'sections','id'),(25,'users','id'),(26,'weblinks','id');
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_jf_tableinfo` ENABLE KEYS */;

--
-- Table structure for table `jos_languages`
--

DROP TABLE IF EXISTS `jos_languages`;
CREATE TABLE `jos_languages` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(100) NOT NULL default '',
  `active` tinyint(1) NOT NULL default '0',
  `iso` varchar(20) default NULL,
  `code` varchar(20) NOT NULL default '',
  `shortcode` varchar(20) default NULL,
  `image` varchar(100) default NULL,
  `fallback_code` varchar(20) NOT NULL default '',
  `params` text NOT NULL,
  `ordering` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_languages`
--


/*!40000 ALTER TABLE `jos_languages` DISABLE KEYS */;
LOCK TABLES `jos_languages` WRITE;
INSERT INTO `jos_languages` VALUES (1,'English',1,'en_GB.utf8, en_GB.UT','en-GB','en','','','',1),(2,'Lithuanian',1,'lt_LT.utf8, lt_LT.UT','lt-LT','lt','','','',2);
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_languages` ENABLE KEYS */;

--
-- Table structure for table `jos_menu`
--

DROP TABLE IF EXISTS `jos_menu`;
CREATE TABLE `jos_menu` (
  `id` int(11) NOT NULL auto_increment,
  `menutype` varchar(75) default NULL,
  `name` varchar(255) default NULL,
  `alias` varchar(255) NOT NULL default '',
  `link` text,
  `type` varchar(50) NOT NULL default '',
  `published` tinyint(1) NOT NULL default '0',
  `parent` int(11) unsigned NOT NULL default '0',
  `componentid` int(11) unsigned NOT NULL default '0',
  `sublevel` int(11) default '0',
  `ordering` int(11) default '0',
  `checked_out` int(11) unsigned NOT NULL default '0',
  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `pollid` int(11) NOT NULL default '0',
  `browserNav` tinyint(4) default '0',
  `access` tinyint(3) unsigned NOT NULL default '0',
  `utaccess` tinyint(3) unsigned NOT NULL default '0',
  `params` text NOT NULL,
  `lft` int(11) unsigned NOT NULL default '0',
  `rgt` int(11) unsigned NOT NULL default '0',
  `home` int(1) unsigned NOT NULL default '0',
  PRIMARY KEY  (`id`),
  KEY `componentid` (`componentid`,`menutype`,`published`,`access`),
  KEY `menutype` (`menutype`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_menu`
--


/*!40000 ALTER TABLE `jos_menu` DISABLE KEYS */;
LOCK TABLES `jos_menu` WRITE;
INSERT INTO `jos_menu` VALUES (1,'mainmenu','Pradinis','pradinis','index.php?option=com_content&view=article&id=46','component',-2,0,20,0,1,0,'0000-00-00 00:00:00',0,0,0,3,'show_noauth=0\nshow_title=1\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\nfeed_summary=\npage_title=Welcome to the Frontpage\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(63,'leftmeniu','Naujienos','naujienos','index.php?option=com_content&view=category&layout=blog&id=38','component',1,0,20,0,1,0,'0000-00-00 00:00:00',0,0,0,0,'show_description=0\nshow_description_image=0\nnum_leading_articles=1\nnum_intro_articles=100\nnum_columns=1\nnum_links=1\norderby_pri=\norderby_sec=\nmulti_column_order=0\nshow_pagination=2\nshow_pagination_results=1\nshow_feed_link=1\nshow_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=1\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(56,'leftmeniu','Mini namas','mini-namas','index.php?option=com_content&view=article&id=50','component',1,0,20,0,2,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(57,'leftmeniu','Kempingai','kempingai','index.php?option=com_content&view=article&id=51','component',1,0,20,0,3,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(58,'leftmeniu','Projektai','projektai','index.php?option=com_content&view=article&id=52','component',1,0,20,0,4,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(59,'leftmeniu','Galerija','galerija','index.php?option=com_content&view=article&id=53','component',1,0,20,0,5,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(60,'leftmeniu','Eko kuras','eko-kuras','index.php?option=com_content&view=article&id=54','component',1,0,20,0,6,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(61,'leftmeniu','Karjeras','karjeras','index.php?option=com_content&view=article&id=55','component',1,0,20,0,7,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(53,'mainmenu','Apie mus','apie-mus','index.php?option=com_content&view=article&id=47','component',1,0,20,0,3,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(62,'mainmenu','Pradinis','pradinis','index.php?option=com_content&view=article&id=46','component',1,0,20,0,2,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,1),(54,'mainmenu','Karjera','karjera','index.php?option=com_content&view=article&id=48','component',1,0,20,0,4,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(55,'mainmenu','Kontaktai','kontaktai','index.php?option=com_content&view=article&id=49','component',1,0,20,0,5,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0);
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_menu` ENABLE KEYS */;

--
-- Table structure for table `jos_menu_types`
--

DROP TABLE IF EXISTS `jos_menu_types`;
CREATE TABLE `jos_menu_types` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `menutype` varchar(75) NOT NULL default '',
  `title` varchar(255) NOT NULL default '',
  `description` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `menutype` (`menutype`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_menu_types`
--


/*!40000 ALTER TABLE `jos_menu_types` DISABLE KEYS */;
LOCK TABLES `jos_menu_types` WRITE;
INSERT INTO `jos_menu_types` VALUES (1,'mainmenu','Main Menu','The main menu for the site'),(7,'leftmeniu','Left meniu','');
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_menu_types` ENABLE KEYS */;

--
-- Table structure for table `jos_messages`
--

DROP TABLE IF EXISTS `jos_messages`;
CREATE TABLE `jos_messages` (
  `message_id` int(10) unsigned NOT NULL auto_increment,
  `user_id_from` int(10) unsigned NOT NULL default '0',
  `user_id_to` int(10) unsigned NOT NULL default '0',
  `folder_id` int(10) unsigned NOT NULL default '0',
  `date_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `state` int(11) NOT NULL default '0',
  `priority` int(1) unsigned NOT NULL default '0',
  `subject` text NOT NULL,
  `message` text NOT NULL,
  PRIMARY KEY  (`message_id`),
  KEY `useridto_state` (`user_id_to`,`state`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_messages`
--


/*!40000 ALTER TABLE `jos_messages` DISABLE KEYS */;
LOCK TABLES `jos_messages` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_messages` ENABLE KEYS */;

--
-- Table structure for table `jos_messages_cfg`
--

DROP TABLE IF EXISTS `jos_messages_cfg`;
CREATE TABLE `jos_messages_cfg` (
  `user_id` int(10) unsigned NOT NULL default '0',
  `cfg_name` varchar(100) NOT NULL default '',
  `cfg_value` varchar(255) NOT NULL default '',
  UNIQUE KEY `idx_user_var_name` (`user_id`,`cfg_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_messages_cfg`
--


/*!40000 ALTER TABLE `jos_messages_cfg` DISABLE KEYS */;
LOCK TABLES `jos_messages_cfg` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_messages_cfg` ENABLE KEYS */;

--
-- Table structure for table `jos_migration_backlinks`
--

DROP TABLE IF EXISTS `jos_migration_backlinks`;
CREATE TABLE `jos_migration_backlinks` (
  `itemid` int(11) NOT NULL,
  `name` varchar(100) NOT NULL,
  `url` text NOT NULL,
  `sefurl` text NOT NULL,
  `newurl` text NOT NULL,
  PRIMARY KEY  (`itemid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_migration_backlinks`
--


/*!40000 ALTER TABLE `jos_migration_backlinks` DISABLE KEYS */;
LOCK TABLES `jos_migration_backlinks` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_migration_backlinks` ENABLE KEYS */;

--
-- Table structure for table `jos_modules`
--

DROP TABLE IF EXISTS `jos_modules`;
CREATE TABLE `jos_modules` (
  `id` int(11) NOT NULL auto_increment,
  `title` text NOT NULL,
  `content` text NOT NULL,
  `ordering` int(11) NOT NULL default '0',
  `position` varchar(50) default NULL,
  `checked_out` int(11) unsigned NOT NULL default '0',
  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `published` tinyint(1) NOT NULL default '0',
  `module` varchar(50) default NULL,
  `numnews` int(11) NOT NULL default '0',
  `access` tinyint(3) unsigned NOT NULL default '0',
  `showtitle` tinyint(3) unsigned NOT NULL default '1',
  `params` text NOT NULL,
  `iscore` tinyint(4) NOT NULL default '0',
  `client_id` tinyint(4) NOT NULL default '0',
  `control` text NOT NULL,
  PRIMARY KEY  (`id`),
  KEY `published` (`published`,`access`),
  KEY `newsfeeds` (`module`,`published`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_modules`
--


/*!40000 ALTER TABLE `jos_modules` DISABLE KEYS */;
LOCK TABLES `jos_modules` WRITE;
INSERT INTO `jos_modules` VALUES (1,'Main Menu','',0,'left',0,'0000-00-00 00:00:00',0,'mod_mainmenu',0,0,1,'menutype=mainmenu\nmoduleclass_sfx=_menu\n',1,0,''),(2,'Login','',1,'login',0,'0000-00-00 00:00:00',1,'mod_login',0,0,1,'',1,1,''),(3,'Popular','',3,'cpanel',0,'0000-00-00 00:00:00',1,'mod_popular',0,2,1,'',0,1,''),(4,'Recent added Articles','',4,'cpanel',0,'0000-00-00 00:00:00',1,'mod_latest',0,2,1,'ordering=c_dsc\nuser_id=0\ncache=0\n\n',0,1,''),(5,'Menu Stats','',5,'cpanel',0,'0000-00-00 00:00:00',1,'mod_stats',0,2,1,'',0,1,''),(6,'Unread Messages','',1,'header',0,'0000-00-00 00:00:00',1,'mod_unread',0,2,1,'',1,1,''),(7,'Online Users','',2,'header',0,'0000-00-00 00:00:00',1,'mod_online',0,2,1,'',1,1,''),(8,'Toolbar','',1,'toolbar',0,'0000-00-00 00:00:00',1,'mod_toolbar',0,2,1,'',1,1,''),(9,'Quick Icons','',1,'icon',0,'0000-00-00 00:00:00',1,'mod_quickicon',0,2,1,'',1,1,''),(10,'Logged in Users','',2,'cpanel',0,'0000-00-00 00:00:00',1,'mod_logged',0,2,1,'',0,1,''),(11,'Footer','',0,'footer',0,'0000-00-00 00:00:00',1,'mod_footer',0,0,1,'',1,1,''),(12,'Admin Menu','',1,'menu',0,'0000-00-00 00:00:00',1,'mod_menu',0,2,1,'',0,1,''),(13,'Admin SubMenu','',1,'submenu',0,'0000-00-00 00:00:00',1,'mod_submenu',0,2,1,'',0,1,''),(14,'User Status','',1,'status',0,'0000-00-00 00:00:00',1,'mod_status',0,2,1,'',0,1,''),(15,'Title','',1,'title',0,'0000-00-00 00:00:00',1,'mod_title',0,2,1,'',0,1,''),(16,'Polls','',1,'right',0,'0000-00-00 00:00:00',0,'mod_poll',0,0,1,'id=14\ncache=1',0,0,''),(18,'Login Form','',4,'left',0,'0000-00-00 00:00:00',0,'mod_login',0,0,1,'greeting=1\nname=0',1,0,''),(19,'Latest News','',4,'user1',0,'0000-00-00 00:00:00',0,'mod_latestnews',0,0,1,'cache=1',1,0,''),(20,'Statistics','',3,'left',0,'0000-00-00 00:00:00',0,'mod_stats',0,0,1,'serverinfo=1\nsiteinfo=1\ncounter=1\nincrease=0\nmoduleclass_sfx=',0,0,''),(21,'Dabar naršo','',2,'left',0,'0000-00-00 00:00:00',0,'mod_whosonline',0,0,1,'cache=0\nshowmode=0\nmoduleclass_sfx=\n\n',0,0,''),(22,'Popular','',6,'user2',0,'0000-00-00 00:00:00',0,'mod_mostread',0,0,1,'cache=1',0,0,''),(23,'Archive','',5,'left',0,'0000-00-00 00:00:00',0,'mod_archive',0,0,1,'cache=1',1,0,''),(24,'Sections','',6,'left',0,'0000-00-00 00:00:00',0,'mod_sections',0,0,1,'cache=1',1,0,''),(25,'Newsflash','',1,'top',0,'0000-00-00 00:00:00',0,'mod_newsflash',0,0,1,'catid=3\r\nstyle=random\r\nitems=\r\nmoduleclass_sfx=',0,0,''),(26,'Related Items','',7,'left',0,'0000-00-00 00:00:00',0,'mod_related_items',0,0,1,'',0,0,''),(27,'Search','',0,'user4',0,'0000-00-00 00:00:00',1,'mod_search',0,0,0,'moduleclass_sfx=\nwidth=20\ntext=\nbutton=1\nbutton_pos=right\nimagebutton=\nbutton_text=ff\ncache=1\ncache_time=900\n\n',0,0,''),(28,'Random Image','',9,'right',0,'0000-00-00 00:00:00',0,'mod_random_image',0,0,1,'',0,0,''),(30,'Banners','',1,'footer',0,'0000-00-00 00:00:00',0,'mod_banners',0,0,0,'target=1\ncount=1\ncid=1\ncatid=33\ntag_search=0\nordering=random\nheader_text=\nfooter_text=\nmoduleclass_sfx=\ncache=1\ncache_time=15\n\n',1,0,''),(46,'Direct Translation','',0,'status',0,'0000-00-00 00:00:00',1,'mod_translate',0,2,0,'',0,1,''),(32,'Wrapper','',8,'left',0,'0000-00-00 00:00:00',0,'mod_wrapper',0,0,1,'',0,0,''),(33,'Footer','',2,'footer',0,'0000-00-00 00:00:00',0,'mod_footer',0,0,0,'cache=1\n\n',1,0,''),(34,'Feed Display','',9,'left',0,'0000-00-00 00:00:00',0,'mod_feed',0,0,1,'',1,0,''),(35,'Breadcrumbs','',1,'breadcrumb',0,'0000-00-00 00:00:00',1,'mod_breadcrumbs',0,0,1,'moduleclass_sfx=\ncache=0\nshowHome=1\nhomeText=Home\nshowComponent=1\nseparator=\n\n',1,0,''),(36,'Syndication','',3,'syndicate',0,'0000-00-00 00:00:00',0,'mod_syndicate',0,0,0,'',1,0,''),(38,'Advertisement','',3,'right',0,'0000-00-00 00:00:00',0,'mod_banners',0,0,1,'count=4\r\nrandomise=0\r\ncid=0\r\ncatid=14\r\nheader_text=Featured Links:\r\nfooter_text=<a href=\"http://www.joomla.org\">Ads by Joomla!</a>\r\nmoduleclass_sfx=_text\r\ncache=0\r\n\r\n',0,0,''),(45,'Language Selection','',-1,'user5',0,'0000-00-00 00:00:00',1,'mod_jflanguageselection',0,0,0,'type=rawimages\nshow_active=1\ninc_jf_css=1\nmoduleclass_sfx=\ncache_href=1\n\n',0,0,''),(44,'Rekvizitai','',10,'left',0,'0000-00-00 00:00:00',1,'mod_newsflash',0,0,1,'catid=37\nlayout=default\nimage=1\nlink_titles=\nshowLastSeparator=1\nreadmore=0\nitem_title=0\nitems=\nmoduleclass_sfx=\ncache=0\ncache_time=900\n\n',0,0,''),(43,'Paslaugos','',0,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,1,'menutype=leftmeniu\nmenu_style=list\nstartLevel=0\nendLevel=0\nshowAllChildren=0\nwindow_open=\nshow_whitespace=0\ncache=1\ntag_id=\nclass_sfx=\nmoduleclass_sfx=\nmaxdepth=10\nmenu_images=0\nmenu_images_align=0\nmenu_images_link=0\nexpand_menu=0\nactivate_parent=0\nfull_active_id=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=\n\n',0,0,''),(41,'Welcome to Joomla!','<div style=\"padding: 5px\">  <p>   Congratulations on choosing Joomla! as your content management system. To   help you get started, check out these excellent resources for securing your   server and pointers to documentation and other helpful resources. </p> <p>   <strong>Security</strong><br /> </p> <p>   On the Internet, security is always a concern. For that reason, you are   encouraged to subscribe to the   <a href=\"http://feedburner.google.com/fb/a/mailverify?uri=JoomlaSecurityNews\" target=\"_blank\">Joomla!   Security Announcements</a> for the latest information on new Joomla! releases,   emailed to you automatically. </p> <p>   If this is one of your first Web sites, security considerations may   seem complicated and intimidating. There are three simple steps that go a long   way towards securing a Web site: (1) regular backups; (2) prompt updates to the   <a href=\"http://www.joomla.org/download.html\" target=\"_blank\">latest Joomla! release;</a> and (3) a <a href=\"http://docs.joomla.org/Security_Checklist_2_-_Hosting_and_Server_Setup\" target=\"_blank\" title=\"good Web host\">good Web host</a>. There are many other important security considerations that you can learn about by reading the <a href=\"http://docs.joomla.org/Category:Security_Checklist\" target=\"_blank\" title=\"Joomla! Security Checklist\">Joomla! Security Checklist</a>. </p> <p>If you believe your Web site was attacked, or you think you have discovered a security issue in Joomla!, please do not post it in the Joomla! forums. Publishing this information could put other Web sites at risk. Instead, report possible security vulnerabilities to the <a href=\"http://developer.joomla.org/security/contact-the-team.html\" target=\"_blank\" title=\"Joomla! Security Task Force\">Joomla! Security Task Force</a>.</p><p><strong>Learning Joomla!</strong> </p> <p>   A good place to start learning Joomla! is the   \"<a href=\"http://docs.joomla.org/beginners\" target=\"_blank\">Absolute Beginner\'s   Guide to Joomla!.</a>\" There, you will find a Quick Start to Joomla!   <a href=\"http://help.joomla.org/ghop/feb2008/task048/joomla_15_quickstart.pdf\" target=\"_blank\">guide</a>   and <a href=\"http://help.joomla.org/ghop/feb2008/task167/index.html\" target=\"_blank\">video</a>,   amongst many other tutorials. The   <a href=\"http://community.joomla.org/magazine/view-all-issues.html\" target=\"_blank\">Joomla!   Community Magazine</a> also has   <a href=\"http://community.joomla.org/magazine/article/522-introductory-learning-joomla-using-sample-data.html\" target=\"_blank\">articles   for new learners</a> and experienced users, alike. A great place to look for   answers is the   <a href=\"http://docs.joomla.org/Category:FAQ\" target=\"_blank\">Frequently Asked   Questions (FAQ)</a>. If you are stuck on a particular screen in the   Administrator (which is where you are now), try clicking the Help toolbar   button to get assistance specific to that page. </p> <p>   If you still have questions, please feel free to use the   <a href=\"http://forum.joomla.org/\" target=\"_blank\">Joomla! Forums.</a> The forums   are an incredibly valuable resource for all levels of Joomla! users. Before   you post a question, though, use the forum search (located at the top of each   forum page) to see if the question has been asked and answered. </p> <p>   <strong>Getting Involved</strong> </p> <p>   <a name=\"twjs\" title=\"twjs\"></a> If you want to help make Joomla! better, consider getting   involved. There are   <a href=\"http://www.joomla.org/about-joomla/contribute-to-joomla.html\" target=\"_blank\">many ways   you can make a positive difference.</a> Have fun using Joomla!.</p></div>',0,'cpanel',0,'0000-00-00 00:00:00',1,'mod_custom',0,2,1,'moduleclass_sfx=\n\n',1,1,''),(42,'Joomla! Security Newsfeed','',6,'cpanel',62,'2008-10-25 20:15:17',1,'mod_feed',0,0,1,'cache=1\ncache_time=15\nmoduleclass_sfx=\nrssurl=http://feeds.joomla.org/JoomlaSecurityNews\nrssrtl=0\nrsstitle=1\nrssdesc=0\nrssimage=1\nrssitems=1\nrssitemdesc=1\nword_count=0\n\n',0,1,'');
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_modules` ENABLE KEYS */;

--
-- Table structure for table `jos_modules_menu`
--

DROP TABLE IF EXISTS `jos_modules_menu`;
CREATE TABLE `jos_modules_menu` (
  `moduleid` int(11) NOT NULL default '0',
  `menuid` int(11) NOT NULL default '0',
  PRIMARY KEY  (`moduleid`,`menuid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_modules_menu`
--


/*!40000 ALTER TABLE `jos_modules_menu` DISABLE KEYS */;
LOCK TABLES `jos_modules_menu` WRITE;
INSERT INTO `jos_modules_menu` VALUES (1,0),(16,1),(17,0),(18,1),(19,1),(19,2),(19,4),(19,27),(19,36),(21,0),(22,1),(22,2),(22,4),(22,27),(22,36),(25,0),(27,0),(29,0),(30,0),(31,1),(32,0),(33,0),(34,0),(35,0),(36,0),(38,1),(39,43),(39,44),(39,45),(39,46),(39,47),(40,0),(43,0),(44,0),(45,0);
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_modules_menu` ENABLE KEYS */;

--
-- Table structure for table `jos_newsfeeds`
--

DROP TABLE IF EXISTS `jos_newsfeeds`;
CREATE TABLE `jos_newsfeeds` (
  `catid` int(11) NOT NULL default '0',
  `id` int(11) NOT NULL auto_increment,
  `name` text NOT NULL,
  `alias` varchar(255) NOT NULL default '',
  `link` text NOT NULL,
  `filename` varchar(200) default NULL,
  `published` tinyint(1) NOT NULL default '0',
  `numarticles` int(11) unsigned NOT NULL default '1',
  `cache_time` int(11) unsigned NOT NULL default '3600',
  `checked_out` tinyint(3) unsigned NOT NULL default '0',
  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `ordering` int(11) NOT NULL default '0',
  `rtl` tinyint(4) NOT NULL default '0',
  PRIMARY KEY  (`id`),
  KEY `published` (`published`),
  KEY `catid` (`catid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_newsfeeds`
--


/*!40000 ALTER TABLE `jos_newsfeeds` DISABLE KEYS */;
LOCK TABLES `jos_newsfeeds` WRITE;
INSERT INTO `jos_newsfeeds` VALUES (4,1,'Joomla! Announcements','joomla-official-news','http://feeds.joomla.org/JoomlaAnnouncements','',1,5,3600,0,'0000-00-00 00:00:00',1,0),(4,2,'Joomla! Core Team Blog','joomla-core-team-blog','http://feeds.joomla.org/JoomlaCommunityCoreTeamBlog','',1,5,3600,0,'0000-00-00 00:00:00',2,0),(4,3,'Joomla! Community Magazine','joomla-community-magazine','http://feeds.joomla.org/JoomlaMagazine','',1,20,3600,0,'0000-00-00 00:00:00',3,0),(4,4,'Joomla! Developer News','joomla-developer-news','http://feeds.joomla.org/JoomlaDeveloper','',1,5,3600,0,'0000-00-00 00:00:00',4,0),(4,5,'Joomla! Security News','joomla-security-news','http://feeds.joomla.org/JoomlaSecurityNews','',1,5,3600,0,'0000-00-00 00:00:00',5,0),(5,6,'Free Software Foundation Blogs','free-software-foundation-blogs','http://www.fsf.org/blogs/RSS',NULL,1,5,3600,0,'0000-00-00 00:00:00',4,0),(5,7,'Free Software Foundation','free-software-foundation','http://www.fsf.org/news/RSS',NULL,1,5,3600,62,'2008-09-14 00:24:25',3,0),(5,8,'Software Freedom Law Center Blog','software-freedom-law-center-blog','http://www.softwarefreedom.org/feeds/blog/',NULL,1,5,3600,0,'0000-00-00 00:00:00',2,0),(5,9,'Software Freedom Law Center News','software-freedom-law-center','http://www.softwarefreedom.org/feeds/news/',NULL,1,5,3600,0,'0000-00-00 00:00:00',1,0),(5,10,'Open Source Initiative Blog','open-source-initiative-blog','http://www.opensource.org/blog/feed',NULL,1,5,3600,0,'0000-00-00 00:00:00',5,0),(6,11,'PHP News and Announcements','php-news-and-announcements','http://www.php.net/feed.atom',NULL,1,5,3600,62,'2008-09-14 00:25:37',1,0),(6,12,'Planet MySQL','planet-mysql','http://www.planetmysql.org/rss20.xml',NULL,1,5,3600,62,'2008-09-14 00:25:51',2,0),(6,13,'Linux Foundation Announcements','linux-foundation-announcements','http://www.linuxfoundation.org/press/rss20.xml',NULL,1,5,3600,62,'2008-09-14 00:26:11',3,0),(6,14,'Mootools Blog','mootools-blog','http://feeds.feedburner.com/mootools-blog',NULL,1,5,3600,62,'2008-09-14 00:26:51',4,0);
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_newsfeeds` ENABLE KEYS */;

--
-- Table structure for table `jos_plugins`
--

DROP TABLE IF EXISTS `jos_plugins`;
CREATE TABLE `jos_plugins` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(100) NOT NULL default '',
  `element` varchar(100) NOT NULL default '',
  `folder` varchar(100) NOT NULL default '',
  `access` tinyint(3) unsigned NOT NULL default '0',
  `ordering` int(11) NOT NULL default '0',
  `published` tinyint(3) NOT NULL default '0',
  `iscore` tinyint(3) NOT NULL default '0',
  `client_id` tinyint(3) NOT NULL default '0',
  `checked_out` int(11) unsigned NOT NULL default '0',
  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `params` text NOT NULL,
  PRIMARY KEY  (`id`),
  KEY `idx_folder` (`published`,`client_id`,`access`,`folder`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_plugins`
--


/*!40000 ALTER TABLE `jos_plugins` DISABLE KEYS */;
LOCK TABLES `jos_plugins` WRITE;
INSERT INTO `jos_plugins` VALUES (1,'Authentication - Joomla','joomla','authentication',0,1,1,1,0,0,'0000-00-00 00:00:00',''),(2,'Authentication - LDAP','ldap','authentication',0,2,0,1,0,0,'0000-00-00 00:00:00','host=\nport=389\nuse_ldapV3=0\nnegotiate_tls=0\nno_referrals=0\nauth_method=bind\nbase_dn=\nsearch_string=\nusers_dn=\nusername=\npassword=\nldap_fullname=fullName\nldap_email=mail\nldap_uid=uid\n\n'),(3,'Authentication - GMail','gmail','authentication',0,4,0,0,0,0,'0000-00-00 00:00:00',''),(4,'Authentication - OpenID','openid','authentication',0,3,0,0,0,0,'0000-00-00 00:00:00',''),(5,'User - Joomla!','joomla','user',0,0,1,0,0,0,'0000-00-00 00:00:00','autoregister=1\n\n'),(6,'Search - Content','content','search',0,1,1,1,0,0,'0000-00-00 00:00:00','search_limit=50\nsearch_content=1\nsearch_uncategorised=1\nsearch_archived=1\n\n'),(7,'Search - Contacts','contacts','search',0,3,1,1,0,0,'0000-00-00 00:00:00','search_limit=50\n\n'),(8,'Search - Categories','categories','search',0,4,1,0,0,0,'0000-00-00 00:00:00','search_limit=50\n\n'),(9,'Search - Sections','sections','search',0,5,1,0,0,0,'0000-00-00 00:00:00','search_limit=50\n\n'),(10,'Search - Newsfeeds','newsfeeds','search',0,6,1,0,0,0,'0000-00-00 00:00:00','search_limit=50\n\n'),(11,'Search - Weblinks','weblinks','search',0,2,1,1,0,0,'0000-00-00 00:00:00','search_limit=50\n\n'),(12,'Content - Pagebreak','pagebreak','content',0,10000,1,1,0,0,'0000-00-00 00:00:00','enabled=1\ntitle=1\nmultipage_toc=1\nshowall=1\n\n'),(13,'Content - Rating','vote','content',0,4,1,1,0,0,'0000-00-00 00:00:00',''),(14,'Content - Email Cloaking','emailcloak','content',0,5,1,0,0,0,'0000-00-00 00:00:00','mode=1\n\n'),(15,'Content - Code Hightlighter (GeSHi)','geshi','content',0,5,0,0,0,0,'0000-00-00 00:00:00',''),(16,'Content - Load Module','loadmodule','content',0,6,1,0,0,0,'0000-00-00 00:00:00','enabled=1\nstyle=0\n\n'),(17,'Content - Page Navigation','pagenavigation','content',0,2,1,1,0,0,'0000-00-00 00:00:00','position=1\n\n'),(18,'Editor - No Editor','none','editors',0,0,1,1,0,0,'0000-00-00 00:00:00',''),(19,'Editor - TinyMCE 2.0','tinymce','editors',0,0,1,1,0,0,'0000-00-00 00:00:00','theme=advanced\ncleanup=1\ncleanup_startup=0\nautosave=0\ncompressed=0\nrelative_urls=1\ntext_direction=ltr\nlang_mode=0\nlang_code=en\ninvalid_elements=applet\ncontent_css=1\ncontent_css_custom=\nnewlines=0\ntoolbar=top\nhr=1\nsmilies=1\ntable=1\nstyle=1\nlayer=1\nxhtmlxtras=0\ntemplate=0\ndirectionality=1\nfullscreen=1\nhtml_height=550\nhtml_width=750\npreview=1\ninsertdate=1\nformat_date=%Y-%m-%d\ninserttime=1\nformat_time=%H:%M:%S\n\n'),(20,'Editor - XStandard Lite 2.0','xstandard','editors',0,0,0,1,0,0,'0000-00-00 00:00:00',''),(21,'Editor Button - Image','image','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(22,'Editor Button - Pagebreak','pagebreak','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(23,'Editor Button - Readmore','readmore','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(24,'XML-RPC - Joomla','joomla','xmlrpc',0,7,0,1,0,0,'0000-00-00 00:00:00',''),(25,'XML-RPC - Blogger API','blogger','xmlrpc',0,7,0,1,0,0,'0000-00-00 00:00:00','catid=1\nsectionid=0\n\n'),(27,'System - SEF','sef','system',0,1,1,0,0,0,'0000-00-00 00:00:00',''),(28,'System - Debug','debug','system',0,2,1,0,0,0,'0000-00-00 00:00:00','queries=1\nmemory=1\nlangauge=1\n\n'),(29,'System - Legacy','legacy','system',0,3,0,1,0,0,'0000-00-00 00:00:00','route=0\n\n'),(30,'System - Cache','cache','system',0,4,0,1,0,0,'0000-00-00 00:00:00','browsercache=0\ncachetime=15\n\n'),(31,'System - Log','log','system',0,5,0,1,0,0,'0000-00-00 00:00:00',''),(32,'System - Remember Me','remember','system',0,6,1,1,0,0,'0000-00-00 00:00:00',''),(33,'System - Backlink','backlink','system',0,7,0,1,0,0,'0000-00-00 00:00:00',''),(34,'System - Jfdatabase','jfdatabase','system',0,-100,1,0,0,0,'0000-00-00 00:00:00',''),(35,'System - Jfrouter','jfrouter','system',0,-101,1,0,0,0,'0000-00-00 00:00:00','determitLanguage=1\nnewVisitorAction=site\nuse302redirect=0\nenableCookie=1\nsefordomain=sefprefix\nsefprefixes=1::en|2::lt\nsefsubdomain=1::|2::\n\n'),(36,'Content - Jfalternative','jfalternative','content',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(37,'Search - Jfcategories','jfcategories','search',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(38,'Search - Jfcontacts','jfcontacts','search',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(39,'Search - Jfcontent','jfcontent','search',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(40,'Search - Jfnewsfeeds','jfnewsfeeds','search',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(41,'Search - Jfsections','jfsections','search',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(42,'Search - Jfweblinks','jfweblinks','search',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(43,'Joomfish - Missing_translation','missing_translation','joomfish',0,0,1,0,0,0,'0000-00-00 00:00:00','');
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_plugins` ENABLE KEYS */;

--
-- Table structure for table `jos_poll_data`
--

DROP TABLE IF EXISTS `jos_poll_data`;
CREATE TABLE `jos_poll_data` (
  `id` int(11) NOT NULL auto_increment,
  `pollid` int(11) NOT NULL default '0',
  `text` text NOT NULL,
  `hits` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`),
  KEY `pollid` (`pollid`,`text`(1))
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_poll_data`
--


/*!40000 ALTER TABLE `jos_poll_data` DISABLE KEYS */;
LOCK TABLES `jos_poll_data` WRITE;
INSERT INTO `jos_poll_data` VALUES (1,14,'Community Sites',2),(2,14,'Public Brand Sites',3),(3,14,'eCommerce',1),(4,14,'Blogs',0),(5,14,'Intranets',0),(6,14,'Photo and Media Sites',2),(7,14,'All of the Above!',3),(8,14,'',0),(9,14,'',0),(10,14,'',0),(11,14,'',0),(12,14,'',0);
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_poll_data` ENABLE KEYS */;

--
-- Table structure for table `jos_poll_date`
--

DROP TABLE IF EXISTS `jos_poll_date`;
CREATE TABLE `jos_poll_date` (
  `id` bigint(20) NOT NULL auto_increment,
  `date` datetime NOT NULL default '0000-00-00 00:00:00',
  `vote_id` int(11) NOT NULL default '0',
  `poll_id` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`),
  KEY `poll_id` (`poll_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_poll_date`
--


/*!40000 ALTER TABLE `jos_poll_date` DISABLE KEYS */;
LOCK TABLES `jos_poll_date` WRITE;
INSERT INTO `jos_poll_date` VALUES (1,'2006-10-09 13:01:58',1,14),(2,'2006-10-10 15:19:43',7,14),(3,'2006-10-11 11:08:16',7,14),(4,'2006-10-11 15:02:26',2,14),(5,'2006-10-11 15:43:03',7,14),(6,'2006-10-11 15:43:38',7,14),(7,'2006-10-12 00:51:13',2,14),(8,'2007-05-10 19:12:29',3,14),(9,'2007-05-14 14:18:00',6,14),(10,'2007-06-10 15:20:29',6,14),(11,'2007-07-03 12:37:53',2,14);
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_poll_date` ENABLE KEYS */;

--
-- Table structure for table `jos_poll_menu`
--

DROP TABLE IF EXISTS `jos_poll_menu`;
CREATE TABLE `jos_poll_menu` (
  `pollid` int(11) NOT NULL default '0',
  `menuid` int(11) NOT NULL default '0',
  PRIMARY KEY  (`pollid`,`menuid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_poll_menu`
--


/*!40000 ALTER TABLE `jos_poll_menu` DISABLE KEYS */;
LOCK TABLES `jos_poll_menu` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_poll_menu` ENABLE KEYS */;

--
-- Table structure for table `jos_polls`
--

DROP TABLE IF EXISTS `jos_polls`;
CREATE TABLE `jos_polls` (
  `id` int(11) unsigned NOT NULL auto_increment,
  `title` varchar(255) NOT NULL default '',
  `alias` varchar(255) NOT NULL default '',
  `voters` int(9) NOT NULL default '0',
  `checked_out` int(11) NOT NULL default '0',
  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `published` tinyint(1) NOT NULL default '0',
  `access` int(11) NOT NULL default '0',
  `lag` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_polls`
--


/*!40000 ALTER TABLE `jos_polls` DISABLE KEYS */;
LOCK TABLES `jos_polls` WRITE;
INSERT INTO `jos_polls` VALUES (14,'Joomla! is used for?','joomla-is-used-for',11,0,'0000-00-00 00:00:00',1,0,86400);
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_polls` ENABLE KEYS */;

--
-- Table structure for table `jos_sections`
--

DROP TABLE IF EXISTS `jos_sections`;
CREATE TABLE `jos_sections` (
  `id` int(11) NOT NULL auto_increment,
  `title` varchar(255) NOT NULL default '',
  `name` varchar(255) NOT NULL default '',
  `alias` varchar(255) NOT NULL default '',
  `image` text NOT NULL,
  `scope` varchar(50) NOT NULL default '',
  `image_position` varchar(30) NOT NULL default '',
  `description` text NOT NULL,
  `published` tinyint(1) NOT NULL default '0',
  `checked_out` int(11) unsigned NOT NULL default '0',
  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `ordering` int(11) NOT NULL default '0',
  `access` tinyint(3) unsigned NOT NULL default '0',
  `count` int(11) NOT NULL default '0',
  `params` text NOT NULL,
  PRIMARY KEY  (`id`),
  KEY `idx_scope` (`scope`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_sections`
--


/*!40000 ALTER TABLE `jos_sections` DISABLE KEYS */;
LOCK TABLES `jos_sections` WRITE;
INSERT INTO `jos_sections` VALUES (6,'Rekvizitai','','rekvizitai','','content','left','',1,0,'0000-00-00 00:00:00',2,0,1,''),(5,'Puslapio kategorijos','','puslapio-kategorijos','','content','left','',1,0,'0000-00-00 00:00:00',1,0,5,'');
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_sections` ENABLE KEYS */;

--
-- Table structure for table `jos_session`
--

DROP TABLE IF EXISTS `jos_session`;
CREATE TABLE `jos_session` (
  `username` varchar(150) default '',
  `time` varchar(14) default '',
  `session_id` varchar(200) NOT NULL default '0',
  `guest` tinyint(4) default '1',
  `userid` int(11) default '0',
  `usertype` varchar(50) default '',
  `gid` tinyint(3) unsigned NOT NULL default '0',
  `client_id` tinyint(3) unsigned NOT NULL default '0',
  `data` longtext,
  PRIMARY KEY  (`session_id`(64)),
  KEY `whosonline` (`guest`,`usertype`),
  KEY `userid` (`userid`),
  KEY `time` (`time`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_session`
--


/*!40000 ALTER TABLE `jos_session` DISABLE KEYS */;
LOCK TABLES `jos_session` WRITE;
INSERT INTO `jos_session` VALUES ('','1252605955','f8b36b3c279a3219fcfbb36e2b8248c9',1,0,'',0,0,'__default|a:7:{s:15:\"session.counter\";i:1;s:19:\"session.timer.start\";i:1252605955;s:18:\"session.timer.last\";i:1252605955;s:17:\"session.timer.now\";i:1252605955;s:22:\"session.client.browser\";s:130:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.20) Gecko/20081217 Firefox/2.0.0.20 (.NET CLR 3.5.30729) FirePHP/0.0.6.19\";s:8:\"registry\";O:9:\"JRegistry\":3:{s:17:\"_defaultNameSpace\";s:7:\"session\";s:9:\"_registry\";a:2:{s:7:\"session\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}s:11:\"application\";a:1:{s:4:\"data\";O:8:\"stdClass\":1:{s:4:\"lang\";s:5:\"lt-LT\";}}}s:7:\"_errors\";a:0:{}}s:4:\"user\";O:5:\"JUser\":19:{s:2:\"id\";i:0;s:4:\"name\";N;s:8:\"username\";N;s:5:\"email\";N;s:8:\"password\";N;s:14:\"password_clear\";s:0:\"\";s:8:\"usertype\";N;s:5:\"block\";N;s:9:\"sendEmail\";i:0;s:3:\"gid\";i:0;s:12:\"registerDate\";N;s:13:\"lastvisitDate\";N;s:10:\"activation\";N;s:6:\"params\";N;s:3:\"aid\";i:0;s:5:\"guest\";i:1;s:7:\"_params\";O:10:\"JParameter\":7:{s:4:\"_raw\";s:0:\"\";s:4:\"_xml\";N;s:9:\"_elements\";a:0:{}s:12:\"_elementPath\";a:1:{i:0;s:63:\"/home/webapps/edanas.lt/libraries/joomla/html/parameter/element\";}s:17:\"_defaultNameSpace\";s:8:\"_default\";s:9:\"_registry\";a:1:{s:8:\"_default\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:9:\"_errorMsg\";N;s:7:\"_errors\";a:0:{}}}');
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_session` ENABLE KEYS */;

--
-- Table structure for table `jos_stats_agents`
--

DROP TABLE IF EXISTS `jos_stats_agents`;
CREATE TABLE `jos_stats_agents` (
  `agent` varchar(255) NOT NULL default '',
  `type` tinyint(1) unsigned NOT NULL default '0',
  `hits` int(11) unsigned NOT NULL default '1'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_stats_agents`
--


/*!40000 ALTER TABLE `jos_stats_agents` DISABLE KEYS */;
LOCK TABLES `jos_stats_agents` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_stats_agents` ENABLE KEYS */;

--
-- Table structure for table `jos_templates_menu`
--

DROP TABLE IF EXISTS `jos_templates_menu`;
CREATE TABLE `jos_templates_menu` (
  `template` varchar(255) NOT NULL default '',
  `menuid` int(11) NOT NULL default '0',
  `client_id` tinyint(4) NOT NULL default '0',
  PRIMARY KEY  (`menuid`,`client_id`,`template`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_templates_menu`
--


/*!40000 ALTER TABLE `jos_templates_menu` DISABLE KEYS */;
LOCK TABLES `jos_templates_menu` WRITE;
INSERT INTO `jos_templates_menu` VALUES ('edanas',0,0),('khepri',0,1);
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_templates_menu` ENABLE KEYS */;

--
-- Table structure for table `jos_users`
--

DROP TABLE IF EXISTS `jos_users`;
CREATE TABLE `jos_users` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(255) NOT NULL default '',
  `username` varchar(150) NOT NULL default '',
  `email` varchar(100) NOT NULL default '',
  `password` varchar(100) NOT NULL default '',
  `usertype` varchar(25) NOT NULL default '',
  `block` tinyint(4) NOT NULL default '0',
  `sendEmail` tinyint(4) default '0',
  `gid` tinyint(3) unsigned NOT NULL default '1',
  `registerDate` datetime NOT NULL default '0000-00-00 00:00:00',
  `lastvisitDate` datetime NOT NULL default '0000-00-00 00:00:00',
  `activation` varchar(100) NOT NULL default '',
  `params` text NOT NULL,
  PRIMARY KEY  (`id`),
  KEY `usertype` (`usertype`),
  KEY `idx_name` (`name`),
  KEY `gid_block` (`gid`,`block`),
  KEY `username` (`username`),
  KEY `email` (`email`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_users`
--


/*!40000 ALTER TABLE `jos_users` DISABLE KEYS */;
LOCK TABLES `jos_users` WRITE;
INSERT INTO `jos_users` VALUES (62,'Administrator','admin','mindaugas.rimkus@infoside.lt','cfc00525e2179d4c8253063e7b1d8805:Qlnw25uEZUXMNddlJw2HiPGlcudkgwHz','Super Administrator',0,1,25,'2009-05-02 16:25:34','2009-05-02 19:48:08','','admin_language=\nlanguage=\neditor=\nhelpsite=\ntimezone=0\n\n');
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_users` ENABLE KEYS */;

--
-- Table structure for table `jos_weblinks`
--

DROP TABLE IF EXISTS `jos_weblinks`;
CREATE TABLE `jos_weblinks` (
  `id` int(11) unsigned NOT NULL auto_increment,
  `catid` int(11) NOT NULL default '0',
  `sid` int(11) NOT NULL default '0',
  `title` varchar(250) NOT NULL default '',
  `alias` varchar(255) NOT NULL default '',
  `url` varchar(250) NOT NULL default '',
  `description` text NOT NULL,
  `date` datetime NOT NULL default '0000-00-00 00:00:00',
  `hits` int(11) NOT NULL default '0',
  `published` tinyint(1) NOT NULL default '0',
  `checked_out` int(11) NOT NULL default '0',
  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `ordering` int(11) NOT NULL default '0',
  `archived` tinyint(1) NOT NULL default '0',
  `approved` tinyint(1) NOT NULL default '1',
  `params` text NOT NULL,
  PRIMARY KEY  (`id`),
  KEY `catid` (`catid`,`published`,`archived`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_weblinks`
--


/*!40000 ALTER TABLE `jos_weblinks` DISABLE KEYS */;
LOCK TABLES `jos_weblinks` WRITE;
INSERT INTO `jos_weblinks` VALUES (1,2,0,'Joomla!','joomla','http://www.joomla.org','Home of Joomla!','2005-02-14 15:19:02',3,1,0,'0000-00-00 00:00:00',1,0,1,'target=0'),(2,2,0,'php.net','php','http://www.php.net','The language that Joomla! is developed in','2004-07-07 11:33:24',6,1,0,'0000-00-00 00:00:00',3,0,1,''),(3,2,0,'MySQL','mysql','http://www.mysql.com','The database that Joomla! uses','2004-07-07 10:18:31',1,1,0,'0000-00-00 00:00:00',5,0,1,''),(4,2,0,'OpenSourceMatters','opensourcematters','http://www.opensourcematters.org','Home of OSM','2005-02-14 15:19:02',11,1,0,'0000-00-00 00:00:00',2,0,1,'target=0'),(5,2,0,'Joomla! - Forums','joomla-forums','http://forum.joomla.org','Joomla! Forums','2005-02-14 15:19:02',4,1,0,'0000-00-00 00:00:00',4,0,1,'target=0'),(6,2,0,'Ohloh Tracking of Joomla!','ohloh-tracking-of-joomla','http://www.ohloh.net/projects/20','Objective reports from Ohloh about Joomla\'s development activity. Joomla! has some star developers with serious kudos.','2007-07-19 09:28:31',1,1,0,'0000-00-00 00:00:00',6,0,1,'target=0\n\n');
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_weblinks` ENABLE KEYS */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

