You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1622 lines
776 KiB
SQL

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

-- MySQL dump 10.19 Distrib 10.2.44-MariaDB, for Linux (x86_64)
--
-- Host: localhost Database: drelie_index
-- ------------------------------------------------------
-- Server version 10.2.44-MariaDB
/*!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`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_banner` (
`bid` int(11) NOT NULL AUTO_INCREMENT,
`cid` int(11) NOT NULL DEFAULT 0,
`type` varchar(10) NOT NULL DEFAULT 'banner',
`name` varchar(50) 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 DEFAULT NULL,
PRIMARY KEY (`bid`),
KEY `viewbanner` (`showBanner`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_banner`
--
LOCK TABLES `jos_banner` WRITE;
/*!40000 ALTER TABLE `jos_banner` DISABLE KEYS */;
INSERT INTO `jos_banner` VALUES (1,1,'banner','OSM 1',0,375,91,'osmbanner1.png','http://www.opensourcematters.org','2004-07-07 15:31:29',1,0,'0000-00-00 00:00:00',NULL,NULL),(2,1,'banner','OSM 2',0,401,89,'osmbanner2.png','http://www.opensourcematters.org','2004-07-07 15:31:29',1,0,'0000-00-00 00:00:00',NULL,NULL);
/*!40000 ALTER TABLE `jos_banner` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_bannerclient`
--
DROP TABLE IF EXISTS `jos_bannerclient`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_bannerclient` (
`cid` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(60) NOT NULL DEFAULT '',
`contact` varchar(60) NOT NULL DEFAULT '',
`email` varchar(60) 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 AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_bannerclient`
--
LOCK TABLES `jos_bannerclient` WRITE;
/*!40000 ALTER TABLE `jos_bannerclient` DISABLE KEYS */;
INSERT INTO `jos_bannerclient` VALUES (1,'Open Source Matters','Administrator','admin@opensourcematters.org','',0,'00:00:00',NULL);
/*!40000 ALTER TABLE `jos_bannerclient` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_bannerfinish`
--
DROP TABLE IF EXISTS `jos_bannerfinish`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_bannerfinish` (
`bid` int(11) NOT NULL AUTO_INCREMENT,
`cid` int(11) NOT NULL DEFAULT 0,
`type` varchar(10) NOT NULL DEFAULT '',
`name` varchar(50) NOT NULL DEFAULT '',
`impressions` int(11) NOT NULL DEFAULT 0,
`clicks` int(11) NOT NULL DEFAULT 0,
`imageurl` varchar(50) NOT NULL DEFAULT '',
`datestart` datetime DEFAULT NULL,
`dateend` datetime DEFAULT NULL,
PRIMARY KEY (`bid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_bannerfinish`
--
LOCK TABLES `jos_bannerfinish` WRITE;
/*!40000 ALTER TABLE `jos_bannerfinish` DISABLE KEYS */;
/*!40000 ALTER TABLE `jos_bannerfinish` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_captcha_session`
--
DROP TABLE IF EXISTS `jos_captcha_session`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_captcha_session` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`sessionid` varchar(64) NOT NULL DEFAULT '',
`password` varchar(8) NOT NULL DEFAULT '',
`date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_captcha_session`
--
LOCK TABLES `jos_captcha_session` WRITE;
/*!40000 ALTER TABLE `jos_captcha_session` DISABLE KEYS */;
/*!40000 ALTER TABLE `jos_captcha_session` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_categories`
--
DROP TABLE IF EXISTS `jos_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`parent_id` int(11) NOT NULL DEFAULT 0,
`title` varchar(50) NOT NULL DEFAULT '',
`name` varchar(255) NOT NULL DEFAULT '',
`image` varchar(100) NOT NULL DEFAULT '',
`section` varchar(50) NOT NULL DEFAULT '',
`image_position` varchar(10) 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_section` (`section`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`)
) ENGINE=MyISAM AUTO_INCREMENT=22 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_categories`
--
LOCK TABLES `jos_categories` WRITE;
/*!40000 ALTER TABLE `jos_categories` DISABLE KEYS */;
INSERT INTO `jos_categories` VALUES (1,0,'Latest','Latest News','taking_notes.jpg','1','left','The latest news from the Joomla! Team',1,0,'0000-00-00 00:00:00','',0,0,1,''),(2,0,'Joomla!','Joomla!','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,0,0,0,''),(3,0,'Newsflash','Newsflash','','2','left','',1,0,'0000-00-00 00:00:00','',0,0,0,''),(4,0,'Joomla!','Joomla!','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,2,0,0,''),(5,0,'Business: general','Business: general','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(7,0,'Examples','Example FAQs','key.jpg','3','left','Here you will find an example set of FAQs.',1,0,'0000-00-00 00:00:00',NULL,0,0,2,''),(9,0,'Finance','Finance','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,5,0,0,''),(10,0,'Linux','Linux','','com_newsfeeds','left','<br />\r\n',1,0,'0000-00-00 00:00:00',NULL,6,0,0,''),(11,0,'Internet','Internet','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,7,0,0,''),(12,0,'Contacts','Contacts','','com_contact_details','left','Contact Details for this website',1,0,'0000-00-00 00:00:00',NULL,0,0,0,''),(13,0,'Elie Karouny','Elie Karouny','','4','left','',1,0,'0000-00-00 00:00:00',NULL,3,0,0,'imagefolders=*2*'),(14,0,'Biography','Biography','','4','left','',1,0,'0000-00-00 00:00:00',NULL,2,0,0,'imagefolders=*2*'),(15,0,'After his Death','After his Death','','4','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,'imagefolders=*2*'),(16,0,'Biography','Biography','','5','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,'imagefolders=*2*'),(17,0,'Video','Video','','6','left','',1,0,'0000-00-00 00:00:00',NULL,5,0,0,'imagefolders=*2*'),(18,0,'Audio','Audio','','6','left','',1,0,'0000-00-00 00:00:00',NULL,4,0,0,'imagefolders=*2*'),(19,0,'streammingfiles','streaming files','','6','left','',1,0,'0000-00-00 00:00:00',NULL,3,0,0,'imagefolders=*2*'),(20,0,'Français','Francais','','6','left','',1,0,'0000-00-00 00:00:00',NULL,2,0,0,'imagefolders=*2*'),(21,0,'temoignages','temoignages','','6','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,'imagefolders=*2*');
/*!40000 ALTER TABLE `jos_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_components`
--
DROP TABLE IF EXISTS `jos_components`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_components`
--
LOCK TABLES `jos_components` WRITE;
/*!40000 ALTER TABLE `jos_components` DISABLE KEYS */;
INSERT INTO `jos_components` VALUES (1,'Banners','',0,0,'','Banner Management','com_banners',0,'js/ThemeOffice/component.png',0,''),(2,'Manage Banners','',0,1,'option=com_banners','Active Banners','com_banners',1,'js/ThemeOffice/edit.png',0,''),(3,'Manage Clients','',0,1,'option=com_banners&task=listclients','Manage Clients','com_banners',2,'js/ThemeOffice/categories.png',0,''),(4,'Web Links','option=com_weblinks',0,0,'','Manage Weblinks','com_weblinks',0,'js/ThemeOffice/globe2.png',0,''),(5,'Web Link Items','',0,4,'option=com_weblinks','View existing weblinks','com_weblinks',1,'js/ThemeOffice/edit.png',0,''),(6,'Web Link Categories','',0,4,'option=categories&section=com_weblinks','Manage weblink categories','',2,'js/ThemeOffice/categories.png',0,''),(7,'Contacts','option=com_contact',0,0,'','Edit contact details','com_contact',0,'js/ThemeOffice/user.png',1,''),(8,'Manage Contacts','',0,7,'option=com_contact','Edit contact details','com_contact',0,'js/ThemeOffice/edit.png',1,''),(9,'Contact Categories','',0,7,'option=categories&section=com_contact_details','Manage contact categories','',2,'js/ThemeOffice/categories.png',1,''),(10,'Front Page','option=com_frontpage',0,0,'','Manage Front Page Items','com_frontpage',0,'js/ThemeOffice/component.png',1,''),(11,'Polls','option=com_poll',0,0,'option=com_poll','Manage Polls','com_poll',0,'js/ThemeOffice/component.png',0,''),(12,'News Feeds','option=com_newsfeeds',0,0,'','News Feeds Management','com_newsfeeds',0,'js/ThemeOffice/component.png',0,''),(13,'Manage News Feeds','',0,12,'option=com_newsfeeds','Manage News Feeds','com_newsfeeds',1,'js/ThemeOffice/edit.png',0,''),(14,'Manage Categories','',0,12,'option=com_categories&section=com_newsfeeds','Manage Categories','',2,'js/ThemeOffice/categories.png',0,''),(15,'Login','option=com_login',0,0,'','','com_login',0,'',1,''),(16,'Search','option=com_search',0,0,'','','com_search',0,'',1,''),(17,'Syndicate','',0,0,'option=com_syndicate&hidemainmenu=1','Manage Syndication Settings','com_syndicate',0,'js/ThemeOffice/component.png',0,''),(18,'Mass Mail','',0,0,'option=com_massmail&hidemainmenu=1','Send Mass Mail','com_massmail',0,'js/ThemeOffice/mass_email.png',0,''),(19,'Jom Comment','option=com_jomcomment',0,0,'option=com_jomcomment','Jom Comment','com_jomcomment',0,'../administrator/components/com_jomcomment/icon.png',0,''),(20,'RSGallery2','option=com_rsgallery2',0,0,'option=com_rsgallery2','RSGallery2','com_rsgallery2',0,'../administrator/components/com_rsgallery2/images/rsg2_menu.png',0,'');
/*!40000 ALTER TABLE `jos_components` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_contact_details`
--
DROP TABLE IF EXISTS `jos_contact_details`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_contact_details` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL DEFAULT '',
`con_position` varchar(50) DEFAULT NULL,
`address` text DEFAULT NULL,
`suburb` varchar(50) DEFAULT NULL,
`state` varchar(20) DEFAULT NULL,
`country` varchar(50) DEFAULT NULL,
`postcode` varchar(10) DEFAULT NULL,
`telephone` varchar(25) DEFAULT NULL,
`fax` varchar(25) DEFAULT NULL,
`misc` mediumtext DEFAULT NULL,
`image` varchar(100) DEFAULT NULL,
`imagepos` varchar(20) DEFAULT NULL,
`email_to` varchar(100) 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,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_contact_details`
--
LOCK TABLES `jos_contact_details` WRITE;
/*!40000 ALTER TABLE `jos_contact_details` DISABLE KEYS */;
INSERT INTO `jos_contact_details` VALUES (1,'Name','Position','Street','Suburb','State','Country','Zip Code','Telephone','Fax','','asterisk.png','top','elielienana@gmail.com',0,1,0,'0000-00-00 00:00:00',1,'menu_image=-1\npageclass_sfx=\nprint=\nback_button=\nname=0\nposition=0\nemail=0\nstreet_address=0\nsuburb=0\nstate=0\ncountry=0\npostcode=0\ntelephone=0\nfax=0\nmisc=0\nimage=0\nvcard=0\nemail_description=0\nemail_description_text=\nemail_form=1\nemail_copy=0\ndrop_down=0\ncontact_icons=0\nicon_address=\nicon_email=\nicon_telephone=\nicon_fax=\nicon_misc=',0,12,0);
/*!40000 ALTER TABLE `jos_contact_details` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_content`
--
DROP TABLE IF EXISTS `jos_content`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_content` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(100) NOT NULL DEFAULT '',
`title_alias` varchar(100) 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(100) 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,
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_mask` (`mask`)
) ENGINE=MyISAM AUTO_INCREMENT=58 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_content`
--
LOCK TABLES `jos_content` WRITE;
/*!40000 ALTER TABLE `jos_content` DISABLE KEYS */;
INSERT INTO `jos_content` VALUES (1,'Welcome to Joomla!','Welcome','If you\'ve read anything at all about Content Management Systems (CMS), you\'ll probably know at least three things: CMS are the most exciting way to do business, CMS can be really, I mean <i>really</i>, complicated and lastly Portals are absolutely, outrageously, often <i>unaffordably</i> expensive. <br /><br />{mosimage}Joomla! is set to change all that ... Joomla! is different from the normal models for portal software. For a start, it\'s not complicated. Joomla! has been developed for the masses. It\'s licensed under the GNU/GPL license, easy to install and administer and reliable. Joomla! doesn\'t even require the user or administrator of the system to know HTML to operate it once it\'s up and running.','<h4><font color=\"#ff6600\">Joomla! features:</font></h4>\r\n<ul>\r\n<li>Completely database driven site engines </li>\r\n<li>News, products or services sections fully editable and manageable</li> \r\n<li>Topics sections can be added to by contributing authors </li>\r\n<li>Fully customisable layouts including left, center and right menu boxes </li>\r\n<li>Browser upload of images to your own library for use anywhere in the site </li>\r\n<li>Dynamic Forum/Poll/Voting booth for on-the-spot results </li>\r\n<li>Runs on Linux, FreeBSD, MacOSX server, Solaris and AIX \r\n</li></ul>\r\n<h4>Extensive Administration:</h4>\r\n<ul>\r\n<li>Change order of objects including news, FAQs, articles etc. </li>\r\n<li>Random Newsflash generator </li>\r\n<li>Remote author submission module for News, Articles, FAQs and Links </li>\r\n<li>Object hierarchy - as many sections, departments, divisions and pages as you want </li>\r\n<li>Image library - store all your PNGs, PDFs, DOCs, XLSs, GIFs and JPEGs online for easy use </li>\r\n<li>Automatic Path-Finder. Place a picture and let Joomla! fix the link </li>\r\n<li>News feed manager. Choose from over 360 news feeds from around the world </li>\r\n<li>Archive manager. Put your old articles into cold storage rather than throw them out </li>\r\n<li>Email-a-friend and Print-format for every story and article </li>\r\n<li>In-line Text editor similar to Word Pad </li>\r\n<li>User editable look and feel </li>\r\n<li>Polls/Surveys - Now put a different one on each page </li>\r\n<li>Custom Page Modules. Download custom page modules to spice up your site </li>\r\n<li>Template Manager. Download templates and implement them in seconds </li>\r\n<li>Layout preview. See how it looks before going live </li>\r\n<li>Banner manager. Make money out of your site</li></ul>',-2,1,0,1,'2004-06-12 11:54:06',62,'Web Master','2004-06-12 12:33:27',62,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','asterisk.png|left|Joomla! Logo|1|Example Caption|bottom|center|120','','',1,0,0,'','',0,0),(2,'Newsflash 1','','Joomla! 1.0 - \'Experience the Freedom\'!. It has never been easier to create\r\nyour own dynamic site. Manage all your content from the best CMS admin\r\ninterface.','',-2,2,0,3,'2004-08-09 08:30:34',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2004-08-09 00:00:00','0000-00-00 00:00:00','','','',1,0,0,'','',0,1),(3,'Newsflash 2','','Yesterday all servers in the U.S. went out on strike in a bid to get more RAM and better CPUs. A spokes person said that the need for better RAM was due to some fool increasing the front-side bus speed. In future, busses will be told to slow down in residential motherboards.','',-2,2,0,3,'2004-08-09 08:30:34',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2004-08-09 00:00:00','0000-00-00 00:00:00','','','',1,0,0,'','',0,1),(4,'Newsflash 3','','Aoccdrnig to a rscheearch at an Elingsh uinervtisy, it deosn\'t mttaer in waht oredr the ltteers in a wrod are, the olny iprmoetnt tihng is taht frist and lsat ltteer is at the rghit pclae. The rset can be a toatl mses and you can sitll raed it wouthit porbelm. Tihs is bcuseae we do not raed ervey lteter by itslef but the wrod as a wlohe.','',-2,2,0,3,'2004-08-09 08:30:34',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2004-08-09 00:00:00','0000-00-00 00:00:00','','','',1,0,0,'','',0,1),(5,'Joomla! License Guidelines','','<p>This website is powered by <a href=\"http://www.joomla.org/\">Joomla!</a> The software and default templates on which it runs are Copyright 2005 <a href=\"http://www.opensourcematters.org/\">Open Source Matters</a>. All other content and data, including data entered into this website and templates added after installation, are copyrighted by their respective copyright owners.</p><p>If you want to distribute, copy or modify Joomla!, you are welcome to do so under the terms of the <a href=\"http://www.gnu.org/copyleft/gpl.html#SEC1\">GNU General Public License</a>. If you are unfamiliar with this license, you might want to read <a href=\"http://www.gnu.org/copyleft/gpl.html#SEC4\">\'How To Apply These Terms To Your Program\'</a> and the <a href=\"http://www.gnu.org/licenses/gpl-faq.html\">\'GNU General Public License FAQ\'</a>.</p>','',1,0,0,0,'2004-08-19 20:11:07',62,'','2004-08-19 20:14:49',62,0,'0000-00-00 00:00:00','2004-08-19 00:00:00','0000-00-00 00:00:00','','','menu_image=\nitem_title=1\npageclass_sfx=\nback_button=\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=',1,0,11,'','',0,99),(6,'Example News Item 1','News1','{mosimage}Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum.','<p>{mosimage}Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at\r\nvero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor\r\nsit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n<p>Ut wisi enim ad minim veniam, quis nostrud exerci tation\r\nullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis\r\nautem vel eum iriure dolor in hendrerit in vulputate velit esse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan\r\net iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.</p>\r\n\r\n<p>Nam liber tempor cum soluta nobis eleifend option congue\r\nnihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim\r\nveniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.</p>\r\n\r\n<p>Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum\r\ndolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet\r\nclita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,\r\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.</p>\r\n\r\n<p>Consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore\r\nmagna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem ipsum dolor sit amet.</p>',-2,1,0,1,'2004-07-07 11:54:06',62,'','2004-07-07 18:05:05',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','food/coffee.jpg|left||0\r\nfood/bread.jpg|right||0','','',1,0,0,'','',0,4),(7,'Example News Item 2','News2','<p>{mosimage}Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem\r\nipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.</p>','',-2,1,0,1,'2004-07-07 11:54:06',62,'','2004-07-07 18:11:30',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','food/bun.jpg|right||0','','',1,0,0,'','',0,2),(8,'Example News Item 3','News3','<p>{mosimage}Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem\r\nipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.</p>','',-2,1,0,1,'2004-04-12 11:54:06',62,'','2004-07-07 18:08:23',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','fruit/pears.jpg|right||0','','',1,0,0,'','',0,1),(9,'Example News Item 4','News4','<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.</p>','<p>{mosimage}Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at\r\nvero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor\r\nsit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n{mospagebreak}<p>{mosimage}Ut wisi enim ad minim veniam, quis nostrud exerci tation\r\nullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis\r\nautem vel eum iriure dolor in hendrerit in vulputate velit esse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan\r\net iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.</p>\r\n\r\n<p>{mosimage}Nam liber tempor cum soluta nobis eleifend option congue\r\nnihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim\r\nveniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.</p>\r\n\r\n<p>Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum\r\ndolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet\r\nclita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,\r\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.</p>\r\n\r\n{mospagebreak}<p>Consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore\r\nmagna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem ipsum dolor sit amet.</p>',-2,1,0,1,'2004-07-07 11:54:06',62,'','2004-07-07 18:10:23',62,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','fruit/strawberry.jpg|left||0\r\nfruit/pears.jpg|right||0\r\nfruit/cherry.jpg|left||0','','',1,0,0,'','',0,6),(10,'Example FAQ Item 1','FAQ1','<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.</p>','',-2,3,0,7,'2004-05-12 11:54:06',62,'','2004-07-07 18:10:23',62,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','','','',1,0,0,'','',0,8),(11,'Example FAQ Item 2','FAQ2','<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.</p>','<p>{mosimage}Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at\r\nvero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor\r\nsit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n<p>{mosimage}Ut wisi enim ad minim veniam, quis nostrud exerci tation\r\nullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis\r\nautem vel eum iriure dolor in hendrerit in vulputate velit esse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan\r\net iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.</p>\r\n\r\n<p>{mosimage}Nam liber tempor cum soluta nobis eleifend option congue\r\nnihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim\r\nveniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.</p>\r\n\r\n<p>Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum\r\ndolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet\r\nclita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,\r\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.</p>\r\n\r\n<p>Consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore\r\nmagna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem ipsum dolor sit amet.</p>',-2,3,0,7,'2004-05-12 11:54:06',62,'Web master','2004-07-07 18:10:23',62,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','fruit/cherry.jpg|left||0\r\nfruit/peas.jpg|right||0\r\nfood/milk.jpg|left||0','','',1,0,0,'','',0,10),(12,'Lord, listen to my prayer and answer me','Lord, listen to my prayer and answer me','{mosimage} Within a decent, chalourous and pious Lebanese family, Dr. Elie KAROUNY appeared to life.Born in 1969 at Mouallaka, Zahl&eacute;, located in Bekaa, Lebanon. <br />His father Khalil worked in the railway before his death on 19/09/1990.<br />His mother called Alice MAHFOUZ.<br />These parents have only a son Elie and a daughter Lena who later became physicians.<br />Elie grew up calm, always smiling, kindly, watching everyone without mediocrity.<br />His face full of light surrounded by a Halo, reflects the feelings of happiness and joy, very attentive, peaceful, strong without any signs of sadness, soft, romantic, poetic, speculating, contemplative, pleased like an innocent baby who never complains. <p>Since his childhood, he felt that there is a new thing, a new love who distinguish him from others as he said in his book. He develop virtuous qualities in addition to the shadow of fun, modest, he said:&quot; in my opinion, life is love, donation, sharing, it&#39;s not war&quot;.<br /><br />{mosimage} In spite of his young age, he had always been trying to spread joy in the hearts of people around especially the oppressed and the helpless ones. He set up many short dramas, plays roles of comedians or singers with a very beautiful voice.He respects his parents, listen to their advice considered them a kind of angels and he is a very tender, compassionate brother with his sister Lena.<br />Despite his great success in school and family, he spare no effort in helping those in need, from fellow grade and shared with them food, science, and knowledge.</p> ',' <p>He was a very special young believer, visiting the church constantly, participates in the mass standing all the time with concentration, without movement and prays fervently.</p> <p>He was very talented in writing since young age. He wrote his thoughts, ideas, and visions especially at night.</p> <p>In spite of his love for his sister Lena, she wasn&rsquo;t allowed to access to his writings.</p> <p>&nbsp;when she wake up at night and try to see what he wrote, he said to her: &ldquo;you are not allowed to see those writings prior to my death, I will not be good if you see them before&rdquo;.</p> <p>Elie was a very talented and excellent student. He completed his elementary and high school&nbsp; education at the Annunciation college, Beirut- Lebanon mastered Arabic, French and English languages. He wrote poetry, prose in different themes including love poetry, sentimental, emotional, spiritual and national.</p> <p>His writing way was influenced by classical music which give him an intellectual and spiritual touch.</p> <p>He liked comedy plays, opera, intellectual, religious and sports programs.</p> <p>He wanted to work in a humanitarian domain so that he can help poor and sick people.</p> <p>He played the role of doctor in a performance when he was still at school.</p> <p>He became a physician later.</p> <p>Elie started his spiritual experience experience since 1980 when he asked God to take him back to his eternal kingdom:</p> <p>&ldquo; Lord, listen to my prayer and answer me </p> <p>&nbsp;&nbsp; you are my creator</p> <p>&nbsp;&nbsp; I trust you my love</p> <p>&nbsp;&nbsp; And I flied to you</p> <p>&nbsp;&nbsp; Take me in your arms&rdquo;</p> <p>He prayed God to take him back to heaven since he missed him a lot:</p> <p>&ldquo; Heaven is my kingdom, Father take me back there&hellip;&hellip;..&rdquo;</p> <p>He was so long streamed in spirit as he expressed also through a poem written who have this title.</p> <p>Since that time, Elie lived on the ground as he was living in heaven, yet his vision, spirit and mind were always projecting towards the sky to be&nbsp; unified with God to reach the infinite perfection:</p> <p>&ldquo;the materialistic life means nothing to me comparing to the Holy life in Heaven&rdquo;</p> <p>In 24 December 1981, he saws the Holy Mountain through which was enlighted and white wings from above, so he sacrificed himself and began the journey to prepare himself to return back to his inner to be close to God.<br />In 1981, he obtained his baccalaureate degree with honors, and he enrolled with great success in the faculty of medicine at St. JOSEPH university- Beirut to fulfil the goal he always seek for, since his early ages, becoming a physician in order to help those in need, hopefully, he succeeded greatfuly in the entrance exam, after he became idealistic in his humanitarian, kind hearted, and open minded personality.</p> <p>In the ninth of october 1982, he saw a vision through which he didn&#39;t only predict the time when he will be next to God, but knew the exact date, for he told his sister: &ldquo;I know the day when I will die&hellip;&hellip; and I know also all the other days&hellip;&hellip;.&rdquo;</p> <p>From that time, his will to be unified with God grew much bigger and so he wanted to write his own biography.</p> <p>&ldquo; I want all the people on the ground to know me well, and so to scatter flowers wherever I go&hellip;&hellip;&rdquo;</p> <p>In 1988, he graduated from St. JOSEPH university with a General Medicine Diploma, passing the specialization test honorably, yet his success did not stop him from wanting to be close to God, for there, always was an inner voice inside giving him strength and holding him in his will to continue his journey in the path of god, so he never felt that this ground is where he truly belongs to:</p> <p>&ldquo; the voice in me tells me not to be scared and to hold onto my will, so should I ignore it? Or simply forget it? Shall I not hear it with every heart beat? Deeply I want, for this land is not mine nor is this desperation from my illusion. So let God&rsquo;s will be&hellip;&hellip;&rdquo;</p> <p>Never was a day that he forgot his friends that came to him asking for help, but rather he always tied whatever he can to help them in their studies, and always ready to answer their questions.</p> <p>Many of his studies were published in international medical journal&rsquo;s yet this never distracted him from being next to God.</p> <p>In the following year, he earned the first rate in internal medicine and he was given the chance to choose the specialization that he wanted, he always wanted to specialize in heart surgery yet he then chose to be a cardiologist for he believed that he wouldn&rsquo;t be able to practice heart surgery because soon he would be with God.</p> <p>He asked his sister to write his biography and always told her that God is giving him time so he would be able to continue his writings for he knew that God&rsquo;s will is for him to be spiritual.</p> <p>He completed his studies in Lebanon and so he traveled to France and entered the university of Pierre and Marie-Curie.<br />In the year 1993 he obtained the sub specialization degree in heart ultra sound with high distinction and earned the title of foreign physician in the hospitals of Paris that soon all wanted to associate with him.</p> <p>He prepared many different studies and researches from his field in lebanon and abroad, and he was told to give lectures in one of the leading universities of the states.</p> <p>In the year 1994, he was awarded two diplomas, one in theoretical and applied sciences for heart catheterization and coronary angioplasty, the other in endoscopic radiotherapy. During the same year he obtained a diploma in the applied statistical sciences for medicine and medical researches, in addition to another diploma in Biology from Paul Sabatier university in France.</p> <p>At the end of 1994, he was granted from St JOSEPH university in Beirut, a specialization diploma in cardiology, Catheterization and Angioplasty , following the submission of his thesis &ldquo; Comparative Study on Cardiac Surgery versus Catheterization and Angioplasty in case of multi coronary stenosis&rdquo;</p> <p>At the end of&nbsp; the year 1994, he was assigned as a cardiologist in St. Georges hospital in Beirut.</p> <p>He made a great success in all his studies, and he was the center of attention and gained much appreciation from his teachers and colleagues.</p> <p>Dr. Elie practised his profession with a lot of passion and humanity, and he fulfilled his dream of helping each one in need, for his goal was not the money or fame but rather alleviating the pain of his patients. He had great sympathy for the persons in need for money to buy the medications that he prescribed which drove him sometimes to buy them from his own money keeping it discreet, for his motto was: &ldquo;one should give with no return and should keep it to himself&rdquo; he volunteered to work day and night to cure those in need. One of his patients was confined to a wheelchair, yet this did not stop him from going everyday to check on her. Another has lung complications, so he equipped her modest room with all that she needs from medical equipment and so did not leave her till she was cured. These are just examples from the many humanitarian jabs that he took over without anyone knowing.<br />Not only did he love the people around him, but rather they all loved and appreciated him too. He had a special place in the hearts of his patients. He got his modesty character, generosity, and humanity from God and in return shed the light of knowledge he earned from the Holy Spirit on the people around him.<br />Although he knew of his own sickness yet this never stopped him from practicing his profession to the ultimate and never forgetting to thank God.</p> <p>His faith was always very strong at all times and whatever hard situation he was passing through and he always told his sister:</p> <p>&ldquo;there is not death after the resurrection of Jesus&rdquo;</p> <p>&ldquo; I close my eyes here and open them there&rdquo;</p> <p>&nbsp;&ldquo; Are you scared of your father: God is my father and I am going to him&rdquo;</p> <p>And to his mum, he used to say &ldquo; your are my mum here on this land, and I have a mum in the sky and I will soon go to her. &rdquo;</p><p>His sickness never weakened him, but rather made him stronger. He accepted his sickness with no bitterness because it will make him closer to god and to heaven. His spirit was always high and it showed whenever his friends or relatives were around. He lifted the spirit of whoever were disappeared and told them: &ldquo;This is God&rsquo;s will and there is no escape from it.&rdquo;</p> <p>His sister Dr. Lena, was always keen on praying and visiting churches asking God to cure her brother, yet he told her: &ldquo;God and the virgin are here and they know what to do with me &rdquo; &nbsp;and always told her that this is god&rsquo;s will and we should accept it. He was a firm believer of God&rsquo;s will, &ldquo;God wants me with him, I have spent time with you yet now I have to be with my Father. &ldquo;</p> <p>His sister told him to pray to Saint Elias to cure him, he answered her that very shortly there will be a saint in the name of Elie and he told her that this life is just a path to a greater life with God.</p> <p>Juts three days before his death, virgin Mary kissed him 3 kisses that resembled his last three days. His mother saw virgin Mary besides his bed but did not recognize her. Dr. Elie wrote about his incident in his diary: &ldquo;I kissed the virgin Mary 3 times this night&rdquo;</p> <p>Two Days before he passed away, he confronted death and he wrote: &ldquo; You devil living inside of me, even if you have poisoned the spirit of those around me with bitterness and desperation , you will see that no matter how much my pain is, you will not take of me more than you can, and when my hour comes I will leave you a dead body under mine, and I shout your fire with mines. I will destroy my temper on you and my sword will not fall from my hand. I truly tell you that my soul will not die. &rdquo;</p> <p>Dr. Elie left this land to be joined with the saints on the day that he predicted, and that was in November 12, 1998. </p> <p>2 of his books were published, the first &ldquo;the sword will not fall from my hand&rdquo; and his excellency the Patriarct Elias Aoude helped in the publication . </p> <p>the second book was published in the year 2005 and was named &ldquo;Light from the sky&rdquo; were he wished for that naming after he appeared in his cousin&rsquo;s dream. Yet, his sister wanted to name the book &ldquo; before the leaving&rdquo; , or &ldquo; before the sunset&rdquo; with the color of the cover as the sum , however no one knew what she was thinking of , on the day of the Lord , in August 5/6 , he appeared to his cousin in her dreams and he was wearing a beige suit, he told her &ldquo;I plead &nbsp;you to tell my sister Lena not to name the book with the name on her mind, tell her not to be stubborn&nbsp; with her opinion, tell her she was 2 choices either &ldquo; a voice from the sky &ldquo; or &ldquo;light from the sky&rdquo; , yet I prefer &ldquo;light from the sky&rdquo; and he repeated what he said twice. </p> <p>He even showed her how to write the title and the color of the cover that he wants, and it was blue moreover it was the same as his first book , so he wrote to her the name as Follows: </p> <p>Light </p> <p>From </p> <p>The sky </p> <p>And when she was late in publishing the book, he returned to her in her dreams and asked her &ldquo;where is my book? Where is &ldquo; light from the sky&rdquo; </p> <p>He also has other writings in Arabic and in French too, but they are not published yet. </p> <p>On secret Thursday , one of his priest friend was on the middle of a mass , Dr. Elie appeared </p> <p>To him standing with his feet a little higher than the ground , and his face shining with light, and wearing a white blouse and he said : </p> <p>&ldquo;I am here </p> <p>confronting death </p> <p>I am alive </p> <p>Pray for my father Khalil&rdquo;</p> <p>The priest was shocked and started shivering, and following the mass he talked to the prayers about Dr. Elie, and told them how his sickness never scared him, and that he confronted death strongly because he knew by death he will be closed to God. </p> <p>His sister told the priest that Dr. Elie appeared in the mass to tell the priest that he has not mentioned him in the mass, but the priest answered her by saying: &ldquo; No, he came to tell me that he is alive&rdquo;</p> <p>Before his death, Dr. Elie asked his sister and mother not to mourn him by wearing black:</p> <p>&ldquo;My Lord, </p> <p>I ask you not to let my mother or my sister , </p> <p>Or whoever will mourn me , </p> <p>To be dressed in black,</p> <p>For this is a scar in the faith in the eternal life, </p> <p>And a scar in the depth of the soul </p> <p>That resided in God &rdquo;</p> <p>He helped many others after his death. </p> <p>&nbsp;</p> <p>&nbsp;</p> <p>Dr. Lena Karouny</p> ',1,4,0,13,'2007-11-12 22:11:40',62,'','2011-05-04 14:19:18',64,0,'0000-00-00 00:00:00','2007-11-12 22:08:40','0000-00-00 00:00:00','elie1.png|right||0||bottom||\r\nelie2.png|left||0||bottom||','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',4,0,2,'','',0,512670),(13,'Childhood and Youth','','<div align=\"left\"> <p style=\"margin-bottom: 6pt; text-align: justify\" class=\"MsoNormal\">Elie KAROUNY was born in Mouallaka, Zahl&eacute;, located in the Bekaa Valley, Lebanon. Elie and his only sister Lena both became physicians. His father Khalil worked in the railway, and he passed away in 1990.<br />Elie grew up in Orthodox faith. His character was always calm, optimistic, kind, very attentive, peaceful, strong, poetic, contemplative, and contented like an innocent child. He never complained, showed no sign of sadness. He never had bad or hidden intentions.<br />His face and smile full of light transmitted the feeling of happiness and joy to others.<span style=\"font-size: 14pt\"> </span></p> </div>',' <p>From his early childhood years, he felt that there a something different in his heart, a new love that distinguished him from others, as he mentioned in his book:</p> <p>&ldquo;I discovered a new seed growing within me, another &lsquo;child&rsquo; conceiving within my thoughts, and a breath whispering with another accent and a different expression&hellip;.&rdquo;</p> <p>He developed in addition to virtuous qualities a humorous spirit. He used to say: &quot;In my opinion, life is loving, donation, sharing, it&#39;s not war&quot;.</p> <p>In spite of his young age, he had always been trying to spread joy in the hearts of people around him so he composed many short dramas, played roles of a comedian. Having a good voice, he sung beautiful melodies for the oppressed and the helpless ones.</p> <p>His relationship with his parents was built on respect and appreciation. He listened to their advices, and considered them a kind of angels. He was also a very tender, compassionate brother to me.</p> <p>Despite his great success in school and family, he spared no effort in helping those in need of his fellows colleagues and shared with them food, science, and knowledge.</p> <p>He was a very special young believer, participating regularly in the Divine Liturgy of the Orthodox Church, standing all the time with concentration, without movement and praying fervently.</p> <p>He was very talented in writing since his early age. He wrote his thoughts, ideas, and visions mainly at night.</p> <p>In spite of his love for me, I was not allowed to access to his writings. When I tried to wake up at night to see what he wrote, he would tell me: &ldquo;You are not allowed to see these writings prior to my death; I will not be in peace if you see them before&rdquo;.</p> <p>In his school, Elie was a very talented and excellent student. He completed his elementary and high school education at the Annunciation College in Beirut &ndash; Lebanon. He mastered the Arabic, French and English languages. He wrote poetry, prose in different themes covering love, emotions, spiritualism and patriotism.</p> <p>His writing style was influenced by the classic music which conveyed to him an intellectual and spiritual touch.</p> <p>He liked comedies, opera, intellectual, religious and sports programs. He played the role of a doctor during a play when he was still at school.</p> <p style=\"margin-bottom: 6pt; text-align: justify\" class=\"MsoNormal\">He wanted to work in the humanitarian domain so that he can help poor and sick people. Later, he became a physician.</p> ',1,4,0,14,'2008-02-29 20:46:42',62,'','2011-05-04 14:30:39',64,0,'0000-00-00 00:00:00','2008-02-29 20:43:58','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',4,0,1,'','',0,89103),(14,'Spiritual Experience','','<div align=\"left\"> <p>Since 1980 Elie started his spiritual experience when he asked God to take him back to his Eternal Kingdom:</p> <p><strong>&nbsp;&ldquo;Lord, listen to my prayer and answer me, </strong></p> <p><strong>&nbsp;&nbsp; You are my creator,</strong></p> <p><strong>&nbsp;&nbsp; I trust you my love,</strong></p> <p><strong>&nbsp;&nbsp; And I fly to you</strong></p> <p><strong>&nbsp;&nbsp; Take me in your arms&rdquo;</strong></p> <p>He prayed God to take him back to heaven close to him, since he missed him a lot:</p> <p style=\"margin-bottom: 6pt; text-align: justify\" class=\"MsoNormal\"><strong>&ldquo;Heaven is my kingdom, Father, take me back there&hellip;&hellip;..&rdquo;</strong><strong></strong></p> </div>','<div align=\"left\"> <p>He was so long streamed in spirit as he also expressed his love to God through a poem written having this title.</p> <p>Since that time, Elie lived on earth as if he was living in heaven. His vision, spirit and mind were always projected towards heaven to be unified with God to reach the infinite perfection. He wrote: <strong>&ldquo;The materialistic life means nothing to me comparing to the holy life in Heaven&rdquo;</strong></p> <p>On 24 December 1981, he saw a vision of the Holy Mountain (Athos). Behind the mountain he saw light and above it white wings. Thereon, he started preparing himself to return back to his inner to be close to God. </p> <p>On 9 October 1982, he saw a vision through which he didn&#39;t only predict the time when he will be back to God, but knew the exact date, for this he told me: <strong>&ldquo;I know the day when I will die&hellip;&hellip; and I know also all the other days&hellip;&hellip;.&rdquo;</strong></p> <p>From that time on, his will to be unified with God grew much bigger and so he wanted to write his own biography.</p> <p style=\"margin-bottom: 6pt; text-align: justify\" class=\"MsoBodyText\"><strong>&ldquo;I want to publish and spread my own biography on earth; I want all the people to know me well, to move around in people&rsquo;s houses and so to scatter flowers wherever I go&hellip;&hellip;&rdquo;</strong><strong></strong></p> </div>',1,4,0,14,'2008-02-29 20:50:17',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2008-02-29 20:47:57','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',1,0,4,'','',0,34402),(15,'Academic and Professional Path','','<div align=\"left\"> <p>In 1981, Elie began his medical studies at the faculty of medicine of St. Joseph University in Beirut, to fulfill the goal he always aimed at. Since his early age, becoming a physician in order to help those in need was his permanent dream.<br />In 1988, he graduated from St. Joseph University with a General Medicine Diploma, passing the specialization test honorably; yet his success did not stop him from wanting to be close to God</p></div>','<div align=\"left\"> <p>He always had an inner voice giving him strength and holding him in his will to continue his journey in the path of God, so he never felt that this earth is where he truly belongs to:</p> <p><strong>&ldquo;An inner voice tells me not to be scared and to hold onto my will, so should I ignore it? Or simply forget it? Shall I not hear it with every heart beat? Deeply I want to, for this land is not mine nor is this desperation from my illusion. So let God&rsquo;s will be&hellip;&hellip;&rdquo;</strong></p> <p>He never forgot his friends who came to him asking for help; rather he always tried whatever he can to help them in their studies, and was always ready to answer their questions.</p> <p>Many of his studies were published in international medical journals yet this never distracted him from being next to God.</p> <p>In the following year, he earned the first rank in Internal Medicine and was given the chance to chose the specialization he wants. He always wanted to specialize in heart surgery, therefore he choose to be an interventional cardiologist for he believed that he wouldn&rsquo;t be able to practice heart surgery because soon he would be with God.</p> <p style=\"text-align: justify\" class=\"MsoNormal\">In fact, he told me that he wants to be an interventional cardiologist instead of cardiac surgeon. I asked him why this change? He answered: <strong>&ldquo;let my friend Nazem specialize in surgery because I don&rsquo;t have enough time to practice heart surgery since I will not stay alive for long time&rdquo;.</strong> </p> <p>While he was continuing his specialization in cardiology, he asked and encouraged his friend Salah to specialize in the same field of his specialization. I asked him why you are asking him that, isn&rsquo;t it better if you ask him to specialize in another field so that one may coordinate with the other? He answered me: &ldquo;<strong>I am going to deliver all my patients to him because I am not going to stay long here. This is God&rsquo;s will for me that I&rsquo;ll be a spiritual being&rdquo;.</strong></p> <p>He asked me to publish his biography and always told me that God is giving him time so he would be able to continue his writings for he knew that God&rsquo;s will is for him to be spiritual.</p> <p>He completed his studies in Lebanon and traveled to France where he entered the University of Pierre and Marie-Curie.</p> <p>In the year 1993 he obtained the sub specialization degree in heart ultra sound with high distinction and earned the title of foreign physician in the hospitals of Paris; consequently most of these hospitals asked him to join them.</p> <p>He prepared many different research and studies in his field in Lebanon and abroad, and he was asked to give lectures in one of the leading universities of the United States.</p> <p>In the year 1994, he was awarded two diplomas, one in Theoretical and Applied Sciences for Heart Catheterization and Coronary Angioplasty, the other in Endoscopic Radiotherapy. During the same year he obtained a diploma in the Applied Statistical Sciences for Medicine and Medical Researches, in addition to another diploma in Biology from Paul Sabatier University in France.</p> <p>At the end of 1994, he was granted from St Joseph University in Beirut, a specialization diploma in Cardiology, Catheterization and Angioplasty, following the submission of his thesis <strong>&ldquo;Comparative Study on Cardiac Surgery versus Catheterization and Angioplasty in case of Multi Coronary Stenosis&rdquo;</strong></p> <p>He was also assigned as an interventional Cardiologist at Saint Georges Hospital in Beirut.</p> <p>He was very successful in all his studies, and gained many appreciations from his teachers and colleagues. He was exceptionally nominated in France as Chief Diagnosis Physician, by an official decree from the Ministry of High Education. </p> <p>Elie practiced his profession with a lot of passion and humanity. He fulfilled his dream of helping every one in need. His goal was not the money or fame but rather alleviating the pain of the patients.</p> <p>He had great sympathy for people in need for money to buy medication that he prescribed for them; this drove him sometimes to buy for those people discreetly from his own money. After all his motto was: <strong>&ldquo;One should give with no return and should not keep it to himself maybe the earth will listen the voice of heaven.&rdquo;</strong> </p> <p>Dr Elie was an excellent and distinguished physician who volunteered to work day and night to cure those in need. One of his patients was confined to a wheelchair, yet this did not stop him from going everyday to check on her. Another had pulmonary edema, so he equipped her modest room with all that is needed from medical equipment; and so he did not leave her till she was cured. These are just examples from many humanitarian actions that he did without anyone knowing.</p> <p style=\"margin-bottom: 6pt; text-align: justify\" class=\"MsoBodyText\">He loved the people around him and they too, in return loved and appreciated him. He had a special place in the hearts of his patients. He got his modesty, generosity, and humanity from God, and in return he spread the light of knowledge he earned from the Holy Spirit to people around him.</p> <p style=\"margin-bottom: 6pt; text-align: justify\" class=\"MsoBodyText\">&nbsp;</p> </div>',1,4,0,14,'2008-02-29 20:55:04',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2008-02-29 20:50:28','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',1,0,2,'','',0,31495),(16,'Fighting the Sickness','','<div align=\"left\"> <p style=\"margin-bottom: 6pt; text-align: justify\" class=\"MsoBodyText\">Although he knew of his own sickness, this never stopped him from practicing his profession with great enthusiasm and never forgets to thank God.<br />His faith was always very strong at all times regardless how hard the situation is. He always told me:<span style=\"font-size: 14pt\"> </span></p> <p>&ldquo;<strong>There is no death after the resurrection of Jesus&rdquo;</strong></p> <p style=\"margin-bottom: 6pt; text-align: justify\" class=\"MsoBodyText\"><strong>&ldquo;I close my eyes here and open them there&rdquo;</strong></p> <p style=\"margin: 0in 0in 6pt 9pt; text-align: justify; text-indent: -9pt\" class=\"MsoBodyText\"><strong>&ldquo;Are you scared of your father? God is my father and I am going to Him&rdquo;</strong></p> </div>','<div align=\"left\"> <p>To his mother Alice, he used to say <strong>&ldquo;You are my mom here on this earth, but I have a mom in heaven and I will soon go to her.&rdquo;</strong></p> <p>His sickness never weakened him, but rather made him stronger. He accepted his sickness with no bitterness because it made him closer to God and to heaven. His spirit was always high and it was obvious whenever his friends or relatives were around. He lifted the spirit of whoever was around by telling them: <strong>&ldquo;This is God&rsquo;s will and there is no escape from it. God will give the best for me&rdquo;.</strong></p> <p>When his friends and the people who liked him where talking about miracles, supernatural phenomena, the intercession of saints and they told him to ask God for a miracle. Dr Elie wrote about miracles and said: <strong>&ldquo;God can give resurrection from the grave by means of mediatory or simply by having faith in Him. As for me, I wouldn&rsquo;t ask God for a miracle. He is my father and he loves me. The physical pain that we experience is merely a purifying fire to love him more&rdquo;.</strong></p> <p>I was always keen on praying and visiting churches asking God to cure my brother; yet he told me: <strong>&ldquo;God and the Virgin are here and they know what to do with me&rdquo;</strong>. &nbsp;He also told me: <strong>&ldquo;How do you pray? Our father in heaven, Thy will be done&hellip;, this is God&rsquo;s will and we should accept it&rdquo;</strong>. He was a firm believer of God&rsquo;s will, <strong>&ldquo;God wants me with him, I have spent time with you, but now I have to be with my Father&rdquo;.</strong></p> <p>I told him to pray to the Prophet Elias to cure him, he answered me that very shortly there will be a saint in the name of Elie and he told me that this life is just a path to a greater life with God: <strong>&ldquo;There is no death but passing in eternal life with God the Heavenly Father&rdquo;.</strong></p> <p>Just three days before his death, the Virgin Mary kissed him three times that signified that he will last for three days. His mother saw the Virgin Mary besides his bed but she did not recognize her. Elie wrote about this incident in his diary: <strong>&ldquo;I kissed the Virgin Mary three times this night&hellip;&rdquo;</strong></p> <p>Two days before he passed away, he confronted death and he wrote: <strong>&ldquo;You devil living inside me, even if you have poisoned the spirit of those around me with bitterness and desperation, you will see that, no matter how much my pain is, you will not take of me more than you can. When my hour comes I will leave you a dead body under mine, and I shut your fire with mines. I will drop my temper on you and my sword will not fall from my hand. I truly tell you that my soul will not die&rdquo;.</strong></p> <p>Elie did not fear death. He was communicating with God through his faith before he went to him.</p> <p>One reads his writings as if reading David&rsquo;s psalms or new psalms with a new scriptural point of view. Here is an example: </p> <p><strong>&ldquo;Truly we do not know what God wants from us except through our faith and the spirit that shouts in us: Our Father in heaven. Who is closer to us than our father&rsquo;s heart? What are we still afraid of?</strong></p> <p><strong>Grief&hellip;? We are only happy when our heads lean on our father&rsquo;s arms.</strong></p> <p><strong>Pain&hellip;? It&rsquo;s only fire that melts in us the heavenly metal.</strong></p> <p><strong>Death&hellip;? There is no death after Jesus&rsquo; resurrection. What are we still afraid of?</strong></p> <p><strong>The truth is that we should fear if we are in a spiritual slumber, and we are not aware of our faith and what we are in our inner self and lose time in vanity&rdquo;.&nbsp;</strong></p> <p>Before his death Elie asked me and my mother Alice not to mourn him by wearing black:</p> <p><strong>&ldquo;My Lord, </strong></p> <p><strong>I ask you not to let my mother or my sister, or whoever, mourn me and wear black dresses, for this is a scar in faith and eternal life, and a scar in the depth of the soul that resides in God.&rdquo;</strong></p> <p>Early morning, the day when Elie went to God, a nurse in Saint George Hospital named Fayrouz approached his bed perhaps seeing the smile that never left his face. She was surprised by the bed that trembled and moved from its place with loud noises and sound. She ran out of the room and called her friend Tania to see what was happening in the room. She also saw the same thing. When they asked for help from the maintenance section in the Hospital to check the bed, the answer was that the bed is in a good condition and there is no malfunctioning in it, nor in its electric connections and wirings.</p> <p>It is appropriate to mention that the bed was not connected to an electric outlet. They said: <strong>&ldquo;Truly, the bed shivered and was in pain for his departure, how much more pains will his family, friends, patients and nurses feel. So we said in secret, isn&rsquo;t this the act of saints?&rdquo;</strong></p> </div>',1,4,0,14,'2008-02-29 21:02:08',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2008-02-29 20:55:28','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',1,0,5,'','',0,29922),(17,'Events after his death','','<div align=\"left\"> <p>Dr. Elie left this earth to join the saints on the day that he predicted; it was November 12, 1998. </p> <p style=\"margin-bottom: 6pt; text-align: justify\" class=\"MsoBodyText\">Two of his books were published, the first in 1999 <strong>&ldquo;The Sword Will Not Fall from My Hand,&rdquo;</strong> which Metropolitan Elias of Beirut introduced; the second book published in the year 2005, titled <strong>&ldquo;Light from the Heaven.&rdquo;</strong> Also, Metropolitan Spiridon of Zahle and Bekaa Valley wrote the introduction of the book.<br /><br />An event occurred which led to selecting the title of the second book. I wanted to name the book <strong>&ldquo;Before the Leaving&rdquo;</strong>, or <strong>&ldquo;Before the Sunset&rdquo;</strong> with the sun in the background. However no one knew what I was thinking of. In the night of August 5-6th, 2005, Elie appeared to his cousin in her dream, and he was wearing a beige suit. He told her: &ldquo;A command and a request for my sister Lena not to name the book with the name on her mind, tell her not to be stubborn&nbsp; with her opinion, tell her she has two choices, either<strong> &ldquo;A Voice From the Heaven &ldquo; or &ldquo;Light From the Heaven&rdquo;</strong>, yet I prefer <strong>&ldquo;Light From the Heaven&rdquo;</strong>. And he repeated what he said twice.</p> </div>','<div align=\"left\"> <p>He even showed her how to write the title and the color of the cover that he wants, and it was blue, more or less the same as his first book, so he wrote to her the name as follows: </p> <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p> <p><strong>Light&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;</strong></p> <p><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; From &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (with white color)</strong></p> <p><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The Heaven</strong></p> <p>And when I was late in publishing the book, he returned to his cousin in her dream and asked her <strong>&ldquo;Where is my book? Where is Light from the Heaven?&rdquo;</strong> </p> <p>He also had other writings in Arabic and in French, but they are not published yet. </p> <p>On the Holy Thursday, one of his priest friends was in the middle of mass and, while he was preparing the Holy Eucharist, Elie appeared to him at 10 am, to the right of the Altar, standing with his feet a little higher than the ground, his face shining with light and wearing a white blouse and a kaki colored pants, he said: </p> <p><strong>&ldquo;I am here </strong></p> <p><strong>Confronting death </strong></p> <p><strong>Stepped over death by death</strong></p> <p><strong>I am alive </strong></p> <p><strong>Pray for my father Khalil&rdquo;</strong></p> <p>The priest was shocked and started shivering. Following mass he talked to the people about Dr. Elie, and told them how his sickness never scared him, and that he confronted death courageously because he knew that through death he will be close to God. </p> <p>I asked the priest if Elie appeared during mass to tell him that he did not mention him in mass, the priest answered me: <strong>&ldquo;No, he came to tell me that he is alive&rdquo;.</strong></p> <p>He helped many others after his death. </p> <p>One day a colleague in medicine felt that Elie&rsquo;s spirit was hovering around her and she did not know whether it was a dream or reality. She found beside her bed Elie&rsquo;s book and she wondered how the book was there and who put it there. She asked her parents but no one knew anything about it. She felt that Elie is asking her to go to his sister and ask her to search in his belongings for his writings.</p> <p>The next evening, at around six o&rsquo;clock, after a day&rsquo;s work, she went to sleep but Elie woke her up and told her to call his sister (myself). She visited me the same night and told me what happened with her and asked me to search the belongings of Dr Elie for his writings to be published in another book. She added: <strong>&ldquo;I brought you the message; I&rsquo;m going to sleep now&rdquo;.</strong></p> <p>A girl had an abdominal pain; she saw Dr Elie while sleeping and told her that she has a &ldquo;cyst&rdquo; on her ovary and needs an operation. The girl was afraid and did some examinations that proved that whatever Elie told her was true. She took lots of medication to avoid the operation but it did not work out. The same night she decided to do the operation, she saw Dr Elie and Virgin Mary operating on her and gave her the good news that the operation succeeded without problems, and that was really what happened.</p> <p>During a ceremony, a priest mentioned Dr Elie although he did not personally know him; he had heard about his charity, medical deeds and read some of his writings. The priest felt during the ceremony that Elie was glowing and standing to his right and talking to him, smiling: <strong>&ldquo;You may not pray for me because I am very comfortable. You need a prayer and I&rsquo;ll pray for you&rdquo;</strong>. The priest clearly laughed secretly and said: <strong>&ldquo;Look to whom I&rsquo;m praying, he should pray for me because he is a saint.&rdquo;</strong></p> <p>A colleague who works at Saint Georges hospital, wanted to become pregnant. She saw Dr Elie in the hospital wearing a white gown. She asked him how he is; he told her <strong>&ldquo;I&rsquo;m very comfortable; I congratulate you on your pregnancy. May, you need a medical doctor to substitute you in your clinic during the last months of your pregnancy; my sister is a pediatrician and can substitute you until your delivery&rdquo;</strong>. He smiled to her. This doctor considered that God had sent her a messenger and said: &ldquo;I feel that dear Elie is always with us and takes care of us. As a matter of fact in the end of five months pregnancy, her obstetrician told her to stay in bed till her delivery time comes. She asked me to substitute her just as Elie told her.&nbsp;</p> <p>Dr Elie&rsquo;s cousin saw him in her dream showing her his biography typed on a computer with a beige background and each paper of his biography is signed in blue by his name. She told me:<strong> &ldquo;Your brother gives you his approval to write and publish his biography.&rdquo;</strong> He was the one who said: <strong>&ldquo;I want to spread and publish my own biography on Earth and visit the houses and distribute flowers&hellip;.&rdquo;&nbsp;</strong></p> <p>A nurse where Dr Elie used to work said: <strong>&ldquo;I have been through many difficulties in my life and Dr Elie helped me a lot. I consider him my helper in heaven, he is too sweet, clever, humble, and his face shines bright, always smiling. I&rsquo;m sure he is a saint in heaven.&rdquo;</strong></p> <p>A woman, who doesn&rsquo;t know Elie and no one had ever told her anything about him, saw a young man in her dream with a shining face. He smiled at her and gave her a book having a blue background. She took the book, went out happy and heard the people whispering and saying that he is the &ldquo;Christ&rsquo;s.&rdquo; She woke up and said he might be a saint and this dream has an explanation. After two days her husband asked her to go with him to the signing ceremony of Dr Elie&rsquo;s book. In the beginning she didn&rsquo;t want to go, but when her husband insisted she accepted. When she walked in the hallway, she saw the book with its cover and color and she immediately remembered her dream. It was the cover of Dr. Elie&rsquo;s book that what she saw. The picture of Dr Elie is the same as the man she saw in her dream. It was a surprise to her since she never knew him before and had never seen a picture of him.</p> <p>When she heard about some of his writings and his charitable acts, she said: &ldquo;Is this a miracle that Dr Elie has done for me?&rdquo; </p> <p>A woman and her three and half year old daughter came to my clinic at night. The daughter had a high fever and was breathing heavily. After I examined her, I told her mother that she has pneumonia and we might have to take her to the hospital. The mother cried, since her financial condition was bad. So I gave her an antibiotic and anti-cough.</p> <p>Early next day, she came to my clinic asking me to examine her child again. I did that and was surprised to find the lungs in a very good condition, especially that twelve hours did not even pass since she took the medication.</p> <p>The mother told me that in the evening she asked from Dr Elie to help her and her sick child. He responded quickly and the girl slept and woke up in a very good condition as if nothing had happened. The mother said: <strong>&ldquo;Now I consider him a saint in heaven and always ask for his help&rdquo;.</strong>&nbsp;</p> <p>A wife of one priest who didn&rsquo;t know Dr. Elie before, heard about his charitable and medical deeds from the sisters in the monastery of Virgin Mary. One of the sisters gave her the second book of Dr Elie: <strong>&ldquo;Light from the Heaven&rdquo;</strong>. One night, she saw him in her dream with the Virgin Mary who told her that she is in a visit to Lebanon with the director of her affairs Dr Elie who stood beside her. Also she told her that she can ask and demand from Elie whatever she wants.</p><p>A four years old girl who heard about Dr Elie from her mother said to him before she slept: <strong>&ldquo;Dr Elie take care of my mother, father, uncle, grandmother and cure me&rdquo;</strong>. At 11 p.m. the child screamed, her mother woke up and asked her why she screamed. She answered that she saw Dr. Elie, and then she slept. When she woke up early in the morning, she told her mother again that she saw Dr Elie. Her mother showed her the pictures of the saints and asked whether it is one of them. She said no.</p> <p style=\"text-align: justify\" class=\"MsoNormal\">Her mother brought her to my clinic; I had a patient in my clinic. When the child came in, she saw Dr Elie&rsquo;s picture, pointed her finger and said it is him that I saw. She approached and kissed the picture. She repeated what she saw to us and when we asked her what he told you she answered he told me: <strong>&ldquo;I will let you get well.&rdquo;</strong> </p> <p>The patient that was in my clinic felt a shiver in her body and said: <strong>&ldquo;This young child is innocent and cannot lie, she surely saw him&rdquo;.</strong> </p> <p>&nbsp;</p> </div>',1,4,0,15,'2008-02-29 21:17:21',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2008-02-29 21:07:19','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',1,0,1,'','',0,36246),(18,'Dr. Elie Karouny compassionate works','','<div align=\"left\"> <p style=\"text-align: justify\" class=\"MsoNormal\">Since his early schooldays, Dr. Elie used to help his schoolmates.<br />Later he helped his colleagues in Faculty of Medicine; they considered him as a reference because of his strong medical knowledge. He was well known for his deep insights in various cultural topics: literature, art, in addition to medical topics, and everyone consulted him even his teachers. He was a genius with great talent.</p> </div>','<div align=\"left\"> <p>He tutored his fellow students, gave them lectures, motivated them and it is because of him that some of them chose cardiology. He collaborated with his teachers and helped them in writing books. </p> <p>During the war, despite the heavy bombing, he used to travel everyday on foot to the hospital to be close to his patients.</p> <p>His humanitarian and charitable deeds are countless, and all who knew him remember the good-hearted doctor who cared about nothing but his patient&rsquo;s recovery and health.<br /><br /> His secretary remembers how he relieved the suffering of his patients and used to give free consultations. Even the secretary saw Dr Elie tearing to pieces a check given by a patient whom Dr. Elie did an Angioplasty; he believed that one shouldn&rsquo;t worship two gods: God and money.<br /><br /> The nurses at the emergency of Saint George&rsquo;s hospital used to contact him whenever a needy patient came in; he even used to buy the medication for those who couldn&#39;t afford them. </p> <p style=\"text-align: justify\" class=\"MsoNormal\">Below are some of the examples of his charity: <br /><br /> <!--[if !supportLineBreakNewLine]--> <!--[endif]--></p><ul><li> A poor old man came once to the emergency at midnight, he was in a critical condition, so the nurse contacted Dr. Elie. He rushed to the hospital and stayed with him until his condition stabilized. The man became one of his regular patients. Dr. Elie used to buy him medication. Once the patient came with some sweets as he couldn&rsquo;t afford to bring him anything else to thank him, so Elie told him that all he cares about is his health.</li><li>Once a young girl came with her family to the emergency. She suffered from a condition in her heart that required angioplasty and because of their financial situation he did the procedure for free. </li></ul> <ul><li>in the eighties a young man having AIDS was admitted to the hospital, Elie was an intern, most were reluctant to approach the patient even his mother but Elie took care of him and gave him all the injections needed more than once in the lower back. </li></ul> <ul><li><!--[if !supportLists]-->n&nbsp; Once a girl suffering from spinal fractures was admitted to the hospital, her condition was very critical, her sister spent the night next to her bed but fell asleep. In the morning she woke up and found out that her sister passed away, she blamed herself, but when she came to Dr Elie, very nervous and feeling guilty, he told her:&quot; if you were asleep and everybody else in the hospital was asleep do you think God was asleep too?&quot; This is God&#39;s will. She was relieved at once.</li><li>There was a handicapped women suffering from a heart condition who was not able to come to the clinic, he used to visit her at home when needed even after midnight if necessary and&nbsp; provided her care free of charge.</li><li>He treated a 90 year old woman who contracted Pulmonary Edema, since it wasn&rsquo;t possible to take her to the hospital, due to her financial condition Dr Elie turned her own bedroom into a small intensive care unit and brought all the necessary equipment and medication and kept visiting her regularly three times a day until she recovered, without any charge. <br /></li><li>One patient with difficulty in breathing and was in need for hospitalization. Because of his moneyless, Dr Elie brought him what was needed from medications, serum and visited him twice a day until his recovery from illness. </li><li>A fifteen year old girl entered in coma following an accident, when Elie was still an intern. She had a cardiac arrest, the doctors tried their best to resuscitate her but there was no response so they gave up. Elie didn&rsquo;t gave up he tried again and again and eventually she woke up. Doctors were surprised and congratulated him on his perseverance. The girl left the hospital after the nightmare of the coma in good health and without symptoms. She and her family still remember that it is because of Elie that she is still alive.</li><li>A seven year old boy was accustomed to going to his neighbor&rsquo;s house. The head of the family gave him sweets. After the man&rsquo;s death and while Dr Elie came to console his family, he met the child whispering in the ear of the lady. Elie asked her what the boy wants. She answered: &ldquo;He is fatherless with three brothers and my husband always gives him sweets&rdquo;. So Elie called the boy and gave him one hundred dollars.<br /></li></ul> <p style=\"margin-left: 0.5in; text-align: justify; text-indent: -0.25in\" class=\"MsoNormal\"><!--[if !supportLists]--> <!--[endif]--></p> <p><br /> During a visit of condolences he heard that the husband of the deceased did not respect his wife&rsquo;s will to be buried in a specific place and the daughter was upset, so he told her: &ldquo;When the leaf falls, does it really matter where the wind takes her.&rdquo;<br /><br /> A Woman suffering from heart disease was advised to avoid pregnancy by her doctors; Dr Elie followed her condition and treated her; she was able to give birth to healthy kids later on.&nbsp;</p> <p style=\"text-align: justify\" class=\"MsoNormal\">All who knew Dr Elie remember him with tears and tell you what an angelic attitude he had, and praised the goodness of his heart, his face surround by a halo his smile that planted joy safety and tranquility all around him.</p> <p class=\"MsoNormal\">&nbsp;</p> <p class=\"MsoNormal\">&nbsp;</p> </div>',1,4,0,14,'2008-02-29 21:22:59',62,'','2008-02-29 21:33:38',62,0,'0000-00-00 00:00:00','2008-02-29 21:17:46','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',2,0,3,'','',0,30965),(19,'The Impact of Dr. Elie Karouny','','<div align=\"left\"> <p>Dr. Karouny left a great impact on all his friends, relatives, acquaintances, colleagues, the needy, and many of his patients. All of the needy and sick people who came to him were well treated and supported. It was through the relationships he made with his relatives and patients that he proclaimed the faith, the practice of virtues and almsgiving. Many were impacted by how he used to transmit to them his cultural, scientific, religious and artistic ideas, and his noble principles. All this made everyone who knew him appreciate him and get attached to him. They even remember him very well until this day. He impacted his relatives by cultivating in them the spirit of love, harmlessness, and respect of creatures and its right to life.</p> </div>','<div align=\"left\"> <p>One of his university professors said about him: &ldquo;Dr. Elie was a very special person, a genius, and ahead of his time. I am sure those people who are ahead of their times do not live long.&rdquo;</p> <p>Some of his colleagues reflected on his life and their relationship with Dr. Elie as follows: </p> <p>-&ldquo;His relationship with God was so strong. He was close to God, and even one with Him. He used to do whatever God commanded him, without any divergence. His faith was absolute in Christ. He used to repeat: &lsquo;Let your will be done O Lord.&rsquo; He was kind, goodhearted, with no pride. He was for me as a brother and friend. In my opinion he is now a doctor of souls after having been a doctor of hearts.&rdquo;</p> <p>-&ldquo;Elie lived a life full of love and faith, in the service of man and following the will and joy of the Lord. His thoughts and acts were in complete accord.&rdquo;</p> <p>-&ldquo;A brilliant doctor who was raised on Christian education and great faith. When he was tempted, he behaved in the way he was raised. He believed in God, truth, and the Resurrection.&rdquo; </p> <p>-&ldquo;His soul was always in peace and rest.&nbsp; He encouraged us all the time. &nbsp;He accepted the will of God. He was at ease with himself. He is our pride and icon. A great person.&rdquo;&nbsp;</p> <p>- &ldquo;Elie was a great believer. He strengthened my faith. He never had any fear of death, but he conquered death and went to eternal life. He speaks to God and speaks to us using his Biblical views. He conquered his sickness and became close to God before he went to Him. The strength of his faith brought him to this end. He put himself under God&rsquo;s will. He never refused to answer any request of help and support in the day and at night.&rdquo;&nbsp;</p> <p>One of his literature professors said about him: &ldquo;His words carry a noble spirit of joy and consciousness which brought down all vanity and pride in his interactions. He is one of his kind.&rdquo;&nbsp;</p> <p>Many priests who knew Dr. Elie reflected on his life as follows:</p> <p>-&ldquo;I could see in Dr. Elie Jesus who accepts to carry his cross and give himself to others, in joy and with a smile. He taught me many things which I reflected upon and prayed for. He taught me patience, carrying the cross and giving oneself to others. He was a living icon. I spent an important part of my life with him. I never heard him complaining, but always thanking God. With him, we wanted to pray. He really did not die. Chris is Risen. Alleluia.&rdquo;</p> <p>-&ldquo;Dr. Elie was strong in faith. He was never afraid of death; He was able to relate to God. His writings are similar to the Psalms of David or to new psalms. At the same time he spoke through biblical lenses.&rdquo;</p> <p>-&ldquo;Through his strong faith, Elie triumphed and achieved oneness with God before he passed away. He left a deep impact on myself. I always remember him, and will never forget him. Many people who suffer a passing headache or a pain for a short period will not bear it and start cursing God many times. Dr. Elie was in continuous state of thankfulness without any complain. He was an angel from heaven.&rdquo; </p> <p>- &ldquo;Elie was a great believer who could say, like his patron saint: &ldquo;As the LORD God of Israel liveth, before whom I stand&rdquo; (1 Kings 17:1) There are many pictures in his writings and new kind of psalms. He is a paschal man having a divine glow.&rdquo;</p> <p>One of the nurses working at St. George Hospital in Beirut went through a difficult health crisis did many tests, investigations and biopsy. Dr. Elie knew about her situation and told her: &ldquo;Ghada, you are in a grace that is drawing closer and closer to you. You must touch this grace more and interact with it, and live by it. Jesus Christ wants something from you. Do not be afraid and do not hesitate. Accept the pain which you shall endure&rdquo;. She replied: &ldquo;Is that real? How can I easily accept that?&rdquo; Elie smiled at her. She was very much affected by his words. Another time he told her that Jesus was calling her, and that she should not be afraid. She said: &ldquo;He was encouraging me, speaking to me in a very supportive and strong way. Those who have the power to be close to Jesus accept their pain and do not reject it. Dr. Elie was very compassionate, close to the sufferer. I wish we enjoyed his company more. He used to alleviate our pain and problems, so that we may further accept it. He was an angel and a saint from heaven.&rdquo;</p> <p>Another nurse from St. George Hospital said: &ldquo;I used to think of Jesus as my brother, and the Virgin Mary as my mother, and the Father as an old man waiting for the moment to punish me. One time I went to Dr. Elie asking him to pray for a miracle to heal himself. He answered me by saying: &ldquo;Does your son tell you that he is hungry so that you may feed him, or would you know that by yourself? God the Father is not waiting for me to ask him for a miracle, neither the Virgin nor Jesus. He knows what I want and He will give me according to my needs. He is my Father, and Jesus is my brother and the Virgin is my mother.&rdquo; Afterwards, I started thinking about my father and how many times I quarreled with him. With all my quarrels he used to call me and ask about me. If my father cares so much, how much more is the care of the heavenly father? I am sure He is much more compassionate, gracious and merciful. In this way I changed my mind after my talk with Dr. Elie Karouny.</p> <p>His patients remember him with many words. Here are some of their reflections: </p> <p>- &ldquo;He was my heart&rsquo;s doctor, and my love. He had a shining and humble countenance. He was able to reactivate my pulse and the hope that the warmth will return in my veins. He has a great future, very human, respects people and very brave. However he would never had made a fortune, and his last worry was collecting money. His concern was to treat people and not to mistreat their resources and destiny. I believe in his practice, abilities, creativity, and faithfulness to his mission, even though he is still young. I refuse to take another doctor to treat me. In my view he is unique. I refuse to change or replace the medications he prescribed for me.&rdquo;</p> <p>-Another patient said that Dr. Karouny saved him from an open heart surgery after he opened the vessels of his heart by Angioplasty. &ldquo;He used to listen to me with much patience and a lasting smile, without sarcasm or pride. No one is like him. I still take the medicine that he prescribed till now and will not change it, and will not go to another heart&rsquo;s surgeon. I will never forget him.&rdquo;</p> <p>- &ldquo;He is a real jewel, and a servant to the furthest limit. He is ready to put himself under hard work in order to help others, and always with no return. His practicing was for free, and his unconditional love to all people became his identity that distinguished him from others. Your departure was in continuation with the walk of holiness that started on earth, and now you continue in heaven.&rdquo;</p> <p>- &ldquo;He was shining with love and service, and in this way he enlightened many. He spread his good acts on those who knew him. He revived my heart after a heart stroke I had. I continue to use his medications and will not change them since I feel very good using them.&rdquo;</p> <p style=\"text-align: justify\" class=\"MsoNormal\">- &ldquo;He was very good with me and I will never forget all what he has done for me and his smile&hellip; He made a He told me: &ldquo;whenever you need anything, I am ready to help.&rdquo; I love him from all my heart he was very special and his face was also special. Till now, I cry when I remember him, he is a saint God sent on earth. cardiac catheterization for me and never accepted any money, even though I visited him so many times in his clinic.</p> <p>-A patient who Dr Elie have done a cardiac catheterization for him and did not accept money from him said: &ldquo;He treated me with the love of God. I will never forget him as a brilliant doctor, very human. He is rare&rdquo;. </p> <p>- &ldquo;We lost this brilliant young man early. He was an example of piety, persistent on working as in mission, since he saw his work this way. He greatly impacted us, and I will never forget him, He is an angel from heaven&rdquo;. </p> <p>- &ldquo;I, a priest, had great pain in my foot and it was swollen. I went to several doctors in Lebanon and abroad, and I did not benefit. No one knew how to treat my illness except Dr. Elie. God give him all blessing. He knew what was wrong in me and I was totally healed. His examinations were accurate and he followed up with his patients, No one treats others like him.&rdquo;</p> <p>-&ldquo;I had a high blood pressure and went to several doctors with no avail, even abroad where my children live. Only Dr. Elie could fix my situation.&rdquo;</p> <p style=\"text-align: justify\" class=\"MsoNormal\">-&ldquo;My son was seven years old when he had a dislocation of his shoulder. I went to the Emergency at SaintGeorge Hospital and Dr. Elie was there. I was afraid, shouting and crying. He approached me and said: &lsquo;Do not be afraid&rsquo; He put back the shoulder in its place and told me &lsquo;take your son and leave.&rsquo; I still remember this humane doctor till today. He is angel from heaven&rdquo;. </p> <p>Elie used to behave as a child among the children who came to his clinic, in their purity. One of the children came to step on an ant. He told him: &ldquo;This ant is going to feed her children, and if they do not eat they will die. Can you live without your mom?&rdquo; The child answered him hurriedly: &ldquo;No I cannot live without my mom, I love her so much.&rdquo; So Dr. Elie told him: &ldquo;The children of this ant love their mom very much as well. And God permitted this ant to live, so we should not kill it.&rdquo; The child&rsquo;s mom listened to the conversation and was impressed by this young doctor. He taught her a lesson about the greatness of relying on God and surrendering to his will. His destiny, as this woman said, is the destiny of these souls burning with the love of holiness from the beginning. </p> <p>I used to like having a bird in a cage and when my brother, Dr. Elie, knew this he told me, &ldquo;If you buy one and bring it here, I will not leave it one moment in the cage. The bird was created to live freely in nature, going from one tree to another, not to be imprisoned in a cage, just because we are stronger than it. We control it and imprison it. God knows where each one of us needs to be. And this bird God made to live in nature not in a cage.&rdquo;</p> <p>When my brother and I used to go to comfort the bereaved, he used to tell me: &ldquo;Do not comfort them by saying God have mercy on the soul of the dead, or may you be well, because God had mercy on him and took him to His abode. However ask that God have mercy on us, the living humans. Just comfort them by saying: Chris is Risen!&rdquo;</p> </div>',1,4,0,15,'2008-02-29 21:29:25',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2008-02-29 21:26:41','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',1,0,2,'','',0,34367),(20,'Dr. Elie Karouny','','<div align=\"right\"> <p dir=\"rtl\">&#1601;&#1610; &#1603;&#1606;&#1601; &nbsp;&#1608;&#1583;&#1601;&#1569; &#1593;&#1575;&#1574;&#1604;&#1577; &#1605;&#1572;&#1605;&#1606;&#1577; &#1571;&#1576;&#1589;&#1585; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610; &#1602;&#1585;&#1593;&#1608;&#1606;&#1610; &#1575;&#1604;&#1606;&#1608;&#1585;&#1548; &#1608;&#1571;&#1591;&#1604; &#1593;&#1604;&#1609; &#1575;&#1604;&#1581;&#1610;&#1575;&#1577; &#1601;&#1610; &#1575;&#1604;&#1576;&#1604;&#1583;&#1577; &#1575;&#1604;&#1576;&#1602;&#1575;&#1593;&#1610;&#1577; &#1575;&#1604;&#1580;&#1605;&#1610;&#1604;&#1577; &#1605;&#1593;&#1604;&#1602;&#1577; &#1586;&#1581;&#1604;&#1577;.{mosimage}</p> <p dir=\"rtl\">&#1571;&#1607;&#1604;&#1607; &#1571;&#1594;&#1606;&#1610;&#1575;&#1569; &#1576;&#1575;&#1604;&#1601;&#1590;&#1575;&#1574;&#1604;&#1548; &#1571;&#1576;&#1608;&#1607; &#1582;&#1604;&#1610;&#1604; &#1603;&#1575;&#1606; &#1610;&#1588;&#1578;&#1594;&#1604; &#1601;&#1610; &#1587;&#1603;&#1577; &#1575;&#1604;&#1581;&#1583;&#1610;&#1583; &#1575;&#1604;&#1609; &#1571;&#1606; &#1578;&#1608;&#1601;&#1575;&#1607; &#1575;&#1604;&#1604;&#1607; &#1601;&#1610; &#1633;&#1785;&#1575;&#1610;&#1604;&#1608;&#1604; &#1777;&#1785;&#1785;&#1776; &#1575;&#1605;&#1607; &#1578;&#1583;&#1593;&#1609; &#1575;&#1604;&#1610;&#1587; &#1605;&#1581;&#1601;&#1608;&#1592; .&nbsp;</p> <p dir=\"rtl\">&#1585;&#1586;&#1602; &#1575;&#1604;&#1604;&#1607; &#1607;&#1584;&#1610;&#1606; &#1575;&#1604;&#1608;&#1575;&#1604;&#1583;&#1610;&#1606; &#1575;&#1576;&#1606; &#1608;&#1575;&#1576;&#1606;&#1577;: &#1573;&#1610;&#1604;&#1610; &#1608;&#1604;&#1610;&#1606;&#1575;&#1548; &#1575;&#1604;&#1604;&#1584;&#1610;&#1606; &#1589;&#1575;&#1585;&#1575; &#1591;&#1576;&#1610;&#1576;&#1575;&#1606; &#1601;&#1610;&#1605;&#1575; &#1576;&#1593;&#1583;.</p> <p dir=\"rtl\">&#1606;&#1588;&#1571; &#1608;&#1578;&#1585;&#1593;&#1585;&#1593; &#1608;&#1575;&#1578;&#1587;&#1605;&#1578; &#1591;&#1601;&#1608;&#1604;&#1578;&#1607; &#1576;&#1575;&#1604;&#1607;&#1583;&#1608;&#1569; &#1608;&#1575;&#1604;&#1607;&#1606;&#1575;&#1569;. &#1607;&#1575;&#1583;&#1609;&#1569; &#1585;&#1586;&#1610;&#1606; &#1604;&#1575; &#1578;&#1601;&#1575;&#1585;&#1602; &#1575;&#1604;&#1575;&#1576;&#1578;&#1587;&#1575;&#1605;&#1577; &#1588;&#1601;&#1578;&#1610;&#1607;&#1548; &#1610;&#1581;&#1576;&#1607; &#1575;&#1604;&#1580;&#1605;&#1610;&#1593; &#1605;&#1606; &#1581;&#1608;&#1604;&#1607;&#1548; &#1578;&#1593;&#1604;&#1608; &#1580;&#1576;&#1610;&#1606;&#1607; &#1607;&#1575;&#1604;&#1577; &#1605;&#1606; &#1575;&#1604;&#1602;&#1583;&#1587;&#1610;&#1577; &#1578;&#1576;&#1593;&#1579; &#1601;&#1610; &#1575;&#1604;&#1606;&#1575;&#1592;&#1585; &#1575;&#1604;&#1610;&#1607; &#1575;&#1604;&#1588;&#1593;&#1608;&#1585; &#1576;&#1575;&#1604;&#1601;&#1585;&#1581; &#1608;&#1575;&#1604;&#1594;&#1576;&#1591;&#1577;&#1548; &#1605;&#1578;&#1610;&#1602;&#1592; &#1575;&#1604;&#1576;&#1583;&#1610;&#1607;&#1577;&#1548; &#1587;&#1575;&#1603;&#1606;&#1548; &#1580;&#1587;&#1608;&#1585; &#1604;&#1575; &#1610;&#1593;&#1585;&#1601; &#1575;&#1604;&#1602;&#1606;&#1608;&#1591; &#1608;&#1575;&#1604;&#1593;&#1576;&#1608;&#1587;&#1548; &#1581;&#1575;&#1604;&#1605; &#1576;&#1589;&#1601;&#1575;&#1569;&#1548; &#1605;&#1587;&#1578;&#1610;&#1602;&#1592; &#1605;&#1578;&#1571;&#1605;&#1604;&#1548; &#1585;&#1575;&#1590; &#1578;&#1582;&#1575;&#1604;&#1607; &#1589;&#1608;&#1585;&#1577; &#1591;&#1601;&#1604;&#1548; &#1604;&#1575; &#1610;&#1578;&#1584;&#1605;&#1585;&#1548; &#1610;&#1585;&#1575;&#1602;&#1576; &#1575;&#1604;&#1580;&#1605;&#1610;&#1593; &#1583;&#1608;&#1606; &#1575;&#1587;&#1578;&#1603;&#1575;&#1606;&#1577;.</p> <p dir=\"rtl\">&#1605;&#1606;&#1584; &#1591;&#1601;&#1608;&#1604;&#1578;&#1607; &#1588;&#1593;&#1585; &#1571;&#1606;&#1617; &#1607;&#1606;&#1575;&#1603; &#1581;&#1576;&#1617;&#1577; &#1580;&#1583;&#1610;&#1583;&#1577; &#1578;&#1606;&#1605;&#1608; &#1605;&#1593;&#1607; &#1578;&#1605;&#1617;&#1610;&#1586;&#1607; &#1593;&#1606; &#1594;&#1610;&#1585;&#1607; &#1575;&#1584; &#1602;&#1575;&#1604; &#1601;&#1610; &#1603;&#1578;&#1575;&#1576;&#1607;: &quot;&#1608;&#1580;&#1583;&#1578; &#1581;&#1576;&#1617;&#1577; &#1580;&#1583;&#1610;&#1583;&#1577; &#1578;&#1606;&#1605;&#1608; &#1605;&#1593;&#1610; &#1601;&#1610; &#1571;&#1581;&#1588;&#1575;&#1574;&#1610; </p> <p dir=\"rtl\">&nbsp;&#1591;&#1601;&#1604;&#1575;&#1611; &#1570;&#1582;&#1585; &#1610;&#1589;&#1605;&#1617;&#1605; &#1605;&#1607;&#1583;&#1607; &#1576;&#1610;&#1606; &#1571;&#1601;&#1603;&#1575;&#1585;&#1610; </p> <p dir=\"rtl\">&nbsp;&#1608;&#1606;&#1601;&#1587;&#1611;&#1575; &#1610;&#1578;&#1603;&#1604;&#1605; &#1576;&#1604;&#1607;&#1580;&#1577; &#1575;&#1582;&#1585;&#1609; &#1608;&#1578;&#1593;&#1575;&#1576;&#1610;&#1585; &#1571;&#1582;&#1585;&#1609;...&quot;</p> <p dir=\"rtl\">&#1588;&#1576;&#1617; &#1608;&#1603;&#1576;&#1585; &#1581;&#1575;&#1605;&#1604;&#1575;&#1611; &#1601;&#1610; &#1581;&#1588;&#1575;&#1607; &#1589;&#1601;&#1575;&#1578; &#1581;&#1605;&#1610;&#1583;&#1577; &#1576;&#1575;&#1604;&#1575;&#1590;&#1575;&#1601;&#1577; &#1575;&#1604;&#1609; &#1582;&#1601;&#1577; &#1575;&#1604;&#1592;&#1604;&#1617;&#1548; &#1589;&#1604;&#1576; &#1575;&#1604;&#1588;&#1603;&#1610;&#1605;&#1577;&#1548; &#1605;&#1578;&#1608;&#1575;&#1590;&#1593; &#1593;&#1586;&#1610;&#1586; &#1575;&#1604;&#1606;&#1601;&#1587;&#1548; &#1581;&#1575;&#1590;&#1585; &#1575;&#1604;&#1606;&#1603;&#1578;&#1577; &#1608;&#1607;&#1608; &#1575;&#1604;&#1602;&#1575;&#1574;&#1604;: </p> <p dir=\"rtl\">&quot;&#1604;&#1605; &#1575;&#1593;&#1585;&#1601; &#1575;&#1604;&#1581;&#1610;&#1575;&#1577; &#1581;&#1585;&#1576;&#1575;&#1611; &#1576;&#1604; &#1581;&#1576;&#1617;&#1575;&#1611; &#1608;&#1576;&#1584;&#1604;&#1575;&#1611; &#1608;&#1605;&#1588;&#1575;&#1585;&#1603;&#1577;&quot;.</p> <p dir=\"rtl\">&#1608;&#1593;&#1604;&#1609; &#1575;&#1604;&#1585;&#1594;&#1605; &#1605;&#1606; &#1581;&#1583;&#1575;&#1579;&#1577; &#1587;&#1606;&#1607; &#1603;&#1575;&#1606; &#1610;&#1581;&#1575;&#1608;&#1604; &#1583;&#1575;&#1574;&#1605;&#1575;&#1611; &#1586;&#1585;&#1593; &#1575;&#1604;&#1601;&#1585;&#1581; &#1605;&#1606; &#1581;&#1608;&#1604;&#1607; &#1608;&#1601;&#1610; &#1602;&#1604;&#1608;&#1576; &#1575;&#1604;&#1606;&#1575;&#1587; &#1575;&#1604;&#1605;&#1602;&#1607;&#1608;&#1585;&#1610;&#1606; &#1608;&#1575;&#1604;&#1605;&#1594;&#1604;&#1608;&#1576; &#1593;&#1604;&#1609; &#1571;&#1605;&#1585;&#1607;&#1605; &#1578;&#1575;&#1585;&#1577; &#1576;&#1578;&#1571;&#1604;&#1610;&#1601; &#1575;&#1604;&#1605;&#1587;&#1585;&#1581;&#1610;&#1575;&#1578; &#1575;&#1604;&#1602;&#1589;&#1610;&#1585;&#1577; &#1581;&#1610;&#1579; &#1610;&#1604;&#1593;&#1576; &#1571;&#1583;&#1608;&#1575;&#1585; &#1575;&#1604;&#1605;&#1605;&#1579;&#1604;&#1610;&#1606; &#1603;&#1575;&#1601;&#1577; &#1608;&#1591;&#1608;&#1585;&#1575;&#1611; &#1610;&#1602;&#1604;&#1617;&#1583; &#1575;&#1604;&#1603;&#1608;&#1605;&#1610;&#1583;&#1610;&#1610;&#1606; &#1575;&#1608; &#1575;&#1604;&#1605;&#1591;&#1585;&#1576;&#1610;&#1606; &#1576;&#1589;&#1608;&#1578; &#1580;&#1605;&#1610;&#1604; &#1610;&#1593;&#1576;&#1602; &#1576;&#1607; &#1575;&#1604;&#1605;&#1606;&#1586;&#1604;.</p> </div>','<div align=\"right\"> <p dir=\"rtl\">&#1575;&#1576;&#1606;&#1575;&#1611; &#1576;&#1575;&#1585;&#1575;&#1611; &#1610;&#1581;&#1578;&#1585;&#1605; &#1608;&#1575;&#1604;&#1583;&#1610;&#1607; &#1608;&#1610;&#1589;&#1594;&#1610; &#1575;&#1604;&#1609; &#1606;&#1589;&#1575;&#1574;&#1581;&#1607;&#1605; &#1608;&#1610;&#1593;&#1605;&#1604; &#1576;&#1607;&#1575;:&quot;&#1611;&#1608;&#1608;&#1607;&#1576;&#1578; &#1604;&#1606;&#1575; &#1571;&#1576;&#1575;&#1611; &#1608;&#1571;&#1605;&#1575;&#1611; &#1607;&#1605;&#1575; &#1605;&#1606; &#1601;&#1585;&#1608;&#1593; &#1575;&#1604;&#1605;&#1604;&#1575;&#1574;&#1603;&#1577;&quot;&#1611; &#1548; &#1608;&#1571;&#1582;&#1575; &#1581;&#1606;&#1608;&#1606;&#1575;&#1611; &#1610;&#1593;&#1591;&#1601; &#1593;&#1604;&#1609; &#1588;&#1602;&#1610;&#1602;&#1578;&#1607; &#1575;&#1604;&#1608;&#1581;&#1610;&#1583;&#1577; &#1608;&#1610;&#1593;&#1575;&#1605;&#1604;&#1607;&#1575; &#1582;&#1610;&#1585; &#1605;&#1593;&#1575;&#1605;&#1604;&#1577;&#1548; &#1610;&#1582;&#1575;&#1601; &#1593;&#1604;&#1610;&#1607;&#1575; &#1608;&#1610;&#1594;&#1605;&#1585;&#1607;&#1575; &#1576;&#1605;&#1581;&#1576;&#1578;&#1607; &#1575;&#1604;&#1575;&#1582;&#1608;&#1610;&#1577;&#1548; &#1585;&#1601;&#1610;&#1602;&#1575;&#1611; &#1605;&#1578;&#1608;&#1575;&#1590;&#1593;&#1575;&#1611; &#1604;&#1607;&#1601;&#1611;&#1575; &#1608;&#1605;&#1572;&#1605;&#1606;&#1575;&#1611;&#1548; &#1608;&#1593;&#1604;&#1609; &#1575;&#1604;&#1585;&#1594;&#1605; &#1605;&#1606; &#1578;&#1601;&#1608;&#1602;&#1607; &#1575;&#1604;&#1583;&#1575;&#1574;&#1605; &#1601;&#1610; &#1575;&#1604;&#1589;&#1601; &#1603;&#1575;&#1606; &#1604;&#1575; &#1610;&#1571;&#1604;&#1608; &#1580;&#1607;&#1583;&#1575;&#1611; &#1601;&#1610; &#1605;&#1587;&#1575;&#1593;&#1583;&#1577; &#1605;&#1606; &#1610;&#1581;&#1578;&#1575;&#1580; &#1575;&#1604;&#1609; &#1605;&#1587;&#1575;&#1593;&#1583;&#1577; &#1605;&#1606; &#1585;&#1601;&#1575;&#1602; &#1575;&#1604;&#1589;&#1601; &#1608;&#1610;&#1588;&#1575;&#1585;&#1603;&#1607;&#1605; &#1575;&#1604;&#1591;&#1593;&#1575;&#1605; &#1608;&#1575;&#1604;&#1593;&#1604;&#1605; &#1608;&#1575;&#1604;&#1605;&#1593;&#1585;&#1601;&#1577;. &#1608;&#1603;&#1575;&#1606; &#1588;&#1575;&#1576;&#1575;&#1611; &#1605;&#1605;&#1610;&#1617;&#1586;&#1575; &#1605;&#1572;&#1605;&#1606;&#1575;&#1611; &#1610;&#1586;&#1608;&#1585; &#1575;&#1604;&#1603;&#1606;&#1610;&#1587;&#1577; &#1576;&#1575;&#1587;&#1578;&#1605;&#1585;&#1575;&#1585; &#1608;&#1610;&#1588;&#1575;&#1585;&#1603; &#1601;&#1610; &#1575;&#1604;&#1602;&#1583;&#1575;&#1587; &#1575;&#1604;&#1575;&#1604;&#1607;&#1610; &#1576;&#1603;&#1575;&#1605;&#1604;&#1607; &#1608;&#1602;&#1608;&#1601;&#1575;&#1611; &#1601;&#1610; &#1570;&#1582;&#1585; &#1575;&#1604;&#1603;&#1606;&#1610;&#1587;&#1577; &#1608;&#1610;&#1589;&#1604;&#1610; &#1576;&#1603;&#1604; &#1580;&#1608;&#1575;&#1585;&#1581;&#1607; &#1608;&#1605;&#1606; &#1603;&#1604; &#1602;&#1604;&#1576;&#1607;.</p> <p dir=\"rtl\">&#1578;&#1601;&#1578;&#1602;&#1578; &#1604;&#1583;&#1610;&#1607; &#1605;&#1608;&#1607;&#1576;&#1577; &#1575;&#1604;&#1603;&#1578;&#1575;&#1576;&#1577; &#1608;&#1607;&#1608; &#1604;&#1605; &#1610;&#1586;&#1604; &#1610;&#1575;&#1601;&#1593;&#1575;&#1611;. &#1601;&#1576;&#1583;&#1571; &#1610;&#1603;&#1578;&#1576; &#1601;&#1610; &#1575;&#1604;&#1604;&#1610;&#1575;&#1604;&#1610; &#1610;&#1578;&#1571;&#1605;&#1604; &#1608;&#1610;&#1582;&#1591; &#1582;&#1608;&#1575;&#1591;&#1585;&#1607; &#1608;&#1575;&#1601;&#1603;&#1575;&#1585;&#1607; &#1608;&#1585;&#1572;&#1610;&#1575;&#1607; &#1576;&#1593;&#1590; &#1575;&#1604;&#1575;&#1581;&#1610;&#1575;&#1606; &#1593;&#1604;&#1609; &#1583;&#1601;&#1575;&#1578;&#1585; &#1575;&#1604;&#1605;&#1583;&#1585;&#1587;&#1577; &#1608;&#1576;&#1593;&#1590;&#1607;&#1575; &#1575;&#1604;&#1570;&#1582;&#1585; &#1593;&#1604;&#1609; &#1575;&#1608;&#1585;&#1575;&#1602; &#1582;&#1575;&#1589;&#1577;. &#1608;&#1593;&#1604;&#1609; &#1575;&#1604;&#1585;&#1594;&#1605; &#1605;&#1606; &#1605;&#1581;&#1576;&#1578;&#1607; &#1608;&#1593;&#1591;&#1601;&#1607; &#1593;&#1604;&#1610;&#1617; &#1604;&#1605; &#1610;&#1603;&#1606; &#1610;&#1587;&#1605;&#1581; &#1604;&#1610; &#1576;&#1575;&#1604;&#1575;&#1591;&#1604;&#1575;&#1593; &#1593;&#1604;&#1609; &#1603;&#1578;&#1575;&#1576;&#1575;&#1578;&#1607;&#1548; &#1608;&#1603;&#1575;&#1606; &#1610;&#1585;&#1583;&#1617;&#1583; &#1593;&#1604;&#1609; &#1605;&#1587;&#1575;&#1605;&#1593;&#1610;:&quot;&#1611;&#1594;&#1610;&#1585; &#1605;&#1587;&#1605;&#1608;&#1581; &#1575;&#1606; &#1578;&#1585;&#1610; &#1607;&#1584;&#1607; &#1575;&#1604;&#1603;&#1578;&#1575;&#1576;&#1575;&#1578; &#1602;&#1576;&#1604; &#1575;&#1606; &#1571;&#1605;&#1608;&#1578;&#1548; &#1605;&#1575; &#1576;&#1603;&#1608;&#1606; &#1605;&#1606;&#1610;&#1581; &#1575;&#1584;&#1575; &#1585;&#1571;&#1610;&#1578;&#1607;&#1575; &#1602;&#1576;&#1604;...&quot; &#1608;&#1602;&#1583; &#1581;&#1575;&#1608;&#1604;&#1578; &#1605;&#1585;&#1577; &#1575;&#1603;&#1578;&#1588;&#1575;&#1601; &#1605;&#1575; &#1603;&#1575;&#1606;&#1578; &#1578;&#1590;&#1605;&#1607; &#1578;&#1604;&#1603; &#1575;&#1604;&#1575;&#1608;&#1585;&#1575;&#1602; &#1575;&#1604;&#1605;&#1603;&#1583;&#1617;&#1587;&#1577; &#1608;&#1593;&#1585;&#1601; &#1576;&#1575;&#1604;&#1571;&#1605;&#1585; &#1601;&#1594;&#1617;&#1610;&#1585; &#1604;&#1607;&#1575; &#1605;&#1603;&#1575;&#1606;&#1607;&#1575;. &#1601;&#1604;&#1605; &#1575;&#1581;&#1575;&#1608;&#1604; &#1605;&#1585;&#1577; &#1579;&#1575;&#1606;&#1610;&#1577;.</p> <p dir=\"rtl\">&#1603;&#1575;&#1606; &#1578;&#1604;&#1605;&#1610;&#1584;&#1575;&#1611; &#1605;&#1605;&#1610;&#1617;&#1586;&#1575;&#1611;&#1548; &#1578;&#1604;&#1602;&#1609; &#1593;&#1604;&#1608;&#1605;&#1607; &#1575;&#1604;&#1575;&#1576;&#1578;&#1583;&#1575;&#1574;&#1610;&#1577; &#1608;&#1575;&#1604;&#1579;&#1575;&#1606;&#1608;&#1610;&#1577; &#1601;&#1610; &#1603;&#1604;&#1610;&#1577; &#1575;&#1604;&#1576;&#1588;&#1575;&#1585;&#1577; &#1575;&#1604;&#1575;&#1585;&#1579;&#1608;&#1584;&#1603;&#1587;&#1610;&#1577; &ndash; &#1576;&#1610;&#1585;&#1608;&#1578; &#1608;&#1575;&#1578;&#1602;&#1606; &#1575;&#1604;&#1604;&#1594;&#1575;&#1578; &#1575;&#1604;&#1593;&#1585;&#1576;&#1610;&#1577; &#1608;&#1575;&#1604;&#1601;&#1585;&#1606;&#1587;&#1610;&#1577; &#1608;&#1575;&#1604;&#1575;&#1606;&#1603;&#1604;&#1610;&#1586;&#1610;&#1577;&#1548; &#1603;&#1578;&#1576; &#1575;&#1604;&#1588;&#1593;&#1585; &#1608;&#1575;&#1604;&#1606;&#1579;&#1585; &#1608;&#1578;&#1591;&#1585;&#1602; &#1575;&#1604;&#1609; &#1580;&#1605;&#1610;&#1593; &#1575;&#1604;&#1605;&#1608;&#1575;&#1590;&#1610;&#1593; &#1605;&#1606; &#1594;&#1586;&#1604; &#1608;&#1608;&#1580;&#1583;&#1575;&#1606;&#1610;&#1575;&#1578; &#1608;&#1608;&#1591;&#1606;&#1610;&#1575;&#1578;&#1548; &#1575;&#1587;&#1578;&#1602;&#1609; &#1575;&#1587;&#1604;&#1608;&#1576;&#1607; &#1575;&#1604;&#1605;&#1578;&#1585;&#1602;&#1585;&#1602; &#1605;&#1606; &#1588;&#1594;&#1601;&#1607; &#1576;&#1575;&#1604;&#1605;&#1608;&#1587;&#1610;&#1602;&#1609; &#1575;&#1604;&#1603;&#1604;&#1575;&#1587;&#1610;&#1603;&#1610;&#1577; &#1575;&#1604;&#1578;&#1610; &#1575;&#1590;&#1601;&#1578; &#1593;&#1604;&#1609; &#1588;&#1593;&#1585;&#1607; &#1575;&#1606;&#1587;&#1610;&#1575;&#1576;&#1575;&#1611; &#1601;&#1603;&#1585;&#1610;&#1575;&#1611; &#1608;&#1585;&#1608;&#1581;&#1610;&#1575;&#1611;. &#1571;&#1581;&#1576; &#1605;&#1588;&#1575;&#1607;&#1583;&#1577; &#1575;&#1604;&#1605;&#1587;&#1585;&#1581;&#1610;&#1575;&#1578; &#1575;&#1604;&#1603;&#1608;&#1605;&#1610;&#1583;&#1610;&#1577; &#1608;&#1575;&#1604;&#1575;&#1608;&#1576;&#1585;&#1575; &#1608;&#1575;&#1604;&#1576;&#1585;&#1575;&#1605;&#1580; &#1575;&#1604;&#1578;&#1579;&#1602;&#1610;&#1601;&#1610;&#1577; &#1608;&#1575;&#1604;&#1583;&#1610;&#1606;&#1610;&#1577; &#1608;&#1605;&#1604;&#1575;&#1581;&#1602;&#1577; &#1575;&#1604;&#1575;&#1582;&#1576;&#1575;&#1585; &#1575;&#1604;&#1585;&#1610;&#1575;&#1590;&#1610;&#1577; &#1605;&#1606; &#1603;&#1585;&#1577; &#1605;&#1590;&#1585;&#1576; &#1608;&#1603;&#1585;&#1577; &#1602;&#1583;&#1605;.</p> <p dir=\"rtl\">&#1585;&#1594;&#1576; &#1601;&#1610; &#1605;&#1607;&#1606;&#1577; &#1575;&#1606;&#1587;&#1575;&#1606;&#1610;&#1577; &#1578;&#1581;&#1602;&#1602; &#1604;&#1607; &#1605;&#1575; &#1610;&#1589;&#1576;&#1608; &#1575;&#1604;&#1610;&#1607; &#1605;&#1606; &#1605;&#1587;&#1575;&#1593;&#1583;&#1577; &#1575;&#1604;&#1606;&#1575;&#1587; &#1575;&#1604;&#1605;&#1578;&#1593;&#1576;&#1610;&#1606; &#1608;&#1575;&#1604;&#1601;&#1602;&#1585;&#1575;&#1569;&#1548; &#1601;&#1575;&#1584; &#1576;&#1607; &#1608;&#1607;&#1608; &#1593;&#1604;&#1609; &#1605;&#1602;&#1575;&#1593;&#1583; &#1575;&#1604;&#1583;&#1585;&#1575;&#1587;&#1577; &#1610;&#1588;&#1575;&#1585;&#1603; &#1601;&#1610; &#1605;&#1587;&#1585;&#1581;&#1610;&#1577; &#1575;&#1604;&#1605;&#1585;&#1610;&#1590; &#1575;&#1604;&#1605;&#1578;&#1608;&#1607;&#1605; &#1608;&#1602;&#1583; &#1575;&#1578;&#1582;&#1584; &#1583;&#1608;&#1585; &#1575;&#1604;&#1591;&#1576;&#1610;&#1576;. &#1608;&#1589;&#1575;&#1585; &#1591;&#1576;&#1610;&#1576;&#1575;&#1611; &#1573;&#1606;&#1587;&#1575;&#1606;&#1610;&#1611;&#1575;.</p> <p dir=\"rtl\"><strong>&#1575;&#1604;&#1585;&#1581;&#1604;&#1577; &#1575;&#1604;&#1585;&#1608;&#1581;&#1610;&#1577;:</strong></p> <p dir=\"rtl\">&#1576;&#1583;&#1571;&#1578; &#1585;&#1581;&#1604;&#1577; &#1573;&#1610;&#1604;&#1610; &#1575;&#1604;&#1585;&#1608;&#1581;&#1610;&#1577; &#1575;&#1604;&#1593;&#1575;&#1605; &#1777;&#1785;&#1784;&#1776; &#1593;&#1606;&#1583;&#1605;&#1575; &#1591;&#1604;&#1576; &#1605;&#1606; &#1575;&#1604;&#1604;&#1607; &#1575;&#1606; &#1610;&#1571;&#1582;&#1584;&#1607; &#1575;&#1604;&#1610;&#1607; &#1605;&#1578;&#1590;&#1585;&#1593;&#1575;&#1611; &#1605;&#1606; &#1603;&#1604; &#1602;&#1604;&#1576;&#1607; &#1608;&#1585;&#1608;&#1581;&#1607; &#1575;&#1606; &#1610;&#1593;&#1608;&#1583; &#1575;&#1604;&#1610;&#1607; &#1608;&#1575;&#1584; &#1576;&#1575;&#1604;&#1585;&#1594;&#1576;&#1577; &#1578;&#1578;&#1605;&#1575;&#1607;&#1609; &#1589;&#1604;&#1575;&#1577;:</p> <p dir=\"rtl\">&nbsp;&quot;&#1585;&#1601;&#1593;&#1578; &#1573;&#1604;&#1610;&#1603; &#1575;&#1576;&#1578;&#1607;&#1575;&#1604;&#1610; &#1601;&#1575;&#1587;&#1578;&#1580;&#1576; </p> <p dir=\"rtl\">&nbsp; &#1571;&#1583;&#1617;&#1610;&#1578; &#1573;&#1604;&#1610;&#1603; &#1608;&#1580;&#1608;&#1583;&#1610; </p> <p dir=\"rtl\">&nbsp; &#1606;&#1601;&#1582;&#1578;&#1607; &#1601;&#1610;&#1617; &#1575;&#1604;&#1585;&#1610;&#1581;&nbsp; </p> <p dir=\"rtl\">&nbsp; &#1571;&#1605;&#1606;&#1617;&#1578;&#1603; &#1581;&#1576;&#1610;</p> <p dir=\"rtl\">&nbsp; &#1608;&#1591;&#1585;&#1578; &#1575;&#1604;&#1610;&#1603;</p> <p dir=\"rtl\">&nbsp; &#1582;&#1584;&#1606;&#1610; &#1576;&#1610;&#1606; &#1610;&#1583;&#1610;&#1603;...&quot;</p> <p dir=\"rtl\">&nbsp;</p> <p dir=\"rtl\">&#1585;&#1580;&#1575; &#1575;&#1604;&#1604;&#1607; &#1571;&#1606; &#1610;&#1585;&#1583;&#1607; &#1573;&#1604;&#1609; &#1575;&#1604;&#1587;&#1605;&#1575;&#1569; &#1604;&#1571;&#1606;&#1607; &#1575;&#1588;&#1578;&#1575;&#1602; &#1575;&#1604;&#1610;&#1607;:</p> <p dir=\"rtl\">&nbsp;</p> <p dir=\"rtl\">&quot;&#1575;&#1604;&#1587;&#1605;&#1575;&#1569; &#1605;&#1605;&#1604;&#1603;&#1578;&#1610; &#1601;&#1585;&#1583;&#1617;&#1606;&#1610; &#1571;&#1576;&#1578;&#1548;</p> <p dir=\"rtl\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#1602;&#1583; &#1593;&#1575;&#1583; &#1610;&#1605;&#1604;&#1572;&#1606;&#1610; &#1575;&#1604;&#1588;&#1608;&#1602; &#1575;&#1604;&#1584;&#1610; &#1580;&#1593;&#1578;&#1610;&#1548;</p> <p dir=\"rtl\">&nbsp;&#1607;&#1606;&#1575;&#1603; &#1601;&#1610; &#1608;&#1591;&#1606;&#1610; &#1605;&#1608;&#1575;&#1587;&#1605; &#1575;&#1604;&#1601;&#1585;&#1581;&#1548;</p> <p dir=\"rtl\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#1608;&#1601;&#1578;&#1606;&#1577; &#1578;&#1600;&#1593;&#1583; &#1575;&#1604;&#1575;&#1606;&#1600;&#1587;&#1575;&#1606; &#1576;&#1575;&#1604;&#1587;&#1617;&#1593;&#1577;....&quot;</p> <p dir=\"rtl\">&#1608;&#1603;&#1575;&#1606; &#1604;&#1583;&#1610;&#1607; &#1578;&#1608;&#1602; &#1575;&#1604;&#1609; &#1605;&#1580;&#1575;&#1585;&#1610; &#1575;&#1604;&#1585;&#1608;&#1581; &#1575;&#1584; &#1593;&#1576;&#1617;&#1585; &#1593;&#1606; &#1584;&#1604;&#1603; &#1571;&#1610;&#1590;&#1575; &#1605;&#1606; &#1582;&#1604;&#1575;&#1604; &#1602;&#1589;&#1610;&#1583;&#1577; &#1603;&#1578;&#1576;&#1607;&#1575;&#1548; &#1575;&#1593;&#1591;&#1609; &#1604;&#1607;&#1575; &#1607;&#1584;&#1575; &#1575;&#1604;&#1593;&#1606;&#1608;&#1575;&#1606;.</p><p dir=\"rtl\">&#1608;&#1605;&#1606;&#1584; &#1584;&#1604;&#1603; &#1575;&#1604;&#1581;&#1610;&#1606; &#1593;&#1575;&#1588; &#1573;&#1610;&#1604;&#1610; &#1575;&#1585;&#1590;&#1607; &#1587;&#1605;&#1575;&#1569;&#1611; &#1605;&#1593; &#1605;&#1588;&#1575;&#1607;&#1583;&#1575;&#1578;&#1607; &#1608;&#1585;&#1572;&#1610;&#1575;&#1607;&#1548; &#1585;&#1608;&#1581;&#1607; &#1608;&#1593;&#1602;&#1604;&#1607; &#1608;&#1606;&#1601;&#1587;&#1607; &#1578;&#1581;&#1604;&#1617;&#1602; &#1601;&#1610; &#1587;&#1605;&#1575;&#1569; &#1575;&#1604;&#1604;&#1575;&#1608;&#1580;&#1608;&#1583; &#1575;&#1604;&#1575;&#1585;&#1590;&#1610; &#1604;&#1578;&#1604;&#1578;&#1589;&#1602; &#1576;&#1582;&#1575;&#1604;&#1602;&#1607;&#1575; &#1578;&#1608;&#1575;&#1602;&#1577; &#1575;&#1604;&#1609; &#1575;&#1604;&#1603;&#1605;&#1575;&#1604; &#1575;&#1604;&#1604;&#1575;&#1605;&#1578;&#1606;&#1575;&#1607;&#1610;: &quot;&#1608;&#1586;&#1607;&#1583;&#1610; &#1601;&#1610; &#1575;&#1604;&#1581;&#1610;&#1575;&#1577; &#1575;&#1604;&#1606;&#1602;&#1589;&#1609; &#1604;&#1591;&#1605;&#1593;&#1610; &#1576;&#1575;&#1604;&#1603;&#1575;&#1605;&#1604;&#1577;...&quot;</p> <p dir=\"rtl\">&#1601;&#1610; &#1634;&#1636; &#1603;&#1575;&#1606;&#1608;&#1606; &#1575;&#1604;&#1575;&#1608;&#1604;1981 &#1585;&#1571;&#1609; &#1575;&#1604;&#1580;&#1576;&#1604; &#1575;&#1604;&#1605;&#1602;&#1583;&#1617;&#1587; &#1608;&#1605;&#1606; &#1608;&#1585;&#1575;&#1574;&#1607; &#1606;&#1608;&#1585; &#1608;&#1575;&#1580;&#1606;&#1581;&#1577; &#1576;&#1610;&#1590;&#1575;&#1569; &#1593;&#1604;&#1609; &#1593;&#1604;&#1608;&#1548; &#1601;&#1602;&#1583;&#1617;&#1587; &#1606;&#1601;&#1587;&#1607; &#1608;&#1576;&#1583;&#1571; &#1585;&#1581;&#1604;&#1577; &#1575;&#1604;&#1575;&#1587;&#1578;&#1593;&#1583;&#1575;&#1583; &#1604;&#1604;&#1593;&#1608;&#1583;&#1577; &#1575;&#1604;&#1609; &#1576;&#1575;&#1585;&#1610;&#1607;.</p> <p dir=\"rtl\">&#1608;&#1601;&#1610; &#1575;&#1604;&#1578;&#1575;&#1587;&#1593; &#1605;&#1606; &#1588;&#1607;&#1585; &#1578;&#1588;&#1585;&#1610;&#1606; &#1575;&#1604;&#1575;&#1608;&#1604; &#1605;&#1606; &#1575;&#1604;&#1593;&#1575;&#1605; &#1777;&#1785;&#1784;&#1634; &#1592;&#1607;&#1585;&#1578; &#1604;&#1607; &#1585;&#1572;&#1610;&#1577; &#1578;&#1606;&#1576;&#1572;&#1607; &#1576;&#1587;&#1575;&#1593;&#1577; &#1575;&#1606;&#1578;&#1602;&#1575;&#1604;&#1607; &#1575;&#1604;&#1609; &#1580;&#1608;&#1575;&#1585; &#1585;&#1576;&#1617;&#1607;&#1548; &#1576;&#1604; &#1575;&#1606;&#1607; &#1593;&#1585;&#1601; &#1575;&#1604;&#1578;&#1575;&#1585;&#1610;&#1582; &#1575;&#1584; &#1602;&#1575;&#1604; &#1604;&#1610;: &quot;&#1571;&#1606;&#1575; &#1575;&#1593;&#1585;&#1601; &#1575;&#1604;&#1578;&#1575;&#1585;&#1610;&#1582; &#1575;&#1604;&#1584;&#1610; &#1587;&#1571;&#1605;&#1608;&#1578; &#1601;&#1610;&#1607;.. &#1608;&#1575;&#1593;&#1585;&#1601; &#1603;&#1604;&#1617; &#1575;&#1604;&#1578;&#1608;&#1575;&#1585;&#1610;&#1582; ..&quot;</p> <p dir=\"rtl\">&#1608;&#1605;&#1606;&#1584; &#1584;&#1604;&#1603; &#1575;&#1604;&#1581;&#1610;&#1606; &#1578;&#1593;&#1575;&#1592;&#1605;&#1578; &#1585;&#1594;&#1576;&#1578;&#1607; &#1601;&#1610; &#1575;&#1604;&#1578;&#1608;&#1581;&#1617;&#1583; &#1576;&#1575;&#1604;&#1604;&#1607; &#1608;&#1575;&#1585;&#1575;&#1583; &#1606;&#1588;&#1585; &#1587;&#1610;&#1585;&#1578;&#1607; &#1601;&#1610; &#1575;&#1604;&#1575;&#1585;&#1590;:&nbsp;&nbsp;&nbsp;&nbsp; &quot;&#1571;&#1585;&#1610;&#1583; &#1571;&#1606; &#1601;&#1610; &#1575;&#1604;&#1571;&#1585;&#1590; &#1575;&#1606;&#1588;&#1585; &#1587;&#1610;&#1585;&#1578;&#1610; &#1608;&#1575;&#1591;&#1608;&#1601; &#1581;&#1604;&#1602;&#1575;&#1578; &#1575;&#1604;&#1576;&#1610;&#1608;&#1578; &#1608;&#1575;&#1588;&#1604;&#1581; &#1608;&#1585;&#1583;&#1575;&#1611;....&quot;</p> <p dir=\"rtl\">&nbsp;</p> <p dir=\"rtl\"><strong>&#1575;&#1604;&#1587;&#1610;&#1585;&#1577; &#1575;&#1604;&#1575;&#1603;&#1575;&#1583;&#1610;&#1605;&#1610;&#1577; &#1608;&#1575;&#1604;&#1605;&#1607;&#1606;&#1610;&#1577;:</strong></p> <p dir=\"rtl\">&#1606;&#1575;&#1604; &#1575;&#1604;&#1593;&#1575;&#1605; &#1777;&#1785;&#1784;&#1777; &#1588;&#1607;&#1575;&#1583;&#1577; &#1575;&#1604;&#1576;&#1603;&#1575;&#1604;&#1608;&#1585;&#1610;&#1575; &#1575;&#1604;&#1602;&#1587;&#1605; &#1575;&#1604;&#1579;&#1575;&#1606;&#1610; &#1576;&#1575;&#1605;&#1578;&#1610;&#1575;&#1586; &#1608;&#1575;&#1604;&#1578;&#1581;&#1602; &#1576;&#1603;&#1604;&#1610;&#1577; &#1575;&#1604;&#1591;&#1576;&#1617; &#1601;&#1610; &#1580;&#1575;&#1605;&#1593;&#1577; &#1575;&#1604;&#1602;&#1583;&#1610;&#1587; &#1610;&#1608;&#1587;&#1601; &#1575;&#1604;&#1610;&#1587;&#1608;&#1593;&#1610;&#1577; &#1604;&#1578;&#1581;&#1602;&#1610;&#1602; &#1575;&#1604;&#1607;&#1583;&#1601; &#1575;&#1604;&#1584;&#1610; &#1587;&#1593;&#1609; &#1575;&#1604;&#1610;&#1607; &#1605;&#1606;&#1584; &#1581;&#1583;&#1575;&#1579;&#1577; &#1587;&#1606;&#1607; &#1608;&#1607;&#1608; &#1575;&#1606; &#1610;&#1603;&#1608;&#1606; &#1591;&#1576;&#1610;&#1576;&#1575;&#1611; &#1610;&#1587;&#1575;&#1593;&#1583; &#1575;&#1604;&#1605;&#1587;&#1575;&#1603;&#1610;&#1606; &#1608;&#1575;&#1604;&#1601;&#1602;&#1585;&#1575;&#1569; &#1601;&#1603;&#1575;&#1606; &#1605;&#1575; &#1585;&#1594;&#1576;&#1607; &#1608;&#1575;&#1581;&#1585;&#1586; &#1606;&#1580;&#1575;&#1581;&#1575;&#1611; &#1576;&#1575;&#1607;&#1585;&#1575;&#1611; &#1601;&#1610; &#1605;&#1576;&#1575;&#1585;&#1575;&#1577; &#1575;&#1604;&#1583;&#1582;&#1608;&#1604; &#1608;&#1603;&#1575;&#1606; &#1605;&#1579;&#1575;&#1604;&#1575;&#1611; &#1610;&#1581;&#1578;&#1584;&#1609; &#1601;&#1610; &#1583;&#1605;&#1575;&#1579;&#1577; &#1575;&#1604;&#1582;&#1604;&#1602; &#1608;&#1575;&#1604;&#1578;&#1608;&#1575;&#1590;&#1593; &#1608;&#1575;&#1604;&#1575;&#1606;&#1587;&#1575;&#1606;&#1610;&#1577; &#1608;&#1591;&#1608;&#1604; &#1575;&#1604;&#1575;&#1606;&#1575;&#1577; &#1608;&#1575;&#1604;&#1589;&#1576;&#1585; &#1608;&#1587;&#1593;&#1577; &#1575;&#1604;&#1593;&#1602;&#1604; &#1608;&#1575;&#1604;&#1602;&#1604;&#1576;.</p> <p dir=\"rtl\">&#1608;&#1601;&#1610; &#1575;&#1604;&#1593;&#1575;&#1605; &#1777;&#1785;&#1784;&#1784; &#1581;&#1575;&#1586; &#1573;&#1610;&#1604;&#1610; &#1593;&#1604;&#1609; &#1588;&#1607;&#1575;&#1583;&#1577; &#1601;&#1610; &#1575;&#1604;&#1591;&#1576;&#1617; &#1575;&#1604;&#1593;&#1575;&#1605; &#1608;&#1578;&#1601;&#1608;&#1602; &#1601;&#1610; &#1605;&#1576;&#1575;&#1585;&#1575;&#1577; &#1575;&#1604;&#1578;&#1582;&#1589;&#1589;&#1548; &#1604;&#1603;&#1606; &#1584;&#1604;&#1603; &#1604;&#1605; &#1610;&#1579;&#1606;&#1607; &#1593;&#1606; &#1575;&#1604;&#1578;&#1602;&#1585;&#1576; &#1605;&#1606; &#1575;&#1604;&#1604;&#1607; &#1601;&#1603;&#1575;&#1606; &#1589;&#1608;&#1578; &#1601;&#1610; &#1583;&#1575;&#1582;&#1604;&#1607; &#1610;&#1602;&#1608;&#1610;&#1607; &#1608;&#1610;&#1588;&#1583;&#1617;&#1583; &#1593;&#1586;&#1610;&#1605;&#1578;&#1607;&#1548; &#1608;&#1610;&#1587;&#1610;&#1617;&#1585;&#1607; &#1601;&#1610; &#1591;&#1585;&#1610;&#1602; &#1575;&#1604;&#1585;&#1576;&#1548; &#1601;&#1605;&#1575; &#1603;&#1575;&#1606; &#1610;&#1588;&#1593;&#1585; &#1576;&#1575;&#1606; &#1607;&#1584;&#1607; &#1575;&#1604;&#1575;&#1585;&#1590; &#1575;&#1585;&#1590;&#1607;: </p> <p dir=\"rtl\">&quot;&#1575;&#1604;&#1589;&#1608;&#1578; &#1575;&#1604;&#1584;&#1610; &#1601;&#1610; &#1583;&#1575;&#1582;&#1604;&#1610; &#1610;&#1602;&#1608;&#1604; &#1604;&#1610; &#1604;&#1575; &#1578;&#1582;&#1601; &#1608;&#1610;&#1588;&#1583;&#1617;&#1583; &#1593;&#1586;&#1610;&#1605;&#1578;&#1610;&#1548; &#1607;&#1604; &#1571;&#1594;&#1604;&#1602; &#1593;&#1604;&#1610;&#1607;&#1567; &#1607;&#1604; &#1575;&#1578;&#1606;&#1575;&#1587;&#1575;&#1607;&#1567; &#1571;&#1604;&#1575; &#1575;&#1587;&#1605;&#1593;&#1607; &#1610;&#1591;&#1585;&#1602; &#1605;&#1593; &#1575;&#1604;&#1602;&#1604;&#1576; &#1575;&#1604;&#1584;&#1610; &#1576;&#1610;&#1606; &#1590;&#1604;&#1608;&#1593;&#1610;&#1567; &#1601;&#1610; &#1575;&#1604;&#1581;&#1602;&#1610;&#1602;&#1577; &#1576;&#1604;&#1609;. &#1601;&#1604;&#1575; &#1607;&#1584;&#1607; &#1575;&#1604;&#1575;&#1585;&#1590; &#1571;&#1585;&#1590;&#1610; &#1608;&#1604;&#1575; &#1575;&#1604;&#1610;&#1571;&#1587; &#1608;&#1575;&#1604;&#1605;&#1585;&#1575;&#1585;&#1577; &#1605;&#1606; &#1606;&#1587;&#1610;&#1580;&#1610; &#1601;&#1604;&#1578;&#1603;&#1606; &#1605;&#1588;&#1610;&#1574;&#1577; &#1575;&#1604;&#1604;&#1607;...&quot;</p> <p dir=\"rtl\">&#1604;&#1605; &#1610;&#1606;&#1587;&#1609; &#1610;&#1608;&#1605;&#1575;&#1611; &#1585;&#1601;&#1575;&#1602;&#1607; &#1608;&#1571;&#1589;&#1583;&#1602;&#1575;&#1569;&#1607; &#1575;&#1604;&#1584;&#1610;&#1606; &#1603;&#1575;&#1606;&#1608;&#1575; &#1610;&#1571;&#1578;&#1608;&#1606; &#1575;&#1604;&#1610;&#1607; &#1591;&#1575;&#1604;&#1576;&#1610;&#1606; &#1575;&#1604;&#1593;&#1608;&#1606; &#1608;&#1575;&#1604;&#1605;&#1587;&#1575;&#1593;&#1583;&#1577; &#1608;&#1604;&#1605; &#1610;&#1603;&#1606; &#1604;&#1610;&#1585;&#1583; &#1575;&#1581;&#1583;&#1607;&#1605; &#1582;&#1575;&#1574;&#1576;&#1575;&#1611; &#1576;&#1604; &#1603;&#1575;&#1606; &#1610;&#1593;&#1605;&#1604; &#1605;&#1575; &#1576;&#1608;&#1587;&#1593;&#1607; &#1604;&#1605;&#1587;&#1575;&#1593;&#1583;&#1578;&#1607;&#1605; &#1601;&#1610; &#1575;&#1604;&#1583;&#1585;&#1587; &#1608;&#1575;&#1604;&#1578;&#1605;&#1581;&#1610;&#1589;&#1548; &#1608;&#1604;&#1603;&#1604; &#1587;&#1572;&#1575;&#1604; &#1604;&#1583;&#1610;&#1607; &#1580;&#1608;&#1575;&#1576;.</p> <p dir=\"rtl\">&nbsp;&#1589;&#1583;&#1585;&#1578; &#1604;&#1607; &#1583;&#1585;&#1575;&#1587;&#1575;&#1578; &#1603;&#1579;&#1610;&#1585;&#1577; &#1608;&#1606;&#1588;&#1585;&#1578; &#1601;&#1610; &#1605;&#1580;&#1604;&#1575;&#1578; &#1591;&#1576;&#1610;&#1577; &#1593;&#1575;&#1604;&#1605;&#1610;&#1577; &#1608;&#1607;&#1584;&#1575; &#1603;&#1604;&#1607; &#1604;&#1605; &#1610;&#1605;&#1606;&#1593;&#1607; &#1605;&#1606; &#1605;&#1606;&#1575;&#1580;&#1575;&#1577; &#1585;&#1576;&#1617;&#1607; &#1608;&#1575;&#1604;&#1578;&#1602;&#1585;&#1576; &#1605;&#1606;&#1607;.</p> <p dir=\"rtl\">&#1608;&#1601;&#1610; &#1575;&#1604;&#1587;&#1606;&#1577; &#1575;&#1604;&#1578;&#1575;&#1604;&#1610;&#1577; &#1578;&#1601;&#1608;&#1602; &#1608;&#1606;&#1575;&#1604; &#1575;&#1604;&#1605;&#1585;&#1578;&#1576;&#1577; &#1575;&#1604;&#1575;&#1608;&#1604;&#1609; &#1601;&#1610; &#1575;&#1604;&#1591;&#1576;&#1617; &#1575;&#1604;&#1583;&#1575;&#1582;&#1604;&#1610; &#1608;&#1575;&#1593;&#1591;&#1610;&#1578; &#1604;&#1607; &#1601;&#1585;&#1589;&#1577; &#1575;&#1582;&#1578;&#1610;&#1575;&#1585; &#1575;&#1604;&#1575;&#1582;&#1578;&#1589;&#1575;&#1589; &#1575;&#1604;&#1584;&#1610; &#1610;&#1585;&#1610;&#1583;&#1607; &#1602;&#1576;&#1604; &#1575;&#1610; &#1605;&#1606; &#1585;&#1601;&#1575;&#1602;&#1607;&#1548; &#1608;&#1603;&#1575;&#1606; &#1601;&#1610; &#1602;&#1585;&#1575;&#1585;&#1577; &#1606;&#1601;&#1587;&#1607; &#1610;&#1578;&#1605;&#1606;&#1609; &#1571;&#1606; &#1610;&#1578;&#1582;&#1589;&#1589; &#1601;&#1610; &#1580;&#1585;&#1575;&#1581;&#1577; &#1575;&#1604;&#1602;&#1604;&#1576;&#1548; &#1608;&#1604;&#1603;&#1606;&#1607; &#1593;&#1583;&#1604; &#1593;&#1606; &#1584;&#1604;&#1603; &#1608;&#1601;&#1590;&#1617;&#1604; &#1575;&#1604;&#1578;&#1582;&#1589;&#1589; &#1601;&#1610; &#1591;&#1576;&#1617; &#1575;&#1604;&#1602;&#1604;&#1576; &#1608;&#1575;&#1604;&#1578;&#1605;&#1610;&#1610;&#1604; &#1604;&#1575;&#1606;&#1617;&#1607; &#1603;&#1575;&#1606; &#1610;&#1593;&#1585;&#1601; &#1575;&#1604;&#1587;&#1575;&#1593;&#1577; &#1608;&#1610;&#1593;&#1585;&#1601; &#1575;&#1606;&#1607; &#1604;&#1606; &#1610;&#1603;&#1608;&#1606; &#1576;&#1575;&#1605;&#1603;&#1575;&#1606;&#1607; &#1605;&#1605;&#1575;&#1585;&#1587;&#1577; &#1580;&#1585;&#1575;&#1581;&#1577; &#1575;&#1604;&#1602;&#1604;&#1576; &#1575;&#1584; &#1610;&#1603;&#1608;&#1606; &#1602;&#1583; &#1589;&#1593;&#1583; &#1575;&#1604;&#1609; &#1575;&#1604;&#1587;&#1605;&#1575;&#1569;.&nbsp;</p> <p dir=\"rtl\">&nbsp;&#1602;&#1575;&#1604; &#1604;&#1610; &#1575;&#1606;&#1607; &#1587;&#1608;&#1601; &#1610;&#1582;&#1578;&#1575;&#1585; &#1591;&#1576;&#1617; &#1575;&#1604;&#1602;&#1604;&#1576; &#1593;&#1608;&#1590;&#1575; &#1593;&#1606; &#1580;&#1585;&#1575;&#1581;&#1577; &#1575;&#1604;&#1602;&#1604;&#1576; &#1575;&#1604;&#1578;&#1610; &#1603;&#1575;&#1606; &#1610;&#1606;&#1608;&#1610; &#1575;&#1582;&#1578;&#1610;&#1575;&#1585;&#1607;&#1575;. &#1601;&#1587;&#1571;&#1604;&#1578;&#1607; &#1604;&#1605;&#1575;&#1584;&#1575; &#1607;&#1584;&#1575; &#1575;&#1604;&#1578;&#1576;&#1583;&#1610;&#1604;. &#1571;&#1580;&#1575;&#1576;&#1606;&#1610;: &quot;&#1601;&#1604;&#1610;&#1578;&#1582;&#1589;&#1589; &#1586;&#1605;&#1610;&#1604;&#1610; &#1606;&#1575;&#1592;&#1605; &#1576;&#1575;&#1604;&#1580;&#1585;&#1575;&#1581;&#1577; &#1604;&#1571;&#1606;&#1606;&#1610; &#1604;&#1606; &#1571;&#1578;&#1605;&#1603;&#1606; &#1605;&#1606; &#1605;&#1605;&#1575;&#1585;&#1587;&#1577; &#1580;&#1585;&#1575;&#1581;&#1577; &#1575;&#1604;&#1602;&#1604;&#1576; &#1604;&#1571;&#1606;&#1606;&#1610; &#1604;&#1606; &#1571;&#1576;&#1602;&#1609; &#1591;&#1608;&#1610;&#1604;&#1575; &#1607;&#1606;&#1575; &#1593;&#1604;&#1609; &#1575;&#1604;&#1571;&#1585;&#1590;&quot;.</p> <p dir=\"rtl\">&nbsp;&nbsp; &#1608;&#1571;&#1579;&#1606;&#1575;&#1569; &#1605;&#1578;&#1575;&#1576;&#1593;&#1578;&#1607; &#1578;&#1582;&#1589;&#1589;&#1607; &#1601;&#1610; &#1591;&#1576;&#1617; &#1575;&#1604;&#1602;&#1604;&#1576;&#1548; &#1591;&#1604;&#1576; &#1605;&#1606; &#1586;&#1605;&#1610;&#1604;&#1607; &#1575;&#1604;&#1570;&#1582;&#1585; &#1589;&#1604;&#1575;&#1581; &#1571;&#1606; &#1610;&#1578;&#1582;&#1589;&#1589; &#1601;&#1610; &#1606;&#1601;&#1587; &#1575;&#1582;&#1578;&#1589;&#1575;&#1589;&#1607; &#1608;&#1588;&#1580;&#1593;&#1607; &#1593;&#1604;&#1609; &#1584;&#1604;&#1603;. &#1601;&#1587;&#1571;&#1604;&#1578;&#1607; &#1604;&#1605;&#1575;&#1584;&#1575; &#1578;&#1591;&#1604;&#1576; &#1605;&#1606;&#1607; &#1584;&#1604;&#1603;&#1548; &#1571;&#1604;&#1610;&#1587; &#1605;&#1606; &#1575;&#1604;&#1571;&#1601;&#1590;&#1604; &#1571;&#1606; &#1610;&#1578;&#1582;&#1589;&#1589; &#1601;&#1610; &#1601;&#1585;&#1593; &#1570;&#1582;&#1585; &#1604;&#1603;&#1610; &#1610;&#1578;&#1603;&#1575;&#1605;&#1604; &#1578;&#1582;&#1589;&#1589;&#1603;&#1605;&#1575;&#1548; &#1601;&#1571;&#1580;&#1575;&#1576;&#1606;&#1610; &quot;&#1587;&#1608;&#1601; &#1571;&#1587;&#1604;&#1605;&#1607; &#1605;&#1585;&#1590;&#1575;&#1610; &#1605;&#1606; &#1576;&#1593;&#1583;&#1610; &#1604;&#1571;&#1606;&#1606;&#1610; &#1604;&#1606; &#1571;&#1576;&#1602;&#1609; &#1591;&#1608;&#1610;&#1604;&#1575; &#1607;&#1606;&#1575; &#1593;&#1604;&#1609; &#1575;&#1604;&#1571;&#1585;&#1590; .&#1607;&#1584;&#1607; &#1605;&#1588;&#1610;&#1574;&#1577; &#1575;&#1604;&#1604;&#1607; &#1571;&#1606; &#1571;&#1603;&#1608;&#1606; &#1587;&#1605;&#1575;&#1608;&#1610;&#1575;&quot;.</p> <p dir=\"rtl\">&#1591;&#1604;&#1576; &#1605;&#1606;&#1610; &#1575;&#1606; &#1571;&#1606;&#1603;&#1576; &#1593;&#1604;&#1609; &#1603;&#1578;&#1575;&#1576;&#1577; &#1587;&#1610;&#1585;&#1577; &#1581;&#1610;&#1575;&#1578;&#1607; &#1603;&#1605;&#1575; &#1575;&#1593;&#1604;&#1605;&#1606;&#1610; &#1576;&#1571;&#1606;&#1617; &#1575;&#1604;&#1604;&#1607; &#1610;&#1591;&#1608;&#1604; &#1604;&#1607; &#1581;&#1610;&#1575;&#1578;&#1607; &#1581;&#1578;&#1609; &#1610;&#1603;&#1605;&#1604; &#1603;&#1578;&#1575;&#1576;&#1575;&#1578;&#1607;:&nbsp; &quot;&#1575;&#1604;&#1604;&#1607; &#1593;&#1605; &#1610;&#1591;&#1608;&#1604; &#1604;&#1610; &#1593;&#1605;&#1585;&#1610; &#1581;&#1578;&#1609; &#1575;&#1603;&#1605;&#1604; &#1603;&#1578;&#1575;&#1576;&#1575;&#1578;&#1610; &#1608;&#1571;&#1590;&#1575;&#1601; &#1576;&#1571;&#1606;&#1607; &#1610;&#1593;&#1585;&#1601; &#1605;&#1588;&#1610;&#1574;&#1577; &#1575;&#1604;&#1604;&#1607; &#1576;&#1571;&#1606; &#1610;&#1603;&#1608;&#1606; &#1587;&#1605;&#1575;&#1608;&#1610;&#1575;&#1611;..&quot;&nbsp;</p> <p dir=\"rtl\">&#1571;&#1606;&#1607;&#1609; &#1593;&#1604;&#1608;&#1605;&#1607; &#1601;&#1610; &#1604;&#1576;&#1606;&#1575;&#1606; &#1608;&#1587;&#1575;&#1601;&#1585; &#1575;&#1604;&#1609; &#1601;&#1585;&#1606;&#1587;&#1575; &#1608;&#1575;&#1604;&#1578;&#1581;&#1602; &#1576;&#1580;&#1575;&#1605;&#1593;&#1577; &#1576;&#1610;&#1575;&#1585; &#1608;&#1605;&#1575;&#1585;&#1610; &#1603;&#1608;&#1585;&#1610; &#1608;&#1606;&#1575;&#1604; &#1587;&#1606;&#1577; &#1633;&#1785;&#1785;&#1635;&#1588;&#1607;&#1575;&#1583;&#1577; &#1575;&#1582;&#1578;&#1589;&#1575;&#1589; &#1601;&#1610; &#1575;&#1604;&#1578;&#1589;&#1608;&#1610;&#1585; &#1575;&#1604;&#1589;&#1608;&#1578;&#1610; &#1604;&#1604;&#1602;&#1604;&#1576; &#1576;&#1578;&#1601;&#1608;&#1602; &#1576;&#1575;&#1607;&#1585;&#1548; &#1608;&#1581;&#1575;&#1586; &#1593;&#1604;&#1609; &#1604;&#1602;&#1576; &#1591;&#1576;&#1610;&#1576; &#1575;&#1580;&#1606;&#1576;&#1610; &#1605;&#1602;&#1610;&#1605; &#1601;&#1610; &#1605;&#1587;&#1578;&#1588;&#1601;&#1610;&#1575;&#1578; &#1576;&#1575;&#1585;&#1610;&#1587; &#1608;&#1578;&#1607;&#1575;&#1601;&#1578;&#1578; &#1575;&#1583;&#1575;&#1585;&#1575;&#1578; &#1603;&#1576;&#1585;&#1609; &#1575;&#1604;&#1605;&#1587;&#1578;&#1588;&#1601;&#1610;&#1575;&#1578; &#1601;&#1610; &#1576;&#1575;&#1585;&#1610;&#1587; &#1604;&#1604;&#1578;&#1593;&#1575;&#1608;&#1606; &#1605;&#1593;&#1607;.</p> <p dir=\"rtl\">&#1575;&#1593;&#1583;&#1617; &#1583;&#1585;&#1575;&#1587;&#1575;&#1578; &#1608;&#1575;&#1576;&#1581;&#1575;&#1579; &#1605;&#1582;&#1578;&#1604;&#1601;&#1577; &#1601;&#1610; &#1605;&#1580;&#1575;&#1604; &#1575;&#1582;&#1578;&#1589;&#1575;&#1589;&#1607; &#1601;&#1610; &#1604;&#1576;&#1606;&#1575;&#1606; &#1608;&#1575;&#1604;&#1582;&#1575;&#1585;&#1580; &#1603;&#1605;&#1575; &#1591;&#1604;&#1576; &#1605;&#1606;&#1607; &#1575;&#1593;&#1591;&#1575;&#1569; &#1605;&#1581;&#1575;&#1590;&#1585;&#1575;&#1578; &#1601;&#1610; &#1575;&#1581;&#1583;&#1609; &#1575;&#1604;&#1580;&#1575;&#1605;&#1593;&#1575;&#1578; &#1575;&#1604;&#1603;&#1576;&#1585;&#1609; &#1601;&#1610; &#1575;&#1605;&#1610;&#1585;&#1603;&#1575;.</p> <p dir=\"rtl\">&#1608;&#1601;&#1610; &#1575;&#1604;&#1593;&#1575;&#1605; &#1633;&#1785;&#1785;&#1636; &#1606;&#1575;&#1604; &#1588;&#1607;&#1575;&#1583;&#1577; &#1575;&#1604;&#1593;&#1604;&#1608;&#1605; &#1575;&#1604;&#1606;&#1592;&#1585;&#1610;&#1577; &#1608;&#1575;&#1604;&#1578;&#1591;&#1576;&#1610;&#1602;&#1610;&#1577; &#1604;&#1578;&#1605;&#1610;&#1610;&#1604; &#1575;&#1604;&#1602;&#1604;&#1576; &#1608;&#1578;&#1608;&#1587;&#1610;&#1593; &#1575;&#1604;&#1588;&#1585;&#1575;&#1610;&#1610;&#1606; &#1608;&#1593;&#1604;&#1609; &#1588;&#1607;&#1575;&#1583;&#1577; &#1601;&#1610; &#1575;&#1604;&#1578;&#1589;&#1608;&#1610;&#1585; &#1575;&#1604;&#1588;&#1593;&#1575;&#1593;&#1610; &#1604;&#1604;&#1605;&#1593;&#1575;&#1604;&#1580;&#1577; &#1575;&#1604;&#1583;&#1575;&#1582;&#1604;&#1610;&#1577; &#1575;&#1604;&#1605;&#1590;&#1575;&#1569;&#1577; &#1604;&#1571;&#1605;&#1585;&#1575;&#1590; &#1575;&#1604;&#1588;&#1585;&#1575;&#1610;&#1610;&#1606;. &#1603;&#1605;&#1575; &#1581;&#1589;&#1604; &#1593;&#1604;&#1609; &#1588;&#1607;&#1575;&#1583;&#1577; &#1601;&#1610; &#1575;&#1604;&#1593;&#1604;&#1608;&#1605; &#1575;&#1604;&#1573;&#1581;&#1589;&#1575;&#1574;&#1610;&#1577; &#1575;&#1604;&#1578;&#1591;&#1576;&#1610;&#1602;&#1610;&#1577; &#1601;&#1610; &#1605;&#1580;&#1575;&#1604; &#1575;&#1604;&#1591;&#1576; &#1608;&#1575;&#1604;&#1571;&#1576;&#1581;&#1575;&#1579; &#1575;&#1604;&#1591;&#1576;&#1610;&#1577;&#1548; &#1608;&#1593;&#1604;&#1609; &#1588;&#1607;&#1575;&#1583;&#1577; &#1601;&#1610; &#1593;&#1604;&#1608;&#1605; &#1575;&#1604;&#1575;&#1581;&#1610;&#1575;&#1569; &#1605;&#1606; &#1580;&#1575;&#1605;&#1593;&#1577; &#1576;&#1608;&#1604; &#1587;&#1576;&#1575;&#1578;&#1610;&#1610;&#1607; &#1601;&#1585;&#1606;&#1587;&#1575;.</p> <p dir=\"rtl\">&#1608;&#1601;&#1610; &#1606;&#1607;&#1575;&#1610;&#1577; &#1575;&#1604;&#1593;&#1575;&#1605; &#1633;&#1785;&#1785;&#1636; &#1581;&#1575;&#1586; &#1588;&#1607;&#1575;&#1583;&#1577; &#1575;&#1582;&#1578;&#1589;&#1575;&#1589; &#1601;&#1610; &#1591;&#1576;&#1617; &#1575;&#1604;&#1602;&#1604;&#1576; &#1608;&#1575;&#1604;&#1578;&#1605;&#1610;&#1610;&#1604; &#1605;&#1606; &#1580;&#1575;&#1605;&#1593;&#1577; &#1575;&#1604;&#1602;&#1583;&#1610;&#1587; &#1610;&#1608;&#1587;&#1601; &#1575;&#1604;&#1610;&#1587;&#1608;&#1593;&#1610;&#1577; &#1608;&#1584;&#1604;&#1603; &#1576;&#1593;&#1583; &#1571;&#1606; &#1578;&#1602;&#1583;&#1605; &#1576;&#1571;&#1591;&#1585;&#1608;&#1581;&#1577; &#1578;&#1606;&#1575;&#1608;&#1604; &#1601;&#1610;&#1607;&#1575; &#1575;&#1604;&#1605;&#1602;&#1575;&#1585;&#1606;&#1577; &#1601;&#1610; &#1575;&#1604;&#1605;&#1593;&#1575;&#1604;&#1580;&#1577; &#1576;&#1610;&#1606; &#1575;&#1580;&#1585;&#1575;&#1569; &#1575;&#1604;&#1580;&#1585;&#1575;&#1581;&#1577; &#1575;&#1608; &#1575;&#1604;&#1578;&#1605;&#1610;&#1610;&#1604; &#1608;&#1575;&#1604;&#1578;&#1608;&#1587;&#1610;&#1593; &#1601;&#1610; &#1581;&#1575;&#1604;&#1575;&#1578; &#1575;&#1604;&#1575;&#1606;&#1587;&#1583;&#1575;&#1583; &#1575;&#1604;&#1605;&#1578;&#1593;&#1583;&#1583; &#1575;&#1604;&#1575;&#1591;&#1585;&#1575;&#1601;.</p> <p dir=\"rtl\">&#1578;&#1593;&#1575;&#1602;&#1583; &#1605;&#1593; &#1605;&#1587;&#1578;&#1588;&#1601;&#1609; &#1575;&#1604;&#1602;&#1583;&#1610;&#1587; &#1580;&#1575;&#1608;&#1585;&#1580;&#1610;&#1608;&#1587; &#1601;&#1610; &#1576;&#1610;&#1585;&#1608;&#1578; &#1608;&#1593;&#1610;&#1606; &#1576;&#1589;&#1601;&#1577; &#1591;&#1576;&#1610;&#1576; &#1602;&#1604;&#1576; &#1575;&#1582;&#1589;&#1575;&#1574;&#1610; &#1605;&#1578;&#1601;&#1585;&#1594; &#1601;&#1610; &#1606;&#1607;&#1575;&#1610;&#1577; &#1575;&#1604;&#1593;&#1575;&#1605; &#1633;&#1785;&#1785;&#1636; &#1601;&#1604;&#1605;&#1593; &#1575;&#1587;&#1605;&#1607; &#1593;&#1575;&#1604;&#1610;&#1575;&#1611;.</p> <p dir=\"rtl\">&#1582;&#1589;&#1589; &#1576;&#1593;&#1590;&#1575;&#1611; &#1605;&#1606; &#1608;&#1602;&#1578;&#1607; &#1604;&#1605;&#1593;&#1575;&#1604;&#1580;&#1577; &#1575;&#1604;&#1605;&#1585;&#1590;&#1609; &#1575;&#1604;&#1605;&#1593;&#1583;&#1605;&#1610;&#1606; &#1601;&#1610; &#1603;&#1604; &#1605;&#1606; &#1605;&#1587;&#1578;&#1608;&#1589;&#1601; &#1575;&#1604;&#1587;&#1610;&#1583;&#1577; &#1604;&#1604;&#1585;&#1608;&#1605; &#1575;&#1604;&#1575;&#1585;&#1579;&#1608;&#1584;&#1603;&#1587; &#1608;&#1605;&#1587;&#1578;&#1608;&#1589;&#1601; &#1605;&#1591;&#1585;&#1575;&#1606;&#1610;&#1577; &#1576;&#1610;&#1585;&#1608;&#1578; &#1575;&#1604;&#1605;&#1575;&#1585;&#1608;&#1606;&#1610;&#1577; &#1601;&#1610; &#1605;&#1606;&#1591;&#1602;&#1577; &#1575;&#1604;&#1575;&#1588;&#1585;&#1601;&#1610;&#1577;. </p> <p dir=\"rtl\">&#1578;&#1601;&#1608;&#1602; &#1601;&#1610; &#1575;&#1604;&#1583;&#1585;&#1575;&#1587;&#1575;&#1578; &#1603;&#1575;&#1601;&#1577; &#1575;&#1604;&#1578;&#1610; &#1578;&#1575;&#1576;&#1593;&#1607;&#1575; &#1608;&#1603;&#1575;&#1606; &#1605;&#1581;&#1591;&#1617; &#1575;&#1606;&#1592;&#1575;&#1585; &#1608;&#1578;&#1602;&#1583;&#1610;&#1585; &#1605;&#1606; &#1575;&#1587;&#1575;&#1578;&#1584;&#1578;&#1607; &#1608;&#1586;&#1605;&#1604;&#1575;&#1574;&#1607;&#1548; &#1608;&#1593;&#1610;&#1606; &#1601;&#1610; &#1605;&#1587;&#1578;&#1588;&#1601;&#1609; &#1601;&#1610; &#1601;&#1585;&#1606;&#1587;&#1575; &#1608;&#1576;&#1589;&#1608;&#1585;&#1577; &#1575;&#1587;&#1578;&#1579;&#1606;&#1575;&#1574;&#1610;&#1577; &#1576;&#1589;&#1601;&#1577; &#1585;&#1574;&#1610;&#1587; &#1605;&#1593;&#1575;&#1610;&#1606;&#1577; &#1576;&#1605;&#1608;&#1580;&#1576; &#1605;&#1585;&#1587;&#1608;&#1605; &#1589;&#1575;&#1583;&#1585; &#1593;&#1606; &#1608;&#1586;&#1575;&#1585;&#1577; &#1575;&#1604;&#1578;&#1593;&#1604;&#1610;&#1605; &#1575;&#1604;&#1593;&#1575;&#1604;&#1610;.</p> <p dir=\"rtl\">&#1605;&#1575;&#1585;&#1587; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610; &#1605;&#1607;&#1606;&#1578;&#1607; &#1575;&#1604;&#1573;&#1606;&#1587;&#1575;&#1606;&#1610;&#1577; &#1576;&#1588;&#1594;&#1601; &#1608;&#1605;&#1607;&#1575;&#1585;&#1577; &#1608;&#1581;&#1602;&#1602; &#1585;&#1594;&#1576;&#1578;&#1607; &#1576;&#1582;&#1583;&#1605;&#1577; &#1575;&#1604;&#1605;&#1585;&#1590;&#1609; &#1575;&#1604;&#1605;&#1581;&#1578;&#1575;&#1580;&#1610;&#1606; &#1608;&#1604;&#1605; &#1610;&#1603;&#1606; &#1575;&#1604;&#1607;&#1583;&#1601; &#1605;&#1606; &#1605;&#1607;&#1606;&#1578;&#1607; &#1575;&#1604;&#1605;&#1575;&#1604; &#1608;&#1575;&#1604;&#1580;&#1575;&#1607; &#1608;&#1604;&#1603;&#1606; &#1582;&#1583;&#1605;&#1577; &#1575;&#1604;&#1575;&#1606;&#1587;&#1575;&#1606;&#1610;&#1577; &#1575;&#1604;&#1605;&#1593;&#1584;&#1576;&#1577; &#1608;&#1578;&#1582;&#1601;&#1610;&#1601; &#1575;&#1604;&#1570;&#1604;&#1575;&#1605; &#1593;&#1606; &#1603;&#1575;&#1607;&#1604; &#1575;&#1604;&#1605;&#1585;&#1590;&#1609; &#1608;&#1607;&#1584;&#1575; &#1605;&#1575; &#1603;&#1575;&#1606; &#1610;&#1583;&#1601;&#1593;&#1607; &#1603;&#1604; &#1610;&#1608;&#1605; &#1604;&#1604;&#1606;&#1607;&#1608;&#1590; &#1576;&#1575;&#1603;&#1585;&#1575;&#1611; &#1605;&#1587;&#1575;&#1576;&#1602;&#1575;&#1611; &#1575;&#1604;&#1586;&#1605;&#1606; &#1608;&#1575;&#1604;&#1575;&#1610;&#1575;&#1605; &#1575;&#1604;&#1578;&#1610; &#1610;&#1593;&#1585;&#1601; &#1575;&#1606;&#1607;&#1575; &#1575;&#1589;&#1576;&#1581;&#1578; &#1605;&#1593;&#1583;&#1608;&#1583;&#1577; &#1604;&#1605;&#1587;&#1575;&#1593;&#1583;&#1577; &#1575;&#1604;&#1590;&#1593;&#1610;&#1601; &#1608;&#1575;&#1604;&#1605;&#1593;&#1583;&#1605; &#1608;&#1575;&#1604;&#1605;&#1581;&#1578;&#1575;&#1580; .</p> <p dir=\"rtl\">&nbsp;&#1610;&#1591;&#1576;&#1576;&#1548; &#1610;&#1589;&#1601; &#1575;&#1604;&#1583;&#1608;&#1575;&#1569;&#1548; &#1608;&#1610;&#1602;&#1583;&#1605; &#1604;&#1604;&#1605;&#1585;&#1610;&#1590; &#1579;&#1605;&#1606; &#1575;&#1604;&#1583;&#1608;&#1575;&#1569; &#1605;&#1606; &#1580;&#1610;&#1576;&#1607; &#1575;&#1604;&#1582;&#1575;&#1589; &#1575;&#1584;&#1575; &#1605;&#1575; &#1588;&#1593;&#1585; &#1576;&#1593;&#1580;&#1586; &#1575;&#1604;&#1605;&#1585;&#1610;&#1590; &#1593;&#1606; &#1588;&#1585;&#1575;&#1574;&#1607; &#1583;&#1608;&#1606; &#1575;&#1606; &#1610;&#1582;&#1576;&#1585; &#1571;&#1581;&#1583;&#1575;: &quot;&#1575;&#1604;&#1593;&#1591;&#1575;&#1569; &#1610;&#1603;&#1608;&#1606; &#1583;&#1608;&#1606; &#1605;&#1602;&#1575;&#1576;&#1604; &#1593;&#1587;&#1609; &#1575;&#1606; &#1578;&#1587;&#1605;&#1593; &#1575;&#1604;&#1575;&#1585;&#1590; &#1585;&#1587;&#1575;&#1604;&#1577; &#1575;&#1604;&#1587;&#1605;&#1575;&#1569;...&quot;</p> <p dir=\"rtl\">&#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610; &#1591;&#1576;&#1610;&#1576; &#1576;&#1575;&#1585;&#1593; &#1608;&#1604;&#1575;&#1605;&#1593;&#1548; &#1578;&#1591;&#1608;&#1593; &#1604;&#1610;&#1604;&#1575;&#1611; &#1606;&#1607;&#1575;&#1585;&#1575;&#1611; &#1604;&#1582;&#1583;&#1605;&#1577; &#1575;&#1604;&#1605;&#1585;&#1590;&#1609; &#1608;&#1601;&#1610; &#1571;&#1594;&#1604;&#1576; &#1575;&#1604;&#1575;&#1581;&#1610;&#1575;&#1606; &#1605;&#1580;&#1575;&#1606;&#1575;&#1611; &#1608;&#1604;&#1605; &#1610;&#1603;&#1606; &#1604;&#1610;&#1602;&#1593;&#1583;&#1607; &#1571;&#1610; &#1588;&#1610;&#1569; &#1581;&#1578;&#1609; &#1605;&#1585;&#1590;&#1607; &#1593;&#1606; &#1578;&#1604;&#1576;&#1610;&#1577; &#1591;&#1604;&#1576; &#1605;&#1585;&#1590;&#1575;&#1607; &#1608;&#1604;&#1608; &#1603;&#1575;&#1606; &#1584;&#1604;&#1603; &#1601;&#1610; &#1575;&#1604;&#1604;&#1610;&#1604;.</p> <p dir=\"rtl\">&#1575;&#1581;&#1583;&#1609; &#1605;&#1585;&#1610;&#1590;&#1575;&#1578;&#1607; &#1603;&#1575;&#1606;&#1578; &#1605;&#1602;&#1593;&#1583;&#1577; &#1608;&#1604;&#1605; &#1610;&#1603;&#1606; &#1576;&#1575;&#1587;&#1578;&#1591;&#1575;&#1593;&#1578;&#1607;&#1575; &#1575;&#1604;&#1605;&#1580;&#1610;&#1569; &#1575;&#1604;&#1609; &#1593;&#1610;&#1575;&#1583;&#1578;&#1607; &#1601;&#1603;&#1575;&#1606; &#1610;&#1586;&#1608;&#1585;&#1607;&#1575; &#1601;&#1610; &#1575;&#1604;&#1606;&#1607;&#1575;&#1585; &#1608;&#1601;&#1610; &#1575;&#1604;&#1604;&#1610;&#1604; &#1610;&#1593;&#1575;&#1610;&#1606; &#1575;&#1604;&#1580;&#1585;&#1581; &#1601;&#1610; &#1585;&#1580;&#1604;&#1607;&#1575; &#1575;&#1604;&#1605;&#1576;&#1578;&#1608;&#1585;&#1577; &#1608;&#1610;&#1606;&#1592;&#1601;&#1607; &#1608;&#1610;&#1593;&#1591;&#1610;&#1607;&#1575; &#1575;&#1604;&#1583;&#1608;&#1575;&#1569;. &#1608;&#1571;&#1582;&#1585;&#1609; &#1605;&#1589;&#1575;&#1576;&#1577; &#1601;&#1610; &#1575;&#1604;&#1578;&#1607;&#1575;&#1576; &#1576;&#1575;&#1604;&#1585;&#1574;&#1578;&#1610;&#1606; &#1581;&#1608;&#1617;&#1604; &#1594;&#1585;&#1601;&#1577; &#1606;&#1608;&#1605;&#1607;&#1575; &#1575;&#1604;&#1605;&#1578;&#1608;&#1575;&#1590;&#1593;&#1577; &#1575;&#1604;&#1609; &#1594;&#1585;&#1601;&#1577; &#1593;&#1606;&#1575;&#1610;&#1577; &#1601;&#1575;&#1574;&#1602;&#1577; &#1601;&#1571;&#1581;&#1590;&#1585; &#1603;&#1604; &#1605;&#1575; &#1610;&#1604;&#1586;&#1605; &#1605;&#1606; &#1605;&#1593;&#1583;&#1575;&#1578; &#1608;&#1571;&#1583;&#1608;&#1610;&#1577; &#1608;&#1587;&#1607;&#1585; &#1593;&#1604;&#1610;&#1607;&#1575; &#1581;&#1578;&#1609; &#1578;&#1593;&#1575;&#1601;&#1578;.</p> <p dir=\"rtl\">&#1602;&#1575;&#1605; &#1576;&#1575;&#1604;&#1603;&#1579;&#1610;&#1585; &#1605;&#1606; &#1571;&#1593;&#1605;&#1575;&#1604; &#1573;&#1606;&#1587;&#1575;&#1606;&#1610;&#1577; &#1583;&#1608;&#1606; &#1571;&#1606; &#1610;&#1582;&#1576;&#1585; &#1571;&#1581;&#1583;&#1611;&#1575; &#1608;&#1576;&#1605;&#1587;&#1575;&#1593;&#1583;&#1575;&#1578; &#1593;&#1585;&#1601; &#1576;&#1607;&#1575; &#1576;&#1593;&#1583; &#1575;&#1606;&#1578;&#1602;&#1575;&#1604;&#1607; &#1605;&#1606; &#1607;&#1584;&#1607; &#1575;&#1604;&#1583;&#1606;&#1610;&#1575;.</p> <p dir=\"rtl\">&#1571;&#1581;&#1576; &#1575;&#1604;&#1606;&#1575;&#1587; &#1608;&#1576;&#1575;&#1583;&#1604;&#1607; &#1575;&#1604;&#1580;&#1605;&#1610;&#1593; &#1607;&#1584;&#1607; &#1575;&#1604;&#1605;&#1581;&#1576;&#1577;. &#1587;&#1603;&#1606; &#1601;&#1610; &#1602;&#1604;&#1608;&#1576; &#1605;&#1585;&#1590;&#1575;&#1607; &#1608;&#1601;&#1610; &#1571;&#1608;&#1580;&#1575;&#1593;&#1607;&#1605; &#1601;&#1607;&#1583;&#1571; &#1605;&#1606; &#1585;&#1608;&#1593;&#1607;&#1605; &#1608;&#1588;&#1601;&#1609; &#1571;&#1587;&#1602;&#1575;&#1605;&#1607;&#1605;. &#1575;&#1587;&#1578;&#1605;&#1583; &#1605;&#1606; &#1575;&#1604;&#1604;&#1607; &#1575;&#1606;&#1575;&#1578;&#1607; &#1608;&#1578;&#1608;&#1575;&#1590;&#1593;&#1607; &#1608;&#1582;&#1604;&#1602;&#1607; &#1608;&#1593;&#1591;&#1575;&#1569;&#1607; &#1608;&#1575;&#1606;&#1587;&#1575;&#1606;&#1610;&#1578;&#1607; &#1608;&#1587;&#1603;&#1576; &#1601;&#1610; &#1575;&#1604;&#1580;&#1605;&#1610;&#1593; &#1606;&#1608;&#1585; &#1575;&#1604;&#1605;&#1593;&#1585;&#1601;&#1577; &#1575;&#1604;&#1578;&#1610; &#1575;&#1587;&#1578;&#1590;&#1575;&#1569; &#1576;&#1607;&#1575; &#1605;&#1606; &#1575;&#1604;&#1585;&#1608;&#1581; &#1575;&#1604;&#1602;&#1583;&#1587;.</p> <p dir=\"rtl\"><strong>&#1605;&#1581;&#1575;&#1585;&#1576;&#1577; &#1575;&#1604;&#1605;&#1585;&#1590;:</strong></p> <p dir=\"rtl\">&#1593;&#1604;&#1609; &#1575;&#1604;&#1585;&#1594;&#1605; &#1605;&#1606; &#1605;&#1593;&#1585;&#1601;&#1578;&#1607; &#1576;&#1605;&#1575; &#1571;&#1589;&#1575;&#1576;&#1607; &#1605;&#1606; &#1605;&#1585;&#1590; &#1571;&#1603;&#1605;&#1604; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610; &#1575;&#1604;&#1585;&#1587;&#1575;&#1604;&#1577; &#1608;&#1575;&#1587;&#1578;&#1605;&#1585; &#1601;&#1610; &#1605;&#1605;&#1575;&#1585;&#1587;&#1577; &#1605;&#1607;&#1606;&#1578;&#1607; &#1608;&#1603;&#1575;&#1606; &#1610;&#1604;&#1576;&#1617;&#1610; &#1575;&#1610; &#1591;&#1604;&#1576; &#1583;&#1608;&#1606; &#1578;&#1584;&#1605;&#1585; &#1588;&#1575;&#1603;&#1585;&#1575;&#1611; &#1575;&#1604;&#1604;&#1607; &#1583;&#1575;&#1574;&#1605;&#1575;&#1611; &#1608;&#1571;&#1576;&#1583;&#1575;.&nbsp;</p> <p dir=\"rtl\">&#1573;&#1610;&#1605;&#1575;&#1606;&#1607; &#1602;&#1608;&#1610; &#1576;&#1575;&#1604;&#1584;&#1610; &#1571;&#1581;&#1610;&#1575; &#1575;&#1604;&#1571;&#1605;&#1608;&#1575;&#1578; &#1608;&#1604;&#1605; &#1578;&#1594;&#1588; &#1575;&#1610;&#1605;&#1575;&#1606;&#1607; &#1575;&#1610;&#1577; &#1594;&#1605;&#1575;&#1605;&#1577; &#1603;&#1601;&#1585; &#1608;&#1603;&#1575;&#1606; &#1610;&#1602;&#1608;&#1604; &#1604;&#1610; &#1583;&#1575;&#1574;&#1605;&#1575;: &nbsp;&quot;&#1604;&#1610;&#1587; &#1605;&#1608;&#1578; &#1576;&#1593;&#1583; &#1602;&#1610;&#1575;&#1605;&#1577; &#1575;&#1604;&#1605;&#1587;&#1610;&#1581; ... </p> <p dir=\"rtl\">&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#1571;&#1594;&#1605;&#1590; &#1593;&#1610;&#1606;&#1610; &#1607;&#1607;&#1606;&#1575; &#1608;&#1575;&#1601;&#1578;&#1581;&#1607;&#1575; &#1607;&#1606;&#1575;&#1603;</p> <p dir=\"rtl\">&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&#1607;&#1604; &#1578;&#1582;&#1575;&#1601;&#1610;&#1606; &#1575;&#1576;&#1575;&#1603;: &#1575;&#1604;&#1604;&#1607; &#1575;&#1576;&#1610; &#1608;&#1575;&#1606;&#1575; &#1584;&#1575;&#1607;&#1576; &#1573;&#1604;&#1610;&#1607;.&quot;</p> <p dir=\"rtl\">&nbsp;&#1608;&#1603;&#1575;&#1606; &#1610;&#1602;&#1608;&#1604; &#1604;&#1575;&#1605;&#1607; &#1575;&#1604;&#1610;&#1587;: &quot;&#1571;&#1606;&#1578; &#1571;&#1605;&#1610; &#1593;&#1604;&#1609; &#1575;&#1604;&#1571;&#1585;&#1590;&#1548; &#1608;&#1593;&#1606;&#1583;&#1610; &#1571;&#1605; &#1576;&#1575;&#1604;&#1587;&#1605;&#1575; &#1571;&#1606;&#1575; &#1585;&#1575;&#1610;&#1581; &#1604;&#1593;&#1606;&#1583;&#1607;&#1575;.&quot;</p> <p dir=\"rtl\">&#1604;&#1605; &#1610;&#1590;&#1593;&#1601;&#1607; &#1575;&#1604;&#1605;&#1585;&#1590; &#1576;&#1604; &#1580;&#1593;&#1604;&#1607; &#1575;&#1602;&#1608;&#1609; &#1608;&#1604;&#1605; &#1610;&#1581;&#1586;&#1606;&#1607;&#1548; &#1608;&#1578;&#1602;&#1576;&#1617;&#1604;&#1607; &#1604;&#1571;&#1606; &#1576;&#1607; &#1591;&#1585;&#1610;&#1602; &#1575;&#1604;&#1585;&#1576; &#1608;&#1576;&#1575;&#1576; &#1575;&#1604;&#1601;&#1585;&#1583;&#1608;&#1587; &#1575;&#1604;&#1571;&#1576;&#1583;&#1610;&#1548; &#1610;&#1576;&#1578;&#1587;&#1605; &#1604;&#1605;&#1606; &#1610;&#1571;&#1578;&#1610; &#1575;&#1604;&#1610;&#1607; &#1605;&#1606; &#1585;&#1601;&#1575;&#1602;&#1607; &#1575;&#1604;&#1571;&#1591;&#1576;&#1575;&#1569; &#1608;&#1605;&#1606; &#1575;&#1589;&#1581;&#1575;&#1576;&#1607; &#1608;&#1575;&#1578;&#1585;&#1575;&#1576;&#1607;&#1548; &#1610;&#1606;&#1575;&#1602;&#1588;&#1607;&#1605; &#1608;&#1610;&#1581;&#1575;&#1583;&#1579;&#1607;&#1605; &#1608;&#1610;&#1606;&#1587;&#1610;&#1607;&#1605; &#1605;&#1575; &#1580;&#1575;&#1572;&#1608;&#1575; &#1605;&#1606; &#1575;&#1580;&#1604;&#1607;. &#1603;&#1575;&#1606; &#1610;&#1605;&#1583;&#1617;&#1607;&#1605; &#1576;&#1575;&#1604;&#1602;&#1608;&#1577; &#1575;&#1604;&#1578;&#1610; &#1603;&#1575;&#1606; &#1610;&#1578;&#1605;&#1606;&#1591;&#1602; &#1576;&#1607;&#1575; &#1608;&#1607;&#1610; &#1602;&#1608;&#1577; &#1575;&#1604;&#1606;&#1608;&#1585; &#1575;&#1604;&#1575;&#1586;&#1604;&#1610;&#1548; &#1581;&#1575;&#1590;&#1585; &#1575;&#1604;&#1606;&#1607;&#1601;&#1577; &#1608;&#1575;&#1604;&#1603;&#1604;&#1605;&#1577; &#1575;&#1604;&#1581;&#1604;&#1608;&#1577; &#1608;&#1610;&#1602;&#1608;&#1604; &#1604;&#1605;&#1606; &#1575;&#1589;&#1575;&#1576;&#1578;&#1607; &#1582;&#1610;&#1576;&#1577; :</p> <p dir=\"rtl\">&nbsp;&quot;&#1607;&#1584;&#1607; &#1605;&#1588;&#1610;&#1574;&#1577; &#1575;&#1604;&#1604;&#1607;&#1548; &#1575;&#1604;&#1605;&#1606;&#1610;&#1581; &#1604;&#1610; &#1610;&#1593;&#1591;&#1610;&#1606;&#1610; &#1575;&#1604;&#1604;&#1607; &#1575;&#1610;&#1575;&#1607; &#1608;&#1604;&#1575; &#1585;&#1583;&#1617; &#1604;&#1605;&#1588;&#1610;&#1574;&#1578;&#1607;.&quot;</p> <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#1608;&#1593;&#1606;&#1583;&#1605;&#1575; &#1603;&#1575;&#1606; &#1585;&#1601;&#1575;&#1602;&#1607; &#1608;&#1605;&#1581;&#1576;&#1608;&#1607; &#1610;&#1578;&#1581;&#1575;&#1583;&#1579;&#1608;&#1606; &#1576;&#1580;&#1575;&#1606;&#1576;&#1607; &#1593;&#1606; &#1575;&#1604;&#1593;&#1580;&#1575;&#1574;&#1576; &#1608;&#1575;&#1604;&#1582;&#1608;&#1575;&#1585;&#1602; &#1608;&#1593;&#1606; &#1588;&#1601;&#1575;&#1593;&#1577; &#1575;&#1604;&#1602;&#1583;&#1610;&#1587;&#1610;&#1606; &#1608;&#1610;&#1591;&#1604;&#1576;&#1608;&#1606; &#1605;&#1606;&#1607; &#1571;&#1606; &#1610;&#1587;&#1571;&#1604; &#1575;&#1604;&#1604;&#1607; &#1571;&#1593;&#1580;&#1608;&#1576;&#1577;. &#1603;&#1578;&#1576; &#1593;&#1606; &#1575;&#1604;&#1593;&#1580;&#1575;&#1574;&#1576; &#1608;&#1602;&#1575;&#1604; : &quot;&#1573;&#1606; &#1575;&#1604;&#1604;&#1607; &#1602;&#1575;&#1583;&#1585; &#1571;&#1606; &#1610;&#1602;&#1610;&#1605; &#1605;&#1606; &#1575;&#1604;&#1602;&#1576;&#1585; &#1576;&#1588;&#1601;&#1575;&#1593;&#1577; &#1571;&#1608; &#1604;&#1605;&#1580;&#1585;&#1583; &#1575;&#1604;&#1573;&#1610;&#1605;&#1575;&#1606; &#1576;&#1607;. &#1571;&#1605;&#1575; &#1571;&#1606;&#1575;&#1548; &#1601;&#1605;&#1575; &#1603;&#1606;&#1578; &#1571;&#1587;&#1571;&#1604; &#1575;&#1604;&#1604;&#1607; &#1571;&#1593;&#1580;&#1608;&#1576;&#1577; &#1601;&#1607;&#1608; &#1571;&#1576;&#1610; &#1610;&#1593;&#1585;&#1601;&#1606;&#1610; &#1608;&#1610;&#1581;&#1576;&#1606;&#1610; &#1608;&#1604;&#1610;&#1587;&#1578; &#1575;&#1604;&#1570;&#1604;&#1575;&#1605; &#1575;&#1604;&#1580;&#1587;&#1583;&#1610;&#1577; &#1573;&#1604;&#1575; &#1606;&#1575;&#1585;&#1611;&#1575; &#1605;&#1591;&#1607;&#1617;&#1585;&#1577; &#1581;&#1578;&#1609; &#1571;&#1581;&#1576;&#1617;&#1607; &#1571;&#1603;&#1579;&#1585;&quot;.&nbsp;</p> <p dir=\"rtl\">&#1603;&#1606;&#1578; &#1571;&#1586;&#1608;&#1585; &#1575;&#1604;&#1603;&#1606;&#1575;&#1574;&#1587; &#1591;&#1575;&#1604;&#1576;&#1577; &#1605;&#1606; &#1575;&#1604;&#1602;&#1583;&#1610;&#1587;&#1610;&#1606; &#1575;&#1606; &#1610;&#1588;&#1601;&#1593;&#1608;&#1575; &#1604;&#1571;&#1582;&#1610; &#1576;&#1575;&#1593;&#1580;&#1608;&#1576;&#1577;&#1548; &#1608;&#1593;&#1606;&#1583;&#1605;&#1575; &#1593;&#1585;&#1601; &#1576;&#1584;&#1604;&#1603; &#1603;&#1575;&#1606; &#1610;&#1602;&#1608;&#1604; &#1604;&#1610;:</p> <p dir=\"rtl\">&quot;&#1571;&#1604;&#1604;&#1607; &#1607;&#1606;&#1575; &#1608;&#1575;&#1604;&#1593;&#1584;&#1585;&#1575;&#1569; &#1607;&#1606;&#1575; &#1608;&#1607;&#1605; &#1610;&#1593;&#1585;&#1601;&#1608;&#1606; &#1605;&#1575;&#1584;&#1575; &#1610;&#1601;&#1593;&#1604;&#1608;&#1606; &#1605;&#1593;&#1610;&quot; &#1548; &#1608;&#1587;&#1571;&#1604;&#1606;&#1610;:&quot; &#1603;&#1610;&#1601; &#1578;&#1589;&#1604;&#1610;: &quot;&#1571;&#1576;&#1575;&#1606;&#1575; &#1575;&#1604;&#1584;&#1610; &#1601;&#1610; &#1575;&#1604;&#1587;&#1605;&#1608;&#1575;&#1578; &#1604;&#1578;&#1603;&#1606; &#1605;&#1588;&#1610;&#1574;&#1578;&#1603; &#1610;&#1593;&#1606;&#1610; &#1604;&#1578;&#1603;&#1606; &#1605;&#1588;&#1610;&#1574;&#1577; &#1575;&#1604;&#1604;&#1607;&quot; &#1605;&#1603;&#1585;&#1585;&#1575; &#1604;&#1610; &quot;&#1575;&#1604;&#1605;&#1606;&#1610;&#1581; &#1604;&#1610;&#1548; &#1575;&#1604;&#1604;&#1607; &#1576;&#1610;&#1593;&#1591;&#1610;&#1606;&#1610; &#1573;&#1610;&#1575;&#1607;&quot;. &#1601;&#1607;&#1608; &#1610;&#1572;&#1605;&#1606; &#1575;&#1606; &#1605;&#1588;&#1610;&#1574;&#1577; &#1575;&#1604;&#1604;&#1607; &#1601;&#1608;&#1602; &#1603;&#1604; &#1575;&#1593;&#1578;&#1576;&#1575;&#1585; &#1608;&#1607;&#1584;&#1607; &#1607;&#1610; &#1605;&#1588;&#1610;&#1574;&#1577; &#1575;&#1604;&#1604;&#1607; &#1576;&#1571;&#1606; &#1610;&#1578;&#1585;&#1603; &#1607;&#1584;&#1607; &#1575;&#1604;&#1583;&#1606;&#1610;&#1575; &#1608;&#1610;&#1584;&#1607;&#1576; &#1575;&#1604;&#1609; &#1575;&#1576;&#1610;&#1607; &#1575;&#1604;&#1584;&#1610; &#1601;&#1610; &#1575;&#1604;&#1587;&#1605;&#1608;&#1575;&#1578; </p> <p dir=\"rtl\">&quot;&#1575;&#1604;&#1604;&#1607; &#1610;&#1585;&#1610;&#1583;&#1606;&#1610; &#1605;&#1593;&#1607;&#1548; &#1604;&#1602;&#1583; &#1602;&#1590;&#1610;&#1578; &#1608;&#1602;&#1578;&#1575;&#1611; &#1605;&#1593;&#1603;&#1605; &#1608;&#1575;&#1604;&#1610;&#1608;&#1605; &#1575;&#1584;&#1607;&#1576; &#1575;&#1604;&#1609; &#1571;&#1576;&#1610;.&quot;&nbsp;</p> <p dir=\"rtl\">&#1602;&#1604;&#1578; &#1604;&#1571;&#1582;&#1610; &#1584;&#1575;&#1578; &#1605;&#1585;&#1577; &#1575;&#1606; &#1575;&#1604;&#1602;&#1583;&#1610;&#1587; &#1575;&#1604;&#1610;&#1575;&#1587; &#1588;&#1601;&#1610;&#1593;&#1603;&nbsp; &#1575;&#1591;&#1604;&#1576; &#1605;&#1606;&#1607; &#1601;&#1607;&#1608; &#1610;&#1588;&#1601;&#1610;&#1603;&#1548; &#1601;&#1585;&#1583;&#1617;: &quot;&#1607;&#1604;&#1602; &#1605;&#1575;&#1585; &#1575;&#1604;&#1610;&#1575;&#1587; &#1608;&#1576;&#1603;&#1585;&#1575; &#1605;&#1575;&#1585; &#1573;&#1610;&#1604;&#1610;.&quot; &#1608;&#1603;&#1575;&#1606; &#1610;&#1585;&#1583;&#1583; &#1583;&#1575;&#1574;&#1605;&#1575; &#1575;&#1604;&#1581;&#1610;&#1575;&#1577; &#1593;&#1604;&#1609; &#1607;&#1584;&#1607; &#1575;&#1604;&#1575;&#1585;&#1590; &#1605;&#1605;&#1585;&#1617; &#1593;&#1576;&#1608;&#1585;.</p> <p dir=\"rtl\">&#1602;&#1576;&#1604; &#1579;&#1604;&#1575;&#1579;&#1577; &#1575;&#1610;&#1575;&#1605; &#1605;&#1606; &#1575;&#1606;&#1578;&#1602;&#1575;&#1604;&#1607; &#1586;&#1575;&#1585;&#1578;&#1607; &#1575;&#1604;&#1587;&#1610;&#1583;&#1577; &#1575;&#1604;&#1593;&#1584;&#1585;&#1575;&#1569; &#1601;&#1602;&#1576;&#1617;&#1604;&#1607;&#1575; &#1579;&#1604;&#1575;&#1579; &#1602;&#1576;&#1604;&#1575;&#1578; &#1603;&#1575;&#1606;&#1578; &#1576;&#1605;&#1579;&#1575;&#1576;&#1577; &#1579;&#1604;&#1575;&#1579;&#1577; &#1575;&#1610;&#1575;&#1605; &#1605;&#1606; &#1570;&#1582;&#1585; &#1575;&#1610;&#1575;&#1605;&#1607; &#1593;&#1604;&#1609; &#1575;&#1604;&#1571;&#1585;&#1590;&#1548; &#1608;&#1602;&#1583; &#1585;&#1571;&#1578; &#1575;&#1605;&#1607; &#1575;&#1604;&#1587;&#1610;&#1583;&#1577; &#1575;&#1604;&#1593;&#1584;&#1585;&#1575;&#1569; &#1576;&#1575;&#1604;&#1602;&#1585;&#1576; &#1605;&#1606; &#1587;&#1585;&#1610;&#1585;&#1607; &#1604;&#1603;&#1606;&#1607;&#1575; &#1604;&#1605; &#1578;&#1593;&#1585;&#1601;&#1607;&#1575;. &#1608;&#1602;&#1583; &#1583;&#1608;&#1617;&#1606; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610; &#1607;&#1584;&#1607; &#1575;&#1604;&#1608;&#1575;&#1602;&#1593;&#1577; &#1601;&#1610; &#1583;&#1601;&#1578;&#1585; &#1610;&#1608;&#1605;&#1610;&#1575;&#1578;&#1607;:</p> <p dir=\"rtl\">&quot;&#1611;&#1602;&#1576;&#1617;&#1604;&#1578; &#1575;&#1604;&#1587;&#1610;&#1583;&#1577; &#1575;&#1604;&#1593;&#1584;&#1585;&#1575;&#1569; &#1579;&#1604;&#1575;&#1579;&#1575;&#1611; &#1607;&#1584;&#1607; &#1575;&#1604;&#1604;&#1610;&#1604;&#1577;...&quot;</p> <p dir=\"rtl\">&#1604;&#1602;&#1583; &#1578;&#1581;&#1583;&#1609; &#1575;&#1604;&#1605;&#1608;&#1578; &#1602;&#1576;&#1604; &#1610;&#1608;&#1605;&#1610;&#1606; &#1605;&#1606; &#1575;&#1606;&#1578;&#1602;&#1575;&#1604;&#1607; &#1575;&#1584; &#1603;&#1578;&#1576;:</p> <p dir=\"rtl\">&quot;&#1571;&#1610;&#1607;&#1575; &#1575;&#1604;&#1588;&#1610;&#1591;&#1575;&#1606; &#1575;&#1604;&#1605;&#1578;&#1601;&#1585;&#1587; &#1576;&#1571;&#1581;&#1588;&#1575;&#1574;&#1610;&#1548; &#1604;&#1587;&#1578; &#1608;&#1581;&#1583;&#1610; &#1575;&#1606;&#1575;&#1586;&#1604;&#1603; &#1607;&#1584;&#1607; &#1575;&#1604;&#1608;&#1575;&#1602;&#1593;&#1577;&#1548; &#1608;&#1575;&#1606; &#1603;&#1606;&#1578; &#1602;&#1583; &#1587;&#1605;&#1617;&#1605;&#1578; &#1606;&#1601;&#1608;&#1587; &#1575;&#1604;&#1605;&#1581;&#1610;&#1591;&#1610;&#1606; &#1576;&#1610; &#1576;&#1575;&#1604;&#1581;&#1586;&#1606; &#1608;&#1575;&#1604;&#1582;&#1610;&#1576;&#1577; &#1608;&#1575;&#1604;&#1610;&#1571;&#1587;&#1548; &#1601;&#1587;&#1578;&#1585;&#1609; &#1575;&#1606;&#1603; &#1605;&#1607;&#1605;&#1575; &#1575;&#1590;&#1591;&#1585;&#1605;&#1578; &#1571;&#1608;&#1580;&#1575;&#1593;&#1610; &#1608;&#1585;&#1602;&#1589;&#1578; &#1585;&#1605;&#1575;&#1581;&#1603; &#1604;&#1606; &#1578;&#1571;&#1582;&#1584; &#1571;&#1603;&#1579;&#1585; &#1605;&#1605;&#1575; &#1578;&#1587;&#1578;&#1591;&#1610;&#1593;. &#1604;&#1571;&#1606; &#1587;&#1575;&#1593;&#1577; &#1578;&#1571;&#1578;&#1610; &#1608;&#1603;&#1604;&#1575;&#1606;&#1575; &#1610;&#1585;&#1575;&#1607;&#1575; &#1587;&#1571;&#1591;&#1576;&#1602; &#1601;&#1610;&#1607;&#1575; &#1593;&#1604;&#1610;&#1603; &#1604;&#1571;&#1578;&#1585;&#1603;&#1603; &#1580;&#1579;&#1577; &#1607;&#1575;&#1605;&#1583;&#1577; &#1578;&#1581;&#1578; &#1580;&#1579;&#1578;&#1610; &#1608;&#1575;&#1591;&#1601;&#1609;&#1569; &#1606;&#1575;&#1585;&#1603; &#1576;&#1606;&#1575;&#1585;&#1610;. &#1587;&#1571;&#1607;&#1583;&#1605; &#1607;&#1610;&#1603;&#1604;&#1610; &#1593;&#1604;&#1610;&#1603; &#1608;&#1604;&#1606; &#1610;&#1587;&#1602;&#1591; &#1575;&#1604;&#1587;&#1610;&#1601; &#1605;&#1606; &#1610;&#1583;&#1610;.</p> <p dir=\"rtl\">&#1601;&#1575;&#1604;&#1581;&#1602; &#1575;&#1604;&#1581;&#1602; &#1575;&#1602;&#1608;&#1604; &#1604;&#1603; &#1575;&#1606; &#1585;&#1608;&#1581;&#1575;&#1611; &#1605;&#1606;&#1610; &#1604;&#1606; &#1578;&#1605;&#1587;&#1617;&#1607;&#1575; &#1608;&#1604;&#1606; &#1578;&#1587;&#1602;&#1591; &#1605;&#1593;&#1610;.&quot;</p> <p dir=\"rtl\">&#1573;&#1610;&#1604;&#1610; &#1604;&#1605; &#1610;&#1582;&#1601; &#1575;&#1604;&#1605;&#1608;&#1578;&#1548;&nbsp; &#1603;&#1575;&#1606; &#1610;&#1578;&#1608;&#1575;&#1589;&#1604; &#1605;&#1593; &#1575;&#1604;&#1604;&#1607; &#1602;&#1576;&#1604; &#1571;&#1606; &#1610;&#1606;&#1578;&#1602;&#1604; &#1573;&#1604;&#1609; &#1580;&#1608;&#1575;&#1585;&#1607; &#1608;&#1584;&#1604;&#1603; &#1576;&#1602;&#1608;&#1577; &#1573;&#1610;&#1605;&#1575;&#1606;&#1607;. &#1578;&#1602;&#1585;&#1571;&#1607; &#1603;&#1571;&#1606;&#1603; &#1578;&#1602;&#1585;&#1571; &#1605;&#1586;&#1575;&#1605;&#1610;&#1585; &#1583;&#1575;&#1608;&#1608;&#1583; &#1571;&#1608; &#1605;&#1586;&#1575;&#1605;&#1610;&#1585; &#1580;&#1583;&#1610;&#1583;&#1577; &#1605;&#1593; &#1606;&#1592;&#1585;&#1577; &#1578;&#1608;&#1585;&#1575;&#1578;&#1610;&#1577; &#1608;&#1607;&#1608; &#1575;&#1604;&#1602;&#1575;&#1574;&#1604;: &quot;&#1575;&#1604;&#1581;&#1602; &#1610;&#1602;&#1575;&#1604; &#1571;&#1606;&#1606;&#1575; &#1604;&#1575; &#1606;&#1583;&#1585;&#1603; &#1594;&#1575;&#1610;&#1577; &#1575;&#1604;&#1604;&#1607; &#1601;&#1610;&#1606;&#1575; &#1573;&#1604;&#1575; &#1576;&#1575;&#1604;&#1573;&#1610;&#1605;&#1575;&#1606; &#1608;&#1576;&#1575;&#1604;&#1585;&#1608;&#1581; &#1575;&#1604;&#1589;&#1575;&#1585;&#1582; &#1601;&#1610;&#1606;&#1575; &#1571;&#1576;&#1575;&#1606;&#1575; &#1575;&#1604;&#1584;&#1610; &#1601;&#1610; &#1575;&#1604;&#1587;&#1605;&#1608;&#1575;&#1578;&#1548; &#1601;&#1607;&#1604; &#1571;&#1602;&#1585;&#1576; &#1573;&#1604;&#1610;&#1606;&#1575; &#1605;&#1606; &#1602;&#1604;&#1576; &#1571;&#1576;&#1610;&#1606;&#1575;&#1567; &#1601;&#1605;&#1575;&#1584;&#1575; &#1606;&#1582;&#1588;&#1609; &#1576;&#1593;&#1583;&#1567;</p> <p dir=\"rtl\">&nbsp;&nbsp;&nbsp; &#1575;&#1604;&#1581;&#1586;&#1606;...&#1567; &#1604;&#1610;&#1587; &#1579;&#1605;&#1577; &#1594;&#1610;&#1585; &#1575;&#1604;&#1601;&#1585;&#1581; &#1581;&#1610;&#1606; &#1606;&#1604;&#1602;&#1610; &#1576;&#1585;&#1571;&#1587;&#1606;&#1575; &#1576;&#1610;&#1606; &#1584;&#1585;&#1575;&#1593;&#1610; &#1571;&#1576;&#1610;&#1606;&#1575;.</p> <p dir=\"rtl\">&nbsp;&nbsp;&nbsp; &#1575;&#1604;&#1571;&#1604;&#1605;...&#1567; &#1604;&#1610;&#1587; &#1573;&#1604;&#1575; &#1606;&#1575;&#1585;&#1611;&#1575; &#1586;&#1605;&#1606;&#1610;&#1577; &#1578;&#1589;&#1607;&#1585; &#1601;&#1610;&#1606;&#1575; &#1575;&#1604;&#1605;&#1593;&#1583;&#1606; &#1575;&#1604;&#1587;&#1605;&#1575;&#1608;&#1610;.</p> <p dir=\"rtl\">&nbsp;&nbsp;&nbsp; &#1575;&#1604;&#1605;&#1608;&#1578;...&#1567; &#1604;&#1610;&#1587; &#1605;&#1608;&#1578; &#1576;&#1593;&#1583; &#1602;&#1610;&#1575;&#1605;&#1577; &#1575;&#1604;&#1605;&#1587;&#1610;&#1581;. &#1601;&#1605;&#1575;&#1584;&#1575; &#1606;&#1582;&#1588;&#1609; &#1576;&#1593;&#1583;&#1567;</p> <p dir=\"rtl\">&nbsp;&#1575;&#1604;&#1581;&#1602; &#1571;&#1606; &#1605;&#1575; &#1610;&#1580;&#1576; &#1571;&#1606; &#1606;&#1582;&#1588;&#1575;&#1607; &#1607;&#1608; &#1571;&#1606; &#1606;&#1603;&#1608;&#1606; &#1601;&#1610; &#1587;&#1576;&#1575;&#1578; &#1585;&#1608;&#1581;&#1610; &#1601;&#1604;&#1575; &#1606;&#1593;&#1610; &#1573;&#1610;&#1605;&#1575;&#1606;&#1606;&#1575; &#1608;&#1604;&#1575; &#1606;&#1583;&#1585;&#1603; &#1580;&#1608;&#1607;&#1585;&#1606;&#1575; &#1608;&#1606;&#1578;&#1604;&#1607;&#1609; &#1576;&#1575;&#1604;&#1571;&#1576;&#1575;&#1591;&#1610;&#1604;&quot;.</p> <p dir=\"rtl\">&#1602;&#1576;&#1604; &#1571;&#1606; &#1610;&#1606;&#1578;&#1602;&#1604; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610; &#1575;&#1604;&#1609; &#1580;&#1608;&#1575;&#1585; &#1575;&#1604;&#1585;&#1576;&#1617; &#1576;&#1608;&#1602;&#1578; &#1602;&#1589;&#1610;&#1585; &#1591;&#1604;&#1576; &#1605;&#1606;&#1610; &#1608;&#1605;&#1606; &#1575;&#1605;&#1610; &#1575;&#1604;&#1610;&#1587; &#1575;&#1606; &#1604;&#1575; &#1606;&#1585;&#1578;&#1583;&#1610; &#1579;&#1610;&#1575;&#1576;&#1575;&#1611; &#1587;&#1608;&#1583;&#1575;&#1569; &#1581;&#1586;&#1606;&#1575;&#1611; &#1593;&#1604;&#1610;&#1607;:</p> <p dir=\"rtl\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p> <p dir=\"rtl\">&quot;&#1610;&#1575; &#1585;&#1576;&#1548;</p> <p dir=\"rtl\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#1607;&#1576;&#1617; &#1575;&#1606; &#1604;&#1575; &#1578;&#1582;&#1585;&#1580; &#1575;&#1605;&#1610; &#1575;&#1608; &#1575;&#1582;&#1578;&#1610;&#1548;</p> <p dir=\"rtl\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#1575;&#1608; &#1603;&#1604;&#1617; &#1575;&#1604;&#1584;&#1610;&#1606; &#1610;&#1581;&#1586;&#1606;&#1608;&#1606; &#1593;&#1604;&#1610;&#1617;&#1548;</p> <p dir=\"rtl\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#1576;&#1575;&#1604;&#1605;&#1604;&#1575;&#1576;&#1587; &#1575;&#1604;&#1587;&#1608;&#1583;&#1575;&#1569;&#1548; &#1601;&#1575;&#1606; &#1584;&#1604;&#1603;</p> <p dir=\"rtl\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#1580;&#1585;&#1581; &#1601;&#1610; &#1575;&#1604;&#1575;&#1610;&#1605;&#1575;&#1606; &#1576;&#1575;&#1604;&#1581;&#1610;&#1575;&#1577; &#1575;&#1604;&#1582;&#1575;&#1604;&#1583;&#1577;&#1548;</p> <p dir=\"rtl\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#1608;&#1580;&#1585;&#1581; &#1601;&#1610; &#1575;&#1593;&#1605;&#1575;&#1602; &#1585;&#1608;&#1581; &#1578;&#1587;&#1578;&#1602;&#1585; &#1601;&#1610; &#1575;&#1604;&#1604;&#1607; &#1575;&#1604;&#1581;&#1610;&#1617; .&quot;</p> <p dir=\"rtl\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#1589;&#1576;&#1575;&#1581; &#1575;&#1604;&#1610;&#1608;&#1605; &#1575;&#1604;&#1584;&#1610; &#1575;&#1606;&#1578;&#1602;&#1604; &#1601;&#1610;&#1607; &#1573;&#1610;&#1604;&#1610; &#1573;&#1604;&#1609; &#1580;&#1608;&#1575;&#1585; &#1585;&#1576;&#1617;&#1607; &#1575;&#1602;&#1578;&#1585;&#1576;&#1578; &#1575;&#1604;&#1605;&#1605;&#1585;&#1590;&#1577; &#1601;&#1610;&#1585;&#1608;&#1586; &#1605;&#1606; &#1587;&#1585;&#1610;&#1585;&#1607; &#1604;&#1593;&#1604;&#1607;&#1575; &#1578;&#1585;&#1609; &#1578;&#1604;&#1603; &#1575;&#1604;&#1575;&#1576;&#1578;&#1587;&#1575;&#1605;&#1577; &#1575;&#1604;&#1585;&#1602;&#1610;&#1602;&#1577; &#1575;&#1604;&#1578;&#1610; &#1604;&#1605; &#1578;&#1601;&#1575;&#1585;&#1602; &#1608;&#1580;&#1607;&#1607; &#1608;&#1604;&#1608; &#1604;&#1604;&#1581;&#1592;&#1577;. &#1601;&#1601;&#1608;&#1580;&#1574;&#1578; &#1576;&#1571;&#1606; &#1575;&#1604;&#1587;&#1585;&#1610;&#1585; &#1610;&#1585;&#1578;&#1580;&#1601; &#1608;&#1610;&#1578;&#1581;&#1585;&#1617;&#1603; &#1605;&#1606; &#1605;&#1603;&#1575;&#1606;&#1607; &#1608;&#1610;&#1589;&#1583;&#1585; &#1589;&#1608;&#1578;&#1611;&#1575; &#1593;&#1575;&#1604;&#1610;&#1611;&#1575;. &#1601;&#1585;&#1603;&#1590;&#1578; &#1582;&#1575;&#1585;&#1580;&#1611;&#1575; &#1582;&#1575;&#1574;&#1601;&#1577; &#1608;&#1589;&#1585;&#1582;&#1578; &#1573;&#1604;&#1609; &#1586;&#1605;&#1610;&#1604;&#1578;&#1607;&#1575; &#1578;&#1575;&#1606;&#1610;&#1575; &#1604;&#1578;&#1588;&#1575;&#1607;&#1583; &#1605;&#1593;&#1607;&#1575; &#1605;&#1575;&#1584;&#1575; &#1610;&#1581;&#1583;&#1579; &#1601;&#1610; &#1578;&#1604;&#1603; &#1575;&#1604;&#1594;&#1585;&#1601;&#1577;. &#1601;&#1571;&#1587;&#1585;&#1593;&#1578; &#1578;&#1575;&#1606;&#1610;&#1575; &#1608;&#1585;&#1571;&#1578; &#1605;&#1575;&#1584;&#1575; &#1610;&#1580;&#1585;&#1610;. &#1608;&#1593;&#1606;&#1583;&#1605;&#1575; &#1591;&#1604;&#1576;&#1578;&#1575; &#1602;&#1587;&#1605; &#1575;&#1604;&#1589;&#1610;&#1575;&#1606;&#1577; &#1604;&#1604;&#1603;&#1588;&#1601; &#1593;&#1606; &#1608;&#1590;&#1593; &#1575;&#1604;&#1587;&#1585;&#1610;&#1585;&#1548;. &#1571;&#1578;&#1609; &#1575;&#1604;&#1580;&#1608;&#1575;&#1576; &#1576;&#1571;&#1606; &#1581;&#1575;&#1604; &#1575;&#1604;&#1587;&#1585;&#1610;&#1585; &#1580;&#1610;&#1583;&#1548; &#1604;&#1575; &#1593;&#1591;&#1604; &#1601;&#1610;&#1607; &#1608;&#1604;&#1575; &#1601;&#1610; &#1575;&#1604;&#1571;&#1587;&#1604;&#1575;&#1603; &#1575;&#1604;&#1603;&#1607;&#1585;&#1576;&#1575;&#1574;&#1610;&#1577;. &#1608;&#1575;&#1604;&#1580;&#1583;&#1610;&#1585; &#1576;&#1575;&#1604;&#1584;&#1603;&#1585;&#1548; &#1571;&#1606; &#1575;&#1604;&#1587;&#1585;&#1610;&#1585; &#1603;&#1575;&#1606; &#1594;&#1610;&#1585; &#1605;&#1608;&#1589;&#1608;&#1604; &#1576;&#1575;&#1604;&#1603;&#1607;&#1585;&#1576;&#1575;&#1569;. &#1601;&#1602;&#1575;&#1604;&#1578;&#1575;: &quot;&#1581;&#1602;&#1611;&#1575; &#1571;&#1606; &#1575;&#1604;&#1587;&#1585;&#1610;&#1585; &#1602;&#1583; &#1575;&#1606;&#1578;&#1601;&#1590; &#1608;&#1578;&#1571;&#1604;&#1605; &#1604;&#1601;&#1585;&#1575;&#1602;&#1607;&#1548; &#1601;&#1603;&#1610;&#1601; &#1576;&#1571;&#1607;&#1604;&#1607; &#1608;&#1571;&#1589;&#1581;&#1575;&#1576;&#1607; &#1608;&#1605;&#1585;&#1590;&#1575;&#1607; &#1608;&#1575;&#1604;&#1605;&#1605;&#1585;&#1590;&#1575;&#1578;&hellip; &#1608;&#1571;&#1582;&#1584;&#1606;&#1575; &#1606;&#1602;&#1608;&#1604; &#1601;&#1610; &#1587;&#1585;&#1606;&#1575; &#1571;&#1604;&#1610;&#1587; &#1607;&#1584;&#1575; &#1605;&#1606; &#1571;&#1593;&#1605;&#1575;&#1604; &#1575;&#1604;&#1602;&#1583;&#1610;&#1587;&#1610;&#1606;&#1567;&quot;</p> <p dir=\"rtl\">&nbsp;</p> <p dir=\"rtl\"><strong>&#1575;&#1604;&#1575;&#1581;&#1583;&#1575;&#1579; &#1575;&#1604;&#1578;&#1610; &#1581;&#1589;&#1604;&#1578; &#1576;&#1593;&#1583; &#1575;&#1606;&#1578;&#1602;&#1575;&#1604;&#1607;:</strong></p> <p dir=\"rtl\">&#1604;&#1602;&#1583; &#1578;&#1585;&#1603; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610; &#1607;&#1584;&#1607; &#1575;&#1604;&#1583;&#1606;&#1610;&#1575; &#1575;&#1604;&#1601;&#1575;&#1606;&#1610;&#1577; &#1604;&#1610;&#1606;&#1590;&#1605; &#1575;&#1604;&#1609; &#1580;&#1605;&#1575;&#1593;&#1577; &#1575;&#1604;&#1602;&#1583;&#1610;&#1587;&#1610;&#1606; &#1575;&#1604;&#1571;&#1576;&#1585;&#1575;&#1585; &#1608;&#1603;&#1575;&#1606; &#1584;&#1604;&#1603; &#1603;&#1605;&#1575; &#1578;&#1608;&#1602;&#1593; &#1601;&#1610; &#1575;&#1604;&#1579;&#1575;&#1606;&#1610; &#1593;&#1588;&#1585; &#1605;&#1606; &#1578;&#1588;&#1585;&#1610;&#1606; &#1575;&#1604;&#1579;&#1575;&#1606;&#1610; &#1587;&#1606;&#1577; &#1633;&#1785;&#1785;&#1784;.</p> <p dir=\"rtl\">&#1589;&#1583;&#1585; &#1604;&#1607; &#1603;&#1578;&#1575;&#1576;&#1575;&#1606;: &#1575;&#1604;&#1571;&#1608;&#1604; &#1587;&#1606;&#1577; 1999 &#1578;&#1581;&#1578; &#1575;&#1587;&#1605; &quot;&#1608;&#1604;&#1606; &#1610;&#1587;&#1602;&#1591; &#1575;&#1604;&#1587;&#1610;&#1601; &#1605;&#1606; &#1610;&#1583;&#1610;...&quot;. &#1608;&#1575;&#1604;&#1579;&#1575;&#1606;&#1610; &#1587;&#1606;&#1577; &#1634;&#1776;&#1776;&#1637; &#1578;&#1581;&#1578; &#1593;&#1606;&#1608;&#1575;&#1606; &quot;&#1606;&#1608;&#1585; &#1605;&#1606; &#1575;&#1604;&#1587;&#1605;&#1575;&#1569;&quot; &#1608;&#1607;&#1608; &#1575;&#1604;&#1584;&#1610; &#1585;&#1594;&#1576; &#1576;&#1607;&#1584;&#1607; &#1575;&#1604;&#1578;&#1587;&#1605;&#1610;&#1577; &#1576;&#1593;&#1583;&#1605;&#1575; &#1592;&#1607;&#1585; &#1601;&#1610; &#1575;&#1604;&#1581;&#1604;&#1605; &#1604;&#1575;&#1576;&#1606;&#1577; &#1582;&#1575;&#1604;&#1607;.</p> <p dir=\"rtl\">&#1608;&#1575;&#1604;&#1580;&#1583;&#1610;&#1585; &#1576;&#1575;&#1604;&#1584;&#1603;&#1585; &#1575;&#1606;&#1606;&#1610; &#1603;&#1606;&#1578; &#1571;&#1585;&#1610;&#1583; &#1575;&#1606; &#1571;&#1587;&#1605;&#1610; &#1575;&#1604;&#1603;&#1578;&#1575;&#1576; &quot;&#1602;&#1576;&#1610;&#1604; &#1575;&#1604;&#1585;&#1581;&#1610;&#1604;&quot; &#1571;&#1608; &quot;&#1602;&#1576;&#1610;&#1604; &#1575;&#1604;&#1605;&#1594;&#1610;&#1576;&quot; &#1605;&#1593; &#1594;&#1604;&#1575;&#1601; &#1576;&#1604;&#1608;&#1606; &#1575;&#1604;&#1588;&#1605;&#1587; &#1608;&#1604;&#1605; &#1571;&#1593;&#1604;&#1605; &#1575;&#1610; &#1571;&#1581;&#1583; &#1576;&#1605;&#1575; &#1603;&#1606;&#1578; &#1571;&#1601;&#1603;&#1617;&#1585;.</p> <p dir=\"rtl\">&#1604;&#1610;&#1604;&#1577; &#1593;&#1610;&#1583; &#1575;&#1604;&#1585;&#1576; &#1637;-&#1638; &#1570;&#1576; &#1592;&#1607;&#1585; &#1573;&#1610;&#1604;&#1610; &#1601;&#1610; &#1575;&#1604;&#1581;&#1604;&#1605; &#1604;&#1575;&#1576;&#1606;&#1577; &#1582;&#1575;&#1604;&#1607;&#1548; &#1608;&#1607;&#1608; &#1610;&#1585;&#1578;&#1583;&#1610; &#1602;&#1605;&#1610;&#1589;&#1575; &#1608;&#1576;&#1606;&#1591;&#1604;&#1608;&#1606;&#1575; &#1604;&#1608;&#1606; &#1576;&#1610;&#1580; (Beige) &#1608;&#1602;&#1575;&#1604; &#1604;&#1607;&#1575;: &quot;&#1608;&#1589;&#1610;&#1577; &#1608;&#1571;&#1605;&#1575;&#1606;&#1577; &#1604;&#1571;&#1582;&#1578;&#1610; &#1604;&#1610;&#1606;&#1575;: &#1604;&#1575; &#1578;&#1587;&#1605;&#1610; &#1575;&#1604;&#1603;&#1578;&#1575;&#1576; &#1576;&#1575;&#1604;&#1575;&#1587;&#1605; &#1575;&#1604;&#1608;&#1575;&#1585;&#1583; &#1601;&#1610; &#1576;&#1575;&#1604;&#1607;&#1575;&#1548; &#1602;&#1608;&#1604;&#1610; &#1604;&#1607;&#1575; &#1571;&#1604;&#1575; &#1578;&#1578;&#1588;&#1576;&#1579; &#1576;&#1585;&#1571;&#1610;&#1607;&#1575;&#1548; &#1604;&#1583;&#1610;&#1607;&#1575; &#1582;&#1610;&#1575;&#1585;&#1575;&#1606;: &#1575;&#1605;&#1575; &#1575;&#1606; &#1578;&#1587;&#1605;&#1610; &#1575;&#1604;&#1603;&#1578;&#1575;&#1576;&quot;&#1611;&#1589;&#1608;&#1578; &#1605;&#1606; &#1575;&#1604;&#1587;&#1605;&#1575;&#1569;&quot; &#1571;&#1608; &quot;&#1606;&#1608;&#1585; &#1605;&#1606; &#1575;&#1604;&#1587;&#1605;&#1575;&#1569;&quot; &#1608;&#1604;&#1603;&#1606;&#1606;&#1610; &#1571;&#1601;&#1590;&#1617;&#1604; - &#1608;&#1607;&#1584;&#1575; &#1605;&#1575; &#1580;&#1575;&#1569; &#1593;&#1604;&#1609; &#1604;&#1587;&#1575;&#1606; &#1573;&#1610;&#1604;&#1610; &ndash; &quot;&#1611;&#1606;&#1608;&#1585; &#1605;&#1606; &#1575;&#1604;&#1587;&#1605;&#1575;&#1569;&quot;. &#1608;&#1585;&#1583;&#1617;&#1583; &#1604;&#1607;&#1575; &#1607;&#1584;&#1575; &#1575;&#1604;&#1603;&#1604;&#1575;&#1605; &#1605;&#1585;&#1617;&#1577; &#1579;&#1575;&#1606;&#1610;&#1577;. &#1608;&#1571;&#1585;&#1575;&#1607;&#1575; &#1591;&#1585;&#1610;&#1602;&#1577; &#1603;&#1578;&#1575;&#1576;&#1577; &#1575;&#1604;&#1593;&#1606;&#1608;&#1575;&#1606; &#1608;&#1575;&#1604;&#1608;&#1575;&#1606; &#1575;&#1604;&#1594;&#1604;&#1575;&#1601; &#1575;&#1604;&#1584;&#1610; &#1610;&#1585;&#1610;&#1583; &#1575;&#1606; &#1610;&#1593;&#1578;&#1605;&#1583; &#1608;&#1607;&#1608; &#1575;&#1604;&#1604;&#1608;&#1606; &#1575;&#1604;&#1571;&#1586;&#1585;&#1602; &#1576;&#1604; &#1575;&#1604;&#1594;&#1604;&#1575;&#1601; &#1606;&#1601;&#1587;&#1607; &#1604;&#1604;&#1603;&#1578;&#1575;&#1576; &#1575;&#1604;&#1571;&#1608;&#1604;: &quot;&#1608;&#1604;&#1606; &#1610;&#1587;&#1602;&#1591; &#1575;&#1604;&#1587;&#1610;&#1601; &#1605;&#1606; &#1610;&#1583;&#1610;...&quot; &#1608;&#1582;&#1591;&#1617; &#1604;&#1607;&#1575; &#1575;&#1604;&#1575;&#1587;&#1605; &#1593;&#1604;&#1609; &#1607;&#1584;&#1575; &#1575;&#1604;&#1606;&#1581;&#1608;:</p> <p dir=\"rtl\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#1606;&#1600;&#1600;&#1608;&#1585;&#1612;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p> <p align=\"right\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&#1605;&#1606;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(&#1576;&#1575;&#1604;&#1604;&#1608;&#1606; &#1575;&#1604;&#1571;&#1576;&#1610;&#1590;)</p> <p dir=\"rtl\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#1575;&#1604;&#1587;&#1605;&#1575;&#1569;</p> <p style=\"margin-bottom: 12pt; text-align: right\" class=\"MsoNormal\" align=\"right\">&#1608;&#1604;&#1605;&#1575; &#1578;&#1571;&#1582;&#1585;&#1578; &#1601;&#1610; &#1591;&#1576;&#1575;&#1593;&#1577; &#1575;&#1604;&#1603;&#1578;&#1575;&#1576; &#1593;&#1575;&#1583; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610; &#1575;&#1604;&#1609; &#1575;&#1576;&#1606;&#1577; &#1582;&#1575;&#1604;&#1607; &#1608;&#1587;&#1571;&#1604;&#1607;&#1575;&nbsp; &quot;&#1571;&#1610;&#1606; &#1603;&#1578;&#1575;&#1576;&#1610;&#1567; &#1571;&#1610;&#1606; &#1606;&#1608;&#1585; &#1605;&#1606; &#1575;&#1604;&#1587;&#1605;&#1575;&#1569; &#1567; &quot; </p> <p align=\"right\">&#1604;&#1583;&#1610;&#1607; &#1571;&#1610;&#1590;&#1575; &#1603;&#1578;&#1575;&#1576;&#1575;&#1578; &#1601;&#1610; &#1575;&#1604;&#1593;&#1585;&#1576;&#1610;&#1577; &#1608;&#1575;&#1604;&#1601;&#1585;&#1606;&#1587;&#1610;&#1577; &#1604;&#1605; &#1578;&#1591;&#1576;&#1593; &#1576;&#1593;&#1583;.</p> <p dir=\"rtl\">&#1606;&#1607;&#1575;&#1585; &#1582;&#1605;&#1610;&#1587; &#1575;&#1604;&#1571;&#1587;&#1585;&#1575;&#1585;&#1548; &#1587;&#1607;&#1575; &#1593;&#1606; &#1576;&#1575;&#1604; &#1575;&#1576; &#1585;&#1575;&#1607;&#1576; - &#1585;&#1574;&#1610;&#1587; &#1583;&#1610;&#1585; - &#1589;&#1583;&#1610;&#1602; &#1604;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610;&#1548; &#1583;&#1593;&#1608;&#1578;&#1607; &#1604;&#1604;&#1602;&#1583;&#1575;&#1587; &#1605;&#1593;&#1607; &#1608;&#1603;&#1575;&#1606; &#1605;&#1606;&#1587;&#1580;&#1605;&#1575;&#1611; &#1601;&#1610; &#1575;&#1604;&#1602;&#1583;&#1575;&#1587; &#1575;&#1604;&#1587;&#1575;&#1593;&#1577; &#1575;&#1604;&#1593;&#1575;&#1588;&#1585;&#1577; &#1589;&#1576;&#1575;&#1581;&#1575; &#1608;&#1576;&#1610;&#1606;&#1605;&#1575; &#1607;&#1608; &#1610;&#1581;&#1590;&#1617;&#1585; &#1575;&#1604;&#1584;&#1576;&#1610;&#1581;&#1577; &#1575;&#1604;&#1573;&#1604;&#1607;&#1610;&#1577; &#1601;&#1610; &#1603;&#1571;&#1587; &#1575;&#1604;&#1602;&#1585;&#1576;&#1575;&#1606; &#1585;&#1571;&#1609; &#1573;&#1610;&#1604;&#1610; &#1608;&#1575;&#1602;&#1601;&#1575;&#1611; &#1593;&#1604;&#1609; &#1610;&#1605;&#1610;&#1606; &#1575;&#1604;&#1605;&#1575;&#1574;&#1583;&#1577;: &#1602;&#1583;&#1605;&#1575;&#1607; &#1571;&#1593;&#1604;&#1609; &#1602;&#1604;&#1610;&#1604;&#1575;&#1611; &#1605;&#1606; &#1575;&#1604;&#1571;&#1585;&#1590;&#1548; &#1608;&#1580;&#1607;&#1607; &#1605;&#1590;&#1575;&#1569; &#1610;&#1588;&#1593; &#1606;&#1608;&#1585;&#1575;&#1611; &#1608;&#1607;&#1608; &#1610;&#1585;&#1578;&#1583;&#1610; &#1602;&#1605;&#1610;&#1589;&#1575;&#1611; &#1575;&#1576;&#1610;&#1590; - &#1606;&#1589;&#1601; &#1603;&#1605; - &#1608;&#1576;&#1606;&#1591;&#1604;&#1608;&#1606;&#1575; &#1603;&#1575;&#1603;&#1610;&#1575;&#1611;&#1548; &#1601;&#1576;&#1575;&#1583;&#1585;&#1607; &#1602;&#1575;&#1574;&#1604;&#1575;&#1611;:</p> <p dir=\"rtl\">&quot;&#1571;&#1606;&#1575; &#1607;&#1608;&#1606;&#1548;</p> <p dir=\"rtl\">&#1608;&#1608;&#1591;&#1574; &#1575;&#1604;&#1605;&#1608;&#1578; &#1576;&#1575;&#1604;&#1605;&#1608;&#1578;&#1548;</p> <p dir=\"rtl\">&#1575;&#1606;&#1575; &#1581;&#1610;&#1548;</p> <p dir=\"rtl\">&#1575;&#1584;&#1603;&#1585; &#1576;&#1610;&#1610; &#1582;&#1604;&#1610;&#1604;&quot;</p> <p dir=\"rtl\">&nbsp;</p> <p dir=\"rtl\">&#1575;&#1585;&#1578;&#1593;&#1588; &#1575;&#1604;&#1571;&#1576; &#1575;&#1604;&#1585;&#1575;&#1607;&#1576; &#1608;&#1575;&#1607;&#1578;&#1586;&#1578; &#1575;&#1604;&#1603;&#1571;&#1587; &#1601;&#1610; &#1610;&#1583;&#1607;&#1548; &#1608;&#1603;&#1575;&#1606;&#1578; &#1593;&#1592;&#1578;&#1607; &#1576;&#1593;&#1583; &#1575;&#1604;&#1602;&#1583;&#1575;&#1587; &#1593;&#1606; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610; &#1575;&#1604;&#1584;&#1610; &#1604;&#1605; &#1610;&#1582;&#1588; &#1575;&#1604;&#1605;&#1608;&#1578; &#1576;&#1604; &#1604;&#1575;&#1602;&#1575;&#1607; &#1576;&#1593;&#1586;&#1605; &#1608;&#1602;&#1608;&#1577; &#1604;&#1571;&#1606;&#1607; &#1610;&#1572;&#1605;&#1606; &#1576;&#1571;&#1606; &#1575;&#1604;&#1605;&#1608;&#1578; &#1607;&#1608; &#1591;&#1585;&#1610;&#1602; &#1575;&#1604;&#1609; &#1575;&#1604;&#1581;&#1610;&#1575;&#1577; &#1575;&#1604;&#1571;&#1576;&#1583;&#1610;&#1577; &#1608;&#1607;&#1608; &#1575;&#1606;&#1578;&#1602;&#1575;&#1604; &#1575;&#1604;&#1609; &#1575;&#1581;&#1590;&#1575;&#1606; &#1575;&#1604;&#1585;&#1576;.</p> <p dir=\"rtl\">&#1602;&#1604;&#1578; &#1604;&#1604;&#1585;&#1575;&#1607;&#1576; &#1593;&#1606;&#1583;&#1574;&#1584; &#1571;&#1606; &#1571;&#1582;&#1610; &#1580;&#1575;&#1569; &#1604;&#1610;&#1602;&#1608;&#1604; &#1604;&#1603; &#1575;&#1606;&#1603; &#1604;&#1605; &#1578;&#1584;&#1603;&#1585;&#1607; &#1601;&#1610; &#1575;&#1604;&#1602;&#1583;&#1575;&#1587;&#1548; &#1601;&#1571;&#1580;&#1575;&#1576;&#1606;&#1610; &quot;&#1603;&#1604;&#1575;&#1617; &#1576;&#1604; &#1580;&#1575;&#1569; &#1604;&#1610;&#1602;&#1608;&#1604; &#1604;&#1610; &#1575;&#1606;&#1607; &#1581;&#1610;&#1617; &quot;.</p> <p dir=\"rtl\">&nbsp; </p> <p dir=\"rtl\">&nbsp; &#1607;&#1584;&#1575; &#1608;&#1602;&#1583; &#1587;&#1575;&#1593;&#1583; &#1573;&#1610;&#1604;&#1610; &#1575;&#1604;&#1603;&#1579;&#1610;&#1585; &#1605;&#1606; &#1575;&#1604;&#1606;&#1575;&#1587; &#1576;&#1593;&#1583; &#1575;&#1606;&#1578;&#1602;&#1575;&#1604;&#1607;&#1548; &#1606;&#1584;&#1603;&#1585; &#1601;&#1610;&#1605;&#1575; &#1610;&#1604;&#1610; &#1576;&#1593;&#1590; &#1605;&#1575; &#1580;&#1585;&#1609; &#1605;&#1593;&#1607;:&nbsp;</p> <p style=\"text-align: justify; text-indent: 0.5in; direction: rtl; unicode-bidi: embed\" dir=\"rtl\" class=\"MsoNormal\">&#1581;&#1583;&#1579; &#1571;&#1606; &#1588;&#1593;&#1585;&#1578; &#1586;&#1605;&#1610;&#1604;&#1577; &#1604;&#1607; &#1601;&#1610; &#1575;&#1604;&#1591;&#1576;&#1617; &#1584;&#1575;&#1578; &#1604;&#1610;&#1604;&#1577; &#1573;&#1606; &#1585;&#1608;&#1581; &#1573;&#1610;&#1604;&#1610; &#1578;&#1585;&#1601;&#1585;&#1601; &#1581;&#1608;&#1604;&#1607;&#1575;&nbsp; &#1608;&#1604;&#1605; &#1578;&#1593;&#1604;&#1605; &#1573;&#1584;&#1575; &#1603;&#1575;&#1606; &#1584;&#1604;&#1603; &#1601;&#1610; &#1575;&#1604;&#1581;&#1604;&#1605; &#1571;&#1605; &#1601;&#1610; &#1575;&#1604;&#1610;&#1602;&#1592;&#1577;. &#1608;&#1580;&#1583;&#1578; &#1573;&#1604;&#1609; &#1580;&#1575;&#1606;&#1576;&#1607;&#1575; &#1601;&#1610; &#1575;&#1604;&#1587;&#1585;&#1610;&#1585; &#1603;&#1578;&#1575;&#1576; &#1573;&#1610;&#1604;&#1610; &#1601;&#1578;&#1587;&#1575;&#1569;&#1604;&#1578; &#1593;&#1606; &#1608;&#1580;&#1608;&#1583; &#1607;&#1584;&#1575; &#1575;&#1604;&#1603;&#1578;&#1575;&#1576; &#1576;&#1602;&#1585;&#1576;&#1607;&#1575; &#1608;&#1605;&#1606; &#1575;&#1604;&#1584;&#1610; &#1608;&#1590;&#1593;&#1607;&#1548; &#1605;&#1593; &#1575;&#1604;&#1593;&#1604;&#1605; &#1575;&#1606;&#1607;&#1575; &#1603;&#1575;&#1606;&#1578; &#1578;&#1581;&#1578;&#1601;&#1592; &#1576;&#1607; &#1601;&#1610; &#1575;&#1604;&#1605;&#1603;&#1578;&#1576;&#1577;. &#1608;&#1587;&#1571;&#1604;&#1578; &#1571;&#1607;&#1604;&#1607;&#1575; &#1601;&#1604;&#1605; &#1610;&#1593;&#1604;&#1605; &#1571;&#1581;&#1583; &#1588;&#1610;&#1569; &#1593;&#1606; &#1607;&#1584;&#1575;. &#1608;&#1571;&#1581;&#1587;&#1578; &#1571;&#1606; &#1573;&#1610;&#1604;&#1610; &#1610;&#1591;&#1604;&#1576; &#1605;&#1606;&#1607;&#1575; &#1571;&#1606; &#1578;&#1587;&#1571;&#1604; &#1571;&#1582;&#1578;&#1607; &#1575;&#1604;&#1576;&#1581;&#1579; &#1576;&#1610;&#1606; &#1571;&#1594;&#1585;&#1575;&#1590;&#1607; &#1593;&#1606; &#1603;&#1578;&#1575;&#1576;&#1575;&#1578; &#1604;&#1607;. &#1608;&#1601;&#1610; &#1593;&#1588;&#1610;&#1577; &#1575;&#1604;&#1610;&#1608;&#1605; &#1575;&#1604;&#1578;&#1575;&#1604;&#1610; &#1581;&#1608;&#1575;&#1604;&#1610; &#1575;&#1604;&#1587;&#1575;&#1593;&#1577; &#1575;&#1604;&#1587;&#1575;&#1583;&#1587;&#1577; &#1576;&#1593;&#1583; &#1578;&#1593;&#1576; &#1608;&#1593;&#1606;&#1575;&#1569; &#1575;&#1604;&#1606;&#1607;&#1575;&#1585; &#1603;&#1604;&#1607; &#1606;&#1575;&#1605;&#1578; &#1608;&#1604;&#1603;&#1606; &#1573;&#1610;&#1604;&#1610; &#1571;&#1610;&#1602;&#1592;&#1607;&#1575; &#1608;&#1583;&#1593;&#1575;&#1607;&#1575; &#1604;&#1604;&#1575;&#1578;&#1589;&#1575;&#1604; &#1576;&#1571;&#1582;&#1578;&#1607;. &#1586;&#1575;&#1585;&#1578;&#1606;&#1610; &#1601;&#1610; &#1606;&#1601;&#1587; &#1575;&#1604;&#1604;&#1610;&#1604;&#1577; &#1608;&#1571;&#1582;&#1576;&#1585;&#1578;&#1606;&#1610; &#1593;&#1606; &#1575;&#1604;&#1584;&#1610; &#1581;&#1589;&#1604; &#1605;&#1593;&#1607;&#1575; &#1591;&#1575;&#1604;&#1576;&#1577; &#1605;&#1606;&#1610; &#1571;&#1606; &#1571;&#1576;&#1581;&#1579; &#1576;&#1610;&#1606; &#1571;&#1594;&#1585;&#1575;&#1590; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610;&#1610; :&quot;&#1571;&#1608;&#1589;&#1604;&#1578; &#1604;&#1603; &#1575;&#1604;&#1585;&#1587;&#1575;&#1604;&#1577; &#1571;&#1606;&#1575; &#1584;&#1575;&#1607;&#1576;&#1577; &#1604;&#1571;&#1606;&#1575;&#1605;&quot;. &#1593;&#1604;&#1609; &#1605;&#1582;&#1591;&#1608;&#1591;&#1575;&#1578; &#1578;&#1606;&#1588;&#1585; &#1604;&#1607; &#1601;&#1610; &#1603;&#1578;&#1575;&#1576; &#1570;&#1582;&#1585;. &#1608;&#1602;&#1575;&#1604;&#1578; &#1604;</p> <p dir=\"rtl\">&#1601;&#1578;&#1575;&#1577; &#1603;&#1575;&#1606;&#1578; &#1578;&#1593;&#1575;&#1606;&#1610; &#1605;&#1606; &#1571;&#1608;&#1580;&#1575;&#1593; &#1601;&#1610; &#1576;&#1591;&#1606;&#1607;&#1575;&#1548; &#1585;&#1571;&#1578; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610; &#1601;&#1610; &#1606;&#1608;&#1605;&#1607;&#1575; &#1608;&#1571;&#1582;&#1576;&#1585;&#1607;&#1575; &#1571;&#1606; &#1604;&#1583;&#1610;&#1607;&#1575; &quot;&#1603;&#1610;&#1587;&#1578;&quot; &#1593;&#1604;&#1609; &#1575;&#1604;&#1605;&#1576;&#1610;&#1590;(ovarian cyst) &nbsp;&#1608;&#1607;&#1610; &#1576;&#1581;&#1575;&#1580;&#1577; &#1573;&#1604;&#1609; &#1593;&#1605;&#1604;&#1610;&#1577;. &#1582;&#1575;&#1601;&#1578; &#1575;&#1604;&#1601;&#1578;&#1575;&#1577; &#1608;&#1593;&#1605;&#1604;&#1578; &#1601;&#1581;&#1608;&#1589;&#1575;&#1578; &#1571;&#1592;&#1607;&#1585;&#1578; &#1589;&#1583;&#1602;&#1610;&#1577; &#1605;&#1575; &#1602;&#1575;&#1604;&#1607; &#1573;&#1610;&#1604;&#1610;. &#1571;&#1582;&#1584;&#1578; &#1575;&#1604;&#1603;&#1579;&#1610;&#1585; &#1605;&#1606; &#1575;&#1604;&#1571;&#1583;&#1608;&#1610;&#1577; &#1593;&#1587;&#1609; &#1571;&#1606; &#1578;&#1607;&#1585;&#1576; &#1605;&#1606; &#1575;&#1604;&#1593;&#1605;&#1604;&#1610;&#1577; &#1608;&#1604;&#1603;&#1606; &#1583;&#1608;&#1606; &#1580;&#1583;&#1608;&#1609;. &#1608;&#1593;&#1606;&#1583;&#1605;&#1575; &#1602;&#1585;&#1585;&#1578; &#1571;&#1606; &#1578;&#1593;&#1605;&#1604; &#1575;&#1604;&#1593;&#1605;&#1604;&#1610;&#1577;&#1548; &#1608;&#1601;&#1610; &#1606;&#1601;&#1587; &#1575;&#1604;&#1604;&#1610;&#1604;&#1577;&#1548; &#1585;&#1571;&#1578; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610; &#1608;&#1575;&#1604;&#1587;&#1610;&#1583;&#1577; &#1575;&#1604;&#1593;&#1584;&#1585;&#1575;&#1569; &#1610;&#1593;&#1605;&#1604;&#1608;&#1606; &#1604;&#1607;&#1575; &#1575;&#1604;&#1593;&#1605;&#1604;&#1610;&#1577; &#1608;&#1576;&#1588;&#1585;&#1608;&#1607;&#1575; &#1571;&#1606; &#1575;&#1604;&#1593;&#1605;&#1604;&#1610;&#1577; &#1606;&#1580;&#1581;&#1578; &#1583;&#1608;&#1606; &#1605;&#1588;&#1575;&#1603;&#1604;&#1548; &#1608;&#1607;&#1584;&#1575; &#1576;&#1575;&#1604;&#1601;&#1593;&#1604; &#1575;&#1604;&#1584;&#1610; &#1581;&#1589;&#1604; .</p> <p style=\"text-align: justify; direction: rtl; unicode-bidi: embed\" dir=\"rtl\" class=\"MsoNormal\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#1603;&#1575;&#1607;&#1606; &#1584;&#1603;&#1585; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610; &#1601;&#1610; &#1575;&#1604;&#1602;&#1583;&#1575;&#1587; &#1575;&#1604;&#1573;&#1604;&#1607;&#1610; &#1608;&#1604;&#1605; &#1610;&#1603;&#1606; &#1610;&#1593;&#1585;&#1601;&#1607; &#1588;&#1582;&#1589;&#1610;&#1611;&#1575;&#1548; &#1576;&#1604; &#1571;&#1582;&#1576;&#1585; &#1593;&#1606;&#1607; &#1608;&#1593;&#1606; &#1571;&#1593;&#1605;&#1575;&#1604;&#1607; &#1575;&#1604;&#1591;&#1576;&#1610;&#1577; &#1608;&#1575;&#1604;&#1582;&#1610;&#1585;&#1610;&#1577;&#1548; &#1608;&#1602;&#1585;&#1571; &#1604;&#1607; &#1603;&#1578;&#1575;&#1576;&#1575;&#1578;&#1607;. &#1588;&#1593;&#1585; &#1575;&#1604;&#1603;&#1575;&#1607;&#1606; &#1601;&#1580;&#1571;&#1577; &#1601;&#1610; &#1575;&#1604;&#1602;&#1583;&#1575;&#1587; &#1576;&#1573;&#1610;&#1604;&#1610; &#1608;&#1575;&#1602;&#1601;&#1611;&#1575; &#1593;&#1606; &#1610;&#1605;&#1610;&#1606;&#1607; &#1610;&#1588;&#1593; &#1606;&#1608;&#1585;&#1611;&#1575; &#1608;&#1582;&#1575;&#1591;&#1576;&#1607; &#1605;&#1576;&#1578;&#1587;&#1605;&#1611;&#1575; :&quot;&#1573;&#1584;&#1575; &#1576;&#1583;&#1603; &#1601;&#1610;&#1603; &#1605;&#1575; &#1578;&#1589;&#1604;&#1610; &#1604;&#1610; &#1604;&#1571;&#1606;&#1606;&#1610; &#1603;&#1579;&#1610;&#1585; &#1605;&#1585;&#1578;&#1575;&#1581;. &#1571;&#1606;&#1578; &#1576;&#1583;&#1603; &#1589;&#1604;&#1575;&#1577; &#1585;&#1581; &#1589;&#1604;&#1610; &#1604;&#1603; &quot;.&#1593;&#1606;&#1583;&#1607;&#1575; &#1590;&#1581;&#1603; &#1575;&#1604;&#1603;&#1575;&#1607;&#1606; &#1601;&#1610; &#1587;&#1585;&#1607; &#1602;&#1575;&#1574;&#1604;&#1575;&#1611;: &quot;&#1604;&#1610;&#1603; &#1604;&#1605;&#1610;&#1606; &#1575;&#1606;&#1575; &#1593;&#1605; &#1589;&#1604;&#1610;&#1548; &#1607;&#1608; &#1604;&#1575;&#1586;&#1605; &#1610;&#1589;&#1604;&#1610; &#1604;&#1610; &#1604;&#1571;&#1606;&#1608; &#1578;&#1602;&#1610; &#1608;&#1602;&#1583;&#1610;&#1587;&quot;. &#1576;&#1593;&#1590;&#1575;&quot; &#1605;&#1606;</p> <p dir=\"rtl\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#1591;&#1576;&#1610;&#1576;&#1577; &#1578;&#1593;&#1605;&#1604; &#1601;&#1610; &#1605;&#1587;&#1578;&#1588;&#1601;&#1609; &#1575;&#1604;&#1602;&#1583;&#1610;&#1587; &#1580;&#1575;&#1608;&#1585;&#1580;&#1610;&#1608;&#1587; &#1586;&#1605;&#1610;&#1604;&#1577; &#1604;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610;&#1548; &#1603;&#1575;&#1606;&#1578; &#1578;&#1585;&#1610;&#1583; &#1571;&#1606; &#1578;&#1581;&#1576;&#1604;. &#1585;&#1571;&#1578; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610; &#1601;&#1610; &#1571;&#1581;&#1583; &#1571;&#1585;&#1608;&#1602;&#1577; &#1575;&#1604;&#1605;&#1587;&#1578;&#1588;&#1601;&#1609; &#1605;&#1585;&#1578;&#1583;&#1610;&#1575; &#1605;&#1585;&#1610;&#1608;&#1604;&#1575;&#1611; &#1571;&#1576;&#1610;&#1590;&#1548; &#1601;&#1587;&#1571;&#1604;&#1578;&#1607; &#1593;&#1606; &#1581;&#1575;&#1604;&#1607; &#1602;&#1575;&#1604; &#1604;&#1607;&#1575;:&quot; &#1571;&#1606;&#1575; &#1603;&#1579;&#1610;&#1585; &#1605;&#1585;&#1578;&#1575;&#1581;&#1548; &#1605;&#1576;&#1585;&#1608;&#1603; &#1573;&#1604;&#1603; &#1575;&#1604;&#1581;&#1605;&#1604;. &#1605;&#1610;&#1548; &#1571;&#1606;&#1578; &#1576;&#1581;&#1575;&#1580;&#1577; &#1573;&#1604;&#1609; &#1591;&#1576;&#1610;&#1576; &#1610;&#1606;&#1575;&#1608;&#1576; &#1593;&#1606;&#1603; &#1601;&#1610; &#1575;&#1604;&#1593;&#1610;&#1575;&#1583;&#1577; &#1601;&#1610; &#1571;&#1608;&#1575;&#1582;&#1585; &#1588;&#1607;&#1608;&#1585; &#1575;&#1604;&#1581;&#1605;&#1604; &#1604;&#1575;&#1606;&#1603; &#1604;&#1606; &#1578;&#1587;&#1578;&#1591;&#1610;&#1593;&#1610; &#1575;&#1604;&#1593;&#1605;&#1604;. &#1571;&#1582;&#1578;&#1610; &#1591;&#1576;&#1610;&#1576;&#1577; &#1571;&#1591;&#1601;&#1575;&#1604; &#1578;&#1587;&#1578;&#1591;&#1610;&#1593; &#1571;&#1606; &#1578;&#1602;&#1608;&#1605; &#1576;&#1584;&#1604;&#1603; &#1608;&#1578;&#1571;&#1582;&#1584; &#1605;&#1603;&#1575;&#1606;&#1603; &#1585;&#1610;&#1579;&#1605;&#1575; &#1578;&#1604;&#1583;&#1610;&quot;. &#1608;&#1575;&#1576;&#1578;&#1587;&#1605; &#1604;&#1607;&#1575;.&#1608;&#1576;&#1575;&#1604;&#1601;&#1593;&#1604; &#1601;&#1610; &#1570;&#1582;&#1585; &#1575;&#1604;&#1588;&#1607;&#1585; &#1575;&#1604;&#1582;&#1575;&#1605;&#1587;&#1548; &#1591;&#1604;&#1576; &#1605;&#1606;&#1607;&#1575; &#1591;&#1576;&#1610;&#1576;&#1607;&#1575; &#1575;&#1604;&#1606;&#1587;&#1575;&#1574;&#1610; &#1605;&#1604;&#1575;&#1586;&#1605;&#1577; &#1575;&#1604;&#1587;&#1585;&#1610;&#1585; &#1581;&#1578;&#1609; &#1575;&#1604;&#1608;&#1604;&#1575;&#1583;&#1577;. &#1575;&#1593;&#1578;&#1576;&#1585;&#1578; &#1575;&#1604;&#1591;&#1576;&#1610;&#1576;&#1577;&nbsp; &#1571;&#1606;&#1614; &#1575;&#1604;&#1585;&#1576; &#1571;&#1585;&#1587;&#1604; &#1604;&#1607;&#1575; &#1585;&#1587;&#1608;&#1604;&#1575;&#1611; &#1605;&#1606; &#1593;&#1606;&#1583;&#1607; &#1602;&#1575;&#1574;&#1604;&#1577;: &quot;&#1571;&#1581;&#1587;&#1587;&#1578; &#1571;&#1606; &#1575;&#1604;&#1593;&#1586;&#1610;&#1586; &#1573;&#1610;&#1604;&#1610; &#1583;&#1575;&#1574;&#1605;&#1575; &#1605;&#1593;&#1606;&#1575; &#1610;&#1588;&#1575;&#1585;&#1603;&#1606;&#1575; &#1608;&#1610;&#1585;&#1593;&#1575;&#1606;&#1575; &#1605;&#1606; &#1601;&#1608;&#1602;&quot;. &#1601;&#1591;&#1604;&#1576;&#1578; &#1605;&#1606;&#1617;&#1610; &#1571;&#1606; &#1571;&#1606;&#1575;&#1608;&#1576; &#1605;&#1603;&#1575;&#1606;&#1607;&#1575;&#1548; &#1603;&#1605;&#1575; &#1571;&#1588;&#1575;&#1585; &#1573;&#1604;&#1610;&#1607;&#1575; &#1608;&#1571;&#1593;&#1604;&#1605;&#1607;&#1575; &#1573;&#1610;&#1604;&#1610;.&#1608;&#1607;&#1584;&#1575; &#1576;&#1575;&#1604;&#1601;&#1593;&#1604; &#1575;&#1604;&#1584;&#1610; &#1581;&#1589;&#1604; &#1608;&#1571;&#1582;&#1584;&#1578; &#1605;&#1603;&#1575;&#1606;&#1607;&#1575;. </p> <p dir=\"rtl\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#1575;&#1576;&#1606;&#1577; &#1582;&#1575;&#1604; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610; &#1585;&#1571;&#1578;&#1607; &#1601;&#1610; &#1606;&#1608;&#1605;&#1607;&#1575; &#1610;&#1585;&#1610;&#1607;&#1575; &#1587;&#1610;&#1585;&#1577; &#1581;&#1610;&#1575;&#1578;&#1607; &#1605;&#1591;&#1576;&#1608;&#1593;&#1577; &#1593;&#1604;&#1609; &#1575;&#1604;&#1603;&#1608;&#1605;&#1576;&#1610;&#1608;&#1578;&#1585; &#1605;&#1593; &#1582;&#1604;&#1601;&#1610;&#1577; &#1604;&#1608;&#1606; &#1576;&#1610;&#1580; &#1608;&#1603;&#1604; &#1608;&#1585;&#1602;&#1577; &#1605;&#1606; &#1587;&#1610;&#1585;&#1578;&#1607; &#1605;&#1608;&#1602;&#1617;&#1593;&#1577; &#1576;&#1575;&#1587;&#1605;&#1607; &#1576;&#1575;&#1604;&#1604;&#1608;&#1606; &#1575;&#1604;&#1571;&#1586;&#1585;&#1602;. &#1602;&#1575;&#1604;&#1578; &#1604;&#1610; &#1571;&#1593;&#1591;&#1575;&#1603; &#1605;&#1608;&#1575;&#1601;&#1602;&#1578;&#1607; &#1604;&#1603;&#1578;&#1575;&#1576;&#1577; &#1587;&#1610;&#1585;&#1578;&#1607; &#1608;&#1606;&#1588;&#1585;&#1607;&#1575;. &#1608;&#1607;&#1608; &#1575;&#1604;&#1602;&#1575;&#1574;&#1604;:&quot;&#1571;&#1585;&#1610;&#1583; &#1571;&#1606; &#1571;&#1606;&#1588;&#1585; &#1587;&#1610;&#1585;&#1578;&#1610; &#1601;&#1610; &#1575;&#1604;&#1571;&#1585;&#1590; &#1608;&#1571;&#1591;&#1608;&#1601; &#1581;&#1604;&#1602;&#1575;&#1578; &#1575;&#1604;&#1576;&#1610;&#1608;&#1578; &#1608;&#1571;&#1588;&#1604;&#1581; &#1608;&#1585;&#1583;&#1611;&#1575;&quot;.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; </p> <p dir=\"rtl\">&#1605;&#1605;&#1585;&#1617;&#1590;&#1577; &#1601;&#1610; &#1575;&#1604;&#1605;&#1587;&#1578;&#1608;&#1589;&#1601; &#1575;&#1604;&#1584;&#1610; &#1603;&#1575;&#1606; &#1610;&#1593;&#1575;&#1610;&#1606; &#1601;&#1610;&#1607; &#1573;&#1610;&#1604;&#1610; &#1602;&#1575;&#1604;&#1578;: &quot;&#1571;&#1606;&#1575; &#1605;&#1585;&#1585;&#1578; &#1576;&#1571;&#1588;&#1610;&#1575;&#1569; &#1603;&#1579;&#1610;&#1585;&#1577; &#1575;&#1604;&#1589;&#1593;&#1608;&#1576;&#1577; &#1601;&#1610; &#1581;&#1610;&#1575;&#1578;&#1610; &#1608;&#1591;&#1604;&#1576;&#1578; &#1588;&#1601;&#1575;&#1593;&#1577; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610; &#1608;&#1587;&#1575;&#1593;&#1583;&#1606;&#1610; &#1603;&#1579;&#1610;&#1585;&#1611;&#1575;. &#1571;&#1593;&#1578;&#1576;&#1585;&#1607; &#1588;&#1601;&#1610;&#1593;&#1610; &#1601;&#1610; &#1575;&#1604;&#1587;&#1605;&#1575;&#1569;. &#1591;&#1610;&#1576; &#1580;&#1583;&#1575;&#1548; &#1588;&#1575;&#1591;&#1585;&#1548; &#1608;&#1580;&#1607;&#1607; &#1610;&#1588;&#1593; &#1606;&#1608;&#1585;&#1575;&#1548; &#1605;&#1576;&#1578;&#1587;&#1605; &#1583;&#1575;&#1574;&#1605;&#1575;&#1548; &#1578;&#1608;&#1575;&#1590;&#1593; &#1605;&#1588; &#1591;&#1576;&#1610;&#1593;&#1610; .&#1571;&#1606;&#1575; &#1571;&#1603;&#1610;&#1583;&#1577; &#1575;&#1606;&#1607; &#1602;&#1583;&#1610;&#1587; &#1601;&#1610; &#1575;&#1604;&#1587;&#1605;&#1575;&#1569;&quot;.</p> <p dir=\"rtl\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&#1575;&#1605;&#1585;&#1571;&#1577; &#1604;&#1575; &#1578;&#1593;&#1585;&#1601;&#1607; &#1608;&#1604;&#1575; &#1571;&#1581;&#1583; &#1571;&#1582;&#1576;&#1585;&#1607;&#1575; &#1588;&#1610;&#1574;&#1575; &#1593;&#1606;&#1607; &#1605;&#1606; &#1602;&#1576;&#1604;&#1548; &#1585;&#1571;&#1578; &#1588;&#1575;&#1576;&#1575; &#1601;&#1610; &#1606;&#1608;&#1605;&#1607;&#1575; &#1605;&#1590;&#1610;&#1569; &#1575;&#1604;&#1608;&#1580;&#1607;&#1548; &#1575;&#1602;&#1578;&#1585;&#1576;&#1578; &#1605;&#1606;&#1607;&#1548; &#1575;&#1576;&#1578;&#1587;&#1605; &#1604;&#1607;&#1575; &#1608;&#1571;&#1593;&#1591;&#1575;&#1607;&#1575; &#1603;&#1578;&#1575;&#1576;&#1575; &#1608;&#1603;&#1575;&#1606; &#1575;&#1604;&#1581;&#1575;&#1574;&#1591; &#1608;&#1585;&#1575;&#1569;&#1607; &#1575;&#1586;&#1585;&#1602; &#1575;&#1604;&#1604;&#1608;&#1606;&#1548; &#1571;&#1582;&#1584;&#1578; &#1575;&#1604;&#1603;&#1578;&#1575;&#1576; &#1608;&#1582;&#1585;&#1580;&#1578; &#1610;&#1605;&#1604;&#1571;&#1607;&#1575; &#1601;&#1585;&#1581; &#1608;&#1594;&#1576;&#1591;&#1577;. &#1587;&#1605;&#1593;&#1578; &#1575;&#1604;&#1606;&#1575;&#1587; &#1610;&#1578;&#1607;&#1575;&#1605;&#1587;&#1608;&#1606; &#1608;&#1610;&#1602;&#1608;&#1604;&#1608;&#1606; &#1575;&#1606;&#1607; &quot;&#1575;&#1604;&#1605;&#1587;&#1610;&#1581; &quot; &#1608;&#1593;&#1604;&#1609; &#1607;&#1584;&#1575; &#1575;&#1587;&#1578;&#1610;&#1602;&#1592;&#1578; &#1608;&#1602;&#1575;&#1604;&#1578; &#1601;&#1610; &#1606;&#1601;&#1587;&#1607;&#1575; &#1610;&#1605;&#1603;&#1606; &#1571;&#1606; &#1610;&#1603;&#1608;&#1606; &#1602;&#1583;&#1610;&#1587;&#1575; &#1608;&#1610;&#1603;&#1608;&#1606; &#1604;&#1607;&#1584;&#1575; &#1575;&#1604;&#1581;&#1604;&#1605; &#1578;&#1601;&#1587;&#1610;&#1585;. &#1608;&#1576;&#1593;&#1583; &#1610;&#1608;&#1605;&#1610;&#1606; &#1591;&#1604;&#1576; &#1605;&#1606;&#1607;&#1575; &#1586;&#1608;&#1580;&#1607;&#1575; &#1605;&#1585;&#1575;&#1601;&#1602;&#1578;&#1607; &#1573;&#1604;&#1609; &#1581;&#1601;&#1604; &#1578;&#1608;&#1602;&#1610;&#1593; &#1603;&#1578;&#1575;&#1576; &#1604;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610; &#1602;&#1585;&#1593;&#1608;&#1606;&#1610;&#1548; &#1604;&#1605; &#1578;&#1588;&#1571; &#1571;&#1606; &#1578;&#1584;&#1607;&#1576; &#1601;&#1610; &#1575;&#1604;&#1576;&#1583;&#1575;&#1610;&#1577;&#1548; &#1608;&#1604;&#1605;&#1575; &#1571;&#1589;&#1585;&#1617; &#1586;&#1608;&#1580;&#1607;&#1575; &#1585;&#1575;&#1601;&#1602;&#1578;&#1607;. &#1608;&#1593;&#1606;&#1583;&#1605;&#1575; &#1583;&#1582;&#1604;&#1578; &#1575;&#1604;&#1602;&#1575;&#1593;&#1577;&#1548; &#1608;&#1585;&#1571;&#1578; &#1575;&#1604;&#1603;&#1578;&#1575;&#1576; &#1608;&#1606;&#1592;&#1585;&#1578; &#1573;&#1604;&#1609; &#1575;&#1604;&#1594;&#1604;&#1575;&#1601; &#1608;&#1573;&#1584;&#1575; &#1604;&#1608;&#1606;&#1607; &#1576;&#1604;&#1608;&#1606; &#1575;&#1604;&#1581;&#1575;&#1574;&#1591; &#1575;&#1604;&#1584;&#1610; &#1585;&#1571;&#1578;&#1607; &#1582;&#1604;&#1601; &#1575;&#1604;&#1588;&#1575;&#1576;&#1548; &#1608;&#1573;&#1584;&#1575; &#1576;&#1589;&#1608;&#1585;&#1577; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610; &#1575;&#1604;&#1605;&#1591;&#1576;&#1608;&#1593;&#1577; &#1593;&#1604;&#1609; &#1575;&#1604;&#1594;&#1604;&#1575;&#1601; &#1607;&#1610; &#1589;&#1608;&#1585;&#1577; &#1575;&#1604;&#1588;&#1575;&#1576; &#1575;&#1604;&#1584;&#1610; &#1585;&#1571;&#1578;&#1607; &#1601;&#1610; &#1575;&#1604;&#1581;&#1604;&#1605;. &#1601;&#1603;&#1575;&#1606;&#1578; &#1605;&#1601;&#1575;&#1580;&#1571;&#1577; &#1604;&#1607;&#1575; &#1608;&#1607;&#1610; &#1604;&#1605; &#1578;&#1593;&#1585;&#1601;&#1607; &#1602;&#1576;&#1604;&#1575;&#1611; &#1608;&#1604;&#1605; &#1578;&#1585;&#1609; &#1604;&#1607; &#1589;&#1608;&#1585;&#1577; &#1605;&#1606; &#1602;&#1576;&#1604;. &#1608;&#1593;&#1606;&#1583;&#1605;&#1575; &#1587;&#1605;&#1593;&#1578; &#1593;&#1606; &#1576;&#1593;&#1590; &#1605;&#1606; &#1603;&#1578;&#1575;&#1576;&#1575;&#1578;&#1607; &#1608;&#1570;&#1585;&#1575;&#1574;&#1607; &#1608;&#1605;&#1575; &#1602;&#1610;&#1604; &#1593;&#1606;&#1607; &#1608;&#1593;&#1606; &#1571;&#1593;&#1605;&#1575;&#1604;&#1607; &#1575;&#1604;&#1573;&#1606;&#1587;&#1575;&#1606;&#1610;&#1577; &#1608;&#1575;&#1604;&#1582;&#1610;&#1585;&#1610;&#1577; &#1602;&#1575;&#1604;&#1578;: &quot;&#1571;&#1607;&#1610; &#1589;&#1608;&#1585;&#1577; &#1605;&#1606; &#1589;&#1608;&#1585; &#1575;&#1604;&#1593;&#1580;&#1575;&#1574;&#1576; &#1580;&#1587;&#1583;&#1607;&#1575; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610; &#1602;&#1585;&#1593;&#1608;&#1606;&#1610; &#1601;&#1610; &#1588;&#1582;&#1589;&#1610;&quot;&#1567;</p> <p dir=\"rtl\">&nbsp;</p> <p style=\"text-align: justify; text-indent: 0.5in; direction: rtl; unicode-bidi: embed\" dir=\"rtl\" class=\"MsoNormal\">&#1575;&#1605;&#1585;&#1571;&#1577; &#1571;&#1578;&#1578; &#1608;&#1575;&#1576;&#1606;&#1578;&#1607;&#1575; &#1575;&#1604;&#1576;&#1575;&#1604;&#1594;&#1577; &#1605;&#1606; &#1575;&#1604;&#1593;&#1605;&#1585; &#1579;&#1604;&#1575;&#1579; &#1587;&#1606;&#1608;&#1575;&#1578; &#1608;&#1606;&#1589;&#1601; &#1573;&#1604;&#1609; &#1593;&#1610;&#1575;&#1583;&#1578;&#1610; &#1605;&#1587;&#1575;&#1569;. &#1603;&#1575;&#1606;&#1578; &#1575;&#1604;&#1575;&#1576;&#1606;&#1577; &#1578;&#1588;&#1603;&#1608; &#1605;&#1606; &#1575;&#1585;&#1578;&#1601;&#1575;&#1593; &#1601;&#1610; &#1575;&#1604;&#1581;&#1585;&#1575;&#1585;&#1577; &#1608;&#1578;&#1604;&#1607;&#1579;. &#1576;&#1593;&#1583; &#1605;&#1593;&#1575;&#1610;&#1606;&#1578;&#1607;&#1575; &#1602;&#1604;&#1578; &#1604;&#1608;&#1575;&#1604;&#1583;&#1578;&#1607;&#1575; &#1571;&#1606;&#1607;&#1575; &#1578;&#1593;&#1575;&#1606;&#1610; &#1605;&#1606; &#1575;&#1604;&#1578;&#1607;&#1575;&#1576; &#1601;&#1610; &#1575;&#1604;&#1585;&#1574;&#1578;&#1610;&#1606; &#1608;&#1585;&#1576;&#1605;&#1575; &#1606;&#1603;&#1608;&#1606; &#1605;&#1590;&#1591;&#1585;&#1610;&#1606; &#1604;&#1573;&#1583;&#1582;&#1575;&#1604;&#1607;&#1575; &#1573;&#1604;&#1609; &#1575;&#1604;&#1605;&#1587;&#1578;&#1588;&#1601;&#1609;. &#1576;&#1603;&#1578; &#1575;&#1604;&#1571;&#1605; &#1604;&#1581;&#1575;&#1604; &#1575;&#1604;&#1589;&#1594;&#1610;&#1585;&#1577; &#1608;&#1604;&#1593;&#1583;&#1605; &#1602;&#1583;&#1585;&#1578;&#1607;&#1575; &#1575;&#1604;&#1605;&#1575;&#1583;&#1610;&#1577;. &#1601;&#1571;&#1593;&#1591;&#1610;&#1578;&#1607;&#1575; &#1583;&#1608;&#1575;&#1569; &#1604;&#1604;&#1575;&#1604;&#1578;&#1607;&#1575;&#1576; &#1608;&#1570;&#1582;&#1585; &#1604;&#1604;&#1587;&#1593;&#1575;&#1604;. &#1608;&#1601;&#1610; &#1575;&#1604;&#1610;&#1608;&#1605; &#1575;&#1604;&#1578;&#1575;&#1604;&#1610; &#1589;&#1576;&#1575;&#1581;&#1611;&#1575; &#1571;&#1578;&#1578;&#1606;&#1610; &#1573;&#1604;&#1609; &#1575;&#1604;&#1593;&#1610;&#1575;&#1583;&#1577; &#1576;&#1575;&#1603;&#1585;&#1611;&#1575; &#1591;&#1575;&#1604;&#1576;&#1577; &#1605;&#1606;&#1610; &#1605;&#1593;&#1575;&#1608;&#1583;&#1577; &#1601;&#1581;&#1589; &#1575;&#1604;&#1589;&#1594;&#1610;&#1585;&#1577;. &#1604;&#1576;&#1610;&#1578; &#1575;&#1604;&#1591;&#1604;&#1576; &#1608;&#1593;&#1606;&#1583;&#1605;&#1575; &#1593;&#1575;&#1610;&#1606;&#1578; &#1575;&#1604;&#1585;&#1574;&#1578;&#1610;&#1606;&#1548; &#1575;&#1587;&#1578;&#1594;&#1585;&#1576;&#1578; &#1575;&#1604;&#1571;&#1605;&#1585; &#1604;&#1571;&#1606; &#1575;&#1604;&#1583;&#1608;&#1575;&#1569; &#1604;&#1605; &#1610;&#1605;&#1590;&#1610; &#1593;&#1604;&#1610;&#1607; &#1575;&#1579;&#1606;&#1575; &#1593;&#1588;&#1585; &#1587;&#1575;&#1593;&#1577; &#1604;&#1603;&#1610; &#1578;&#1589;&#1576;&#1581; &#1593;&#1604;&#1609; &#1607;&#1584;&#1607; &#1575;&#1604;&#1581;&#1575;&#1604;&#1577; &#1575;&#1604;&#1580;&#1610;&#1583;&#1577;. &#1571;&#1582;&#1576;&#1585;&#1578;&#1606;&#1610; &#1575;&#1604;&#1608;&#1575;&#1604;&#1583;&#1577; &#1571;&#1606;&#1607;&#1575; &#1601;&#1610; &#1575;&#1604;&#1604;&#1610;&#1604; &#1608;&#1575;&#1576;&#1606;&#1578;&#1607;&#1575; &#1605;&#1578;&#1590;&#1575;&#1610;&#1602;&#1577; &#1591;&#1604;&#1576;&#1578; &#1605;&#1606; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610; &#1605;&#1587;&#1575;&#1593;&#1583;&#1578;&#1607;&#1575; &#1608;&#1588;&#1601;&#1575;&#1569; &#1575;&#1576;&#1606;&#1578;&#1607;&#1575;. &#1575;&#1587;&#1578;&#1580;&#1575;&#1576; &#1604;&#1607;&#1575; &#1587;&#1585;&#1610;&#1593;&#1575; &#1608;&#1578;&#1605;&#1603;&#1617;&#1606;&#1578; &#1575;&#1604;&#1589;&#1594;&#1610;&#1585;&#1577; &#1605;&#1606; &#1575;&#1604;&#1606;&#1608;&#1605; &#1608;&#1575;&#1587;&#1578;&#1610;&#1602;&#1592;&#1578; &#1601;&#1610; &#1589;&#1581;&#1577; &#1580;&#1610;&#1583;&#1577; &#1580;&#1583;&#1575; &#1608;&#1603;&#1571;&#1606; &#1588;&#1610;&#1574;&#1575; &#1604;&#1605; &#1610;&#1603;&#1606;. &#1602;&#1575;&#1604;&#1578; &#1575;&#1604;&#1571;&#1605; &#1575;&#1579;&#1585; &#1607;&#1584;&#1607; &#1575;&#1604;&#1581;&#1575;&#1583;&#1579;&#1577;: &quot;&#1573;&#1606;&#1606;&#1610; &#1575;&#1604;&#1570;&#1606; &#1575;&#1593;&#1578;&#1576;&#1585;&#1607; &#1602;&#1583;&#1610;&#1587;&#1575; &#1605;&#1606; &#1575;&#1604;&#1587;&#1605;&#1575;&#1569; &#1608;&#1575;&#1591;&#1604;&#1576; &#1588;&#1601;&#1575;&#1593;&#1578;&#1607; &#1583;&#1575;&#1574;&#1605;&#1611;&#1575;&quot;.&#1617;</p> <p dir=\"rtl\">&#1575;&#1605;&#1585;&#1571;&#1577; &#1603;&#1575;&#1607;&#1606; &#1604;&#1605; &#1578;&#1593;&#1585;&#1601;&#1607; &#1608;&#1604;&#1575; &#1585;&#1571;&#1578;&#1607; &#1602;&#1576;&#1604;&#1575;&#1548;&#1571;&#1582;&#1576;&#1585;&#1578; &#1593;&#1606;&#1607; &#1601;&#1610; &#1583;&#1610;&#1585; &#1604;&#1604;&#1585;&#1575;&#1607;&#1576;&#1575;&#1578; &#1608;&#1593;&#1606; &#1605;&#1586;&#1575;&#1610;&#1575;&#1607; &#1608;&#1570;&#1585;&#1575;&#1574;&#1607; &#1608;&#1571;&#1593;&#1605;&#1575;&#1604;&#1607; &#1575;&#1604;&#1582;&#1610;&#1585;&#1610;&#1577; &#1608;&#1571;&#1593;&#1591;&#1578;&#1607;&#1575; &#1575;&#1604;&#1585;&#1575;&#1607;&#1576;&#1577; &#1603;&#1578;&#1575;&#1576;&#1607;.&#1585;&#1571;&#1578; &#1601;&#1610; &#1606;&#1608;&#1605;&#1607;&#1575; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610; &#1605;&#1593; &#1575;&#1604;&#1587;&#1610;&#1583;&#1577; &#1575;&#1604;&#1593;&#1584;&#1585;&#1575;&#1569; &#1575;&#1604;&#1578;&#1610; &#1602;&#1575;&#1604;&#1578; &#1604;&#1607;&#1575; &#1575;&#1606;&#1607;&#1575; &#1601;&#1610; &#1586;&#1610;&#1575;&#1585;&#1577; &#1575;&#1604;&#1609; &#1604;&#1576;&#1606;&#1575;&#1606; &#1607;&#1610;&quot; &#1608;&#1605;&#1583;&#1610;&#1585; &#1571;&#1593;&#1605;&#1575;&#1604;&#1607;&#1575;&quot;&#1605;&#1588;&#1610;&#1585;&#1577; &#1576;&#1610;&#1583;&#1607;&#1575; &#1575;&#1604;&#1609; &#1575;&#1610;&#1604;&#1610; &#1575;&#1604;&#1608;&#1575;&#1602;&#1601; &#1576;&#1580;&#1575;&#1606;&#1576;&#1607;&#1575;&#1548;&#1608;&#1575;&#1606;&#1607;&#1575; &#1578;&#1587;&#1578;&#1591;&#1610;&#1593; &#1571;&#1606; &#1578;&#1591;&#1604;&#1576; &#1605;&#1606;&#1607; &#1608;&#1578;&#1587;&#1571;&#1604;&#1607; &#1605;&#1575; &#1578;&#1585;&#1610;&#1583;. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p> <p dir=\"rtl\">&#1591;&#1601;&#1604;&#1577; &#1578;&#1576;&#1604;&#1594; &#1605;&#1606; &#1575;&#1604;&#1593;&#1605;&#1585; &#1575;&#1585;&#1576;&#1593; &#1587;&#1606;&#1608;&#1575;&#1578; &#1587;&#1605;&#1593;&#1578; &#1593;&#1606; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610; &#1605;&#1606; &#1575;&#1605;&#1607;&#1575; &#1575;&#1604;&#1578;&#1610; &#1603;&#1575;&#1606;&#1578; &#1583;&#1575;&#1574;&#1605;&#1575;&quot; &#1578;&#1591;&#1604;&#1576;&#1607; &#1604;&#1605;&#1593;&#1575;&#1610;&#1606;&#1577; &#1605;&#1585;&#1590;&#1609; &#1605;&#1581;&#1578;&#1575;&#1580;&#1610;&#1606;. &#1584;&#1575;&#1578; &#1604;&#1610;&#1604;&#1577;&#1548; &#1602;&#1575;&#1604;&#1578; &#1575;&#1604;&#1591;&#1601;&#1604;&#1577; &#1604;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610; &#1602;&#1576;&#1604; &#1575;&#1606; &#1578;&#1606;&#1575;&#1605;:&quot; &#1610;&#1575; &#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610; &#1578;&#1582;&#1604;&#1610; &#1575;&#1604;&#1576;&#1575;&#1576;&#1575; &#1608;&#1575;&#1604;&#1605;&#1575;&#1605;&#1575; &#1608;&#1582;&#1575;&#1604;&#1608; &#1608;&#1575;&#1604;&#1578;&#1610;&#1578;&#1575; &#1608;&#1578;&#1589;&#1581;&#1581;&#1606;&#1610;&quot;. &#1575;&#1604;&#1587;&#1575;&#1593;&#1577; &#1575;&#1604;&#1581;&#1575;&#1583;&#1610;&#1577; &#1593;&#1588;&#1585;&#1577; &#1604;&#1610;&#1604;&#1575;&quot;&#1548; &#1589;&#1585;&#1582;&#1578; &#1575;&#1604;&#1591;&#1601;&#1604;&#1577; &#1601;&#1575;&#1587;&#1578;&#1610;&#1602;&#1592;&#1578; &#1575;&#1605;&#1607;&#1575; &#1608;&#1587;&#1571;&#1604;&#1578;&#1607;&#1575; &#1605;&#1575; &#1576;&#1607;&#1575; &#1601;&#1602;&#1575;&#1604;&#1578; &#1604;&#1607;&#1575; &#1575;&#1606;&#1607;&#1575; &#1585;&#1571;&#1578; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610; &#1608;&#1606;&#1575;&#1605;&#1578;.</p> <p dir=\"rtl\">&#1601;&#1610; &#1575;&#1604;&#1589;&#1576;&#1575;&#1581; &#1575;&#1604;&#1576;&#1575;&#1603;&#1585;&#1548; &#1603;&#1585;&#1617;&#1585;&#1578; &#1575;&#1604;&#1591;&#1601;&#1604;&#1577; &#1604;&#1571;&#1605;&#1607;&#1575; &#1575;&#1606;&#1607;&#1575; &#1585;&#1571;&#1578; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610;. &#1593;&#1606;&#1583;&#1607;&#1575; &#1575;&#1582;&#1584;&#1578; &#1575;&#1604;&#1575;&#1605; &#1578;&#1585;&#1610;&#1607;&#1575; &#1589;&#1608;&#1585; &#1575;&#1604;&#1602;&#1583;&#1610;&#1587;&#1610;&#1606; &#1593;&#1604;&#1617;&#1607;&#1575; &#1585;&#1571;&#1578; &#1575;&#1581;&#1583;&#1575;&quot; &#1605;&#1606;&#1607;&#1605;. &#1601;&#1602;&#1575;&#1604;&#1578; &#1575;&#1604;&#1591;&#1601;&#1604;&#1577; &#1604;&#1575;.</p> <p style=\"text-align: justify; direction: rtl; unicode-bidi: embed\" dir=\"rtl\" class=\"MsoNormal\">&#1575;&#1589;&#1591;&#1581;&#1576;&#1578;&#1607;&#1575; &#1575;&#1605;&#1607;&#1575; &#1575;&#1604;&#1609; &#1593;&#1610;&#1575;&#1583;&#1578;&#1610; &#1608;&#1603;&#1575;&#1606; &#1593;&#1606;&#1583;&#1610; &#1605;&#1585;&#1610;&#1590;&#1577; &#1601;&#1610; &#1575;&#1604;&#1593;&#1610;&#1575;&#1583;&#1577;. &#1583;&#1582;&#1604;&#1578; &#1575;&#1604;&#1589;&#1594;&#1610;&#1585;&#1577; &#1608;&#1593;&#1606;&#1583;&#1605;&#1575; &#1585;&#1571;&#1578; &#1589;&#1608;&#1585;&#1577; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610;&#1548; &#1583;&#1604;&#1617;&#1578; &#1593;&#1604;&#1610;&#1607; &#1576;&#1571;&#1589;&#1576;&#1593;&#1607;&#1575; &#1602;&#1575;&#1574;&#1604;&#1577; &#1575;&#1606;&#1607; &#1607;&#1608; &#1575;&#1604;&#1584;&#1610; &#1585;&#1571;&#1578;&#1607; &#1601;&#1610; &#1606;&#1608;&#1605;&#1607;&#1575; &#1608;&#1575;&#1602;&#1578;&#1585;&#1576;&#1578; &#1605;&#1606; &#1575;&#1604;&#1589;&#1608;&#1585;&#1577; &#1608;&#1602;&#1576;&#1617;&#1604;&#1578;&#1607;&#1575;. &#1587;&#1571;&#1604;&#1606;&#1575;&#1607;&#1575; &#1593;&#1606;&#1583;&#1574;&#1584; &#1605;&#1575;&#1584;&#1575; &#1602;&#1575;&#1604; &#1604;&#1603;&#1567; &#1575;&#1580;&#1575;&#1576;&#1578; &#1602;&#1575;&#1604; &#1604;&#1610;:&quot; &#1585;&#1581; &#1582;&#1604;&#1610;&#1603;&#1610;&#1578;&#1589;&#1581;&#1610;&quot;.&#1608;&#1575;&#1593;&#1575;&#1583;&#1578; &#1604;&#1606;&#1575; &#1603;&#1610;&#1601; &#1591;&#1604;&#1576;&#1578; &#1605;&#1606;&#1607; &#1602;&#1576;&#1604; &#1575;&#1606; &#1578;&#1606;&#1605; &#1608;&#1605;&#1575;&#1584;&#1575; &#1585;&#1583;&#1617; &#1593;&#1604;&#1610;&#1607;&#1575;. </p> <p dir=\"rtl\">&#1575;&#1604;&#1605;&#1585;&#1610;&#1590;&#1577; &#1575;&#1604;&#1578;&#1610; &#1603;&#1575;&#1606;&#1578; &#1593;&#1606;&#1583;&#1610; &#1601;&#1610; &#1575;&#1604;&#1593;&#1610;&#1575;&#1583;&#1577; &#1575;&#1581;&#1587;&#1578; &#1576;&#1602;&#1588;&#1593;&#1585;&#1610;&#1585;&#1577; &#1575;&#1605;&#1578;&#1604;&#1603;&#1578;&#1607;&#1575; &#1608;&#1602;&#1575;&#1604;&#1578;:&quot; &#1607;&#1584;&#1607; &#1591;&#1601;&#1604;&#1577; &#1576;&#1585;&#1610;&#1574;&#1577; &#1604;&#1575; &#1578;&#1593;&#1585;&#1601; &#1575;&#1606; &#1578;&#1603;&#1584;&#1576;&#1548; &#1601;&#1607;&#1610; &#1576;&#1575;&#1604;&#1578;&#1571;&#1603;&#1610;&#1583; &#1585;&#1571;&#1578;&#1607; &#1601;&#1593;&#1604;&#1575;&quot; . &quot;</p><p dir=\"rtl\"><strong>&#1571;&#1579;&#1585; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610;&nbsp; &#1602;&#1585;&#1593;&#1608;&#1606;&#1610;</strong> </p><div align=\"right\">&#1571;&#1579;&#1585; &#1593;&#1605;&#1610;&#1602; &#1608;&#1603;&#1576;&#1610;&#1585; &#1578;&#1585;&#1603;&#1607; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610;&nbsp; &#1602;&#1585;&#1593;&#1608;&#1606;&#1610; &#1601;&#1610; &#1602;&#1604;&#1576; &#1603;&#1604;&#1617; &#1605;&#1606; &#1593;&#1585;&#1601;&#1607; &#1605;&#1606; &#1571;&#1607;&#1604; &#1608;&#1586;&#1605;&#1604;&#1575;&#1569; &#1608;&#1571;&#1589;&#1581;&#1575;&#1576; &#1608;&#1605;&#1585;&#1590;&#1609; &#1608;&#1605;&#1581;&#1578;&#1575;&#1580;&#1610;&#1606;&#1548; &#1601;&#1605;&#1575; &#1602;&#1589;&#1583;&#1607; &#1605;&#1585;&#1610;&#1590; &#1571;&#1608; &#1605;&#1581;&#1578;&#1575;&#1580; &#1573;&#1604;&#1575;&#1617; &#1608;&#1605;&#1583;&#1617; &#1610;&#1583; &#1575;&#1604;&#1593;&#1608;&#1606; &#1608;&#1575;&#1604;&#1605;&#1587;&#1575;&#1593;&#1583;&#1577; &#1573;&#1604;&#1610;&#1607;. &#1608;&#1603;&#1575;&#1606; &#1605;&#1606; &#1582;&#1604;&#1575;&#1604; &#1593;&#1604;&#1575;&#1602;&#1578;&#1607; &#1605;&#1593; &#1571;&#1602;&#1585;&#1575;&#1606;&#1607; &#1608;&#1571;&#1607;&#1604;&#1607; &#1608;&#1605;&#1593;&#1575;&#1585;&#1601;&#1607; &#1608;&#1605;&#1585;&#1590;&#1575;&#1607;&#1548; &#1610;&#1606;&#1588;&#1585; &#1575;&#1604;&#1573;&#1610;&#1605;&#1575;&#1606; &#1608;&#1575;&#1604;&#1578;&#1593;&#1604;&#1617;&#1602; &#1576;&#1575;&#1604;&#1601;&#1590;&#1575;&#1574;&#1604; &#1608;&#1593;&#1605;&#1604; &#1575;&#1604;&#1582;&#1610;&#1585;. &#1601;&#1603;&#1575;&#1606; &#1575;&#1604;&#1580;&#1605;&#1610;&#1593; &#1610;&#1578;&#1571;&#1579;&#1585; &#1576;&#1605;&#1575; &#1610;&#1606;&#1602;&#1604; &#1573;&#1604;&#1610;&#1607;&#1605; &#1605;&#1606; &#1571;&#1601;&#1603;&#1575;&#1585; &#1579;&#1602;&#1575;&#1601;&#1610;&#1577; &#1608;&#1593;&#1604;&#1605;&#1610;&#1577; &#1608;&#1583;&#1610;&#1606;&#1610;&#1577; &#1608;&#1601;&#1606;&#1610;&#1577;&#1548; &#1608;&#1605;&#1606; &#1605;&#1576;&#1575;&#1583;&#1574; &#1587;&#1575;&#1605;&#1610;&#1577; &#1578;&#1580;&#1593;&#1604;&#1607;&#1605; &#1610;&#1602;&#1583;&#1617;&#1585;&#1608;&#1606;&#1607; &#1608;&#1610;&#1578;&#1593;&#1604;&#1602;&#1608;&#1606; &#1576;&#1607; &#1576;&#1581;&#1610;&#1579; &#1604;&#1575; &#1610;&#1586;&#1575;&#1604;&#1608;&#1606; &#1610;&#1584;&#1603;&#1585;&#1608;&#1606;&#1607; &#1576;&#1575;&#1604;&#1582;&#1610;&#1585; &#1581;&#1578;&#1617;&#1609; &#1575;&#1604;&#1610;&#1608;&#1605;. &#1604;&#1602;&#1583; &#1571;&#1579;&#1617;&#1585; &#1601;&#1610; &#1605;&#1593;&#1575;&#1585;&#1601;&#1607; &#1576;&#1578;&#1606;&#1605;&#1610;&#1577; &#1585;&#1608;&#1581; &#1575;&#1604;&#1605;&#1581;&#1576;&#1617;&#1577; &#1608;&#1593;&#1583;&#1605; &#1575;&#1604;&#1571;&#1584;&#1609; &#1608;&#1575;&#1581;&#1578;&#1585;&#1575;&#1605; &#1575;&#1604;&#1605;&#1582;&#1604;&#1608;&#1602;&#1575;&#1578; &#1603;&#1604;&#1617;&#1607;&#1575; &#1608;&#1581;&#1602;&#1617;&#1607;&#1575; &#1601;&#1610; &#1575;&#1604;&#1581;&#1610;&#1575;&#1577;. </div><p align=\"right\"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#1571;&#1581;&#1583; &#1571;&#1587;&#1575;&#1578;&#1584;&#1578;&#1607; &#1601;&#1610; &#1575;&#1604;&#1580;&#1575;&#1605;&#1593;&#1577; &#1602;&#1575;&#1604;:&quot; &#1603;&#1575;&#1606; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610;&nbsp; &#1593;&#1576;&#1602;&#1585;&#1610;&#1611;&#1575;&#1548; &#1605;&#1605;&#1610;&#1586;&#1611;&#1575;&#1548; &#1587;&#1575;&#1576;&#1602;&#1611;&#1575; &#1604;&#1586;&#1605;&#1606;&#1607;. &#1608;&#1571;&#1606;&#1606;&#1610; &#1593;&#1604;&#1609; &#1610;&#1602;&#1610;&#1606; &#1575;&#1606;&#1608; &#1610;&#1604;&#1604;&#1610; &#1576;&#1610;&#1587;&#1576;&#1602; &#1586;&#1605;&#1606;&#1607;&#1548; &#1605;&#1575; &#1576;&#1610;&#1593;&#1610;&#1588; &#1603;&#1578;&#1610;&#1585; &#1593;&#1604;&#1609; &#1575;&#1604;&#1571;&#1585;&#1590;&quot;.</p><div align=\"justify\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#1586;&#1605;&#1610;&#1604; &#1604;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610; &#1602;&#1575;&#1604;: &quot;&#1593;&#1604;&#1575;&#1602;&#1577; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610; &#1576;&#1575;&#1604;&#1604;&#1607; &#1602;&#1608;&#1610;&#1577; &#1580;&#1583;&#1575; &#1602;&#1585;&#1610;&#1576; &#1605;&#1606;&#1607; &#1548; &#1604;&#1575; &#1576;&#1604; &#1571;&#1589;&#1576;&#1581; &#1608;&#1575;&#1581;&#1583;&#1575; &#1605;&#1593;&#1607;. &#1605;&#1575; &#1591;&#1604;&#1576; &#1588;&#1610; &#1605;&#1606;&#1607; &#1608;&#1605;&#1575;&#1593;&#1605;&#1604; &#1608;&#1604;&#1575; &#1605;&#1587;&#1575;&#1608;&#1605;&#1577;. &#1578;&#1602;&#1585;&#1576; &#1605;&#1606; &#1575;&#1604;&#1605;&#1587;&#1610;&#1581;. &#1573;&#1610;&#1605;&#1575;&#1606;&#1607; &#1605;&#1591;&#1604;&#1602;. &#1608;&#1607;&#1608; &#1575;&#1604;&#1602;&#1575;&#1574;&#1604; &#1604;&#1578;&#1603;&#1606; &#1605;&#1588;&#1610;&#1574;&#1578;&#1603; &#1610;&#1575; &#1585;&#1576;. &#1604;&#1591;&#1610;&#1601; &#1575;&#1604;&#1605;&#1593;&#1588;&#1585;&#1548; &#1591;&#1610;&#1576; &#1575;&#1604;&#1602;&#1604;&#1576;&#1548; &#1604;&#1575; &#1610;&#1593;&#1585;&#1601; &#1575;&#1604;&#1578;&#1603;&#1576;&#1585;. &#1603;&#1575;&#1606; &#1604;&#1610; &#1575;&#1604;&#1571;&#1582; &#1608;&#1575;&#1604;&#1589;&#1583;&#1610;&#1602;&#1548; &#1608;&#1576;&#1585;&#1571;&#1610;&#1610; &#1571;&#1606;&#1607; &#1571;&#1589;&#1576;&#1581; &#1575;&#1604;&#1570;&#1606; &#1591;&#1576;&#1610;&#1576; &#1606;&#1601;&#1608;&#1587; &#1576;&#1593;&#1583;&#1605;&#1575; &#1603;&#1575;&#1606; &#1591;&#1576;&#1610;&#1576; &#1602;&#1604;&#1608;&#1576;&quot;. </p><div align=\"justify\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp;&nbsp; &#1575;&#1581;&#1583; &#1586;&#1605;&#1604;&#1575;&#1574;&#1607; &#1602;&#1575;&#1604;: &quot; &#1575;&#1610;&#1604;&#1610; &#1593;&#1575;&#1588; &#1581;&#1610;&#1575;&#1577; &#1576;&#1575;&#1604;&#1605;&#1581;&#1576;&#1577;&#1548; &#1576;&#1575;&#1604;&#1573;&#1610;&#1605;&#1575;&#1606;&#1548; &#1601;&#1610; &#1582;&#1583;&#1605;&#1577; &#1575;&#1604;&#1573;&#1606;&#1587;&#1575;&#1606; &#1608;&#1576;&#1605;&#1588;&#1610;&#1574;&#1577; &#1575;&#1604;&#1604;&#1607; &#1608;&#1601;&#1585;&#1581; &#1575;&#1604;&#1585;&#1576; &#1603;&#1575;&#1606; &#1604;&#1583;&#1610;&#1607; &#1575;&#1606;&#1587;&#1580;&#1575;&#1605; &#1576;&#1610;&#1606; &#1575;&#1604;&#1601;&#1603;&#1585; &#1608;&#1575;&#1604;&#1593;&#1605;&#1604;&quot;. </p><div align=\"justify\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#1586;&#1605;&#1610;&#1604; &#1570;&#1582;&#1585; &#1602;&#1575;&#1604; &#1593;&#1606;&#1607;: &quot;&#1591;&#1576;&#1610;&#1576; &#1604;&#1575;&#1605;&#1593; &#1606;&#1588;&#1571; &#1593;&#1604;&#1609; &#1578;&#1585;&#1576;&#1610;&#1577; &#1605;&#1587;&#1610;&#1581;&#1610;&#1577; &#1608;&#1573;&#1610;&#1605;&#1575;&#1606; &#1603;&#1576;&#1610;&#1585; &#1608;&#1604;&#1605;&#1575; &#1578;&#1580;&#1585;&#1576; &#1606;&#1601;&#1611;&#1584; &#1605;&#1575; &#1603;&#1575;&#1606; &#1578;&#1585;&#1576;&#1609; &#1593;&#1604;&#1610;&#1607;.&#1570;&#1605;&#1606; &#1576;&#1575;&#1604;&#1604;&#1607;&#1548; &#1576;&#1575;&#1604;&#1581;&#1602;&#1610;&#1602;&#1577; &#1608;&#1576;&#1575;&#1604;&#1602;&#1610;&#1575;&#1605;&#1577;&quot;.</p><div align=\"justify\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#1586;&#1605;&#1610;&#1604; &#1570;&#1582;&#1585; &#1602;&#1575;&#1604; &#1593;&#1606;&#1607;:&nbsp; &quot;&#1603;&#1575;&#1606; &#1593;&#1604;&#1609; &#1591;&#1608;&#1604; &#1593;&#1606;&#1583;&#1607; &#1575;&#1604;&#1587;&#1604;&#1575;&#1605; &#1608;&#1575;&#1604;&#1585;&#1575;&#1581;&#1577; &#1576;&#1606;&#1601;&#1587;&#1607;. &#1603;&#1575;&#1606; &#1607;&#1608; &#1610;&#1588;&#1580;&#1593;&#1606;&#1575;. &#1593;&#1606;&#1583;&#1607; &#1578;&#1602;&#1576;&#1604; &#1604;&#1605;&#1588;&#1610;&#1574;&#1577; &#1575;&#1604;&#1604;&#1607; &#1608;&#1581;&#1610;&#1575;&#1577; &#1605;&#1585;&#1578;&#1575;&#1581;&#1577; &#1576;&#1610;&#1606;&#1607; &#1608;&#1576;&#1610;&#1606; &#1606;&#1601;&#1587;&#1607;. &#1607;&#1608; &#1601;&#1582;&#1585; &#1608;&#1585;&#1605;&#1586; &#1604;&#1606;&#1575;. &#1603;&#1605; &#1603;&#1575;&#1606; &#1593;&#1592;&#1610;&#1605;&#1611;&#1575;&quot;.</p><div align=\"justify\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp;&nbsp; &#1586;&#1605;&#1610;&#1604; &#1570;&#1582;&#1585; &#1602;&#1575;&#1604; &#1593;&#1606;&#1607;: &quot;&#1575;&#1610;&#1604;&#1610;&nbsp; &#1603;&#1575;&#1606; &#1603;&#1579;&#1610;&#1585; &#1575;&#1604;&#1573;&#1610;&#1605;&#1575;&#1606;&#1548; &#1593;&#1586;&#1617;&#1586; &#1604;&#1610; &#1573;&#1610;&#1605;&#1575;&#1606;&#1610;. &#1605;&#1575; &#1603;&#1575;&#1606; &#1593;&#1606;&#1583;&#1607; &#1571;&#1610; &#1582;&#1608;&#1601; &#1605;&#1606; &#1575;&#1604;&#1605;&#1608;&#1578; &#1604;&#1575; &#1576;&#1604; &#1575;&#1606;&#1578;&#1589;&#1585; &#1593;&#1604;&#1609; &#1575;&#1604;&#1605;&#1608;&#1578; &#1608;&#1575;&#1606;&#1578;&#1602;&#1604; &#1573;&#1604;&#1609; &#1581;&#1610;&#1575;&#1577; &#1575;&#1604;&#1582;&#1604;&#1608;&#1583;. &#1610;&#1578;&#1603;&#1604;&#1605; &#1573;&#1604;&#1609; &#1575;&#1604;&#1604;&#1607; &#1608;&#1610;&#1578;&#1581;&#1583;&#1579; &#1601;&#1610; &#1606;&#1601;&#1587; &#1575;&#1604;&#1608;&#1602;&#1578; &#1601;&#1610; &#1606;&#1592;&#1585;&#1577; &#1578;&#1608;&#1585;&#1575;&#1578;&#1610;&#1577;. &#1575;&#1610;&#1604;&#1610;&nbsp; &#1578;&#1594;&#1604;&#1576; &#1593;&#1604;&#1609; &#1575;&#1604;&#1605;&#1585;&#1590; &#1608;&#1578;&#1608;&#1575;&#1589;&#1604; &#1605;&#1593; &#1575;&#1604;&#1604;&#1607; &#1602;&#1576;&#1604; &#1571;&#1606; &#1610;&#1606;&#1578;&#1602;&#1604; &#1573;&#1604;&#1610;&#1607;. &#1602;&#1608;&#1577; &#1573;&#1610;&#1605;&#1575;&#1606;&#1607; &#1571;&#1608;&#1589;&#1604;&#1578;&#1607; &#1573;&#1604;&#1609; &#1607;&#1584;&#1607; &#1575;&#1604;&#1606;&#1578;&#1610;&#1580;&#1577;. &#1608;&#1590;&#1593; &#1606;&#1601;&#1587;&#1607; &#1601;&#1610; &#1578;&#1589;&#1585;&#1601; &#1575;&#1604;&#1585;&#1614;&#1576;. &#1604;&#1605; &#1610;&#1602;&#1589;&#1585; &#1610;&#1608;&#1605;&#1611;&#1575; &#1593;&#1606; &#1578;&#1604;&#1576;&#1610;&#1577; &#1571;&#1610; &#1591;&#1604;&#1576; &#1604;&#1575; &#1601;&#1610; &#1575;&#1604;&#1606;&#1607;&#1575;&#1585; &#1608;&#1604;&#1575; &#1601;&#1610; &#1575;&#1604;&#1604;&#1610;&#1604;.</p><div align=\"justify\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp; &#1571;&#1587;&#1578;&#1575;&#1584; &#1601;&#1610; &#1575;&#1604;&#1571;&#1583;&#1576; &#1602;&#1575;&#1604; &#1593;&#1606;&#1607;: &quot;&#1601;&#1610; &#1591;&#1610;&#1575;&#1578; &#1581;&#1585;&#1608;&#1601;&#1607; &#1601;&#1608;&#1602;&#1610;&#1577; &#1575;&#1604;&#1601;&#1585;&#1581; &#1575;&#1604;&#1578;&#1608;&#1575;&#1589;&#1604;&#1610; &#1575;&#1604;&#1590;&#1605;&#1610;&#1585;&#1610; &#1575;&#1604;&#1578;&#1610; &#1571;&#1587;&#1602;&#1591;&#1578; &#1575;&#1604;&#1578;&#1603;&#1576;&#1585; &#1608;&#1575;&#1604;&#1578;&#1593;&#1580;&#1585;&#1601;. &#1578;&#1585;&#1575;&#1606;&#1575; &#1571;&#1610;&#1614; &#1591;&#1585;&#1575;&#1586; &#1605;&#1606; &#1575;&#1604;&#1606;&#1575;&#1587; &#1601;&#1602;&#1583;&#1606;&#1575;&quot;.&nbsp;</p><div align=\"justify\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp;&nbsp; &#1571;&#1581;&#1583; &#1575;&#1604;&#1603;&#1607;&#1606;&#1577; &#1602;&#1575;&#1604; &#1593;&#1606;&#1607;: &quot;&#1602;&#1583;&#1585;&#1578; &#1588;&#1608;&#1601; &#1576;&#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610; &#1610;&#1587;&#1608;&#1593; &#1610;&#1604;&#1604;&#1610; &#1593;&#1605; &#1610;&#1602;&#1576;&#1604; &#1610;&#1581;&#1605;&#1604; &#1575;&#1604;&#1589;&#1604;&#1610;&#1576;&#1548; &#1593;&#1605; &#1610;&#1602;&#1576;&#1604; &#1610;&#1602;&#1583;&#1605; &#1581;&#1575;&#1604;&#1607; &#1605;&#1606; &#1575;&#1580;&#1604; &#1575;&#1604;&#1570;&#1582;&#1585;&#1610;&#1606;&#1548; &#1608;&#1602;&#1576;&#1608;&#1604;&#1607; &#1603;&#1575;&#1606; &#1576;&#1601;&#1585;&#1581; &#1608;&#1575;&#1576;&#1578;&#1587;&#1575;&#1605;&#1577;. &#1593;&#1604;&#1611;&#1605;&#1606;&#1610; &#1571;&#1588;&#1610;&#1575;&#1569; &#1603;&#1579;&#1610;&#1585;&#1577; &#1578;&#1571;&#1605;&#1604;&#1578;&#1607;&#1575; &#1608;&#1589;&#1604;&#1611;&#1610;&#1578;&#1607;&#1575;. &#1593;&#1604;&#1611;&#1605;&#1606;&#1610; &#1588;&#1608; &#1610;&#1593;&#1606;&#1610; &#1575;&#1604;&#1589;&#1576;&#1585;&#1548; &#1588;&#1608; &#1610;&#1593;&#1606;&#1610; &#1610;&#1581;&#1605;&#1604; &#1575;&#1604;&#1589;&#1604;&#1610;&#1576; &#1608;&#1610;&#1602;&#1583;&#1605; &#1581;&#1575;&#1604;&#1607; &#1605;&#1606; &#1575;&#1580;&#1604; &#1575;&#1604;&#1570;&#1582;&#1585;&#1610;&#1606;. &#1603;&#1575;&#1606; &#1575;&#1610;&#1604;&#1610;&nbsp; &#1571;&#1610;&#1602;&#1608;&#1606;&#1577; &#1581;&#1610;&#1577;. &#1605;&#1585;&#1581;&#1604;&#1577; &#1605;&#1607;&#1605;&#1577; &#1601;&#1610; &#1581;&#1610;&#1575;&#1578;&#1610; &#1602;&#1590;&#1614;&#1610;&#1578;&#1607;&#1575; &#1605;&#1593;&#1607;. &#1603;&#1604;&#1605;&#1577; &#1570;&#1610; &#1605;&#1575; &#1587;&#1605;&#1593;&#1578;&#1607;&#1575; &#1605;&#1606;&#1607;&#1548; &#1593;&#1604;&#1609; &#1591;&#1608;&#1604; &#1603;&#1575;&#1606; &#1610;&#1588;&#1603;&#1585; &#1575;&#1604;&#1585;&#1576;. &#1605;&#1593;&#1607; &#1576;&#1583;&#1606;&#1575; &#1606;&#1589;&#1604;&#1610;. &#1601;&#1593;&#1604;&#1575; &#1605;&#1575; &#1605;&#1575;&#1578;. &#1575;&#1604;&#1605;&#1587;&#1610;&#1581; &#1602;&#1575;&#1605; &#1607;&#1604;&#1604;&#1608;&#1610;&#1575;&quot;.</p><div align=\"justify\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#1603;&#1575;&#1607;&#1606; &#1570;&#1582;&#1585; &#1602;&#1575;&#1604; &#1593;&#1606;&#1607;:&nbsp; &quot;&#1603;&#1575;&#1606; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610; &#1602;&#1608;&#1610; &#1575;&#1604;&#1573;&#1610;&#1605;&#1575;&#1606;. &#1605;&#1575; &#1582;&#1575;&#1601; &#1605;&#1606; &#1575;&#1604;&#1605;&#1608;&#1578;. &#1602;&#1583;&#1585; &#1610;&#1578;&#1608;&#1575;&#1589;&#1604; &#1605;&#1593; &#1575;&#1604;&#1604;&#1607;. &#1604;&#1583;&#1610;&#1607; &#1603;&#1578;&#1575;&#1576;&#1575;&#1578; &#1603;&#1571;&#1606;&#1603; &#1578;&#1602;&#1585;&#1571; &#1605;&#1586;&#1575;&#1605;&#1610;&#1585; &#1583;&#1575;&#1608;&#1608;&#1583; &#1571;&#1608; &#1605;&#1586;&#1575;&#1605;&#1610;&#1585; &#1580;&#1583;&#1610;&#1583;&#1577;&#1548; &#1608;&#1610;&#1578;&#1581;&#1583;&#1579; &#1601;&#1610; &#1606;&#1601;&#1587; &#1575;&#1604;&#1608;&#1602;&#1578; &#1576;&#1606;&#1592;&#1585;&#1577; &#1578;&#1608;&#1585;&#1575;&#1578;&#1610;&#1577;&quot;.</p><div align=\"justify\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp;&nbsp; &#1603;&#1575;&#1607;&#1606; &#1570;&#1582;&#1585; &#1602;&#1575;&#1604; &#1593;&#1606;&#1607;: &#1575;&#1610;&#1604;&#1610; &#1575;&#1606;&#1578;&#1589;&#1585; &#1608;&#1608;&#1589;&#1604; &#1573;&#1604;&#1609; &#1578;&#1608;&#1581;&#1583; &#1605;&#1593; &#1575;&#1604;&#1604;&#1607; &#1602;&#1576;&#1604; &#1575;&#1606; &#1610;&#1606;&#1578;&#1602;&#1604; &#1608;&#1584;&#1604;&#1603; &#1576;&#1602;&#1608;&#1577; &#1573;&#1610;&#1605;&#1575;&#1606;&#1607;. &#1578;&#1585;&#1603; &#1571;&#1579;&#1585;&#1575; &#1593;&#1605;&#1610;&#1602;&#1611;&#1575; &#1601;&#1610; &#1606;&#1601;&#1587;&#1610;. &#1571;&#1584;&#1603;&#1585;&#1607; &#1583;&#1575;&#1574;&#1605;&#1611;&#1575; &#1608;&#1604;&#1606; &#1571;&#1606;&#1587;&#1575;&#1607; &#1571;&#1576;&#1583;&#1611;&#1575;&quot;.&#1575;&#1604;&#1603;&#1579;&#1610;&#1585; &#1605;&#1606; &#1575;&#1604;&#1606;&#1575;&#1587; &#1575;&#1613;&#1584;&#1575; &#1588;&#1593;&#1585;&#1608;&#1575; &#1576;&#1589;&#1583;&#1575;&#1593; &#1575;&#1608; &#1571;&#1610; &#1571;&#1604;&#1605; &#1576;&#1587;&#1610;&#1591; &#1604;&#1575;&#1610;&#1578;&#1581;&#1605;&#1604;&#1608;&#1606; &#1608;&#1610;&#1603;&#1601;&#1585;&#1608;&#1606; &#1576;&#1575;&#1604;&#1604;&#1607; &#1571;&#1581;&#1610;&#1575;&#1606;&#1575;&#1611; &#1571;&#1603;&#1579;&#1585; &#1605;&#1606; &#1605;&#1585;&#1577;. &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610; &#1603;&#1575;&#1606; &#1601;&#1610; &#1588;&#1603;&#1585; &#1583;&#1575;&#1574;&#1605; &#1604;&#1604;&#1607; &#1583;&#1608;&#1606; &#1571;&#1610; &#1578;&#1584;&#1605;&#1585;.&#1575;&#1606;&#1607; &#1605;&#1604;&#1575;&#1603; &#1605;&#1606; &#1575;&#1604;&#1587;&#1605;&#1575;&#1569;.</p><div align=\"justify\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#1603;&#1575;&#1607;&#1606; &#1602;&#1575;&#1604; &#1593;&#1606;&#1607;: &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610; &#1605;&#1572;&#1605;&#1606; &#1603;&#1576;&#1610;&#1585; &#1602;&#1575;&#1583;&#1585; &#1571;&#1606; &#1610;&#1602;&#1608;&#1604; &#1605;&#1593; &#1588;&#1601;&#1610;&#1593;&#1607;&quot;:&#1581;&#1610;&#1617; &#1607;&#1608; &#1575;&#1604;&#1604;&#1607; &#1575;&#1604;&#1584;&#1610; &#1571;&#1606;&#1575; &#1608;&#1575;&#1602;&#1601; &#1571;&#1605;&#1575;&#1605;&#1607;&quot;. &#1589;&#1608;&#1585; &#1603;&#1579;&#1610;&#1585;&#1577; &#1601;&#1610; &#1603;&#1578;&#1575;&#1576;&#1575;&#1578;&#1607; &#1608;&#1571;&#1606;&#1594;&#1575;&#1605; &#1605;&#1586;&#1575;&#1605;&#1610;&#1585; &#1580;&#1583;&#1610;&#1583;&#1577;. &#1575;&#1613;&#1606;&#1587;&#1575;&#1606; &#1601;&#1589;&#1581;&#1610; &#1605;&#1593; &#1590;&#1610;&#1575;&#1569; &#1575;&#1613;&#1604;&#1607;&#1610;.</p><div align=\"justify\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#1575;&#1581;&#1583;&#1609; &#1575;&#1604;&#1605;&#1605;&#1585;&#1590;&#1575;&#1578; &#1601;&#1610; &#1605;&#1587;&#1578;&#1588;&#1601;&#1609; &#1575;&#1604;&#1602;&#1583;&#1610;&#1587; &#1580;&#1575;&#1608;&#1585;&#1580;&#1610;&#1608;&#1587; &#1605;&#1585;&#1614;&#1578; &#1601;&#1610; &#1601;&#1578;&#1585;&#1577; &#1589;&#1581;&#1610;&#1577; &#1589;&#1593;&#1576;&#1577; &#1608;&#1582;&#1590;&#1593;&#1578; &#1604;&#1601;&#1581;&#1608;&#1589;&#1575;&#1578; &#1608;&#1593;&#1605;&#1604;&#1610;&#1577; &#1608;&#1586;&#1585;&#1593;. &#1602;&#1575;&#1604; &#1604;&#1607;&#1575; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610;&nbsp; &#1593;&#1606;&#1583;&#1605;&#1575; &#1593;&#1585;&#1601; &#1576;&#1608;&#1590;&#1593;&#1607;&#1575; &#1575;&#1604;&#1589;&#1581;&#1610;: &quot;&#1594;&#1575;&#1583;&#1577; &#1548; &#1571;&#1606;&#1578; &#1601;&#1610; &#1606;&#1593;&#1605;&#1577; &#1593;&#1605; &#1576;&#1578;&#1602;&#1585;&#1576; &#1589;&#1608;&#1576;&#1603;. &#1604;&#1575;&#1586;&#1605; &#1578;&#1604;&#1605;&#1587;&#1610;&#1607;&#1575; &#1571;&#1603;&#1579;&#1585; &#1608;&#1578;&#1581;&#1587;&#1610; &#1601;&#1610;&#1607;&#1575; &#1571;&#1603;&#1579;&#1585; &#1608;&#1578;&#1593;&#1610;&#1588;&#1610; &#1605;&#1606; &#1582;&#1604;&#1575;&#1604;&#1607;&#1575;. &#1610;&#1587;&#1608;&#1593; &#1575;&#1604;&#1605;&#1587;&#1610;&#1581; &#1591;&#1575;&#1604;&#1576; &#1605;&#1606;&#1603; &#1588;&#1610;&#1548; &#1605;&#1575; &#1578;&#1582;&#1575;&#1601;&#1610; &#1605;&#1606; &#1607;&#1575;&#1604;&#1591;&#1604;&#1576; &#1608;&#1605;&#1575; &#1578;&#1578;&#1585;&#1583;&#1583;&#1610;. &#1575;&#1604;&#1571;&#1604;&#1605; &#1610;&#1604;&#1604;&#1610; &#1576;&#1583;&#1603; &#1578;&#1593;&#1610;&#1588;&#1610; &#1593;&#1610;&#1588;&#1610;&#1607; &#1608;&#1580;&#1585;&#1576;&#1610; &#1578;&#1602;&#1576;&#1604;&#1610;&#1607;&quot;. &#1602;&#1575;&#1604;&#1578; &#1604;&#1607;:&nbsp; &#1605;&#1593;&#1602;&#1608;&#1604;&#1577; &#1603;&#1610;&#1601; &#1576;&#1583;&#1610; &#1573;&#1578;&#1602;&#1576;&#1617;&#1604; &#1576;&#1587;&#1607;&#1608;&#1604;&#1577; &#1567; &#1603;&#1575;&#1606; &#1610;&#1578;&#1603;&#1604;&#1617;&#1605; &#1608;&#1607;&#1608; &#1593;&#1605; &#1610;&#1590;&#1581;&#1603; &#1608;&#1610;&#1576;&#1578;&#1587;&#1605; . &#1571;&#1579;&#1614;&#1585; &#1603;&#1578;&#1610;&#1585; &#1601;&#1610;&#1610; &#1581;&#1603;&#1610;&#1608;&quot;. &#1585;&#1580;&#1593; &#1605;&#1585;&#1577; &#1579;&#1575;&#1606;&#1610;&#1577; &#1608;&#1602;&#1575;&#1604; &#1604;&#1610;:&nbsp; &quot;&#1610;&#1587;&#1608;&#1593; &#1593;&#1605; &#1610;&#1606;&#1575;&#1583;&#1610;&#1603;&#1610; &#1605;&#1575; &#1578;&#1582;&#1575;&#1601;&#1610;&quot;. &#1589;&#1575;&#1585; &#1610;&#1588;&#1580;&#1593;&#1606;&#1610;. &#1581;&#1603;&#1609; &#1576;&#1591;&#1585;&#1610;&#1602;&#1577; &#1603;&#1604;&#1607;&#1575; &#1602;&#1608;&#1577; &#1608;&#1583;&#1593;&#1605;. &#1575;&#1604;&#1571;&#1588;&#1582;&#1575;&#1589; &#1610;&#1604;&#1604;&#1610; &#1593;&#1606;&#1583;&#1607;&#1605; &#1575;&#1604;&#1602;&#1583;&#1585;&#1577; &#1610;&#1603;&#1608;&#1606;&#1608;&#1575; &#1602;&#1585;&#1575;&#1576; &#1605;&#1606; &#1610;&#1587;&#1608;&#1593; &#1575;&#1604;&#1605;&#1587;&#1610;&#1581; &#1548; &#1608;&#1610;&#1578;&#1602;&#1576;&#1604;&#1608;&#1575; &#1575;&#1604;&#1571;&#1604;&#1605; &#1608;&#1605;&#1575; &#1610;&#1585;&#1601;&#1590;&#1608;&#1607; &#1607;&#1606;&#1610; &#1575;&#1602;&#1604;&#1610;&#1577;. &#1603;&#1575;&#1606; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610;&nbsp; &quot;&#1573;&#1606;&#1587;&#1575;&#1606; &#1610;&#1581;&#1587; &#1605;&#1593; &#1571;&#1582;&#1610;&#1607; &#1575;&#1604;&#1573;&#1606;&#1587;&#1575;&#1606;. &#1602;&#1585;&#1610;&#1576; &#1605;&#1606; &#1575;&#1604;&#1588;&#1582;&#1589; &#1610;&#1604;&#1604;&#1610; &#1576;&#1610;&#1593;&#1575;&#1606;&#1610;. &#1610;&#1575; &#1585;&#1610;&#1578; &#1603;&#1575;&#1606; &#1601;&#1610;&#1606;&#1575; &#1606;&#1593;&#1610;&#1588; &#1605;&#1593;&#1607; &#1571;&#1603;&#1579;&#1585; &#1608;&#1606;&#1581;&#1587; &#1601;&#1610;&#1607; &#1571;&#1603;&#1579;&#1585;. &#1603;&#1575;&#1606; &#1610;&#1582;&#1601;&#1601; &#1604;&#1606;&#1575; &#1575;&#1604;&#1570;&#1605;&#1606;&#1575; &#1608;&#1575;&#1604;&#1605;&#1588;&#1575;&#1603;&#1604; &#1610;&#1604;&#1604;&#1610; &#1593;&#1605; &#1606;&#1593;&#1610;&#1588;&#1607;&#1575; &#1581;&#1578;&#1609; &#1606;&#1578;&#1602;&#1576;&#1604;&#1607;&#1575; &#1571;&#1603;&#1579;&#1585;. &#1575;&#1606;&#1607; &#1605;&#1604;&#1575;&#1603; &#1608;&#1602;&#1583;&#1610;&#1587; &#1605;&#1606; &#1575;&#1604;&#1587;&#1605;&#1575;&#1569;&quot;. &nbsp; </p><div align=\"justify\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#1605;&#1605;&#1585;&#1590;&#1577; &#1571;&#1582;&#1585;&#1609; &#1601;&#1610; &#1605;&#1587;&#1578;&#1588;&#1601;&#1609; &#1575;&#1604;&#1602;&#1583;&#1610;&#1587; &#1580;&#1575;&#1608;&#1585;&#1580;&#1610;&#1608;&#1587; &#1602;&#1575;&#1604;&#1578;: &#1610;&#1587;&#1608;&#1593; &#1571;&#1593;&#1578;&#1576;&#1585;&#1607; &#1571;&#1582;&#1610; &#1605;&#1606; &#1593;&#1605;&#1585;&#1610;. &#1575;&#1604;&#1593;&#1584;&#1585;&#1575;&#1569; &#1575;&#1605;&#1610;. &#1575;&#1604;&#1570;&#1576; &#1603;&#1606;&#1578; &#1575;&#1593;&#1578;&#1576;&#1585;&#1607; &#1593;&#1580;&#1608;&#1586; &#1606;&#1575;&#1591;&#1585;&#1606;&#1610; &#1593;&#1604;&#1609; &#1575;&#1604;&#1604;&#1581;&#1592;&#1577; &#1576;&#1583;&#1608; &#1610;&#1602;&#1575;&#1589;&#1589;&#1606;&#1610;. &#1601;&#1610; &#1610;&#1608;&#1605; &#1605;&#1606; &#1575;&#1604;&#1571;&#1610;&#1575;&#1605;&#1548; &#1584;&#1607;&#1576;&#1578; &#1593;&#1606;&#1583; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610;&nbsp; &#1608;&#1587;&#1571;&#1604;&#1578;&#1607; &#1571;&#1606; &#1610;&#1591;&#1604;&#1576; &#1593;&#1580;&#1610;&#1576;&#1577; &#1604;&#1610;&#1588;&#1601;&#1609;. &#1602;&#1575;&#1604; &#1604;&#1610;: &quot;&#1607;&#1604; &#1575;&#1576;&#1606;&#1603; &#1610;&#1602;&#1608;&#1604; &#1604;&#1603; &#1575;&#1606;&#1607; &#1580;&#1608;&#1593;&#1575;&#1606; &#1581;&#1578;&#1609; &#1578;&#1591;&#1593;&#1605;&#1610;&#1607; &#1571;&#1608; &#1575;&#1606;&#1578; &#1576;&#1578;&#1593;&#1585;&#1601;&#1610; &#1575;&#1606;&#1608; &#1580;&#1608;&#1593;&#1575;&#1606; &#1604;&#1575;&#1586;&#1605; &#1610;&#1575;&#1603;&#1604;. &#1575;&#1604;&#1604;&#1607; &#1575;&#1604;&#1570;&#1576; &#1605;&#1588; &#1606;&#1575;&#1591;&#1585;&#1606;&#1610; &#1581;&#1578;&#1609; &#1575;&#1591;&#1604;&#1576; &#1605;&#1606;&#1608; &#1593;&#1580;&#1610;&#1576;&#1577; &#1608;&#1604;&#1575; &#1575;&#1604;&#1593;&#1584;&#1585;&#1575;&#1569; &#1608;&#1604;&#1575; &#1610;&#1587;&#1608;&#1593;. &#1607;&#1608; &#1576;&#1610;&#1593;&#1585;&#1601; &#1588;&#1608; &#1576;&#1583;&#1610; &#1608;&#1576;&#1610;&#1593;&#1591;&#1610;&#1606;&#1610; &#1581;&#1587;&#1576; &#1605;&#1575; &#1571;&#1606;&#1575; &#1576;&#1581;&#1575;&#1580;&#1577;. &#1608;&#1604;&#1608; &#1605;&#1575; &#1607;&#1608; &#1576;&#1610;&#1610; &#1608;&#1575;&#1604;&#1593;&#1584;&#1585;&#1575;&#1569; &#1575;&#1605;&#1610; &#1608;&#1610;&#1587;&#1608;&#1593; &#1582;&#1610;&#1610;&quot;. &#1575;&#1606;&#1575; &#1589;&#1585;&#1578; &#1601;&#1603;&#1585; &#1576;&#1576;&#1610;&#1617;&#1610; &#1603;&#1605; &#1605;&#1606; &#1575;&#1604;&#1605;&#1585;&#1575;&#1578; &#1571;&#1578;&#1582;&#1575;&#1606;&#1602; &#1605;&#1593;&#1607; &#1608;&#1607;&#1608; &#1610;&#1578;&#1604;&#1601;&#1606; &#1604;&#1610; &#1608;&#1610;&#1591;&#1605;&#1574;&#1606; &#1593;&#1604;&#1610;&#1614;. &#1573;&#1584;&#1575; &#1576;&#1610;&#1617;&#1610; &#1607;&#1610;&#1603; &#1603;&#1610;&#1601; &#1575;&#1604;&#1604;&#1607; &#1575;&#1604;&#1570;&#1576;. &#1571;&#1603;&#1610;&#1583; &#1585;&#1581; &#1610;&#1603;&#1608;&#1606; &#1571;&#1603;&#1579;&#1585; &#1576;&#1603;&#1579;&#1610;&#1585; &#1575;&#1604;&#1593;&#1591;&#1601; &#1608;&#1575;&#1604;&#1581;&#1606;&#1575;&#1606; &#1608;&#1575;&#1604;&#1578;&#1587;&#1575;&#1605;&#1581;. &#1607;&#1610;&#1603; &#1589;&#1585;&#1578; &#1601;&#1603;&#1585; &#1576;&#1593;&#1583; &#1581;&#1583;&#1610;&#1579;&#1610; &#1605;&#1593; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610;&nbsp; &#1602;&#1585;&#1593;&#1608;&#1606;&#1610;&quot;.&nbsp; </p><div align=\"justify\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#1571;&#1581;&#1583; &#1605;&#1585;&#1590;&#1575;&#1607; &#1602;&#1575;&#1604;: &quot;&#1591;&#1576;&#1610;&#1576; &#1602;&#1604;&#1576;&#1610;&#1548; &#1608;&#1581;&#1576;&#1610;&#1576; &#1602;&#1604;&#1576;&#1610; &#1605;&#1588;&#1585;&#1602; &#1575;&#1604;&#1608;&#1580;&#1607; &#1608;&#1605;&#1578;&#1608;&#1575;&#1590;&#1593;. &#1575;&#1587;&#1578;&#1591;&#1575;&#1593; &#1571;&#1606; &#1610;&#1593;&#1610;&#1583; &#1575;&#1604;&#1606;&#1576;&#1590; &#1573;&#1604;&#1609; &#1580;&#1587;&#1583;&#1610; &#1608;&#1575;&#1604;&#1571;&#1605;&#1604; &#1576;&#1571;&#1606; &#1575;&#1604;&#1583;&#1601;&#1569; &#1587;&#1610;&#1593;&#1608;&#1583; &#1573;&#1604;&#1609; &#1588;&#1585;&#1575;&#1610;&#1610;&#1606;&#1610;&quot;.&nbsp;&nbsp; &quot;&#1607;&#1575;&#1604;&#1602;&#1585;&#1593;&#1608;&#1606;&#1610; &#1573;&#1604;&#1608; &#1605;&#1587;&#1578;&#1602;&#1576;&#1604; &#1593;&#1592;&#1610;&#1605;&#1548; &#1573;&#1606;&#1587;&#1575;&#1606;&#1610; &#1576;&#1610;&#1581;&#1578;&#1585;&#1605; &#1575;&#1604;&#1606;&#1575;&#1587; &#1608;&#1588;&#1575;&#1591;&#1585; &#1576;&#1587; &#1605;&#1575; &#1576;&#1593;&#1605;&#1585;&#1608; &#1585;&#1575;&#1581; &#1610;&#1593;&#1605;&#1604; &#1579;&#1585;&#1608;&#1577;&#1548; &#1570;&#1582;&#1585; &#1607;&#1605;&#1617;&#1608; &#1580;&#1610;&#1576;&#1578;&#1608;. &#1607;&#1605;&#1617;&#1608; &#1610;&#1591;&#1576;&#1576; &#1575;&#1604;&#1606;&#1575;&#1587; &#1605;&#1588; &#1610;&#1578;&#1581;&#1603;&#1617;&#1605; &#1601;&#1610;&#1607;&#1605; &#1608;&#1576;&#1605;&#1589;&#1585;&#1610;&#1575;&#1578;&#1606;. &#1571;&#1572;&#1605;&#1606; &#1601;&#1610; &#1591;&#1576;&#1617;&#1607; &#1608;&#1605;&#1602;&#1583;&#1585;&#1578;&#1607; &#1608;&#1573;&#1576;&#1583;&#1575;&#1593;&#1607; &#1601;&#1610; &#1605;&#1607;&#1606;&#1578;&#1607;&#1548; &#1608;&#1573;&#1582;&#1604;&#1575;&#1589;&#1607; &#1604;&#1585;&#1587;&#1575;&#1604;&#1578;&#1607; &#1585;&#1594;&#1605; &#1589;&#1594;&#1585; &#1587;&#1606;&#1617;&#1607;. &#1571;&#1585;&#1601;&#1590; &#1571;&#1606; &#1571;&#1578;&#1617;&#1582;&#1584; &#1591;&#1576;&#1610;&#1576;&#1575;&#1611; &#1587;&#1608;&#1575;&#1607;&#1548; &#1604;&#1571;&#1606;&#1617; &#1601;&#1610; &#1606;&#1592;&#1585;&#1610; &#1605;&#1575; &#1576;&#1610;&#1580;&#1610; &#1605;&#1579;&#1604;&#1608; &#1575;&#1604;&#1602;&#1585;&#1593;&#1608;&#1606;&#1610;. &#1571;&#1585;&#1601;&#1590; &#1575;&#1604;&#1578;&#1576;&#1583;&#1610;&#1604; &#1571;&#1608; &#1575;&#1604;&#1578;&#1593;&#1583;&#1610;&#1604; &#1601;&#1610; &#1575;&#1604;&#1608;&#1589;&#1601;&#1575;&#1578; &#1608;&#1575;&#1604;&#1571;&#1583;&#1608;&#1610;&#1577; &#1575;&#1604;&#1578;&#1610; &#1603;&#1575;&#1606; &#1608;&#1589;&#1601;&#1607;&#1575; &#1604;&#1610; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1602;&#1585;&#1593;&#1608;&#1606;&#1610;&quot;.</p><div align=\"justify\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp; &#1605;&#1585;&#1610;&#1590; &#1570;&#1582;&#1585; &#1602;&#1575;&#1604; &#1573;&#1606;&#1617;&#1607; &#1582;&#1604;&#1617;&#1589;&#1607; &#1605;&#1606; &#1593;&#1605;&#1604;&#1610;&#1577; &#1575;&#1604;&#1602;&#1604;&#1576; &#1575;&#1604;&#1605;&#1601;&#1578;&#1608;&#1581;&#1548; &#1576;&#1593;&#1583; &#1571;&#1606; &#1571;&#1582;&#1590;&#1593;&#1607; &#1604;&#1593;&#1605;&#1604;&#1610;&#1577; &#1578;&#1605;&#1610;&#1610;&#1604; &#1604;&#1604;&#1602;&#1604;&#1576;&#1548; &#1579;&#1605;&#1617; &#1601;&#1578;&#1581; &#1604;&#1607; &#1575;&#1604;&#1588;&#1585;&#1575;&#1610;&#1610;&#1606; &#1576;&#1608;&#1575;&#1587;&#1591;&#1577; &#1575;&#1604;&#1576;&#1575;&#1604;&#1608;&#1606;.&quot; &#1603;&#1575;&#1606; &#1610;&#1587;&#1605;&#1593; &#1604;&#1610; &#1576;&#1573;&#1589;&#1594;&#1575;&#1569; &#1608;&#1610;&#1588;&#1585;&#1581; &#1604;&#1610; &#1608;&#1590;&#1593;&#1610; &#1576;&#1589;&#1576;&#1585; &#1608;&#1575;&#1576;&#1578;&#1587;&#1575;&#1605;&#1577; &#1583;&#1575;&#1574;&#1605;&#1577;&#1548; &#1605;&#1606; &#1583;&#1608;&#1606; &#1587;&#1582;&#1585;&#1610;&#1577; &#1608;&#1604;&#1575; &#1578;&#1593;&#1575;&#1604;&#1548; &#1604;&#1606; &#1610;&#1571;&#1578;&#1610; &#1571;&#1581;&#1583; &#1605;&#1579;&#1604;&#1607;. &#1605;&#1575; &#1586;&#1604;&#1578; &#1570;&#1582;&#1584; &#1575;&#1604;&#1583;&#1608;&#1575;&#1569; &#1575;&#1604;&#1584;&#1610; &#1608;&#1589;&#1601;&#1607; &#1604;&#1610; &#1581;&#1578;&#1617;&#1609; &#1575;&#1604;&#1610;&#1608;&#1605; &#1608;&#1604;&#1606; &#1571;&#1594;&#1610;&#1585;&#1607; &#1608;&#1604;&#1606; &#1571;&#1584;&#1607;&#1576; &#1573;&#1604;&#1609; &#1591;&#1576;&#1610;&#1576; &#1604;&#1604;&#1602;&#1604;&#1576; &#1587;&#1608;&#1575;&#1607;. &#1604;&#1606; &#1571;&#1606;&#1587;&#1575;&#1607; &#1571;&#1576;&#1583;&#1575;&#1611;&quot;.</p><div align=\"justify\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp; &#1605;&#1585;&#1610;&#1590; &#1570;&#1582;&#1585; &#1602;&#1575;&#1604; &#1593;&#1606;&#1607;&quot;: &#1571;&#1606;&#1617;&#1607; &#1580;&#1608;&#1607;&#1585;&#1577;&#1548; &#1608;&#1573;&#1606;&#1587;&#1575;&#1606; &#1582;&#1583;&#1608;&#1605; &#1573;&#1604;&#1609; &#1571;&#1576;&#1593;&#1583; &#1581;&#1583;&#1608;&#1583;. &#1605;&#1587;&#1578;&#1593;&#1583;&#1617; &#1604;&#1576;&#1584;&#1604; &#1571;&#1610; &#1580;&#1607;&#1583; &#1601;&#1610; &#1587;&#1576;&#1610;&#1604; &#1573;&#1593;&#1575;&#1606;&#1577; &#1575;&#1604;&#1570;&#1582;&#1585; &#1608;&#1583;&#1575;&#1574;&#1605;&#1575;&#1611; &#1605;&#1606; &#1583;&#1608;&#1606; &#1605;&#1602;&#1575;&#1576;&#1604;. &#1593;&#1605;&#1604;&#1607; &#1575;&#1604;&#1605;&#1580;&#1575;&#1606;&#1610; &#1608;&#1605;&#1581;&#1576;&#1578;&#1607; &#1594;&#1610;&#1585; &#1575;&#1604;&#1605;&#1588;&#1585;&#1608;&#1591;&#1577; &#1604;&#1580;&#1605;&#1610;&#1593; &#1575;&#1604;&#1606;&#1575;&#1587; &#1576;&#1575;&#1578; &#1607;&#1608;&#1610;&#1578;&#1607; &#1575;&#1604;&#1578;&#1610; &#1605;&#1610;&#1586;&#1578;&#1607; &#1593;&#1606; &#1587;&#1608;&#1575;&#1607;. &#1585;&#1581;&#1610;&#1604;&#1603; &#1603;&#1575;&#1606; &#1575;&#1587;&#1578;&#1603;&#1605;&#1575;&#1604;&#1575;&#1611; &#1604;&#1605;&#1587;&#1610;&#1585;&#1577; &#1575;&#1604;&#1602;&#1583;&#1575;&#1587;&#1577; &#1575;&#1604;&#1578;&#1610; &#1576;&#1583;&#1571;&#1578;&#1607;&#1575; &#1593;&#1604;&#1609; &#1575;&#1604;&#1571;&#1585;&#1590;&#1548; &#1608;&#1607;&#1575; &#1571;&#1606;&#1578; &#1578;&#1578;&#1575;&#1576;&#1593;&#1607;&#1575; &#1601;&#1610; &#1575;&#1604;&#1587;&#1605;&#1575;&#1569;&quot;.</p><div align=\"justify\"> </div><p align=\"right\">&nbsp;&nbsp; &#1605;&#1585;&#1610;&#1590; &#1570;&#1582;&#1585; &#1575;&#1593;&#1578;&#1576;&#1585;&#1607;&quot; &#1606;&#1580;&#1605;&#1575;&#1611; &#1587;&#1591;&#1593; &#1601;&#1610; &#1587;&#1605;&#1575;&#1569; &#1575;&#1604;&#1605;&#1581;&#1576;&#1577; &#1608;&#1575;&#1604;&#1593;&#1591;&#1575;&#1569; &#1601;&#1571;&#1606;&#1575;&#1585; &#1592;&#1604;&#1605;&#1577; &#1575;&#1604;&#1603;&#1579;&#1610;&#1585;&#1610;&#1606;&hellip; &#1603;&#1575;&#1606; &#1584;&#1575;&#1603; &#1575;&#1604;&#1593;&#1576;&#1602; &#1575;&#1604;&#1584;&#1610; &#1606;&#1579;&#1585; &#1571;&#1585;&#1610;&#1580;&#1607; &#1601;&#1608;&#1602; &#1571;&#1591;&#1610;&#1575;&#1601; &#1605;&#1606; &#1593;&#1585;&#1601;&#1608;&#1607;. &#1571;&#1606;&#1593;&#1588; &#1604;&#1610; <strong>&#1602;&#1604;&#1576;&#1610; &#1576;&#1593;&#1583;&#1605;&#1575; &#1578;&#1608;&#1602;&#1617;&#1601; &#1593;&#1604;&#1609; &#1571;&#1579;&#1585; &#1606;&#1608;&#1576;&#1577; &#1602;&#1604;&#1576;&#1610;&#1577;. &#1608;&#1571;&#1606;&#1575; &#1575;&#1604;&#1610;&#1608;&#1605; &#1605;&#1587;&#1578;&#1605;&#1585;&#1617; &#1593;&#1604;&#1609; &#1575;&#1604;&#1571;&#1583;&#1608;&#1610;&#1577; &#1606;&#1601;&#1587;&#1607;&#1575; &#1575;&#1604;&#1578;&#1610; &#1608;&#1590;&#1593;&#1607;&#1575; &#1604;&#1610; &#1608;&#1604;&#1606; &#1571;&#1594;&#1610;&#1585;&#1607;&#1575; &#1604;&#1571;&#1606;&#1610; &#1605;&#1587;&#1578;&#1601;&#1610;&#1583; &#1608;&#1605;&#1585;&#1578;&#1575;&#1581; &#1593;&#1604;&#1609; &#1593;&#1604;&#1575;&#1580;&#1607;&quot;</strong>.</p><div align=\"justify\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp;&nbsp; &#1605;&#1585;&#1610;&#1590;&#1577; &#1602;&#1575;&#1604;&#1578;: &#1603;&#1575;&#1606; &#1603;&#1578;&#1610;&#1585; &#1605;&#1606;&#1610;&#1581; &#1605;&#1593;&#1610; &#1608;&#1605;&#1575; &#1576;&#1606;&#1587;&#1609; &#1601;&#1590;&#1604;&#1608; &#1608;&#1604;&#1575; &#1590;&#1581;&#1603;&#1578;&#1608;&#1548; &#1593;&#1605;&#1604; &#1604;&#1610; &#1578;&#1605;&#1610;&#1610;&#1604; &#1604;&#1604;&#1602;&#1604;&#1576; &#1608;&#1605;&#1575; &#1571;&#1582;&#1584; &#1605;&#1606;&#1610; &#1588;&#1610;&#1548; &#1603;&#1584;&#1575; &#1605;&#1585;&#1577; &#1586;&#1585;&#1578;&#1607; &#1601;&#1610; &#1575;&#1604;&#1593;&#1610;&#1575;&#1583;&#1577; &#1608;&#1602;&#1575;&#1604; &#1604;&#1610;:&quot; &#1588;&#1608; &#1605;&#1575; &#1576;&#1583;&#1617;&#1603; &#1571;&#1606;&#1575; &#1581;&#1575;&#1590;&#1585;&quot;&#1548; &#1571;&#1606;&#1575; &#1576;&#1581;&#1576;&#1608; &#1603;&#1578;&#1610;&#1585; &#1608;&#1576;&#1581;&#1576;&#1608; &#1605;&#1606; &#1602;&#1604;&#1576;&#1610;&#1548; &#1603;&#1575;&#1606; &#1603;&#1578;&#1610;&#1585; &#1605;&#1605;&#1610;&#1617;&#1586;&#1548; &#1608;&#1605;&#1575; &#1601;&#1610; &#1605;&#1578;&#1604; &#1608;&#1580;&#1617;&#1608;. &#1608;&#1604;&#1581;&#1583;&#1617; &#1607;&#1604;&#1617;&#1602; &#1605;&#1575; &#1576;&#1602;&#1583;&#1585; &#1573;&#1604;&#1575;&#1614; &#1605;&#1575; &#1576;&#1576;&#1603;&#1610; &#1608;&#1576;&#1578;&#1571;&#1579;&#1617;&#1585;. &#1602;&#1583;&#1610;&#1587; &#1576;&#1593;&#1578;&#1608;&#1575; &#1575;&#1604;&#1604;&#1607; &#1593;&#1604;&#1609; &#1575;&#1604;&#1571;&#1585;&#1590;.&nbsp; </p><div align=\"justify\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp;&nbsp; &#1605;&#1585;&#1610;&#1590; &#1570;&#1582;&#1585; &#1593;&#1605;&#1604; &#1604;&#1607; &#1578;&#1605;&#1610;&#1610;&#1604; &#1604;&#1604;&#1602;&#1604;&#1576; &#1608;&#1604;&#1605; &#1610;&#1602;&#1576;&#1590; &#1605;&#1606;&#1607; &#1601;&#1603;&#1575;&#1606; &#1581;&#1587;&#1576; &#1602;&#1608;&#1604;&#1607;&quot; &#1610;&#1593;&#1575;&#1604;&#1580;&#1606;&#1610; &#1576;&#1605;&#1581;&#1576;&#1577; &#1604;&#1604;&#1607; &#1578;&#1593;&#1575;&#1604;&#1609;. &#1604;&#1606; &#1575;&#1606;&#1587;&#1575;&#1607; &#1603;&#1591;&#1576;&#1610;&#1576; &#1576;&#1575;&#1585;&#1593;&#1548; &#1575;&#1606;&#1587;&#1575;&#1606;&#1610;&#1548; &#1575;&#1605;&#1579;&#1575;&#1604;&#1607; &#1602;&#1604;&#1617;&#1577;&quot;.</p><div align=\"justify\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#1605;&#1585;&#1610;&#1590;&#1577; &#1603;&#1575;&#1606; &#1610;&#1593;&#1575;&#1604;&#1580;&#1607;&#1575; &#1602;&#1575;&#1604;&#1578;: &quot;&#1582;&#1587;&#1585;&#1606;&#1575;&#1607; &#1576;&#1575;&#1603;&#1585;&#1611;&#1575; &#1607;&#1584;&#1575; &#1575;&#1604;&#1591;&#1576;&#1610;&#1576; &#1575;&#1604;&#1588;&#1575;&#1576; &#1575;&#1604;&#1576;&#1575;&#1585;&#1593; &#1575;&#1604;&#1584;&#1610; &#1603;&#1575;&#1606; &#1605;&#1579;&#1575;&#1604;&#1575;&quot; &#1604;&#1604;&#1588;&#1575;&#1576; &#1575;&#1604;&#1578;&#1602;&#1610;&#1548; &#1575;&#1604;&#1605;&#1579;&#1575;&#1576;&#1585; &#1593;&#1604;&#1609; &#1605;&#1586;&#1575;&#1608;&#1604;&#1577; &#1605;&#1607;&#1606;&#1578;&#1607; &#1575;&#1604;&#1585;&#1587;&#1575;&#1604;&#1577;&#1548; &#1575;&#1604;&#1578;&#1610; &#1604;&#1605; &#1610;&#1585;&#1607;&#1575; &#1573;&#1604;&#1575; &#1603;&#1584;&#1604;&#1603;. &#1571;&#1579;&#1611;&#1585; &#1601;&#1610;&#1606;&#1575; &#1603;&#1579;&#1610;&#1585;&#1611;&#1575;&#1548; &#1604;&#1606; &#1606;&#1606;&#1587;&#1575;&#1607; &#1571;&#1576;&#1583;&#1575;&quot;&#1548; &#1575;&#1606;&#1607; &#1605;&#1604;&#1575;&#1603; &#1605;&#1606; &#1575;&#1604;&#1587;&#1605;&#1575;&#1569;&quot;.</p><div align=\"justify\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp;&nbsp; &#1603;&#1575;&#1607;&#1606; &#1605;&#1585;&#1610;&#1590; &#1602;&#1575;&#1604;:&nbsp; &quot;&#1603;&#1575;&#1606; &#1604;&#1583;&#1610; &#1608;&#1580;&#1593; &#1601;&#1610; &#1585;&#1580;&#1604;&#1610;&#1617; &#1608;&#1578;&#1608;&#1585;&#1605;. &#1584;&#1607;&#1576;&#1578; &#1573;&#1604;&#1609; &#1571;&#1603;&#1579;&#1585; &#1605;&#1606; &#1591;&#1576;&#1610;&#1576; &#1601;&#1610; &#1604;&#1576;&#1606;&#1575;&#1606; &#1608;&#1575;&#1604;&#1582;&#1575;&#1585;&#1580; &#1608;&#1604;&#1605; &#1575;&#1587;&#1578;&#1601;&#1583;. &#1605;&#1575; &#1581;&#1583;&#1575; &#1593;&#1585;&#1601; &#1581;&#1603;&#1605;&#1606;&#1610; &#1573;&#1604;&#1575; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610;. &#1575;&#1604;&#1604;&#1607; &#1610;&#1608;&#1580;&#1607; &#1604;&#1607; &#1575;&#1604;&#1582;&#1610;&#1585;. &#1607;&#1608; &#1610;&#1604;&#1604;&#1610; &#1593;&#1585;&#1601; &#1605;&#1575; &#1576;&#1606;&#1610; &#1608;&#1589;&#1581;&#1581;&#1606;&#1610; &#1608;&#1605;&#1575; &#1593;&#1575;&#1583; &#1576;&#1606;&#1610; &#1588;&#1610;. &#1601;&#1581;&#1608;&#1589;&#1575;&#1578;&#1607; &#1583;&#1602;&#1610;&#1602;&#1577;&#1548; &#1610;&#1604;&#1575;&#1581;&#1602; &#1605;&#1585;&#1590;&#1575;&#1607;. &#1605;&#1575; &#1581;&#1583;&#1575; &#1576;&#1591;&#1576;&#1617;&#1576; &#1605;&#1579;&#1604;&#1607;&quot;.</p><div align=\"justify\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp; &#1605;&#1585;&#1610;&#1590;&#1577; &#1602;&#1575;&#1604;&#1578;: &#1576;&#1583;&#1571; &#1590;&#1594;&#1591;&#1610; &#1610;&#1585;&#1578;&#1601;&#1593;&#1548; &#1584;&#1607;&#1576;&#1578; &#1575;&#1604;&#1609; &#1575;&#1603;&#1579;&#1585; &#1605;&#1606; &#1591;&#1576;&#1610;&#1576; &#1608;&#1604;&#1605; &#1610;&#1578;&#1585;&#1575;&#1580;&#1593; &#1575;&#1604;&#1590;&#1594;&#1591; &#1608;&#1581;&#1578;&#1609; &#1601;&#1610; &#1582;&#1575;&#1585;&#1580; &#1604;&#1576;&#1606;&#1575;&#1606; &#1593;&#1606;&#1583;&#1605;&#1575; &#1603;&#1606;&#1578; &#1601;&#1610; &#1586;&#1610;&#1575;&#1585;&#1577; &#1604;&#1571;&#1608;&#1604;&#1575;&#1583;&#1610;. &#1605;&#1575;&#1581;&#1583;&#1575; &#1592;&#1576;&#1617;&#1591; &#1604;&#1610; &#1575;&#1604;&#1590;&#1594;&#1591; &#1573;&#1604;&#1575; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610;.</p><div align=\"justify\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp;&nbsp; &#1575;&#1605;&#1585;&#1571;&#1577; &#1571;&#1582;&#1576;&#1585;&#1578;: &quot;&#1603;&#1575;&#1606; &#1575;&#1576;&#1606;&#1610; &#1575;&#1604;&#1576;&#1575;&#1604;&#1594; &#1605;&#1606; &#1575;&#1604;&#1593;&#1605;&#1585; &#1587;&#1576;&#1593; &#1587;&#1606;&#1608;&#1575;&#1578; &#1602;&#1583; &#1571;&#1589;&#1610;&#1576; &#1576;&#1582;&#1604;&#1593; &#1601;&#1610; &#1603;&#1578;&#1601;&#1607;. &#1584;&#1607;&#1576;&#1578; &#1576;&#1607; &#1573;&#1604;&#1609; &#1591;&#1608;&#1575;&#1585;&#1574; &#1605;&#1587;&#1578;&#1588;&#1601;&#1609; &#1575;&#1604;&#1602;&#1583;&#1610;&#1587; &#1580;&#1575;&#1608;&#1585;&#1580;&#1610;&#1608;&#1587; &#1608;&#1603;&#1575;&#1606; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610;&nbsp; &#1601;&#1610; &#1575;&#1604;&#1591;&#1608;&#1575;&#1585;&#1574; &#1608;&#1603;&#1606;&#1578; &#1582;&#1575;&#1574;&#1601;&#1577; &#1593;&#1604;&#1610;&#1607; &#1571;&#1576;&#1603;&#1610; &#1608;&#1571;&#1589;&#1585;&#1582;. &#1578;&#1602;&#1583;&#1605; &#1605;&#1606;&#1610; &#1602;&#1575;&#1574;&#1604;&#1575;&quot; &#1604;&#1610;: &quot; <strong>&#1604;&#1575; &#1578;&#1582;&#1575;&#1601;&#1610;</strong>&quot;&#1548; &#1608;&#1585;&#1583;&#1611; &#1604;&#1607; &#1575;&#1604;&#1603;&#1578;&#1601; &#1573;&#1604;&#1609; &#1605;&#1581;&#1604;&#1607; &#1602;&#1575;&#1574;&#1604;&#1575;&nbsp; &#1604;&#1610;&quot; <strong>&#1582;&#1584;&#1610; &#1575;&#1576;&#1606;&#1603;</strong> <strong>&#1608;&#1575;&#1584;&#1607;&#1576;&#1610;&quot;</strong>. &#1605;&#1575; &#1586;&#1604;&#1578; &#1571;&#1584;&#1603;&#1585; &#1607;&#1584;&#1575; &#1575;&#1604;&#1591;&#1576;&#1610;&#1576; &#1575;&#1604;&#1573;&#1606;&#1587;&#1575;&#1606;&#1610; &#1581;&#1578;&#1609; &#1575;&#1604;&#1610;&#1608;&#1605;. &#1575;&#1606;&#1607; &#1605;&#1604;&#1575;&#1603; &#1605;&#1606; &#1575;&#1604;&#1587;&#1605;&#1575;&#1569;&quot;.</p><div align=\"justify\"> </div><p align=\"right\">&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &#1603;&#1575;&#1606; &#1575;&#1610;&#1604;&#1610; &#1610;&#1578;&#1589;&#1585;&#1617;&#1601; &#1603;&#1591;&#1601;&#1604; &#1576;&#1610;&#1606; &#1575;&#1604;&#1571;&#1591;&#1601;&#1575;&#1604; &#1610;&#1581;&#1583;&#1617;&#1579;&#1607;&#1605; &#1576;&#1576;&#1585;&#1575;&#1569;&#1577; &#1575;&#1604;&#1591;&#1601;&#1608;&#1604;&#1577;. &#1593;&#1606;&#1583;&#1605;&#1575; &#1607;&#1605;&#1617; &#1571;&#1581;&#1583; &#1575;&#1604;&#1571;&#1591;&#1601;&#1575;&#1604; &#1608;&#1575;&#1587;&#1605;&#1607; &#1608;&#1604;&#1610;&#1583; &#1575;&#1604;&#1576;&#1575;&#1604;&#1594; &#1605;&#1606; &#1575;&#1604;&#1593;&#1605;&#1585; &#1579;&#1604;&#1575;&#1579; &#1587;&#1606;&#1608;&#1575;&#1578; &#1576;&#1583;&#1607;&#1587; &#1606;&#1605;&#1604;&#1577;&#1548; &#1602;&#1575;&#1604; &#1604;&#1607;: &quot;&#1607;&#1610;&#1583;&#1610; &#1575;&#1604;&#1606;&#1605;&#1604;&#1577; &#1585;&#1575;&#1610;&#1581;&#1577; &#1604;&#1593;&#1606;&#1583; &#1608;&#1604;&#1575;&#1583;&#1607;&#1575; &#1604;&#1581;&#1578;&#1617;&#1609; &#1578;&#1591;&#1593;&#1605;&#1607;&#1605;. &#1573;&#1584;&#1575; &#1605;&#1575; &#1571;&#1603;&#1604;&#1608;&#1575; &#1576;&#1605;&#1608;&#1578;&#1608;&#1575;. &#1573;&#1606;&#1578; &#1601;&#1610;&#1603; &#1578;&#1593;&#1610;&#1588; &#1576;&#1604;&#1575; &#1573;&#1605;&#1617;&#1603; &#1567;&quot; &#1571;&#1580;&#1575;&#1576;&#1607; &#1575;&#1604;&#1591;&#1601;&#1604; &#1608;&#1604;&#1610;&#1583;: &quot;&#1604;&#1571;&#1548; &#1605;&#1575; &#1576;&#1602;&#1583;&#1585; &#1571;&#1606;&#1575; &#1576;&#1581;&#1576;&#1617; &#1575;&#1604;&#1605;&#1575;&#1605;&#1575; &#1603;&#1578;&#1610;&#1585;. &#1601;&#1571;&#1580;&#1575;&#1576;&#1607; &#1575;&#1610;&#1604;&#1610; : &quot;<strong>&#1607;&#1610;&#1583;&#1610; &#1575;&#1604;&#1606;&#1605;&#1604;&#1577; &#1571;&#1608;&#1604;&#1575;&#1583;&#1607;&#1575; &#1576;&#1581;&#1576;&#1608;&#1607;&#1575; &#1603;&#1578;&#1610;&#1585;&#1548; &#1608;&#1575;&#1604;&#1604;&#1607; &#1587;&#1605;&#1581; &#1604;&#1607;&#1575; &#1578;&#1593;&#1610;&#1588; &#1605;&#1575; &#1576;&#1610;&#1587;&#1608;&#1609; &#1606;&#1581;&#1606;&#1575; &#1606;&#1602;&#1578;&#1604;&#1607;&#1575;&quot;. &#1608;&#1603;&#1575;&#1606;&#1578; &#1571;&#1605; &#1575;&#1604;&#1589;&#1576;&#1610; &#1578;&#1587;&#1605;&#1593;&#1548; &#1608;&#1578;&#1571;&#1579;&#1617;&#1585;&#1578; &#1576;&#1603;&#1604;&#1575;&#1605; &#1607;&#1584;&#1575; &#1575;&#1604;&#1591;&#1576;&#1610;&#1576; &#1575;&#1604;&#1588;&#1575;&#1576;&#1548; &#1575;&#1604;&#1584;&#1610; &#1593;&#1604;&#1605;&#1607;&#1575; &#1585;&#1608;&#1593;&#1577; &#1575;&#1604;&#1575;&#1578;&#1603;&#1575;&#1604; &#1593;&#1604;&#1609; &#1575;&#1604;&#1604;&#1607; &#1608;&#1575;&#1604;&#1575;&#1587;&#1578;&#1587;&#1604;&#1575;&#1605; &#1604;&#1605;&#1588;&#1610;&#1574;&#1578;&#1607;. &#1601;&#1602;&#1583;&#1585;&#1607; &#1581;&#1587;&#1576; &#1602;&#1608;&#1604;&#1607;&#1575;&#1548; &#1607;&#1608; &#1602;&#1583;&#1585; &#1575;&#1604;&#1571;&#1585;&#1608;&#1575;&#1581; &#1575;&#1604;&#1605;&#1588;&#1578;&#1593;&#1604;&#1577; &#1605;&#1606;&#1584; &#1575;&#1604;&#1576;&#1583;&#1569; &#1576;&#1593;&#1588;&#1602; &#1575;&#1604;&#1602;&#1583;&#1575;&#1587;&#1577;</strong>.</p><div align=\"justify\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;&#1603;&#1606;&#1578; &#1571;&#1581;&#1576;&#1617; &#1571;&#1606; &#1575;&#1588;&#1578;&#1585;&#1610; &#1593;&#1589;&#1601;&#1608;&#1585;&#1575;&#1611; &#1608;&#1571;&#1590;&#1593;&#1607; &#1601;&#1610; &#1602;&#1601;&#1589;&#1548; &#1608;&#1593;&#1606;&#1583;&#1605;&#1575; &#1593;&#1585;&#1601; &#1571;&#1582;&#1610; &#1602;&#1575;&#1604; &#1604;&#1610;: <strong>&quot;&#1573;&#1584;&#1575; &#1580;&#1576;&#1578;&#1610; &#1593;&#1589;&#1601;&#1608;&#1585; &#1576;&#1583;&#1617;&#1610; &#1591;&#1610;&#1585;&#1608;&#1575; &#1579;&#1575;&#1606;&#1610; &#1583;&#1602;&#1610;&#1602;&#1577;. &#1607;&#1610;&#1583;&#1575; &#1582;&#1604;&#1602; &#1604;&#1604;&#1591;&#1576;&#1610;&#1593;&#1577;&#1548; &#1581;&#1578;&#1609; &#1610;&#1578;&#1606;&#1602;&#1604; &#1576;&#1581;&#1585;&#1610;&#1577; &#1605;&#1606; &#1588;&#1580;&#1585;&#1577; &#1573;&#1604;&#1609; &#1588;&#1580;&#1585;&#1577; &#1605;&#1588; &#1604;&#1581;&#1578;&#1617;&#1609; &#1606;&#1581;&#1576;&#1587;&#1608;&#1575; &#1576;&#1575;&#1604;&#1602;&#1601;&#1589; &#1604;&#1605;&#1580;&#1585;&#1617;&#1583; &#1571;&#1606;&#1606;&#1575; &#1571;&#1602;&#1608;&#1609; &#1605;&#1606;&#1607;&#1548; &#1606;&#1578;&#1581;&#1603;&#1617;&#1605; &#1601;&#1610;&#1607; &#1608;&#1606;&#1587;&#1580;&#1606;&#1607;. &#1575;&#1604;&#1604;&#1607; &#1576;&#1610;&#1593;&#1585;&#1601; &#1608;&#1610;&#1606; &#1603;&#1604;&#1617; &#1608;&#1575;&#1581;&#1583; &#1605;&#1606;&#1617;&#1575; &#1604;&#1575;&#1586;&#1605; &#1610;&#1603;&#1608;&#1606;&#1548; &#1608;&#1607;&#1575;&#1604;&#1591;&#1610;&#1585; &#1575;&#1604;&#1604;&#1607; &#1582;&#1604;&#1602;&#1608;&#1575; &#1576;&#1575;&#1604;&#1591;&#1576;&#1610;&#1593;&#1577; &#1605;&#1588; &#1576;&#1575;&#1604;&#1602;&#1601;&#1589;</strong>&quot;. </p><div align=\"right\"> &nbsp;&nbsp;&nbsp;&nbsp; &#1593;&#1606;&#1583;&#1605;&#1575; &#1603;&#1606;&#1617;&#1575; &#1606;&#1584;&#1607;&#1576; &#1571;&#1606;&#1575; &#1608;&#1571;&#1582;&#1610; &#1604;&#1604;&#1578;&#1593;&#1586;&#1610;&#1577; &#1576;&#1571;&#1581;&#1583;&#1607;&#1605; &#1548; &#1603;&#1575;&#1606; &#1610;&#1602;&#1608;&#1604; &#1604;&#1610;: &quot; <strong>&#1604;&#1575; &#1578;&#1593;&#1586;&#1610;&#1607;&#1605; &#1576;&#1575;&#1604;&#1602;&#1608;&#1604; &quot;&#1571;&#1604;&#1604;&#1607; &#1610;&#1585;&#1581;&#1605;&#1607; &#1571;&#1608; &#1575;&#1604;&#1593;&#1608;&#1590; &#1576;&#1587;&#1604;&#1575;&#1605;&#1578;&#1603;&#1605;&quot; &#1604;&#1571;&#1606; &#1575;&#1604;&#1604;&#1607; &#1585;&#1581;&#1605;&#1607; &#1608;&#1571;&#1582;&#1584;&#1607; &#1573;&#1604;&#1609; &#1593;&#1606;&#1583;&#1607;. &#1571;&#1604;&#1604;&#1607; &#1610;&#1585;&#1581;&#1605;&#1606;&#1575; &#1606;&#1581;&#1606;&#1575; &#1575;&#1604;&#1591;&#1610;&#1576;&#1610;&#1606;. &#1576;&#1604; &#1593;&#1586;&#1610;&#1607;&#1605; &#1576;&#1602;&#1608;&#1604;&#1603; &#1604;&#1607;&#1605;: &quot;&#1575;&#1604;&#1605;&#1587;&#1610;&#1581; &#1602;&#1575;&#1605;</strong></div><div align=\"right\">&nbsp;</div><div align=\"right\"><strong>&nbsp;</strong></div><div align=\"right\"><strong>&#1571;&#1593;&#1605;&#1575;&#1604; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610; &#1602;&#1585;&#1593;&#1608;&#1606;&#1610; &#1575;&#1604;&#1573;&#1606;&#1587;&#1575;&#1606;&#1610;&#1577;</strong></div><div align=\"right\"><div align=\"right\">&#1576;&#1583;&#1571;&#1578; &#1571;&#1593;&#1605;&#1575;&#1604; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610; &#1575;&#1604;&#1573;&#1606;&#1587;&#1575;&#1606;&#1610;&#1577; &#1605;&#1606;&#1584; &#1603;&#1575;&#1606; &#1593;&#1604;&#1609; &#1605;&#1602;&#1575;&#1593;&#1583; &#1575;&#1604;&#1583;&#1585;&#1575;&#1587;&#1577;&#1548; &#1575;&#1584; &#1603;&#1575;&#1606; &#1610;&#1587;&#1575;&#1593;&#1583; &#1585;&#1601;&#1575;&#1602;&#1607; &#1601;&#1610; &#1575;&#1604;&#1589;&#1601; &#1608;&#1610;&#1588;&#1585;&#1581; &#1604;&#1607;&#1605; &#1605;&#1575; &#1575;&#1587;&#1578;&#1593;&#1589;&#1609; &#1593;&#1604;&#1610;&#1607;&#1605;&#1548; &#1608;&#1571;&#1581;&#1610;&#1575;&#1606;&#1575; &#1603;&#1575;&#1606;&#1608;&#1575; &#1610;&#1608;&#1575;&#1601;&#1608;&#1606;&#1607; &#1573;&#1604;&#1609; &#1575;&#1604;&#1605;&#1606;&#1586;&#1604;. </div><p align=\"right\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#1587;&#1575;&#1593;&#1583; &#1586;&#1605;&#1604;&#1575;&#1569;&#1607; &#1601;&#1610; &#1575;&#1604;&#1591;&#1576; &#1608;&#1603;&#1575;&#1606;&#1608;&#1575; &#1610;&#1593;&#1578;&#1576;&#1585;&#1608;&#1606;&#1607; &#1605;&#1585;&#1580;&#1593;&#1611;&#1575; &#1591;&#1576;&#1610;&#1611;&#1575; &#1608;&#1584;&#1575; &#1605;&#1593;&#1585;&#1601;&#1577; &#1593;&#1604;&#1605;&#1610;&#1577; &#1602;&#1608;&#1610;&#1577;. &#1610;&#1581;&#1583;&#1617;&#1579; &#1608;&#1610;&#1606;&#1575;&#1602;&#1588; &#1601;&#1610; &#1575;&#1604;&#1605;&#1608;&#1575;&#1590;&#1610;&#1593; &#1575;&#1604;&#1571;&#1583;&#1576;&#1610;&#1577; &#1608;&#1575;&#1604;&#1601;&#1606;&#1610;&#1577; &#1608;&#1575;&#1604;&#1575;&#1580;&#1578;&#1605;&#1575;&#1593;&#1610;&#1577; &#1608;&#1575;&#1604;&#1579;&#1602;&#1575;&#1601;&#1610;&#1577; &#1573;&#1590;&#1575;&#1601;&#1577; &#1573;&#1604;&#1609; &#1575;&#1604;&#1605;&#1608;&#1575;&#1590;&#1610;&#1593; &#1575;&#1604;&#1591;&#1576;&#1610;&#1577;&#1548; &#1601;&#1603;&#1575;&#1606; &#1593;&#1576;&#1602;&#1585;&#1610;&#1575;&#1611; &#1584;&#1608; &#1605;&#1608;&#1607;&#1576;&#1577; &#1603;&#1576;&#1610;&#1585;&#1577; &#1548;&#1575;&#1604;&#1580;&#1605;&#1610;&#1593; &#1610;&#1587;&#1578;&#1588;&#1610;&#1585;&#1607; &#1581;&#1578;&#1609; &#1571;&#1587;&#1575;&#1578;&#1584;&#1578;&#1607;.</p><div align=\"right\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#1593;&#1604;&#1617;&#1605; &#1578;&#1604;&#1575;&#1605;&#1584;&#1577; &#1575;&#1604;&#1591;&#1576; &#1608;&#1591;&#1585;&#1581; &#1593;&#1604;&#1610;&#1607;&#1605; &#1575;&#1604;&#1571;&#1587;&#1574;&#1604;&#1577; &#1608;&#1571;&#1593;&#1591;&#1575;&#1607;&#1605; &#1605;&#1581;&#1575;&#1590;&#1585;&#1575;&#1578; &#1602;&#1610;&#1617;&#1605;&#1577;&#1548; &#1573;&#1584; &#1603;&#1575;&#1606; &#1604;&#1583;&#1610;&#1607; &#1578;&#1587;&#1604;&#1587;&#1604; &#1601;&#1603;&#1585;&#1610; &#1605;&#1606;&#1607;&#1580;&#1610; &#1580;&#1593;&#1604;&#1607;&#1605; &#1610;&#1581;&#1576;&#1608;&#1606; &#1575;&#1604;&#1591;&#1576;&#1548; &#1608;&#1575;&#1604;&#1576;&#1593;&#1590; &#1605;&#1606;&#1607;&#1605; &#1576;&#1587;&#1576;&#1576; &#1571;&#1587;&#1604;&#1608;&#1576;&#1607; &#1575;&#1604;&#1578;&#1593;&#1604;&#1610;&#1605;&#1610; &#1575;&#1604;&#1605;&#1581;&#1576;&#1576;&#1548; &#1575;&#1582;&#1578;&#1575;&#1585; &#1591;&#1576; &#1575;&#1604;&#1602;&#1604;&#1576;. &#1578;&#1593;&#1575;&#1608;&#1606; &#1605;&#1593; &#1571;&#1587;&#1575;&#1578;&#1584;&#1578;&#1607;&#1548; &#1604;&#1575; &#1576;&#1604; &#1606;&#1589; &#1604;&#1607;&#1605; &#1603;&#1578;&#1576;&#1575;&#1611; &#1591;&#1576;&#1610;&#1577;.</p><div align=\"right\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#1593;&#1604;&#1617;&#1605; &#1575;&#1604;&#1605;&#1605;&#1585;&#1590;&#1575;&#1578; &#1608;&#1587;&#1575;&#1593;&#1583;&#1607;&#1605; &#1601;&#1610; &#1571;&#1591;&#1585;&#1608;&#1581;&#1575;&#1578;&#1607;&#1605; &#1604;&#1606;&#1610;&#1604; &#1575;&#1604;&#1588;&#1607;&#1575;&#1583;&#1577;.</p><div align=\"right\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#1603;&#1575;&#1606; &#1610;&#1584;&#1607;&#1576; &#1587;&#1610;&#1585;&#1575;&#1611; &#1593;&#1604;&#1609; &#1575;&#1604;&#1571;&#1602;&#1583;&#1575;&#1605; &#1575;&#1604;&#1609; &#1605;&#1587;&#1578;&#1588;&#1601;&#1609; &#1575;&#1604;&#1608;&#1585;&#1583;&#1610;&#1577; &#1604;&#1605;&#1593;&#1575;&#1604;&#1580;&#1577; &#1575;&#1604;&#1605;&#1585;&#1590;&#1609; &#1594;&#1610;&#1585; &#1605;&#1576;&#1575;&#1604; &#1576;&#1575;&#1604;&#1602;&#1584;&#1575;&#1574;&#1601; &#1608;&#1575;&#1604;&#1602;&#1589;&#1601;&#1548; &#1610;&#1578;&#1589;&#1604; &#1576;&#1606;&#1575; &#1608;&#1610;&#1591;&#1605;&#1574;&#1606;&#1606;&#1575; &#1593;&#1606; &#1581;&#1575;&#1604;&#1607; &#1602;&#1576;&#1604; &#1571;&#1606; &#1610;&#1589;&#1604; &#1581;&#1578;&#1609; &#1604;&#1575; &#1610;&#1588;&#1594;&#1604; &#1576;&#1575;&#1604; &#1608;&#1575;&#1604;&#1583;&#1578;&#1607;&#1548;&#1608;&#1575;&#1604;&#1583;&#1607; &#1608;&#1588;&#1602;&#1610;&#1602;&#1578;&#1607;.</p><div align=\"right\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#1571;&#1593;&#1605;&#1575;&#1604;&#1607; &#1575;&#1604;&#1573;&#1606;&#1587;&#1575;&#1606;&#1610;&#1577; &#1608;&#1575;&#1604;&#1582;&#1610;&#1585;&#1610;&#1577; &#1604;&#1575; &#1578;&#1581;&#1589;&#1609;&#1548; &#1608;&#1575;&#1604;&#1603;&#1604; &#1610;&#1580;&#1605;&#1593; &#1593;&#1604;&#1609; &#1571;&#1606;&#1607; &#1591;&#1576;&#1610;&#1576; &#1604;&#1575;&#1605;&#1593; &#1573;&#1606;&#1587;&#1575;&#1606;&#1610; &#1591;&#1610;&#1576; &#1575;&#1604;&#1602;&#1604;&#1576; &#1605;&#1579;&#1602;&#1601; &#1604;&#1575; &#1578;&#1607;&#1605;&#1607; &#1575;&#1604;&#1605;&#1575;&#1583;&#1577; &#1610;&#1607;&#1605;&#1607; &#1575;&#1604;&#1573;&#1606;&#1587;&#1575;&#1606;&#1548; &#1610;&#1587;&#1578;&#1605;&#1593; &#1575;&#1604;&#1609; &#1575;&#1604;&#1605;&#1585;&#1610;&#1590; &#1608;&#1610;&#1588;&#1585;&#1581; &#1604;&#1607; &#1576;&#1575;&#1576;&#1578;&#1587;&#1575;&#1605;&#1577; &#1593;&#1606; &#1583;&#1575;&#1574;&#1607; &#1608;&#1593;&#1606; &#1608;&#1587;&#1610;&#1604;&#1577; &#1588;&#1601;&#1575;&#1574;&#1607;.</p><div align=\"right\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#1571;&#1605;&#1610;&#1606;&#1577; &#1587;&#1585;&#1617;&#1607; &#1601;&#1610; &#1575;&#1604;&#1593;&#1605;&#1604; &#1604;&#1575; &#1578;&#1578;&#1584;&#1603;&#1585; &#1571;&#1606;&#1607;&#1575; &#1575;&#1587;&#1578;&#1608;&#1601;&#1578; &#1604;&#1607; &#1576;&#1583;&#1604; &#1605;&#1593;&#1575;&#1610;&#1606;&#1577; &#1608;&#1604;&#1608; &#1604;&#1605;&#1585;&#1617;&#1577;&#1548; &#1601;&#1607;&#1608; &#1603;&#1575;&#1606; &#1610;&#1593;&#1575;&#1610;&#1606; &#1605;&#1580;&#1617;&#1575;&#1606;&#1575; &#1608;&#1601;&#1610; &#1573;&#1581;&#1583;&#1609; &#1575;&#1604;&#1605;&#1585;&#1617;&#1575;&#1578; &#1571;&#1578;&#1609; &#1575;&#1604;&#1610;&#1607; &#1605;&#1585;&#1610;&#1590; &#1603;&#1575;&#1606; &#1602;&#1583; &#1571;&#1580;&#1585;&#1609; &#1604;&#1607; &#1578;&#1605;&#1610;&#1604;&#1575; &#1604;&#1604;&#1602;&#1604;&#1576; &#1601;&#1585;&#1601;&#1590; &#1571;&#1606; &#1610;&#1602;&#1576;&#1590; &#1605;&#1606;&#1607;. &#1608;&#1593;&#1606;&#1583;&#1605;&#1575; &#1581;&#1585;&#1585; &#1604;&#1607; &#1575;&#1604;&#1605;&#1585;&#1610;&#1590; &#1588;&#1610;&#1603;&#1575; &#1608;&#1571;&#1593;&#1591;&#1575;&#1607; &#1604;&#1571;&#1605;&#1610;&#1606;&#1577; &#1587;&#1585;&#1617;&#1607;&#1548; &#1576;&#1575;&#1583;&#1585; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610; &#1573;&#1604;&#1609; &#1578;&#1605;&#1586;&#1610;&#1602; &#1575;&#1604;&#1588;&#1610;&#1603; &#1601;&#1608;&#1585;&#1575;&#1611;.</p><div align=\"right\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#1603;&#1575;&#1606; &#1610;&#1602;&#1608;&#1604; &#1604;&#1575; &#1578;&#1593;&#1576;&#1583;&#1608;&#1575; &#1585;&#1576;&#1610;&#1606; &#1575;&#1604;&#1604;&#1607; &#1608;&#1575;&#1604;&#1605;&#1575;&#1604;&#1548; &#1575;&#1604;&#1604;&#1607; &#1608;&#1575;&#1604;&#1605;&#1575;&#1604; &#1604;&#1575; &#1610;&#1578;&#1601;&#1602;&#1575;&#1606;&#1548; &#1581;&#1578;&#1609; &#1575;&#1606;&#1607; &#1603;&#1575;&#1606; &#1610;&#1585;&#1601;&#1590; &#1608;&#1590;&#1593; &#1589;&#1604;&#1610;&#1576; &#1605;&#1606; &#1584;&#1607;&#1576; &#1593;&#1604;&#1609; &#1589;&#1583;&#1585;&#1607;.</p><div align=\"right\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp;&#1603;&#1575;&#1606;&#1578; &#1575;&#1604;&#1605;&#1605;&#1585;&#1590;&#1575;&#1578; &#1601;&#1610; &#1591;&#1608;&#1575;&#1585;&#1574; &#1605;&#1587;&#1578;&#1588;&#1601;&#1609; &#1575;&#1604;&#1602;&#1583;&#1610;&#1587; &#1580;&#1575;&#1608;&#1585;&#1580;&#1610;&#1608;&#1587; &#1610;&#1578;&#1589;&#1604;&#1608;&#1606; &#1576;&#1607; &#1573;&#1584;&#1575; &#1603;&#1575;&#1606; &#1575;&#1604;&#1605;&#1585;&#1610;&#1590; &#1605;&#1593;&#1583;&#1605; &#1601;&#1603;&#1575;&#1606; &#1610;&#1604;&#1576;&#1617;&#1610; &#1603;&#1604; &#1591;&#1604;&#1576; &#1576;&#1591;&#1610;&#1576;&#1577; &#1582;&#1575;&#1591;&#1585; &#1608;&#1575;&#1576;&#1578;&#1587;&#1575;&#1605;&#1577; &#1608;&#1604;&#1575; &#1610;&#1585;&#1583;&#1617; &#1587;&#1575;&#1574;&#1604;&#1575; &#1571;&#1608; &#1605;&#1581;&#1578;&#1575;&#1580;&#1611;&#1575;. &#1603;&#1575;&#1606; &#1593;&#1604;&#1609; &#1571;&#1607;&#1576;&#1617; &#1575;&#1604;&#1575;&#1587;&#1578;&#1593;&#1583;&#1575;&#1583; &#1604;&#1604;&#1605;&#1587;&#1575;&#1593;&#1583;&#1577; &#1583;&#1608;&#1606; &#1603;&#1604;&#1604;&#1548; &#1610;&#1593;&#1575;&#1610;&#1606; &#1610;&#1589;&#1601; &#1575;&#1604;&#1583;&#1608;&#1575;&#1569; &#1608;&#1610;&#1588;&#1578;&#1585;&#1610;&#1607; &#1605;&#1606; &#1580;&#1610;&#1576;&#1607; &#1575;&#1604;&#1582;&#1575;&#1589;.</p><div align=\"right\"> </div><p align=\"right\">&nbsp;&nbsp;&nbsp;&#1608;&#1601;&#1610;&#1605;&#1575; &#1610;&#1604;&#1610; &#1606;&#1608;&#1585;&#1583; &#1576;&#1593;&#1590; &#1575;&#1604;&#1571;&#1605;&#1579;&#1604;&#1577; &#1593;&#1606; &#1571;&#1593;&#1605;&#1575;&#1604;&#1607; &#1575;&#1604;&#1573;&#1606;&#1587;&#1575;&#1606;&#1610;&#1577;:</p><div align=\"right\"> &#1585;&#1580;&#1604; &#1591;&#1575;&#1593;&#1606; &#1601;&#1610; &#1575;&#1604;&#1587;&#1606; &#1571;&#1578;&#1609; &#1575;&#1604;&#1609; &#1575;&#1604;&#1591;&#1608;&#1575;&#1585;&#1574;&#1548; &#1608;&#1593;&#1606;&#1583;&#1605;&#1575; &#1578;&#1576;&#1610;&#1606; &#1604;&#1604;&#1605;&#1605;&#1585;&#1590;&#1577; &#1571;&#1606;&#1607; &#1605;&#1593;&#1608;&#1586; &#1575;&#1578;&#1589;&#1604;&#1578; &#1576;&#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610; &#1608;&#1602;&#1575;&#1604;&#1578; &#1604;&#1607; &#1571;&#1606; &#1608;&#1590;&#1593;&#1607; &#1575;&#1604;&#1589;&#1581;&#1610;&#1617; &#1581;&#1585;&#1580;&#1548; &#1601;&#1571;&#1578;&#1609; &#1601;&#1610; &#1605;&#1606;&#1578;&#1589;&#1601; &#1575;&#1604;&#1604;&#1610;&#1604; &#1608;&#1593;&#1575;&#1604;&#1580;&#1607; &#1601;&#1610; &#1575;&#1604;&#1591;&#1608;&#1575;&#1585;&#1574; &#1608;&#1576;&#1602;&#1610; &#1605;&#1593;&#1607; &#1581;&#1578;&#1609; &#1575;&#1587;&#1578;&#1602;&#1585;&#1617; &#1608;&#1590;&#1593;&#1607; &#1583;&#1608;&#1606; &#1571;&#1610; &#1605;&#1602;&#1575;&#1576;&#1604;. &#1608;&#1571;&#1589;&#1576;&#1581; &#1575;&#1604;&#1585;&#1580;&#1604; &#1610;&#1571;&#1578;&#1610;&#1607; &#1573;&#1604;&#1609; &#1575;&#1604;&#1593;&#1610;&#1575;&#1583;&#1577; &#1604;&#1604;&#1605;&#1593;&#1575;&#1604;&#1580;&#1577; &#1608;&#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610; &#1610;&#1588;&#1578;&#1585;&#1610; &#1604;&#1607; &#1575;&#1604;&#1583;&#1608;&#1575;&#1569;. </div><div align=\"right\"><br />&#1608;&#1584;&#1575;&#1578; &#1605;&#1585;&#1617;&#1577; &#1571;&#1578;&#1609; &#1573;&#1604;&#1610;&#1607; &#1575;&#1604;&#1605;&#1585;&#1610;&#1590; &#1581;&#1575;&#1605;&#1604;&#1575; &#1593;&#1604;&#1576;&#1577; &#1589;&#1594;&#1610;&#1585;&#1577; &#1605;&#1606; &#1575;&#1604;&#1581;&#1604;&#1608;&#1609; &#1602;&#1575;&#1574;&#1604;&#1575; &#1604;&#1607;: &#1571;&#1606;&#1575; &#1571;&#1602;&#1583;&#1617;&#1585;&#1603; &#1580;&#1583;&#1575; &#1608;&#1581;&#1575;&#1574;&#1585; &#1603;&#1610;&#1601; &#1571;&#1585;&#1583;&#1617; &#1604;&#1603; &#1575;&#1604;&#1580;&#1605;&#1610;&#1604; &#1604;&#1575; &#1571;&#1605;&#1604;&#1603; &#1605;&#1575;&#1604;&#1575; &#1603;&#1610; &#1571;&#1583;&#1601;&#1593; &#1604;&#1603;&quot;&#1548; &#1601;&#1571;&#1580;&#1575;&#1576;&#1607; &#1575;&#1610;&#1604;&#1610; : &quot;&#1604;&#1575; &#1571;&#1585;&#1610;&#1583; &#1605;&#1606;&#1603; &#1588;&#1610;&#1574;&#1575;&#1611; &#1575;&#1604;&#1605;&#1607;&#1605; &#1571;&#1606;&#1603; &#1571;&#1589;&#1576;&#1581;&#1578; &#1576;&#1589;&#1581;&#1577; &#1580;&#1610;&#1583;&#1577;&quot;.<br />&#1571;&#1578;&#1578;&#1607; &#1605;&#1585;&#1617;&#1577; &#1589;&#1576;&#1610;&#1577; &#1610;&#1575;&#1601;&#1593;&#1577; &#1576;&#1585;&#1601;&#1602;&#1577; &#1571;&#1607;&#1604;&#1607;&#1575; &#1575;&#1604;&#1609; &#1575;&#1604;&#1591;&#1608;&#1575;&#1585;&#1574; &#1608;&#1603;&#1575;&#1606;&#1578; &#1578;&#1588;&#1603;&#1608; &#1605;&#1606; &#1579;&#1602;&#1576; &#1601;&#1610; &#1602;&#1604;&#1576;&#1607;&#1575; &#1605;&#1605;&#1617;&#1575; &#1575;&#1587;&#1578;&#1583;&#1593;&#1609; &#1593;&#1604;&#1575;&#1580;&#1607;&#1575; &#1608;&#1571;&#1580;&#1585;&#1575;&#1569; &#1593;&#1605;&#1604;&#1610;&#1577; &#1578;&#1605;&#1610;&#1610;&#1604;&#1548; &#1601;&#1602;&#1575;&#1605; &#1576;&#1584;&#1604;&#1603; &#1605;&#1580;&#1575;&#1606;&#1575;.<br />&#1602;&#1575;&#1605; &#1576;&#1575;&#1604;&#1593;&#1606;&#1575;&#1610;&#1577; &#1576;&#1605;&#1585;&#1610;&#1590; &#1588;&#1575;&#1576; &#1605;&#1589;&#1575;&#1576; &#1576;&#1583;&#1575;&#1569; &#1601;&#1602;&#1583;&#1575;&#1606; &#1575;&#1604;&#1605;&#1606;&#1575;&#1593;&#1577; &#1575;&#1604;&#1605;&#1603;&#1578;&#1587;&#1576;&#1577; HIV &#1608;&#1603;&#1575;&#1606; &#1575;&#1610;&#1604;&#1610; &#1608;&#1602;&#1578;&#1574;&#1583; &#1591;&#1576;&#1610;&#1576;&#1575; &#1605;&#1578;&#1605;&#1585;&#1606;&#1575; &#1608;&#1604;&#1605; &#1610;&#1603;&#1606; &#1601;&#1610; &#1581;&#1610;&#1606;&#1607; &#1610;&#1615;&#1593;&#1585;&#1601; &#1603;&#1610;&#1601;&#1610;&#1577; &#1575;&#1606;&#1578;&#1602;&#1575;&#1604; &#1575;&#1604;&#1605;&#1585;&#1590;&#1548; &#1601;&#1593;&#1606;&#1583;&#1605;&#1575; &#1604;&#1605; &#1610;&#1578;&#1580;&#1585;&#1571; &#1571;&#1581;&#1583; &#1605;&#1606; &#1575;&#1604;&#1575;&#1602;&#1578;&#1585;&#1575;&#1576; &#1605;&#1606; &#1575;&#1604;&#1605;&#1585;&#1610;&#1590; &#1608;&#1605;&#1593;&#1575;&#1604;&#1580;&#1578;&#1607; &#1581;&#1578;&#1609; &#1575;&#1606; &#1608;&#1575;&#1604;&#1583;&#1578;&#1607; &#1582;&#1575;&#1601;&#1578; &#1575;&#1604;&#1575;&#1602;&#1578;&#1585;&#1575;&#1576; &#1605;&#1606;&#1607;&#1548; &#1578;&#1580;&#1585;&#1571; &#1573;&#1610;&#1604;&#1610; &#1608;&#1583;&#1582;&#1604; &#1573;&#1604;&#1609; &#1594;&#1585;&#1601;&#1578;&#1607; &#1608;&#1575;&#1593;&#1578;&#1606;&#1609; &#1576;&#1607; &#1608;&#1581;&#1602;&#1606;&#1607; &#1576;&#1573;&#1576;&#1585;&#1577; &#1575;&#1604;&#1605;&#1590;&#1575;&#1583; &#1575;&#1604;&#1581;&#1610;&#1608;&#1610; &#1571;&#1603;&#1579;&#1585; &#1605;&#1606; &#1605;&#1585;&#1617;&#1577; &#1601;&#1610; &#1571;&#1587;&#1601;&#1604; &#1575;&#1604;&#1592;&#1607;&#1585;.<br /><br />&#1602;&#1575;&#1605; &#1576;&#1606;&#1602;&#1604; &#1575;&#1605;&#1585;&#1571;&#1577; &#1605;&#1589;&#1575;&#1576;&#1577; &#1576;&#1605;&#1585;&#1590; &#1575;&#1604;&#1607;&#1604;&#1608;&#1587;&#1577; (&#1575;&#1604;&#1609; &#1605;&#1587;&#1578;&#1588;&#1601;&#1609; &#1576;&#1593;&#1610;&#1583;) &#1606;&#1578;&#1610;&#1580;&#1577; &#1604;&#1601;&#1602;&#1583;&#1575;&#1606; &#1575;&#1576;&#1606;&#1578;&#1607;&#1575; &#1608;&#1584;&#1604;&#1603; &#1576;&#1606;&#1575;&#1569; &#1604;&#1591;&#1604;&#1576; &#1575;&#1576;&#1606;&#1578;&#1607;&#1575; &#1575;&#1604;&#1579;&#1575;&#1606;&#1610;&#1577;&#1548; &#1575;&#1604;&#1578;&#1610; &#1585;&#1580;&#1578;&#1607; &#1605;&#1593;&#1575;&#1604;&#1580;&#1578;&#1607;&#1575; &#1576;&#1593;&#1583; &#1571;&#1606; &#1578;&#1593;&#1584;&#1617;&#1585;&#1593;&#1604;&#1610;&#1607;&#1575; &#1583;&#1582;&#1608;&#1604; &#1605;&#1587;&#1578;&#1588;&#1601;&#1610;&#1575;&#1578; &#1575;&#1604;&#1605;&#1606;&#1591;&#1602;&#1577; &#1604;&#1571;&#1587;&#1576;&#1575;&#1576; &#1605;&#1575;&#1583;&#1610;&#1577;&#1548; &#1601;&#1593;&#1575;&#1604;&#1580;&#1607;&#1575; &#1605;&#1580;&#1575;&#1606;&#1575;.</div><div align=\"right\">&nbsp;</div><div align=\"right\">\\&#1581;&#1583;&#1579; &#1571;&#1606; &#1578;&#1593;&#1585;&#1617;&#1590;&#1578; &#1589;&#1576;&#1610;&#1617;&#1577; &#1604;&#1603;&#1587;&#1608;&#1585; &#1601;&#1610; &#1575;&#1604;&#1593;&#1575;&#1605;&#1608;&#1583; &#1575;&#1604;&#1601;&#1602;&#1585;&#1610; &#1573;&#1579;&#1585; &#1581;&#1575;&#1583;&#1579; &#1571;&#1601;&#1602;&#1583;&#1607;&#1575; &#1575;&#1604;&#1602;&#1583;&#1585;&#1577; &#1593;&#1604;&#1609; &#1575;&#1604;&#1581;&#1585;&#1603;&#1577; &#1601;&#1604;&#1575;&#1586;&#1605;&#1578;&#1607;&#1575; &#1588;&#1602;&#1610;&#1602;&#1578;&#1607;&#1575; &#1604;&#1610;&#1604;&#1575; &#1601;&#1610; &#1575;&#1604;&#1605;&#1587;&#1578;&#1588;&#1601;&#1609;&#1548; &#1594;&#1604;&#1576;&#1607;&#1575; &#1575;&#1604;&#1606;&#1593;&#1575;&#1587; &#1579;&#1605; &#1575;&#1587;&#1578;&#1601;&#1575;&#1602;&#1578; &#1604;&#1578;&#1580;&#1583; &#1571;&#1606; &#1588;&#1602;&#1610;&#1602;&#1578;&#1607;&#1575; &#1575;&#1604;&#1605;&#1589;&#1575;&#1576;&#1577; &#1602;&#1583; &#1601;&#1575;&#1585;&#1602;&#1578; &#1575;&#1604;&#1581;&#1610;&#1575;&#1577;. &#1601;&#1571;&#1582;&#1584;&#1578; &#1578;&#1604;&#1608;&#1605; &#1606;&#1601;&#1587;&#1607;&#1575; &#1608;&#1575;&#1604;&#1605;&#1587;&#1578;&#1588;&#1601;&#1609; &#1608;&#1575;&#1604;&#1580;&#1607;&#1575;&#1586; &#1575;&#1604;&#1578;&#1605;&#1585;&#1610;&#1590;&#1610; &#1602;&#1575;&#1574;&#1604;&#1577;: &quot;&#1604;&#1608; &#1604;&#1605; &#1571;&#1606;&#1605; &#1604;&#1605;&#1575; &#1605;&#1575;&#1578;&#1578; &#1571;&#1582;&#1578;&#1610;&#1548; &#1585;&#1576;&#1605;&#1575; &#1603;&#1606;&#1578; &#1606;&#1575;&#1583;&#1610;&#1578; &#1571;&#1581;&#1583;&#1575; &#1604;&#1573;&#1606;&#1602;&#1575;&#1584;&#1607;&#1575;&quot;&#1563; &#1608;&#1593;&#1575;&#1588;&#1578; &#1575;&#1604;&#1588;&#1602;&#1610;&#1602;&#1577; &#1601;&#1610; &#1607;&#1575;&#1580;&#1587; &#1584;&#1604;&#1603; &#1575;&#1604;&#1584;&#1606;&#1576;. &#1608;&#1593;&#1606;&#1583;&#1605;&#1575; &#1575;&#1604;&#1578;&#1602;&#1578; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610; &#1571;&#1582;&#1576;&#1585;&#1578;&#1607; &#1576;&#1575;&#1604;&#1571;&#1605;&#1585; &#1601;&#1571;&#1580;&#1575;&#1576;&#1607;&#1575;: &quot;&#1571;&#1606;&#1578; &#1606;&#1605;&#1578;&#1548; &#1608;&#1575;&#1604;&#1605;&#1605;&#1585;&#1590;&#1575;&#1578; &#1606;&#1575;&#1605;&#1608;&#1575;&#1548; &#1608;&#1575;&#1604;&#1571;&#1591;&#1576;&#1575;&#1569; &#1594;&#1575;&#1576;&#1608;&#1575;&#1548; &#1601;&#1607;&#1604; &#1575;&#1606; &#1575;&#1604;&#1604;&#1607; &#1606;&#1575;&#1605; &#1571;&#1610;&#1590;&#1575;&#1567;! &#1607;&#1584;&#1607; &#1605;&#1588;&#1610;&#1574;&#1577; &#1575;&#1604;&#1604;&#1607;&#1548; &#1601;&#1575;&#1585;&#1578;&#1575;&#1581;&#1578; &#1605;&#1606; &#1587;&#1575;&#1593;&#1578;&#1607;&#1575;&quot;.<br />&#1571;<br />&#1589;&#1610;&#1576;&#1578; &#1601;&#1578;&#1575;&#1577; &#1576;&#1581;&#1575;&#1583;&#1579; &#1587;&#1610;&#1585; &#1606;&#1602;&#1604;&#1578; &#1593;&#1604;&#1609; &#1571;&#1579;&#1585;&#1607; &#1575;&#1604;&#1609; &#1605;&#1587;&#1578;&#1588;&#1601;&#1609; &#1601;&#1610; &#1575;&#1604;&#1580;&#1576;&#1604; &#1602;&#1585;&#1610;&#1576; &#1605;&#1606; &#1605;&#1606;&#1591;&#1602;&#1577; &#1575;&#1604;&#1581;&#1575;&#1583;&#1579; &#1608;&#1593;&#1606;&#1583;&#1605;&#1575; &#1575;&#1578;&#1589;&#1604; &#1571;&#1607;&#1604;&#1607;&#1575; &#1576;&#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610; &#1603;&#1610; &#1610;&#1593;&#1575;&#1610;&#1606;&#1607;&#1575; &#1608;&#1610;&#1593;&#1591;&#1610;&#1607;&#1605; &#1575;&#1604;&#1606;&#1589;&#1581; &#1575;&#1604;&#1591;&#1576;&#1617;&#1610;&#1548; &#1575;&#1587;&#1578;&#1602;&#1604; &#1587;&#1610;&#1575;&#1585;&#1578;&#1607; &#1601;&#1580;&#1585;&#1611;&#1575; &#1608;&#1584;&#1607;&#1576; &#1576;&#1575;&#1604;&#1585;&#1594;&#1605; &#1605;&#1606; &#1576;&#1593;&#1583; &#1575;&#1604;&#1605;&#1587;&#1575;&#1601;&#1577;. &#1608;&#1576;&#1593;&#1583; &#1575;&#1604;&#1603;&#1588;&#1601; &#1593;&#1604;&#1610;&#1607;&#1575; &#1608;&#1578;&#1602;&#1583;&#1610;&#1605; &#1575;&#1604;&#1573;&#1587;&#1593;&#1575;&#1601;&#1575;&#1578; &#1575;&#1604;&#1571;&#1608;&#1617;&#1604;&#1610;&#1577; &#1604;&#1607;&#1575; &#1606;&#1602;&#1604;&#1607;&#1575; &#1573;&#1604;&#1609; &#1605;&#1587;&#1578;&#1588;&#1601;&#1609; &#1570;&#1582;&#1585; &#1583;&#1608;&#1606; &#1571;&#1610; &#1605;&#1602;&#1575;&#1576;&#1604;.<br /><br />&#1603;&#1575;&#1606; &#1607;&#1606;&#1575;&#1603; &#1605;&#1585;&#1610;&#1590;&#1577; &#1576;&#1575;&#1604;&#1602;&#1604;&#1576; &#1605;&#1602;&#1593;&#1583;&#1577; &#1608;&#1604;&#1605; &#1578;&#1603;&#1606; &#1578;&#1587;&#1578;&#1591;&#1610;&#1593; &#1575;&#1604;&#1605;&#1580;&#1610;&#1569; &#1573;&#1604;&#1609; &#1575;&#1604;&#1593;&#1610;&#1575;&#1583;&#1577;&#1548; &#1601;&#1603;&#1575;&#1606; &#1610;&#1602;&#1608;&#1605; &#1576;&#1586;&#1610;&#1575;&#1585;&#1578;&#1607;&#1575; &#1601;&#1610; &#1575;&#1604;&#1605;&#1606;&#1586;&#1604;&#1548; &#1581;&#1578;&#1609; &#1576;&#1593;&#1583; &#1605;&#1606;&#1578;&#1589;&#1601; &#1575;&#1604;&#1604;&#1610;&#1604; &#1605;&#1578;&#1609; &#1604;&#1586;&#1605; &#1575;&#1604;&#1571;&#1605;&#1585;&#1548; &#1575;&#1579;&#1585; &#1573;&#1589;&#1575;&#1576;&#1578;&#1607;&#1575; &#1576;&#1606;&#1608;&#1576;&#1575;&#1578; &#1602;&#1604;&#1576;&#1610;&#1577; &#1608;&#1610;&#1602;&#1583;&#1605; &#1604;&#1607;&#1575; &#1575;&#1604;&#1593;&#1606;&#1575;&#1610;&#1577; &#1605;&#1580;&#1575;&#1606;&#1575;.<br />&#1593;&#1575;&#1604;&#1580; &#1573;&#1610;&#1604;&#1610; &#1575;&#1605;&#1585;&#1571;&#1577; &#1605;&#1587;&#1606;&#1577; &#1601;&#1610; &#1575;&#1604;&#1593;&#1602;&#1583; &#1575;&#1604;&#1578;&#1575;&#1587;&#1593; &#1605;&#1589;&#1575;&#1576;&#1577; &#1576;&#1575;&#1581;&#1578;&#1602;&#1575;&#1606; &#1601;&#1610; &#1575;&#1604;&#1585;&#1574;&#1577;Pulmonary edema))&#1548; &#1581;&#1610;&#1579; &#1593;&#1575;&#1610;&#1606;&#1607;&#1575; &#1601;&#1610; &#1575;&#1604;&#1605;&#1587;&#1578;&#1608;&#1589;&#1601; &#1608;&#1604;&#1605; &#1610;&#1603;&#1606; &#1576;&#1575;&#1587;&#1578;&#1591;&#1575;&#1593;&#1578;&#1607;&#1575; &#1583;&#1582;&#1608;&#1604; &#1575;&#1604;&#1605;&#1587;&#1578;&#1588;&#1601;&#1609; &#1601;&#1581;&#1608;&#1617;&#1604; &#1594;&#1585;&#1601;&#1577; &#1606;&#1608;&#1605;&#1607;&#1575; &#1575;&#1604;&#1605;&#1578;&#1608;&#1575;&#1590;&#1593;&#1577; &#1575;&#1604;&#1609; &#1594;&#1585;&#1601;&#1577; &#1593;&#1606;&#1575;&#1610;&#1577; &#1601;&#1575;&#1574;&#1602;&#1577; &#1608;&#1571;&#1581;&#1590;&#1585; &#1603;&#1604; &#1605;&#1575; &#1604;&#1586;&#1605; &#1605;&#1606; &#1605;&#1593;&#1583;&#1575;&#1578; &#1608;&#1571;&#1583;&#1608;&#1610;&#1577;. &#1608;&#1571;&#1589;&#1576;&#1581; &#1610;&#1586;&#1608;&#1585;&#1607;&#1575; &#1579;&#1604;&#1575;&#1579; &#1605;&#1585;&#1575;&#1578; &#1610;&#1608;&#1605;&#1610;&#1575; &#1581;&#1578;&#1609; &#1588;&#1601;&#1610;&#1578;&#1548; &#1608;&#1584;&#1604;&#1603; &#1583;&#1608;&#1606; &#1571;&#1610; &#1605;&#1602;&#1575;&#1576;&#1604;.<br />&#1593;&#1575;&#1604;&#1580; &#1605;&#1585;&#1610;&#1590;&#1575; &#1605;&#1589;&#1575;&#1576;&#1575; &#1576;&#1606;&#1608;&#1576;&#1577; &#1590;&#1610;&#1602; &#1601;&#1610; &#1575;&#1604;&#1578;&#1606;&#1601;&#1617;&#1587; &#1581;&#1610;&#1579; &#1571;&#1578;&#1575;&#1607; &#1576;&#1575;&#1604;&#1583;&#1608;&#1575;&#1569; &#1575;&#1604;&#1609; &#1575;&#1604;&#1605;&#1606;&#1586;&#1604; &#1608;&#1571;&#1593;&#1591;&#1575;&#1607; &#1605;&#1589;&#1604;&#1575; &#1608;&#1604;&#1605; &#1610;&#1578;&#1602;&#1575;&#1590;&#1609; &#1605;&#1606;&#1607; &#1588;&#1610;&#1569; &#1576;&#1587;&#1576;&#1576; &#1593;&#1580;&#1586;&#1607; &#1593;&#1606; &#1583;&#1582;&#1608;&#1604; &#1575;&#1604;&#1605;&#1587;&#1578;&#1588;&#1601;&#1609;. </div> <br />&#1601;&#1578;&#1575;&#1577; &#1593;&#1605;&#1585;&#1607;&#1575; &#1582;&#1605;&#1587; &#1593;&#1588;&#1585;&#1577; &#1587;&#1606;&#1577; &#1571;&#1589;&#1610;&#1576;&#1578; &#1593;&#1604;&#1609; &#1575;&#1579;&#1585; &#1581;&#1575;&#1583;&#1579; &#1608;&#1583;&#1582;&#1604;&#1578; &#1601;&#1610; &#1594;&#1610;&#1576;&#1608;&#1576;&#1577; &#1608;&#1603;&#1575;&#1606; &#1575;&#1610;&#1604;&#1610; &#1608;&#1602;&#1578;&#1574;&#1584; &#1591;&#1576;&#1610;&#1576;&#1611;&#1575; &#1605;&#1578;&#1605;&#1585;&#1606;&#1611;&#1575;. &#1578;&#1608;&#1602;&#1601; &#1602;&#1604;&#1576;&#1607;&#1575; &#1601;&#1576;&#1583;&#1571; &#1575;&#1604;&#1571;&#1591;&#1576;&#1575;&#1569; &#1576;&#1573;&#1606;&#1593;&#1575;&#1588;&#1607;&#1575; &#1608;&#1604;&#1605;&#1575; &#1604;&#1605; &#1610;&#1576;&#1583;&#1585; &#1605;&#1606;&#1607;&#1575; &#1571;&#1610; &#1578;&#1580;&#1575;&#1608;&#1576; &#1602;&#1585;&#1585;&#1608;&#1575; &#1593;&#1583;&#1605; &#1575;&#1604;&#1605;&#1578;&#1575;&#1576;&#1593;&#1577; &#1608;&#1578;&#1585;&#1603;&#1608;&#1607;&#1575; &#1605;&#1593;&#1578;&#1576;&#1585;&#1610;&#1606; &#1571;&#1606;&#1607;&#1575; &#1605;&#1575;&#1578;&#1578;. &#1608;&#1604;&#1603;&#1606; &#1575;&#1610;&#1604;&#1610; &#1571;&#1589;&#1585;&#1617; &#1593;&#1604;&#1609; &#1573;&#1606;&#1593;&#1575;&#1588;&#1607;&#1575; &#1608;&#1573;&#1593;&#1591;&#1575;&#1574;&#1607;&#1575; &#1575;&#1604;&#1571;&#1583;&#1608;&#1610;&#1577; &#1575;&#1604;&#1604;&#1575;&#1586;&#1605;&#1577; &#1608;&#1575;&#1604;&#1589;&#1583;&#1605;&#1575;&#1578; &#1575;&#1604;&#1603;&#1607;&#1585;&#1576;&#1575;&#1574;&#1610;&#1577; &#1593;&#1604;&#1609; &#1605;&#1587;&#1572;&#1608;&#1604;&#1610;&#1578;&#1607; &#1604;&#1571;&#1606;&#1607; &#1575;&#1587;&#1578;&#1593;&#1605;&#1604; &#1604;&#1607;&#1575; &#1571;&#1583;&#1608;&#1610;&#1577; &#1594;&#1575;&#1604;&#1610;&#1577; &#1575;&#1604;&#1579;&#1605;&#1606; &#1581;&#1578;&#1609; &#1578;&#1580;&#1575;&#1608;&#1576;&#1578;. &#1601;&#1610; &#1575;&#1604;&#1610;&#1608;&#1605; &#1575;&#1604;&#1578;&#1575;&#1604;&#1610; &#1578;&#1593;&#1580;&#1576; &#1575;&#1604;&#1571;&#1591;&#1576;&#1575;&#1569; &#1605;&#1605;&#1575; &#1581;&#1583;&#1579; &#1608;&#1607;&#1606;&#1572;&#1608;&#1607; &#1593;&#1604;&#1609; &#1605;&#1579;&#1575;&#1576;&#1585;&#1578;&#1607;. &#1608;&#1602;&#1583; &#1594;&#1575;&#1583;&#1585;&#1578; &#1575;&#1604;&#1601;&#1578;&#1575;&#1577; &#1575;&#1604;&#1605;&#1587;&#1578;&#1588;&#1601;&#1609; &#1576;&#1593;&#1583;&#1605;&#1575; &#1575;&#1587;&#1578;&#1601;&#1575;&#1602;&#1578; &#1605;&#1606; &#1575;&#1604;&#1594;&#1610;&#1576;&#1608;&#1576;&#1577; &#1576;&#1589;&#1581;&#1577; &#1580;&#1610;&#1583;&#1577; &#1608;&#1583;&#1608;&#1606; &#1593;&#1608;&#1575;&#1585;&#1590;. &#1608;&#1607;&#1610; &#1605;&#1575; &#1586;&#1575;&#1604;&#1578; &#1605;&#1593; &#1571;&#1607;&#1604;&#1607;&#1575; &#1581;&#1578;&#1609; &#1575;&#1604;&#1610;&#1608;&#1605; &#1610;&#1584;&#1603;&#1585;&#1608;&#1606; &#1575;&#1610;&#1604;&#1610; &#1583;&#1575;&#1574;&#1605;&#1575;&#1611; &#1608;&#1610;&#1602;&#1608;&#1604;&#1608;&#1606; &#1575;&#1606;&#1607; &#1604;&#1608;&#1604;&#1575;&#1607; &#1604;&#1603;&#1575;&#1606;&#1578; &#1601;&#1575;&#1585;&#1602;&#1578; &#1575;&#1604;&#1581;&#1610;&#1575;&#1577;&nbsp;&nbsp; <div align=\"right\"> <br />&#1578;&#1593;&#1608;&#1617;&#1583; &#1589;&#1576;&#1610; &#1589;&#1594;&#1610;&#1585; &#1576;&#1575;&#1604;&#1594; &#1605;&#1606; &#1575;&#1604;&#1593;&#1605;&#1585; &#1587;&#1576;&#1593; &#1587;&#1606;&#1608;&#1575;&#1578; &#1571;&#1606; &#1610;&#1571;&#1578;&#1610; &#1575;&#1604;&#1609; &#1571;&#1581;&#1583; &#1575;&#1604;&#1605;&#1585;&#1590;&#1609; &#1603;&#1610; &#1610;&#1593;&#1591;&#1610;&#1607; &#1581;&#1604;&#1608;&#1609;&#1548; &#1608;&#1576;&#1593;&#1583; &#1608;&#1601;&#1575;&#1577; &#1575;&#1604;&#1605;&#1585;&#1610;&#1590;&#1548; &#1589;&#1608;&#1583;&#1601; &#1608;&#1580;&#1608;&#1583; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610; &#1605;&#1593;&#1586;&#1610;&#1611;&#1575;&#1548; &#1601;&#1575;&#1604;&#1578;&#1602;&#1609; &#1576;&#1575;&#1604;&#1589;&#1576;&#1610; &#1608;&#1607;&#1608; &#1610;&#1607;&#1605;&#1587; &#1575;&#1604;&#1609; &#1575;&#1604;&#1586;&#1608;&#1580;&#1577;. &#1608;&#1604;&#1605;&#1575; &#1576;&#1575;&#1583;&#1585;&#1607;&#1575; &#1575;&#1610;&#1604;&#1610; &#1576;&#1575;&#1604;&#1587;&#1572;&#1575;&#1604; &#1593;&#1605;&#1575; &#1603;&#1575;&#1606; &#1610;&#1591;&#1604;&#1576;&#1607; &#1589;&#1585;&#1617;&#1581;&#1578; &#1604;&#1607; &#1571;&#1606;&#1607; &#1610;&#1578;&#1610;&#1605; &#1575;&#1604;&#1571;&#1576; &#1608;&#1604;&#1583;&#1610;&#1607; &#1579;&#1604;&#1575;&#1579;&#1577; &#1575;&#1582;&#1608;&#1577;&#1548; &#1601;&#1576;&#1575;&#1583;&#1585; &#1573;&#1610;&#1604;&#1610; &#1573;&#1604;&#1609; &#1605;&#1587;&#1575;&#1593;&#1583;&#1578;&#1607; &#1608;&#1571;&#1593;&#1591;&#1575;&#1607; &#1605;&#1575;&#1574;&#1577; &#1583;&#1608;&#1604;&#1575;&#1585; &#1571;&#1605;&#1585;&#1610;&#1603;&#1610;.<br /><br />&#1571;&#1579;&#1606;&#1575;&#1569; &#1575;&#1604;&#1602;&#1610;&#1575;&#1605; &#1576;&#1586;&#1610;&#1575;&#1585;&#1577; &#1578;&#1593;&#1586;&#1610;&#1577; &#1604;&#1571;&#1581;&#1583; &#1575;&#1604;&#1605;&#1593;&#1575;&#1585;&#1601;&#1548; &#1593;&#1604;&#1605; &#1573;&#1610;&#1604;&#1610; &#1576;&#1571;&#1606; &#1586;&#1608;&#1580; &#1575;&#1604;&#1605;&#1578;&#1608;&#1601;&#1575;&#1577; &#1604;&#1605; &#1610;&#1581;&#1578;&#1585;&#1605; &#1585;&#1594;&#1576;&#1578;&#1607;&#1575; &#1601;&#1610; &#1583;&#1601;&#1606; &#1580;&#1579;&#1605;&#1575;&#1606;&#1607;&#1575; &#1601;&#1610; &#1575;&#1604;&#1605;&#1603;&#1575;&#1606; &#1575;&#1604;&#1605;&#1593;&#1610;&#1617;&#1606; &#1605;&#1606; &#1602;&#1576;&#1604;&#1607;&#1575;. &#1601;&#1576;&#1575;&#1583;&#1585; &#1573;&#1604;&#1609; &#1575;&#1576;&#1606;&#1578;&#1607;&#1575; &#1605;&#1593;&#1586;&#1610;&#1611;&#1575; &#1576;&#1593;&#1583; &#1571;&#1606; &#1604;&#1575;&#1581;&#1592; &#1573;&#1610;&#1604;&#1610; &#1593;&#1604;&#1610;&#1607;&#1575; &#1575;&#1604;&#1575;&#1587;&#1578;&#1610;&#1575;&#1569; &#1605;&#1606; &#1584;&#1604;&#1603; &#1576;&#1602;&#1608;&#1604;&#1607; : &quot;&#1588;&#1608; &#1607;&#1605;&#1617;&#1575; &#1575;&#1604;&#1608;&#1585;&#1602;&#1577; &#1604;&#1605;&#1575; &#1576;&#1578;&#1608;&#1602;&#1593; &#1608;&#1610;&#1606; &#1576;&#1578;&#1603;&#1576;&#1617;&#1607;&#1575; &#1575;&#1604;&#1585;&#1610;&#1581;&quot;&#1548; &#1601;&#1571;&#1586;&#1575;&#1604; &#1593;&#1606;&#1607;&#1575; &#1575;&#1604;&#1581;&#1586;&#1606; &#1608;&#1575;&#1604;&#1571;&#1587;&#1609;.<br /><br />&#1575;&#1605;&#1585;&#1571;&#1577; &#1605;&#1589;&#1575;&#1576;&#1577; &#1576;&#1605;&#1585;&#1590; &#1601;&#1610; &#1575;&#1604;&#1602;&#1604;&#1576; &#1605;&#1606;&#1593;&#1607;&#1575; &#1575;&#1604;&#1571;&#1591;&#1576;&#1575;&#1569; &#1605;&#1606; &#1575;&#1604;&#1581;&#1605;&#1604; &#1576;&#1587;&#1576;&#1576; &#1581;&#1575;&#1604;&#1578;&#1607;&#1575; &#1575;&#1604;&#1583;&#1602;&#1610;&#1602;&#1577;&#1548; &#1601;&#1606;&#1589;&#1581;&#1607;&#1575; &#1571;&#1581;&#1583;&#1607;&#1605; &#1576;&#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610; &#1581;&#1610;&#1579; &#1593;&#1575;&#1583;&#1578;&#1607; &#1601;&#1593;&#1575;&#1604;&#1580;&#1607;&#1575; &#1608;&#1588;&#1601;&#1575;&#1607;&#1575; &#1608;&#1587;&#1605;&#1581; &#1604;&#1607;&#1575; &#1576;&#1575;&#1604;&#1573;&#1606;&#1580;&#1575;&#1576;. </div> &#1605;&#1575; &#1587;&#1571;&#1604;&#1578; &#1571;&#1581;&#1583;&#1575; &#1593;&#1606;&#1607; &#1573;&#1604;&#1575; &#1608;&#1575;&#1594;&#1585;&#1608;&#1585;&#1602;&#1578; &#1593;&#1610;&#1606;&#1575;&#1607; &#1576;&#1575;&#1604;&#1583;&#1605;&#1608;&#1593; &#1608;&#1571;&#1582;&#1576;&#1585;&#1603; &#1593;&#1606; &#1571;&#1603;&#1579;&#1585; &#1605;&#1606; &#1581;&#1575;&#1583;&#1579;&#1577; &#1581;&#1589;&#1604;&#1578; &#1605;&#1593;&#1607;&#1548; &#1608;&#1571;&#1588;&#1575;&#1583; &#1576;&#1605;&#1586;&#1575;&#1610;&#1575;&#1607; &#1575;&#1604;&#1581;&#1605;&#1610;&#1583;&#1577; &#1608;&#1575;&#1576;&#1578;&#1587;&#1575;&#1605;&#1578;&#1607; &#1575;&#1604;&#1583;&#1575;&#1574;&#1605;&#1577; &#1575;&#1604;&#1578;&#1610; &#1578;&#1586;&#1585;&#1593; &#1575;&#1604;&#1601;&#1585;&#1581; &#1571;&#1610;&#1606;&#1605;&#1575; &#1581;&#1604;&#1617; &#1608;&#1575;&#1604;&#1571;&#1605;&#1575;&#1606; &#1608;&#1575;&#1604;&#1591;&#1605;&#1571;&#1606;&#1610;&#1606;&#1577;&#1548; &#1602;&#1575;&#1574;&#1604;&#1575;: &quot;&#1605;&#1575; &#1601;&#1610; &#1605;&#1578;&#1604;&#1608; &#1575;&#1604;&#1602;&#1585;&#1593;&#1608;&#1606;&#1610; &#1605;&#1575; &#1576;&#1602;&#1609; &#1610;&#1580;&#1610; &#1605;&#1578;&#1604;&#1608; &#1607;&#1610;&#1583;&#1575; &#1605;&#1604;&#1575;&#1603; &#1605;&#1606; &#1575;&#1604;&#1587;&#1605;&#1575; <br /></div><p dir=\"rtl\">&nbsp;</p></div>',1,5,0,16,'2008-03-08 22:31:16',62,'','2009-06-05 21:39:12',62,64,'2011-05-04 14:17:31','2008-03-08 22:24:43','0000-00-00 00:00:00','elie1.png|left||0||bottom||','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',5,0,1,'','',0,4507),(21,'New Medias 1','','<p align=\"right\"><span style=\"font-size: 16pt; line-height: 115%; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;\">&#1576;&#1585;&#1593;&#1575;&#1610;&#1577; &#1608;&#1581;&#1590;&#1608;&#1585; &#1587;&#1610;&#1575;&#1583;&#1577; &#1605;&#1578;&#1585;&#1608;&#1576;&#1608;&#1604;&#1610;&#1578; &#1580;&#1576;&#1610;&#1604; &#1608;&#1575;&#1604;&#1576;&#1578;&#1585;&#1608;&#1606; &#1608;&#1605;&#1575; &#1610;&#1604;&#1610;&#1607;&#1605;&#1575; (&#1580;&#1576;&#1604; &#1604;&#1576;&#1606;&#1575;&#1606;</span><span style=\"font-size: 18pt; line-height: 115%; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;\">) </span><span style=\"font-size: 16pt; line-height: 115%; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;\">&#1575;&#1604;&#1605;&#1591;&#1585;&#1575;&#1606; &#1580;&#1608;&#1585;&#1580; &#1582;&#1590;&#1585;&#1548; &#1575;&#1602;&#1610;&#1605; &#1604;&#1602;&#1575;&#1569; &#1578;&#1603;&#1585;&#1610;&#1605;&#1610; &#1604;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610; &#1582;&#1604;&#1610;&#1604; &#1602;&#1585;&#1593;&#1608;&#1606;&#1610; &#1578;&#1585;&#1575;&#1601;&#1602; &#1605;&#1593; &#1589;&#1583;&#1608;&#1585; &#1603;&#1578;&#1575;&#1576;&#1607; &quot;&#1608;&#1604;&#1606; &#1610;&#1587;&#1602;&#1591; &#1575;&#1604;&#1587;&#1610;&#1601; &#1605;&#1606; &#1610;&#1583;&#1610;....&quot; &#1605;&#1587;&#1575;&#1569; &#1575;&#1604;&#1587;&#1576;&#1578; 10 &#1578;&#1588;&#1585;&#1610;&#1606; &#1575;&#1604;&#1579;&#1575;&#1606;&#1610; &#1587;&#1606;&#1577; 2001 &#1601;&#1610; &#1603;&#1606;&#1610;&#1587;&#1577; &#1575;&#1604;&#1602;&#1583;&#1610;&#1587; &#1580;&#1575;&#1608;&#1585;&#1580;&#1610;&#1608;&#1587; &#1604;&#1604;&#1585;&#1608;&#1605; &#1575;&#1604;&#1571;&#1585;&#1579;&#1608;&#1584;&#1603;&#1587; &ndash; &#1580;&#1583;&#1610;&#1583;&#1577; &#1575;&#1604;&#1605;&#1578;&#1606;</span> <!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>AR-SA</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:DontVertAlignCellWithSp/> <w:DontBreakConstrainedForcedTables/> <w:DontVertAlignInTxbx/> <w:Word11KerningPairs/> <w:CachedColBalance/> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles> </xml><![endif]--> <!-- /* Font Definitions */ @font-face {font-family:\"Cambria Math\"; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4; mso-font-charset:0; mso-generic-font-family:swiss; mso-font-pitch:variable; mso-font-signature:-1610611985 1073750139 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:\"\"; margin-top:0in; margin-right:0in; margin-bottom:10.0pt; margin-left:0in; line-height:115%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:\"Calibri\",\"sans-serif\"; mso-fareast-font-family:Calibri; mso-bidi-font-family:Arial;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt; mso-ascii-font-family:Calibri; mso-fareast-font-family:Calibri; mso-hansi-font-family:Calibri; mso-bidi-font-family:Arial;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --> <!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>AR-SA</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:DontVertAlignCellWithSp/> <w:DontBreakConstrainedForcedTables/> <w:DontVertAlignInTxbx/> <w:Word11KerningPairs/> <w:CachedColBalance/> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles> </xml><![endif]--> <!-- /* Font Definitions */ @font-face {font-family:\"Cambria Math\"; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4; mso-font-charset:0; mso-generic-font-family:swiss; mso-font-pitch:variable; mso-font-signature:-1610611985 1073750139 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:\"\"; margin-top:0in; margin-right:0in; margin-bottom:10.0pt; margin-left:0in; line-height:115%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:\"Calibri\",\"sans-serif\"; mso-fareast-font-family:Calibri; mso-bidi-font-family:Arial;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt; mso-ascii-font-family:Calibri; mso-fareast-font-family:Calibri; mso-hansi-font-family:Calibri; mso-bidi-font-family:Arial;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --> <!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable {mso-style-name:\"Table Normal\"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-qformat:yes; mso-style-parent:\"\"; mso-padding-alt:0in 5.4pt 0in 5.4pt; mso-para-margin:0in; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:11.0pt; font-family:\"Calibri\",\"sans-serif\"; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:\"Times New Roman\"; mso-fareast-theme-font:minor-fareast; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:Arial; mso-bidi-theme-font:minor-bidi;} </style> <![endif]--> </p><p style=\"text-align: right\" class=\"MsoNormal\" align=\"right\"><span style=\"font-size: 16pt; line-height: 115%; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;\"><span>&nbsp;&nbsp;&nbsp; </span>&#1575;&#1604;&#1602;&#1609; &#1603;&#1604;&#1605;&#1577; &#1603;&#1604; &#1605;&#1606;</span></p> <p style=\"text-align: right\" class=\"MsoNormal\" align=\"right\"><span style=\"font-size: 16pt; line-height: 115%; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;\"><span>&nbsp;</span>&#1585;&#1574;&#1610;&#1587;&#1577; &#1605;&#1580;&#1604;&#1587; &#1575;&#1604;&#1601;&#1603;&#1585; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585;&#1577; &#1603;&#1604;&#1608;&#1583;&#1610;&#1575; &#1575;&#1576;&#1610; &#1606;&#1575;&#1583;&#1585;</span></p><p style=\"text-align: right\" class=\"MsoNormal\" align=\"right\">{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/ClaudiaNader.wmv} </p><p style=\"text-align: right\" class=\"MsoNormal\" align=\"right\"><span style=\"font-size: 16pt; line-height: 115%; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;\">&#1587;&#1610;&#1575;&#1583;&#1577; &#1605;&#1578;&#1585;&#1608;&#1576;&#1608;&#1604;&#1610;&#1578; &#1580;&#1576;&#1604; &#1604;&#1576;&#1606;&#1575;&#1606; &#1575;&#1604;&#1605;&#1591;&#1585;&#1575;&#1606; &#1580;&#1608;&#1585;&#1580; &#1582;&#1590;&#1585;<br /></span></p><p style=\"text-align: right\" class=\"MsoNormal\" align=\"right\">{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/GeorgesKhodr.wmv} </p><p style=\"text-align: right\" class=\"MsoNormal\" align=\"right\"><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>AR-SA</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:DontVertAlignCellWithSp/> <w:DontBreakConstrainedForcedTables/> <w:DontVertAlignInTxbx/> <w:Word11KerningPairs/> <w:CachedColBalance/> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles> </xml><![endif]--> <!-- /* Font Definitions */ @font-face {font-family:\"Cambria Math\"; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4; mso-font-charset:0; mso-generic-font-family:swiss; mso-font-pitch:variable; mso-font-signature:-1610611985 1073750139 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:\"\"; margin-top:0in; margin-right:0in; margin-bottom:10.0pt; margin-left:0in; line-height:115%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:\"Calibri\",\"sans-serif\"; mso-fareast-font-family:Calibri; mso-bidi-font-family:Arial;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt; mso-ascii-font-family:Calibri; mso-fareast-font-family:Calibri; mso-hansi-font-family:Calibri; mso-bidi-font-family:Arial;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --> <!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable {mso-style-name:\"Table Normal\"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-qformat:yes; mso-style-parent:\"\"; mso-padding-alt:0in 5.4pt 0in 5.4pt; mso-para-margin:0in; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:11.0pt; font-family:\"Calibri\",\"sans-serif\"; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:\"Times New Roman\"; mso-fareast-theme-font:minor-fareast; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:Arial; mso-bidi-theme-font:minor-bidi;} </style> <![endif]--><span style=\"font-size: 16pt; line-height: 115%; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;\"><span>&nbsp;</span>&#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1580;&#1575;&#1603; &#1605;&#1582;&#1576;&#1575;&#1591;</span>&nbsp;</p><p style=\"text-align: right\" class=\"MsoNormal\" align=\"right\">{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/jmoukhbat.wmv} </p><p style=\"text-align: right\" class=\"MsoNormal\" align=\"right\"><span style=\"font-size: 16pt; line-height: 115%; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;\">&#1588;&#1602;&#1610;&#1602;&#1577; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610; &#1582;&#1604;&#1610;&#1604; &#1602;&#1585;&#1593;&#1608;&#1606;&#1610; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585;&#1577; &#1604;&#1610;&#1606;&#1575;</span></p> <p style=\"text-align: right\" class=\"MsoNormal\" align=\"right\">{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/LenaKarouny.wmv} </p><p style=\"text-align: right\" class=\"MsoNormal\" align=\"right\"><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>AR-SA</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:DontVertAlignCellWithSp/> <w:DontBreakConstrainedForcedTables/> <w:DontVertAlignInTxbx/> <w:Word11KerningPairs/> <w:CachedColBalance/> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles> </xml><![endif]--> <!-- /* Font Definitions */ @font-face {font-family:\"Cambria Math\"; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4; mso-font-charset:0; mso-generic-font-family:swiss; mso-font-pitch:variable; mso-font-signature:-1610611985 1073750139 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:\"\"; margin-top:0in; margin-right:0in; margin-bottom:10.0pt; margin-left:0in; line-height:115%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:\"Calibri\",\"sans-serif\"; mso-fareast-font-family:Calibri; mso-bidi-font-family:Arial;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt; mso-ascii-font-family:Calibri; mso-fareast-font-family:Calibri; mso-hansi-font-family:Calibri; mso-bidi-font-family:Arial;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --> <!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable {mso-style-name:\"Table Normal\"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-qformat:yes; mso-style-parent:\"\"; mso-padding-alt:0in 5.4pt 0in 5.4pt; mso-para-margin:0in; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:11.0pt; font-family:\"Calibri\",\"sans-serif\"; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:\"Times New Roman\"; mso-fareast-theme-font:minor-fareast; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:Arial; mso-bidi-theme-font:minor-bidi;} </style> <![endif]--> </p><!--Session data--><!--Session data-->','<br /><!--Session data--><!--Session data-->',1,6,0,17,'2008-11-01 10:08:19',62,'','2009-11-17 15:03:55',63,0,'0000-00-00 00:00:00','2008-11-01 10:07:33','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',21,0,3,'','',0,3791),(23,'New Medias 2','','<p align=\"right\">&nbsp;<!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>AR-SA</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:DontVertAlignCellWithSp/> <w:DontBreakConstrainedForcedTables/> <w:DontVertAlignInTxbx/> <w:Word11KerningPairs/> <w:CachedColBalance/> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles> </xml><![endif]--> <!-- /* Font Definitions */ @font-face {font-family:\"Cambria Math\"; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4; mso-font-charset:0; mso-generic-font-family:swiss; mso-font-pitch:variable; mso-font-signature:-1610611985 1073750139 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:\"\"; margin-top:0in; margin-right:0in; margin-bottom:10.0pt; margin-left:0in; line-height:115%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:\"Calibri\",\"sans-serif\"; mso-fareast-font-family:Calibri; mso-bidi-font-family:Arial;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt; mso-ascii-font-family:Calibri; mso-fareast-font-family:Calibri; mso-hansi-font-family:Calibri; mso-bidi-font-family:Arial;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --> <!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable {mso-style-name:\"Table Normal\"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-qformat:yes; mso-style-parent:\"\"; mso-padding-alt:0in 5.4pt 0in 5.4pt; mso-para-margin:0in; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:11.0pt; font-family:\"Calibri\",\"sans-serif\"; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:\"Times New Roman\"; mso-fareast-theme-font:minor-fareast; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:Arial; mso-bidi-theme-font:minor-bidi;} </style> <![endif]-->&#1576;&#1585;&#1593;&#1575;&#1610;&#1577; &#1608;&#1581;&#1590;&#1608;&#1585; &#1608;&#1586;&#1610;&#1585; &#1575;&#1604;&#1579;&#1602;&#1575;&#1601;&#1577; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1591;&#1575;&#1585;&#1602; &#1605;&#1578;&#1585;&#1610;&#1548; &#1575;&#1581;&#1578;&#1601;&#1604;&#1578; &#1575;&#1604;&#1585;&#1575;&#1576;&#1591;&#1577; &#1575;&#1604;&#1604;&#1576;&#1606;&#1575;&#1606;&#1610;&#1577; &#1604;&#1604;&#1585;&#1608;&#1605; &#1575;&#1604;&#1571;&#1585;&#1579;&#1608;&#1584;&#1603;&#1587; &#1608;&#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585;&#1577; &#1604;&#1610;&#1606;&#1575; &#1602;&#1585;&#1593;&#1608;&#1606;&#1610; &#1576;&#1589;&#1583;&#1608;&#1585; &#1603;&#1578;&#1575;&#1576; &quot;&#1606;&#1608;&#1585; &#1605;&#1606; &#1575;&#1604;&#1587;&#1605;&#1575;&#1569;&quot; &#1604;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610; &#1582;&#1604;&#1610;&#1604; &#1602;&#1585;&#1593;&#1608;&#1606;&#1610; &#1601;&#1610; &#1602;&#1575;&#1593;&#1577; &#1575;&#1604;&#1576;&#1578;&#1604;&#1608;&#1606;&#1610;- &#1605;&#1587;&#1578;&#1588;&#1601;&#1609; &#1575;&#1604;&#1602;&#1583;&#1610;&#1587; &#1580;&#1575;&#1608;&#1585;&#1580;&#1610;&#1608;&#1587; &#1601;&#1610; &#1578;&#1588;&#1585;&#1610;&#1606; &#1575;&#1604;&#1579;&#1575;&#1606;&#1610; &#1587;&#1606;&#1577; 2005 <br />&nbsp; </p> <p align=\"right\">&#1581;&#1590;&#1585; &#1575;&#1604;&#1581;&#1601;&#1604; &#1581;&#1588;&#1583; &#1605;&#1606; &#1575;&#1604;&#1588;&#1582;&#1589;&#1610;&#1575;&#1578;. &#1608;&#1575;&#1604;&#1602;&#1609; &#1603;&#1604;&#1605;&#1577; &#1603;&#1604; &#1605;&#1606;&nbsp;&nbsp; </p><div align=\"right\"><pre>{ln:sirapheembardaweel &#39; &#1575;&#1604;&#1571;&#1585;&#1588;&#1605;&#1606;&#1583;&#1585;&#1610;&#1578; &#1587;&#1610;&#1585;&#1575;&#1601;&#1610;&#1605; &#1576;&#1585;&#1583;&#1608;&#1610;&#1604; &#1605;&#1605;&#1579;&#1604;&#1575;&#1611; &#1605;&#1578;&#1585;&#1608;&#1576;&#1608;&#1604;&#1610;&#1578; &#1576;&#1610;&#1585;&#1608;&#1578; &#1608;&#1578;&#1608;&#1575;&#1576;&#1593;&#1607;&#1575; &#1575;&#1604;&#1605;&#1591;&#1585;&#1575;&#1606; &#1575;&#1604;&#1610;&#1575;&#1587; &#1593;&#1608;&#1583;&#1577;}</pre><pre>{ln:ArletteMatta &#39; &#1575;&#1604;&#1587;&#1610;&#1583;&#1577; &#1571;&#1585;&#1606;&#1610;&#1578; &#1586;&#1608;&#1580;&#1577; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1606;&#1575;&#1592;&#1605; &#1605;&#1578;&#1609;}</pre><pre>{ln:LenaKarounyG &#39; &#1588;&#1602;&#1610;&#1602;&#1577; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610; &#1582;&#1604;&#1610;&#1604; &#1602;&#1585;&#1593;&#1608;&#1606;&#1610; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585;&#1577; &#1604;&#1610;&#1606;&#1575; &#1602;&#1585;&#1593;&#1608;&#1606;&#1610;}</pre><pre>&nbsp;{ln:Claudia abi Nader st Georges &#39;&#1585;&#1610;&#1587;&#1577; &#1605;&#1580;&#1604;&#1587; &#1575;&#1604;&#1601;&#1603;&#1585; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585;&#1577; &#1603;&#1604;&#1608;&#1583;&#1610;&#1575; &#1575;&#1576;&#1610; &#1606;&#1575;&#1583;&#1585;}</pre><pre>{ln:Nicolas Gholam &#39;&#1585;&#1610;&#1587; &#1575;&#1604;&#1585;&#1575;&#1576;&#1591;&#1577; &#1575;&#1604;&#1604;&#1576;&#1606;&#1575;&#1606;&#1610;&#1577; &#1604;&#1604;&#1585;&#1608;&#1605; &#1575;&#1604;&#1575;&#1608;&#1585;&#1579;&#1608;&#1584;&#1608;&#1603;&#1587; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1606;&#1602;&#1608;&#1604;&#1575; &#1593;&#1604;&#1575;&#1605;}</pre><pre>{ln:Fouad Daabou &#39;&#1605;&#1583;&#1610;&#1585; &#1578;&#1581;&#1585;&#1610;&#1585; &#1580;&#1585;&#1610;&#1583;&#1577; &#1575;&#1604;&#1571;&#1606;&#1608;&#1575;&#1585; &#1575;&#1604;&#1603;&#1575;&#1578;&#1576; &#1608; &#1575;&#1604;&#1605;&#1581;&#1604;&#1604; &#1575;&#1604;&#1587;&#1610;&#1575;&#1587;&#1610; &#1575;&#1604;&#1571;&#1587;&#1578;&#1575;&#1584; &#1601;&#1572;&#1575;&#1583; &#1583;&#1593;&#1576;&#1608;&#1604;}</pre><pre>{ln:Tarek Mitri &#39;&#1608;&#1586;&#1610;&#1585; &#1575;&#1604;&#1579;&#1602;&#1575;&#1601;&#1577; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1591;&#1575;&#1585;&#1602; &#1605;&#1578;&#1585;&#1610;} <br /></pre><pre>&#1573;&#1590;&#1593;&#1591; &#1593;&#1604;&#1609; &#1575;&#1604;&#1573;&#1587;&#1605; &#1604;&#1605;&#1588;&#1575;&#1607;&#1583;&#1577; &#1575;&#1604;&#1578;&#1587;&#1580;&#1610;&#1604; <br /></pre></div><p align=\"right\">&nbsp; </p><p align=\"right\">&nbsp;</p>','',1,6,0,17,'2008-11-15 18:10:51',63,'','2008-11-30 20:28:09',63,0,'0000-00-00 00:00:00','2008-11-15 17:59:04','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',24,0,2,'','',0,3779),(22,'New Media 2','','<div align=\"right\">&nbsp;</div><div align=\"right\">{wmv}ClaudiaabiNader{/wmv}</div>','',-2,6,0,17,'2008-11-01 10:39:05',62,'','2008-11-01 10:43:23',62,0,'0000-00-00 00:00:00','2008-11-01 10:38:09','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',4,0,0,'','',0,7),(31,'Dr Elie Karouny - Biographie','','<div align=\"left\"><font face=\"Verdana\" size=\"3\"> </font>{mosimage}Au sein d&rsquo;une famille Libanaise, Dr Elie Khalil Karouny a vu le jour dans un village de la Bekaa: Mouallakat Zahl&eacute;. Ses parents menaient une vie modeste, riche en vertu; son p&egrave;re Khalil travaillait &agrave; la station des chemins de fer jusqu&rsquo;&agrave; ce qu&rsquo;il a &eacute;t&eacute; rappel&eacute; &agrave; Dieu le 19 septembre 1990&nbsp;; sa m&egrave;re Alice n&eacute;e Mahfouz n&rsquo;avait comme occupation que sa famille. Le bon Dieu leur a donn&eacute; deux enfants&nbsp;: un fils et une fille&nbsp;: Elie et Lena qui sont devenus plus tard m&eacute;decins. <p align=\"justify\">&nbsp;&nbsp;&nbsp; Elie a grandi, s&rsquo;est &eacute;panoui et a pass&eacute; son enfance dans le calme et la s&eacute;r&eacute;nit&eacute;. Toujours pond&eacute;r&eacute; et souriant, tout le monde l&rsquo;aimait. Le front aur&eacute;ol&eacute; d&rsquo;un halo de Saintet&eacute; qui r&eacute;jouissait ceux qui le regardaient&nbsp;: vif, &eacute;veill&eacute; ne connaissant ni la bouderie ni la mauvaise humeur. Contemplatif ne se plaignant jamais, donnant l&rsquo;impression d&rsquo;un enfant pur, innocent et tranquille. </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;&nbsp; Depuis son enfance, il sentait en lui une diff&eacute;rence qui le distinguait des autres car il a dit dans son livre&nbsp;: </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;&nbsp; &lsquo;&rsquo; J&rsquo;ai d&eacute;couvert une nouvelle semence croissant en moi, un autre enfant con&ccedil;u &agrave; partir de mes pens&eacute;es et un souffle inspirant une nouvelle et diff&eacute;rente expression&hellip;.&nbsp;&lsquo;&rsquo;&nbsp; </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; Il a grandi avec de belles qualit&eacute;s en plus de son sens de l&rsquo;humour, il avait une morale solide et une remarquable modestie. Il disait&nbsp;:</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; &lsquo;&rsquo; Je ne comprends pas la vie en tant que guerre mais en tant qu&rsquo;amour, &eacute;change et sacrifice&rsquo;&rsquo;</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; Malgr&eacute; sa jeunesse, il essayait toujours de r&eacute;pandre la joie autour de lui, dans les c&oelig;urs des gens malheureux et d&eacute;sesp&eacute;r&eacute;s, tant&ocirc;t en composant de courtes pi&egrave;ces de th&eacute;&acirc;tre o&ugrave; il jouait tout genre de r&ocirc;les, tant&ocirc;t en mimant les com&eacute;diens et les chanteurs de sa belle voix qui r&eacute;sonnait dans toute la maison.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; Un digne fils respectant ses parents et suivant leurs conseils&nbsp;: &lsquo;&rsquo; &ocirc; DIEU, Vous nous avez donn&eacute; un p&egrave;re et une m&egrave;re descendant des anges&hellip;.&rsquo;&rsquo;</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; Un fr&egrave;re affectueux et protecteur pour son unique s&oelig;ur, un ami modeste et fidele; malgr&eacute; ses brillants r&eacute;sultats en classe, il ne m&eacute;nageait pas sa peine pour aider ses camarades et partager avec eux la nourriture, la science et le savoir.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;&nbsp; C&rsquo;&eacute;tait un jeune homme pieux qui visitait continuellement l&rsquo;&eacute;glise et assistait &agrave; toute la messe debout au dernier banc, priant de toute son &acirc;me et de tout son c&oelig;ur.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; Il &eacute;tait dou&eacute; pour &eacute;crire depuis son enfance. Il a commenc&eacute; &agrave; r&eacute;diger ses textes le soir parfois sur ses cahiers de classe, et parfois sur des feuilles sp&eacute;ciales.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; Malgr&eacute; son affection et sa tendresse pour moi, sa s&oelig;ur unique, il ne m&rsquo;a jamais permis de les lire et il me r&eacute;p&eacute;tait&nbsp;:</p> <p align=\"justify\">&lsquo;&rsquo; Il n&rsquo;est pas permis que tu lises ces textes avant ma mort, je ne serai pas bien si tu les voyais avant&hellip;..&rsquo;&rsquo;</p> <p align=\"justify\">&nbsp;&nbsp; J&rsquo;ai essay&eacute; une fois de d&eacute;couvrir ce que contenaient ces nombreuses feuilles et lorsqu&rsquo;il a su, il les a rang&eacute;es ailleurs. Je n&rsquo;ai plus essay&eacute; une&nbsp; seconde fois.<br /><br />Il &eacute;tait un brillant &eacute;l&egrave;ve qui a achev&eacute; ses &eacute;tudes primaires et secondaires au Coll&egrave;ge Orthodoxe de l&rsquo;Annonciation &agrave; Beyrouth. Il a bien assimil&eacute; l&rsquo;arabe, le fran&ccedil;ais et l&rsquo;anglais, il a compos&eacute; des po&egrave;mes et de la prose abordant de nombreux sujets&nbsp;: &oelig;uvres galantes, contemplatives, patriotiques.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; Son style &eacute;tant influenc&eacute; par son amour pour la musique classique qui a donn&eacute; &agrave; sa po&eacute;sie un caract&egrave;re particulier.</p> <p align=\"justify\"> &nbsp;&nbsp; Il aimait les com&eacute;dies, les op&eacute;ras, les programmes culturels et religieux et suivait les nouvelles sportives concernant le basketball et le football.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; Elie aspirait &agrave; un m&eacute;tier altruiste qui r&eacute;aliserait pour lui son but d&rsquo;aider les gens pauvres, d&eacute;munis, et quand il &eacute;tait encore sur les bancs de l&rsquo;&eacute;cole, il a particip&eacute; &agrave; la pi&egrave;ce de th&eacute;&acirc;tre &lsquo;&rsquo;le malade imaginaire&rsquo;&rsquo; en jouant le r&ocirc;le du m&eacute;decin. Par la suite, Elie est devenu un m&eacute;decin tr&egrave;s humain. </p></div>','<div align=\"left\"><p align=\"justify\"><strong>Exp&eacute;rience Spirituelle&nbsp;</strong><br /> </p> <p align=\"justify\">{mosimage}Elie a commenc&eacute; son parcours spirituel en 1980 lorsqu&rsquo;il a demand&eacute; de tout son c&oelig;ur et de toute son &acirc;me &agrave; Dieu de le rappeler &agrave; lui et sa demande s&rsquo;est illustr&eacute; par cette pri&egrave;re&nbsp;: </p> <p align=\"justify\"><font face=\"Verdana\" size=\"3\">&nbsp;<strong>&nbsp;</strong></font><strong>&nbsp; &lsquo;&rsquo; Mon Dieu, j&rsquo;&eacute;l&egrave;ve vers toi ma pri&egrave;re, r&eacute;ponds- moi</strong></p> <p align=\"justify\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Je t&rsquo;offre mon existence </strong></p> <p align=\"justify\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Tu es mon cr&eacute;ateur</strong></p> <p align=\"justify\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Je te confie mon amour</strong></p> <p align=\"justify\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Et je vole vers toi</strong></p> <p align=\"justify\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Prends- moi dans tes bras&hellip;.&rsquo;&rsquo;&rsquo;</strong></p> <p align=\"justify\"><font face=\"Verdana\" size=\"3\">&nbsp;&nbsp;&nbsp;</font> Elie a aussi pri&eacute; Dieu de le ramener au ciel car il lui manquait&nbsp;:</p> <p align=\"justify\"><strong><font face=\"Verdana\" size=\"3\">&nbsp;&nbsp;&nbsp;</font></strong><strong> &lsquo;&rsquo; Le ciel est mon Royaume</strong></p> <p align=\"justify\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Mon p&egrave;re ram&egrave;ne-moi,</strong></p> <p align=\"justify\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Je d&eacute;sire tant y retourner,</strong></p> <p align=\"justify\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; L&agrave;-bas est mon pays et mon bonheur</strong></p> <p align=\"justify\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Et sa beaut&eacute; est une promesse pour l&rsquo;homme&rsquo;&rsquo;</strong></p> <p align=\"justify\"><font face=\"Verdana\" size=\"3\">&nbsp;&nbsp;</font>&nbsp; Il aspirait aux voies spirituelles et a exprimait ceci dans une po&eacute;sie, lui donnant ce titre.</p> <p align=\"justify\">&nbsp;&nbsp; Depuis ce temps l&agrave;, Elie a v&eacute;cu le paradis sur terre avec ses contemplations et ses r&eacute;flexions&nbsp;: son &acirc;me, son esprit et son cerveau planant dans le ciel hors de la pesanteur de la terre pour s&rsquo;unir &agrave; son cr&eacute;ateur dans le but de la perfection.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;<strong> &lsquo;&rsquo; La vie ici bas n&rsquo;est qu&rsquo;un passage menant &agrave; l&rsquo;au-del&agrave;&rsquo;&rsquo;.</strong></p> <p align=\"justify\"><strong>&nbsp;&nbsp;&nbsp; &lsquo;&rsquo; Mes privations dans cette vie imparfaite sont une &eacute;tape pour atteindre la perfection&nbsp;: les biens mat&eacute;riels de ce monde ne sont rien pour moi compar&eacute;s &agrave; l&rsquo;Au-del&agrave;&rsquo;&rsquo;.</strong></p> <p align=\"justify\"><font face=\"Verdana\" size=\"3\"><strong>&nbsp;&nbsp;</strong></font>&nbsp; Le 24 d&eacute;cembre 1981, il a vu le Mont-Sacr&eacute; &eacute;clair&eacute; d&rsquo;une lumi&egrave;re et d&rsquo;ailes blanches dans les hauteurs. Il s&rsquo;est alors recueilli pour se pr&eacute;parer &agrave; rejoindre son cr&eacute;ateur.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; Le 9 octobre 1982, Elie eut une vision lui annon&ccedil;ant l&rsquo;heure de son arriv&eacute;e aupr&egrave;s de Dieu et il me dit&nbsp;:<font face=\"Verdana\" size=\"3\"> </font><strong>&lsquo;&rsquo;Je sais la date de ma mort&hellip;.et je sais toutes les dates&hellip;.&rsquo;&rsquo;</strong></p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; D&egrave;s cet instant, son v&oelig;u de s&rsquo;unir &agrave; Dieu s&rsquo;est magnifi&eacute; et il a voulu r&eacute;pandre son histoire sur terre&nbsp;:<font face=\"Verdana\" size=\"3\"> </font></p> <p align=\"justify\"><strong><font face=\"Verdana\" size=\"3\">&nbsp;&nbsp;</font>&nbsp; &lsquo;&rsquo; Je d&eacute;sire publier et r&eacute;pandre ma biographie dans le monde entier pour que tout le monde me connaisse bien.</strong></p> <p align=\"justify\"><strong>&nbsp;&nbsp;&nbsp;&nbsp; Je d&eacute;sire entrer dans toutes les maisons et semer des fleurs partout o&ugrave; je vais&hellip;&rsquo;&rsquo;.&nbsp;<br /></strong></p> <p align=\"justify\"><strong>Vie acad&eacute;mique et professionnelle&nbsp;</strong></p> <p align=\"justify\"><font face=\"Verdana\" size=\"3\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;</strong></font> En 1981, Elie a obtenu brillamment le dipl&ocirc;me du baccalaur&eacute;at deuxi&egrave;me partie et s&rsquo;est inscrit &agrave; la Facult&eacute; de M&eacute;decine de l&rsquo;Universit&eacute; Saint-Joseph des P&egrave;res J&eacute;suites pour r&eacute;aliser le but qu&rsquo;il avait d&egrave;s son plus jeune &acirc;ge&nbsp;<font face=\"Verdana\" size=\"3\">:</font> <strong>Devenir m&eacute;decin pour aider les malheureux et les pauvres.</strong></p> <p align=\"justify\"><font face=\"Verdana\" size=\"3\">&nbsp;&nbsp;&nbsp;</font> Elie a obtenu la premi&egrave;re place au concours d&rsquo;entr&eacute;e &agrave; la Facult&eacute; de M&eacute;decine.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; Il &eacute;tait un exemple de modestie, de vertu, de pers&eacute;v&eacute;rance, de largesse d&rsquo;esprit et de bont&eacute;.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; En 1988, Elie a obtenu le dipl&ocirc;me de m&eacute;decine et a pass&eacute; avec succ&egrave;s (class&eacute; premier) le concours de sp&eacute;cialisation mais cela ne l&rsquo;a pas emp&ecirc;ch&eacute; de continuer &agrave; se rapprocher de Dieu.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; Une voix int&eacute;rieure le fortifiait dans sa volont&eacute; et le dirigeait sur le chemin de Dieu. Il sentait que ce monde ici-bas n&rsquo;&eacute;tait pas pour lui&nbsp;:</p> <p align=\"justify\"><font face=\"Verdana\" size=\"3\">&nbsp;&nbsp;<strong>&nbsp;</strong></font><strong> &lsquo;&rsquo; Ma voix int&eacute;rieure me dit de ne rien craindre et fortifie ma volont&eacute;, puis-je m&rsquo;en d&eacute;tourner ou l&rsquo;ignorer&nbsp;? Ne l&rsquo;entends-je pas avec chaque battement de mon c&oelig;ur&nbsp;? En v&eacute;rit&eacute;, si. Ce monde n&rsquo;est pas le mien, non plus le d&eacute;sespoir et l&rsquo;amertume sont de ma nature. Que la volont&eacute; de Dieu soit faite.&rsquo;&rsquo;</strong></p> <p align=\"justify\"><font face=\"Verdana\" size=\"3\"><strong>&nbsp;&nbsp;&nbsp;</strong></font> Il n&rsquo;oubliait jamais ses camarades et ses amis qui venaient lui demander de l&rsquo;aide et il n&rsquo;a jamais d&eacute;&ccedil;u personne, mais il faisait tout son possible pour rendre service et il avait r&eacute;ponse &agrave; tout.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; Il a effectu&eacute; de nombreuses recherches qui ont &eacute;t&eacute; publi&eacute;es dans des revues m&eacute;dicales du monde entier et cela ne l&rsquo;a pas emp&ecirc;ch&eacute; de prier Dieu et de se rapprocher encore plus de lui.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; L&rsquo;ann&eacute;e suivante, il s&rsquo;est surpass&eacute; et a obtenu la premi&egrave;re place en m&eacute;decine interne, il a eu la possibilit&eacute; de choisir la sp&eacute;cialit&eacute; qu&rsquo;il pr&eacute;f&eacute;rait avant ses camarades. </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; Il souhaitait se sp&eacute;cialiser en chirurgie cardiaque. Pourtant, il a choisi de se sp&eacute;cialiser en cardiologie invasive parce qu&rsquo;il savait quand viendrait son heure. Il savait aussi qu&rsquo;il ne pourrait pas pratiquer la chirurgie cardiaque car ce serait bient&ocirc;t pour lui le moment d&rsquo;acc&eacute;der au ciel.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; Il m&rsquo;a dit qu&rsquo;il allait choisir la cardiologie invasive plut&ocirc;t que la chirurgie cardiaque qu&rsquo;il avait l&rsquo;intention de choisir d&rsquo;abord. Je lui ai demand&eacute; pourquoi ce changement d&rsquo;avis&nbsp;? Il m&rsquo;a r&eacute;pondu&nbsp;: </p> <p align=\"justify\"><font face=\"Verdana\" size=\"3\">&nbsp;&nbsp;&nbsp; </font><strong> &lsquo;&rsquo; Que mon coll&egrave;gue Nazem Matta se sp&eacute;cialise en chirurgie, moi je ne pourrai pas pratiquer la chirurgie cardiaque car je ne resterai pas longtemps sur terre.&rsquo;&rsquo;</strong></p> <p align=\"justify\"><font face=\"Verdana\" size=\"3\"><strong>&nbsp;&nbsp;&nbsp;</strong></font> Pendant qu&rsquo;il poursuivait sa sp&eacute;cialisation en m&eacute;decine cardiaque, il a encourag&eacute; son coll&egrave;gue et ami Salah Choueiry &agrave; choisir cette m&ecirc;me sp&eacute;cialisation, je lui ai demand&eacute; la raison&nbsp;? Ne vaut-il pas mieux que vos&nbsp; sp&eacute;cialisations soient diff&eacute;rentes afin de se compl&eacute;ter&nbsp;? Il m&rsquo;a r&eacute;pondu&nbsp;:<font face=\"Verdana\" size=\"3\"> </font><strong>&lsquo;&rsquo;je vais lui confier mes malades apr&egrave;s moi car je ne demeurerai pas longtemps sur terre. La volont&eacute; de Dieu est que je sois divin&rsquo;&rsquo;.</strong></p> <p align=\"justify\"><font face=\"Verdana\" size=\"3\"><strong>&nbsp;&nbsp;</strong></font>&nbsp; Il m&rsquo;a demand&eacute; de m&rsquo;appliquer &agrave; &eacute;crire l&rsquo;histoire de sa vie comme il m&rsquo;a appris que Dieu lui a pr&ecirc;t&eacute; vie pour lui donner le temps de compl&eacute;ter ses &eacute;crits.</p> <p align=\"justify\"><font face=\"Verdana\" size=\"3\">&nbsp;&nbsp;</font>&nbsp; <strong>&lsquo;&rsquo;Dieu me pr&ecirc;te vie pour que je compl&egrave;te mes &eacute;crits&rsquo;&rsquo;</strong><font face=\"Verdana\" size=\"3\"><strong> </strong></font>il a ajout&eacute; que la volont&eacute; de Dieu &eacute;tait qu&rsquo;il soit divin.</p> <p align=\"justify\"><font face=\"Verdana\" size=\"3\">&nbsp;&nbsp;&nbsp; </font> Il a achev&eacute; ses &eacute;tudes au Liban puis il a &eacute;t&eacute; en France pour les compl&eacute;ter, o&ugrave; il a &eacute;t&eacute; en charge de ce qui suit:</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; En 1991&nbsp;: Nomm&eacute; Attach&eacute; Associ&eacute; au laboratoire de Cath&eacute;t&eacute;risme et Cardiologie Interventionnelle au Centre Hospitalo-universitaire de Toulouse.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; En 1992&nbsp;: R&eacute;sident Etranger du Coll&egrave;ge de M&eacute;decine des H&ocirc;pitaux de PARIS &agrave; BROUSSAIS</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; En Septembre 1993, il a &eacute;t&eacute; nomm&eacute;, par d&eacute;cret du Minist&egrave;re de l&rsquo;Enseignement Sup&eacute;rieur Fran&ccedil;ais, Chef de Clinique Associ&eacute; &agrave; titre Universitaire.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; A partir du Novembre 1993&nbsp;: Chef de Clinique Associ&eacute; &agrave; l&rsquo;Universit&eacute; Paul Sabatier-Toulouse. Affect&eacute; au Laboratoire d&rsquo;H&eacute;modynamique et de Cardiologie Interventionnelle.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; En 1993, il a obtenu brillamment le dipl&ocirc;me de sp&eacute;cialisation en &eacute;chographie cardiaque de l&rsquo;Universit&eacute; Pierre et Marie CURIE organis&eacute; &agrave; la PITIE-SALPETRIERE-PARIS-Class&eacute; Premier. </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; M&eacute;decin &eacute;tranger r&eacute;sidant dans les H&ocirc;pitaux de Paris, dont les directions demandaient avec insistance sa coop&eacute;ration.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; Il a men&eacute; de nombreuses recherches dans sa sp&eacute;cialisation au Liban et &agrave; l&rsquo;&eacute;tranger. On lui a demand&eacute; de donner des conf&eacute;rences dans une des grandes Universit&eacute;s Am&eacute;ricaines.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; En 1994, il a obtenu Cinq dipl&ocirc;mes&nbsp;: </p> <ul><p align=\"justify\">1 - Certificat d&rsquo;Etudes Statistiques Appliqu&eacute;s &agrave; la M&eacute;decine (CESAM) &agrave; la Facult&eacute; KREMLIN-BICETRE-PARIS</p></ul> <p align=\"justify\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Part&nbsp;1- M&eacute;thodologies statistiques&nbsp;: F&eacute;vrier 1994 (Mention-Excellent)</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Part 2 - Statistiques Appliqu&eacute;s &agrave; la Recherche Clinique (STARC):Juin 1994</p> <ul><p align=\"justify\">2 - Dipl&ocirc;me de Cardiologie Interventionnelle Th&eacute;orique et Pratique &agrave; l&rsquo;Universit&eacute; PARIS-12-Val de Marne (CRETEIL-PARIS) </p></ul> <ul><p align=\"justify\">3 &ndash; Dipl&ocirc;me de Radiologie Interventionnelle&nbsp;: &laquo;&nbsp;Traitements Endoscopiques des Maladies Vasculaires&nbsp;&raquo; &agrave; l&rsquo;Universit&eacute; Paul Sabatier de Toulouse </p></ul> <ul><p align=\"justify\">4 - Maitrise De Sciences Biologique A L&rsquo;universit&eacute; Paul Sabatier de Toulouse </p></ul> <p align=\"justify\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Options&nbsp;:</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - Certificat de Physiologie G&eacute;n&eacute;rale Class&eacute; Premier</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - Certificat de Biophysique des Radiations et Imagerie M&eacute;dicale.</p> <ul><p align=\"justify\"> 5 - Dipl&ocirc;me de Cardiologie Invasive de l&rsquo;Universit&eacute; Saint Joseph apr&egrave;s avoir pr&eacute;sent&eacute; comme th&egrave;se une &eacute;tude comparative entre la chirurgie cardiaque et le Cath&eacute;t&eacute;risme-Angioplastie dans les cas de st&eacute;noses coronaires multiples.</p></ul> <p align=\"justify\">&nbsp;&nbsp;&nbsp; Il a pratiqu&eacute; plein temps &agrave; l&rsquo;H&ocirc;pital Saint-Georges de Beyrouth en tant que Cardiologue Invasif, o&ugrave; il s&rsquo;est rendu c&eacute;l&egrave;bre.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; Il a consacr&eacute; une partie de son temps &agrave; soigner les malades n&eacute;cessiteux dans les dispensaires grecs orthodoxes et &agrave; l&rsquo;&eacute;v&ecirc;ch&eacute; maronite de Beyrouth &agrave; Achrafieh. </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; Il a brill&eacute; dans toutes ses &eacute;tudes, il &eacute;tait le point de mire de ses professeurs et de ses coll&egrave;gues.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; Dr Elie a pratiqu&eacute; son m&eacute;tier humanitaire avec amour et talent et il a r&eacute;alis&eacute; son d&eacute;sir d&rsquo;aider les malades dans le besoin. Son but n&rsquo;&eacute;tait pas l&rsquo;argent et la fortune mais plut&ocirc;t l&rsquo;aide &agrave; l&rsquo;humanit&eacute; souffrante pour all&eacute;ger les douleurs des malades et pour cela, il se levait t&ocirc;t chaque matin afin de devancer les jours qu&rsquo;il savait compt&eacute;s pour lui.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;&nbsp; Il soignait, r&eacute;digeait les ordonnances et offrait au malade le prix du m&eacute;dicament de sa propre poche, sans en parler &agrave; personne, s&rsquo;il sentait que celui-ci ne pouvait pas l&rsquo;acheter. </p> <p align=\"justify\"><strong>&laquo; Le don ne demande rien en &eacute;change puisse la terre entendre le message du ciel.&nbsp;&raquo;</strong></p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Dr Elie &eacute;tait un brillant m&eacute;decin, il se d&eacute;vouait jour et nuit pour ses malades la plupart du temps gratuitement&nbsp;; rien, y compris sa propre maladie ne l&rsquo;arr&ecirc;tait dans son devoir, m&ecirc;me la nuit.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;L&rsquo;une de ses malades &eacute;tait handicap&eacute;e et ne pouvait venir &agrave; sa clinique, alors il allait lui m&ecirc;me la voir, soigner et nettoyer la blessure de son pied amput&eacute; et lui donner les m&eacute;dicaments n&eacute;cessaires.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Une autre malade &eacute;tait atteinte d&rsquo;une pneumonie, il a transform&eacute; sa modeste chambre &agrave; coucher en salle de soins intensifs et lui a apport&eacute; tout ce dont elle avait besoin. Il a veill&eacute; sur elle jusqu&rsquo;&agrave; sa gu&eacute;rison. </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Il a men&eacute; de nombreux travaux humanitaires sans le dire &agrave; personne et cela a &eacute;t&eacute; d&eacute;couvert apr&egrave;s qu&rsquo;il ait quitt&eacute; ce monde.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Il aimait les gens qui le lui rendaient bien. Les malades le portaient dans leur c&oelig;ur, il les aidait &agrave; supporter leur &eacute;preuve.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Il s&rsquo;inspirait de Dieu pour toutes ses vertus et &eacute;clairait le monde de son savoir illumin&eacute; par le Saint Esprit.</p> <p align=\"justify\"><strong>Sa lutte contre la maladie&nbsp;</strong>:</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Bien qu&rsquo;il f&ucirc;t conscient de sa maladie, Elie n&rsquo;a jamais arr&ecirc;t&eacute; de pratiquer sa profession, volant au secours de chacun sans jamais se plaindre, et remerciant toujours le bon Dieu. Sa foi restait in&eacute;branlable, il n&rsquo;a jamais dout&eacute; de Celui qui ressuscite les morts.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Il me disait toujours&nbsp;:<font face=\"Verdana\" size=\"3\">&nbsp;</font><strong>&laquo; Pas de mort apr&egrave;s la r&eacute;surrection du Christ, je ferme les yeux ici, je les ouvre l&agrave;-bas. As-tu peur de ton p&egrave;re&nbsp;?&nbsp; Dieu est mon p&egrave;re et je vais vers lui.&nbsp;&raquo;</strong></p> <p align=\"justify\"><strong>&nbsp;&nbsp;&nbsp;Il disait &agrave; sa m&egrave;re Alice&nbsp;: &laquo;&nbsp;Tu es ma m&egrave;re sur terre, j&rsquo;ai une autre m&egrave;re au paradis et je vais la retrouver.&nbsp;&raquo;</strong></p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;La maladie ne l&rsquo;a ni affaibli ni attrist&eacute;, mais l&rsquo;a rendu plus fort. Il l&rsquo;a accept&eacute;e car il y a vu le chemin vers Dieu et le paradis &eacute;ternel. Il souriait &agrave; tous les amis, parents, m&eacute;decins qui venaient le voir, causait et discutait avec eux, jusqu&#39;&agrave; leur faire oublier le motif de leur visite.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Il leur transmettait sa force irradiante, avait toujours un gentil sourire pour chacun et disait aux d&eacute;sabus&eacute;s&nbsp;: </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;&laquo;&nbsp;Telle est la volont&eacute; de Dieu, on ne peut y &eacute;chapper, Dieu m&rsquo;envoie ce qui est pour mon bien.&nbsp;&raquo;</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Lorsque tous ceux qui l&rsquo;aimaient lui parlaient des miracles, obtenus par l&rsquo;interm&eacute;diaire des Saints, et lui disaient de prier Dieu, il r&eacute;pliquait: </p> <p align=\"justify\">&nbsp;&nbsp;<strong>&nbsp;&laquo;Dieu Tout-puissant peut faire ressusciter les morts et les tirer de leur tombeau par l&rsquo;interm&eacute;diaire des Saints ou simplement par la foi. Moi, je ne demande pas de miracles &agrave; Dieu, Il me conna&icirc;t et m&rsquo;aime, mes souffrances physiques ne sont qu&rsquo;un feu purificateur pour que je l&rsquo;aime encore davantage.&nbsp;&raquo;</strong></p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Je visitais les &eacute;glises, priant les Saints de sauver mon fr&egrave;re par un miracle. Lorsqu&rsquo;il apprit ceci, il me dit&nbsp;:<font face=\"Verdana\" size=\"3\"> </font><strong>&laquo;&nbsp;Dieu est l&agrave;, la Sainte Vierge est l&agrave;, Ils savent ce qu&rsquo;ils font de moi.&nbsp;&raquo;</strong></p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Il m&rsquo;a demand&eacute;&nbsp;: que dis-tu dans ta pri&egrave;re&nbsp;? Notre P&egrave;re qui est aux cieux, que ta volont&eacute; soit faite&hellip;.cela signifie que c&rsquo;est la volont&eacute; de Dieu. Il me r&eacute;p&eacute;tait&nbsp;: <strong>&laquo;&nbsp;Dieu me donne ce qui est pour mon bien.&nbsp;&raquo;</strong><font face=\"Verdana\" size=\"3\"> </font> Il estimait que la volont&eacute; de Dieu est au-dessus de tout.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;La volont&eacute; de Dieu &eacute;tait qu&rsquo;il quitte ce monde pour le rejoindre au ciel.<font face=\"Verdana\" size=\"3\">&nbsp;</font><strong>&laquo;&nbsp;Dieu me veut aupr&egrave;s de lui, j&rsquo;ai pass&eacute; un temps avec vous, et, &agrave; pr&eacute;sent je retourne vers lui.&nbsp;&raquo;</strong> </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Un jour, j&rsquo;ai demand&eacute; &agrave; mon fr&egrave;re de prier son patron Saint Elias, pour lui demander la gu&eacute;rison, il m&rsquo;a r&eacute;pondu&nbsp;: <strong>&laquo;&nbsp;Aujourd&rsquo;hui Saint Elias, demain Saint Elie.&nbsp;&raquo;</strong><font face=\"Verdana\" size=\"3\"> </font>Il r&eacute;p&eacute;tait toujours que la vie sur terre n&rsquo;est qu&rsquo;un passage, une &eacute;tape transitoire.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Trois jours avant son d&eacute;c&egrave;s, la Sainte Vierge lui est apparue. Il l&rsquo;a embrass&eacute; trois fois, et effectivement, il ne lui restait plus que trois jours de sa vie sur terre. Sa m&egrave;re a aussi vu la Sainte Vierge pr&egrave;s de son lit, mais ne l&rsquo;a pas reconnue. </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Elie a inscrit cette phrase sur son journal&nbsp;:<font face=\"Verdana\" size=\"3\">&nbsp;</font><strong>&laquo;&nbsp;j&rsquo;ai embrass&eacute; la Sainte Vierge trois fois ce soir&hellip;&nbsp;&raquo;</strong></p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Il a d&eacute;fi&eacute; la mort, deux jours avant le grand d&eacute;part, disant&nbsp;:<font face=\"Verdana\" size=\"3\">&nbsp;</font><strong>&laquo;&nbsp; &Ocirc; d&eacute;mon qui ronge mes entrailles, je ne suis pas le seul &agrave; lutter contre toi dans ce combat.&nbsp;M&ecirc;me si tu as empoisonn&eacute; l&rsquo;&acirc;me de ceux qui m&rsquo;entourent par la tristesse, le d&eacute;sespoir et la d&eacute;ception, tu verras que, quelques aigues que soient mes douleurs, par tes pointes ac&eacute;r&eacute;es, tu ne prendras pas davantage que ce que tu peux prendre. Parce que l&rsquo;heure viendra, nous le savons tous les deux, o&ugrave; je te terrasserai, te laissant &agrave; l&rsquo;&eacute;tat d&rsquo;un cadavre au-dessous de mon cadavre et j&rsquo;&eacute;teindrai ton feu par le mien, je d&eacute;truirai mon temple sur toi et l&rsquo;&eacute;p&eacute;e ne quittera pas ma main. En v&eacute;rit&eacute;, en v&eacute;rit&eacute; je te dis, tu ne pourras pas atteindre mon &acirc;me qui ne mourra pas avec mon corps.&nbsp;&raquo;</strong></p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Elie ne craignait pas la mort, il communiquait avec Dieu avant d&rsquo;aller le rejoindre, et cela par la force de sa foi. On lisait ses &eacute;crits&nbsp; comme on lit les psaumes de David, ou d&rsquo;autres psaumes avec un nouveau point de vue. En voici un exemple&nbsp;:</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;<strong>&laquo;&nbsp;Effectivement, nous ne pouvons comprendre la volont&eacute; de Dieu que par notre foi et notre esprit criant en nous&nbsp;: Notre P&egrave;re qui es aux Cieux&hellip;&nbsp;Qui y a-t-il de plus proche de nous que le C&oelig;ur de notre P&egrave;re&nbsp;? Que craindre alors&nbsp;?</strong></p> <p align=\"justify\"><strong>&nbsp;&nbsp;&nbsp; La tristesse&nbsp;? Nous ne pouvons qu&rsquo;&ecirc;tre heureux lorsque nous posons la t&ecirc;te entre les bras de notre P&egrave;re.</strong></p> <p align=\"justify\"><strong>&nbsp;&nbsp;&nbsp;La douleur&nbsp;? Ce n&rsquo;est qu&rsquo;un feu &eacute;ph&eacute;m&egrave;re pour faire fondre un m&eacute;tal divin.</strong></p> <p align=\"justify\"><strong>&nbsp;&nbsp;&nbsp;La mort&nbsp;? Pas de mort apr&egrave;s la r&eacute;surrection du Christ. Que craindre&nbsp;alors?</strong></p> <p align=\"justify\"><strong>&nbsp;&nbsp;&nbsp; La v&eacute;rit&eacute;&nbsp;est qu&rsquo;il ne faut craindre que l&rsquo;engourdissement spirituel, l&rsquo;&eacute;loignement de la foi, notre Ego profond et la vanit&eacute;.&nbsp;&raquo;</strong></p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Peu de temps avant de rejoindre son cr&eacute;ateur, Elie nous a demand&eacute;, &agrave; sa m&egrave;re Alice et &agrave; moi, de ne pas porter de v&ecirc;tements noirs pour son deuil&nbsp;:<font face=\"Verdana\" size=\"3\">&nbsp;</font><strong>&laquo; &Ocirc; Dieu je vous prie de ne pas laisser ma m&egrave;re, ma s&oelig;ur et toux ceux qui pleureront ma mort, porter des v&ecirc;tements noirs, car cela blesse la foi en la vie &eacute;ternelle et blesse les profondeurs de l&rsquo;&acirc;me r&eacute;sidant en Dieu.&nbsp;&raquo;</strong></p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Le matin du d&eacute;part d&rsquo;Elie vers le Seigneur, une infirmi&egrave;re nomm&eacute;e Feyrouz s&rsquo;approcha de son&nbsp; lit dans l&rsquo;espoir de voir le doux sourire qui ne quittait pas ses l&egrave;vres une minute. Elle eut la surprise de voir le lit bouger et trembler, et d&rsquo;entendre un grand bruit. Effray&eacute;e, elle courut hors de la pi&egrave;ce et appela en criant sa coll&egrave;gue Tania pour lui montrer ce qui se passait l&agrave;. Tania se d&eacute;p&ecirc;cha d&rsquo;arriver. Lorsqu&rsquo;elles appel&egrave;rent le service d&rsquo;entretien pour &eacute;tudier l&rsquo;&eacute;tat du lit, la r&eacute;ponse fut que ce meuble &eacute;tait normal, et n&rsquo;avait aucun contact avec les fils &eacute;lectriques. Elles dirent alors&nbsp;: &laquo;&nbsp;Vraiment, ce lit semble secou&eacute; de sanglots, par le chagrin de cette s&eacute;paration, qu&rsquo;en sera-t-il alors de ses parents, de ses amis, de ses malades et des infirmi&egrave;res&nbsp;? Ceci n&rsquo;est-il pas du ressort des Saints&nbsp;?&nbsp;&raquo; Pens&acirc;mes-nous alors en secret.&nbsp;</p> <p align=\"justify\"><u><strong>Ev&egrave;nements posthume d&rsquo;Elie&nbsp;:</strong></u></p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Elie quitta le monde d&rsquo;ici-bas pour rejoindre les Saints comme il l&rsquo;avait pr&eacute;vu, le 12 novembre 1998.&nbsp; Deux de ses livres furent publies&nbsp;: </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Le premier en 1999, intitul&eacute;&nbsp;:<font face=\"Verdana\" size=\"3\"> </font><strong>L&rsquo;Ep&eacute;e Ne Quittera Pas Ma Main.</strong></p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Le second en 2005, intitul&eacute;<font face=\"Verdana\" size=\"3\">&nbsp;: </font><strong>Lumi&egrave;re du Ciel</strong>,<font face=\"Verdana\" size=\"3\"> </font>titre choisi et demand&eacute; par lui lorsqu&rsquo;il apparut en r&ecirc;ve &agrave; sa cousine. </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Il est &agrave; mentionner que je voulais intituler ce livre &laquo;&nbsp;Avant le d&eacute;part&nbsp;&raquo; ou &laquo;&nbsp;Avant le coucher du soleil&nbsp;&raquo; avec une couverture couleur du soleil et je n&rsquo;en avais parl&eacute; &agrave; personne.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;La veille de la F&ecirc;te-Dieu, entre le 5 et le 6 Ao&ucirc;t, Elie apparut en r&ecirc;ve &agrave; sa cousine, v&ecirc;tu d&rsquo;une chemise et d&rsquo;un pantalon beige, et il lui dit&nbsp;: </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Je demande instamment &agrave; ma s&oelig;ur de ne pas donner au livre le titre auquel elle pense. Dis- lui de ne pas s&rsquo;obstiner dans son avis, elle a deux choix&nbsp;: Intituler le livre&nbsp;: <strong>&laquo;&nbsp;Une Voix Du Paradis&nbsp;&raquo; ou &laquo;&nbsp;Lumi&egrave;re du Paradis&nbsp;&raquo; mais je pr&eacute;f&egrave;re &laquo;&nbsp;Lumi&egrave;re du Paradis&nbsp;&raquo;</strong>.<font face=\"Verdana\" size=\"3\"> </font>Il lui r&eacute;p&eacute;ta ces paroles une deuxi&egrave;me fois et lui montra comment &eacute;crire ce titre, ainsi que les couleurs qu&rsquo;il d&eacute;sirait pour la couverture, c&rsquo;&eacute;tait le bleu qui &eacute;tait aussi la couleur du premier livre<font face=\"Verdana\" size=\"3\"> </font><strong>&laquo;&nbsp;L&rsquo;Ep&eacute;e Ne Tombera Pas De Ma Main&nbsp;&raquo;</strong><font face=\"Verdana\" size=\"3\"><strong>.</strong> </font>Il inscrit pour elle ce titre ainsi&nbsp;: </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;<font face=\"Verdana\" size=\"3\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</strong></font>&nbsp;<strong> Lumi&egrave;re </strong></p> <p align=\"justify\"><strong>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</strong><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DU&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (en blanc)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </strong> </p> <p align=\"justify\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</strong><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Paradis&nbsp;</strong><font face=\"Verdana\" size=\"3\"> </font></p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Comme je tardais &agrave; imprimer ce livre, Elie apparut &agrave; nouveau &agrave; ma cousine et lui demanda&nbsp;: <strong>&laquo;&nbsp;O&ugrave; est mon livre&nbsp;? O&ugrave; est Lumi&egrave;re Du Paradis&nbsp;?&nbsp;&raquo; </strong></p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Il a &eacute;crit aussi d&rsquo;autres livres en arabe et en fran&ccedil;ais qui n&rsquo;ont pas encore &eacute;t&eacute; publi&eacute;s. </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Le jeudi Saint, un ermite r&eacute;sident au couvent, ami de Elie, &eacute;tait en train de c&eacute;l&eacute;brer la messe &agrave;&nbsp;10h du matin&nbsp;; tandis qu&rsquo;il pr&eacute;sentait l&rsquo;eucharistie, Elie lui apparut soudain &agrave; droite de l&rsquo;autel, ses pieds ne touchant pas le sol, le visage rayonnant d&rsquo;une divine lumi&egrave;re, v&ecirc;tu d&rsquo;une blouse blanche et d&rsquo;un pantalon kaki. Il a dit&nbsp;: </p> <p align=\"justify\">&nbsp;&nbsp;<strong>&nbsp;&laquo;&nbsp;Je suis l&agrave;, Affrontant la mort </strong></p> <p align=\"justify\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; La Combattant par la mort</strong></p> <p align=\"justify\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Je suis vivant,</strong></p> <p align=\"justify\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Priez pour mon p&egrave;re Khalil.&nbsp;&raquo;</strong></p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;L&rsquo;ermite tressaillit, la coupe trembla dans sa main, le sujet de son sermon, apr&egrave;s la messe, fut le Dr Elie qui n&rsquo;avait pas craint la mort, mais qui l&rsquo;avait re&ccedil;ue avec force et dignit&eacute; car il &eacute;tait convaincu que la mort est le passage vers la vie &eacute;ternelle et vers Dieu.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;J&rsquo;ai dit &agrave; l&rsquo;ermite que mon fr&egrave;re est venu pour lui dire qu&rsquo;il ne l&rsquo;avait pas &eacute;voqu&eacute; dans sa messe, il m&rsquo;a r&eacute;pondu&nbsp;:</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;&laquo;&nbsp;Non, il est venu me dire qu&rsquo;il est vivant.&nbsp;&raquo; &nbsp;</p> <p align=\"justify\"><font face=\"Verdana\" size=\"3\"><strong><u>L&rsquo;aide procur&eacute;e par Elie aux gens apr&egrave;s sa mort&nbsp;; </u></strong></font></p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Il est arriv&eacute; qu&rsquo;une coll&egrave;gue voit un soir l&rsquo;&acirc;me d&rsquo;Elie voltig&eacute; autour d&rsquo;elle sans savoir si c&rsquo;&eacute;tait un r&ecirc;ve, ou une r&eacute;alit&eacute;. Elle trouva un livre d&rsquo;Elie &agrave; son chevet, se demanda qui l&rsquo;avait pos&eacute; l&agrave;, sachant qu&rsquo;habituellement elle le rangeait dans sa biblioth&egrave;que. Elle questionna ses parents &agrave; ce sujet, personne ne put la renseigner. Elle pressentit qu&rsquo;Elie voulait qu&rsquo;elle demande &agrave; sa s&oelig;ur de chercher dans ses affaires, des textes &eacute;crits par lui. Le soir suivant, vers 6 heures, apr&egrave;s une journ&eacute;e fatigante, elle s&rsquo;endormit mais Elie la r&eacute;veilla et l&rsquo;invita &agrave; appeler sa s&oelig;ur. Elle vint me voir ce m&ecirc;me soir et me raconta ce qui lui &eacute;tait arriv&eacute;, me demandant de chercher dans ses affaires des textes r&eacute;diges par lui, dans le but de les publier dans un nouveau livre.&nbsp;Elle me dit&nbsp;: &laquo;&nbsp; Je t&rsquo;ai transmis le message, je vais me coucher.&nbsp;&raquo;</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Une fille qui souffrait de douleurs au ventre vit Elie en r&ecirc;ve, qui lui expliqua qu&rsquo;elle avait un kyste ovarien, et qu&rsquo;elle avait besoin d&rsquo;une intervention chirurgicale. La fille fut effray&eacute;e et fit des analyses qui confirm&egrave;rent les dires d&rsquo;Elie. Elle prit beaucoup de m&eacute;dicaments dans l&rsquo;espoir d&rsquo;&eacute;chapper &agrave; cette op&eacute;ration, en vain. Lorsqu&rsquo;elle d&eacute;cida enfin de la subir, elle vit en r&ecirc;ve, cette nuit-l&agrave;, Elie et la Sainte Vierge qui l&rsquo;op&eacute;raient eux-m&ecirc;mes et qui lui annon&ccedil;aient la bonne nouvelle que l&rsquo;op&eacute;ration avait r&eacute;ussie sans probl&egrave;me, et c&rsquo;est effectivement ce qui arriva.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Un pr&ecirc;tre &eacute;voqua Elie dans la messe, sans le conna&icirc;tre personnellement. On lui avait parl&eacute; de lui et de ses bonnes actions et il avait lu quelques uns de ses textes. Pendant la messe, ce pr&ecirc;tre sentit tout d&rsquo;un coup la pr&eacute;sence d&rsquo;Elie debout &agrave; sa droite tout illumin&eacute;, et lui parlant en souriant&nbsp;:<font face=\"Verdana\" size=\"3\">&nbsp;</font><strong>&laquo;&nbsp;Si tu veux, tu peux ne pas prier pour moi car je vais tr&egrave;s bien, toi, tu as besoin de pri&egrave;re, je vais prier pour toi.&nbsp;&raquo;</strong><font face=\"Verdana\" size=\"3\"> </font>Le pr&ecirc;tre rit alors int&eacute;rieurement se disant&nbsp;<font face=\"Verdana\" size=\"3\">:&nbsp;</font><strong>&laquo;&nbsp;Voyez pour qui je prie, c&rsquo;est lui qui doit prier pour moi, car c&rsquo;est un Saint.&nbsp;&raquo;</strong></p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Une coll&egrave;gue d&rsquo;Elie, qui travaillait &agrave; l&rsquo;h&ocirc;pital Saint Georges, Beyrouth, souhaitait avoir un enfant. Elie lui apparut sur une marche de l&rsquo;escalier de l&rsquo;h&ocirc;pital, v&ecirc;tu d&rsquo;une blouse blanche avec le st&eacute;thoscope autour du cou. Elle lui demanda comment il allait, il r&eacute;pondit&nbsp;:<font face=\"Verdana\" size=\"3\">&nbsp;</font><strong>&laquo;&nbsp;je vais tr&egrave;s bien. F&eacute;licitations pour ta grossesse, May, tu as besoin d&rsquo;une rempla&ccedil;ante dans ta clinique les derniers mois de ta grossesse car tu ne pourras plus travailler. Ma s&oelig;ur est p&eacute;diatre et peut te remplacer jusqu&#39;&agrave; ton accouchement.&nbsp;&raquo;</strong><font face=\"Verdana\" size=\"3\"><strong> </strong></font> Il lui sourit alors.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Effectivement &agrave; la fin du cinqui&egrave;me mois, son gyn&eacute;cologue lui demanda de garder le lit jusqu&#39;&agrave; son accouchement (la naissance du b&eacute;b&eacute;). Cette femme m&eacute;decin comprit que Dieu lui avait envoy&eacute; un proph&egrave;te et dit&nbsp;:&nbsp;&laquo;&nbsp;J&rsquo;ai senti que notre cher Elie est toujours pr&eacute;sent parmi nous, veillant sur nous depuis L&agrave;-haut&nbsp;&raquo;. Elle me demanda donc de la remplacer comme le lui avait indiqu&eacute; Elie et c&rsquo;est effectivement ce qui se passa.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;La cousine d&rsquo;Elie le vit en r&ecirc;ve, lui montrant le texte de sa biographie sur l&rsquo;&eacute;cran de l&rsquo;ordinateur sur un arri&egrave;re-plan beige. Chaque feuille de cette biographie &eacute;tait sign&eacute;e par lui en bleu. Elle me dit&nbsp;:&nbsp;&laquo;&nbsp;Il te demande de r&eacute;diger sa biographie et de la publier &raquo; et il dit&nbsp;:<font face=\"Verdana\" size=\"3\"> </font><strong>&laquo; Je voudrais r&eacute;pandre et publier ma biographie dans le monde entier, visiter les maisons et joncher la terre de fleurs.&raquo;</strong></p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Une infirmi&egrave;re du dispensaire ou Elie consultait dit&nbsp;:</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;&laquo;&nbsp;J&rsquo;ai subi de rudes &eacute;preuves dans ma vie, j&rsquo;ai demand&eacute; l&rsquo;aide au Bon Dieu par l&rsquo;interm&eacute;diaire d&rsquo;Elie, et il m&rsquo;a bien soutenue. Je le consid&egrave;re comme mon messager divin, il est tr&egrave;s bon, dou&eacute;, son visage rayonnant toujours souriant, tr&egrave;s modeste. Je suis sure que c&rsquo;est un Saint.&nbsp;&raquo;</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Une femme qui ne le connaissait pas et qui ne l&rsquo;avait jamais vu, r&ecirc;va une nuit d&rsquo;un jeune homme au visage rayonnant. Elle s&rsquo;approcha de lui, il lui sourit et lui donna un livre. Le mur derri&egrave;re lui &eacute;tait bleu. Elle prit le livre et sortit, toute heureuse. Elle entendit les gens murmurer que c&rsquo;&eacute;tait le Christ. Elle se r&eacute;veille alors et se dit&nbsp;:&nbsp;&laquo;&nbsp;Je peux expliquer ce r&ecirc;ve, c&rsquo;est probablement un Saint.&nbsp;&raquo; Deux jours plus tard, son mari lui demanda de l&rsquo;accompagner &agrave; une s&eacute;ance de signature du livre de Dr Elie. Tout d&rsquo;abord, elle n&rsquo;en avait pas envie, elle ne le connait pas, mais comme son mari insistait, elle a &eacute;t&eacute; tout de m&ecirc;me. Lorsqu&rsquo;elle entra dans la salle, elle vit que la couverture du livre &eacute;tait de la m&ecirc;me couleur que le mur derri&egrave;re le jeune home de son r&ecirc;ve&nbsp;; quand &agrave; la photo d&rsquo;Elie figurant sur la couverture de ce livre, c&rsquo;&eacute;tait celle du jeune homme vu en r&ecirc;ve. C&rsquo;&eacute;tait une grande surprise pour elle qui ne l&rsquo;avait jamais vu en r&eacute;alit&eacute;.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Lorsqu&rsquo;elle entendit parler de certains de ses &eacute;crits et de ses &oelig;uvres, elle dit&nbsp;:&nbsp;&laquo;&nbsp;Est-ce un miracle r&eacute;alis&eacute; pour moi par Elie&nbsp;?&nbsp;&raquo;</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Une femme arriva &agrave; ma clinique un soir, elle avait sa petite fille de trois ans et demi qui souffrait d&rsquo;une forte fi&egrave;vre et haletait. Apr&egrave;s l&rsquo;avoir auscult&eacute;e, j&rsquo;ai dit &agrave; sa maman qu&rsquo;elle &eacute;tait atteinte d&rsquo;une pneumonie et que nous serions peut &ecirc;tre oblig&eacute;s de l&rsquo;admettre &agrave; l&rsquo;h&ocirc;pital. La maman pleura sur l&rsquo;&eacute;tat de sa petite fille et sur sa situation financi&egrave;re. Je lui ai prescris un antibiotique et un antitussif.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Le matin du jour suivant, elle revint tr&egrave;s t&ocirc;t &agrave; la clinique me demandant d&rsquo;ausculter sa fille une deuxi&egrave;me fois. Je m&rsquo;ex&eacute;cutai et fut surprise de voir le bon &eacute;tat de ses poumons alors qu&rsquo;elle n&rsquo;avait pris les m&eacute;dicaments que depuis douze heures. La maman me raconta que durant la nuit, sa fille &eacute;tant souffrante, elle avait demand&eacute; l&rsquo;aide au Dr Elie pour la gu&eacute;rir, ce qu&rsquo;il fit aussit&ocirc;t. La fillette s&rsquo;endormit pour se r&eacute;veiller le lendemain en bonne sant&eacute;, comme si rien n&rsquo;&eacute;tait. Elle dit aussi&nbsp;:&nbsp;&laquo;&nbsp;A pr&eacute;sent je le consid&egrave;re comme un Saint et je lui demande de veiller sur nous.&nbsp;&raquo;</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;L&rsquo;&eacute;pouse d&rsquo;un pr&ecirc;tre, qui ne le connaissait pas et ne l&rsquo;avait jamais vu, entendit parler de lui dans un couvent par les s&oelig;urs qui lui offrir un de ses livres. Elle vit en r&ecirc;ve Elie aupr&egrave;s de la Sainte Vierge qui lui dit qu&rsquo;elle &eacute;tait en visite au Liban avec son homme d&rsquo;affaires montrant du doigt Elie debout &agrave; ses cot&eacute;s, et qu&rsquo;elle pouvait lui demander tout ce qu&rsquo;elle voulait.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Une fillette asthmatique de trois ans et demi a entendu sa m&egrave;re parler du Dr Elie qu&rsquo;elle appelait toujours pour consulter des malades dans le besoin. Un soir, avant de s&rsquo;endormir, cette fillette dit &agrave; Elie&nbsp;:&nbsp;&laquo;&nbsp;&Ocirc; Dr Elie, veille sur ma m&egrave;re, mon p&egrave;re, mon oncle, ma grand-m&egrave;re et gu&eacute;ris-moi.&nbsp;&raquo;</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;A onze heures du soir, elle poussa un cri et r&eacute;veilla sa m&egrave;re qui lui demanda ce qu&rsquo;elle avait. Elle lui dit qu&rsquo;elle avait vu le Dr Elie, puis elle se rendormit. Le lendemain matin, la fillette r&eacute;p&eacute;ta &agrave; sa m&egrave;re qu&rsquo;elle avait vu le Dr Elie. La maman lui montra alors les ic&ocirc;nes des diff&eacute;rents Saints, en pensant qu&rsquo;elle avait vu l&rsquo;un d&rsquo;eux. La fillette ne reconnaissait personne. Sa m&egrave;re l&rsquo;emmena alors &agrave; ma clinique ou j&rsquo;avais une malade en consultation. La petite entra et lorsqu&rsquo;elle vit la photo du Dr Elie, elle la montra du doigt disant que c&rsquo;&eacute;tait lui qu&rsquo;elle avait vu. Elle s&rsquo;approcha de cette photo et l&rsquo;embrassa. Nous lui demand&acirc;mes ce qu&rsquo;il lui avait dit&nbsp;; Elle r&eacute;pondit&nbsp;:&nbsp;&laquo;&nbsp;Je vais te gu&eacute;rir&nbsp;&raquo;.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;La malade qui &eacute;tait l&agrave; sentit un frisson lui parcourir le corps&nbsp;: &laquo;&nbsp;C&rsquo;est une enfant innocente qui ne sait pas mentir, elle l&rsquo;a s&ucirc;rement vu.&nbsp;&raquo;</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;A partir de ce jour-la, l&rsquo;enfant n&rsquo;eut plus de sifflements dans ses poumons.&nbsp;</p> <p align=\"justify\"><font face=\"Verdana\" size=\"3\"><strong><u> Les Occupations humanitaires du Dr Elie Karouny&nbsp;</u>:</strong></font></p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Depuis qu&rsquo;il &eacute;tait sur les bancs de l&rsquo;&eacute;cole, Elie a commenc&eacute; &agrave; se d&eacute;vouer pour les autres&nbsp;: il aidait ses camarades en leur expliquant ce qu&rsquo;ils trouvaient difficile et ils venaient parfois chez lui &agrave; la maison.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Il a aid&eacute; ses coll&egrave;gues m&eacute;decins qui le consid&eacute;raient comme une r&eacute;f&eacute;rence m&eacute;dicale du plus haut niveau.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Il causait et discutait de nombreux sujets de litt&eacute;rature, d&rsquo;art, de culture, de sciences sociales, en plus des sujets m&eacute;dicaux. Il &eacute;tait dou&eacute; d&rsquo;une intelligence sup&eacute;rieure et remarquable, tout le monde, m&ecirc;me ses professeurs, lui demandaient des conseils. Il donnait des cours aux &eacute;l&egrave;ves de m&eacute;decine, ainsi que des conf&eacute;rences tr&egrave;s int&eacute;ressantes. Gr&acirc;ce &agrave; ses raisonnements et sa logique, ils ont pris go&ucirc;t &agrave; la m&eacute;decine. Certains d&rsquo;entre eux ont choisi la cardiologie sous l&rsquo;influence de son style scientifique si prenant. Il a coop&eacute;r&eacute; avec ses professeurs et a r&eacute;dig&eacute; pour eux des livres m&eacute;dicaux. </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Il a aussi donn&eacute; des cours aux infirmi&egrave;res et les a aid&eacute;es &agrave; pr&eacute;parer leurs m&eacute;moires, n&eacute;cessaires pour obtenir les dipl&ocirc;mes.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Il allait toujours a l&rsquo;h&ocirc;pital pour soigner les malades sans tenir compte des bombardements. Il nous t&eacute;l&eacute;phonait pour nous rassurer &agrave; son sujet afin que nous ne fassions pas de souci, mon p&egrave;re, ma m&egrave;re et moi sa s&oelig;ur.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Ses actions bienfaisantes et humanitaires sont innombrables et tout le monde s&rsquo;accorde pour dire qu&rsquo;il &eacute;tait un m&eacute;decin tr&egrave;s brillant, tr&egrave;s cultiv&eacute;, tr&egrave;s bon, faisant passer les int&eacute;r&ecirc;ts des autres, bien avant les siens. Il &eacute;coutait ses patients en souriant, leur expliquant en quoi consistait leur mal, et par quel moyen en gu&eacute;rir. Sa secr&eacute;taire se rappelle bien qu&rsquo;il consultait gratuitement.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Un jour, un malade vint chez lui pour une angioplastie, il refuse de lui faire payer les honoraires. Lorsque ce malade pr&eacute;senta un ch&egrave;que &agrave; la secr&eacute;taire, Dr Elie s&rsquo;empressa pour le d&eacute;chirer&nbsp;!</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Il disait&nbsp;:<font face=\"Verdana\" size=\"3\">&nbsp;</font><strong>&laquo;&nbsp;N&rsquo;adorez pas deux Dieux&nbsp;: Le Cr&eacute;ateur et l&rsquo;argent, ces deux Dieux ne peuvent&nbsp; s&rsquo;accorder. &raquo;</strong><font face=\"Verdana\" size=\"3\"><strong> </strong></font> Il refusait m&ecirc;me de porter une croix en or.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Les infirmi&egrave;res des urgences de l&rsquo;h&ocirc;pital Saint Georges, Beyrouth l&rsquo;appelaient lorsqu&rsquo; un malade d&eacute;muni arrivait &agrave; l&rsquo;h&ocirc;pital. Il le soignait alors de bonne gr&acirc;ce, avec sa gentillesse habituelle, et ne renvoyait jamais une personne dans le besoin.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Il &eacute;tait toujours pr&ecirc;t &agrave; aider, sans rien demander en &eacute;change, consultant, prescrivant les m&eacute;dicaments qu&rsquo;il payait de sa propre poche.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;<font face=\"Verdana\" size=\"3\"><strong>Voici quelques exemples de ses actions&nbsp;charitables&nbsp;: </strong></font></p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Un homme &acirc;g&eacute; et pauvre arriva un soir aux urgences, et lorsque l&rsquo;infirmi&egrave;re appela Dr Elie pour lui dire que l&rsquo;&eacute;tat de ce malade &eacute;tait critique, il accourut au milieu de la nuit et resta aupr&egrave;s de lui jusqu&#39;&agrave; ce que son &eacute;tat se stabilise.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Par la suite, chaque fois que cet homme revenait &agrave; la clinique, Elie lui achetait ses m&eacute;dicaments. Un jour il lui apporta une bo&icirc;te de bonbons et lui dit&nbsp;:&nbsp;&laquo;&nbsp;Je vous appr&eacute;cie beaucoup, Dr Elie, je suis confus de ne pouvoir vous payer, car je ne poss&egrave;de pas d&rsquo;argent&nbsp;&raquo;. Dr Elie r&eacute;pondit&nbsp;:<strong><font face=\"Verdana\" size=\"3\">&nbsp;</font>&laquo;&nbsp;Je ne vous demande rien, l&rsquo;essentiel est que vous soyez en bonne sant&eacute;&nbsp;&raquo;.</strong></p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Une toute jeune fille accompagn&eacute;e de ses parents avait besoin d&rsquo;une angioplastie, ce qu&rsquo;il lui fit gratuitement. </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Lorsqu&rsquo;il &eacute;tait encore interne, il soigna un jeune homme atteint du Syndrome d&rsquo;immunod&eacute;ficience acquise (SIDA), sans se souciait de la contagion de cette maladie. Personne, y compris la m&egrave;re du patient, n&rsquo;osait l&rsquo;approcher pour le soigner. Elie, lui, en eut le courage et entra plus d&rsquo;une fois dans sa chambre pour lui faire des piq&ucirc;res au bas du dos.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Il soigna aussi gratuitement une femme atteinte d&rsquo;hallucinations, &agrave; la suite de la mort de sa fille, et cela sur la demande de sa seconde fille, qui lui raconta que sa m&egrave;re avait &eacute;t&eacute; refus&eacute;e par les autres h&ocirc;pitaux de la r&eacute;gion pour cause de manque d&rsquo;argent. </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Une jeune fille accident&eacute;e ne pouvait plus bouger car elle avait une fracture &agrave; la colonne vert&eacute;brale. Sa s&oelig;ur, qui veillait sur elle la nuit &agrave; l&rsquo;h&ocirc;pital, se laissa vaincre par le sommeil et retrouva sa s&oelig;ur morte &agrave; son r&eacute;veil. Elle se fit d&rsquo;amers reproches disant&nbsp;:&nbsp;&laquo;&nbsp;Si je ne m&rsquo;&eacute;tais pas endormie, ma s&oelig;ur ne serait pas morte, j&rsquo;aurais appel&eacute; quelqu&rsquo;un pour la sauver&nbsp;&raquo;. Ceci la culpabilisa &eacute;norm&eacute;ment, et lorsqu&rsquo;elle en a parl&eacute; &agrave; Elie, il lui r&eacute;pondit&nbsp;:<font face=\"Verdana\" size=\"3\"><strong>&nbsp;</strong></font>&laquo;<strong>&nbsp;Tu t&rsquo;es endormie, les infirmi&egrave;res se sont endormies, les m&eacute;decins &eacute;taient absents, mais penses-tu que Dieu s&rsquo;est endormi aussi&nbsp;? Telle est la volont&eacute; de Dieu&nbsp;&raquo;</strong><font face=\"Verdana\" size=\"3\"><strong>.</strong></font> Laconscience de cette fille s&rsquo;apaisa aussit&ocirc;t. </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Une jeune fille bless&eacute;e dans un accident de voiture &agrave; la montagne fut transport&eacute;e dans un h&ocirc;pital de la r&eacute;gion. Lorsque ses parents appel&egrave;rent Dr Elie pour lui demander conseil, celui-ci prit sa voiture &agrave; l&rsquo;aube pour s&rsquo;envoler &agrave; son secours, sans tenir compte de la distance &agrave; parcourir, et la transf&eacute;ra &agrave; un autre h&ocirc;pital o&ugrave; il la soigna gratuitement.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Une pauvre femme cardiaque et handicap&eacute;e ne pouvait pas venir &agrave; la clinique. Elie passait la voir chez elle, m&ecirc;me au milieu de la nuit quand c&rsquo;&eacute;tait n&eacute;cessaire, et la soignait gratuitement. </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Elie a aussi soign&eacute; dans un dispensaire une femme &acirc;g&eacute;e de 90 ans atteinte d&rsquo;un &oelig;d&egrave;me pulmonaire. Comme elle ne pouvait pas &ecirc;tre admis &agrave; l&rsquo;h&ocirc;pital, il transforma sa modeste chambre &agrave; coucher en salle de soins intensifs et lui apporta tout ce dont elle avait besoin. Il passait la voir trois fois par jour jusqu&#39;&agrave; sa gu&eacute;rison, sans jamais exiger le moindre payement. </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Il a aussi soign&eacute; gratuitement un asthmatique, lui apportant m&eacute;dicaments et s&eacute;rum &agrave; la maison. </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Lorsqu&rsquo;Elie &eacute;tait encore interne, arriva un jour une jeune fille de 15 ans dans le coma &agrave; la suite d&rsquo;un accident. Les m&eacute;decins essay&egrave;rent de la sauver d&rsquo;un arr&ecirc;t cardiaque, mais comme elle ne r&eacute;agissait plus, ils y renonc&egrave;rent pensant qu&rsquo;elle &eacute;tait morte. Dr Elie, de sa part, insista pour la r&eacute;animer, lui dispensant des soins co&ucirc;teux et endossant &agrave; lui seul toute la responsabilit&eacute;, jusqu&#39;&agrave; ce qu&rsquo;elle revienne &agrave; la vie. Quelle ne fut pas la surprise des m&eacute;decins, le jour suivant&nbsp;! Ils le f&eacute;licit&egrave;rent pour sa pers&eacute;v&eacute;rance.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;La jeune fille quitta l&rsquo;h&ocirc;pital apr&egrave;s sa gu&eacute;rison, sans la moindre s&eacute;quelle. Elle et ses parents &eacute;taient bien reconnaissants &agrave; Elie, sans lequel leur fille n&rsquo;existerait plus.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Un petit gar&ccedil;on de 7 ans avait l&rsquo;habitude de passer voir un malade qui lui donnait des bonbons. Apr&egrave;s la mort de ce malade, Elie, qui pr&eacute;sentait ses condol&eacute;ances &agrave; sa famille, revit cet enfant qui parlait en chuchotant &agrave; la dame. Cette dame expliqua &agrave; Elie qu&rsquo;il s&rsquo;agissait d&rsquo;un orphelin qui avait trois fr&egrave;res, et dont la famille &eacute;tait dans le besoin. Elie lui offrit alors 100 dollars am&eacute;ricains.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Au cours d&rsquo;une autre visite de condol&eacute;ances, Elie apprit que le mari de la d&eacute;funte avait refus&eacute; de l&rsquo;enterrer, selon ses derni&egrave;res volont&eacute;s, dans un certain endroit cher &agrave; son c&oelig;ur. Voyant combien cela avait f&acirc;ch&eacute; et attrist&eacute; sa fille, il lui dit&nbsp;:<font face=\"Verdana\" size=\"3\">&nbsp;</font><strong>&laquo;&nbsp;Lorsqu&rsquo;une feuille tombe d&rsquo;un arbre, se soucie-t-elle de l&rsquo;endroit o&ugrave; l&rsquo;emporte le vent&nbsp;?&nbsp;&raquo;</strong><font face=\"Verdana\" size=\"3\"><strong>.</strong> </font>Ceci la consola.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Une jeune femme atteinte d&rsquo;une maladie du c&oelig;ur (cardiaque)&nbsp; et &agrave; qui les m&eacute;decins avaient vivement d&eacute;conseill&eacute; une grossesse, fut soign&eacute;e et gu&eacute;rie par Dr Elie et put alors avoir un enfant.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Toute personne &eacute;voquant Dr Elie a les larmes aux yeux en parlant de ses bienfaits, de ses vertus et de son sourire qui r&eacute;pandait la joie partout. On disait de lui&nbsp;: &laquo;&nbsp;Dr Karouny &eacute;tait unique, on ne reverra jamais quelqu&rsquo;un comme lui, c&rsquo;est un ange du ciel.&nbsp;&raquo;&nbsp;</p> <p align=\"justify\"><font face=\"Verdana\" size=\"3\"><strong><u>Que nous a laiss&eacute; Dr Elie Karouny&nbsp;?</u></strong></font></p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Dr Elie Karouny a laiss&eacute; un souvenir inoubliable dans le c&oelig;ur de tous ceux qui l&rsquo;ont connu&nbsp;: parents, coll&egrave;gues, amis, patients&hellip;Il a toujours &eacute;t&eacute; serviable pour toute personne demandant de l&rsquo;aide. Il &eacute;tait pour tous un excellent exemple de pi&eacute;t&eacute;, de vertu, de bont&eacute;. Il &eacute;tait hautement appr&eacute;ci&eacute; pour sa culture, son savoir, ses dons, sa morale infaillible et sa personnalit&eacute; si attachante. </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Il a su nous enseigner l&rsquo;amour et le respect d&rsquo;autrui, y compris des plus petites cr&eacute;atures qui, elles aussi, ont droit &agrave; la vie, et &agrave; qui il ne faut pas faire mal.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Un de ces professeurs d&rsquo;universit&eacute; a dit&nbsp;:&nbsp;&laquo;&nbsp;Dr Elie &eacute;tait un g&eacute;nie unique, en avance sur tout, d&rsquo;un niveau sup&eacute;rieur, et je suis certain que c&rsquo;est pour cela qu&rsquo;il n&rsquo;a pas v&eacute;cu longtemps dans notre monde.&nbsp;&raquo; </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Un coll&egrave;gue de Dr Elie a dit&nbsp;:&nbsp;&laquo;&nbsp;Dr Elie &eacute;tait extr&ecirc;mement proche de Dieu, il &eacute;tait m&ecirc;me en fusion avec Dieu. Il n&rsquo;agissait que pour servir la volont&eacute; de Dieu, sans jamais s&rsquo;&eacute;carter de son chemin. Sa foi en J&eacute;sus &eacute;tait absolue. C&rsquo;est lui qui disait&nbsp;:<font face=\"Verdana\" size=\"3\">&nbsp;</font><strong>&laquo;&nbsp;Que la volont&eacute; de Dieu soit faite.&nbsp;&raquo;</strong><font face=\"Verdana\" size=\"3\"> Toujours gentil, de bonne humeur, jamais orgueilleux. Il &eacute;tait pour moi un ami et un fr&egrave;re. A mon avis il est &agrave; pr&eacute;sent m&eacute;decin des &acirc;mes, apr&egrave;s avoir &eacute;t&eacute; m&eacute;decin des c&oelig;urs.&nbsp;&raquo; </font></p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Un de ses coll&egrave;gues a dit&nbsp;:&nbsp;&laquo;&nbsp;Elie a v&eacute;cu dans la foi et l&rsquo;amour de son prochain, au service de l&rsquo;humanit&eacute;, de la volont&eacute; et de la joie de Dieu. Ses pens&eacute;es &eacute;taient en parfait accord avec ses actions&nbsp;&raquo;.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Un autre coll&egrave;gue a dit de lui&nbsp;:&nbsp;&laquo;&nbsp;C&rsquo;&eacute;tait un brillant m&eacute;decin, qui s&rsquo;est form&eacute; selon les principes et la foi de la religion chr&eacute;tienne, il a accept&eacute; et endur&eacute; l&rsquo;&eacute;preuve impos&eacute;e par Dieu, selon sa Volont&eacute;, sans jamais douter de la V&eacute;rit&eacute; et de la R&eacute;surrection.&nbsp;&raquo;</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Un autre coll&egrave;gue a dit de lui&nbsp;:&nbsp;&laquo;&nbsp;Il &eacute;tait toujours en paix avec lui-m&ecirc;me et avec son &acirc;me. Il nous encourageait &agrave; accepter la volont&eacute; de Dieu pour vivre en accord avec Lui. Il est notre orgueil, notre exemple, notre symbole. C&rsquo;&eacute;tait quelqu&rsquo;un de merveilleux.&nbsp;&raquo;</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Un autre coll&egrave;gue a dit&nbsp;:&nbsp;&laquo;&nbsp;Il &eacute;tait tr&egrave;s pieux et a fortifi&eacute; ma foi. Il ne craignait pas la mort, il a vaincu la mort et a trouv&eacute; la vie &eacute;ternelle. Il communiquait avec Dieu et s&rsquo;exprimait dans le style biblique. Il a vaincu la maladie et s&rsquo;est uni &agrave; Dieu avant de le rejoindre. La force de sa foi lui a permis cela. Il s&rsquo;est consacr&eacute; &agrave; Dieu et n&rsquo;a jamais refus&eacute; &agrave; personne un service, le jour ou la nuit.&nbsp;&raquo; </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Un professeur de litt&eacute;rature a dit&nbsp;:&nbsp;&laquo;&nbsp;De ses &eacute;crits se d&eacute;gage une joie constante, une conscience qui an&eacute;antit l&rsquo;orgueil et la vanit&eacute;. Nous avons perdu une personne exceptionnelle.&nbsp;&raquo;&nbsp; </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Un pr&ecirc;tre a dit&nbsp;:&nbsp;&laquo;&nbsp;J&rsquo;ai pu voir en Elie J&eacute;sus qui a accept&eacute; de porter la croix, qui a accept&eacute; dans la joie et avec le sourire de se sacrifier pour les autres. Il m&rsquo;a enseign&eacute; de nombreuses choses qui m&rsquo;ont fait profond&eacute;ment r&eacute;fl&eacute;chir et prier. Il m&rsquo;a appris ce que sont la patience, le port de la croix, le sacrifice pour les autres. C&rsquo;&eacute;tait une ic&ocirc;ne vivante, j&rsquo;ai pass&eacute; avec lui une p&eacute;riode importante de ma vie. Je ne l&rsquo;ai jamais entendu se plaindre, il remerciait toujours Dieu. Nous voulons prier avec lui. Il n&rsquo;est pas mort. Le Christ est ressuscit&eacute;, All&eacute;luia &raquo;.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Un autre pr&ecirc;tre a dit&nbsp;:&nbsp;&laquo;&nbsp;Dr Elie &eacute;tait tr&egrave;s pieux, il n&rsquo;a pas craint la mort. Il a su joindre Dieu.&nbsp;Certains de ses &eacute;crits ressemblent aux psaumes de David et aux nouveaux psaumes. Il s&rsquo;exprime aussi dans le style biblique.&nbsp;&raquo;</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Un autre pr&ecirc;tre a dit&nbsp;:&nbsp;&laquo;&nbsp;Elie a triomph&eacute;, il est parvenu &agrave; s&rsquo;unir &agrave; Dieu par la force de sa foi. Il m&rsquo;a profond&eacute;ment impressionn&eacute;. Je ne l&rsquo;oublierai jamais. Beaucoup de gens se plaignent pour un malaise passager, qu&rsquo;ils ne supportent pas et maudissent Dieu plus d&rsquo;une fois. Dr Elie ne se r&eacute;voltait jamais, et remerciait toujours Dieu. C&rsquo;est un ange du Ciel.&nbsp;&raquo; </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Un autre pr&ecirc;tre a dit&nbsp;:&nbsp;&laquo;&nbsp;Elie &eacute;tait un grand croyant et pouvait dire avec son Saint patron&nbsp;:<font face=\"Verdana\" size=\"3\">&nbsp;</font><strong>&laquo;Je suis devant Dieu,&nbsp;L&rsquo;Eternel est vivant, le Dieu d&rsquo;Isra&euml;l, dont je suis le serviteur&nbsp;!&hellip;..&nbsp;&raquo;</strong><font face=\"Verdana\" size=\"3\"><strong> </strong></font>De ses &eacute;crits se d&eacute;gagent de nombreuses images et de nouveaux psaumes. Un homme Pascal &eacute;clair&eacute; d&rsquo;une lumi&egrave;re divine.&nbsp;&raquo;</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Une infirmi&egrave;re&nbsp; de l&rsquo;h&ocirc;pital Saint Georges passait par une p&eacute;riode difficile, ayant des probl&egrave;mes de sant&eacute;. Elle dut subir des tests, une op&eacute;ration et une biopsie. Lorsqu&rsquo;il apprit cela, Dr Elie lui dit&nbsp;:<font face=\"Verdana\" size=\"3\">&nbsp;</font><strong>&laquo;&nbsp;Ghada, tu es dans un &eacute;tat de gr&acirc;ce qui se resserre de plus en plus autour de toi. Tu dois ressentir profond&eacute;ment cette gr&acirc;ce qui t&rsquo;aide &agrave; vivre. J&eacute;sus Christ te demande quelque chose, ne crains pas cette chose, n&rsquo;h&eacute;site pas; acceptes cette &eacute;preuve que tu vas endurer.&nbsp;&raquo;</strong></p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Elle lui dit&nbsp;:&nbsp;Est-ce possible&nbsp;? Comment pourrai-je l&rsquo;accepter facilement&nbsp;? Elie parlait en souriant et ses paroles l&rsquo;impressionn&egrave;rent beaucoup. Il lui dit encore&nbsp;:<font face=\"Verdana\" size=\"3\">&nbsp;</font><strong>&laquo;&nbsp;J&eacute;sus t&rsquo;appelle, ne crains rien.</strong>&nbsp;&raquo;<font face=\"Verdana\" size=\"3\"> </font> Elle dit alors&nbsp;:&nbsp;&laquo;&nbsp;Il m&rsquo;a beaucoup encourag&eacute;e par la force de ses arguments.&nbsp; Les gens comme Elie, capables de se rapprocher de J&eacute;sus-Christ et d&rsquo;accepter la souffrance sont une minorit&eacute;.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp; Dr Elie &eacute;tait une personne tr&egrave;s altruiste et compatissante. Dommage que nous n&rsquo;ayons pas pu vivre davantage avec lui. Il soulageait les souffrants et all&eacute;geait leur peine. C&rsquo;est un ange et un Saint du Ciel.&nbsp;&raquo; </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Une autre infirmi&egrave;re du m&ecirc;me h&ocirc;pital a dit&nbsp;: &laquo;&nbsp;J&rsquo;estime que J&eacute;sus est mon fr&egrave;re, que la Sainte Vierge est ma m&egrave;re. Quant au p&egrave;re, je me le repr&eacute;sente comme un vieillard me surveillant sans arr&ecirc;t&nbsp; pour me punir.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Un jour, j&rsquo;allais chez Dr Elie pour lui proposer de prier afin de gu&eacute;rir par un miracle. Il r&eacute;pondit&nbsp;:&nbsp;<strong>&laquo;&nbsp;Attends-tu que ton fils te dise qu&rsquo;il a faim pour le nourrir&nbsp;? Dieu n&rsquo;attend pas que je lui demande un miracle, pas plus que la Sainte Vierge et J&eacute;sus. Il sait ce que je veux et ce dont j&rsquo;ai besoin. Dieu n&rsquo;est-il pas mon p&egrave;re&nbsp;? La Sainte Vierge est ma m&egrave;re, J&eacute;sus est mon fr&egrave;re.&nbsp;&raquo; </strong></p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;J&rsquo;ai pens&eacute; alors &agrave; mon p&egrave;re, avec qui je me querelle souvent, et qui, pourtant, me t&eacute;l&eacute;phone toujours pour se rassurer &agrave; mon sujet. Si mon p&egrave;re agit ainsi pour moi, que dire alors de Dieu le P&egrave;re&nbsp;? Je suis certaine qu&rsquo;il a encore bien plus de tendresse, d&rsquo;affection, de sollicitude pour moi. Telle fut mon opinion apr&egrave;s ma conversation avec Dr Elie Karouny. </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;L&rsquo;un de ses patients a dit&nbsp;:&nbsp;&laquo;&nbsp;C&rsquo;est le m&eacute;decin de mon c&oelig;ur et le bien aim&eacute; de mon c&oelig;ur, avec sa modestie et son visage lumineux, il a r&eacute;ussi &agrave; refaire battre mon pouls, circuler le sang dans mes veines, et rena&icirc;tre l&rsquo;espoir dans ma vie. Dr Karouny a devant lui un bel avenir, il est humain, d&eacute;vou&eacute;, dou&eacute;, il respecte les gens, mais il ne fera jamais fortune, car c&rsquo;est son dernier souci. Son souci est de soigner les gens, non pas de les exploiter. Je v&eacute;n&egrave;re ses capacit&eacute;s, sa comp&eacute;tence, son d&eacute;vouement pour sa vocation, malgr&eacute; son jeune &acirc;ge. Je refuse de m&rsquo;adresser &agrave; un autre m&eacute;decin, car, &agrave; mon avis, personne ne le vaut. Je refuse de changer ou de modifier les ordonnances du Dr Elie Karouny.&nbsp;&raquo;</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Un autre malade, qui a &eacute;chapp&eacute; &agrave; une op&eacute;ration &agrave; c&oelig;ur ouvert, gr&acirc;ce &agrave; lui, car il lui a ouvert les coronaires par Angioplastie, a dit&nbsp;:&nbsp;&laquo;&nbsp;Il m&rsquo;&eacute;coutait attentivement, m&rsquo;expliquait patiemment mon &eacute;tat, avec son sourire habituel sans ironie et sans orgueil. Personne ne lui ressemble. Je prends toujours le m&eacute;dicament qu&rsquo;il m&rsquo;a prescrit, je ne le changerai pas et je n&rsquo;irai pas chez un autre m&eacute;decin. Je ne l&rsquo;oublierai jamais.&nbsp;&raquo;</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Un autre malade a dit&nbsp;:&nbsp;&laquo;&nbsp;cet homme est une perle, son d&eacute;vouement est illimit&eacute;. Toujours pr&ecirc;t &agrave; se consacrer enti&egrave;rement aux autres, sans rien demander en &eacute;change. Il se distingue par ses &oelig;uvres de bienfaisance et son amour inconditionnel pour tout le monde, qui constituent son identit&eacute;. Ton d&eacute;part est une suite logique &agrave; ton parcours de saintet&eacute; que tu as commenc&eacute; sur terre, et que tu poursuis au paradis&nbsp;&raquo;.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Un autre patient le consid&egrave;re comme une &eacute;toile scintillant dans le ciel de l&rsquo;amour et du don de soi, &eacute;clairant les t&eacute;n&egrave;bres, embaumant tous ceux qui l&rsquo;ont connu. &laquo;&nbsp;Il a raviv&eacute; mon c&oelig;ur apr&egrave;s un infarctus, je poursuis aujourd&rsquo;hui le traitement qu&rsquo;il m&rsquo;a prescrit, je m&rsquo;en trouve bien et je ne le changerai pas&nbsp;&raquo;.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Une malade a dit&nbsp;:&nbsp;&laquo;&nbsp;Il &eacute;tait tr&egrave;s bon pour moi, je n&rsquo;oublierai jamais ses bienfaits et son sourire&nbsp;; il m&rsquo;a soign&eacute; par angioplastie sans me faire payer. Je suis souvent all&eacute;e le voir dans sa clinique et il m&rsquo;a dit&nbsp;:<font face=\"Verdana\" size=\"3\">&nbsp;</font><strong>&laquo; Si tu as besoin d&rsquo;aide, n&rsquo;h&eacute;site pas &agrave; m&rsquo;appeler, Je suis &agrave; ta disposition&nbsp;&raquo;</strong><font face=\"Verdana\" size=\"3\"><strong>.</strong> </font>Je l&rsquo;aime beaucoup, de tout mon c&oelig;ur, il est unique, son visage n&rsquo;a pas de pareil. Jusqu&#39;&agrave; pr&eacute;sent, je ne peux pas m&rsquo;emp&ecirc;cher de pleurer. C&rsquo;est un Saint que Dieu nous a envoy&eacute; sur terre.&nbsp;&raquo;</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Un autre malade, qu&rsquo;il a soign&eacute; gratuitement par angioplastie a dit qu&rsquo;il l&rsquo;a soign&eacute; avec l&rsquo;amour de Dieu. Je n&rsquo;oublierai jamais ce docteur brillant, humain, il y en a tr&egrave;s peu comme lui.&nbsp;&raquo;</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Une patiente qu&rsquo;il a soign&eacute;e a dit&nbsp;: &laquo;&nbsp;Nous avons trop t&ocirc;t perdu ce jeune m&eacute;decin si brillant, qui &eacute;tait l&rsquo;exemple du jeune homme pieux, pers&eacute;v&eacute;rant dans sa vocation, qui ne pouvait travailler autrement. Il nous a &eacute;norm&eacute;ment impressionn&eacute;, nous ne l&rsquo;oublierons jamais, c&rsquo;est un ange du Ciel.&nbsp;&raquo;</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Un pr&ecirc;tre malade a dit&nbsp;:&nbsp;&laquo;&nbsp;J&rsquo;avais une douleur &agrave; mon pied enfl&eacute;, je suis all&eacute; voir plus d&rsquo;un m&eacute;decin au Liban et &agrave; l&rsquo;&eacute;tranger, en vain. Personne n&rsquo;a su me soigner except&eacute; le Dr Elie qui est b&eacute;ni par le Seigneur. C&rsquo;est lui qui a compris de quoi je souffrais et qui m&rsquo;a gu&eacute;ri, je vais bien &agrave; pr&eacute;sent. Ses examens m&eacute;dicaux sont tr&egrave;s pr&eacute;cis et tr&egrave;s efficaces, il suit consciencieusement ses patients, il n&rsquo;y a pas d&rsquo;autre m&eacute;decin comme lui.&nbsp;&raquo; </p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Une malade a dit&nbsp;:&nbsp;&laquo;&nbsp;Ma tension &eacute;tait &eacute;lev&eacute;e, je suis all&eacute;e chez plus d&rsquo;un m&eacute;decin, au Liban et &agrave; l&rsquo;&eacute;tranger o&ugrave; je passais des s&eacute;jours chez mes enfants. Personne, except&eacute; le Dr Elie, n&rsquo;a su r&eacute;guler ma tension&nbsp;&raquo;.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Une femme a racont&eacute;&nbsp;:&nbsp;&laquo;&nbsp;Mon fils de sept ans a eu une dislocation de son &eacute;paule. Effray&eacute;e, pleurant et criant, je l&rsquo;ai pris aux urgences de l&rsquo;h&ocirc;pital Saint Georges. Le Dr Elie y &eacute;tait, il s&rsquo;est approch&eacute; de moi et m&rsquo;a dit&nbsp;:<font face=\"Verdana\" size=\"3\">&nbsp;</font><strong>&laquo;&nbsp;N&rsquo;aie pas peur&nbsp;&raquo;</strong><font face=\"Verdana\" size=\"3\"> il</font> a r&eacute;tabli l&rsquo;&eacute;paule en me disant&nbsp;:<font face=\"Verdana\" size=\"3\">&nbsp;</font><strong>&laquo;&nbsp; Prends ton fils et rentre chez toi&nbsp;&raquo;</strong><font face=\"Verdana\" size=\"3\"><strong>.</strong> </font>Je me rappellerai toujours ce m&eacute;decin si bon, si humain. C&rsquo;est un ange du ciel.&nbsp;&raquo;</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;Elie se comportait comme un enfant vis-&agrave;-vis des enfants, s&rsquo;adressant &agrave; eux dans leur langage enfantin. Lorsque l&rsquo;un de ces enfants, nomm&eacute; Walid et &acirc;g&eacute; de trois ans, voulut &eacute;craser une fourmi. Elie lui dit&nbsp;:<font face=\"Verdana\" size=\"3\">&nbsp;</font><strong>&laquo;&nbsp;Cette fourmi va retrouver ses enfants pour les nourrir, sans cela ils mourront de faim.</strong> Toi, peux-tu vivre sans ta m&egrave;re&nbsp;? Walid r&eacute;pondit&nbsp;: Non, je ne peux pas, j&rsquo;aime beaucoup maman. Elie lui r&eacute;pondit&nbsp;:<font face=\"Verdana\" size=\"3\">&nbsp;</font><strong>&laquo;&nbsp;Cette fourmi aussi est tr&egrave;s aim&eacute;e de ses enfants, Dieu lui a pr&ecirc;t&eacute; vie, il ne faut pas la tuer.&raquo;</strong> La m&egrave;re du gar&ccedil;on &eacute;coutait cette conversation et les paroles du jeune m&eacute;decin lui plurent beaucoup. C&rsquo;&eacute;tait pour elle une le&ccedil;on pour se confier &agrave; Dieu et se soumettre &agrave; sa volont&eacute;. Le destin d&rsquo;Elie, dit-elle, est pareil au destin des &acirc;mes Saintes.</p> <p align=\"justify\">&nbsp;&nbsp;&nbsp;J&rsquo;avais envie d&rsquo;acheter un oiseau en cage. Lorsque mon fr&egrave;re apprit cela, il me dit<font face=\"Verdana\" size=\"3\">&nbsp;:&nbsp;</font><strong>&laquo;&nbsp;Si tu apportes un oiseau, je le laisserai s&rsquo;envoler imm&eacute;diatement. Cet animal a &eacute;t&eacute; cr&eacute;&eacute; pour vivre dans la nature et voler d&rsquo;arbre en arbre, et non pas pour abuser de notre force en l&rsquo;emprisonnant. Dieu sait ou doit se trouver chaque cr&eacute;ature. Il a cr&eacute;&eacute; l&rsquo;oiseau pour qu&rsquo;il vive dans la nature, pas dans une cage.&raquo; </strong></p> <p align=\"justify\"><font face=\"Verdana\" size=\"3\">&nbsp;&nbsp;&nbsp;</font>&nbsp; Lorsque j&rsquo;allais avec mon fr&egrave;re pour pr&eacute;senter des condol&eacute;ances, il me disait&nbsp;:<font face=\"Verdana\" size=\"3\"><strong> </strong></font><strong>&laquo; Ne conforte pas les parents du d&eacute;c&eacute;d&eacute; d&rsquo;une mani&egrave;re habituelle en leur disant des formules pour les morts. Dieu a r&eacute;confort&eacute; celui qui a quitt&eacute; cette terre et l&rsquo;a rappel&eacute; &agrave; lui. Que Dieu nous donne le confort &agrave; nous les vivants. Dis leur plut&ocirc;t&nbsp;: Le Christ J&eacute;sus est ressuscit&eacute;. &raquo; <br /><br /></strong></p><p align=\"right\"><font face=\"Verdana\" size=\"4\">Dr. Lena Karouny &ndash; Janvier 2009</font>&nbsp; </p></div>',1,6,0,20,'2009-02-08 22:17:36',62,'','2009-04-02 20:16:01',62,0,'0000-00-00 00:00:00','2009-02-08 21:59:04','0000-00-00 00:00:00','elie1.png|right||0||top|right|\r\nelie2.png|left||0||top|left|','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',4,0,1,'','',0,3931),(25,'ArletteMatta','ArletteMatta','<p align=\"center\">&nbsp;<font size=\"4\">&#1575;&#1604;&#1587;&#1610;&#1583;&#1577; &#1575;&#1585;&#1604;&#1610;&#1578; &#1586;&#1608;&#1580;&#1577; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1606;&#1575;&#1592;&#1605; &#1605;&#1578;&#1609;</font></p><p align=\"center\">{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/ArletteMatta.wmv} </p>','',1,6,0,19,'2008-11-30 19:57:55',63,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2008-11-30 19:54:17','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',1,0,6,'','',0,1928),(26,'LenaKarounyG','','<div align=\"center\"><font size=\"4\"><font size=\"5\">&#1588;&#1602;&#1610;&#1602;&#1577; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610; &#1582;&#1604;&#1610;&#1604; &#1602;&#1585;&#1593;&#1608;&#1606;&#1610; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585;&#1577; &#1604;&#1610;&#1606;&#1575;</font></font> <br /></div><div align=\"center\"><p align=\"right\">{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/LenaKarounyG.wmv}&nbsp; </p>&nbsp;</div>','',1,6,0,19,'2008-11-30 20:02:32',63,'','2008-11-30 20:10:57',63,0,'0000-00-00 00:00:00','2008-11-30 20:02:08','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',3,0,5,'','',0,2108),(27,'Claudia abi Nader st Georges','4','<div align=\"center\">&nbsp;<font size=\"4\">&#1585;&#1574;&#1610;&#1587;&#1577; &#1605;&#1580;&#1604;&#1587; &#1575;&#1604;&#1601;&#1603;&#1585; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585;&#1577; &#1603;&#1604;&#1608;&#1583;&#1610;&#1575; &#1575;&#1576;&#1610; &#1606;&#1575;&#1583;&#1585;</font></div><div align=\"center\"><p align=\"right\">{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/ClaudiaGeorges.wmv}&nbsp; </p>&nbsp;</div><!--Session data-->','<br /><!--Session data-->',1,6,0,19,'2008-11-30 20:04:00',63,'','2009-09-02 15:51:36',63,0,'0000-00-00 00:00:00','2008-11-30 20:02:39','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',5,0,4,'','',0,6952),(28,'Nicolas Gholam','','<div align=\"center\"><font size=\"4\"><font size=\"5\">&#1585;&#1574;&#1610;&#1587; &#1575;&#1604;&#1585;&#1575;&#1576;&#1591;&#1577; &#1575;&#1604;&#1604;&#1576;&#1606;&#1575;&#1606;&#1610;&#1577; &#1604;&#1604;&#1585;&#1608;&#1605; &#1575;&#1604;&#1571;&#1585;&#1579;&#1608;&#1584;&#1603;&#1587; &#1575;&#1604;&#1575;&#1587;&#1578;&#1575;&#1584; &#1606;&#1602;&#1608;&#1604;&#1575; &#1594;&#1604;&#1575;&#1605;</font></font></div><div align=\"center\"><p align=\"right\">{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/NicolasGholam.wmv}&nbsp; </p>&nbsp;</div>','',1,6,0,19,'2008-11-30 20:04:30',63,'','2008-11-30 20:30:41',63,0,'0000-00-00 00:00:00','2008-11-30 20:04:07','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',4,0,3,'','',0,2162),(29,'Fouad Daabou','','<div align=\"center\"><font size=\"4\">&#1605;&#1583;&#1610;&#1585; &#1578;&#1581;&#1585;&#1610;&#1585; &#1580;&#1585;&#1610;&#1583;&#1577; &#1575;&#1604;&#1571;&#1606;&#1608;&#1575;&#1585;&#1548; &#1575;&#1604;&#1603;&#1575;&#1578;&#1576; &#1608;&#1575;&#1604;&#1605;&#1581;&#1604;&#1604; &#1575;&#1604;&#1587;&#1610;&#1575;&#1587;&#1610; &#1575;&#1604;&#1575;&#1587;&#1578;&#1575;&#1584; &#1601;&#1572;&#1575;&#1583; &#1583;&#1593;&#1576;&#1608;&#1604;</font></div><div align=\"center\"><p align=\"right\">{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/FouadDaabou.wmv}&nbsp; </p>&nbsp;</div>','',1,6,0,19,'2008-11-30 20:05:18',63,'','2008-11-30 20:31:10',63,0,'0000-00-00 00:00:00','2008-11-30 20:04:46','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',3,0,2,'','',0,2012),(30,'Tarek Mitri','','<div align=\"center\"><font size=\"4\"><font size=\"5\">&#1608;&#1586;&#1610;&#1585; &#1575;&#1604;&#1579;&#1602;&#1575;&#1601;&#1577; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1591;&#1575;&#1585;&#1602; &#1605;&#1578;&#1585;&#1610;</font></font></div><div align=\"center\"><p align=\"right\">{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/TarekMitri.wmv}&nbsp; </p>&nbsp;</div>','',1,6,0,19,'2008-11-30 20:05:18',63,'','2008-11-30 20:31:23',63,0,'0000-00-00 00:00:00','2008-11-30 20:04:46','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',2,0,1,'','',0,2108),(24,'sirapheembardaweel','','<div align=\"right\"><br /> <p align=\"right\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#1575;&#1604;&#1571;&#1585;&#1588;&#1605;&#1606;&#1583;&#1585;&#1610;&#1578; &#1587;&#1610;&#1585;&#1575;&#1601;&#1610;&#1605; &#1576;&#1585;&#1583;&#1608;&#1610;&#1604; &#1605;&#1605;&#1579;&#1604;&#1575;&#1611; &#1605;&#1578;&#1585;&#1608;&#1576;&#1608;&#1604;&#1610;&#1578; &#1576;&#1610;&#1585;&#1608;&#1578; &#1608;&#1578;&#1608;&#1575;&#1576;&#1593;&#1607;&#1575; &#1575;&#1604;&#1605;&#1591;&#1585;&#1575;&#1606; &#1575;&#1604;&#1610;&#1575;&#1587; &#1593;&#1608;&#1583;&#1577;</p><p align=\"right\">{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/Sala.wmv}&nbsp; </p><br /></div>','',1,6,0,19,'2008-11-23 18:25:58',63,'','2008-11-30 20:01:39',63,0,'0000-00-00 00:00:00','2008-11-23 18:24:10','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',6,0,7,'','',0,2054),(32,'Metropolite de Beyrouth Mgr. Elias Awdi','','<div align=\"right\">&#1575;&#1604;&#1593;&#1592;&#1577; &#1575;&#1604;&#1578;&#1610; &#1575;&#1604;&#1602;&#1575;&#1607;&#1575; &#1587;&#1610;&#1575;&#1583;&#1577; &#1605;&#1578;&#1585;&#1608;&#1576;&#1608;&#1604;&#1610;&#1578; &#1576;&#1610;&#1585;&#1608;&#1578; &#1608;&#1578;&#1608;&#1575;&#1576;&#1593;&#1607;&#1575; &#1604;&#1604;&#1585;&#1608;&#1605; &#1575;&#1604;&#1571;&#1608;&#1585;&#1579;&#1608;&#1584;&#1608;&#1603;&#1587; &#1587;&#1610;&#1575;&#1583;&#1577; &#1575;&#1604;&#1605;&#1591;&#1585;&#1575;&#1606; &#1575;&#1604;&#1610;&#1575;&#1587; &#1593;&#1608;&#1583;&#1577; &#1601;&#1610; &#1573;&#1606;&#1578;&#1602;&#1575;&#1604; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610; &#1602;&#1585;&#1593;&#1608;&#1606;&#1610;</div><div align=\"center\">{moseasymedia media=http://eliekarouny.com/index/images/stories/audio/eliasawde.mp3}&nbsp; </div><!--Session data--><!--Session data--><!--Session data--><!--Session data--><!--Session data-->','<br /><!--Session data--><!--Session data--><!--Session data--><!--Session data--><!--Session data--><!--Session data-->',1,6,0,18,'2009-09-02 15:54:57',63,'','2009-10-01 15:17:39',64,0,'0000-00-00 00:00:00','2009-09-02 15:51:45','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',6,0,5,'','',0,3220),(33,'Radio VDLC','','<p align=\"right\">&#1602;&#1585;&#1575;&#1569;&#1575;&#1578; &#1601;&#1610; &#1573;&#1584;&#1575;&#1593;&#1577; &#1589;&#1608;&#1578; &#1575;&#1604;&#1605;&#1581;&#1576;&#1577;<br /> </p><p align=\"center\">{moseasymedia media=http://eliekarouny.com/index/images/stories/audio/vdlc1.mp3}&nbsp; <!--Session data--></p><!--Session data--><!--Session data--><!--Session data-->','<br /><!--Session data--><!--Session data--><!--Session data--><!--Session data-->',1,6,0,18,'2009-09-02 16:03:35',63,'','2009-09-15 17:23:56',63,0,'0000-00-00 00:00:00','2009-09-02 16:01:32','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',4,0,3,'','',0,3287),(34,'Voice of Dr Elie Karouny','','<p align=\"right\">&#1589;&#1608;&#1578; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610; &#1602;&#1585;&#1593;&#1608;&#1606;&#1610;&nbsp; </p><div align=\"center\">{moseasymedia media=http://eliekarouny.com/index/images/stories/audio/vdlc2.mp3}&nbsp; </div><!--Session data--><!--Session data--><!--Session data--><!--Session data-->','<br /><!--Session data--><!--Session data--><!--Session data--><!--Session data-->',1,6,0,18,'2009-09-02 16:05:04',63,'','2009-09-15 17:27:15',63,0,'0000-00-00 00:00:00','2009-09-02 16:04:18','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',4,0,4,'','',0,3238),(35,'Tele Lumiere 01','','<p align=\"right\">&#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585;&#1577; &#1604;&#1610;&#1606;&#1575; &#1602;&#1585;&#1593;&#1608;&#1606;&#1610; &#1601;&#1610; &#1578;&#1610;&#1604;&#1610; &#1604;&#1608;&#1605;&#1610;&#1585; <br /> </p>{moseasymedia media=http://eliekarouny.com/index/images/stories/audio/tl01.mp3}&nbsp; <!--Session data-->','<br /><!--Session data-->',1,6,0,18,'2009-09-02 16:09:02',63,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2009-09-02 16:06:47','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',1,0,1,'','',0,3205),(36,'Tele Lumiere 02','','<div align=\"right\"><p align=\"right\">&#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585;&#1577; &#1604;&#1610;&#1606;&#1575; &#1602;&#1585;&#1593;&#1608;&#1606;&#1610; &#1601;&#1610; &#1578;&#1610;&#1604;&#1610; &#1604;&#1608;&#1605;&#1610;&#1585; <br /> </p> {moseasymedia media=http://eliekarouny.com/index/images/stories/audio/tl02.mp3}&nbsp; </div><!--Session data-->','<br /><!--Session data-->',1,6,0,18,'2009-09-02 16:09:46',63,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2009-09-02 16:09:08','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',1,0,2,'','',0,3244),(37,'Dr. Elie Karouny on Telelumiere','','<div align=\"right\"><div align=\"right\"><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>AR-SA</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:DontVertAlignCellWithSp/> <w:DontBreakConstrainedForcedTables/> <w:DontVertAlignInTxbx/> <w:Word11KerningPairs/> <w:CachedColBalance/> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"&#45;-\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles> </xml><![endif]--> <!-- /* Font Definitions */ @font-face {font-family:\"Cambria Math\"; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4; mso-font-charset:0; mso-generic-font-family:swiss; mso-font-pitch:variable; mso-font-signature:-1610611985 1073750139 0 0 159 0;} @font-face {font-family:Verdana; panose-1:2 11 6 4 3 5 4 4 2 4; mso-font-charset:0; mso-generic-font-family:swiss; mso-font-pitch:variable; mso-font-signature:536871559 0 0 0 415 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:\"\"; margin-top:0in; margin-right:0in; margin-bottom:10.0pt; margin-left:0in; line-height:115%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:\"Calibri\",\"sans-serif\"; mso-fareast-font-family:Calibri; mso-bidi-font-family:Arial;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt; mso-ascii-font-family:Calibri; mso-fareast-font-family:Calibri; mso-hansi-font-family:Calibri; mso-bidi-font-family:Arial;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --> <!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable {mso-style-name:\"Table Normal\"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-qformat:yes; mso-style-parent:\"\"; mso-padding-alt:0in 5.4pt 0in 5.4pt; mso-para-margin:0in; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:11.0pt; font-family:\"Calibri\",\"sans-serif\"; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:\"Times New Roman\"; mso-fareast-theme-font:minor-fareast; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:Arial; mso-bidi-theme-font:minor-bidi;} </style> <![endif]--> </div><p style=\"text-align: right; direction: rtl; unicode-bidi: embed\" dir=\"rtl\" class=\"MsoNormal\" align=\"right\"><span style=\"font-family: &quot;Arial&quot;,&quot;sans-serif&quot;\">&nbsp;&nbsp;&nbsp;&nbsp;</span>&nbsp;&nbsp;&nbsp;&nbsp; &#1606;&#1583;&#1608;&#1577; &#1593;&#1604;&#1609; &#1578;&#1604;&#1601;&#1586;&#1610;&#1608;&#1606; &#1578;&#1610;&#1604;&#1610; &#1604;&#1608;&#1605;&#1610;&#1585; &#1593;&#1606; &#1575;&#1604;&#1608;&#1580;&#1607; &#1575;&#1604;&#1570;&#1582;&#1585; &#1604;&#1604;&#1591;&#1576;&#1610;&#1576; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585;&#1575;&#1610;&#1604;&#1610; &#1582;&#1604;&#1610;&#1604; &#1602;&#1585;&#1593;&#1608;&#1606;&#1610; &#1608;&#1603;&#1578;&#1575;&#1576;&#1607; &quot;&#1608;&#1604;&#1606; &#1610;&#1587;&#1602;&#1591; &#1575;&#1604;&#1587;&#1610;&#1601; &#1605;&#1606; &#1610;&#1583;&#1610;....&quot;&nbsp; &nbsp;&#1588;&#1575;&#1585;&#1603; &#1601;&#1610; &#1607;&#1584;&#1607; &#1575;&#1604;&#1581;&#1604;&#1602;&#1577; &#1605;&#1593; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1588;&#1575;&#1585;&#1604; &#1580;&#1586;&#1585;&#1575; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585;&#1577; &#1604;&#1610;&#1606;&#1575; &#1602;&#1585;&#1593;&#1608;&#1606;&#1610;&#1548; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1580;&#1575;&#1603; &#1605;&#1582;&#1576;&#1575;&#1591;&#1548; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1605;&#1610;&#1588;&#1575;&#1604; &#1587;&#1593;&#1575;&#1583;&#1577;&#1548; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1605;&#1610;&#1588;&#1575;&#1604; &#1587;&#1593;&#1575;&#1583;&#1577;&#1548; &#1608;&#1603;&#1575;&#1606;&#1578; &#1588;&#1607;&#1575;&#1583;&#1575;&#1578; &#1605;&#1606; &#1576;&#1593;&#1590; &#1605;&#1593;&#1575;&#1585;&#1601;&#1607; &#1575;&#1604;&#1571;&#1587;&#1578;&#1575;&#1584; &#1575;&#1605;&#1610;&#1604; &#1603;&#1576;&#1575; &#1585;&#1574;&#1610;&#1587; &#1578;&#1581;&#1585;&#1610;&#1585; &#1605;&#1580;&#1604;&#1577; &#1575;&#1604;&#1581;&#1603;&#1605;&#1577;&#1548; &#1575;&#1604;&#1570;&#1606;&#1587;&#1577; &#1594;&#1575;&#1583;&#1577; &#1586;&#1608;&#1610;&#1606;&#1548; &#1575;&#1604;&#1587;&#1610;&#1583;&#1577; &#1605;&#1607;&#1575;&#1606;&#1575; &#1576;&#1591;&#1585;&#1587; &#1575;&#1604;&#1593;&#1578;&#1604;&#1548; &#1575;&#1604;&#1575;&#1576; &#1580;&#1575;&#1606; &#1605;&#1575;&#1585;&#1610; &#1588;&#1575;&#1605;&#1610;&#1548; &#1608;&#1608;&#1575;&#1604;&#1583;&#1577; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610; &#1575;&#1604;&#1587;&#1610;&#1583;&#1577; &#1575;&#1604;&#1610;&#1587; &#1605;&#1581;&#1601;&#1608;&#1592; &#1602;&#1585;&#1593;&#1608;&#1606;&#1610;</p>&nbsp; &#1575;&#1604;&#1580;&#1586;&#1569; &#1575;&#1604;&#1571;&#1608;&#1604; <br /></div><div align=\"right\">{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/tableronde/tl01.wmv}&nbsp;</div><div align=\"right\">&nbsp;</div><div align=\"right\">&#1575;&#1604;&#1580;&#1586;&#1569; &#1575;&#1604;&#1579;&#1575;&#1606;&#1610; <br /> <div align=\"right\">{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/tableronde/tl02.wmv}</div><div align=\"right\">&nbsp;</div><div align=\"right\">&#1575;&#1604;&#1580;&#1586;&#1569; &#1575;&#1604;&#1579;&#1575;&#1604;&#1579; <br /> <div align=\"right\">{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/tableronde/tl03.wmv}</div><div align=\"right\">&nbsp;</div><div align=\"right\">&#1575;&#1604;&#1580;&#1586;&#1569; &#1575;&#1604;&#1585;&#1575;&#1576;&#1593; <br /> <div align=\"right\">{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/tableronde/tl04.wmv}</div><div align=\"right\">&nbsp;</div><div align=\"right\">&#1575;&#1604;&#1580;&#1586;&#1569; &#1575;&#1604;&#1582;&#1575;&#1605;&#1587; <br /> <div align=\"right\">{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/tableronde/tl05.wmv}</div><div align=\"right\">&nbsp;</div><div align=\"right\">&#1575;&#1604;&#1580;&#1586;&#1569; &#1575;&#1604;&#1587;&#1575;&#1583;&#1587; <br /> <div align=\"right\">{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/tableronde/tl06.wmv}</div><div align=\"right\">&nbsp;</div><div align=\"right\">&#1575;&#1604;&#1580;&#1586;&#1569; &#1575;&#1604;&#1587;&#1575;&#1576;&#1593; <br /> <div align=\"right\">{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/tableronde/tl07.wmv} <br /></div></div></div></div>&nbsp;</div>&nbsp;</div>&nbsp;</div><!--Session data--><!--Session data-->','<br /><!--Session data--><!--Session data-->',1,6,0,17,'2009-11-17 15:12:29',63,'','2009-11-17 15:18:23',63,0,'0000-00-00 00:00:00','2009-11-17 15:04:21','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',2,0,1,'','',0,4190),(38,'Alice Karouny','','{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/shahadat/AliceKarouny.wmv} ','',1,6,0,21,'2010-03-11 13:58:35',62,'','2010-03-12 08:20:48',64,0,'0000-00-00 00:00:00','2010-03-11 13:57:41','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',2,0,1,'','',0,3192),(39,'Arlette Matta','','{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/shahadat/ArletteMatta.wmv}&nbsp; ','',1,6,0,21,'2010-03-11 14:03:10',62,'','2010-03-12 08:20:59',64,0,'0000-00-00 00:00:00','2010-03-11 14:01:39','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',2,0,2,'','',0,3407),(40,'Elias Rached','','{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/shahadat/EliasRached.wmv}&nbsp; ','',1,6,0,21,'2010-03-11 14:04:09',62,'','2010-03-12 08:22:21',64,0,'0000-00-00 00:00:00','2010-03-11 14:03:16','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',2,0,3,'','',0,3604),(41,'Emile Kaba','','{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/shahadat/EmileKaba.wmv}&nbsp; ','',1,6,0,21,'2010-03-11 14:04:52',62,'','2010-03-12 08:22:32',64,0,'0000-00-00 00:00:00','2010-03-11 14:04:16','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',2,0,4,'','',0,3670),(42,'Georgette Njeim','','{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/shahadat/GeorgetteNjeim.wmv}&nbsp; ','',1,6,0,21,'2010-03-11 14:05:37',62,'','2010-03-12 08:22:41',64,0,'0000-00-00 00:00:00','2010-03-11 14:05:02','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',2,0,5,'','',0,3337),(43,'Ghada Zouwein','','{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/shahadat/GhadaZouwein.wmv}&nbsp; ','',1,6,0,21,'2010-03-11 14:25:08',62,'','2010-03-12 08:22:52',64,0,'0000-00-00 00:00:00','2010-03-11 14:24:18','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',2,0,6,'','',0,3257),(44,'Joseph Nasr Mansour','','{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/shahadat/JosephNasrMansour.wmv}&nbsp; ','',1,6,0,21,'2010-03-11 14:25:42',62,'','2010-03-12 08:23:05',64,0,'0000-00-00 00:00:00','2010-03-11 14:25:22','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',2,0,7,'','',0,3369),(45,'Josephine Abou Ezzi','','{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/shahadat/JosephineAbouEzzi.wmv}&nbsp; ','',1,6,0,21,'2010-03-11 14:26:08',62,'','2010-03-12 08:23:18',64,0,'0000-00-00 00:00:00','2010-03-11 14:25:50','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',2,0,8,'','',0,3459),(46,'LBC','','{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/shahadat/LBC.wmv}&nbsp; ','',1,6,0,21,'2010-03-11 14:26:43',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-03-11 14:26:19','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',1,0,9,'','',0,3192),(47,'Lena Jalkh','','{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/shahadat/LenaJalkh.wmv}&nbsp; ','',1,6,0,21,'2010-03-11 14:27:29',62,'','2010-03-12 08:23:39',64,0,'0000-00-00 00:00:00','2010-03-11 14:26:58','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',2,0,10,'','',0,3449),(48,'Mohana Boutros Etel','','{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/shahadat/MohanaBoutrosEtel.wmv}&nbsp; ','',1,6,0,21,'2010-03-11 14:28:17',62,'','2010-03-12 08:23:51',64,0,'0000-00-00 00:00:00','2010-03-11 14:27:37','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',2,0,11,'','',0,3099),(49,'Nadia Chammas','','{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/shahadat/NadiaChammas.wmv}&nbsp; ','',1,6,0,21,'2010-03-11 14:29:04',62,'','2010-03-12 08:24:02',64,0,'0000-00-00 00:00:00','2010-03-11 14:28:23','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',2,0,12,'','',0,3170),(50,'Nadimé Karim','','{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/shahadat/Nadim&eacute;Karim.wmv}&nbsp; ','',1,6,0,21,'2010-03-11 14:29:30',62,'','2010-03-12 08:24:12',64,0,'0000-00-00 00:00:00','2010-03-11 14:29:12','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',2,0,13,'','',0,3083),(51,'Nazem Matta','','{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/shahadat/NazemMatta.wmv}&nbsp; ','',1,6,0,21,'2010-03-11 14:30:09',62,'','2010-03-12 08:24:33',64,0,'0000-00-00 00:00:00','2010-03-11 14:29:50','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',2,0,14,'','',0,3141),(52,'Paper','','{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/shahadat/Paper.wmv}&nbsp; ','',1,6,0,21,'2010-03-11 14:30:54',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-03-11 14:30:15','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',1,0,15,'','',0,3085),(53,'Patient Semaan','','{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/shahadat/PatientSemaan.wmv}&nbsp; ','',1,6,0,21,'2010-03-11 14:31:26',62,'','2010-03-12 08:24:46',64,0,'0000-00-00 00:00:00','2010-03-11 14:31:02','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',2,0,16,'','',0,3088),(54,'Pere jean Marie Chami','','{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/shahadat/PerejeanMarieChami.wmv}&nbsp; ','',1,6,0,21,'2010-03-11 14:32:00',62,'','2010-03-12 08:25:02',64,0,'0000-00-00 00:00:00','2010-03-11 14:31:36','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',2,0,17,'','',0,3956),(55,'Rita Boutros','','{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/shahadat/RitaBoutros.wmv}&nbsp; ','',1,6,0,21,'2010-03-11 14:32:31',62,'','2010-03-12 08:25:52',64,0,'0000-00-00 00:00:00','2010-03-11 14:32:09','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',2,0,18,'','',0,3791),(56,'Yolla Abdelnour','','{moseasymedia media=http://eliekarouny.com/index/images/stories/videos/shahadat/YollaAbdelnour.wmv}&nbsp; ','',1,6,0,21,'2010-03-11 14:33:03',62,'','2010-03-12 08:26:03',64,0,'0000-00-00 00:00:00','2010-03-11 14:32:42','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',2,0,19,'','',0,3142),(57,'Albalad newspaper issue number 2185, Thursday Apr 1st, 2010','','<!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>AR-SA</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:DontVertAlignCellWithSp/> <w:DontBreakConstrainedForcedTables/> <w:DontVertAlignInTxbx/> <w:Word11KerningPairs/> <w:CachedColBalance/> </w:Compatibility> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles> </xml><![endif]--> <!-- /* Font Definitions */ @font-face {font-family:\"Cambria Math\"; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:1; mso-generic-font-family:roman; mso-font-format:other; mso-font-pitch:variable; mso-font-signature:0 0 0 0 0 0;} @font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4; mso-font-charset:0; mso-generic-font-family:swiss; mso-font-pitch:variable; mso-font-signature:-1610611985 1073750139 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:\"\"; margin-top:0in; margin-right:0in; margin-bottom:10.0pt; margin-left:0in; line-height:115%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:\"Calibri\",\"sans-serif\"; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:Calibri; mso-fareast-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:Arial; mso-bidi-theme-font:minor-bidi;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:Calibri; mso-fareast-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:Arial; mso-bidi-theme-font:minor-bidi;} .MsoPapDefault {mso-style-type:export-only; margin-bottom:10.0pt; line-height:115%;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --> <!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable {mso-style-name:\"Table Normal\"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-qformat:yes; mso-style-parent:\"\"; mso-padding-alt:0in 5.4pt 0in 5.4pt; mso-para-margin-top:0in; mso-para-margin-right:0in; mso-para-margin-bottom:10.0pt; mso-para-margin-left:0in; line-height:115%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:\"Calibri\",\"sans-serif\"; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin;} </style> <![endif]--> <p style=\"margin-bottom: 6pt; text-align: center; line-height: normal\" class=\"MsoNormal\" align=\"center\"><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>AR-SA</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:DontVertAlignCellWithSp/> <w:DontBreakConstrainedForcedTables/> <w:DontVertAlignInTxbx/> <w:Word11KerningPairs/> <w:CachedColBalance/> </w:Compatibility> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles> </xml><![endif]--> <!-- /* Font Definitions */ @font-face {font-family:\"Cambria Math\"; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:1; mso-generic-font-family:roman; mso-font-format:other; mso-font-pitch:variable; mso-font-signature:0 0 0 0 0 0;} @font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4; mso-font-charset:0; mso-generic-font-family:swiss; mso-font-pitch:variable; mso-font-signature:-1610611985 1073750139 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:\"\"; margin-top:0in; margin-right:0in; margin-bottom:10.0pt; margin-left:0in; line-height:115%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:\"Calibri\",\"sans-serif\"; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:Calibri; mso-fareast-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:Arial; mso-bidi-theme-font:minor-bidi;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:Calibri; mso-fareast-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:Arial; mso-bidi-theme-font:minor-bidi;} .MsoPapDefault {mso-style-type:export-only; margin-bottom:10.0pt; line-height:115%;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --> <!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable {mso-style-name:\"Table Normal\"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-qformat:yes; mso-style-parent:\"\"; mso-padding-alt:0in 5.4pt 0in 5.4pt; mso-para-margin-top:0in; mso-para-margin-right:0in; mso-para-margin-bottom:10.0pt; mso-para-margin-left:0in; line-height:115%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:\"Calibri\",\"sans-serif\"; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin;} </style> <![endif]--> </p><p align=\"center\"><strong><span style=\"font-size: 13.5pt; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;; color: #ea1313\">&#1575;&#1610;&#1604;&#1610; &#1602;&#1585;&#1593;&#1608;&#1606;&#1610;... &#1581;&#1610;&#1606; &#1578;&#1605;&#1587;&#1610; &#1585;&#1587;&#1575;&#1604;&#1577; &#1575;&#1604;&#1585;&#1608;&#1581; &#1581;&#1602;&#1610;&#1602;&#1577; &#1605;&#1580;&#1585;&#1617;&#1583;&#1577;</span></strong><strong></strong> <strong></strong></p><div align=\"right\"><strong></strong></div><div align=\"right\"> </div><p style=\"margin-bottom: 7.5pt; text-align: right; line-height: normal; direction: rtl; unicode-bidi: embed\" dir=\"RTL\" class=\"MsoNormal\" align=\"right\"><span style=\"font-size: 13.5pt; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;; color: #444444\">&#1576;&#1610;&#1606; &quot;&#1606;&#1608;&#1585; &#1605;&#1606; &#1575;&#1604;&#1587;&#1605;&#1575;&#1569;&quot; &#1608;&quot;&#1604;&#1606; &#1610;&#1587;&#1602;&#1591; &#1575;&#1604;&#1587;&#1610;&#1601; &#1605;&#1606; &#1610;&#1583;&#1610;&quot; &#1578;&#1578;&#1580;&#1604;&#1609; &#1593;&#1592;&#1605;&#1577; &#1575;&#1604;&#1585;&#1608;&#1581; &#1601;&#1610; &#1604;&#1581;&#1592;&#1577; &#1576;&#1588;&#1585;&#1610;&#1577; &#1578;&#1578;&#1608;&#1602; &#1575;&#1604;&#1609; &#1605;&#1580;&#1583; &#1575;&#1604;&#1607;&#1610;. &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1604;&#1585;&#1575;&#1581;&#1604; &#1575;&#1610;&#1604;&#1610; &#1582;&#1604;&#1610;&#1604; &#1602;&#1585;&#1593;&#1608;&#1606;&#1610; &#1605;&#1579;&#1575;&#1604; &#1593;&#1604;&#1609; &#1605;&#1583;&#1609; &#1575;&#1605;&#1578;&#1586;&#1575;&#1580; &#1575;&#1604;&#1580;&#1608;&#1607;&#1585; &#1575;&#1604;&#1585;&#1608;&#1581;&#1610; &#1601;&#1610; &#1581;&#1610;&#1575;&#1577; &#1575;&#1604;&#1575;&#1606;&#1587;&#1575;&#1606; &#1576;&#1575;&#1604;&#1606;&#1601;&#1587; &#1575;&#1604;&#1582;&#1575;&#1604;&#1583;&#1577; &#1608;&#1575;&#1604;&#1584;&#1575;&#1603;&#1585;&#1577; &#1575;&#1604;&#1578;&#1610; &#1604;&#1575; &#1578;&#1605;&#1608;&#1578;. &#1610;&#1593;&#1608;&#1583; &#1575;&#1610;&#1604;&#1610; &#1601;&#1610; &#1603;&#1604; &#1605;&#1585;&#1577; &#1575;&#1604;&#1609; &#1571;&#1605;&#1607; &#1608;&#1571;&#1582;&#1578;&#1607;&#1548; &#1608;&#1604;&#1610;&#1587; &#1601;&#1602;&#1591; &#1601;&#1610; &#1575;&#1604;&#1571;&#1581;&#1604;&#1575;&#1605; &#1571;&#1608; &#1575;&#1604;&#1571;&#1601;&#1603;&#1575;&#1585; &#1576;&#1604; &#1601;&#1610; &#1575;&#1604;&#1601;&#1593;&#1604; &#1575;&#1604;&#1605;&#1604;&#1605;&#1608;&#1587;&#1548; &#1575;&#1604;&#1584;&#1610; &#1604;&#1606; &#1610;&#1602;&#1583;&#1585; &#1593;&#1602;&#1604; &#1593;&#1604;&#1609; &#1578;&#1601;&#1587;&#1610;&#1585;&#1607;&#1548; &#1608;&#1604;&#1575; &#1593;&#1610;&#1606; &#1593;&#1604;&#1609; &#1608;&#1589;&#1601;&#1607;. </span></p><div align=\"right\"> </div>','<div align=\"right\"><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves/> <w:TrackFormatting/> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF/> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>AR-SA</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> <w:SplitPgBreakAndParaMark/> <w:DontVertAlignCellWithSp/> <w:DontBreakConstrainedForcedTables/> <w:DontVertAlignInTxbx/> <w:Word11KerningPairs/> <w:CachedColBalance/> </w:Compatibility> <m:mathPr> <m:mathFont m:val=\"Cambria Math\"/> <m:brkBin m:val=\"before\"/> <m:brkBinSub m:val=\"--\"/> <m:smallFrac m:val=\"off\"/> <m:dispDef/> <m:lMargin m:val=\"0\"/> <m:rMargin m:val=\"0\"/> <m:defJc m:val=\"centerGroup\"/> <m:wrapIndent m:val=\"1440\"/> <m:intLim m:val=\"subSup\"/> <m:naryLim m:val=\"undOvr\"/> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\"> <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/> <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/> <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/> <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/> <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/> <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/> <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/> <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/> <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/> <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/> <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/> <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/> <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/> <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/> <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/> <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/> <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/> <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/> <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/> <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/> <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/> <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/> </w:LatentStyles> </xml><![endif]--> <!-- /* Font Definitions */ @font-face {font-family:\"Cambria Math\"; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:1; mso-generic-font-family:roman; mso-font-format:other; mso-font-pitch:variable; mso-font-signature:0 0 0 0 0 0;} @font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4; mso-font-charset:0; mso-generic-font-family:swiss; mso-font-pitch:variable; mso-font-signature:-1610611985 1073750139 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:\"\"; margin-top:0in; margin-right:0in; margin-bottom:10.0pt; margin-left:0in; line-height:115%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:\"Calibri\",\"sans-serif\"; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:Calibri; mso-fareast-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:Arial; mso-bidi-theme-font:minor-bidi;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:Calibri; mso-fareast-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:Arial; mso-bidi-theme-font:minor-bidi;} .MsoPapDefault {mso-style-type:export-only; margin-bottom:10.0pt; line-height:115%;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --> <!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable {mso-style-name:\"Table Normal\"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-qformat:yes; mso-style-parent:\"\"; mso-padding-alt:0in 5.4pt 0in 5.4pt; mso-para-margin-top:0in; mso-para-margin-right:0in; mso-para-margin-bottom:10.0pt; mso-para-margin-left:0in; line-height:115%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:\"Calibri\",\"sans-serif\"; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin;} </style> <![endif]--> </div><p style=\"margin-bottom: 7.5pt; text-align: right; line-height: normal; direction: rtl; unicode-bidi: embed\" dir=\"RTL\" class=\"MsoNormal\" align=\"right\"><span style=\"font-size: 13.5pt; line-height: 115%; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;; color: #444444\">&#1575;&#1604;&#1578;&#1585;&#1583;&#1583; &#1587;&#1605;&#1577; &#1575;&#1604;&#1603;&#1579;&#1610;&#1585;&#1610;&#1606; &#1601;&#1610; &#1593;&#1575;&#1604;&#1605; &#1575;&#1604;&#1605;&#1575;&#1608;&#1585;&#1575;&#1574;&#1610;&#1575;&#1578; &#1571;&#1608; &#1593;&#1575;&#1604;&#1605; &#1575;&#1604;&#1585;&#1608;&#1581;&#1575;&#1606;&#1610;&#1575;&#1578;&#1548; &#1604;&#1603;&#1606; &#1605;&#1575; &#1575;&#1606; &#1578;&#1604;&#1580;&#1607; &#1581;&#1578;&#1609; &#1578;&#1580;&#1583; &#1606;&#1601;&#1587;&#1603; &#1601;&#1610; &#1583;&#1606;&#1610;&#1575; &#1575;&#1582;&#1585;&#1609;&#1548; &#1608;&#1601;&#1610; &#1603;&#1604; &#1605;&#1585;&#1577; &#1578;&#1582;&#1585;&#1580; &#1605;&#1606;&#1607; &#1578;&#1585;&#1609; &#1571;&#1606;&#1603; &#1578;&#1593;&#1604;&#1605;&#1578; &#1588;&#1610;&#1574;&#1575; &#1580;&#1583;&#1610;&#1583;&#1575;&#1548; &#1604;&#1575; &#1593;&#1604;&#1575;&#1602;&#1577; &#1604;&#1604;&#1605;&#1575;&#1583;&#1577; &#1576;&#1607;. &#1604;&#1610;&#1587; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610; &#1602;&#1585;&#1593;&#1608;&#1606;&#1610; &#1602;&#1583;&#1610;&#1587;&#1575; &#1585;&#1601;&#1593;&#1578;&#1607; &#1575;&#1604;&#1603;&#1606;&#1610;&#1587;&#1577;&#1548; &#1604;&#1603;&#1606;&#1607;&#1575; &#1578;&#1602;&#1583;&#1617;&#1585;&#1607; &#1578;&#1605;&#1575;&#1605;&#1575; &#1588;&#1571;&#1606;&#1607; &#1588;&#1571;&#1606; &#1601;&#1578;&#1581;&#1610; &#1576;&#1604;&#1583;&#1610;&#1548; &#1571;&#1608; &#1571;&#1610; &#1605;&#1575; &#1575;&#1578;&#1601;&#1602; &#1593;&#1604;&#1609;&nbsp; &#1578;&#1587;&#1605;&#1610;&#1578;&#1607; &#1576;&#1600;&quot;&#1575;&#1604;&#1593;&#1604;&#1605;&#1575;&#1606;&#1610; &#1575;&#1604;&#1605;&#1587;&#1610;&#1581;&#1610;&quot;. &#1608;&#1604;&#1583; &#1602;&#1585;&#1593;&#1608;&#1606;&#1610; &#1601;&#1610; &#1575;&#1604;&#1605;&#1593;&#1604;&#1602;&#1577; - &#1586;&#1581;&#1604;&#1577; &#1601;&#1610; &#1575;&#1604;&#1593;&#1575;&#1605; 1964&#1548; &#1604;&#1571;&#1576; &#1608;&#1571;&#1605; &#1601;&#1575;&#1590;&#1604;&#1610;&#1606;&#1548; &#1608;&#1578;&#1585;&#1576;&#1609; &#1608;&#1571;&#1582;&#1578;&#1607; &#1601;&#1610; &#1603;&#1606;&#1601;&#1607;&#1605;&#1575;&#1548; &#1583;&#1585;&#1587; &#1575;&#1604;&#1591;&#1576;&#1548; &#1604;&#1593;&#1588;&#1602;&#1607; &#1575;&#1604;&#1575;&#1606;&#1587;&#1575;&#1606;&#1610;&#1577;. &#1608;&#1603;&#1575;&#1606; &#1588;&#1575;&#1576;&#1575;&#1611; &#1605;&#1605;&#1610;&#1617;&#1586;&#1575; &#1605;&#1572;&#1605;&#1606;&#1575;&#1611; &#1610;&#1586;&#1608;&#1585; &#1575;&#1604;&#1603;&#1606;&#1610;&#1587;&#1577; &#1576;&#1575;&#1587;&#1578;&#1605;&#1585;&#1575;&#1585; &#1608;&#1610;&#1588;&#1575;&#1585;&#1603; &#1601;&#1610; &#1575;&#1604;&#1602;&#1583;&#1575;&#1587; &#1575;&#1604;&#1575;&#1604;&#1607;&#1610; &#1576;&#1603;&#1575;&#1605;&#1604;&#1607; &#1608;&#1602;&#1608;&#1601;&#1575;&#1611; &#1601;&#1610; &#1570;&#1582;&#1585; &#1575;&#1604;&#1603;&#1606;&#1610;&#1587;&#1577; &#1608;&#1610;&#1589;&#1604;&#1610; &#1576;&#1603;&#1604; &#1580;&#1608;&#1575;&#1585;&#1581;&#1607; &#1608;&#1605;&#1606; &#1603;&#1604; &#1602;&#1604;&#1576;&#1607;. &#1604;&#1605; &#1610;&#1603;&#1606; &#1575;&#1610;&#1604;&#1610; &#1604;&#1610;&#1606;&#1594;&#1605;&#1587; &#1605;&#1593; &#1575;&#1604;&#1593;&#1583;&#1610;&#1583; &#1605;&#1606; &#1571;&#1602;&#1585;&#1575;&#1606;&#1607; &#1601;&#1610; &#1602;&#1604;&#1576; &#1575;&#1604;&#1581;&#1585;&#1576; &#1575;&#1604;&#1590;&#1585;&#1608;&#1587; &#1575;&#1604;&#1578;&#1610; &#1593;&#1589;&#1601;&#1578; &#1576;&#1604;&#1576;&#1606;&#1575;&#1606;&#1548; &#1604;&#1603;&#1606;&#1607; &#1570;&#1605;&#1606; &#1576;&#1580;&#1608;&#1607;&#1585; &#1585;&#1587;&#1575;&#1604;&#1577; &#1575;&#1604;&#1604;&#1607; &#1601;&#1610; &#1581;&#1610;&#1575;&#1578;&#1607;. &#1608;&#1603;&#1575;&#1606; &#1605;&#1579;&#1575;&#1604;&#1575; &#1593;&#1604;&#1609; &#1571;&#1606; &#1604;&#1603;&#1604; &#1575;&#1606;&#1587;&#1575;&#1606; &#1601;&#1610; &#1575;&#1604;&#1583;&#1606;&#1610;&#1575; &#1585;&#1587;&#1575;&#1604;&#1577;&#1548; &#1604;&#1571;&#1610; &#1583;&#1610;&#1606; &#1608;&#1591;&#1575;&#1574;&#1601;&#1577; &#1608;&#1602;&#1608;&#1605;&#1610;&#1577; &#1575;&#1606;&#1578;&#1605;&#1609;&#1548; &#1608;&#1604;&#1575; &#1575;&#1581;&#1583; &#1610;&#1583;&#1585;&#1610; &#1605;&#1578;&#1609; &#1578;&#1576;&#1583;&#1571; &#1575;&#1604;&#1585;&#1587;&#1575;&#1604;&#1577; &#1593;&#1605;&#1604;&#1607;&#1575;&#1548; &#1608;&#1604;&#1575; &#1571;&#1581;&#1583; &#1610;&#1587;&#1578;&#1591;&#1610;&#1593; &#1575;&#1606; &#1610;&#1581;&#1583;&#1583; &#1605;&#1575;&#1607;&#1610;&#1578;&#1607;&#1575;&#1548; &#1601;&#1610; &#1604;&#1581;&#1592;&#1577; &#1605;&#1575;&#1548; &#1601;&#1601;&#1610; &#1576;&#1593;&#1590; &#1575;&#1604;&#1571;&#1581;&#1610;&#1575;&#1606;&#1548; &#1575;&#1606; &#1605;&#1575; &#1610;&#1592;&#1606;&#1607; &#1575;&#1604;&#1575;&#1606;&#1587;&#1575;&#1606; &#1582;&#1610;&#1575;&#1585;&#1575; &#1602;&#1583; &#1610;&#1603;&#1608;&#1606; &#1578;&#1587;&#1610;&#1610;&#1585;&#1575; &#1608;&#1575;&#1604;&#1593;&#1603;&#1587; &#1589;&#1581;&#1610;&#1581;</span> </p><p style=\"margin-bottom: 7.5pt; text-align: right; line-height: normal; direction: rtl; unicode-bidi: embed\" dir=\"RTL\" class=\"MsoNormal\" align=\"right\"><strong><span style=\"font-size: 13.5pt; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;; color: #444444\">&#1575;&#1604;&#1603;&#1578;&#1575;&#1576;&#1577;</span></strong></p><div align=\"right\"> </div><p style=\"margin-bottom: 7.5pt; text-align: right; line-height: normal; direction: rtl; unicode-bidi: embed\" dir=\"RTL\" class=\"MsoNormal\" align=\"right\"><span style=\"font-size: 13.5pt; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;; color: #444444\">&#1578;&#1602;&#1608;&#1604; &#1575;&#1582;&#1578; &#1575;&#1610;&#1604;&#1610; &#1604;&#1610;&#1606;&#1575; &quot;&#1578;&#1601;&#1578;&#1602;&#1578; &#1604;&#1583;&#1610;&#1607; &#1605;&#1608;&#1607;&#1576;&#1577; &#1575;&#1604;&#1603;&#1578;&#1575;&#1576;&#1577; &#1608;&#1607;&#1608; &#1604;&#1605; &#1610;&#1586;&#1604; &#1610;&#1575;&#1601;&#1593;&#1575;&#1611;. &#1601;&#1576;&#1583;&#1571; &#1610;&#1603;&#1578;&#1576; &#1601;&#1610; &#1575;&#1604;&#1604;&#1610;&#1575;&#1604;&#1610; &#1610;&#1578;&#1571;&#1605;&#1604; &#1608;&#1610;&#1582;&#1591; &#1582;&#1608;&#1575;&#1591;&#1585;&#1607; &#1608;&#1575;&#1601;&#1603;&#1575;&#1585;&#1607; &#1608;&#1585;&#1572;&#1610;&#1575;&#1607; &#1576;&#1593;&#1590; &#1575;&#1604;&#1575;&#1581;&#1610;&#1575;&#1606; &#1593;&#1604;&#1609; &#1583;&#1601;&#1575;&#1578;&#1585; &#1575;&#1604;&#1605;&#1583;&#1585;&#1587;&#1577; &#1608;&#1576;&#1593;&#1590;&#1607;&#1575; &#1575;&#1604;&#1570;&#1582;&#1585; &#1593;&#1604;&#1609; &#1575;&#1608;&#1585;&#1575;&#1602; &#1582;&#1575;&#1589;&#1577;. &#1608;&#1593;&#1604;&#1609; &#1575;&#1604;&#1585;&#1594;&#1605; &#1605;&#1606; &#1605;&#1581;&#1576;&#1578;&#1607; &#1608;&#1593;&#1591;&#1601;&#1607; &#1593;&#1604;&#1610;&#1617; &#1604;&#1605; &#1610;&#1603;&#1606; &#1610;&#1587;&#1605;&#1581; &#1604;&#1610; &#1576;&#1575;&#1604;&#1575;&#1591;&#1604;&#1575;&#1593; &#1593;&#1604;&#1609; &#1603;&#1578;&#1575;&#1576;&#1575;&#1578;&#1607;&#1548; &#1608;&#1603;&#1575;&#1606; &#1610;&#1585;&#1583;&#1617;&#1583; &#1593;&#1604;&#1609; &#1605;&#1587;&#1575;&#1605;&#1593;&#1610; &quot;&#1611;&#1594;&#1610;&#1585; &#1605;&#1587;&#1605;&#1608;&#1581; &#1575;&#1606; &#1578;&#1585;&#1610; &#1607;&#1584;&#1607; &#1575;&#1604;&#1603;&#1578;&#1575;&#1576;&#1575;&#1578; &#1602;&#1576;&#1604; &#1575;&#1606; &#1571;&#1605;&#1608;&#1578;&#1548; &#1605;&#1575; &#1576;&#1603;&#1608;&#1606; &#1605;&#1606;&#1610;&#1581; &#1575;&#1584;&#1575; &#1585;&#1571;&#1610;&#1578;&#1607;&#1575; &#1602;&#1576;&#1604;...&quot; &#1608;&#1602;&#1583; &#1581;&#1575;&#1608;&#1604;&#1578; &#1605;&#1585;&#1577; &#1575;&#1603;&#1578;&#1588;&#1575;&#1601; &#1605;&#1575; &#1603;&#1575;&#1606;&#1578; &#1578;&#1590;&#1605;&#1607; &#1578;&#1604;&#1603; &#1575;&#1604;&#1575;&#1608;&#1585;&#1575;&#1602; &#1575;&#1604;&#1605;&#1603;&#1583;&#1617;&#1587;&#1577; &#1608;&#1593;&#1585;&#1601; &#1576;&#1575;&#1604;&#1571;&#1605;&#1585; &#1601;&#1594;&#1610;&#1585; &#1604;&#1607;&#1575; &#1605;&#1603;&#1575;&#1606;&#1607;&#1575;. &#1601;&#1604;&#1605; &#1575;&#1581;&#1575;&#1608;&#1604; &#1605;&#1585;&#1577; &#1579;&#1575;&#1606;&#1610;&#1577;&quot;. &#1602;&#1583; &#1578;&#1603;&#1608;&#1606; &#1578;&#1604;&#1603; &#1575;&#1604;&#1604;&#1581;&#1592;&#1575;&#1578; &#1605;&#1606; &#1571;&#1576;&#1588;&#1593; &#1605;&#1575; &#1578;&#1587;&#1605;&#1593;&#1607; &#1571;&#1582;&#1578;&#1548;&nbsp;&#1604;&#1603;&#1606;&#1607;&#1575; &#1605;&#1606; &#1571;&#1585;&#1608;&#1593; &#1605;&#1575; &#1610;&#1602;&#1608;&#1604;&#1607; &#1575;&#1604;&#1571;&#1582;&#1548; &#1573;&#1584; &#1603;&#1604;&#1605;&#1575; &#1603;&#1575;&#1606;&#1578; &#1575;&#1604;&#1593;&#1604;&#1575;&#1602;&#1577; &#1605;&#1593; &#1575;&#1604;&#1604;&#1607; &#1605;&#1605;&#1610;&#1586;&#1577;&#1548; &#1603;&#1604;&#1605;&#1575; &#1588;&#1593;&#1585; &#1575;&#1604;&#1575;&#1606;&#1587;&#1575;&#1606; &#1576;&#1576;&#1593;&#1583;&#1607; &#1593;&#1606; &#1575;&#1604;&#1583;&#1606;&#1610;&#1608;&#1610;&#1575;&#1578;&#1548;&nbsp;&#1578;&#1604;&#1603; &#1575;&#1604;&#1581;&#1602;&#1575;&#1574;&#1602; &#1610;&#1583;&#1585;&#1603; &#1603;&#1606;&#1607;&#1607;&#1575; &#1575;&#1604;&#1603;&#1607;&#1606;&#1577; &#1608;&#1575;&#1604;&#1575;&#1603;&#1604;&#1610;&#1585;&#1608;&#1587;.</span></p><div align=\"right\"> </div><p style=\"margin-bottom: 7.5pt; text-align: right; line-height: normal; direction: rtl; unicode-bidi: embed\" dir=\"RTL\" class=\"MsoNormal\" align=\"right\"><span style=\"font-size: 13.5pt; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;; color: #444444\">&#1575;&#1604;&#1585;&#1581;&#1604;&#1577;</span></p><div align=\"right\"> </div><p style=\"margin-bottom: 7.5pt; text-align: right; line-height: normal; direction: rtl; unicode-bidi: embed\" dir=\"RTL\" class=\"MsoNormal\" align=\"right\"><span style=\"font-size: 13.5pt; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;; color: #444444\">&#1576;&#1583;&#1571;&#1578; &#1585;&#1581;&#1604;&#1577; &#1573;&#1610;&#1604;&#1610; &#1575;&#1604;&#1585;&#1608;&#1581;&#1610;&#1577; &#1575;&#1604;&#1593;&#1575;&#1605; 1980 &#1593;&#1606;&#1583;&#1605;&#1575; &#1591;&#1604;&#1576; &#1605;&#1606; &#1575;&#1604;&#1604;&#1607; &#1575;&#1606; &#1610;&#1571;&#1582;&#1584;&#1607; &#1575;&#1604;&#1610;&#1607; &#1605;&#1578;&#1590;&#1585;&#1593;&#1575;&#1611; &#1605;&#1606; &#1603;&#1604; &#1602;&#1604;&#1576;&#1607; &#1608;&#1585;&#1608;&#1581;&#1607; &#1575;&#1606; &#1610;&#1593;&#1608;&#1583; &#1575;&#1604;&#1610;&#1607; &#1608;&#1575;&#1584; &#1576;&#1575;&#1604;&#1585;&#1594;&#1576;&#1577; &#1578;&#1578;&#1605;&#1575;&#1607;&#1609; &#1589;&#1604;&#1575;&#1577; &quot;&#1585;&#1601;&#1593;&#1578; &#1573;&#1604;&#1610;&#1603; &#1575;&#1576;&#1578;&#1607;&#1575;&#1604;&#1610; &#1601;&#1575;&#1587;&#1578;&#1580;&#1576;&#1548; &#1571;&#1583;&#1617;&#1610;&#1578; &#1573;&#1604;&#1610;&#1603; &#1608;&#1580;&#1608;&#1583;&#1610; &#1606;&#1601;&#1582;&#1578; &#1601;&#1610;&#1617; &#1575;&#1604;&#1585;&#1610;&#1581;&#1548; &#1571;&#1605;&#1606;&#1578;&#1603; &#1581;&#1576;&#1610; &#1608;&#1591;&#1585;&#1578; &#1575;&#1604;&#1610;&#1603; &#1582;&#1584;&#1606;&#1610; &#1576;&#1610;&#1606; &#1610;&#1583;&#1610;&#1603;...&quot;. &#1608;&#1603;&#1571;&#1606;&#1607; &#1610;&#1585;&#1580;&#1608; &#1575;&#1604;&#1604;&#1607; &#1571;&#1606; &#1610;&#1571;&#1582;&#1584;&#1607; &#1575;&#1604;&#1609; &#1604;&#1583;&#1606;&#1607; &quot;&#1575;&#1604;&#1587;&#1605;&#1575;&#1569; &#1605;&#1605;&#1604;&#1603;&#1578;&#1610; &#1601;&#1585;&#1583;&#1617;&#1606;&#1610; &#1571;&#1576;&#1578;&#1548; &#1602;&#1583; &#1593;&#1575;&#1583; &#1610;&#1605;&#1604;&#1572;&#1606;&#1610; &#1575;&#1604;&#1588;&#1608;&#1602;&#1548; &#1607;&#1606;&#1575;&#1603; &#1601;&#1610; &#1608;&#1591;&#1606;&#1610; &#1605;&#1608;&#1575;&#1587;&#1605; &#1575;&#1604;&#1601;&#1585;&#1581;&#1548; &#1608;&#1601;&#1578;&#1606;&#1577; &#1578;&#1593;&#1583; &#1575;&#1604;&#1575;&#1606;&#1587;&#1575;&#1606; &#1576;&#1575;&#1604;&#1587;&#1617;&#1593;&#1577;...&quot;. &#1608;&#1601;&#1610; 24 &#1603;&#1575;&#1606;&#1608;&#1606; &#1575;&#1604;&#1575;&#1608;&#1604;1981 &#1585;&#1571;&#1609; &#1575;&#1604;&#1580;&#1576;&#1604; &#1575;&#1604;&#1605;&#1602;&#1583;&#1617;&#1587; &#1608;&#1605;&#1606; &#1608;&#1585;&#1575;&#1574;&#1607; &#1606;&#1608;&#1585;&#1575; &#1608;&#1571;&#1580;&#1606;&#1581;&#1577; &#1576;&#1610;&#1590;&#1575;&#1569; &#1593;&#1604;&#1609; &#1593;&#1604;&#1608;&#1548; &#1601;&#1602;&#1583;&#1617;&#1587; &#1606;&#1601;&#1587;&#1607; &#1608;&#1576;&#1583;&#1571; &#1585;&#1581;&#1604;&#1577; &#1575;&#1604;&#1575;&#1587;&#1578;&#1593;&#1583;&#1575;&#1583; &#1604;&#1604;&#1593;&#1608;&#1583;&#1577; &#1575;&#1604;&#1609; &#1576;&#1575;&#1585;&#1610;&#1607;. &#1608;&#1578;&#1590;&#1610;&#1601; &#1604;&#1610;&#1606;&#1575; &quot;&#1608;&#1601;&#1610; &#1575;&#1604;&#1578;&#1575;&#1587;&#1593; &#1605;&#1606; &#1588;&#1607;&#1585; &#1578;&#1588;&#1585;&#1610;&#1606; &#1575;&#1604;&#1575;&#1608;&#1604; &#1605;&#1606; &#1575;&#1604;&#1593;&#1575;&#1605; </span><span style=\"font-size: 13.5pt; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;; color: #444444\">&#1777;&#1785;&#1784;</span><span style=\"font-size: 13.5pt; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;; color: #444444\">&#1634; &#1592;&#1607;&#1585;&#1578; &#1604;&#1607; &#1585;&#1572;&#1610;&#1577; &#1578;&#1606;&#1576;&#1574;&#1607; &#1576;&#1587;&#1575;&#1593;&#1577; &#1575;&#1606;&#1578;&#1602;&#1575;&#1604;&#1607; &#1575;&#1604;&#1609; &#1580;&#1608;&#1575;&#1585; &#1585;&#1576;&#1617;&#1607;&#1548; &#1576;&#1604; &#1575;&#1606;&#1607; &#1593;&#1585;&#1601; &#1575;&#1604;&#1578;&#1575;&#1585;&#1610;&#1582; &#1575;&#1584; &#1602;&#1575;&#1604; &#1604;&#1610; &quot;&#1571;&#1606;&#1575; &#1575;&#1593;&#1585;&#1601; &#1575;&#1604;&#1578;&#1575;&#1585;&#1610;&#1582; &#1575;&#1604;&#1584;&#1610; &#1587;&#1571;&#1605;&#1608;&#1578; &#1601;&#1610;&#1607;.. &#1608;&#1575;&#1593;&#1585;&#1601; &#1603;&#1604;&#1617; &#1575;&#1604;&#1578;&#1608;&#1575;&#1585;&#1610;&#1582; ..&quot; &#1608;&#1605;&#1606;&#1584; &#1584;&#1604;&#1603; &#1575;&#1604;&#1581;&#1610;&#1606; &#1578;&#1593;&#1575;&#1592;&#1605;&#1578; &#1585;&#1594;&#1576;&#1578;&#1607; &#1601;&#1610; &#1575;&#1604;&#1578;&#1608;&#1581;&#1617;&#1583; &#1576;&#1575;&#1604;&#1604;&#1607; &#1608;&#1575;&#1585;&#1575;&#1583; &#1606;&#1588;&#1585; &#1587;&#1610;&#1585;&#1578;&#1607; &#1601;&#1610; &#1575;&#1604;&#1575;&#1585;&#1590;: &quot;&#1571;&#1585;&#1610;&#1583;&nbsp; &#1601;&#1610; &#1575;&#1604;&#1571;&#1585;&#1590; &#1575;&#1606;&nbsp;&#1575;&#1606;&#1588;&#1585; &#1587;&#1610;&#1585;&#1578;&#1610; &#1608;&#1575;&#1591;&#1608;&#1601; &#1581;&#1604;&#1602;&#1575;&#1578; &#1575;&#1604;&#1576;&#1610;&#1608;&#1578; &#1608;&#1575;&#1588;&#1604;&#1581; &#1608;&#1585;&#1583;&#1575;&#1611;...&quot;.</span></p><div align=\"right\"> </div><p style=\"margin-bottom: 7.5pt; text-align: right; line-height: normal; direction: rtl; unicode-bidi: embed\" dir=\"RTL\" class=\"MsoNormal\" align=\"right\"><span style=\"font-size: 13.5pt; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;; color: #444444\">&#1575;&#1604;&#1581;&#1610;&#1575;&#1577; &#1575;&#1604;&#1582;&#1575;&#1604;&#1583;&#1577;</span></p><div align=\"right\"> </div><p style=\"margin-bottom: 7.5pt; text-align: right; line-height: normal; direction: rtl; unicode-bidi: embed\" dir=\"RTL\" class=\"MsoNormal\" align=\"right\"><span style=\"font-size: 13.5pt; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;; color: #444444\">&#1604;&#1605; &#1610;&#1582;&#1601; &#1575;&#1604;&#1605;&#1608;&#1578; &#1608;&#1602;&#1575;&#1604; &quot;&#1575;&#1604;&#1581;&#1602; &#1610;&#1602;&#1575;&#1604; &#1575;&#1606;&#1606;&#1575; &#1604;&#1575; &#1606;&#1583;&#1585;&#1603; &#1594;&#1575;&#1610;&#1577; &#1575;&#1604;&#1604;&#1607; &#1601;&#1610;&#1606;&#1575; &#1573;&#1604;&#1575; &#1576;&#1575;&#1604;&#1573;&#1610;&#1605;&#1575;&#1606; &#1608;&#1576;&#1575;&#1604;&#1585;&#1608;&#1581; &#1575;&#1604;&#1589;&#1575;&#1585;&#1582; &#1601;&#1610;&#1606;&#1575; &#1571;&#1576;&#1575;&#1606;&#1575; &#1575;&#1604;&#1584;&#1610; &#1601;&#1610; &#1575;&#1604;&#1587;&#1605;&#1608;&#1575;&#1578;&#1548; &#1601;&#1607;&#1604; &#1571;&#1602;&#1585;&#1576; &#1573;&#1604;&#1610;&#1606;&#1575; &#1605;&#1606; &#1602;&#1604;&#1576; &#1571;&#1576;&#1610;&#1606;&#1575;&#1567; &#1601;&#1605;&#1575;&#1584;&#1575; &#1606;&#1582;&#1588;&#1609; &#1576;&#1593;&#1583;&#1567; &#1575;&#1604;&#1581;&#1586;&#1606;...&#1567; &#1604;&#1610;&#1587; &#1579;&#1605;&#1577; &#1594;&#1610;&#1585; &#1575;&#1604;&#1601;&#1585;&#1581; &#1581;&#1610;&#1606; &#1606;&#1604;&#1602;&#1610; &#1576;&#1585;&#1571;&#1587;&#1606;&#1575; &#1576;&#1610;&#1606; &#1584;&#1585;&#1575;&#1593;&#1610; &#1571;&#1576;&#1610;&#1606;&#1575;. &#1575;&#1604;&#1571;&#1604;&#1605;...&#1567; &#1604;&#1610;&#1587; &#1573;&#1604;&#1575; &#1606;&#1575;&#1585;&#1611;&#1575; &#1586;&#1605;&#1606;&#1610;&#1577; &#1578;&#1589;&#1607;&#1585; &#1601;&#1610;&#1606;&#1575; &#1575;&#1604;&#1605;&#1593;&#1583;&#1606; &#1575;&#1604;&#1587;&#1605;&#1575;&#1608;&#1610;. &#1575;&#1604;&#1605;&#1608;&#1578;...&#1567; &#1604;&#1610;&#1587; &#1605;&#1608;&#1578; &#1576;&#1593;&#1583; &#1602;&#1610;&#1575;&#1605;&#1577; &#1575;&#1604;&#1605;&#1587;&#1610;&#1581;. &#1601;&#1605;&#1575;&#1584;&#1575; &#1606;&#1582;&#1588;&#1609; &#1576;&#1593;&#1583;&#1567; &#1575;&#1604;&#1581;&#1602; &#1571;&#1606; &#1605;&#1575; &#1610;&#1580;&#1576; &#1571;&#1606; &#1606;&#1582;&#1588;&#1575;&#1607; &#1607;&#1608; &#1571;&#1606; &#1606;&#1603;&#1608;&#1606; &#1601;&#1610; &#1587;&#1576;&#1575;&#1578; &#1585;&#1608;&#1581;&#1610; &#1601;&#1604;&#1575; &#1606;&#1593;&#1610; &#1573;&#1610;&#1605;&#1575;&#1606;&#1606;&#1575; &#1608;&#1604;&#1575; &#1606;&#1583;&#1585;&#1603; &#1580;&#1608;&#1607;&#1585;&#1606;&#1575; &#1608;&#1606;&#1578;&#1604;&#1607;&#1609; &#1576;&#1575;&#1604;&#1571;&#1576;&#1575;&#1591;&#1610;&#1604;&quot;. &#1608;&#1602;&#1576;&#1610;&#1604; &#1608;&#1601;&#1575;&#1578;&#1607; &#1571;&#1608;&#1589;&#1609; &#1608;&#1575;&#1604;&#1583;&#1578;&#1607; &#1608;&#1575;&#1605;&#1607; &#1571;&#1604;&#1575; &#1578;&#1585;&#1578;&#1583;&#1610;&#1575;&#1606; &#1575;&#1604;&#1571;&#1587;&#1608;&#1583; &#1581;&#1583;&#1575;&#1583;&#1575; &#1593;&#1604;&#1610;&#1607; &quot;&#1610;&#1575; &#1585;&#1576;&#1548; &#1607;&#1576;&nbsp; &#1575;&#1604;&#1575; &#1578;&#1582;&#1585;&#1580; &#1575;&#1605;&#1610; &#1575;&#1608; &#1575;&#1582;&#1578;&#1610;&#1548; &#1575;&#1608; &#1603;&#1604;&#1617; &#1575;&#1604;&#1584;&#1610;&#1606; &#1610;&#1581;&#1586;&#1606;&#1608;&#1606; &#1593;&#1604;&#1610;&#1617;&#1548; &#1576;&#1575;&#1604;&#1605;&#1604;&#1575;&#1576;&#1587; &#1575;&#1604;&#1587;&#1608;&#1583;&#1575;&#1569;&#1548; &#1601;&#1575;&#1606; &#1584;&#1604;&#1603; &#1580;&#1585;&#1581; &#1601;&#1610; &#1575;&#1604;&#1575;&#1610;&#1605;&#1575;&#1606; &#1576;&#1575;&#1604;&#1581;&#1610;&#1575;&#1577; &#1575;&#1604;&#1582;&#1575;&#1604;&#1583;&#1577;&#1548; &#1608;&#1580;&#1585;&#1581; &#1601;&#1610; &#1575;&#1593;&#1605;&#1575;&#1602; &#1585;&#1608;&#1581; &#1578;&#1587;&#1578;&#1602;&#1585; &#1601;&#1610; &#1575;&#1604;&#1604;&#1607; &#1575;&#1604;&#1581;&#1610;&#1617;&quot;.</span></p><div align=\"right\"> </div><p style=\"margin-bottom: 7.5pt; text-align: right; line-height: normal; direction: rtl; unicode-bidi: embed\" dir=\"RTL\" class=\"MsoNormal\" align=\"right\"><span style=\"font-size: 13.5pt; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;; color: #444444\">&#1593;&#1606;&#1583; &#1575;&#1604;&#1605;&#1584;&#1576;&#1581;</span></p><div align=\"right\"> </div><p style=\"margin-bottom: 7.5pt; text-align: right; line-height: normal; direction: rtl; unicode-bidi: embed\" dir=\"RTL\" class=\"MsoNormal\" align=\"right\"><span style=\"font-size: 13.5pt; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;; color: #444444\">&#1602;&#1575;&#1604; &#1575;&#1604;&#1603;&#1579;&#1610;&#1585; &#1582;&#1604;&#1575;&#1604; &#1585;&#1581;&#1604;&#1578;&#1607; &#1593;&#1604;&#1609; &#1575;&#1604;&#1571;&#1585;&#1590; &#1575;&#1605;&#1575; &#1576;&#1593;&#1583;&#1607;&#1575; &#1581;&#1610;&#1579; &#1578;&#1585;&#1603;&#1607;&#1575; &#1575;&#1604;&#1609; &#1585;&#1576;&#1607; &#1601;&#1610; 12 &#1578;&#1588;&#1585;&#1610;&#1606; &#1575;&#1604;&#1579;&#1575;&#1606;&#1610; 1998&#1548; &#1601;&#1573;&#1606; &#1575;&#1604;&#1581;&#1603;&#1575;&#1610;&#1577; &#1571;&#1603;&#1605;&#1604;&#1578; &#1576;&#1580;&#1586;&#1574;&#1607;&#1575; &#1575;&#1604;&#1579;&#1575;&#1606;&#1610;&#1548; &#1601;&#1573;&#1610;&#1604;&#1610; &#1575;&#1604;&#1584;&#1610; &#1593;&#1585;&#1601; &#1575;&#1604;&#1580;&#1605;&#1610;&#1593; &#1575;&#1606;&#1587;&#1575;&#1606;&#1610;&#1578;&#1607; &#1608;&#1578;&#1583;&#1610;&#1606;&#1607;&#1548; &#1608;&#1602;&#1601; &#1601;&#1610; &#1606;&#1607;&#1575;&#1585; &#1582;&#1605;&#1610;&#1587; &#1575;&#1604;&#1571;&#1587;&#1585;&#1575;&#1585; &#1575;&#1604;&#1609; &#1580;&#1575;&#1606;&#1576; &#1575;&#1576; &#1585;&#1575;&#1607;&#1576; - &#1585;&#1574;&#1610;&#1587; &#1583;&#1610;&#1585; - &#1589;&#1583;&#1610;&#1602; &#1602;&#1583;&#1610;&#1605; &#1604;&#1607; &#1603;&#1575;&#1606; &#1610;&#1581;&#1590;&#1617;&#1585; &#1575;&#1604;&#1584;&#1576;&#1610;&#1581;&#1577; &#1575;&#1604;&#1573;&#1604;&#1607;&#1610;&#1577; &#1601;&#1610; &#1603;&#1571;&#1587; &#1575;&#1604;&#1602;&#1585;&#1576;&#1575;&#1606;&#1548; &#1593;&#1604;&#1609; &#1610;&#1605;&#1610;&#1606; &#1575;&#1604;&#1605;&#1575;&#1574;&#1583;&#1577; &#1608;&#1602;&#1583;&#1605;&#1575;&#1607; &#1571;&#1593;&#1604;&#1609; &#1602;&#1604;&#1610;&#1604;&#1575;&#1611; &#1605;&#1606; &#1575;&#1604;&#1571;&#1585;&#1590;&#1548; &#1608;&#1580;&#1607;&#1607; &#1605;&#1590;&#1575;&#1569; &#1610;&#1588;&#1593; &#1606;&#1608;&#1585;&#1575;&#1611; &#1608;&#1607;&#1608; &#1610;&#1585;&#1578;&#1583;&#1610; &#1602;&#1605;&#1610;&#1589;&#1575;&#1611; &#1575;&#1576;&#1610;&#1590; - &#1606;&#1589;&#1601; &#1603;&#1605; - &#1608;&#1576;&#1606;&#1591;&#1604;&#1608;&#1606;&#1575; &#1603;&#1575;&#1603;&#1610;&#1575;&#1611;&#1548; &#1601;&#1576;&#1575;&#1583;&#1585;&#1607; &#1602;&#1575;&#1574;&#1604;&#1575;&#1611; &quot;&#1571;&#1606;&#1575; &#1607;&#1608;&#1606;&#1548; &#1608;&#1608;&#1591;&#1574; &#1575;&#1604;&#1605;&#1608;&#1578; &#1576;&#1575;&#1604;&#1605;&#1608;&#1578;&#1548; &#1575;&#1606;&#1575; &#1581;&#1610;&#1548; &#1575;&#1584;&#1603;&#1585; &#1576;&#1610;&#1610; &#1582;&#1604;&#1610;&#1604;&quot;&#1548; &#1575;&#1585;&#1578;&#1593;&#1588; &#1575;&#1604;&#1571;&#1576; &#1575;&#1604;&#1585;&#1575;&#1607;&#1576; &#1608;&#1575;&#1607;&#1578;&#1586;&#1578; &#1575;&#1604;&#1603;&#1571;&#1587; &#1601;&#1610; &#1610;&#1583;&#1607;&#1548; &#1608;&#1603;&#1575;&#1606;&#1578; &#1593;&#1592;&#1578;&#1607; &#1576;&#1593;&#1583; &#1575;&#1604;&#1602;&#1583;&#1575;&#1587; &#1593;&#1606; &#1575;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1573;&#1610;&#1604;&#1610;. &#1608;&#1578;&#1602;&#1608;&#1604; &#1604;&#1610;&#1606;&#1575; &quot;&#1602;&#1604;&#1578; &#1604;&#1604;&#1585;&#1575;&#1607;&#1576; &#1593;&#1606;&#1583;&#1574;&#1584; &#1575;&#1606; &#1571;&#1582;&#1610; &#1580;&#1575;&#1569; &#1604;&#1610;&#1602;&#1608;&#1604; &#1604;&#1603; &#1575;&#1606;&#1603; &#1604;&#1605; &#1578;&#1584;&#1603;&#1585;&#1607; &#1601;&#1610; &#1575;&#1604;&#1602;&#1583;&#1575;&#1587;&#1548; &#1601;&#1571;&#1580;&#1575;&#1576;&#1606;&#1610; &quot;&#1603;&#1604;&#1575;&#1617; &#1576;&#1604; &#1580;&#1575;&#1569; &#1604;&#1610;&#1602;&#1608;&#1604; &#1604;&#1610; &#1575;&#1606;&#1607; &#1581;&#1610;&#1617;&quot;.</span></p><div align=\"right\"> </div><p style=\"margin-bottom: 7.5pt; text-align: right; line-height: normal; direction: rtl; unicode-bidi: embed\" dir=\"RTL\" class=\"MsoNormal\" align=\"right\"><span style=\"font-size: 13.5pt; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;; color: #444444\">cadre</span></p><div align=\"right\"> </div><p style=\"margin-bottom: 7.5pt; text-align: right; line-height: normal; direction: rtl; unicode-bidi: embed\" dir=\"RTL\" class=\"MsoNormal\" align=\"right\"><span style=\"font-size: 13.5pt; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;; color: #444444\">&#1588;&#1607;&#1575;&#1583;&#1575;&#1578;</span></p><div align=\"right\"> </div><p style=\"margin-bottom: 7.5pt; text-align: right; line-height: normal; direction: rtl; unicode-bidi: embed\" dir=\"RTL\" class=\"MsoNormal\" align=\"right\"><span style=\"font-size: 13.5pt; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;; color: #444444\">&#1604;&#1608;&#1586;&#1610;&#1585; &#1575;&#1604;&#1575;&#1593;&#1604;&#1575;&#1605; &#1591;&#1575;&#1585;&#1602; &#1605;&#1578;&#1585;&#1610; &#1605;&#1575; &#1610;&#1602;&#1608;&#1604;&#1607; &#1601;&#1610; &#1607;&#1584;&#1575; &#1575;&#1604;&#1588;&#1571;&#1606;&#1548; &#1608;&#1603;&#1584;&#1604;&#1603; &#1605;&#1578;&#1585;&#1608;&#1576;&#1608;&#1604;&#1610;&#1578; &#1576;&#1610;&#1585;&#1608;&#1578; &#1608;&#1578;&#1608;&#1575;&#1576;&#1593;&#1607;&#1575; &#1604;&#1604;&#1585;&#1608;&#1605; &#1575;&#1604;&#1571;&#1585;&#1579;&#1608;&#1584;&#1603;&#1587; &#1575;&#1604;&#1610;&#1575;&#1587; &#1593;&#1608;&#1583;&#1577;&#1548; &#1593;&#1583;&#1575; &#1593;&#1606; &#1593;&#1588;&#1585;&#1575;&#1578; &#1575;&#1604;&#1588;&#1607;&#1575;&#1583;&#1575;&#1578; &#1575;&#1604;&#1605;&#1608;&#1579;&#1602;&#1577;&#1548; &#1608;&#1575;&#1604;&#1578;&#1610; &#1578;&#1606;&#1578;&#1592;&#1585; &#1571;&#1606; &#1578;&#1606;&#1578;&#1588;&#1585; &#1601;&#1610; &#1575;&#1604;&#1571;&#1585;&#1590; &#1601;&#1610; &#1604;&#1581;&#1592;&#1577; &#1605;&#1572;&#1575;&#1578;&#1610;&#1577;. &#1604;&#1610;&#1587; &#1601;&#1610; &#1584;&#1604;&#1603; &#1578;&#1580;&#1583;&#1610;&#1583; &#1604;&#1582;&#1585;&#1575;&#1601;&#1575;&#1578;&#1548; &#1571;&#1608; &#1578;&#1593;&#1576;&#1610;&#1583; &#1604;&#1591;&#1585;&#1602; &#1605;&#1593;&#1610;&#1606;&#1577;&#1548; &#1576;&#1602;&#1583;&#1585; &#1605;&#1575; &#1607;&#1610;&nbsp;&#1585;&#1587;&#1575;&#1604;&#1577; &#1610;&#1593;&#1585;&#1601;&#1607;&#1575; &#1603;&#1604; &#1575;&#1606;&#1587;&#1575;&#1606; &#1601;&#1610; &#1571;&#1610; &#1604;&#1581;&#1592;&#1577; &#1586;&#1605;&#1606;&#1610;&#1577; &#1601;&#1610; &#1581;&#1610;&#1575;&#1578;&#1607;&#1548; &#1601;&#1610;&#1606;&#1578;&#1602;&#1604; &#1576;&#1607;&#1575; &#1575;&#1604;&#1609; &#1605;&#1587;&#1578;&#1608;&#1610;&#1575;&#1578; &#1575;&#1593;&#1604;&#1609; &#1601;&#1610; &#1581;&#1610;&#1575;&#1578;&#1607;&#1548; &#1604;&#1610;&#1581;&#1610;&#1575; &#1593;&#1604;&#1609; &#1608;&#1602;&#1593; &#1578;&#1606;&#1601;&#1610;&#1584; &#1607;&#1584;&#1607; &#1575;&#1604;&#1585;&#1587;&#1575;&#1604;&#1577;. &#1608;&#1604;&#1610;&#1591;&#1605;&#1574;&#1606; &#1603;&#1604; &#1575;&#1606;&#1587;&#1575;&#1606;&#1548; &#1575;&#1606; &#1603;&#1604; &#1588;&#1582;&#1589; &#1610;&#1578;&#1605;&#1605; &#1585;&#1587;&#1575;&#1604;&#1578;&#1607; &#1571;&#1608; &#1575;&#1604;&#1580;&#1586;&#1569; &#1575;&#1604;&#1571;&#1594;&#1604;&#1576; &#1605;&#1606;&#1607;&#1575; &#1602;&#1576;&#1604; &#1575;&#1604;&#1585;&#1581;&#1610;&#1604;. &#1604;&#1604;&#1583;&#1603;&#1578;&#1608;&#1585; &#1575;&#1610;&#1604;&#1610; &#1603;&#1578;&#1575;&#1576;&#1575;&#1606; &quot;&#1604;&#1606; &#1610;&#1587;&#1602;&#1591; &#1575;&#1604;&#1587;&#1610;&#1601; &#1605;&#1606; &#1610;&#1583;&#1610;&quot; &#1608;&quot;&#1606;&#1608;&#1585; &#1605;&#1606; &#1575;&#1604;&#1587;&#1605;&#1575;&#1569;&quot;&#1548; &#1608;&#1601;&#1610;&#1607;&#1605;&#1575; &#1582;&#1604;&#1575;&#1589;&#1577; &#1603;&#1578;&#1575;&#1576;&#1575;&#1578;&#1607;.</span></p><div align=\"right\"> </div><p style=\"margin-bottom: 7.5pt; text-align: right; line-height: normal; direction: rtl; unicode-bidi: embed\" dir=\"RTL\" class=\"MsoNormal\" align=\"right\"><span style=\"font-size: 13.5pt; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;; color: #444444\">&#1605;&#1606; &#1571;&#1602;&#1608;&#1575;&#1604;&#1607;</span></p><div align=\"right\"> </div><p style=\"margin-bottom: 7.5pt; text-align: right; line-height: normal; direction: rtl; unicode-bidi: embed\" dir=\"RTL\" class=\"MsoNormal\" align=\"right\"><span style=\"font-size: 13.5pt; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;; color: #444444\">&bull; &#1604;&#1605; &#1575;&#1593;&#1585;&#1601; &#1575;&#1604;&#1581;&#1610;&#1575;&#1577; &#1581;&#1585;&#1576;&#1575;&#1611; &#1576;&#1604; &#1581;&#1576; &#1608;&#1576;&#1584;&#1604; &#1608;&#1605;&#1588;&#1575;&#1585;&#1603;&#1577;.<br /> &bull; ... &#1608;&#1586;&#1607;&#1583;&#1610; &#1601;&#1610; &#1575;&#1604;&#1581;&#1610;&#1575;&#1577; &#1575;&#1604;&#1606;&#1602;&#1589;&#1609; &#1604;&#1591;&#1605;&#1593;&#1610; &#1576;&#1575;&#1604;&#1603;&#1575;&#1605;&#1604;&#1577;...<br /> &bull; &#1575;&#1604;&#1604;&#1607; &#1593;&#1605; &#1610;&#1591;&#1608;&#1604; &#1604;&#1610; &#1593;&#1605;&#1585;&#1610; &#1581;&#1578;&#1609; &#1575;&#1603;&#1605;&#1604; &#1603;&#1578;&#1575;&#1576;&#1575;&#1578;&#1610; &#1608;&#1571;&#1590;&#1575;&#1601; &#1576;&#1571;&#1606;&#1607; &#1610;&#1593;&#1585;&#1601; &#1605;&#1588;&#1610;&#1574;&#1577; &#1575;&#1604;&#1604;&#1607; &#1576;&#1571;&#1606; &#1610;&#1603;&#1608;&#1606; &#1587;&#1605;&#1575;&#1608;&#1610;&#1575;&#1611;..&quot; <br /> &bull; &#1575;&#1604;&#1593;&#1591;&#1575;&#1569; &#1610;&#1603;&#1608;&#1606; &#1583;&#1608;&#1606; &#1605;&#1602;&#1575;&#1576;&#1604; &#1593;&#1587;&#1609; &#1575;&#1606; &#1578;&#1587;&#1605;&#1593; &#1575;&#1604;&#1575;&#1585;&#1590; &#1585;&#1587;&#1575;&#1604;&#1577; &#1575;&#1604;&#1587;&#1605;&#1575;&#1569;...<br /> &bull; &#1604;&#1610;&#1587; &#1605;&#1608;&#1578; &#1576;&#1593;&#1583; &#1602;&#1610;&#1575;&#1605;&#1577; &#1575;&#1604;&#1605;&#1587;&#1610;&#1581;... &#1571;&#1594;&#1605;&#1590; &#1593;&#1610;&#1606;&#1610; &#1607;&#1607;&#1606;&#1575; &#1608;&#1575;&#1601;&#1578;&#1581;&#1607;&#1575; &#1607;&#1606;&#1575;&#1603;&#1548; &#1607;&#1604; &#1578;&#1582;&#1575;&#1601;&#1610;&#1606; &#1575;&#1576;&#1575;&#1603;: &#1575;&#1604;&#1604;&#1607; &#1575;&#1576;&#1610; &#1608;&#1575;&#1606;&#1575; &#1584;&#1575;&#1607;&#1576; &#1573;&#1604;&#1610;&#1607;.<br /> &bull; &quot;&#1573;&#1606; &#1575;&#1604;&#1604;&#1607; &#1602;&#1575;&#1583;&#1585; &#1571;&#1606; &#1610;&#1602;&#1610;&#1605; &#1605;&#1606; &#1575;&#1604;&#1602;&#1576;&#1585; &#1576;&#1588;&#1601;&#1575;&#1593;&#1577; &#1571;&#1608; &#1604;&#1605;&#1580;&#1585;&#1583; &#1575;&#1604;&#1573;&#1610;&#1605;&#1575;&#1606; &#1576;&#1607;. &#1571;&#1605;&#1575; &#1571;&#1606;&#1575;&#1548; &#1601;&#1605;&#1575; &#1603;&#1606;&#1578; &#1571;&#1587;&#1571;&#1604; &#1575;&#1604;&#1604;&#1607; &#1571;&#1593;&#1580;&#1608;&#1576;&#1577; &#1601;&#1607;&#1608; &#1571;&#1576;&#1610; &#1610;&#1593;&#1585;&#1601;&#1606;&#1610; &#1608;&#1610;&#1581;&#1576;&#1606;&#1610; &#1608;&#1604;&#1610;&#1587;&#1578; &#1575;&#1604;&#1570;&#1604;&#1575;&#1605; &#1575;&#1604;&#1580;&#1587;&#1583;&#1610;&#1577; &#1573;&#1604;&#1575; &#1606;&#1575;&#1585;&#1611;&#1575; &#1605;&#1591;&#1607;&#1617;&#1585;&#1577; &#1581;&#1578;&#1609; &#1571;&#1581;&#1576;&#1617;&#1607; &#1571;&#1603;&#1579;&#1585;&quot;.<br /> &bull; &#1571;&#1610;&#1607;&#1575; &#1575;&#1604;&#1588;&#1610;&#1591;&#1575;&#1606; &#1575;&#1604;&#1605;&#1578;&#1601;&#1585;&#1587; &#1576;&#1571;&#1581;&#1588;&#1575;&#1574;&#1610;&#1548; &#1604;&#1587;&#1578; &#1608;&#1581;&#1583;&#1610; &#1575;&#1606;&#1575;&#1586;&#1604;&#1603; &#1607;&#1584;&#1607; &#1575;&#1604;&#1608;&#1575;&#1602;&#1593;&#1577;&#1548; &#1608;&#1575;&#1606; &#1603;&#1606;&#1578; &#1602;&#1583; &#1587;&#1605;&#1617;&#1605;&#1578; &#1606;&#1601;&#1608;&#1587; &#1575;&#1604;&#1605;&#1581;&#1610;&#1591;&#1610;&#1606; &#1576;&#1610; &#1576;&#1575;&#1604;&#1581;&#1586;&#1606; &#1608;&#1575;&#1604;&#1582;&#1610;&#1576;&#1577; &#1608;&#1575;&#1604;&#1610;&#1571;&#1587;&#1548; &#1601;&#1587;&#1578;&#1585;&#1609; &#1575;&#1606;&#1603; &#1605;&#1607;&#1605;&#1575; &#1575;&#1590;&#1591;&#1585;&#1605;&#1578; &#1571;&#1608;&#1580;&#1575;&#1593;&#1610; &#1608;&#1585;&#1602;&#1589;&#1578; &#1585;&#1605;&#1575;&#1581;&#1603; &#1604;&#1606; &#1578;&#1571;&#1582;&#1584; &#1571;&#1603;&#1579;&#1585; &#1605;&#1605;&#1575; &#1578;&#1587;&#1578;&#1591;&#1610;&#1593;. &#1604;&#1571;&#1606; &#1587;&#1575;&#1593;&#1577; &#1578;&#1571;&#1578;&#1610; &#1608;&#1603;&#1604;&#1575;&#1606;&#1575; &#1610;&#1585;&#1575;&#1607;&#1575; &#1587;&#1571;&#1591;&#1576;&#1602; &#1601;&#1610;&#1607;&#1575; &#1593;&#1604;&#1610;&#1603; &#1604;&#1571;&#1578;&#1585;&#1603;&#1603; &#1580;&#1579;&#1577; &#1607;&#1575;&#1605;&#1583;&#1577; &#1578;&#1581;&#1578; &#1580;&#1579;&#1578;&#1610; &#1608;&#1575;&#1591;&#1601;&#1574; &#1606;&#1575;&#1585;&#1603; &#1576;&#1606;&#1575;&#1585;&#1610;. &#1587;&#1571;&#1607;&#1583;&#1605; &#1607;&#1610;&#1603;&#1604;&#1610; &#1593;&#1604;&#1610;&#1603; &#1608;&#1604;&#1606; &#1610;&#1587;&#1602;&#1591; &#1575;&#1604;&#1587;&#1610;&#1601; &#1605;&#1606; &#1610;&#1583;&#1610;.</span></p> ',1,4,0,13,'2010-04-16 10:07:14',64,'','2010-04-16 10:12:20',64,0,'0000-00-00 00:00:00','2010-04-16 10:03:27','0000-00-00 00:00:00','','','pageclass_sfx=\nback_button=\nitem_title=1\nlink_titles=\nintrotext=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nkeyref=\ndocbook_type=',2,0,1,'','',0,157675);
/*!40000 ALTER TABLE `jos_content` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_content_frontpage`
--
DROP TABLE IF EXISTS `jos_content_frontpage`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_content_frontpage`
--
LOCK TABLES `jos_content_frontpage` WRITE;
/*!40000 ALTER TABLE `jos_content_frontpage` DISABLE KEYS */;
INSERT INTO `jos_content_frontpage` VALUES (1,3),(57,1),(12,2),(5,4);
/*!40000 ALTER TABLE `jos_content_frontpage` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_content_rating`
--
DROP TABLE IF EXISTS `jos_content_rating`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_content_rating`
--
LOCK TABLES `jos_content_rating` WRITE;
/*!40000 ALTER TABLE `jos_content_rating` DISABLE KEYS */;
/*!40000 ALTER TABLE `jos_content_rating` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_core_acl_aro`
--
DROP TABLE IF EXISTS `jos_core_acl_aro`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_core_acl_aro` (
`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 (`aro_id`),
UNIQUE KEY `jos_gacl_section_value_value_aro` (`section_value`(100),`value`(100)),
KEY `jos_gacl_hidden_aro` (`hidden`)
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_core_acl_aro`
--
LOCK TABLES `jos_core_acl_aro` WRITE;
/*!40000 ALTER TABLE `jos_core_acl_aro` DISABLE KEYS */;
INSERT INTO `jos_core_acl_aro` VALUES (10,'users','62',0,'Administrator',0),(11,'users','63',0,'Emile Elliye',0),(12,'users','64',0,'rima',0),(13,'users','65',0,'aadoulws2014',0);
/*!40000 ALTER TABLE `jos_core_acl_aro` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_core_acl_aro_groups`
--
DROP TABLE IF EXISTS `jos_core_acl_aro_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_core_acl_aro_groups` (
`group_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,
PRIMARY KEY (`group_id`),
KEY `parent_id_aro_groups` (`parent_id`),
KEY `jos_gacl_parent_id_aro_groups` (`parent_id`),
KEY `jos_gacl_lft_rgt_aro_groups` (`lft`,`rgt`)
) ENGINE=MyISAM AUTO_INCREMENT=31 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_core_acl_aro_groups`
--
LOCK TABLES `jos_core_acl_aro_groups` WRITE;
/*!40000 ALTER TABLE `jos_core_acl_aro_groups` DISABLE KEYS */;
INSERT INTO `jos_core_acl_aro_groups` VALUES (17,0,'ROOT',1,22),(28,17,'USERS',2,21),(29,28,'Public Frontend',3,12),(18,29,'Registered',4,11),(19,18,'Author',5,10),(20,19,'Editor',6,9),(21,20,'Publisher',7,8),(30,28,'Public Backend',13,20),(23,30,'Manager',14,19),(24,23,'Administrator',15,18),(25,24,'Super Administrator',16,17);
/*!40000 ALTER TABLE `jos_core_acl_aro_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_core_acl_aro_sections`
--
DROP TABLE IF EXISTS `jos_core_acl_aro_sections`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_core_acl_aro_sections` (
`section_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 (`section_id`),
UNIQUE KEY `value_aro_sections` (`value`),
UNIQUE KEY `jos_gacl_value_aro_sections` (`value`),
KEY `hidden_aro_sections` (`hidden`),
KEY `jos_gacl_hidden_aro_sections` (`hidden`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_core_acl_aro_sections`
--
LOCK TABLES `jos_core_acl_aro_sections` WRITE;
/*!40000 ALTER TABLE `jos_core_acl_aro_sections` DISABLE KEYS */;
INSERT INTO `jos_core_acl_aro_sections` VALUES (10,'users',1,'Users',0);
/*!40000 ALTER TABLE `jos_core_acl_aro_sections` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_core_acl_groups_aro_map`
--
DROP TABLE IF EXISTS `jos_core_acl_groups_aro_map`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_core_acl_groups_aro_map`
--
LOCK TABLES `jos_core_acl_groups_aro_map` WRITE;
/*!40000 ALTER TABLE `jos_core_acl_groups_aro_map` DISABLE KEYS */;
INSERT INTO `jos_core_acl_groups_aro_map` VALUES (18,'',13),(25,'',10),(25,'',11),(25,'',12);
/*!40000 ALTER TABLE `jos_core_acl_groups_aro_map` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_core_log_items`
--
DROP TABLE IF EXISTS `jos_core_log_items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_core_log_items`
--
LOCK TABLES `jos_core_log_items` WRITE;
/*!40000 ALTER TABLE `jos_core_log_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `jos_core_log_items` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_core_log_searches`
--
DROP TABLE IF EXISTS `jos_core_log_searches`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_core_log_searches`
--
LOCK TABLES `jos_core_log_searches` WRITE;
/*!40000 ALTER TABLE `jos_core_log_searches` DISABLE KEYS */;
/*!40000 ALTER TABLE `jos_core_log_searches` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_groups`
--
DROP TABLE IF EXISTS `jos_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_groups`
--
LOCK TABLES `jos_groups` WRITE;
/*!40000 ALTER TABLE `jos_groups` DISABLE KEYS */;
INSERT INTO `jos_groups` VALUES (0,'Public'),(1,'Registered'),(2,'Special');
/*!40000 ALTER TABLE `jos_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_jomcomment`
--
DROP TABLE IF EXISTS `jos_jomcomment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jomcomment` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`parentid` int(10) NOT NULL DEFAULT 0,
`status` int(10) NOT NULL DEFAULT 0,
`contentid` int(10) NOT NULL DEFAULT 0,
`ip` varchar(15) NOT NULL DEFAULT '',
`name` varchar(200) DEFAULT NULL,
`title` varchar(200) NOT NULL DEFAULT '',
`comment` text NOT NULL,
`date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`published` tinyint(1) NOT NULL DEFAULT 0,
`ordering` int(11) NOT NULL DEFAULT 0,
`email` varchar(100) NOT NULL DEFAULT '',
`website` varchar(100) NOT NULL DEFAULT '',
`updateme` smallint(5) unsigned NOT NULL DEFAULT 0,
`custom1` varchar(200) NOT NULL DEFAULT '',
`custom2` varchar(200) NOT NULL DEFAULT '',
`custom3` varchar(200) NOT NULL DEFAULT '',
`custom4` varchar(200) NOT NULL DEFAULT '',
`custom5` varchar(200) NOT NULL DEFAULT '',
`star` tinyint(3) unsigned NOT NULL DEFAULT 0,
`user_id` int(10) unsigned NOT NULL DEFAULT 0,
`option` varchar(50) NOT NULL DEFAULT 'com_content',
`voted` smallint(6) NOT NULL DEFAULT 0,
`referrer` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `option` (`option`),
KEY `contentid` (`contentid`),
KEY `published` (`published`)
) ENGINE=MyISAM AUTO_INCREMENT=107 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_jomcomment`
--
LOCK TABLES `jos_jomcomment` WRITE;
/*!40000 ALTER TABLE `jos_jomcomment` DISABLE KEYS */;
INSERT INTO `jos_jomcomment` VALUES (2,0,0,12,'213.138.105.74','katia Mahfouz','','ELIE is my cousin. I am in a continuous intercommunication with him. He communicates with me by passing several messages in my dreams. He always send me his confirmation on his sister’s acts (website, books name: نور من السماء , etc…), he is frequently present and near us especially when we face problems, ELIE is more than a Doctor, cousin, he is an angel in our family , we all miss him so much. \nWe hope that all his friends and patients will discover his new way to become a Saint. \nLove you so much and pray for us. \nKatia \n','2007-11-25 19:50:29',1,0,'katymahfouz@hotmail.com','',0,'','','','','',0,0,'com_content',2,''),(3,0,0,12,'77.42.129.119','Nagi Chehab','We are lucky to have people like Elie in lebanon','Well , Dr lena Karouny is a wonderfull person and she has done a very good site so everyone can just say good things .\nI think and hope it would be like a big family meeting between good people from different corners of the world .\nWe are lucky to have people like Elie and his sister in lebanon : it is a country in which people believe deeply in god so it is a country that has nothing to fear.\n','2007-12-02 12:01:22',1,0,'chehabnagi@gmail.com','',0,'','','','','',0,0,'com_content',2,''),(4,0,0,12,'213.42.21.154','Marlene Harfouche','','When we lose somebody dear the first thing we say or think about is how life is not fair. He knew he was going to leave us early, and he wanted and asked to be with his second mother in heaven. God granted him what he was asking for, so can I say that life was fair with him? We will never understand the mysterious ways of God and life, only the Saints do.\nI just want to say, Elie we miss you, and you are a big loss in our lives.\n\nMarlene Harfouche','2007-12-17 09:24:50',1,0,'mamou13@hotmail.com','',0,'','','','','',0,0,'com_content',1,''),(5,0,0,12,'213.42.21.154','Marlene Harfouche','','When we lose somebody dear the first thing we say or think about is how life is not fair. He knew he was going to leave us early, and he wanted and asked to be with his second mother in heaven. God granted him what he was asking for, so can I say that life was fair with him? We will never understand the mysterious ways of God and life, only the Saints do.\nI just want to say, Elie we miss you, and you are a big loss in our lives.','2007-12-17 09:29:39',0,0,'mamou13@hotmail.com','',0,'','','','','',0,0,'com_content',0,''),(6,0,0,12,'67.34.112.170','Joseph Mouhanna, MD','Medical Director','I knew Elie and his sister Lena for seven years as collegues and friends at the Faculte de Medecine at USJ in Lebanon, from 1981 to 1988. They were good people and always had positive attitudes.\nThe memories I have and I will always keep of Elie are memories of a good hearted and intelligent Elie with his smiling face, a loving person, a good physician, a collegue, and a friend.\nLet us all remember him in our prayors.\n\nJoseph Mouhanna, MD','2007-12-24 03:54:40',1,0,'dr4pain@bellsouth.net','www.miamipain.com',0,'','','','','',0,0,'com_content',1,''),(7,0,0,12,'71.169.132.95','Christian Nasr','Friend','Merry Christmas.','2007-12-24 14:56:42',0,0,'cenasr@pol.net','',0,'','','','','',0,0,'com_content',0,''),(8,0,0,12,'89.79.112.149','u3l2008','','bjfeghcadi qprmlsknto w32uxy1z54 [url=http://than.pl/auto-gielda-gliwice]auto gielda gliwice[/url] [url=http://than.pl/performance-car-parts]performance car parts[/url] [url=http://than.pl/grand-theft-auto-vice-city-stories]grand theft auto vice city stories[/url] [url=http://than.pl/auto-cad-lt-2006]auto cad lt 2006[/url] [url=http://than.pl/bobby-car]bobby car[/url]','2008-02-06 07:10:38',0,0,'javj@skype.com','http://than.pl/',0,'','','','','',0,0,'com_content',0,''),(9,0,0,12,'63.216.105.149','Marianne Saliba','','I am really touched,it\'s a wonderful site..I lost a dear dear friend, he was happiness to me,he was my guardian angel(that\'s what i used to call him)but GOD was not fair, why!! i don\'t know..but after reading the site i\'m realizing maybe he is now my guardian angel from heaven,maybe things happens for a reason,i hope i\'m right..So lena you are lucky to have a saint brother.\nMarianne Saliba ','2008-03-12 20:59:25',1,0,'brunej2@yahoo.com','',0,'','','','','',0,0,'com_content',2,''),(10,0,0,12,'82.198.15.24','carole','','hi,ana men 2ebal dr. lina karouny,khabaretne ktyr 3an khaya dr. elie karouny,w kenet ktyr mabsouta bi 2osset hayete,la wa2et enno kenet dr lina 3am techteghel 3al website taba3ao,w 3ameltele save la document 3al computer 3ande,w bass falet 2riton kellon w hasset enno bade b3ad,falet men cheghle w 3achiye hlemet b nawme enno ana rayha 3and dr.lina w ma3ae benet zghire,saret l benet tebke,2eltela machi m3ae nehna nezline nchouf bayto la dr.elie,nzelna 3al 2ouda,chefet takhto w berdeye 3am betir w souret wejo bel 2ouda mechie nbasatet ktyr bass chefto w3ait sobeh mabsouta ma b3aref chou l rissele bass hasayt chi helo ktyr,nchala ydal yetl3a 2idissin men baladna w tkoun nafsso b sama .salilna dr.elie w sale la watanak','2008-04-07 08:58:46',0,0,'cako77@hotmail.com','',0,'','','','','',0,0,'com_content',0,''),(11,0,0,12,'82.198.15.24','carole','','hi,ana men 2ebal dr. lina karouny,khabaretne ktyr 3an khaya dr. elie karouny,w kenet ktyr mabsouta bi 2osset hayete,la wa2et enno kenet dr lina 3am techteghel 3al website taba3ao,w 3ameltele save la document 3al computer 3ande,w bass falet 2riton kellon w hasset enno bade b3ad,falet men cheghle w 3achiye hlemet b nawme enno ana rayha 3and dr.lina w ma3ae benet zghire,saret l benet tebke,2eltela machi m3ae nehna nezline nchouf bayto la dr.elie,nzelna 3al 2ouda,chefet takhto w berdeye 3am betir w souret wejo bel 2ouda mechie nbasatet ktyr bass chefto w3ait sobeh mabsouta ma b3aref chou l rissele bass hasayt chi helo ktyr,nchala ydal yetl3a 2idissin men baladna w tkoun nafsso b sama .salilna dr.elie w sale la watanak','2008-04-07 09:00:05',0,0,'cako77@hotmail.com','',0,'','','','','',0,0,'com_content',0,''),(12,0,0,12,'82.198.15.24','carole','','hi,ana men 2ebal dr. lina karouny,khabaretne ktyr 3an khaya dr. elie karouny,w kenet ktyr mabsouta bi 2osset hayete,la wa2et enno kenet dr lina 3am techteghel 3al website taba3ao,w 3ameltele save la document 3al computer 3ande,w bass falet 2riton kellon w hasset enno bade b3ad,falet men cheghle w 3achiye hlemet b nawme enno ana rayha 3and dr.lina w ma3ae benet zghire,saret l benet tebke,2eltela machi m3ae nehna nezline nchouf bayto la dr.elie,nzelna 3al 2ouda,chefet takhto w berdeye 3am betir w souret wejo bel 2ouda mechie nbasatet ktyr bass chefto w3ait sobeh mabsouta ma b3aref chou l rissele bass hasayt chi helo ktyr,nchala ydal yetl3a 2idissin men baladna w tkoun nafsso b sama .salilna dr.elie w sale la watanak','2008-04-07 09:02:55',0,0,'cako77@hotmail.com','',0,'','','','','',0,0,'com_content',0,''),(13,0,0,12,'86.96.226.13','NAWAL ZEENNI','Point de vue','Ma chère Léna,\n\nJ\'ai longtemps hésité à me connecter sur le website que tu m\'avais envoyé, la vérité est que depuis le décès de mon mari, je suis devenue très vulnérable et je ne peux penser à la mort: cela augmente ma tristesse et je souffre doublement...\n\nFinalement, j\'ai pris mon courage à 2 mains et j\'ai tout lu,\n\nComme je regrette de n\'avoir pas eu l\'occasion de rencontrer ton frère lors de son vivant,\n\nElie est un être hors commun,\nElie est béni par le Seigneur,\nElie est un don pour sa famille et pour son pays,\n\nIl veillera à jamais sur vous et sur ceux qui l\'ont connu,\n\nMerci Léna de nous donner l\'occasion de le connaître à travers ce site que tu as crée,\n\nComme vous devez être fiers tous de faire partie de sa famille !\n\nEt comme je comprends que tu le sentes toujours présent avec toi !\n\nCourage Léna et merci encore,\n\nNawal ZEENNI\n\n','2008-04-12 17:53:46',1,0,'nawal_elzeny@hotmail.com','',0,'','','','','',0,0,'com_content',2,''),(14,0,0,12,'217.151.224.29','Carole Akiki','','Ø£ÙØ§ Ù٠أك٠أعرف Ø§ÙØ¯ÙƒØªÙˆØ± ايÙÙŠ ،أعرف Ø§ÙØ¯ÙƒØªÙˆØ±Ø© ÙÙŠÙØ§ Ø§ÙØªÙŠ Ø£Ø®Ø¨Ø±ØªÙÙŠ عÙÙ ÙˆÙƒÙØª ÙØ³Ø±ÙˆØ±Ø© جدا ÙˆØ£ÙØ§ Ø£Ø³ØªÙØ¹ اÙÙŠÙØ§ \nفي يو٠ÙÙ Ø§ÙØ§ÙŠØ§Ù ÙƒØ§ÙØª Ø§ÙØ¯ÙƒØªÙˆØ±Ø© ÙÙŠÙØ§ تشتغ٠عÙ٠اÙÙƒÙØ¨ÙŠÙˆØªØ± في اÙÙØ±ÙƒØ² Ø§ÙØ°ÙŠ Ø£Ø¹Ù٠في٠وتركت ÙÙف Ø§ÙØ¯ÙƒØªÙˆØ± ايÙÙŠ عÙ٠اÙÙƒÙØ¨ÙŠÙˆØªØ± وعادت اÙÙ Ø¨ÙŠØªÙØ§.\nبدأت Ø£ÙØ±Ø£ سيرة Ø­ÙŠØ§ØªÙ ØŒØ£Ø¹ÙØ§ÙÙ Ø§ÙØ®ÙŠØ±ÙŠØ© ÙˆØ§ÙØ§ÙساÙية ÙˆØ£ÙØ§Ø«Ø± Ø§ÙØ°ÙŠ ØªØ±ÙƒÙ Ù٠حوÙÙ \n.وأحسست اÙÙÙŠ اريد ÙØ¹Ø±ÙØ© اÙÙØ²ÙŠØ¯\nفي اÙÙØ³Ø§Ø¡ Ø¹ÙØ¯Ùا ÙÙØª Ø­ÙÙØª اÙÙŠ Ø°Ø§ÙØ¨Ø© Ø¹ÙØ¯ Ø§ÙØ¯ÙƒØªÙˆØ±Ø© ÙÙŠÙØ§ ÙˆÙØ¹ÙŠ Ø·ÙÙØ© صغيرة بدأت تبكي .ÙÙØª ÙÙØ§ \"نازلين نشوف بيت الدكتور ايلي\".ÙØ²ÙÙØ§ ÙˆØ±Ø£ÙŠÙØ§ غرفت٠وسرير٠وستارا Ø£Ø¨ÙŠØ Ø¹Ù٠اÙÙØ§ÙØ°Ø© يتطاير ÙØ¹ اÙÙواء ورأيت ÙˆØ¬Ù Ø§ÙØ¯ÙƒØªÙˆØ± ايÙÙŠ ÙŠÙØ¸Ø± اÙÙŠ ÙÙØ¨ØªØ³Ùا أيÙÙØ§ ÙˆÙØ¹ ÙØ¸Ø±ÙŠ ÙÙŠ Ø§ÙØºØ±ÙØ© ÙØ§Ø¦Ùا ÙÙŠ \"أردت أن ترينني، ها أنا. \nكنت مسرورة جدا عندما رأيته واستيقظت صباحا فرحة.\nلا أعلم ما هذه الرسالة لكنني أحسست بشعور جميل وعظيم\nأتمنى ان شاء الله أن يبقى يظهر قديسون من بلدنا وأنا أكيدة انّ الدكتور ايلي قديس في السماء \nصلÙÙŠ لنا يا دكتور ايلي وصلّي لوطنك. ','2008-04-13 19:38:42',1,0,'cako77@hotmail.com','',0,'','','','','',0,0,'com_content',1,''),(15,0,0,12,'82.198.6.99','Maya Akl','A cardiologist different from others','Dear Lena\n\nAs an intern and resident I had the chance to meet Elie Karouni ...what I still remember is that impression i got the first day he walked in the CCU ...Really a different person always Calm , Smiling, Confident even in the most stressful situations... You had to stop what you where doing look at him and observe the Humanitarian touch in a physician who brought Joy and Peace ....\nI had also the chance to be at st Georges when he was suffering ...I can still see his smile even with several tubes and IV lines and strickingly the Same Peace and Joy....\nHe taught me courage,patience and how to bear pain ....with still the same Peaceful look and still efforts to smile...Pride of a Big man who accepted the Lord\'s Will and decided not to resent ...but to show the True Christian Faith and Courage to turn Death into Hope ,Patience and Joy ....\n\nMaya AKL','2008-06-21 18:14:42',1,0,'maylou.akl@gmail.com','www.eliekarouny.com',0,'','','','','',0,0,'com_content',1,''),(16,0,0,12,'217.151.224.29','Norma Richa Germanoss','Un nouveau saint pour le Liban','Bonjour\n\n Je suis Norma Richa, j’ai 29 ans , j\'ai vu la sÅ“ur de Dr. Elie, Dr. Lena, à Télé lumière, et j’ai été très impressionnée par Dr. Elie qui est aux cieux près de Dieu, que la gloire lui appartienne, à lui seulement . Je suis sûre que Dieu aime Dr. Elie parce qu’il lui donne ses bénédictions. C’est une remarque que Dieu aime le Liban, car il nous donne toujours de nouveaux saints. J’espère que Dr. Elie priera pour la paix au Liban et pour tout l’univers. Elie est un saint que Dieu a envoyé pour notre pays.\nCordialement,\nNorma Richa Germanoss \n\n','2008-06-27 20:14:47',1,0,'skhalaflaw@idm.net.lb','',0,'','','','','',0,0,'com_content',3,''),(17,0,0,12,'82.198.5.147','Norma Richa','Dr Elie est un Saint',' Cette semaine, c\'est la fete de Saint Elias, je souhaite que l\'annee prochaine nous fetons un nouveau Saint Dr Elie. C\'est un reve pour moi, mais j\'ai confiance que Dr Elie est un Saint.','2008-07-17 21:23:00',1,0,'skhalaflaw@idm.net.lb','',0,'','','','','',0,0,'com_content',0,''),(18,0,0,12,'98.166.46.66','Rita Estephan Mina','','E: Elie you carry the name of our profit that we always cherich and love.\n\nL: Lebanon is your country that you insisted to go back to after you graduated from France and became the best doctor ever!\n\nI: I loved your ways of helping poor people constantly!\n\nE: Eternal God that you always adore and pray for in any moment of your life.\n\nK: Khalil is the father that you never left his side when everyone else was hiding in shelters during the unforgetable war.\n\nA: Alice is the mother that you loved deeply and you left her so early to live hopeless and only with memories.\n\nR: Rita is not just your favorite cousin but also your neighbor that enjoyed your company and your great sense of humor especially when we played cards.\n\nO: Oh God! Why did you take him so soon?\n\nU: United we stood,friends and family and prayed to God to heal you and to protect you.\n\nN: Nana is your other wing that always find opportunities to spread your wisdom in everyway possible.\n\nY: Your are our embassador in heaven! Please pray for us! We love you!\n\nHappy Saint Elias day!\n\nYour cousin Rita Mina','2008-07-18 00:12:20',1,0,'rita.mina@nn.k12.va.us','',0,'','','','','',0,0,'com_content',1,''),(19,0,0,12,'71.244.16.65','george farhat','friend and relative','elie was an excellent person and and a bright physician.he left an impact on all who knew him despite his relatively short life.he will be missed for years to come.may the lord take him under his wings and console his family and all his friends.here i want to take a moment to thank lena,his sister for carrying his legacy forward and putting this webpage together.','2008-07-19 17:33:39',1,0,'gafdoc@gmail.com','',0,'','','','','',0,0,'com_content',2,''),(20,0,0,12,'217.151.224.29','Samira Abdo','Un ami inoubliable','Je connais Elie depuis que nous sommes adolescents. C\'était un garçon extrêmement intelligent et brillant, toujours gai, souriant et de bonne humeur. \nIl était aussi doué en lettres qu\'en sciences, il n\'arrêtait pas de s\'instruire, de se cultiver, et on aimait discuter de tout avec lui: poésie, musique, philosophie, religion…..\nPlus tard, après ses études, il est devenu un médecin très compétent qui n\'avait pas son pareil pour remonter le moral de ses patients et leur redonner de l\'espoir.\nIl a supporté avec courage et dignité la dure épreuve de sa maladie sans jamais se révolter contre la volonté de Dieu. \nIl a accepté héroïquement son destin et il reste, par conséquent, présent parmi nous, car il a laissé à tous le souvenir inoubliable d\'une personnalité hors du commun.\n','2008-07-20 12:50:52',1,0,'samira.abdo@hotmail.com','',0,'','','','','',0,0,'com_content',0,''),(21,0,0,12,'89.249.214.2','johny aouad','الي للحياة والحياة الي','ما هو معنى الحياة وما هو هدفها؟ سؤال يتردد على ذهن الانسان والشباب بوجه خاص وقد عبر الفيلسوف البير كامو بقوله للانسان أنت كلا شيئ سواء عشت او مت فالنتيجة واحدة لأن هذا لن يؤثر في العالم.قلب نابض ضخ الياة غنا وعلما ومعرفة فسمت كلماته كالصلاة اليومية مكتوبة في دفتر الماء حتى قال الرب فيه:هذا هو ابني الحبيب الذي به رضيت.صبت عيناه منذ الولادة الى أبعد الافاق فتجرد طفلا من ماديات الحياة وحاك في فكره وقلبه خيوطا وثيقة فقدم كلاه وقلبه وعيناه وكل حواسه للرب فأضحت اعضائه الجسمية مسبحة خلاص وفي ذلك يقول:أنا لا اسئل الله أعجوبة فهو ابي يعرفني ويحبني وليست الالام الجسدية والنفسية الا نارا مطهرة حتى أحبه اكثر.شاب ماخرت به السفينة الى مرفئ الثلاثين فتركها قبطانا يقود نفسه الى جوار الرب.هو الكتور الي خليل قرعوني أخصائي في أمراض القلب ونور من السماء قلب كريم أذاب نفسه لينبض في اللهلاأزلي سرمدي','2008-07-22 09:24:09',1,0,'elienana@hotmail.com','',0,'','','','','',0,0,'com_content',0,''),(22,0,0,12,'82.198.5.147','Nazem Bassil, MD','God is wonderful in His Saints','\n I was amazed when I read the life of Dr Elie Karouny.\n Thanks God for him.\n God is wonderful in His Saints.\n in Christ,','2008-08-05 13:40:42',1,0,'nbassil@hotmail.com','',0,'','','','','',0,0,'com_content',1,''),(23,0,0,12,'91.142.57.13','Rebecca Ramia','A friend I have never seen.','Dr Elie you will not believe how much I was impressed when I heard about your story from your sister! She\'s very sensitive, sincere, romantic and loyal to your unique life. I don\'t know if I should pray for you or maybe it\'s better to ask you to pray for me. I believe in God, in love and in charity that\'s why I believe that you\'re here, there and everywhere...\nI can feel your spirit even without knowing you. I\'m sure that I\'m blessed because I had an oportunity to see you in my soul.\nThe sky is not only heaven but an open place filled with angels and saints like you...\nBig hug and deep kisses from the bottom of my heart.\nPlease stay always with your mom, sister and anyone thinking of you.\n A friend of Lena.','2008-08-05 15:00:37',1,0,'roropie@hotmail.com','',0,'','','','','',0,0,'com_content',0,''),(24,0,0,12,'213.98.191.224','amal','hounered to to share all this with me','i am realllly impresed, ,its amazing and doctor elie was a lucky person , from his story we can learn , to accept things and never naggggg i am hounered to recieve this mail and i will always keep him in my heart even i never met him. just i say doctor pls pray for all lost spirits and send my regards to dady elias tell him i missed him sooo much','2008-08-10 22:43:50',1,0,'amalcn@hotmail.com','',0,'','','','','',0,0,'com_content',0,''),(25,0,0,12,'80.227.97.78','anita akl','How lucky he is','We always nag and complain about our life and we always blame God for any single difficulty we can face....but we never thanked God for all the graces he is giving us and which late Dr Elie is one of them....... Dr Elie was so faithful, humble and lucky..he deserves his place with God...Dr Elie if u can hear me...please ask God to forgive all my sins...\nReceiving this email..means we all are lucky and maybe it s time for us to reconsider and put back our life. thank you God for allowing me receiving this email..i am sure that somewhere Dr Elie recommended me to you...','2008-08-14 10:57:13',1,0,'anitaakl@yahoo.com','',0,'','','','','',0,0,'com_content',0,''),(26,0,0,12,'195.112.223.162','Maria Saab','Votre absence','Votre absence nous a marquée et nous a affligée pourquoi ce départ si tôt ?\nJ\'ai douté de la justice de Dieu au début . Toi Elie, Jeune, Affable, humain, remarquable pour ta foi et tes actes de charité et de bonté pourquoi Dieu t\'a chosi ? enfin c\'est sa volonté . Mais tu es toujours présent dans le fond fond de nos prière pour toujours .','2008-09-10 13:09:03',1,0,'mounirasab133@hotmail.com','',0,'','','','','',0,0,'com_content',0,''),(27,0,0,12,'195.112.223.162','Michel Daher','Professor of Surgery- SGH- Beirut','J\'ai eu le privilege de connaitre Elie comme Interne, puis comme Resident en Medicine et finalement comme Collegue a l\'Hopital.\nIl a toujours ete egal a lui-meme, aimable, humain, et confiant en la personne humaine et en Dieu.\nIl promettait une carriere reussie et une vie exemplaire; malheureusement, la vie nous l\'a repris tres tot.\nPeu de gens laissent tant de souvenirs et de tant de vide en si peu de temps.\nNous nous souviendrons toujours de lui, nous l\'aimerons toujours et nous perpetrerons son souvenir durant toute notre vie.','2008-09-23 14:01:17',1,0,'mndaher@inco.com.lb','www.cancer.org.lb',0,'','','','','',0,0,'com_content',0,''),(28,0,0,12,'91.142.57.13','Aoun Hilda','.............','I m impressed. GOD will be with you.I will keep visiting the site . ','2008-09-25 18:30:24',1,0,'hildaaoun@hotmail.com','',0,'','','','','',0,0,'com_content',1,''),(29,0,0,12,'85.195.139.179','Nathalie Nassif','Thy will be done, not mine','I believe that Elie will soon be declared as a Saint and i ask Him from the deepest part of my soul to help cure my relative who\'s dying from cancer.\nWhen earth doctors are unable to save him,i pray for Heaven Doctors to do miracles!\nPray for us dear Elie amen.','2008-12-01 14:25:31',1,0,'designati@hotmail.com','',0,'','','','','',0,0,'com_content',2,''),(30,0,0,12,'62.149.95.146','Rosette Jabbour','MD','Dear Elie,\nFrom the depth of my heart, I know truly that you are our new Lebanese Orthodox Saint. One day, the new generation will remember you and ask your intercessions,God willing. God has prepared for you the best place in His Kingdom because your soul did seek and adore Him since your young age. Your suffer and endurance were your path to Heavens and the salvation of all your belovings. What I can say, How can I describe you;You were the light of the Christ in the darkness of the earth that enlightened many souls including mine. This light from the Heavens that will continue to shine to lead many people in the world to You, O Lord. Elie, remember us and pray for us to follow your steps in order to be united with the Heavenly Light and become god.','2009-01-17 18:23:39',1,0,'drrjabbour@hotmail.com','',0,'','','','','',0,0,'com_content',0,''),(31,0,0,12,'77.42.173.113','ZAZA NOHRA','','I LIKE TO READ DR ELIE BOOKS. CAN YOU TELL WHERE I CAN FIND HI BOOKS .\nTHANK YOU','2009-02-04 15:15:18',0,0,'zazanohra@hotmail.com','',0,'','','','','',0,0,'com_content',0,''),(32,0,0,12,'77.42.173.113','ZAZA NOHRA','','I WOULD LIKE TO READ DR ELIE\'S BOOKS,PLEASE CAN YOU TELL ME WHERE I CAN FIND IT.\nTHANK YOU','2009-02-04 15:18:50',0,0,'zazanohra@hotmail.com','',0,'','','','','',0,0,'com_content',0,''),(33,0,0,12,'195.112.192.20','Roula Zeenni','','Dear all,\n\nBy coincidence i read the life story of Dr. Elie Karouny. I was very impressed and decided to add my comment. In my opinion, i think ELIE is a message from GOD. We always complaint about stupid things and forgot the most important.The eyes of ELIE penetrate deep in my soul and wish that Dr. Lena keep us posted about everything concerning ELIE. (I THINK WE WILL HEAR LOT OF NEW AND GOOD THINGS)','2009-03-05 06:34:42',1,0,'zeennir@bankmed.com.lb','',0,'','','','','',0,0,'com_content',0,''),(34,0,0,12,'195.96.157.60','Roula Zeenni','','Hello Dr. Lena,\n\nJ\'ai beaucoup essayé de trouver le livre نور من السماء dans quelques librairies, même je suis allée voir à l\'exposition de la Tele Lumiere qui a eu lieu à l\'eglise de Saint Elie à Antelias mais en vain,\n\nPlease could you help\n\nThank you','2009-07-06 05:59:26',0,0,'zeennir@bankmed.com.lb','',0,'','','','','',0,0,'com_content',0,''),(35,0,0,12,'195.69.208.7','georges bachaalany','','Brother Elie,\nyou are the light from the sky.if all of us become like you,heaven will open and our souls will be melted and there will be no more death.\nYou are given from above','2009-10-09 18:55:35',1,0,'gbach-011@hotmail.com','',0,'','','','','',0,0,'com_content',0,''),(36,0,0,12,'195.69.208.7','georges bachaalany','the light from the sky','Brother Elie,\nyou are the light from the sky.if all of us become like you,heaven will open and\nour souls will be melted in the heart of JESUS and there will be no death.\nYou are given from above','2009-10-09 19:13:19',1,0,'gbach-011@hotmail.com','',0,'','','','','',0,0,'com_content',0,''),(37,0,0,12,'193.227.172.50','Grace Elias','...toujours vivant dans nos ames','..c\'est par coincidence que je suis tombée sur le nom de ELIE, ..c\'est par admiration que j\'ai visé ses traits, et c\'est par une curiosité injustifiée que je me suis enfoncée dans une simple recherche de la personne...\nMon intéret de lire une telle biographie m\'a réjouie et m\'a beaucoup touché, mais comme toujours quand nous lisons un roman nous tenons fortemnet que l\'héros reste vivant :)\nmais...... \"dommage..........!\" \n...dommage de ne pas avoir la chance de communiquer avec un saint sur terre et de profiter de ses faveurs, de ses prières, de ses mots...\nElie... toujours vivant en nous.','2009-10-26 11:49:16',1,0,'gracylb@hotmail.com','',0,'','','','','',0,0,'com_content',1,''),(38,0,0,12,'194.126.21.6','Fadi Aramouni','AL MASSIH KAM HAKKAN KAM','Ancien ami du Dr Elie,\nJ\'ai connu Elie en 1976 jusqu\'a 1978, nous etions amis d\'ecole classe 4eme et 3eme. J\'etais nouvel eleve a l\'ecole de l\'ANNONCIATION Achrafieh, Cette personne si gentille m\'a aide a demarrer le programme scolaire vu que je suis rentre au milieu de l\'annee (cause de la guerre). Apres quoi, nous nous separes chacun dans son domaine. Nous nous sommes rencontres de nouveau a l\'hopital St Georges. j\'etais tellement decus a l\'idee d\'avoir entendu sa mort mais en vain tout le monde le suit si il est parti avant nous c\'est parce que DIEU a besoin de lui. et je voudrais conclure en disant:< AL MASIH KAM HAKKAN KAM >. J\'espere que Dieu le place parmi ces anges.\n De Fadi Aramouny(Pharmacien). \n','2009-11-01 13:40:09',1,0,'alfadi@inco.com.lb','',0,'','','','','',0,0,'com_content',0,''),(39,0,0,12,'204.106.8.208','Tony Haddad','MD','May God rest his soul in peace.','2010-05-25 09:27:40',0,0,'dr_tonyhaddad@hotmail.com','',0,'','','','','',0,0,'com_content',0,''),(41,0,0,17,'94.187.32.249','melhem rizk','الى من إختاره الرب بقربه، الى صديق الطفولة إيلي','إلى من إختاره الرب بقربه، الى صديق الطفولة إيلي\n\nروحك يا إيلي محبة اللـه فيها \nÙˆÙلوبنا جميعا أنرتها بشـعلتك\nبسـمتك الجميلة رافقتك دومـا\nفكانت لنـا الفرحة والأمل\nØ±Ø§ÙÙØªÙ†Ù€Ø§ في المدرسـة منذ الطفولة\nفكنت مثالنا الأعلى بتفوقك\nإيمـانك القوي أدهشـنا وأنعشـنا\nيوم كنا ندرس والقصف يزعجنا\nإرادتك القوية أشـعلت فينـا\nنور مصدره شـمس الحياة\nÙلبك النابض بالحياة\nلا يخمّده الموت يـا طبيب القلوب\nØ³Ù€Ø§Ø¨ÙØª الزمن حتى إختصرته\nواتحدت بكنف الإله فحققت حلمـك\nنجمك السـاطع نراه دومـا\nيحفر في قلوبنـا ذكريات مـاضينـا\nأنت الأمل لأنك كنت\n للبشـرية قدوة وللأطباء مدرسـة\nمارسـت الطب بإيمان ومعرفة\nوبتفوÙÙƒ صـار الطب إيمـان\nيا غالي إفتقدناك باكرا\nلن ننسـاك وسـنلقاق ولو بعد حين\n...\nملحم رزق \n ','2010-07-18 23:01:24',1,0,'melhemr@hotmail.com','',0,'','','','','',0,0,'com_content',0,''),(42,0,0,12,'178.135.0.210','melhem rizk','إلى من إختاره الرب بقربه، الى صديق الطفولة إيلي','إلى من إختاره الرب بقربه، الى صديق الطفولة إيلي \n\nروحك يا إيلي محبة اللـه فيها \nÙˆÙلوبنا جميعا أنرتها بشـعلتك \nبسـمتك الجميلة رافقتك دومـا \nفكانت لنـا الفرحة والأمل \nØ±Ø§ÙÙØªÙ†Ù€Ø§ في المدرسـة منذ الطفولة \nفكنت مثالنا الأعلى بتفوقك \nإيمـانك القوي أدهشـنا وأنعشـنا \nيوم كنا ندرس والقصف يزعجنا \nإرادتك القوية أشـعلت فينـا \nنور مصدره شـمس الحياة \nÙلبك النابض بالحياة \nلا يخمّده الموت يـا طبيب القلوب \nØ³Ù€Ø§Ø¨ÙØª الزمن حتى إختصرته \nواتحدت بكنف الإله فحققت حلمـك \nنجمك السـاطع نراه دومـا \nيحفر في قلوبنـا ذكريات مـاضينـا \nأنت الأمل لأنك كنت \nللبشـرية قدوة وللأطباء مدرسـة \nمارسـت الطب بإيمان ومعرفة \nوبتفوÙÙƒ صـار الطب إيمـان \nيا غالي إفتقدناك باكرا \nلن ننسـاك وسـنلقاق ولو بعد حين \n... \nملحم رزق \n','2010-07-19 16:56:31',1,0,'melhemr@hotmail.com','',0,'','','','','',0,0,'com_content',0,''),(43,0,0,17,'213.175.176.170','manoushag mekhmeljian','To Dr.Elie\'s soel','i met your sister at the same company that i work she talked about you & gave me your website so i couldn\'t wait i opened it & read everything in it GOD bless you because your with him its the best place really you touched my heart ......................','2010-08-13 11:29:46',1,0,'mekhmeljian_mano@hotmail.com','',0,'','','','','',0,0,'com_content',0,''),(44,0,0,14,'113.205.161.73','buy wow gold','weia','\nOne of Azeroth’s oldest adversaries will [url=http://www.wotlk-power-leveling.com]cheap wow power leveling[/url] soon tear through [url=http://www.wotlkgold.net]buy wow gold[/url] the Elemental Plane to reforge ds','2011-04-15 09:54:23',0,0,'qxbzwg@yahoo.com','http://www.wotlkgold.net',0,'','','','','',0,0,'com_content',0,''),(45,0,0,12,'58.22.65.79','Coach Outlet','','what’s done cannot be undone','2011-04-20 10:05:03',0,0,'airvoice@yahoo.com','http://www.factorycoachoutlets.com/blog/',0,'','','','','',0,0,'com_content',0,''),(46,0,0,12,'124.137.1.30','qishi@yahoo.com','Rolex Air King swiss watches','You are given from above -Rolex Air King swiss watches','2011-07-29 07:40:55',0,0,'qishi@yahoo.com','http://www.bestswisswatches.biz/rolex-air-king-swiss-watches-6.html',0,'','','','','',0,0,'com_content',0,''),(47,0,0,19,'59.41.148.188','geofeiwatch@yahoo.com','welcome to our online watches shop','Now more and more people are online shopping, we web site provides a lot of cheap and fine all kinds of watches. Want to buy a piece of [url=http://www.fakeswatch.com/fake-alain-silberstein-c-369.html]Replica Alain Silberstein Watches[/url]\n? Then come to fakeswatch. All kinds of best and [url=http://www.fakeswatch.com/fake-bell-ross-c-174.html] replica bell and ross watches[/url]\n are available here.','2011-08-06 07:33:04',0,0,'geofeiwatch@yahoo.com','welcome to our online watches shop',0,'','','','','',0,0,'com_content',0,''),(48,0,0,57,'188.143.232.199','Russell18Bobbi','answer','I had a dream to make my organization, nevertheless I did not earn enough amount of cash to do that. Thank heaven my fellow proposed to use the credit loans. Thus I received the student loan and realized my old dream. ','2011-08-07 14:58:58',0,0,'saraward@mail333.com','http://www.bestfinance-blog.com',0,'','','','','',0,0,'com_content',0,''),(49,0,0,57,'193.105.210.41','ChristaConway','answer this topic','That is known that cash can make people disembarrass. But what to do if one does not have money? The only one way is to try to get the loans and bank loan. ','2011-09-05 05:02:20',0,0,'barbarawright@mail15.com','http://www.bestfinance-blog.com',0,'','','','','',0,0,'com_content',0,''),(50,0,0,57,'193.105.210.41','DominiqueMullen27','reply','One acknowledges that today\'s life seems to be expensive, however different people require cash for various stuff and not every person earns enough cash. So to get some credit loans and just commercial loan should be good solution. ','2011-09-05 15:15:48',0,0,'barbarawright@mail15.com','http://www.bestfinance-blog.com',0,'','','','','',0,0,'com_content',0,''),(51,0,0,12,'220.249.166.5','moncler','moncler','Doudoune [url=http://www.blousonmoncler.com] moncler [/url] \nMoncler réduite utiliser un double zip à l\'entrée pour une protection encore plus. Selon sein appartenant à la direction de goûts que vous [url=http://www.ugg-stivali.net]stivali ugg [/url] pourriez probablement [url=http://www.bottesuggpaschere.com]ugg pas cher [/url] trouver des vestes dans les nuances [url=http://www.requin-chaussure.com] nike tn [/url] fiable attaché avec brun, beige, dim ou l\'éclairage ou de trouver de certaines [url=http://www.monclerjohanna.com]moncler pas cher [/url] couleurs vibrantes qui pourrait peut être trouvé à propos de pilotage de montrer dans fournie ainsi. Un favorisées au sein de[url=http://www.Timberland-homme.com] chaussures timberland [/url] milieu de jeunes, manteaux Moncler propose des styles distinctifs et de qualité inégalée grande.\n','2011-09-17 08:03:41',0,0,'blesslucky@gmail.com','http://www.monclerjohanna.com',0,'','','','','',0,0,'com_content',0,''),(52,0,0,12,'59.58.148.113','supra shoes for kids','http://www.supraforkids.com','I\'m looking for a great quotes that i can use on my everyday task and duties. Lucky enough to drop by on your blog. Thanks.,http://www.supraforkids.com','2011-10-07 11:20:57',0,0,'knwkrd@gmail.com','http://www.supraforkids.com',0,'','','','','',0,0,'com_content',0,''),(53,0,0,12,'59.58.151.152','Mulberry Bags UK Factory','http://www.mulberryukfactory.com','Super cute! My little man would look so stylin\' in those!,http://www.mulberryukfactory.com','2011-11-07 23:16:14',0,0,'krhrsz@gmail.com','http://www.mulberryukfactory.com',0,'','','','','',0,0,'com_content',0,''),(54,0,0,12,'59.60.127.161','Moncler jakke Salg','http://www.monclerjacketnorway.com','He is a good friend that speaks well of us behind our backs.,http://www.monclerjacketnorway.com','2011-11-24 10:44:59',0,0,'aiwkzk@gmail.com','http://www.monclerjacketnorway.com',0,'','','','','',0,0,'com_content',0,''),(55,0,0,12,'59.58.151.174','supra womens shoes','http://www.suprawomens.com','Liked you on Facebook, too. =),http://www.suprawomens.com','2011-12-04 06:17:09',0,0,'ypcvtl@gmail.com','http://www.suprawomens.com',0,'','','','','',0,0,'com_content',0,''),(56,0,0,12,'59.58.148.207','Mulberry Alexa Bags Outlet','http://www.mulberryalexa.org.uk','well this blog is great i love reading your articles.,http://www.mulberryalexa.org.uk','2011-12-17 02:49:36',0,0,'kymycw@gmail.com','http://www.mulberryalexa.org.uk',0,'','','','','',0,0,'com_content',0,''),(57,0,0,12,'59.60.124.18','mulberry alexa','http://www.mulberryalexa.org.uk','Christmas is probably the most special day of the year for children. One thing that makes it special is the popular tradition of Santa Claus. ,http://www.mulberryalexa.org.uk','2011-12-28 18:10:54',0,0,'aquaxi@gmail.com','http://www.mulberryalexa.org.uk',0,'','','','','',0,0,'com_content',0,''),(58,0,0,57,'31.184.236.16','RobynDillon','re','I strictly recommend not to hold back until you earn big sum of money to buy all you need! You can just take the personal loans or auto loan and feel yourself comfortable ','2012-01-04 13:40:43',0,0,'jinaborner@mail15.com','http://goodfinance-blog.com',0,'','','','','',0,0,'com_content',0,''),(59,0,0,12,'59.58.149.111','Louis Vuitton Online','http://www.shop-louis-vuitton.com','In last weeks Economist, there\'s a semi-decent article on reading sentiment from large masses of anecdotal data (tweets, mainly).,http://www.shop-louis-vuitton.com','2012-01-04 18:06:06',0,0,'mgxphu@gmail.com','http://www.shop-louis-vuitton.com',0,'','','','','',0,0,'com_content',0,''),(60,0,0,12,'117.26.220.119','Louis Vuitton Outlets','http://www.onsalelouisvuittonbags.com','Cons - There have been some complaints by people who claim that the shoe can be destroyed easily. This is seen after vigorous activity. ,http://www.onsalelouisvuittonbags.com','2012-03-06 20:05:46',0,0,'reperl@gmail.com','http://www.onsalelouisvuittonbags.com',0,'','','','','',0,0,'com_content',0,''),(61,0,0,12,'117.26.223.119','Links of Charms','http://www.linkssale.org.uk','Love those! I enjoy following your posts on facebook and rss!,http://www.linkssale.org.uk','2012-03-17 23:28:21',0,0,'zoewuz@gmail.com','http://www.linkssale.org.uk',0,'','','','','',0,0,'com_content',0,''),(62,0,0,57,'31.184.238.21','PerkinsKathleen','respond this topic','Great results are click away and you just need to buy papers online and succeed. ','2012-03-19 15:20:09',0,0,'samantablackeyes@gmail.com','http://www.exclusivepapers.com',0,'','','','','',0,0,'com_content',0,''),(63,0,0,12,'59.60.126.171','Louis Vuitton Monogram Bags','http://www.monogramlouisvuittonbags.com','it is particularly those amateur attempts of recovering information that end up being your data’s worst enemy. ,http://www.monogramlouisvuittonbags.com','2012-03-20 10:20:25',0,0,'vnjpiu@gmail.com','http://www.monogramlouisvuittonbags.com',0,'','','','','',0,0,'com_content',0,''),(64,0,0,57,'91.212.226.136','KellieBurt27','answer','The internet is overflowing of the freelance writing service , which should provide the best information about this post. ','2012-03-22 17:11:52',0,0,'joefromsky@gmail.com','http://www.4writers.net',0,'','','','','',0,0,'com_content',0,''),(65,0,0,12,'59.60.120.2','Moncler Jackor','http://www.moncleroutletjackor.com','So cute! I already like you on FB and also get your posts on Google Reader. :),http://www.moncleroutletjackor.com','2012-04-03 08:24:00',0,0,'bryclx@gmail.com','http://www.moncleroutletjackor.com',0,'','','','','',0,0,'com_content',0,''),(66,0,0,12,'117.26.74.7','louis vuitton shop','http://www.louisvuittonshoplv.com','I just sent this post to a bunch of my friends as I agree with most of what you’re saying here and the way you’ve presented it is awesome. ,http://www.louisvuittonshoplv.com','2012-04-05 12:28:36',0,0,'tuyyjv@gmail.com','http://www.louisvuittonshoplv.com',0,'','','','','',0,0,'com_content',0,''),(67,0,0,12,'59.58.151.22','Pandora Online','http://www.pandoraonlinejewellerycharms.com','I just sent this post to a bunch of my friends as I agree with most of what you’re saying here and the way you’ve presented it is awesome. ,http://www.pandoraonlinejewellerycharms.com','2012-04-05 12:32:57',0,0,'rvwqpt@gmail.com','http://www.pandoraonlinejewellerycharms.com',0,'','','','','',0,0,'com_content',0,''),(68,0,0,12,'59.58.148.30','Moncler Outlet','http://www.moncleroutletweste.com','In last weeks Economist, there\'s a semi-decent article on reading sentiment from large masses of anecdotal data (tweets, mainly).,http://www.moncleroutletweste.com','2012-04-14 17:15:47',0,0,'bfjrfx@gmail.com','http://www.moncleroutletweste.com',0,'','','','','',0,0,'com_content',0,''),(69,0,0,12,'91.212.226.136','SaraSims23','respond this topic','Buildings are quite expensive and not everybody can buy it. But, loan was created to aid people in such hard situations. ','2012-04-19 09:16:15',0,0,'barbarawright@mail15.com','http://goodfinance-blog.com',0,'','','','','',0,0,'com_content',0,''),(70,0,0,57,'91.212.226.136','GouldSHERRI27','respond','When you are in a not good position and have got no money to get out from that, you would have to take the business loans. Just because it should help you emphatically. I get secured loan every year and feel OK because of this. ','2012-04-22 22:41:36',0,0,'barbarawright@mail15.com','http://goodfinance-blog.com',0,'','','','','',0,0,'com_content',0,''),(71,0,0,57,'31.184.238.21','PotterAlba','reply','That is cool that people are able to take the home loans and this opens completely new chances. ','2012-05-12 12:24:09',0,0,'barbarawright@mail15.com','http://goodfinance-blog.com',0,'','','','','',0,0,'com_content',0,''),(72,0,0,12,'31.184.238.21','MorrisLacy','re','When you are in uncomfortable position and have got no money to go out from that, you would have to receive the business loans. Because that would aid you emphatically. I get college loan every year and feel myself fine just because of that. ','2012-05-14 16:50:55',0,0,'barbarawright@mail15.com','http://goodfinance-blog.com',0,'','','','','',0,0,'com_content',0,''),(73,0,0,12,'220.161.100.119','pandora store','http://www.pandorasalecharms.com','Go for someone who makes you smile because it takes only a smile to make a dark day seem bright.,http://www.pandorasalecharms.com','2012-05-31 12:32:02',0,0,'zwpdkl@gmail.com','http://www.pandorasalecharms.com',0,'','','','','',0,0,'com_content',0,''),(74,0,0,12,'59.58.149.209','pandora charms beads','http://www.pandorajewelrybeadscharms.com','This post is awesome,ecpecting the newest!!!LIKE IT LIKE IT LIKE IT!!!,http://www.pandorajewelrybeadscharms.com','2012-06-01 17:09:31',0,0,'xyngfz@gmail.com','http://www.pandorajewelrybeadscharms.com',0,'','','','','',0,0,'com_content',0,''),(75,0,0,12,'220.161.96.152','coach bags canada','http://www.coachforsale.ca','I just sent this post to a bunch of my friends as I agree with most of what you’re saying here and the way you’ve presented it is awesome. ,http://www.coachforsale.ca','2012-06-05 15:26:55',0,0,'tzsgug@gmail.com','http://www.coachforsale.ca',0,'','','','','',0,0,'com_content',0,''),(76,0,0,57,'91.201.64.16','SOSARita','reply','When you\'re in a not good position and have no cash to get out from that, you would need to take the personal loans. Because it should aid you unquestionably. I get college loan every year and feel myself great because of it. ','2012-06-12 12:33:52',0,0,'barbarawright@mail15.com','http://goodfinance-blog.com',0,'','','','','',0,0,'com_content',0,''),(77,0,0,12,'91.201.64.16','Chambers31Lupe','answer this post','According to my monitoring, billions of persons all over the world get the loan from different banks. Hence, there is a good chance to find a small business loan in any country. ','2012-06-24 05:52:33',0,0,'barbarawright@mail15.com','http://goodfinance-blog.com',0,'','','','','',0,0,'com_content',0,''),(78,0,0,12,'117.26.221.117','online coach outlet','http://www.onlinecoachoutlet.ca','well this blog is great i love reading your articles.,http://www.onlinecoachoutlet.ca','2012-06-27 20:06:46',0,0,'dbrjpb@gmail.com','http://www.onlinecoachoutlet.ca',0,'','','','','',0,0,'com_content',0,''),(79,0,0,57,'178.120.136.226','Lambert','','_,I loved reading &amp; I ought to say which I was ideal impressed via Ones composing experience. keep up the powerful the job this??â„¢s very refreshing how to see someone likes you \n[url=http://google.com]...[/url]','2012-07-06 01:16:57',0,0,'pavitrahufhar@gmail.com','http://www.google.com',0,'','','','','',0,0,'com_content',0,''),(80,0,0,12,'60.176.104.53','wedding necklaces','2012','s. And [url=http://www.talkdress.org/Prom-Dresses.html]elegant bridesmaid dress[/url] their merchandises almost [url=http://www.keptshop.com/Tape-Stockings.html]stockings and suspenders[/url] include everything. [url=http://www.ringdress.com/mother-of-the-bride-dresses.html]mother of the bride[/url] Wedding dress is just [url=http://www.keptshop.com/Womens-Down-Coats.html]down coats women[/url] one [url=http://www.didweddingdress.net/accessories-headpieces.html]Evening Wear[/url] hot item sold online recently. If your budget is really tight you can also consider wholesale. Yes, wholesale. You may think wholesale refers to bulk buying, such as buying 1000 dresses at one [url=http://www.wingdress.com/Jewelry.html]wholesale jewelry[/url] time. [url=http://www.cropdress.com/Casual-Wedding-Dresses.html]casual dress for women[/url] Actually, if you find the right online [url=http://www.ringdress.com/wedding-dresses-designer-wedding-dresses-2011.html]designer prom dresses[/url] platform, you can make a bargain with the seller even if you are buying only 3 dresses.You can get a wedding dress from the online shop with a [url=http://www.wingdress.com/Bras.html]girls bras[/url] low [url=http://www.cropdress.com/Vintage-Wedding-Dresses.html]silver the vintage wedding dresses[/url] price and good quality. But one problem that we are all concerned about is size. Due to the transaction form, people cannot try the wedding dress on before they decide to buy. Personally I think this is a simple problem and can be solved [url=http://www.areaclothes.com/Wedding-Umbrellas.html]short homecoming dresses 2012[/url] easily. Many online retailers offer the detailed and [url=http://www.wingdress.com/Jewelry.html]gold jewelry[/url] exact size information on their webpage. You can measure yourself and provide your own size to the customer service then decide the suitable size for you to choose.When all the problems are settled, I believe some girls can\'t wait to try these t \n','2012-07-30 08:15:24',0,0,'wedding@163.com','http://www.keptshop.com/',0,'','','','','',0,0,'com_content',0,''),(81,0,0,12,'91.201.64.16','LyndaHall19','answer this post','Different people in the world take the personal loans in various creditors, just because it\'s comfortable. ','2012-08-05 21:37:46',0,0,'barbarawright@mail15.com','http://goodfinance-blog.com',0,'','','','','',0,0,'com_content',0,''),(82,0,0,57,'91.201.64.16','Etta30Webb','respond','I will recommend not to wait until you earn big sum of cash to order different goods! You should just take the credit loans or just consolidation loans and feel free ','2012-08-09 22:38:36',0,0,'barbarawright@mail15.com','http://goodfinance-blog.com',0,'','','','','',0,0,'com_content',0,''),(83,0,0,57,'91.201.64.16','LucasLEA','reply this post','A lot of specialists argue that business loans aid people to live their own way, because they can feel free to buy necessary goods. Furthermore, various banks give short term loan for young and old people. ','2012-09-15 00:11:39',0,0,'barbarawright@mail15.com','http://goodfinance-blog.com',0,'','','','','',0,0,'com_content',0,''),(84,0,0,12,'27.159.199.134','cheap links of london','http://www.linksoflondon-charms.com','hrisoc That was my thought,too.,[url=http://www.linksoflondon-charms.com/]cheap links of london[/url] www.linksoflondon-charms.com 869465','2012-09-25 18:18:23',0,0,'qalzah@gmail.com','http://www.linksoflondon-charms.com',0,'','','','','',0,0,'com_content',0,''),(85,0,0,12,'120.43.27.209','online chanel bags shop','http://www.onlinechanelbags.net','People deserve very good life time and mortgage loans or sba loan would make it much better. Just because people\'s freedom is grounded on money state. ,http://www.onlinechanelbags.net','2012-10-11 13:12:11',0,0,'jxujhd@gmail.com','http://www.onlinechanelbags.net',0,'','','','','',0,0,'com_content',0,''),(86,0,0,12,'109.110.126.166','brigitte isaac','إيلي يا كريم الغياب','اعتراني الحزن على رحيلك \nإيلي الطبيب الإنساني تعجز كلاماتي عن وصفك \nكلماتك نور Ùˆ أحرفك وردية\nكريم عطائك لم ينتهي حتى بعد غيابك \nيا كريم الغياب \nغيابك ألمنا \nيا قوي الإيمان مد يدك لاختك لينا الحزينة علك تعزي غربتها لان خسارتها كبيرة \nليست لينا وحدها من افتقدك يا إيلي \nالجميع افتقدك \nØ§ÙØªÙØ¯Ù†Ø§ ابتسامتك Ùˆ نظرتك الحالمة \nØ§ÙØªÙØ¯Ù†Ø§ الطبيب الشاعر الحنون الإنسان الرؤوف \nØ§ÙØªÙØ¯Ù†Ø§ روحك الطاهرة \nاذكرنا عند ربك يا إيلي \nنحن جميعا بحاجة لك\nعلنا نستمد من روحك الإيمان Ùˆ الصبر Ùˆ الرجاء Ùˆ المحبة\n \n','2013-03-20 23:07:29',0,0,'brigetissak@hotmail.com','brigetissak@hotmail.com',0,'','','','','',0,0,'com_content',0,''),(87,0,0,12,'109.110.126.166','brigitte isaac','','اعتراني الحزن على رحيلك \nإيلي الطبيب الإنساني تعجز كلاماتي عن وصفك \nكلماتك نور Ùˆ أحرفك وردية\nكريم عطائك لم ينتهي حتى بعد غيابك \nيا كريم الغياب \nغيابك ألمنا \nيا قوي الإيمان مد يدك لاختك لينا الحزينة علك تعزي غربتها لان خسارتها كبيرة \nليست لينا وحدها من افتقدك يا إيلي \nالجميع افتقدك \nØ§ÙØªÙØ¯Ù†Ø§ ابتسامتك Ùˆ نظرتك الحالمة \nØ§ÙØªÙØ¯Ù†Ø§ الطبيب الشاعر الحنون الإنسان الرؤوف \nØ§ÙØªÙØ¯Ù†Ø§ روحك الطاهرة \nاذكرنا عند ربك يا إيلي \nنحن جميعا بحاجة لك\nعلنا نستمد من روحك الإيمان Ùˆ الصبر Ùˆ الرجاء Ùˆ المحبة\n Q\n','2013-03-20 23:08:42',0,0,'brigetissak@hotmail.com','brigetissak@hotmail.com',0,'','','','','',0,0,'com_content',0,''),(88,0,0,12,'109.110.126.166','brigitte isaac','كريم الغياب','اعتراني الحزن على رحيلك \nإيلي الطبيب الإنساني تعجز كلاماتي عن وصفك \nكلماتك نور Ùˆ أحرفك وردية\nكريم عطائك لم ينتهي حتى بعد غيابك \nيا كريم الغياب \nغيابك ألمنا \nيا قوي الإيمان مد يدك لاختك لينا الحزينة علك تعزي غربتها لان خسارتها كبيرة \nليست لينا وحدها من افتقدك يا إيلي \nالجميع افتقدك \nØ§ÙØªÙØ¯Ù†Ø§ ابتسامتك Ùˆ نظرتك الحالمة \nØ§ÙØªÙØ¯Ù†Ø§ الطبيب الشاعر الحنون الإنسان الرؤوف \nØ§ÙØªÙØ¯Ù†Ø§ روحك الطاهرة \nاذكرنا عند ربك يا إيلي \nنحن جميعا بحاجة لك\nعلنا نستمد من روحك الإيمان Ùˆ الصبر Ùˆ الرجاء Ùˆ المحبة\n \n','2013-03-20 23:10:15',0,0,'brigetissak@hotmail.com','brigetissak@hotmail.com',0,'','','','','',0,0,'com_content',0,''),(89,0,0,12,'109.110.126.166','brigitte isaac','','اعتراني الحزن على رحيلك \nإيلي الطبيب الإنساني تعجز كلاماتي عن وصفك \nكلماتك نور Ùˆ أحرفك وردية\nكريم عطائك لم ينتهي حتى بعد غيابك \nيا كريم الغياب \nغيابك ألمنا \nيا قوي الإيمان مد يدك لاختك لينا الحزينة علك تعزي غربتها لان خسارتها كبيرة \nليست لينا وحدها من افتقدك يا إيلي \nالجميع افتقدك \nØ§ÙØªÙØ¯Ù†Ø§ ابتسامتك Ùˆ نظرتك الحالمة \nØ§ÙØªÙØ¯Ù†Ø§ الطبيب الشاعر الحنون الإنسان الرؤوف \nØ§ÙØªÙØ¯Ù†Ø§ روحك الطاهرة \nاذكرنا عند ربك يا إيلي \nنحن جميعا بحاجة لك\nعلنا نستمد من روحك الإيمان Ùˆ الصبر Ùˆ الرجاء Ùˆ المحبة\n \n','2013-03-20 23:11:27',0,0,'brigetissak@hotmail.com','brigetissak@hotmail.com',0,'','','','','',0,0,'com_content',0,''),(90,0,0,12,'109.110.126.166','brigitte isaac','كريم الغياب يا إيلي','اعتراني الحزن على رحيلك \nإيلي الطبيب الإنساني تعجز كلاماتي عن وصفك \nكلماتك نور Ùˆ أحرفك وردية\nكريم عطائك لم ينتهي حتى بعد غيابك \nيا كريم الغياب \nغيابك ألمنا \nيا قوي الإيمان مد يدك لاختك لينا الحزينة علك تعزي غربتها لان خسارتها كبيرة \nليست لينا وحدها من افتقدك يا إيلي \nالجميع افتقدك \nØ§ÙØªÙØ¯Ù†Ø§ ابتسامتك Ùˆ نظرتك الحالمة \nØ§ÙØªÙØ¯Ù†Ø§ الطبيب الشاعر الحنون الإنسان الرؤوف \nØ§ÙØªÙØ¯Ù†Ø§ روحك الطاهرة \nاذكرنا عند ربك يا إيلي \nنحن جميعا بحاجة لك\nعلنا نستمد من روحك الإيمان Ùˆ الصبر Ùˆ الرجاء Ùˆ المحبة\n \n','2013-03-20 23:13:21',0,0,'brigetissak@hotmail.com','brigetissak@hotmail.com',0,'','','','','',0,0,'com_content',0,''),(91,0,0,12,'109.110.126.166','brigitte isaac','كريم الغياب يا إيلي','اعتراني الحزن على رحيلك \nإيلي الطبيب الإنساني تعجز كلاماتي عن وصفك \nكلماتك نور Ùˆ أحرفك وردية\nكريم عطائك لم ينتهي حتى بعد غيابك \nيا كريم الغياب \nغيابك ألمنا \nيا قوي الإيمان مد يدك لاختك لينا الحزينة علك تعزي غربتها لان خسارتها كبيرة \nليست لينا وحدها من افتقدك يا إيلي \nالجميع افتقدك \nØ§ÙØªÙØ¯Ù†Ø§ ابتسامتك Ùˆ نظرتك الحالمة \nØ§ÙØªÙØ¯Ù†Ø§ الطبيب الشاعر الحنون الإنسان الرؤوف \nØ§ÙØªÙØ¯Ù†Ø§ روحك الطاهرة \nاذكرنا عند ربك يا إيلي \nنحن جميعا بحاجة لك\nعلنا نستمد من روحك الإيمان Ùˆ الصبر Ùˆ الرجاء Ùˆ المحبة\n \n','2013-03-20 23:19:02',0,0,'brigetissak@hotmail.com','brigetissak@hotmail.com',0,'','','','','',0,0,'com_content',0,''),(92,0,0,12,'31.184.238.21','WellsNoemi','respond','Lots of men simply talks about high quality! I state that to buy custom essays supposes to be secured. ','2013-04-20 20:01:04',0,0,'aurlie.cook@aol.com','http://www.topwritingservice.com',0,'','','','','',0,0,'com_content',0,''),(93,0,0,57,'31.184.238.21','AileenFIELDS29','reply','Every single student has difficult periods of life. Nonetheless, nobody is willing waste his money and buy essay but there\'s no other way to rid of the writing complications. ','2013-04-21 15:46:50',0,0,'bruis.horan@aol.com','http://www.goldessays.com',0,'','','','','',0,0,'com_content',0,''),(94,0,0,12,'31.184.238.11','MelisaRivers30','respond this post',' Check up up here for detailed help and purchase professional essays online and cheer up your student’s life just by getting our professional writing online.','2013-06-03 16:18:10',0,0,'elvira.wu1@aol.com','http://www.essaysempire.com',0,'','','','','',0,0,'com_content',0,''),(95,0,0,57,'46.161.41.16','ALBERTATyson','respond this topic','People deserve good life and loans or car loan would make it much better. Just because freedom bases on money. ','2013-07-16 08:02:03',0,0,'barbarawright@mail15.com','http://goodfinance-blog.com',0,'','','','','',0,0,'com_content',0,''),(96,0,0,57,'31.184.238.21','MelanieHAYS35','reply this topic','That is not good for you to get a pain of essays writing. Human is not firm enough to manage with all. Fortuitously, qualified custom writing organizations get you an opportunity to buy essays. ','2013-07-19 02:28:43',0,0,'aurlie.cook@aol.com','http://www.topwritingservice.com',0,'','','','','',0,0,'com_content',0,''),(97,0,0,57,'31.184.238.73','HurstEliza30','respond this topic','Term papers writing is a cake walk for reputed writing specialists who are working for uk essays online service. ','2013-07-22 19:27:05',0,0,'coleen_lewko@aol.com','http://supremeessays.co.uk',0,'','','','','',0,0,'com_content',0,''),(98,0,0,12,'31.184.238.73','KRAMERRobbie19','reply this post','Don\'t become so scared just because academic essays writing! Lots of university students seem to be under the same circumstances. However, they do not surrender and choose research papers buy options. ','2013-07-22 22:43:49',0,0,'aprilalbrand@aol.com','http://supreme-essay.com',0,'','','','','',0,0,'com_content',0,''),(99,0,0,57,'31.184.238.73','Conner19Malinda','re',' Order Book Review Essay, save your time and go about your own business while skilful writers will cope with your paper.','2013-07-26 02:03:49',0,0,'auberonu@aol.com','http://perfectwritings.com',0,'','','','','',0,0,'com_content',0,''),(100,0,0,12,'46.161.41.16','KERIKeller','answer','According to my own investigation, billions of people all over the world get the mortgage loans from well known banks. So, there is a good possibility to receive a short term loan in every country. ','2013-07-27 16:03:50',0,0,'barbarawright@mail15.com','http://goodfinance-blog.com',0,'','','','','',0,0,'com_content',0,''),(101,0,0,57,'31.184.238.21','MelisaMEJIA','reply this post',' Visit this link so that you would purchase cheap term papers essays and get the best of our amazing organization when it comes to perfect term paper writing.','2013-08-09 19:18:07',0,0,'v_soccorsi@aol.com','http://essaysservice.com',0,'','','','','',0,0,'com_content',0,''),(102,0,0,12,'31.184.238.21','LaceyByrd24','respond this post',' Buy term papers from trustable company and get excellent custom writing papers. Check here and all your difficulties will pass away.','2013-08-11 19:59:23',0,0,'bruis.horan@aol.com','http://www.goldessays.com',0,'','','','','',0,0,'com_content',0,''),(103,0,0,12,'31.184.238.73','ReevesJEANIE','answer','We welcome you to purchase any type of custom academic papers at our essay writing service. We as professionals can fulfill any your academic writing requirements. ','2013-09-11 06:31:44',0,0,'elvira.wu1@aol.com','http://www.essaysempire.com',0,'','','','','',0,0,'com_content',0,''),(104,0,0,57,'31.184.238.73','Nolan23Jeri','re',' Use link if you are hunting for a trustworthy writing organization. Buy term paper services uk from real writing pros.','2014-01-13 10:38:38',0,0,'coleen_lewko@aol.com','http://supremeessays.co.uk',0,'','','','','',0,0,'com_content',0,''),(105,0,0,57,'31.184.238.73','Geneva35Blackwell','re','Do not have an experience of research essays writing? Do not worry! Simply pay to write essay and be assured that specialists will be ready to offer premium quality things! ','2014-01-15 00:03:24',0,0,'aprilalbrand@aol.com','http://supreme-essay.com',0,'','','','','',0,0,'com_content',0,''),(106,0,0,57,'78.169.6.102','paykasa','paykasa','thank you for comment','2016-06-09 16:16:06',0,0,'coder99@hotmail.com','http://www.paykasasitesi.com',0,'','','','','',0,0,'com_content',0,'');
/*!40000 ALTER TABLE `jos_jomcomment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_jomcomment_admin`
--
DROP TABLE IF EXISTS `jos_jomcomment_admin`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jomcomment_admin` (
`sid` varchar(128) NOT NULL DEFAULT '',
`commentid` int(10) NOT NULL DEFAULT 0,
`action` varchar(128) NOT NULL DEFAULT '',
`date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`sid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_jomcomment_admin`
--
LOCK TABLES `jos_jomcomment_admin` WRITE;
/*!40000 ALTER TABLE `jos_jomcomment_admin` DISABLE KEYS */;
INSERT INTO `jos_jomcomment_admin` VALUES ('3e7e05b55b5b',1,'moderate','2007-11-12 21:06:08'),('cc5e55ce53ce',2,'moderate','2007-11-25 19:50:29'),('9211241114dc',3,'moderate','2007-12-02 12:01:22'),('a280089934da',4,'moderate','2007-12-17 09:24:51'),('c953575ae975',5,'moderate','2007-12-17 09:29:39'),('326edaebadd2',6,'moderate','2007-12-24 03:54:41'),('668886b8c282',7,'moderate','2007-12-24 14:56:42'),('671707e0618e',8,'moderate','2008-02-06 07:10:38'),('f110f1709400',9,'moderate','2008-03-12 20:59:25'),('c52c5c55a5c5',10,'moderate','2008-04-07 08:58:46'),('2dfb5f6bfad2',11,'moderate','2008-04-07 09:00:05'),('c6c6e8846462',12,'moderate','2008-04-07 09:02:55'),('6ad61dcd0919',13,'moderate','2008-04-12 17:53:46'),('7abc0acbc02b',14,'moderate','2008-04-13 19:38:42'),('442d132367a1',15,'moderate','2008-06-21 18:14:42'),('333cc335757c',16,'moderate','2008-06-27 20:14:47'),('99b93b989878',17,'moderate','2008-07-17 21:23:00'),('3fbfc1c280b3',18,'moderate','2008-07-18 00:12:20'),('555e9f91e4ee',19,'moderate','2008-07-19 17:33:39'),('9e8accfcaf4e',20,'moderate','2008-07-20 12:50:52'),('9666a26e96a2',21,'moderate','2008-07-22 09:24:10'),('95bbfbd9bbbb',22,'moderate','2008-08-05 13:40:42'),('db6f523f3356',23,'moderate','2008-08-05 15:00:37'),('26068d0f6d62',24,'moderate','2008-08-10 22:43:50'),('5a4a4555a5e5',25,'moderate','2008-08-14 10:57:13'),('41667cc361f7',26,'moderate','2008-09-10 13:09:03'),('747867608c77',27,'moderate','2008-09-23 14:01:17'),('c8f1d7dfb8db',28,'moderate','2008-09-25 18:30:24'),('8daa49ad9a8a',29,'moderate','2008-12-01 14:25:31'),('06e60964505e',30,'moderate','2009-01-17 18:23:39'),('ffd54d4d4500',31,'moderate','2009-02-04 15:15:18'),('b8a4a9a5b8a1',32,'moderate','2009-02-04 15:18:50'),('d2d70f2f0722',33,'moderate','2009-03-05 06:34:43'),('6bbb49bbbb98',34,'moderate','2009-07-06 05:59:26'),('8d3e29e9d929',35,'moderate','2009-10-09 18:55:35'),('88e9167810e1',36,'moderate','2009-10-09 19:13:19'),('bba545b3a4bb',37,'moderate','2009-10-26 11:49:16'),('1e9f19124119',38,'moderate','2009-11-01 13:40:09'),('6db030123100',39,'moderate','2010-05-25 09:27:40'),('cccee9966696',40,'moderate','2010-05-29 07:09:49'),('e548281c11cb',41,'moderate','2010-07-18 23:01:24'),('6b686a6666eb',42,'moderate','2010-07-19 16:56:31'),('aa3ca652a563',43,'moderate','2010-08-13 11:29:46'),('dc22f822ff92',44,'moderate','2011-04-15 09:54:23'),('9c2229724272',45,'moderate','2011-04-20 10:05:03'),('c2579955ac2b',46,'moderate','2011-07-29 07:40:55'),('80de98999609',47,'moderate','2011-08-06 07:33:05'),('f0fcffc3d333',48,'moderate','2011-08-07 14:58:58'),('ebf004b0b0fb',49,'moderate','2011-09-05 05:02:20'),('00c0fc430ff4',50,'moderate','2011-09-05 15:15:48'),('c1c3e151f5e6',51,'moderate','2011-09-17 08:03:41'),('49a5488a8520',52,'moderate','2011-10-07 11:20:57'),('09cf024d4d99',53,'moderate','2011-11-07 23:16:14'),('201880d8058d',54,'moderate','2011-11-24 10:44:59'),('785337655c5c',55,'moderate','2011-12-04 06:17:09'),('888357c78380',56,'moderate','2011-12-17 02:49:36'),('78c08b0a6c9b',57,'moderate','2011-12-28 18:10:54'),('00f000ffdf0d',58,'moderate','2012-01-04 13:40:43'),('125b0205b5b0',59,'moderate','2012-01-04 18:06:06'),('6782565f8952',60,'moderate','2012-03-06 20:05:46'),('826f2ff6f32a',61,'moderate','2012-03-17 23:28:21'),('a632236e62cc',62,'moderate','2012-03-19 15:20:09'),('9eeec6c69aaa',63,'moderate','2012-03-20 10:20:26'),('4232271221f1',64,'moderate','2012-03-22 17:11:52'),('bdedea44da8b',65,'moderate','2012-04-03 08:24:00'),('dd67676a97d6',66,'moderate','2012-04-05 12:28:36'),('05a0403883f8',67,'moderate','2012-04-05 12:32:57'),('f0f8fdf80f09',68,'moderate','2012-04-14 17:15:47'),('355b4c436656',69,'moderate','2012-04-19 09:16:15'),('e31eede733d5',70,'moderate','2012-04-22 22:41:36'),('3cd4c9e9910c',71,'moderate','2012-05-12 12:24:09'),('630930861820',72,'moderate','2012-05-14 16:50:55'),('0028de0eee00',73,'moderate','2012-05-31 12:32:02'),('1eeef6e2e6a0',74,'moderate','2012-06-01 17:09:31'),('15f6165e5e95',75,'moderate','2012-06-05 15:26:55'),('133a3ad11a93',76,'moderate','2012-06-12 12:33:53'),('79107f067fcf',77,'moderate','2012-06-24 05:52:33'),('6f66661331c6',78,'moderate','2012-06-27 20:06:46'),('ab59b939c99a',79,'moderate','2012-07-06 01:16:57'),('b791b7b6bbcb',80,'moderate','2012-07-30 08:15:24'),('fff1f51bb59f',81,'moderate','2012-08-05 21:37:46'),('6e157e143105',82,'moderate','2012-08-09 22:38:37'),('8f92020cff09',83,'moderate','2012-09-15 00:11:39'),('74b778879f9b',84,'moderate','2012-09-25 18:18:23'),('dd2eda292daf',85,'moderate','2012-10-11 13:12:11'),('4b4bb3b0b243',86,'moderate','2013-03-20 23:07:30'),('aeb96a79a9e7',87,'moderate','2013-03-20 23:08:42'),('59754795bd7e',88,'moderate','2013-03-20 23:10:15'),('0eeee95950ef',89,'moderate','2013-03-20 23:11:27'),('ff64f91194ba',90,'moderate','2013-03-20 23:13:21'),('463e4a294caa',91,'moderate','2013-03-20 23:19:02'),('de7dfbfeccdc',92,'moderate','2013-04-20 20:01:04'),('3bc22ec96e3b',93,'moderate','2013-04-21 15:46:50'),('999bbb9b9919',94,'moderate','2013-06-03 16:18:10'),('afb4b4efa6b6',95,'moderate','2013-07-16 08:02:03'),('0df0f003300f',96,'moderate','2013-07-19 02:28:43'),('493999c9946d',97,'moderate','2013-07-22 19:27:06'),('cbbc0cbdbdbc',98,'moderate','2013-07-22 22:43:49'),('cb3d6e88ebde',99,'moderate','2013-07-26 02:03:49'),('9499732db3fb',100,'moderate','2013-07-27 16:03:50'),('e4140b0f6b70',101,'moderate','2013-08-09 19:18:08'),('ad29bd29aa29',102,'moderate','2013-08-11 19:59:23'),('18138088171e',103,'moderate','2013-09-11 06:31:44'),('993460950500',104,'moderate','2014-01-13 10:38:38'),('1270a222f20b',105,'moderate','2014-01-15 00:03:25'),('c312f110d3ee',106,'moderate','2016-06-09 16:16:06');
/*!40000 ALTER TABLE `jos_jomcomment_admin` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_jomcomment_config`
--
DROP TABLE IF EXISTS `jos_jomcomment_config`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jomcomment_config` (
`name` varchar(64) NOT NULL DEFAULT '',
`value` text NOT NULL,
PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_jomcomment_config`
--
LOCK TABLES `jos_jomcomment_config` WRITE;
/*!40000 ALTER TABLE `jos_jomcomment_config` DISABLE KEYS */;
INSERT INTO `jos_jomcomment_config` VALUES ('all','$enable= \"1\";\n$language= \"english.php\";\n$autoLang= \"0\";\n$autoPublish= \"0\";\n$anonComment= \"1\";\n$moreInfo= \"1\";\n$useBBCode= \"1\";\n$useSmilies= \"1\";\n$useRSSFeed= \"1\";\n$autoUpdate= \"0\";\n$updatePeriod= \"0\";\n$staticContent= \"0\";\n$limitSection= \"0\";\n$limitCategory= \"0\";\n$categories= \"15,14,13\";\n$notifyAdmin= \"1\";\n$notifyEmail= \"elienana.ak@gmail.com\";\n$useCaptcha= \"0\";\n$blockDomain= \"\";\n$blockUsers= \"\";\n$blockWords= \"\";\n$censoredWords= \"\";\n$postInterval= \"30\";\n$template= \"default\";\n$sortBy= \"1\";\n$cycleStyle= \"jomentry1,jomentry2\";\n$textWrap= \"55\";\n$alertBgColor= \"0\";\n$aletrFontColor= \"0\";\n$dateFormat= \"%B %d, %Y\";\n$useReadMore= \"1\";\n$useSelectiveReadMore= \"1\";\n$gravatar= \"gravatar\";\n$gWidth= \"40\";\n$gHeight= \"40\";\n$hideForm= \"0\";\n$modGuest= \"1\";\n$fieldWebsite= \"1\";\n$fieldTitle= \"1\";\n$useCaptchaRegistered= \"0\";\n$showBlogViewLink= \"0\";\n$showCommentCount= \"1\";\n$showHitCount= \"1\";\n$linkNofollow= \"1\";\n$startFormHidden= \"0\";\n$startAreaHidden= \"0\";\n$slideComment= \"1\";\n$slideForm= \"0\";\n$linkGravatar= \"0\";\n$spamLinkStuff= \"0\";\n$spamMaxLink= \"2\";\n$commentMinLen= \"8\";\n$commentMaxLen= \"5000\";\n$maxCommentHalfHour= \"0\";\n$authorStyle= \"jomauthor\";\n$notifyAuthor= \"0\";\n$useEmailSubs= \"0\";\n$fieldEmail= \"1\";\n$paginate= \"0\";\n$multiLanguage= \"0\";\n$enableTrackback= \"0\";\n$trackbackShow= \"0\";\n$useLinkback= \"0\";\n$smfPrefix= \"0\";\n$smfWrapped= \"1\";\n$smfPath= \"\";\n$optimiseEncoding= \"0\";\n$lockAfter= \"0\";\n$remoteSpam= \"0\";\n$username= \"username\";\n$paging= \"0\";\n$akismetKey= \"\";\n$allowedTags= \"\";\n$extComSupport= \"1\";\n$unpublishReported= \"1\";\n$minVoteCount= \"1\";\n$allowvote= \"1\";\n$allowFav= \"1\";\n$showShareButton= \"1\";\n$showEmailButton= \"1\";\n$showHitsStats= \"1\";\n$allowSubscription= \"1\";\n$defaultSubscription= \"1\";\n$showShareToolbar= \"1\";\n$termsText= \"By submitting your comments we reserve the right, at our sole discretion, to change, modify, add, or delete your comments and portions of these Terms of Use at any time without further notice.\";\n$showTerms= \"0\";\n$checkMultiPaste= \"1\";\n$checkUserAgent= \"1\";\n');
/*!40000 ALTER TABLE `jos_jomcomment_config` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_jomcomment_fav`
--
DROP TABLE IF EXISTS `jos_jomcomment_fav`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jomcomment_fav` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`userid` int(11) NOT NULL DEFAULT 0,
`url` varchar(255) NOT NULL DEFAULT '',
`contentid` int(11) NOT NULL DEFAULT 0,
`option` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `contentid` (`contentid`,`option`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_jomcomment_fav`
--
LOCK TABLES `jos_jomcomment_fav` WRITE;
/*!40000 ALTER TABLE `jos_jomcomment_fav` DISABLE KEYS */;
/*!40000 ALTER TABLE `jos_jomcomment_fav` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_jomcomment_mailq`
--
DROP TABLE IF EXISTS `jos_jomcomment_mailq`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jomcomment_mailq` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`email` varchar(200) NOT NULL DEFAULT '',
`status` tinyint(4) NOT NULL DEFAULT 0,
`title` varchar(200) NOT NULL DEFAULT '',
`name` varchar(200) NOT NULL DEFAULT '',
`content` text NOT NULL,
`posted_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
KEY `status` (`status`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_jomcomment_mailq`
--
LOCK TABLES `jos_jomcomment_mailq` WRITE;
/*!40000 ALTER TABLE `jos_jomcomment_mailq` DISABLE KEYS */;
/*!40000 ALTER TABLE `jos_jomcomment_mailq` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_jomcomment_reported`
--
DROP TABLE IF EXISTS `jos_jomcomment_reported`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jomcomment_reported` (
`commentid` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`commentid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_jomcomment_reported`
--
LOCK TABLES `jos_jomcomment_reported` WRITE;
/*!40000 ALTER TABLE `jos_jomcomment_reported` DISABLE KEYS */;
/*!40000 ALTER TABLE `jos_jomcomment_reported` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_jomcomment_reports`
--
DROP TABLE IF EXISTS `jos_jomcomment_reports`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jomcomment_reports` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`ip` varchar(24) NOT NULL DEFAULT '',
`user_id` int(11) NOT NULL DEFAULT 0,
`commentid` int(11) NOT NULL DEFAULT 0,
`option` varchar(128) NOT NULL DEFAULT '',
`reason` tinytext NOT NULL,
`status` tinyint(4) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_jomcomment_reports`
--
LOCK TABLES `jos_jomcomment_reports` WRITE;
/*!40000 ALTER TABLE `jos_jomcomment_reports` DISABLE KEYS */;
INSERT INTO `jos_jomcomment_reports` VALUES (1,'217.151.224.29',0,3,'com_content','',0),(2,'217.151.224.29',0,2,'com_content','',0),(3,'63.216.105.149',0,6,'com_content','',0);
/*!40000 ALTER TABLE `jos_jomcomment_reports` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_jomcomment_subs`
--
DROP TABLE IF EXISTS `jos_jomcomment_subs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jomcomment_subs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`userid` int(11) NOT NULL DEFAULT 0,
`url` varchar(255) NOT NULL DEFAULT '',
`contentid` int(11) NOT NULL DEFAULT 0,
`option` varchar(255) NOT NULL DEFAULT '',
`status` tinyint(4) NOT NULL DEFAULT 0,
`email` varchar(255) NOT NULL DEFAULT '',
`name` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `contentid` (`contentid`,`option`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_jomcomment_subs`
--
LOCK TABLES `jos_jomcomment_subs` WRITE;
/*!40000 ALTER TABLE `jos_jomcomment_subs` DISABLE KEYS */;
/*!40000 ALTER TABLE `jos_jomcomment_subs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_jomcomment_tb`
--
DROP TABLE IF EXISTS `jos_jomcomment_tb`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jomcomment_tb` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`contentid` int(10) unsigned NOT NULL DEFAULT 0,
`ip` varchar(18) NOT NULL DEFAULT '',
`date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`title` text NOT NULL,
`excerpt` text NOT NULL,
`url` text NOT NULL,
`blog_name` text NOT NULL,
`charset` varchar(45) NOT NULL DEFAULT '',
`published` tinyint(3) unsigned NOT NULL DEFAULT 0,
`option` varchar(64) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_jomcomment_tb`
--
LOCK TABLES `jos_jomcomment_tb` WRITE;
/*!40000 ALTER TABLE `jos_jomcomment_tb` DISABLE KEYS */;
/*!40000 ALTER TABLE `jos_jomcomment_tb` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_jomcomment_tb_sent`
--
DROP TABLE IF EXISTS `jos_jomcomment_tb_sent`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jomcomment_tb_sent` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`url` varchar(200) NOT NULL DEFAULT '',
`contentid` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `url` (`url`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_jomcomment_tb_sent`
--
LOCK TABLES `jos_jomcomment_tb_sent` WRITE;
/*!40000 ALTER TABLE `jos_jomcomment_tb_sent` DISABLE KEYS */;
/*!40000 ALTER TABLE `jos_jomcomment_tb_sent` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_jomcomment_votes`
--
DROP TABLE IF EXISTS `jos_jomcomment_votes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jomcomment_votes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`ip` varchar(32) NOT NULL DEFAULT '',
`voted_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`commentid` int(11) NOT NULL DEFAULT 0,
`option` varchar(128) NOT NULL DEFAULT '',
`value` tinyint(4) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `contentid` (`commentid`,`option`)
) ENGINE=MyISAM AUTO_INCREMENT=24 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_jomcomment_votes`
--
LOCK TABLES `jos_jomcomment_votes` WRITE;
/*!40000 ALTER TABLE `jos_jomcomment_votes` DISABLE KEYS */;
INSERT INTO `jos_jomcomment_votes` VALUES (1,'217.151.224.29','2007-12-16 18:21:13',3,'com_content',1),(2,'63.216.105.149','2008-03-12 21:04:18',6,'com_content',1),(3,'89.17.109.164','2008-04-13 18:17:03',13,'com_content',1),(4,'89.17.108.219','2008-06-28 08:08:12',16,'com_content',1),(5,'98.166.46.66','2008-07-18 00:39:17',16,'com_content',1),(6,'85.195.139.202','2008-09-16 10:45:35',3,'com_content',1),(7,'85.195.139.202','2008-09-16 10:46:05',4,'com_content',1),(8,'91.142.57.13','2008-10-01 15:38:02',28,'com_content',1),(9,'82.198.5.146','2008-12-04 15:11:15',29,'com_content',1),(10,'69.29.24.235','2008-12-09 02:09:10',19,'com_content',1),(11,'212.36.208.1','2008-12-22 12:19:32',2,'com_content',1),(12,'212.36.208.1','2008-12-22 12:22:32',13,'com_content',1),(13,'212.36.208.1','2008-12-22 12:26:36',18,'com_content',1),(14,'217.151.224.29','2009-01-25 14:51:53',9,'com_content',1),(15,'217.151.224.29','2009-01-25 14:54:49',14,'com_content',1),(16,'217.151.224.29','2009-01-25 14:56:07',15,'com_content',1),(17,'217.151.224.29','2009-01-25 14:56:52',16,'com_content',1),(18,'217.151.224.29','2009-01-25 14:59:31',19,'com_content',1),(19,'91.142.61.242','2009-05-08 14:47:11',29,'com_content',1),(20,'193.227.172.50','2010-04-16 15:56:16',37,'com_content',1),(21,'201.92.83.240','2011-09-27 14:47:34',2,'com_content',1),(22,'185.115.103.14','2016-08-29 20:51:25',22,'com_content',1),(23,'49.183.106.24','2023-11-28 06:19:14',9,'com_content',1);
/*!40000 ALTER TABLE `jos_jomcomment_votes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_mambots`
--
DROP TABLE IF EXISTS `jos_mambots`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_mambots` (
`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 AUTO_INCREMENT=26 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_mambots`
--
LOCK TABLES `jos_mambots` WRITE;
/*!40000 ALTER TABLE `jos_mambots` DISABLE KEYS */;
INSERT INTO `jos_mambots` VALUES (1,'MOS Image','mosimage','content',0,-10000,1,1,0,0,'0000-00-00 00:00:00',''),(2,'MOS Pagination','mospaging','content',0,10000,1,1,0,0,'0000-00-00 00:00:00',''),(3,'Legacy Mambot Includer','legacybots','content',0,3,0,1,0,0,'0000-00-00 00:00:00',''),(4,'SEF','mossef','content',0,6,1,0,0,0,'0000-00-00 00:00:00',''),(5,'MOS Rating','mosvote','content',0,7,1,1,0,0,'0000-00-00 00:00:00',''),(6,'Search Content','content.searchbot','search',0,1,1,1,0,0,'0000-00-00 00:00:00',''),(7,'Search Weblinks','weblinks.searchbot','search',0,2,1,1,0,0,'0000-00-00 00:00:00',''),(8,'Code support','moscode','content',0,5,0,0,0,0,'0000-00-00 00:00:00',''),(9,'No WYSIWYG Editor','none','editors',0,0,1,1,0,0,'0000-00-00 00:00:00',''),(10,'TinyMCE WYSIWYG Editor','tinymce','editors',0,0,1,1,0,0,'0000-00-00 00:00:00','theme=advanced'),(11,'MOS Image Editor Button','mosimage.btn','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(12,'MOS Pagebreak Editor Button','mospage.btn','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(13,'Search Contacts','contacts.searchbot','search',0,3,1,1,0,0,'0000-00-00 00:00:00',''),(14,'Search Categories','categories.searchbot','search',0,4,1,0,0,0,'0000-00-00 00:00:00',''),(15,'Search Sections','sections.searchbot','search',0,5,1,0,0,0,'0000-00-00 00:00:00',''),(16,'Email Cloaking','mosemailcloak','content',0,8,1,0,0,0,'0000-00-00 00:00:00',''),(17,'GeSHi','geshi','content',0,9,0,0,0,0,'0000-00-00 00:00:00',''),(18,'Search Newsfeeds','newsfeeds.searchbot','search',0,6,1,0,0,0,'0000-00-00 00:00:00',''),(19,'Load Module Positions','mosloadposition','content',0,10,1,0,0,0,'0000-00-00 00:00:00',''),(20,'Azrul.com System Mambot','azrul.system','system',0,1,1,0,0,0,'0000-00-00 00:00:00',''),(21,'Jom Comment','jom_comment_bot','content',0,4,1,0,0,0,'0000-00-00 00:00:00',''),(22,'Jom Comment Sys','jom_commentsys_bot','system',0,1,1,0,0,0,'0000-00-00 00:00:00',''),(23,'AllVideos (by JoomlaWorks)','jw_allvideos','content',0,2,0,0,0,0,'0000-00-00 00:00:00','av_template=Default\nav_compressjs=0\nav_useinmodules=0\nvfolder=images/stories/videos\nvwidth=400\nvheight=300\nafolder=images/stories/audio\nawidth=300\naheight=20\nautoplay=0\ntransparency=opaque\nbackground=#ffffff\nav_flvcontroller=over'),(24,'moseasymedia','moseasymedia','content',0,1,1,0,0,0,'0000-00-00 00:00:00','noscript=Please turn on javascript to view the media.\nocsmem_Popup_popup=none\nocsmem_Popup_ThickboxExists=no\nocsmem_Popup_popupmediathumbnail=\nocsmem_Popup_popuplinktext=Click here to open in another window.\nocsmem_Popup_popupwidth=400\nocsmem_Popup_popupheight=300\nocsmem_Popup_popuptoolbar=yes\nocsmem_Popup_popupmenubar=yes\nocsmem_Popup_popupscrollbars=no\nplayerWindowsMediaPlayerVideo=WindowsMediaPlayerVideo\nclassidWindowsMediaPlayerVideo=CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6\ncodebaseWindowsMediaPlayerVideo=http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=7,0,0,1954\npluginspageWindowsMediaPlayerVideo=http://www.microsoft.com/Windows/MediaPlayer/\nstandbyWindowsMediaPlayerVideo=Please wait....\nocsmem_UseJavascriptWindowsMediaPlayerVideo=1\nocsmem_ExtensionsWindowsMediaPlayerVideo=wmv|avi|mpg|mpeg|asf|asx\ntypeWindowsMediaPlayerVideo=application/x-ms-wmp\nwidthWindowsMediaPlayerVideo=400\nheightWindowsMediaPlayerVideo=360\nstretchtofitWindowsMediaPlayerVideo=1\nautostartWindowsMediaPlayerVideo=0\nplaycountWindowsMediaPlayerVideo=1\nvolumeWindowsMediaPlayerVideo=50\nocsmem_CSSWindowsMediaPlayerVideo=moseasymediaWindowsMediaPlayerVideo.css\nocsmem_MediaSharingWebsitesUsingWindowsMediaPlayerVideo=msn.com, microsoft.com\nplayerWindowsMediaPlayerAudio=WindowsMediaPlayerAudio\nclassidWindowsMediaPlayerAudio=CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6\ncodebaseWindowsMediaPlayerAudio=http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=7,0,0,1954\npluginspageWindowsMediaPlayerAudio=http://www.microsoft.com/Windows/MediaPlayer/\nstandbyWindowsMediaPlayerAudio=Please wait....\nocsmem_UseJavascriptWindowsMediaPlayerAudio=1\nocsmem_ExtensionsWindowsMediaPlayerAudio=wav|wma|midi|mid|m3u\ntypeWindowsMediaPlayerAudio=application/x-ms-wmp\nwidthWindowsMediaPlayerAudio=320\nheightWindowsMediaPlayerAudio=75\nautostartWindowsMediaPlayerAudio=0\nplaycountWindowsMediaPlayerAudio=1\nvolumeWindowsMediaPlayerAudio=50\nocsmem_CSSWindowsMediaPlayerAudio=moseasymediaWindowsMediaPlayerAudio.css\nocsmem_MediaSharingWebsitesUsingWindowsMediaPlayerAudio=\nplayerFlash=Flash\nclassidFlash=CLSID:d27cdb6e-ae6d-11cf-96b8-444553540000\ncodebaseFlash=http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\npluginspageFlash=http://www.macromedia.com/go/getflashplayer\nstandbyFlash=Please wait....\nocsmem_UseJavascriptFlash=1\nocsmem_ExtensionsFlash=swf\ntypeFlash=application/x-shockwave-flash\nwidthFlash=480\nheightFlash=400\nqualityFlash=Best\nplayFlash=\'false\'\nwmodeFlash=window\nbgcolorFlash=#FFFFFF\nloopFlash=\'false\'\nallowscriptaccessFlash=always\nocsmem_CSSFlash=moseasymediaFlash.css\nocsmem_MediaSharingWebsitesUsingFlash=google.com, youtube.com\nplayerQuicktime=Quicktime\nclassidQuicktime=clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B\ncodebaseQuicktime=http://www.apple.com/qtactivex/qtplugin.cab\npluginspageQuicktime=http://www.apple.com/quicktime/download/\nstandbyQuicktime=Please wait....\nocsmem_UseJavascriptQuicktime=1\nocsmem_ExtensionsQuicktime=mov|mp4\ntypeQuicktime=video/quicktime\nwidthQuicktime=400\nheightQuicktime=360\nautoplayQuicktime=\'false\'\ncontrollerQuicktime=\'true\'\nloopQuicktime=\'false\'\nvolumeQuicktime=50\nocsmem_CSSQuicktime=moseasymediaQuicktime.css\nocsmem_MediaSharingWebsitesUsingQuicktime=\nplayerRealPlayer=RealPlayer\nclassidRealPlayer=clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA\ncodebaseRealPlayer=\npluginspageRealPlayer=http://www.real.com/products/player/\nstandbyRealPlayer=Please wait....\nocsmem_UseJavascriptRealPlayer=1\nocsmem_ExtensionsRealPlayer=ram|rv|rpm|ra\ntypeRealPlayer=audio/x-pn-realaudio-plugin\nwidthRealPlayer=400\nheightRealPlayer=360\nautostartRealPlayer=\'false\'\ncontrolsRealPlayer=ImageWindow\nloopRealPlayer=\'false\'\ncenterRealPlayer=\'true\'\nmaintainaspectRealPlayer=\'true\'\nocsmem_CSSRealPlayer=moseasymediaRealPlayer.css\nocsmem_MediaSharingWebsitesUsingRealPlayer=\nplayerDivX=DivX\nclassidDivX=clsid:67DABFBF-D0AB-41fa-9C46-CC0F21721616\ncodebaseDivX=http://go.divx.com/plugin/DivXBrowserPlugin.cab\npluginspageDivX=http://go.divx.com/plugin/download/\nstandbyDivX=Please wait....\nocsmem_UseJavascriptDivX=1\nocsmem_ExtensionsDivX=divx\ntypeDivX=video/divx\nwidthDivX=400\nheightDivX=360\nautoplayDivX=\'false\'\nmodeDivX=mini\nallowcontextmenuDivX=\'true\'\nloopDivX=\'false\'\nbufferingmodeDivX=null\npreviewimageDivX=\npreviewmessageDivX=Click to play the video\nocsmem_CSSDivX=moseasymediaDivX.css\nocsmem_MediaSharingWebsitesUsingDivX=stage6.com\nplayerShockwave=Shockwave\nclassidShockwave=clsid:166B1BCA-3F9C-11CF-8075-444553540000\ncodebaseShockwave=http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab\npluginspageShockwave=http://www.macromedia.com/shockwave/download\nstandbyShockwave=Please wait....\nocsmem_UseJavascriptShockwave=1\nocsmem_ExtensionsShockwave=dcr|dir\ntypeShockwave=application/x-director\nwidthShockwave=320\nheightShockwave=260\nocsmem_CSSShockwave=moseasymediaShockwave.css\nplayerJWFLVPlayer=JWFLVPlayer\nclassidJWFLVPlayer=CLSID:d27cdb6e-ae6d-11cf-96b8-444553540000\ncodebaseJWFLVPlayer=http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\npluginspageJWFLVPlayer=http://www.macromedia.com/go/getflashplayer\nstandbyJWFLVPlayer=Please wait....\nocsmem_UseflashvarsJWFLVPlayer=swfobjects\nocsmem_ExtensionsJWFLVPlayer=flv\ntypeJWFLVPlayer=application/x-shockwave-flash\nwidthJWFLVPlayer=400\nheightJWFLVPlayer=360\ndisplayheightJWFLVPlayer=300\nlogoJWFLVPlayer=\nbackcolorJWFLVPlayer=0xFFFFFF\nfrontcolorJWFLVPlayer=0x000000\nlightJWFLVPlayer=0xFFFFFF\noverstretchJWFLVPlayer=fit\nshownavigationJWFLVPlayer=\'true\'\nautostartJWFLVPlayer=\'false\'\nvolumeJWFLVPlayer=80\nbufferlengthJWFLVPlayer=3\nrepeatJWFLVPlayer=list\nlargecontrolsJWFLVPlayer=\'false\'\nwmodeJWFLVPlayer=window\nshuffleJWFLVPlayer=\'false\'\nallowscriptaccessJWFLVPlayer=always\nCSSJWFLVPlayer=moseasymediaJWFLVPlayer.css\nocsmem_MediaSharingWebsitesUsingJWFLVPlayer=\nplayerJWMediaPlayer=JWMediaPlayer\nclassidJWMediaPlayer=CLSID:d27cdb6e-ae6d-11cf-96b8-444553540000\ncodebaseJWMediaPlayer=http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\npluginspageJWMediaPlayer=http://www.macromedia.com/go/getflashplayer\nstandbyJWMediaPlayer=Please wait....\nocsmem_UseflashvarsJWMediaPlayer=swfobjects\nocsmem_ExtensionsJWMediaPlayer=xml|png|jpg\ntypeJWMediaPlayer=application/x-shockwave-flash\nwidthJWMediaPlayer=400\nheightJWMediaPlayer=360\ndisplayheightJWMediaPlayer=260\nlogoJWMediaPlayer=\nbackcolorJWMediaPlayer=0xFFFFFF\nfrontcolorJWMediaPlayer=0x000000\nlightJWMediaPlayer=0xFFFFFF\noverstretchJWMediaPlayer=fit\nshownavigationJWMediaPlayer=\'true\'\nautostartJWMediaPlayer=\'false\'\nvolumeJWMediaPlayer=80\nbufferlengthJWMediaPlayer=3\nrepeatJWMediaPlayer=list\nlargecontrolsJWMediaPlayer=\'false\'\nwmodeJWMediaPlayer=window\nshuffleJWMediaPlayer=\'false\'\nallowscriptaccessJWMediaPlayer=always\nCSSJWMediaPlayer=moseasymediaJWMediaPlayer.css\nocsmem_MediaSharingWebsitesUsingJWMediaPlayer=\nplayerJWMP3Player=JWMP3Player\nclassidJWMP3Player=CLSID:d27cdb6e-ae6d-11cf-96b8-444553540000\ncodebaseJWMP3Player=http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\npluginspageJWMP3Player=http://www.macromedia.com/go/getflashplayer\nstandbyJWMP3Player=Please wait....\nocsmem_UseflashvarsJWMP3Player=swfobjects\nocsmem_ExtensionsJWMP3Player=mp3\ntypeJWMP3Player=application/x-shockwave-flash\nwidthJWMP3Player=300\nheightJWMP3Player=140\ndisplayheightJWMP3Player=100\nlogoJWMP3Player=\nbackcolorJWMP3Player=0xFFFFFF\nfrontcolorJWMP3Player=0x000000\nlightJWMP3Player=0xFFFFFF\noverstretchJWMP3Player=fit\nshownavigationJWMP3Player=\'true\'\nautostartJWMP3Player=\'false\'\nvolumeJWMP3Player=80\nbufferlengthJWMP3Player=3\nrepeatJWMP3Player=list\nlargecontrolsJWMP3Player=\'false\'\nwmodeJWMP3Player=window\nshuffleJWMP3Player=\'false\'\nCSSJWMP3Player=moseasymediaJWMP3Player.css\nallowscriptaccessJWMP3Player=always\nocsmem_MediaSharingWebsitesUsingJWMP3Player=\nplayerXSPFPlayer=XSPFPlayer\nclassidXSPFPlayer=CLSID:d27cdb6e-ae6d-11cf-96b8-444553540000\ncodebaseXSPFPlayer=http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\npluginspageXSPFPlayer=http://www.macromedia.com/go/getflashplayer\nstandbyXSPFPlayer=Please wait....\nocsmem_UseJavascriptXSPFPlayer=1\nocsmem_ExtensionsXSPFPlayer=xspf\ntypeXSPFPlayer=application/x-shockwave-flash\nwidthXSPFPlayer=300\nheightXSPFPlayer=140\nplayer_titleXSPFPlayer=moseasymedia mp3 player\ninfo_button_textXSPFPlayer=\nocsmem_modeXSPFPlayer=extended\nautoplayXSPFPlayer=true\nrepeat_playlistXSPFPlayer=false\nCSSXSPFPlayer=moseasymediaXSPFPlayer.css\nocsmem_MediaSharingWebsitesUsingXSPFPlayer='),(25,'TitleLink','titlelink','content',0,0,1,0,0,0,'0000-00-00 00:00:00','');
/*!40000 ALTER TABLE `jos_mambots` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_menu`
--
DROP TABLE IF EXISTS `jos_menu`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_menu` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`menutype` varchar(25) DEFAULT NULL,
`name` varchar(100) DEFAULT NULL,
`link` text DEFAULT NULL,
`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,
PRIMARY KEY (`id`),
KEY `componentid` (`componentid`,`menutype`,`published`,`access`),
KEY `menutype` (`menutype`)
) ENGINE=MyISAM AUTO_INCREMENT=39 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_menu`
--
LOCK TABLES `jos_menu` WRITE;
/*!40000 ALTER TABLE `jos_menu` DISABLE KEYS */;
INSERT INTO `jos_menu` VALUES (1,'mainmenu','Home','index.php?option=com_frontpage','components',1,0,10,0,1,0,'0000-00-00 00:00:00',0,0,0,3,'leading=1\r\nintro=2\r\nlink=1\r\nimage=1\r\npage_title=0\r\nheader=Welcome to the Frontpage\r\norderby_sec=front\r\nprint=0\r\npdf=0\r\nemail=0\r\nback_button=0'),(2,'mainmenu','News','index.php?option=com_content&task=section&id=1','content_section',1,0,1,0,3,0,'0000-00-00 00:00:00',0,0,0,3,''),(3,'mainmenu','Contact Us','index.php?option=com_contact','components',1,0,7,0,6,0,'0000-00-00 00:00:00',0,0,0,3,''),(23,'mainmenu','Links','index.php?option=com_weblinks','components',1,0,4,0,5,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=web_links.jpg\npageclass_sfx=\nback_button=\npage_title=1\nheader=\nheadings=1\nhits=\nitem_description=1\nother_cat=1\ndescription=1\ndescription_text=\nimage=-1\nimage_align=right\nweblink_icons='),(5,'mainmenu','Search','index.php?option=com_search','components',1,0,16,0,7,0,'0000-00-00 00:00:00',0,0,0,3,''),(6,'mainmenu','Joomla! License','index.php?option=com_content&task=view&id=5','content_typed',1,0,5,0,2,0,'0000-00-00 00:00:00',0,0,0,0,''),(7,'mainmenu','News Feeds','index.php?option=com_newsfeeds','components',1,0,12,0,8,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\npageclass_sfx=\nback_button=\npage_title=1\nheader='),(8,'mainmenu','Wrapper','index.php?option=com_wrapper','wrapper',1,0,0,0,10,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\npageclass_sfx=\nback_button=\npage_title=1\nheader=\nscrolling=auto\nwidth=100%\nheight=600\nheight_auto=0\nurl=www.joomla.org'),(9,'mainmenu','Blog','index.php?option=com_content&task=blogsection&id=0','content_blog_section',1,0,0,0,4,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\npageclass_sfx=\nback_button=\nheader=A blog of all sections with no images\npage_title=1\nleading=0\nintro=6\ncolumns=2\nlink=4\norderby_pri=\norderby_sec=\npagination=2\npagination_results=1\nimage=0\ndescription=0\ndescription_image=0\ncategory=0\ncategory_link=0\nitem_title=1\nlink_titles=\nreadmore=\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nsectionid='),(10,'Media Files','Joomla! Home','http://www.joomla.org','url',-2,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''),(11,'Media Files','Joomla! Forums','http://forum.joomla.org','url',-2,0,0,0,2,0,'0000-00-00 00:00:00',0,0,0,3,''),(12,'Media Files','OSM Home','http://www.opensourcematters.org','url',-2,0,0,0,3,0,'0000-00-00 00:00:00',0,0,0,3,''),(24,'Media Files','Administrator','administrator/','url',-2,0,0,0,4,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1'),(21,'usermenu','Your Details','index.php?option=com_user&task=UserDetails','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,1,3,''),(13,'usermenu','Submit News','index.php?option=com_content&task=new&sectionid=1&Itemid=0','url',1,0,0,0,2,0,'0000-00-00 00:00:00',0,0,1,2,''),(14,'usermenu','Submit WebLink','index.php?option=com_weblinks&task=new','url',1,0,0,0,4,0,'0000-00-00 00:00:00',0,0,1,2,''),(15,'usermenu','Check-In My Items','index.php?option=com_user&task=CheckIn','url',1,0,0,0,5,0,'0000-00-00 00:00:00',0,0,1,2,''),(16,'usermenu','Logout','index.php?option=com_login','components',1,0,15,0,5,0,'0000-00-00 00:00:00',0,0,1,3,''),(17,'topmenu','Home','index.php','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,''),(18,'topmenu','Contact Us','mailto: elienana.ak@gmail.com','url',1,0,0,0,7,64,'2020-05-26 09:41:48',0,0,0,3,'menu_image=-1'),(19,'topmenu','News','index.php?option=com_content&task=section&id=1&Itemid=2','url',-2,0,0,0,2,0,'0000-00-00 00:00:00',0,0,0,3,''),(20,'topmenu','Links','index.php?option=com_weblinks&Itemid=23','url',-2,0,0,0,6,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1'),(25,'mainmenu','FAQs','index.php?option=com_content&task=category&sectionid=3&id=7','content_category',1,0,7,0,9,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\npage_title=1\npageclass_sfx=\nback_button=\norderby=\ndate_format=\ndate=\nauthor=\ntitle=1\nhits=\nheadings=1\nnavigation=1\norder_select=1\ndisplay=1\ndisplay_num=50\nfilter=1\nfilter_type=title\nother_cat=1\nempty_cat=0\ncat_items=1\ncat_description=1'),(26,'usermenu','My Comments','index.php?option=com_jomcomment&task=mycomments','url',1,0,0,0,10,0,'0000-00-00 00:00:00',0,0,1,0,'menu_image=-1'),(27,'topmenu','Photos','index.php?option=com_rsgallery2','components',1,0,20,0,5,0,'0000-00-00 00:00:00',0,0,0,0,''),(28,'topmenu','test','index.php?option=com_content&task=blogcategory&id=0','content_blog_category',-2,27,0,0,0,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\npageclass_sfx=\nback_button=\nheader=\npage_title=1\nleading=1\nintro=4\ncolumns=2\nlink=4\norderby_pri=\norderby_sec=\npagination=2\npagination_results=1\nimage=1\ndescription=0\ndescription_image=0\ncategory=0\ncategory_link=0\nitem_title=1\nlink_titles=\nreadmore=\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nunpublished=0\ncategoryid=0'),(29,'topmenu','Biography','index.php?option=com_content&task=blogcategory&id=14','content_blog_category',1,0,14,0,3,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\npageclass_sfx=\nback_button=\nheader=\npage_title=1\nleading=1\nintro=41\ncolumns=1\nlink=4\norderby_pri=\norderby_sec=order\npagination=2\npagination_results=1\nimage=1\ndescription=0\ndescription_image=0\ncategory=0\ncategory_link=0\nitem_title=1\nlink_titles=\nreadmore=\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nunpublished=0\ncategoryid=14'),(30,'topmenu','After his Death','index.php?option=com_content&task=blogcategory&id=15','content_blog_category',1,0,15,0,4,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\npageclass_sfx=\nback_button=\nheader=\npage_title=1\nleading=1\nintro=14\ncolumns=1\nlink=4\norderby_pri=order\norderby_sec=\npagination=2\npagination_results=1\nimage=1\ndescription=0\ndescription_image=0\ncategory=0\ncategory_link=0\nitem_title=1\nlink_titles=\nreadmore=\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nunpublished=0\ncategoryid=15'),(31,'topmenu','Arabic','index.php?option=com_content&task=blogsection&id=5','content_blog_section',1,0,5,0,10,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\npageclass_sfx=\nback_button=\nheader=\npage_title=1\nleading=1\nintro=4\ncolumns=1\nlink=4\norderby_pri=\norderby_sec=\npagination=2\npagination_results=1\nimage=1\ndescription=0\ndescription_image=0\ncategory=0\ncategory_link=0\nitem_title=1\nlink_titles=\nreadmore=\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nunpublished=0\nsectionid=5'),(32,'topmenu','Media','index.php?option=com_content&task=section&id=6','content_section',1,0,6,0,8,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\npage_title=1\npageclass_sfx=\nback_button=\ndescription_sec=1\ndescription_sec_image=1\norderby=\nother_cat_section=1\nempty_cat_section=0\ndescription_cat=1\ndescription_cat_image=1\nother_cat=1\nempty_cat=0\ncat_items=1\ncat_description=1\ndate_format=\ndate=\nauthor=\nhits=\nheadings=1\nnavigation=1\norder_select=1\ndisplay=1\ndisplay_num=50\nfilter=1\nfilter_type=title\nunpublished=1'),(33,'topmenu','Video','index.php?option=com_content&task=blogcategory&id=17','content_blog_category',1,32,17,0,1,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\npageclass_sfx=\nback_button=\nheader=\npage_title=1\nleading=1\nintro=11\ncolumns=1\nlink=4\norderby_pri=\norderby_sec=\npagination=2\npagination_results=1\nimage=1\ndescription=0\ndescription_image=0\ncategory=0\ncategory_link=0\nitem_title=1\nlink_titles=\nreadmore=\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nunpublished=0\ncategoryid=17'),(34,'Media Files','Video','index.php?option=com_content&task=blogcategory&id=17','content_blog_category',1,0,17,0,5,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\npageclass_sfx=\nback_button=\nheader=\npage_title=1\nleading=1\nintro=0\ncolumns=0\nlink=11\norderby_pri=\norderby_sec=\npagination=2\npagination_results=1\nimage=1\ndescription=0\ndescription_image=0\ncategory=0\ncategory_link=0\nitem_title=1\nlink_titles=\nreadmore=\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nunpublished=0\ncategoryid=17'),(35,'Media Files','Audio','index.php?option=com_content&task=blogcategory&id=18','content_blog_category',1,0,18,0,6,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\npageclass_sfx=\nback_button=\nheader=\npage_title=1\nleading=1\nintro=4\ncolumns=2\nlink=4\norderby_pri=\norderby_sec=\npagination=2\npagination_results=1\nimage=1\ndescription=0\ndescription_image=0\ncategory=0\ncategory_link=0\nitem_title=1\nlink_titles=\nreadmore=\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nunpublished=0\ncategoryid=18'),(36,'Media Files','Photo Gallery','index.php?option=com_rsgallery2','components',1,0,20,0,7,0,'0000-00-00 00:00:00',0,0,0,0,''),(37,'topmenu','Francais','index.php?option=com_content&task=blogcategory&id=20','content_blog_category',1,0,20,0,9,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\npageclass_sfx=\nback_button=\nheader=\npage_title=1\nleading=1\nintro=11\ncolumns=1\nlink=4\norderby_pri=\norderby_sec=\npagination=2\npagination_results=1\nimage=1\ndescription=0\ndescription_image=0\ncategory=0\ncategory_link=0\nitem_title=1\nlink_titles=\nreadmore=\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nunpublished=0\ncategoryid=20'),(38,'Media Files','Temoignages','index.php?option=com_content&task=blogcategory&id=21','content_blog_category',1,0,21,0,8,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\npageclass_sfx=\nback_button=\nheader=\npage_title=1\nleading=1\nintro=16\ncolumns=2\nlink=4\norderby_pri=\norderby_sec=\npagination=2\npagination_results=1\nimage=1\ndescription=0\ndescription_image=0\ncategory=0\ncategory_link=0\nitem_title=1\nlink_titles=\nreadmore=\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\nunpublished=0\ncategoryid=21');
/*!40000 ALTER TABLE `jos_menu` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_messages`
--
DROP TABLE IF EXISTS `jos_messages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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` varchar(230) NOT NULL DEFAULT '',
`message` text NOT NULL,
PRIMARY KEY (`message_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_messages`
--
LOCK TABLES `jos_messages` WRITE;
/*!40000 ALTER TABLE `jos_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `jos_messages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_messages_cfg`
--
DROP TABLE IF EXISTS `jos_messages_cfg`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_messages_cfg`
--
LOCK TABLES `jos_messages_cfg` WRITE;
/*!40000 ALTER TABLE `jos_messages_cfg` DISABLE KEYS */;
/*!40000 ALTER TABLE `jos_messages_cfg` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_modules`
--
DROP TABLE IF EXISTS `jos_modules`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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(10) 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,
PRIMARY KEY (`id`),
KEY `published` (`published`,`access`),
KEY `newsfeeds` (`module`,`published`)
) ENGINE=MyISAM AUTO_INCREMENT=36 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_modules`
--
LOCK TABLES `jos_modules` WRITE;
/*!40000 ALTER TABLE `jos_modules` DISABLE KEYS */;
INSERT INTO `jos_modules` VALUES (1,'Polls','',1,'right',0,'0000-00-00 00:00:00',1,'mod_poll',0,0,1,'',0,0),(2,'topmenu','',1,'top',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,0,'class_sfx=-nav\nmoduleclass_sfx=\nmenutype=topmenu\nmenu_style=list_flat\nfull_active_id=0\ncache=0\nmenu_images=0\nmenu_images_align=0\nexpand_menu=0\nactivate_parent=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=',1,0),(3,'Main Menu','',1,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,1,'class_sfx=\nmoduleclass_sfx=\nmenutype=mainmenu\nmenu_style=vert_indent\nfull_active_id=0\ncache=0\nmenu_images=0\nmenu_images_align=0\nexpand_menu=0\nactivate_parent=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=',1,0),(4,'Login Form','',4,'left',0,'0000-00-00 00:00:00',1,'mod_login',0,0,1,'',1,0),(5,'Syndicate','',5,'left',0,'0000-00-00 00:00:00',1,'mod_rssfeed',0,0,1,'',1,0),(6,'Latest News','',2,'user1',0,'0000-00-00 00:00:00',0,'mod_latestnews',0,0,1,'',1,0),(7,'Statistics','',6,'left',64,'2014-07-21 01:53:42',0,'mod_stats',0,0,1,'serverinfo=1\nsiteinfo=1\ncounter=1\nincrease=0\nmoduleclass_sfx=',0,0),(8,'Who\'s Online','',3,'right',0,'0000-00-00 00:00:00',1,'mod_whosonline',0,0,1,'online=1\nusers=1\nmoduleclass_sfx=',0,0),(9,'Popular','',6,'user2',0,'0000-00-00 00:00:00',0,'mod_mostread',0,0,1,'',0,0),(10,'Template Chooser','',7,'left',0,'0000-00-00 00:00:00',0,'mod_templatechooser',0,0,1,'show_preview=1',0,0),(11,'Archive','',8,'left',0,'0000-00-00 00:00:00',0,'mod_archive',0,0,1,'',1,0),(12,'Sections','',9,'left',0,'0000-00-00 00:00:00',0,'mod_sections',0,0,1,'',1,0),(13,'Newsflash','',1,'user3',0,'0000-00-00 00:00:00',0,'mod_newsflash',0,0,1,'catid=3\nstyle=random\nimage=0\nlink_titles=\nreadmore=0\nitem_title=0\nitems=\ncache=0\nmoduleclass_sfx=',0,0),(14,'Related Items','',10,'left',0,'0000-00-00 00:00:00',0,'mod_related_items',0,0,1,'',0,0),(15,'Search','',1,'user4',0,'0000-00-00 00:00:00',1,'mod_search',0,0,0,'',0,0),(16,'Random Image','',4,'right',0,'0000-00-00 00:00:00',1,'mod_random_image',0,0,1,'',0,0),(17,'Media Files','',1,'user1',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,1,'class_sfx=\nmoduleclass_sfx=\nmenutype=Media Files\nmenu_style=list_flat\nfull_active_id=0\ncache=0\nmenu_images=0\nmenu_images_align=0\nexpand_menu=0\nactivate_parent=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=',1,0),(18,'Banners','',1,'banner',0,'0000-00-00 00:00:00',1,'mod_banners',0,0,0,'banner_cids=\nmoduleclass_sfx=\n',1,0),(19,'Components','',2,'cpanel',0,'0000-00-00 00:00:00',1,'mod_components',0,99,1,'',1,1),(20,'Popular','',3,'cpanel',0,'0000-00-00 00:00:00',1,'mod_popular',0,99,1,'',0,1),(21,'Latest Items','',4,'cpanel',0,'0000-00-00 00:00:00',1,'mod_latest',0,99,1,'',0,1),(22,'Menu Stats','',5,'cpanel',0,'0000-00-00 00:00:00',1,'mod_stats',0,99,1,'',0,1),(23,'Unread Messages','',1,'header',0,'0000-00-00 00:00:00',1,'mod_unread',0,99,1,'',1,1),(24,'Online Users','',2,'header',0,'0000-00-00 00:00:00',1,'mod_online',0,99,1,'',1,1),(25,'Full Menu','',1,'top',0,'0000-00-00 00:00:00',1,'mod_fullmenu',0,99,1,'',1,1),(26,'Pathway','',1,'pathway',0,'0000-00-00 00:00:00',1,'mod_pathway',0,99,1,'',1,1),(27,'Toolbar','',1,'toolbar',0,'0000-00-00 00:00:00',1,'mod_toolbar',0,99,1,'',1,1),(28,'System Message','',1,'inset',0,'0000-00-00 00:00:00',1,'mod_mosmsg',0,99,1,'',1,1),(29,'Quick Icons','',1,'icon',0,'0000-00-00 00:00:00',1,'mod_quickicon',0,99,1,'',1,1),(30,'Other Menu','',3,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,0,'menutype=Media Files\nmenu_style=vert_indent\ncache=0\nmenu_images=0\nmenu_images_align=0\nexpand_menu=0\nclass_sfx=\nmoduleclass_sfx=\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=',0,0),(31,'Wrapper','',11,'left',0,'0000-00-00 00:00:00',0,'mod_wrapper',0,0,1,'',0,0),(32,'Logged','',0,'cpanel',0,'0000-00-00 00:00:00',1,'mod_logged',0,99,1,'',0,1),(33,'Nice Talk Tags','',12,'left',0,'0000-00-00 00:00:00',0,'mod_nicetalktags',0,0,1,'',0,0),(34,'JW Tabs & Slides Module','',13,'left',0,'0000-00-00 00:00:00',0,'mod_jw_ts',0,0,1,'',0,0),(35,'Extended Menu','',2,'top',0,'0000-00-00 00:00:00',0,'mod_exmenu',0,0,0,'class_sfx=-suckerfish\nmoduleclass_sfx=-\ncache=0\nmenutype=topmenu\nmenu_source_type=menu_auto_expanded\nmenu_source_value=\nmenu_source_show_section=default\nmenu_source_show_category=default\nmenu_source_show_content_item=default\nmenu_source_order=ordering\ndefault_content_itemid=\nmenu_style=vert_indent\nmenu_view_plugin_name=\nmenu_images=0\nexpand_menu=0\nexpand_min=\nmax_depth=10\nhide_first=0\nshow_parent=0\nparent_item=\ncurrent_level_begin=0\nlevel_begin=\nsplit_menu=\nmenu_count=1\nquery_cache=0\nparse_access_key=3\ntitle_attribute=0\nlevel_class=0\nactive_menu_class=0\nelement_id=0\nmenu_template=1\nmenu_template_name=menu.html\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=\nselect_list_submit_text=Go\nselect_list_submit_hide=0\ncall_getitemid=1\ncurrent_item=smart\ncurrent_item_duplicates=convert_active\naccess_keys=\nexact_access_level=0',0,0);
/*!40000 ALTER TABLE `jos_modules` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_modules_menu`
--
DROP TABLE IF EXISTS `jos_modules_menu`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_modules_menu`
--
LOCK TABLES `jos_modules_menu` WRITE;
/*!40000 ALTER TABLE `jos_modules_menu` DISABLE KEYS */;
INSERT INTO `jos_modules_menu` VALUES (1,1),(2,0),(3,0),(4,1),(5,1),(6,1),(6,2),(6,4),(6,27),(6,36),(8,1),(9,1),(9,2),(9,4),(9,27),(9,36),(10,1),(13,0),(15,0),(17,0),(18,0),(30,0),(33,0),(34,0),(35,0);
/*!40000 ALTER TABLE `jos_modules_menu` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_newsfeeds`
--
DROP TABLE IF EXISTS `jos_newsfeeds`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_newsfeeds` (
`catid` int(11) NOT NULL DEFAULT 0,
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` text NOT NULL,
`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,
PRIMARY KEY (`id`),
KEY `published` (`published`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_newsfeeds`
--
LOCK TABLES `jos_newsfeeds` WRITE;
/*!40000 ALTER TABLE `jos_newsfeeds` DISABLE KEYS */;
INSERT INTO `jos_newsfeeds` VALUES (4,1,'Joomla! - Official News','http://www.joomla.org/index.php?option=com_rss_xtd&feed=RSS2.0&type=com_frontpage&Itemid=1','',1,5,3600,0,'0000-00-00 00:00:00',8),(4,2,'Joomla! - Community News','http://www.joomla.org/index.php?option=com_rss_xtd&feed=RSS2.0&type=com_content&task=blogcategory&id=0&Itemid=33','',1,5,3600,0,'0000-00-00 00:00:00',9),(10,4,'Linux Today','http://linuxtoday.com/backend/my-netscape.rdf','',1,3,3600,0,'0000-00-00 00:00:00',1),(5,5,'Business News','http://headlines.internet.com/internetnews/bus-news/news.rss','',1,3,3600,0,'0000-00-00 00:00:00',2),(11,6,'Web Developer News','http://headlines.internet.com/internetnews/wd-news/news.rss','',1,3,3600,0,'0000-00-00 00:00:00',3),(10,7,'Linux Central:New Products','http://linuxcentral.com/backend/lcnew.rdf','',1,3,3600,0,'0000-00-00 00:00:00',4),(10,8,'Linux Central:Best Selling','http://linuxcentral.com/backend/lcbestns.rdf','',1,3,3600,0,'0000-00-00 00:00:00',5),(10,9,'Linux Central:Daily Specials','http://linuxcentral.com/backend/lcspecialns.rdf','',1,3,3600,0,'0000-00-00 00:00:00',6),(9,10,'Internet:Finance News','http://headlines.internet.com/internetnews/fina-news/news.rss','',1,3,3600,0,'0000-00-00 00:00:00',7);
/*!40000 ALTER TABLE `jos_newsfeeds` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_poll_data`
--
DROP TABLE IF EXISTS `jos_poll_data`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_poll_data` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`pollid` int(4) 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 AUTO_INCREMENT=13 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_poll_data`
--
LOCK TABLES `jos_poll_data` WRITE;
/*!40000 ALTER TABLE `jos_poll_data` DISABLE KEYS */;
INSERT INTO `jos_poll_data` VALUES (1,14,'Absolutely simple',1),(2,14,'Reasonably easy',0),(3,14,'Not straight-forward but I worked it out',0),(4,14,'I had to install extra server stuff',0),(5,14,'I had no idea and got my friend to do it',0),(6,14,'My dog ran away with the README ...',0),(7,14,'',0),(8,14,'',0),(9,14,'',0),(10,14,'',0),(11,14,'',0),(12,14,'',0);
/*!40000 ALTER TABLE `jos_poll_data` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_poll_date`
--
DROP TABLE IF EXISTS `jos_poll_date`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_poll_date`
--
LOCK TABLES `jos_poll_date` WRITE;
/*!40000 ALTER TABLE `jos_poll_date` DISABLE KEYS */;
/*!40000 ALTER TABLE `jos_poll_date` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_poll_menu`
--
DROP TABLE IF EXISTS `jos_poll_menu`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_poll_menu`
--
LOCK TABLES `jos_poll_menu` WRITE;
/*!40000 ALTER TABLE `jos_poll_menu` DISABLE KEYS */;
INSERT INTO `jos_poll_menu` VALUES (14,1);
/*!40000 ALTER TABLE `jos_poll_menu` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_polls`
--
DROP TABLE IF EXISTS `jos_polls`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_polls` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(100) 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 AUTO_INCREMENT=15 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_polls`
--
LOCK TABLES `jos_polls` WRITE;
/*!40000 ALTER TABLE `jos_polls` DISABLE KEYS */;
INSERT INTO `jos_polls` VALUES (14,'This Joomla! installation was ....',1,0,'0000-00-00 00:00:00',1,0,86400);
/*!40000 ALTER TABLE `jos_polls` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_rsgallery2_acl`
--
DROP TABLE IF EXISTS `jos_rsgallery2_acl`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_rsgallery2_acl` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`gallery_id` int(11) NOT NULL DEFAULT 0,
`parent_id` int(11) NOT NULL DEFAULT 0,
`public_view` tinyint(1) NOT NULL DEFAULT 1,
`public_up_mod_img` tinyint(1) NOT NULL DEFAULT 0,
`public_del_img` tinyint(1) NOT NULL DEFAULT 0,
`public_create_mod_gal` tinyint(1) NOT NULL DEFAULT 0,
`public_del_gal` tinyint(1) NOT NULL DEFAULT 0,
`registered_view` tinyint(1) NOT NULL DEFAULT 1,
`registered_up_mod_img` tinyint(1) NOT NULL DEFAULT 1,
`registered_del_img` tinyint(1) NOT NULL DEFAULT 0,
`registered_create_mod_gal` tinyint(1) NOT NULL DEFAULT 1,
`registered_del_gal` tinyint(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_rsgallery2_acl`
--
LOCK TABLES `jos_rsgallery2_acl` WRITE;
/*!40000 ALTER TABLE `jos_rsgallery2_acl` DISABLE KEYS */;
/*!40000 ALTER TABLE `jos_rsgallery2_acl` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_rsgallery2_comments`
--
DROP TABLE IF EXISTS `jos_rsgallery2_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_rsgallery2_comments` (
`id` int(9) unsigned NOT NULL AUTO_INCREMENT,
`picid` int(9) unsigned NOT NULL DEFAULT 0,
`name` varchar(50) NOT NULL DEFAULT '',
`comment` text NOT NULL,
`date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_rsgallery2_comments`
--
LOCK TABLES `jos_rsgallery2_comments` WRITE;
/*!40000 ALTER TABLE `jos_rsgallery2_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `jos_rsgallery2_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_rsgallery2_config`
--
DROP TABLE IF EXISTS `jos_rsgallery2_config`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_rsgallery2_config` (
`id` int(9) unsigned NOT NULL AUTO_INCREMENT,
`name` text NOT NULL,
`value` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=54 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_rsgallery2_config`
--
LOCK TABLES `jos_rsgallery2_config` WRITE;
/*!40000 ALTER TABLE `jos_rsgallery2_config` DISABLE KEYS */;
INSERT INTO `jos_rsgallery2_config` VALUES (1,'acl_enabled','0'),(2,'allowedFileTypes','jpg,jpeg,gif,png'),(3,'createImgDirs',''),(4,'debug',''),(5,'dispLimitbox','1'),(6,'displayBranding','1'),(7,'displayComments','0'),(8,'displayDesc','0'),(9,'displayDownload','0'),(10,'displayEXIF','0'),(11,'displayHits','0'),(12,'displayLatest','1'),(13,'displayPopup','2'),(14,'displayRandom','1'),(15,'displaySlideshow','1'),(16,'displayStatus','0'),(17,'displayVoting','0'),(18,'display_img_dynamicResize','0'),(19,'display_thumbs_colsPerPage','3'),(20,'display_thumbs_floatDirection','left'),(21,'display_thumbs_maxPerPage','9'),(22,'display_thumbs_showImgName','1'),(23,'display_thumbs_style','table'),(24,'ftp_path',''),(25,'galcountNrs','5'),(26,'graphicsLib','gd2'),(27,'imageMagick_path',''),(28,'image_width','400'),(29,'imgPath_display','/images/rsgallery/display'),(30,'imgPath_original','/images/rsgallery/original'),(31,'imgPath_thumb','/images/rsgallery/thumb'),(32,'intro_text',''),(33,'jpegQuality','85'),(34,'keepOriginalImage','1'),(35,'netpbm_path',''),(36,'show_mygalleries','0'),(37,'template','tables'),(38,'thumb_style','1'),(39,'thumb_width','80'),(40,'uu_createCat','0'),(41,'uu_enabled','0'),(42,'uu_maxCat','5'),(43,'uu_maxImages','50'),(44,'version','1.13.1'),(45,'watermark','0'),(46,'watermark_angle','0'),(47,'watermark_font','arial.ttf'),(48,'watermark_font_size','20'),(49,'watermark_image','watermark.png'),(50,'watermark_position','5'),(51,'watermark_text','(c) 2007 - RSGallery2'),(52,'watermark_transparency','50'),(53,'watermark_type','text');
/*!40000 ALTER TABLE `jos_rsgallery2_config` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_rsgallery2_files`
--
DROP TABLE IF EXISTS `jos_rsgallery2_files`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_rsgallery2_files` (
`id` int(9) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL DEFAULT '',
`descr` text DEFAULT NULL,
`gallery_id` int(9) unsigned NOT NULL DEFAULT 0,
`title` varchar(50) NOT NULL DEFAULT '',
`hits` int(11) unsigned NOT NULL DEFAULT 0,
`date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`rating` int(10) unsigned NOT NULL DEFAULT 0,
`votes` int(10) unsigned NOT NULL DEFAULT 0,
`comments` int(10) unsigned NOT NULL DEFAULT 0,
`published` tinyint(1) NOT NULL DEFAULT 1,
`checked_out` int(11) NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`ordering` int(9) unsigned NOT NULL DEFAULT 0,
`approved` tinyint(1) unsigned NOT NULL DEFAULT 1,
`userid` int(10) NOT NULL DEFAULT 0,
`params` text NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UK_name` (`name`),
KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_rsgallery2_files`
--
LOCK TABLES `jos_rsgallery2_files` WRITE;
/*!40000 ALTER TABLE `jos_rsgallery2_files` DISABLE KEYS */;
INSERT INTO `jos_rsgallery2_files` VALUES (2,'1.png','',1,'1',0,'2007-11-12 22:54:52',0,0,0,1,0,'0000-00-00 00:00:00',1,1,62,''),(3,'2.png','',1,'2',0,'2007-11-12 22:55:24',0,0,0,1,0,'0000-00-00 00:00:00',2,1,62,''),(4,'3.png','',1,'3',0,'2007-11-12 22:55:48',0,0,0,1,0,'0000-00-00 00:00:00',3,1,62,''),(5,'4.png','',1,'4',0,'2007-11-12 22:56:15',0,0,0,1,0,'0000-00-00 00:00:00',4,1,62,''),(6,'5.png','',1,'5',0,'2007-11-12 22:56:40',0,0,0,1,0,'0000-00-00 00:00:00',5,1,62,''),(7,'6.png','',1,'6',0,'2007-11-12 22:57:54',0,0,0,1,0,'0000-00-00 00:00:00',6,1,62,''),(8,'7.png','',1,'7',0,'2007-11-12 22:58:30',0,0,0,1,0,'0000-00-00 00:00:00',7,1,62,''),(9,'8.png','',1,'8',0,'2007-11-12 22:59:02',0,0,0,1,0,'0000-00-00 00:00:00',8,1,62,''),(10,'9.png','',1,'9',0,'2007-11-12 22:59:30',0,0,0,1,0,'0000-00-00 00:00:00',9,1,62,''),(11,'10.png','',1,'10',0,'2007-11-12 22:59:58',0,0,0,1,0,'0000-00-00 00:00:00',10,1,62,''),(12,'11.png','',1,'11',0,'2007-11-12 23:01:30',0,0,0,1,0,'0000-00-00 00:00:00',11,1,62,''),(13,'12.png','',1,'12',0,'2007-11-12 23:01:51',0,0,0,1,0,'0000-00-00 00:00:00',12,1,62,''),(14,'13.png','',1,'13',0,'2007-11-12 23:02:16',0,0,0,1,0,'0000-00-00 00:00:00',13,1,62,''),(15,'14.png','',1,'14',0,'2007-11-12 23:02:39',0,0,0,1,0,'0000-00-00 00:00:00',14,1,62,''),(16,'15.png','',1,'15',0,'2007-11-12 23:03:02',0,0,0,1,0,'0000-00-00 00:00:00',15,1,62,''),(17,'16.png','',1,'16',0,'2007-11-12 23:03:47',0,0,0,1,0,'0000-00-00 00:00:00',16,1,62,''),(18,'17.png','',1,'17',0,'2007-11-12 23:04:08',0,0,0,1,0,'0000-00-00 00:00:00',17,1,62,''),(19,'18.png','',1,'18',0,'2007-11-12 23:04:31',0,0,0,1,0,'0000-00-00 00:00:00',18,1,62,'');
/*!40000 ALTER TABLE `jos_rsgallery2_files` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_rsgallery2_galleries`
--
DROP TABLE IF EXISTS `jos_rsgallery2_galleries`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_rsgallery2_galleries` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`parent` int(11) NOT NULL DEFAULT 0,
`name` varchar(255) 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,
`date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`hits` int(11) NOT NULL DEFAULT 0,
`params` text NOT NULL,
`user` tinyint(4) NOT NULL DEFAULT 0,
`uid` int(11) unsigned NOT NULL DEFAULT 0,
`allowed` varchar(100) NOT NULL DEFAULT '0',
`thumb_id` int(11) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_rsgallery2_galleries`
--
LOCK TABLES `jos_rsgallery2_galleries` WRITE;
/*!40000 ALTER TABLE `jos_rsgallery2_galleries` DISABLE KEYS */;
INSERT INTO `jos_rsgallery2_galleries` VALUES (1,0,'Gallery 1','',1,0,'0000-00-00 00:00:00',1,'2007-11-12 22:34:31',6211,'voting_view=global',0,0,'0',0);
/*!40000 ALTER TABLE `jos_rsgallery2_galleries` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_sections`
--
DROP TABLE IF EXISTS `jos_sections`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_sections` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(50) NOT NULL DEFAULT '',
`name` varchar(255) NOT NULL DEFAULT '',
`image` varchar(100) NOT NULL DEFAULT '',
`scope` varchar(50) NOT NULL DEFAULT '',
`image_position` varchar(10) 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 AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_sections`
--
LOCK TABLES `jos_sections` WRITE;
/*!40000 ALTER TABLE `jos_sections` DISABLE KEYS */;
INSERT INTO `jos_sections` VALUES (1,'News','The News','articles.jpg','content','right','Select a news topic from the list below, then select a news article to read.',1,0,'0000-00-00 00:00:00',4,0,1,''),(2,'Newsflashes','Newsflashes','','content','left','',1,0,'0000-00-00 00:00:00',5,0,1,''),(3,'FAQs','Frequently Asked Questions','pastarchives.jpg','content','left','From the list below choose one of our FAQs topics, then select an FAQ to read. If you have a question which is not in this section, please contact us.',1,0,'0000-00-00 00:00:00',6,0,1,''),(4,'Elie Karouny','Elie Karouny','','content','left','',1,0,'0000-00-00 00:00:00',3,0,3,'imagefolders=*1*'),(5,'Arabic','Arabic','','content','left','',1,0,'0000-00-00 00:00:00',2,0,1,'imagefolders=*1*'),(6,'Media Files','Media Files','','content','left','',1,0,'0000-00-00 00:00:00',1,0,5,'imagefolders=*1*');
/*!40000 ALTER TABLE `jos_sections` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_session`
--
DROP TABLE IF EXISTS `jos_session`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_session` (
`username` varchar(50) 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,
PRIMARY KEY (`session_id`),
KEY `whosonline` (`guest`,`usertype`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_session`
--
LOCK TABLES `jos_session` WRITE;
/*!40000 ALTER TABLE `jos_session` DISABLE KEYS */;
INSERT INTO `jos_session` VALUES ('rima','1590486108','3d2ad1102eccb98f72314165f13cee23',1,64,'Super Administrator',0),('','1718879584','eb268b1b0c5e959b7f04aedd848ce909',1,0,'',0),('','1718878844','fac96809a54a842279ddca6591ca014f',1,0,'',0);
/*!40000 ALTER TABLE `jos_session` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_stats_agents`
--
DROP TABLE IF EXISTS `jos_stats_agents`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_stats_agents`
--
LOCK TABLES `jos_stats_agents` WRITE;
/*!40000 ALTER TABLE `jos_stats_agents` DISABLE KEYS */;
/*!40000 ALTER TABLE `jos_stats_agents` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_template_positions`
--
DROP TABLE IF EXISTS `jos_template_positions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_template_positions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`position` varchar(10) NOT NULL DEFAULT '',
`description` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=28 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_template_positions`
--
LOCK TABLES `jos_template_positions` WRITE;
/*!40000 ALTER TABLE `jos_template_positions` DISABLE KEYS */;
INSERT INTO `jos_template_positions` VALUES (1,'left',''),(2,'right',''),(3,'top',''),(4,'bottom',''),(5,'inset',''),(6,'banner',''),(7,'header',''),(8,'footer',''),(9,'newsflash',''),(10,'legals',''),(11,'pathway',''),(12,'toolbar',''),(13,'cpanel',''),(14,'user1',''),(15,'user2',''),(16,'user3',''),(17,'user4',''),(18,'user5',''),(19,'user6',''),(20,'user7',''),(21,'user8',''),(22,'user9',''),(23,'advert1',''),(24,'advert2',''),(25,'advert3',''),(26,'icon',''),(27,'debug','');
/*!40000 ALTER TABLE `jos_template_positions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_templates_menu`
--
DROP TABLE IF EXISTS `jos_templates_menu`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_templates_menu` (
`template` varchar(50) NOT NULL DEFAULT '',
`menuid` int(11) NOT NULL DEFAULT 0,
`client_id` tinyint(4) NOT NULL DEFAULT 0,
PRIMARY KEY (`template`,`menuid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_templates_menu`
--
LOCK TABLES `jos_templates_menu` WRITE;
/*!40000 ALTER TABLE `jos_templates_menu` DISABLE KEYS */;
INSERT INTO `jos_templates_menu` VALUES ('js_nova',0,0),('joomla_admin',0,1);
/*!40000 ALTER TABLE `jos_templates_menu` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_users`
--
DROP TABLE IF EXISTS `jos_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL DEFAULT '',
`username` varchar(25) 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`)
) ENGINE=MyISAM AUTO_INCREMENT=66 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_users`
--
LOCK TABLES `jos_users` WRITE;
/*!40000 ALTER TABLE `jos_users` DISABLE KEYS */;
INSERT INTO `jos_users` VALUES (62,'Administrator','arze','info@arznet.com','64b0752f0fd111eea7c0dfa96a3b7ba9:gU4Gt1mJ2ES87ddx','Super Administrator',0,1,25,'2007-10-23 09:53:29','2008-07-29 23:07:11','','editor=\nexpired=index2.php?option=com_content&sectionid=6&task=edit&hidemainmenu=1&id=38\nexpired_time=1268315873'),(63,'Emile Elliye','elliye','arze@arznet.com','2c727b40e7e8b87ecd7d4adcb8e8d20d:HlOJ0vlNIDcGUluo','Super Administrator',0,0,25,'2007-11-12 22:53:33','2009-10-01 15:13:30','','editor=\nexpired=\nexpired_time='),(64,'rima','rima','rima.t@ositcom.net','a37f6ea1347506c5c5fae4340648b83f:XaTLkfZRnm9pOBWc','Super Administrator',0,0,25,'2009-10-01 15:11:48','2012-08-09 16:07:23','','editor=\nexpired=\nexpired_time=');
/*!40000 ALTER TABLE `jos_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_usertypes`
--
DROP TABLE IF EXISTS `jos_usertypes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_usertypes` (
`id` tinyint(3) unsigned NOT NULL DEFAULT 0,
`name` varchar(50) NOT NULL DEFAULT '',
`mask` varchar(11) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_usertypes`
--
LOCK TABLES `jos_usertypes` WRITE;
/*!40000 ALTER TABLE `jos_usertypes` DISABLE KEYS */;
INSERT INTO `jos_usertypes` VALUES (0,'superadministrator',''),(1,'administrator',''),(2,'editor',''),(3,'user',''),(4,'author',''),(5,'publisher',''),(6,'manager','');
/*!40000 ALTER TABLE `jos_usertypes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jos_weblinks`
--
DROP TABLE IF EXISTS `jos_weblinks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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 '',
`url` varchar(250) NOT NULL DEFAULT '',
`description` varchar(250) NOT NULL DEFAULT '',
`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 AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jos_weblinks`
--
LOCK TABLES `jos_weblinks` WRITE;
/*!40000 ALTER TABLE `jos_weblinks` DISABLE KEYS */;
INSERT INTO `jos_weblinks` VALUES (1,2,0,'Joomla!','http://www.joomla.org','Home of Joomla!','2005-02-14 15:19:02',160,1,0,'0000-00-00 00:00:00',1,0,1,'target=0'),(2,2,0,'php.net','http://www.php.net','The language that Joomla! is developed in','2004-07-07 11:33:24',108,1,0,'0000-00-00 00:00:00',3,0,1,''),(3,2,0,'MySQL','http://www.mysql.com','The database that Joomla! uses','2004-07-07 10:18:31',114,1,0,'0000-00-00 00:00:00',5,0,1,''),(4,2,0,'OpenSourceMatters','http://www.opensourcematters.org','Home of OSM','2005-02-14 15:19:02',81,1,0,'0000-00-00 00:00:00',1,0,1,'target=0'),(5,2,0,'Joomla! - Forums','http://forum.joomla.org','Joomla! Forums','2005-02-14 15:19:02',120,1,0,'0000-00-00 00:00:00',1,0,1,'target=0');
/*!40000 ALTER TABLE `jos_weblinks` ENABLE KEYS */;
UNLOCK TABLES;
/*!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 */;
-- Dump completed on 2024-06-20 10:59:49