]> git.mxchange.org Git - friendica.git/commitdiff
Merge remote-tracking branch 'upstream/develop' into develop
authorAndyHee <andy@hubup.pro>
Sun, 18 Nov 2018 03:44:32 +0000 (10:44 +0700)
committerAndyHee <andy@hubup.pro>
Sun, 18 Nov 2018 03:44:32 +0000 (10:44 +0700)
42 files changed:
bin/dev/vagrant_provision.sh
database.sql
doc/Accesskeys.md
friendica_test_data.sql
include/api.php
include/items.php
mod/admin.php
mod/dfrn_poll.php
mod/dirfind.php
mod/filerm.php
mod/follow.php
mod/item.php
mod/network.php
mod/noscrape.php
mod/profile.php
mod/pubsubhubbub.php
mod/unfollow.php
src/Core/Console/PostUpdate.php
src/Core/UserImport.php
src/Database/DBStructure.php
src/LegacyModule.php
src/Model/FileTag.php
src/Model/GContact.php
src/Model/Item.php
src/Module/Contact.php
src/Module/Feed.php
src/Module/Login.php
src/Network/CurlResult.php
src/Object/Post.php
src/Protocol/OStatus.php
src/Protocol/PortableContact.php
src/Worker/Delivery.php
src/Worker/RemoveUser.php
view/lang/cs/messages.po
view/lang/cs/strings.php
view/lang/fr/messages.po
view/lang/fr/strings.php
view/lang/pl/messages.po
view/lang/pl/strings.php
view/templates/head.tpl
view/theme/frio/js/theme.js
view/theme/frio/templates/head.tpl

index 0599efa0c5fa44c93a2f17e8d4bc40332d24243b..ac093e7897df2eeddd2f5b44eb6d9eae34890253 100755 (executable)
@@ -89,6 +89,9 @@ php bin/composer.phar install
 #cp /vagrant/util/htconfig.vagrant.php /vagrant/.htconfig.php
 cp /vagrant/util/local.ini.vagrant.php /vagrant/config/local.ini.php
 
+# copy the .htaccess-dist file to .htaccess so that rewrite rules work
+cp /vagrant/.htaccess-dist /vagrant/.htaccess
+
 # create the friendica database
 echo "create database friendica DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci" | $MYSQL -u root -proot
 # import test database
index 2f67a341cccda89eec4d1bea3d507abc93ba141a..9bbc056d62efb63b98be9b6650aad7d6e1735540 100644 (file)
@@ -1,6 +1,6 @@
 -- ------------------------------------------
 -- Friendica 2018.12-dev (The Tazmans Flax-lily)
--- DB_UPDATE_VERSION 1287
+-- DB_UPDATE_VERSION 1290
 -- ------------------------------------------
 
 
@@ -42,6 +42,7 @@ CREATE TABLE IF NOT EXISTS `apcontact` (
        `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
         PRIMARY KEY(`url`),
         INDEX `addr` (`addr`(32)),
+        INDEX `alias` (`alias`(190)),
         INDEX `url` (`followers`(190))
 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='ActivityPub compatible contacts - used in the ActivityPub implementation';
 
@@ -598,7 +599,8 @@ CREATE TABLE IF NOT EXISTS `item-activity` (
        `activity` smallint unsigned NOT NULL DEFAULT 0 COMMENT '',
         PRIMARY KEY(`id`),
         UNIQUE INDEX `uri-hash` (`uri-hash`),
-        INDEX `uri` (`uri`(191))
+        INDEX `uri` (`uri`(191)),
+        INDEX `uri-id` (`uri-id`)
 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Activities for items';
 
 --
@@ -626,7 +628,8 @@ CREATE TABLE IF NOT EXISTS `item-content` (
        `verb` varchar(100) NOT NULL DEFAULT '' COMMENT 'ActivityStreams verb',
         PRIMARY KEY(`id`),
         UNIQUE INDEX `uri-plink-hash` (`uri-plink-hash`),
-        INDEX `uri` (`uri`(191))
+        INDEX `uri` (`uri`(191)),
+        INDEX `uri-id` (`uri-id`)
 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Content for all posts';
 
 --
@@ -1258,7 +1261,10 @@ CREATE TABLE IF NOT EXISTS `workerqueue` (
         INDEX `pid` (`pid`),
         INDEX `parameter` (`parameter`(64)),
         INDEX `priority_created_next_try` (`priority`,`created`,`next_try`),
-        INDEX `done_executed_next_try` (`done`,`executed`,`next_try`)
+        INDEX `done_priority_executed_next_try` (`done`,`priority`,`executed`,`next_try`),
+        INDEX `done_executed_next_try` (`done`,`executed`,`next_try`),
+        INDEX `done_priority_next_try` (`done`,`priority`,`next_try`),
+        INDEX `done_next_try` (`done`,`next_try`)
 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Background tasks queue entries';
 
 
index 8e889fa99c28bee8894d513d9fbddecd966351eb..9158efd58216fd40b26f75a8fa86550011ab5cbf 100644 (file)
@@ -46,6 +46,7 @@ General
 * i - Only show ignored contacts
 * y - Only show archived contacts
 * h - Only show hidden contacts
+* e - Edit contact groups
 
 ../contacts (single contact view)
 -------------------------------
index 390709850e1df0f174cf2b243b650a5866725e1e..3728da7714d0d23b87069d9765c13b520b080dfc 100644 (file)
@@ -1,13 +1,13 @@
--- MySQL dump 10.15  Distrib 10.0.31-MariaDB, for debian-linux-gnu (x86_64)
+-- MySQL dump 10.13  Distrib 5.7.24, for Linux (x86_64)
 --
 -- Host: localhost    Database: friendica
 -- ------------------------------------------------------
--- Server version      10.0.31-MariaDB-0ubuntu0.16.04.2
+-- Server version      5.7.24-0ubuntu0.16.04.1
 
 /*!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 utf8mb4 */;
+/*!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 */;
@@ -23,16 +23,16 @@ DROP TABLE IF EXISTS `addon`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `addon` (
-  `id` int(11) NOT NULL AUTO_INCREMENT,
-  `name` varchar(190) NOT NULL DEFAULT '',
-  `version` varchar(255) NOT NULL DEFAULT '',
-  `installed` tinyint(1) NOT NULL DEFAULT '0',
-  `hidden` tinyint(1) NOT NULL DEFAULT '0',
-  `timestamp` bigint(20) NOT NULL DEFAULT '0',
-  `plugin_admin` tinyint(1) NOT NULL DEFAULT '0',
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `name` varchar(50) NOT NULL DEFAULT '' COMMENT 'addon base (file)name',
+  `version` varchar(50) NOT NULL DEFAULT '' COMMENT 'currently unused',
+  `installed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'currently always 1',
+  `hidden` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'currently unused',
+  `timestamp` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'file timestamp to check for reloads',
+  `plugin_admin` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1 = has admin config, 0 = has no admin config',
   PRIMARY KEY (`id`),
   UNIQUE KEY `name` (`name`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='registered addons';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -44,6 +44,48 @@ LOCK TABLES `addon` WRITE;
 /*!40000 ALTER TABLE `addon` ENABLE KEYS */;
 UNLOCK TABLES;
 
+--
+-- Table structure for table `apcontact`
+--
+
+DROP TABLE IF EXISTS `apcontact`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `apcontact` (
+  `url` varbinary(255) NOT NULL COMMENT 'URL of the contact',
+  `uuid` varchar(255) DEFAULT NULL,
+  `type` varchar(20) NOT NULL,
+  `following` varchar(255) DEFAULT NULL,
+  `followers` varchar(255) DEFAULT NULL,
+  `inbox` varchar(255) NOT NULL,
+  `outbox` varchar(255) DEFAULT NULL,
+  `sharedinbox` varchar(255) DEFAULT NULL,
+  `nick` varchar(255) NOT NULL DEFAULT '',
+  `name` varchar(255) DEFAULT NULL,
+  `about` text,
+  `photo` varchar(255) DEFAULT NULL,
+  `addr` varchar(255) DEFAULT NULL,
+  `alias` varchar(255) DEFAULT NULL,
+  `pubkey` text,
+  `baseurl` varchar(255) DEFAULT NULL COMMENT 'baseurl of the ap contact',
+  `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+  PRIMARY KEY (`url`),
+  KEY `addr` (`addr`(32)),
+  KEY `alias` (`alias`(190)),
+  KEY `url` (`followers`(190))
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='ActivityPub compatible contacts - used in the ActivityPub implementation';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `apcontact`
+--
+
+LOCK TABLES `apcontact` WRITE;
+/*!40000 ALTER TABLE `apcontact` DISABLE KEYS */;
+INSERT INTO `apcontact` VALUES (_binary 'http://192.168.22.10/profile/admin','930bb26b-675b-f00a-1f35-2cc901636033','Person','http://192.168.22.10/following/admin','http://192.168.22.10/followers/admin','http://192.168.22.10/inbox/admin','http://192.168.22.10/outbox/admin','http://192.168.22.10/inbox','admin','admin','','http://192.168.22.10/photo/profile/1.jpg',NULL,NULL,'-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyYmalhhmPJg0qwLjbeoL\nKgykA6idu8HtZkKWPpXZHHD9J0InLId7Ht3G9dSBIBbHpWhaoFHkI06PRaqiT3sY\n4yXPBWDuhnIzzbV5VbxXShzRCe0LzBMhvusf/74sQkqH64g7xsaSBipHHaUEa7yD\nv+xCoGtoSOcqGEBzesSH//sIl94IrkkN+/grb1ZSFFjQYWMLMWMD7Py/awcqOtCB\nJ6NnmcBVMK5CxyV+YN+C+dhUsf+LjvH7WE0uigvTlMG+lGfXHxl4/en8bcAQ/GEr\n1xfbDJuknxr+ckGFZeHtj6Noz1IRD7y+7rlTgbZTmOrCJKg38Br2m3tMGGhIU3t7\nSmrKn8qqf9HuyR83+7Cu+t8x24LuhTjGW2Z6KE5TqYacMu+to58MFH8lDOnoOxHA\nGWpi9kYPXSbO9mLwDNF3pue3bLusvGQnns9h38w8m1Q25nivKKvgVbOrdNaB6wUy\nFIDcqjlZOVIyZ24QWZck77Em/cCkEf1c9kV4f1VjwmyQ4apSPf6q92AHcBlbv7yI\nFhVbGMhEaMIT7PQgxi2F48YInnlNjQlk3yHv3sdjlYJvcHHlf2PsMXlRb1CzrFRf\nX6Uv7e1obwy+SsywkAq+sT4tfsPEw2mIL56cXw0licP2hjOIgzYD1xi8pZx3xsQP\nTjdpqBmCKfnzs+TCZIbXIQ8CAwEAAQ==\n-----END PUBLIC KEY-----',NULL,'2018-11-17 12:34:45'),(_binary 'http://192.168.22.10/profile/friendica1','930bb26b-585b-f00c-1225-b79618332648','Person','http://192.168.22.10/following/friendica1','http://192.168.22.10/followers/friendica1','http://192.168.22.10/inbox/friendica1','http://192.168.22.10/outbox/friendica1','http://192.168.22.10/inbox','friendica1','friendica1','','http://192.168.22.10/photo/profile/2.jpg',NULL,NULL,'-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAmQR1Wmtv2KMZ5f5NTJMf\nRfX+1KXfhCKZaDgtL8/Trtb1ZXLq0tlBVhm29MI1F6cxZFhNlFyW6GZCeZFKX3FP\n2pFw03sEBTo5PCLso18EEl9kXV9cXoBMzINI3jIGnJiawq9PfIw5142jFBLOxiDS\nc/iNG6iFbq2qHwiQJjtp61BCFivIMZaHXqvtroakggjBH3EbRx+rZfeqjB8MRqOc\npXIqjc0lrHk8QGdXeuUAWsL2qUqHVNekLBXPnRcdMT8BxUmtBj0ccZ1IICLPFEzK\nr6DtqH5kE+aq9IcoMIEDjUhnyOAvFda8TlxX8D5SMFbrfJZDTypDqXHnSxHUS0Rd\nX06tLJZxMgqHspkxp6nzxk7JGPHKQmU6N0uqQb+i7dFlgC8QRLi79a1x019dvpAN\nRwbhGnn/pEU9Kn1JbYTAI6irBnHnlAUkpxmwSzRx5ncbNbhbniMD2/39IV1mztUh\nAyc262/cRRJAu8pEsPvc/pSijIyfrxJGYqF/uUcS5gbrY+wCjpYaBdzFxQEcD1Aq\nvXQGxi3sMRY9b1FJ+f3UTB7D9kIBCbwUNOXCjDCrOKZN6nxPLpKnfFsneHleUHa0\n+MRzI/vX78jQ1P4KgxPIiSktfrZitBpyzCC5O4ytiwqF2E8Ei0zE6OL2gm8yv7tB\n00ewnSBHzIpdnS51XuxxmIsCAwEAAQ==\n-----END PUBLIC KEY-----',NULL,'2018-11-17 12:50:07'),(_binary 'http://192.168.22.10/profile/friendica2','930bb26b-155b-f00c-272b-7ee871449332','Person','http://192.168.22.10/following/friendica2','http://192.168.22.10/followers/friendica2','http://192.168.22.10/inbox/friendica2','http://192.168.22.10/outbox/friendica2','http://192.168.22.10/inbox','friendica2','friendica2','','http://192.168.22.10/photo/profile/3.jpg',NULL,NULL,'-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwMWwwjqXtfQmCzLQmZ+D\ntRVdtv1Vq6DdjC/+aEP3UKLpp0nzNcsfT3U8Kejs23o0KpC+EVFXuWZqvxyeHoiZ\n+w9i1roJf2eSLBVeAjiEmLbI7wSfLBu+iA1x+X6+d9wxxAgzM7KHIBOghVCDussz\n4AaojP4Dx3Egsl1w+1j/ULUNCvf1wq9KLMMgJlnemC4cHfv+ObcxdisPezjVD9sg\nnvRLKyv6i8gm8csDwaHtHP6VNxc0JnauU6GIxBrDmlnpKYGb3rl3WLSvuiyzJYrr\nzKESnFINFKRLCG3m548OK+reRBDmgYbsZFJ57FS6YTa63268IwwtlRbRs8n8N7Mi\nO0jAXhRyZKRim6lkykIUjwlmIKfS2xl38k1kg5VLfPwZYAhiG6+JMcBlyj7hKU+4\nN9FKKfLlxtRz/g2kh81eHWEOXblEohpR/GbAhMF8h/tkHM+ze2TAbyEK1A+UWlWZ\n3olMRdt/awlAd657XqGVukYUg++GdEGkVyeWcCV3CwscbhiFAqpV/TWh6yARultJ\nvij/UQWi27yFY1v4EAactGL/V+zrmQSduKGd7jpHJe2XVS4DGuw+ThiDQc8gamlG\ndmZcPkVxChFqGpxGKXOr8uFWbYUG4Cj3iA4iV8XOlGUIN8uFtbWX/VyVHGNGDmGg\n60osshOegUJTNz8OBkZspvsCAwEAAQ==\n-----END PUBLIC KEY-----',NULL,'2018-11-17 12:50:07'),(_binary 'http://192.168.22.10/profile/friendica3','930bb26b-425b-f00c-3ce7-94f334620775','Person','http://192.168.22.10/following/friendica3','http://192.168.22.10/followers/friendica3','http://192.168.22.10/inbox/friendica3','http://192.168.22.10/outbox/friendica3','http://192.168.22.10/inbox','friendica3','friendica3','','http://192.168.22.10/photo/profile/4.jpg',NULL,NULL,'-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvAs4TR4AI+nlBt8d7BHD\nViq6w3UslHqURRUo0+sfAE5RL45im2z+ryPag1K5dbs5pcoa6hfk9+EREgoWlwnX\nX/8UdkvkoHE6/JDFimuaK7pequwUQbQoOXkkBAyPtN8YhjfGM19CI5FIVByY+O8p\nO/lGls1h5bxYEIgjA0tTDw5FuhPtiw9SJAPtQs5Gueoe9y7VwXNLNenKI6r6/Kfo\nzgYKJS98ibCllMiDIY0ixZZqhsh5+oEAsGPaNtQSgw09fWyyDNUKOenC4NhhMWsY\nBtTgDOPkM1AgidQKny7wtfo04YCn13SZuU6cWXqCx2pTgxLpBRgNbfkf6/DerVEO\nh2/Fxx2oMrRqLox+kAj03zrKnto3n5cYASlmfeEmUBHtjc/qPbuEzm+FEJKTXkrg\njt0+xzTQxPr+oFMinACdTMu6J4lB6dGCJxbx/Dx6FcRKymUYGdLvZWITfKZAikRh\nX8Pll3bFExOk5ieOdBLRt5ujGHuMbV204qpUsL0kDU9/4aMnpJei4EZuw21ovDH1\nVchVjJS4fzsJkaDfA81+83ADHXU10+UJ7PXAq7U416nC/dr30Gp2cxYb1qELYe4W\nGXE9k857z1o3BevJi4smy0FeydVVEVJ/1SPhPcdKHIA6sfP+TzuvWk7zK+xDwdyb\no4/nVNHD26NC1mVTTAjR7t0CAwEAAQ==\n-----END PUBLIC KEY-----',NULL,'2018-11-17 12:50:08'),(_binary 'http://192.168.22.10/profile/friendica4','930bb26b-485b-f00c-9705-875375530301','Person','http://192.168.22.10/following/friendica4','http://192.168.22.10/followers/friendica4','http://192.168.22.10/inbox/friendica4','http://192.168.22.10/outbox/friendica4','http://192.168.22.10/inbox','friendica4','friendica4','','http://192.168.22.10/photo/profile/5.jpg',NULL,NULL,'-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtOfQNRnGbzBy9Rc7gLAI\nrB5Fp2SBFfjRnd5g99HKWI3Amz5BXdcOWsgikVtwSVGDD8TGPj56qIlp+ctfYkPZ\nn5QSGfA3VS5eqWNfE9aG3XZAO7M7x2pKVaf79ciuYK0HQrmCeClB844x8rXDmW5m\n1k6Any22lpXHdDY8heR6O/uLIG9i/eRiD8tFMY3ATVkJ4MF5TY/m0ZGhHAMfK9dm\nkJzNvJc0cYe6kBmpDDmlJwObo75NfPBi3bqTaIZvTxda6lgWcuv/J1IR0fLhW8IJ\nbbXcd/fSNHV5zdqPmZsiu4+nx1xf+40J1v9+uKCCxH6UlUR9HLcCpYH6PDmoEkRk\n2WVPsU2+crVbY5cbNx08LVe6ZGl/onhTM35t2JBpo9ClgTSmpgEkRQsBebWNEKn3\n/y7Ib+/IywdomRUTgXVtKt5+90FdEhNwrba2CyD3dFW/CQCwx+363juCZr16EiKx\nbG5VJ1aIN8/My9feB9fklqyCpy0vkMI9NptQbtKntueETeLTqKlZ5uJJZJtd6S7z\nrTAd6vx5WLOMYlfQF2K7MVCwYUVfcIoWKxAg3SU+5sIG+cSrreT67wxt6k6sEEOw\npRZn3qZ13vPpO1mJelhqQeDZYutywYHjNj+L5TjCIZqIS129MZbqDJELkjTmckRV\nAZmzTHqCDXwd70IddYvuuJMCAwEAAQ==\n-----END PUBLIC KEY-----',NULL,'2018-11-17 12:50:08'),(_binary 'http://192.168.22.10/profile/friendica5','930bb26b-545b-f00c-b13c-f57634480673','Person','http://192.168.22.10/following/friendica5','http://192.168.22.10/followers/friendica5','http://192.168.22.10/inbox/friendica5','http://192.168.22.10/outbox/friendica5','http://192.168.22.10/inbox','friendica5','friendica5','','http://192.168.22.10/photo/profile/6.jpg',NULL,NULL,'-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzbQgk0okIu48OTsuvI/j\nnTYfKREWuHx0Rkr/44zKv9NGOJItxb82OoK/59o4l2mkt3REOwEzsSeAUe8VjkFU\nnfmjTTg8GqDCQ07Bmux1lVdtyAIhqr3uMraS8bODUMRFnDSX39rYYUH+h7oBZ44k\nW2vGvnWKh8BYPmV+hAab8TuJBODrZy1z5A1lc9CSSoZCiEOSvO5tGgiTBWW/CUoC\n6jR/BqZy/jlbiuED/t1Hn8dKCyPkAUppFhVJgSiSaysLeQlGsw58QYvD4WJXWbGh\nOzBDyR5hmSPuRuCxWD0GkpCnZGtkLhrJHAhYysAvqlc6Oo+6leRuLq2S05cZI1cL\nwsjapgnIvPCSIm7OkFlEimqveMNTOKNbcyIHaq8kL3ZyUYWuygVndL9AdUhIEAkE\nOROFlAyv0fC0tbBhnsJ/SifvEGYOaO4eRB1mvvY2R+JU4gPXLWbeNSNrn4zpTdIL\n0pwDJvLAv+tgeheBz6fNyKqETeclMEuo+GUs3nB8zeO2ZJXwzAgqMt5/Vr27v8d7\nk+Cer7ydUT8QTlsRGTAjaWicDFPLlH9v2v15JEaDqjtIJ9kUdAaj+BnR3+j1x86g\nSrJa5SV4kdu/hduRtIfnhKTpu/ZnxhQzkWuu6gWtjCpLzTuaHybnh69rSz7CKoFU\nXnqm6IVFII/ny2a7I1KrMFECAwEAAQ==\n-----END PUBLIC KEY-----',NULL,'2018-11-17 12:50:08');
+/*!40000 ALTER TABLE `apcontact` ENABLE KEYS */;
+UNLOCK TABLES;
+
 --
 -- Table structure for table `attach`
 --
@@ -52,21 +94,21 @@ DROP TABLE IF EXISTS `attach`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `attach` (
-  `id` int(11) NOT NULL AUTO_INCREMENT,
-  `uid` int(11) NOT NULL DEFAULT '0',
-  `hash` varchar(64) NOT NULL DEFAULT '',
-  `filename` varchar(255) NOT NULL DEFAULT '',
-  `filetype` varchar(64) NOT NULL DEFAULT '',
-  `filesize` int(11) NOT NULL DEFAULT '0',
-  `data` longblob NOT NULL,
-  `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  `allow_cid` mediumtext,
-  `allow_gid` mediumtext,
-  `deny_cid` mediumtext,
-  `deny_gid` mediumtext,
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'generated index',
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Owner User id',
+  `hash` varchar(64) NOT NULL DEFAULT '' COMMENT 'hash',
+  `filename` varchar(255) NOT NULL DEFAULT '' COMMENT 'filename of original',
+  `filetype` varchar(64) NOT NULL DEFAULT '' COMMENT 'mimetype',
+  `filesize` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'size in bytes',
+  `data` longblob NOT NULL COMMENT 'file data',
+  `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation time',
+  `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'last edit time',
+  `allow_cid` mediumtext COMMENT 'Access Control - list of allowed contact.id ''<19><78>',
+  `allow_gid` mediumtext COMMENT 'Access Control - list of allowed groups',
+  `deny_cid` mediumtext COMMENT 'Access Control - list of denied contact.id',
+  `deny_gid` mediumtext COMMENT 'Access Control - list of denied groups',
   PRIMARY KEY (`id`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='file attachments';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -92,7 +134,7 @@ CREATE TABLE `auth_codes` (
   `expires` int(11) NOT NULL DEFAULT '0',
   `scope` varchar(250) NOT NULL DEFAULT '',
   PRIMARY KEY (`id`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='OAuth usage';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -117,8 +159,8 @@ CREATE TABLE `cache` (
   `expires` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of cache expiration',
   `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of cache insertion',
   PRIMARY KEY (`k`),
-  KEY `k_expires` (`k`,`expires`) USING BTREE
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Used to store different data that doesn''t to be stored for a long time';
+  KEY `k_expires` (`k`,`expires`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Stores temporary data';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -127,22 +169,7 @@ CREATE TABLE `cache` (
 
 LOCK TABLES `cache` WRITE;
 /*!40000 ALTER TABLE `cache` DISABLE KEYS */;
-INSERT INTO `cache` (`k`,`v`,`expires`) VALUES
-('about::http://friendica.local/profile/friendica1','s:0:\"\";',DATE_ADD(NOW(), INTERVAL 2 MONTH)),
-('about::http://friendica.local/profile/friendica2','s:0:\"\";',DATE_ADD(NOW(), INTERVAL 2 MONTH)),
-('about::http://friendica.local/profile/friendica4','s:0:\"\";',DATE_ADD(NOW(), INTERVAL 2 MONTH)),
-('app:proc_run:started','i:1504775968;',DATE_ADD(NOW(), INTERVAL 1 MINUTE)),
-('diaspora:construct_comment:758d682b1059b10ee096f38798595234','a:6:{s:6:\"author\";s:24:\"friendica3@friendica.local\";s:4:\"guid\";s:32:\"758d682b1059b10ee096f38798595234\";s:10:\"created_at\";s:20:\"2017-09-07T09:18:24Z\";s:11:\"parent_guid\";s:32:\"758d682b1859b10ebd6abab685903735\";s:4:\"text\";s:5:\"Cool!\";s:16:\"author_signature\";s:0:\"\";}',DATE_ADD(NOW(), INTERVAL 15 MINUTE)),
-('diaspora:construct_comment:758d682b2059b10f204f9c2684001373','a:6:{s:6:\"author\";s:24:\"friendica2@friendica.local\";s:4:\"guid\";s:32:\"758d682b2059b10f204f9c2684001373\";s:10:\"created_at\";s:20:\"2017-09-07T09:19:28Z\";s:11:\"parent_guid\";s:32:\"758d682b1459b10f0be17c3206121357\";s:4:\"text\";s:4:\"Yay!\";s:16:\"author_signature\";s:0:\"\";}',DATE_ADD(NOW(), INTERVAL 15 MINUTE)),
-('probe_url::friendica2@friendica.local','a:21:{s:4:\"name\";s:10:\"friendica2\";s:4:\"nick\";s:10:\"friendica2\";s:4:\"guid\";s:32:\"758d682b1359b10a3a54a8c301503194\";s:3:\"url\";s:41:\"http://friendica.local/profile/friendica2\";s:4:\"addr\";s:24:\"friendica2@friendica.local\";s:5:\"alias\";s:0:\"\";s:5:\"photo\";s:42:\"http://friendica.local/photo/profile/3.jpg\";s:9:\"community\";s:0:\"\";s:8:\"keywords\";s:0:\"\";s:8:\"location\";s:0:\"\";s:5:\"about\";s:0:\"\";s:5:\"batch\";s:0:\"\";s:6:\"notify\";s:45:\"http://friendica.local/dfrn_notify/friendica2\";s:4:\"poll\";s:43:\"http://friendica.local/dfrn_poll/friendica2\";s:7:\"request\";s:46:\"http://friendica.local/dfrn_request/friendica2\";s:7:\"confirm\";s:46:\"http://friendica.local/dfrn_confirm/friendica2\";s:4:\"poco\";s:38:\"http://friendica.local/poco/friendica2\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dfrn\";s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzOHCS/TBWB72tguU5RWu\nG4KnESmdXWGSHHrCm0iWP88Xl17lkEw58o4yt+bQS3c8U46OwP8z9EyCxFyDyHPU\noVgii+jMmT4hhKw5TeDPWwHSUZM07OP2d0J0Kktr6wC16DfGLWqo+EnJcLxyjFGn\nV6KzYR2d/73m0bj26QWM4w2ZCfBZvEEZsreF0XsZuBOWVRlTB4GzDlsRwRt05kUi\nevFnrth0fq+aeEnZA/8eFY9X8F1LB+mZLRdmWX77pMDtzzxTJUBoQPCkOJ0BvdXi\nyAYybmcxFzR/x1u+kpsgxeDOOPDAQAPnbBQcNNwWtl+emd8wmqXcbmM3XeIa1HPb\nDi0CHXJ5Lr95JYP2brAZu4dEwUNeTzkVkvB8DlviOSFmlg6CWmSKXdaF8trK6j4d\nlv7nxGBvmrbx1CmeA3RblvHR1aRyoQdNhBh1eLJrkDcaTgtzhycrjqdz+vVVV/xi\n4yMY9x+voxENfurEo/XsbzGfPSigTIHImzBcMtG0RTgxTMke6CoqRZW1pXFxZast\ncpsO02JRdPrXt+DHpYzDf8oEMTa4TNKBvczcT8ar82RZYY0srVV0uxH77xhx1bvm\nVAPf40FA2qbHZzCAv64YU9LdIT4iPEUga+Y5m9t2LvS+RiA8Zw/mmOdMFp4hI6+K\nELuO8hQc3Ot0moqfpYCnSl0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";s:7:\"baseurl\";s:22:\"http://friendica.local\";}',DATE_ADD(NOW(), INTERVAL 1 DAY)),
-('probe_url::friendica3@friendica.local','a:21:{s:4:\"name\";s:10:\"friendica3\";s:4:\"nick\";s:10:\"friendica3\";s:4:\"guid\";s:32:\"758d682b1359b10a642ef08222820194\";s:3:\"url\";s:41:\"http://friendica.local/profile/friendica3\";s:4:\"addr\";s:24:\"friendica3@friendica.local\";s:5:\"alias\";s:0:\"\";s:5:\"photo\";s:42:\"http://friendica.local/photo/profile/4.jpg\";s:9:\"community\";s:0:\"\";s:8:\"keywords\";s:0:\"\";s:8:\"location\";s:0:\"\";s:5:\"about\";s:0:\"\";s:5:\"batch\";s:0:\"\";s:6:\"notify\";s:45:\"http://friendica.local/dfrn_notify/friendica3\";s:4:\"poll\";s:43:\"http://friendica.local/dfrn_poll/friendica3\";s:7:\"request\";s:46:\"http://friendica.local/dfrn_request/friendica3\";s:7:\"confirm\";s:46:\"http://friendica.local/dfrn_confirm/friendica3\";s:4:\"poco\";s:38:\"http://friendica.local/poco/friendica3\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dfrn\";s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwIuhjeg03GoOuSYqulsa\nvd/spvniwjaYZhCJYTHgOM4ak9qG8SwPhguSBMqZS3baHEcZtYcYsu5vSQAO/zCB\niK8yefV8LguBhoNw36p/hoQ4TdApOH3cjKAJoaxZSJw0oa50ebCSbh23chRHESbv\nlvfGXq0Pmk060VcLf6h00Iivg/BFNmDfEqrVmgpl0G1PIOatNJ5QdEpCP0E5Bg/H\nvnqvBgpkVAZkKA4xY5rw6pB2NofK74gaeNklnVFqAwaQZUrBv+z1C7h3NQ5YRees\nuspiwZVyFy95xm+kGlKq6GJ7WPQi1mKSJisHLxh9uI7ylgIyRWi/GRA2NBLb15tJ\nL9PpyWEbKhEX/zCUQbos6cFC3+jgiJoYIIa5pOYU0Ekf5AcyF3dFsbcWGObn++wv\nk+5dIK/un+1KOv7X3e/bAnkVCHHjzWAzURQkvb0fwFVzw80ioP4L4V+mvw4jxh+x\ndpPBQmqgCglqE2cpCB4gAcYPlXICBC18YcUYOkYIlgz2WuslcJCnrHO6K5q6lAn3\nNqEI/LmJDrq3hbu96k8d/0zCMNO+u3xPIhDcQ6ZzyhZmVDTpVGFiJ7Yhtfih3ASC\nZqWowoSq5onVWLCsj4QquNCIvJK1NLrkrr6rxD4DbCzW7XbZkenuHumh3HoFb5Lc\nRN6UJNHe/4FNNUzcAVBgEe0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";s:7:\"baseurl\";s:22:\"http://friendica.local\";}',DATE_ADD(NOW(), INTERVAL 1 DAY)),
-('probe_url::friendica4@friendica.local','a:21:{s:4:\"name\";s:10:\"friendica4\";s:4:\"nick\";s:10:\"friendica4\";s:4:\"guid\";s:32:\"758d682b1359b10a89ad697631454583\";s:3:\"url\";s:41:\"http://friendica.local/profile/friendica4\";s:4:\"addr\";s:24:\"friendica4@friendica.local\";s:5:\"alias\";s:0:\"\";s:5:\"photo\";s:42:\"http://friendica.local/photo/profile/5.jpg\";s:9:\"community\";s:0:\"\";s:8:\"keywords\";s:0:\"\";s:8:\"location\";s:0:\"\";s:5:\"about\";s:0:\"\";s:5:\"batch\";s:0:\"\";s:6:\"notify\";s:45:\"http://friendica.local/dfrn_notify/friendica4\";s:4:\"poll\";s:43:\"http://friendica.local/dfrn_poll/friendica4\";s:7:\"request\";s:46:\"http://friendica.local/dfrn_request/friendica4\";s:7:\"confirm\";s:46:\"http://friendica.local/dfrn_confirm/friendica4\";s:4:\"poco\";s:38:\"http://friendica.local/poco/friendica4\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dfrn\";s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxAJ+t/FrD0sHO2ecwsoH\nmOst2aPHca5n4UEIpr2ZTl26WN1AbcNo9wahDHXG7pE50GQwvmnnTIlVDLAsBC23\n8sTSpGXrIC8L7YiyDeu3piBp/w4jy8JQrbXn4L8IQbnmi6nDCSr1szXjBcvdPPKK\nrCFgYJ4hjEkSp/wJcKZ1mlRTwtofWZHUMu3NsP2146wRj0roydFVkWGrfsH8grUO\nqMktmpCUOQNsOIAN8b6vQiYQQoamGWjV8wXO3W0fRhQ5Yjko19j1t+O1Jvy2CMhn\nRY2wiGZ91ZSfl8VNLrz38JyeR0cz7YJeNYzOggB1AjEzLhKtqw7zkyW8Qg1Kfo85\ndagFPZ5sQZ8R4nus7xabICMG/qJPL23/1tyenxqkVP0iDIhLo/f0uuG4riNOJZtf\nPYPT6sxSlqxbznuLQr1fYnjFyEnFtJpzuAuvybshT5QLyKntcGap67fWoj/7SrA4\n8T5RCdYHDacMdKEC1SDwpokpgWhWaRkUxJ5F0Q5Jpyvhui/UkxkevDWv5373pgVz\ngaZlxRKYKABWiJkQH9FPAdsr4nUVErl/zvI0+9GuzK/EJ5ToVs8bF98Jb4Y3o2pm\nNtPL1ao9r0ug/3F7RHTLs1tp0Bdm/Gxk/RJf4j6gKgAw9WcdHzkxcvikhAY43zMe\n5qExQo663i3hzw4v3p94i+sCAwEAAQ==\n-----END PUBLIC KEY-----\n\";s:7:\"baseurl\";s:22:\"http://friendica.local\";}',DATE_ADD(NOW(), INTERVAL 1 DAY)),
-('probe_url::friendica5@friendica.local','a:21:{s:4:\"name\";s:10:\"friendica5\";s:4:\"nick\";s:10:\"friendica5\";s:4:\"guid\";s:32:\"758d682b1959b10ab0768ff699049903\";s:3:\"url\";s:41:\"http://friendica.local/profile/friendica5\";s:4:\"addr\";s:24:\"friendica5@friendica.local\";s:5:\"alias\";s:0:\"\";s:5:\"photo\";s:42:\"http://friendica.local/photo/profile/6.jpg\";s:9:\"community\";s:0:\"\";s:8:\"keywords\";s:0:\"\";s:8:\"location\";s:0:\"\";s:5:\"about\";s:0:\"\";s:5:\"batch\";s:0:\"\";s:6:\"notify\";s:45:\"http://friendica.local/dfrn_notify/friendica5\";s:4:\"poll\";s:43:\"http://friendica.local/dfrn_poll/friendica5\";s:7:\"request\";s:46:\"http://friendica.local/dfrn_request/friendica5\";s:7:\"confirm\";s:46:\"http://friendica.local/dfrn_confirm/friendica5\";s:4:\"poco\";s:38:\"http://friendica.local/poco/friendica5\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dfrn\";s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAmtBUbN/07wWbcUvp9QvR\nKLoM+WjC0K0rFsx6L/Mktk6Go5+DqofuHSQgfJZGBI3vbTlbwW76peX/0aqiZPGF\nrrhX1FMhU23AxYE9TixRR+oqIKETNzU8NuahpK/ZBokoPL7mzrY4o5dNcnG4S57O\nir4VfEpuYB99K7Uo4yVc6a50ZQfDoBy6nnCPbVmh+gokc28paK7Av0vnMwwD6TWQ\nrgXyrPsa+Af5YeDC7GOmhppeN+e5zycRTddfXWR8QFp+he43b7z54pB+ajAu3J+C\nTAagIp5UWrBmwclF2gmLWvyYYpwTF3kNz+Waf0s3khiZXcJZKxGKVqXoTkqEKV/i\nvHryaBlvvAkQKR1mfJpNasJfHrqhOlHigWi3ISlPJQB4h+85W+YAXj+3j26OnMpb\nCmjf0BXLnjuC+w9rXFW/kj3Q1PxNaAfx/BoV62unWBKnZAkkzHOkQ5yyATdXQaEY\nlDsFbc0itSm3zjsPa1gXtn9e9z8Mqn5MwKk5I9k7TIr6/FdgbX7gxl6mn59OQ0v+\ne8o7HECSQvT8c+WmvBk3tjQHDgw3FeiJ54w0IGiha530vPCk5Z840d/jVUL7Qc6j\nrNi7hLOBvx4jdxk+5tq6fZMG4Sbu+Iibc4b+f2QyVW7Pcxt3CM/ADh0kzfGJ7wQd\nzl4w/9+s8DPT43Tbn98QK+MCAwEAAQ==\n-----END PUBLIC KEY-----\n\";s:7:\"baseurl\";s:22:\"http://friendica.local\";}',DATE_ADD(NOW(), INTERVAL 1 DAY)),
-('probe_url::http://friendica.local/profile/friendica1','a:21:{s:4:\"name\";s:10:\"friendica1\";s:4:\"nick\";s:10:\"friendica1\";s:4:\"guid\";s:32:\"758d682b8559b109d5ad831494500945\";s:3:\"url\";s:41:\"http://friendica.local/profile/friendica1\";s:4:\"addr\";s:24:\"friendica1@friendica.local\";s:5:\"alias\";s:0:\"\";s:5:\"photo\";s:42:\"http://friendica.local/photo/profile/2.jpg\";s:9:\"community\";s:0:\"\";s:8:\"keywords\";s:0:\"\";s:8:\"location\";s:0:\"\";s:5:\"about\";s:0:\"\";s:5:\"batch\";s:0:\"\";s:6:\"notify\";s:45:\"http://friendica.local/dfrn_notify/friendica1\";s:4:\"poll\";s:43:\"http://friendica.local/dfrn_poll/friendica1\";s:7:\"request\";s:46:\"http://friendica.local/dfrn_request/friendica1\";s:7:\"confirm\";s:46:\"http://friendica.local/dfrn_confirm/friendica1\";s:4:\"poco\";s:38:\"http://friendica.local/poco/friendica1\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dfrn\";s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzNeTX2GGZAqTecUeOPNq\n+uFCfBuN4g6xKTkBlUDeVCLp2N3uVJq+TSjmoau8MpY3jCD2Nqn5KsMPh8XJV2s6\nb1kSjmVdpr4EeBXPyvi3asCcgmqi2IeoK/ihVGP9IrrYh8zwzVY9wW1/TPcC4N4W\nCcmeFTO08CSJh2P8ROq6irU0ndbmqfmFSs5uZ7UcEKUzkgSSPTxq5x3O7xSfTbOZ\nPNhSn3r5buSOd46KyWaBIJ2KgFNoY2AGJqbzZTZmJZB/qelrONtJ6XDnDI9GNQBI\nyL9935Scmo9WrXeZcqXNW3yI97s1tH27pCxhsyy5xqzEYfAPwPFry4gbO+wSGcNm\nFYfbCM19uPvJyN6TEgFNZD5401Pl8LQaVkSAnV9LQPzn/54CJYQb6KlE0rymROyQ\nvKPUZmEkw6ZnVJIF5pjxu6bGGPdv3xmBH6Xnmi0hhNA2AEDbv6wDrLZYLUCTSSqq\nhW8WK3HylsP9dqNT+a3X9l9dG7vqmRevGcbBQDDZPOKjkJkAa8IgIlk3UIWs3bYY\nST0VUtjRpsoLo3XmdYtY5qXxjGjtEy7NjRErlT31WoMzxcLhLwxKGWQz/xMC9OXe\np+uoyVUOd3U/Jvz6vpW9k5ua417IrF9XaxtcKvhp69m16br8JkMuKWvdGomWDXxA\nG1cAbsHJN6JJEU/3Vo35sh0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";s:7:\"baseurl\";s:22:\"http://friendica.local\";}',DATE_ADD(NOW(), INTERVAL 1 DAY)),
-('probe_url::http://friendica.local/profile/friendica2','a:21:{s:4:\"name\";s:10:\"friendica2\";s:4:\"nick\";s:10:\"friendica2\";s:4:\"guid\";s:32:\"758d682b1359b10a3a54a8c301503194\";s:3:\"url\";s:41:\"http://friendica.local/profile/friendica2\";s:4:\"addr\";s:24:\"friendica2@friendica.local\";s:5:\"alias\";s:0:\"\";s:5:\"photo\";s:42:\"http://friendica.local/photo/profile/3.jpg\";s:9:\"community\";s:0:\"\";s:8:\"keywords\";s:0:\"\";s:8:\"location\";s:0:\"\";s:5:\"about\";s:0:\"\";s:5:\"batch\";s:0:\"\";s:6:\"notify\";s:45:\"http://friendica.local/dfrn_notify/friendica2\";s:4:\"poll\";s:43:\"http://friendica.local/dfrn_poll/friendica2\";s:7:\"request\";s:46:\"http://friendica.local/dfrn_request/friendica2\";s:7:\"confirm\";s:46:\"http://friendica.local/dfrn_confirm/friendica2\";s:4:\"poco\";s:38:\"http://friendica.local/poco/friendica2\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dfrn\";s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzOHCS/TBWB72tguU5RWu\nG4KnESmdXWGSHHrCm0iWP88Xl17lkEw58o4yt+bQS3c8U46OwP8z9EyCxFyDyHPU\noVgii+jMmT4hhKw5TeDPWwHSUZM07OP2d0J0Kktr6wC16DfGLWqo+EnJcLxyjFGn\nV6KzYR2d/73m0bj26QWM4w2ZCfBZvEEZsreF0XsZuBOWVRlTB4GzDlsRwRt05kUi\nevFnrth0fq+aeEnZA/8eFY9X8F1LB+mZLRdmWX77pMDtzzxTJUBoQPCkOJ0BvdXi\nyAYybmcxFzR/x1u+kpsgxeDOOPDAQAPnbBQcNNwWtl+emd8wmqXcbmM3XeIa1HPb\nDi0CHXJ5Lr95JYP2brAZu4dEwUNeTzkVkvB8DlviOSFmlg6CWmSKXdaF8trK6j4d\nlv7nxGBvmrbx1CmeA3RblvHR1aRyoQdNhBh1eLJrkDcaTgtzhycrjqdz+vVVV/xi\n4yMY9x+voxENfurEo/XsbzGfPSigTIHImzBcMtG0RTgxTMke6CoqRZW1pXFxZast\ncpsO02JRdPrXt+DHpYzDf8oEMTa4TNKBvczcT8ar82RZYY0srVV0uxH77xhx1bvm\nVAPf40FA2qbHZzCAv64YU9LdIT4iPEUga+Y5m9t2LvS+RiA8Zw/mmOdMFp4hI6+K\nELuO8hQc3Ot0moqfpYCnSl0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";s:7:\"baseurl\";s:22:\"http://friendica.local\";}',DATE_ADD(NOW(), INTERVAL 1 DAY)),
-('probe_url::http://friendica.local/profile/friendica3','a:21:{s:4:\"name\";s:10:\"friendica3\";s:4:\"nick\";s:10:\"friendica3\";s:4:\"guid\";s:32:\"758d682b1359b10a642ef08222820194\";s:3:\"url\";s:41:\"http://friendica.local/profile/friendica3\";s:4:\"addr\";s:24:\"friendica3@friendica.local\";s:5:\"alias\";s:0:\"\";s:5:\"photo\";s:42:\"http://friendica.local/photo/profile/4.jpg\";s:9:\"community\";s:0:\"\";s:8:\"keywords\";s:0:\"\";s:8:\"location\";s:0:\"\";s:5:\"about\";s:0:\"\";s:5:\"batch\";s:0:\"\";s:6:\"notify\";s:45:\"http://friendica.local/dfrn_notify/friendica3\";s:4:\"poll\";s:43:\"http://friendica.local/dfrn_poll/friendica3\";s:7:\"request\";s:46:\"http://friendica.local/dfrn_request/friendica3\";s:7:\"confirm\";s:46:\"http://friendica.local/dfrn_confirm/friendica3\";s:4:\"poco\";s:38:\"http://friendica.local/poco/friendica3\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dfrn\";s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwIuhjeg03GoOuSYqulsa\nvd/spvniwjaYZhCJYTHgOM4ak9qG8SwPhguSBMqZS3baHEcZtYcYsu5vSQAO/zCB\niK8yefV8LguBhoNw36p/hoQ4TdApOH3cjKAJoaxZSJw0oa50ebCSbh23chRHESbv\nlvfGXq0Pmk060VcLf6h00Iivg/BFNmDfEqrVmgpl0G1PIOatNJ5QdEpCP0E5Bg/H\nvnqvBgpkVAZkKA4xY5rw6pB2NofK74gaeNklnVFqAwaQZUrBv+z1C7h3NQ5YRees\nuspiwZVyFy95xm+kGlKq6GJ7WPQi1mKSJisHLxh9uI7ylgIyRWi/GRA2NBLb15tJ\nL9PpyWEbKhEX/zCUQbos6cFC3+jgiJoYIIa5pOYU0Ekf5AcyF3dFsbcWGObn++wv\nk+5dIK/un+1KOv7X3e/bAnkVCHHjzWAzURQkvb0fwFVzw80ioP4L4V+mvw4jxh+x\ndpPBQmqgCglqE2cpCB4gAcYPlXICBC18YcUYOkYIlgz2WuslcJCnrHO6K5q6lAn3\nNqEI/LmJDrq3hbu96k8d/0zCMNO+u3xPIhDcQ6ZzyhZmVDTpVGFiJ7Yhtfih3ASC\nZqWowoSq5onVWLCsj4QquNCIvJK1NLrkrr6rxD4DbCzW7XbZkenuHumh3HoFb5Lc\nRN6UJNHe/4FNNUzcAVBgEe0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";s:7:\"baseurl\";s:22:\"http://friendica.local\";}',DATE_ADD(NOW(), INTERVAL 1 DAY)),
-('probe_url::http://friendica.local/profile/friendica4','a:21:{s:4:\"name\";s:10:\"friendica4\";s:4:\"nick\";s:10:\"friendica4\";s:4:\"guid\";s:32:\"758d682b1359b10a89ad697631454583\";s:3:\"url\";s:41:\"http://friendica.local/profile/friendica4\";s:4:\"addr\";s:24:\"friendica4@friendica.local\";s:5:\"alias\";s:0:\"\";s:5:\"photo\";s:42:\"http://friendica.local/photo/profile/5.jpg\";s:9:\"community\";s:0:\"\";s:8:\"keywords\";s:0:\"\";s:8:\"location\";s:0:\"\";s:5:\"about\";s:0:\"\";s:5:\"batch\";s:0:\"\";s:6:\"notify\";s:45:\"http://friendica.local/dfrn_notify/friendica4\";s:4:\"poll\";s:43:\"http://friendica.local/dfrn_poll/friendica4\";s:7:\"request\";s:46:\"http://friendica.local/dfrn_request/friendica4\";s:7:\"confirm\";s:46:\"http://friendica.local/dfrn_confirm/friendica4\";s:4:\"poco\";s:38:\"http://friendica.local/poco/friendica4\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dfrn\";s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxAJ+t/FrD0sHO2ecwsoH\nmOst2aPHca5n4UEIpr2ZTl26WN1AbcNo9wahDHXG7pE50GQwvmnnTIlVDLAsBC23\n8sTSpGXrIC8L7YiyDeu3piBp/w4jy8JQrbXn4L8IQbnmi6nDCSr1szXjBcvdPPKK\nrCFgYJ4hjEkSp/wJcKZ1mlRTwtofWZHUMu3NsP2146wRj0roydFVkWGrfsH8grUO\nqMktmpCUOQNsOIAN8b6vQiYQQoamGWjV8wXO3W0fRhQ5Yjko19j1t+O1Jvy2CMhn\nRY2wiGZ91ZSfl8VNLrz38JyeR0cz7YJeNYzOggB1AjEzLhKtqw7zkyW8Qg1Kfo85\ndagFPZ5sQZ8R4nus7xabICMG/qJPL23/1tyenxqkVP0iDIhLo/f0uuG4riNOJZtf\nPYPT6sxSlqxbznuLQr1fYnjFyEnFtJpzuAuvybshT5QLyKntcGap67fWoj/7SrA4\n8T5RCdYHDacMdKEC1SDwpokpgWhWaRkUxJ5F0Q5Jpyvhui/UkxkevDWv5373pgVz\ngaZlxRKYKABWiJkQH9FPAdsr4nUVErl/zvI0+9GuzK/EJ5ToVs8bF98Jb4Y3o2pm\nNtPL1ao9r0ug/3F7RHTLs1tp0Bdm/Gxk/RJf4j6gKgAw9WcdHzkxcvikhAY43zMe\n5qExQo663i3hzw4v3p94i+sCAwEAAQ==\n-----END PUBLIC KEY-----\n\";s:7:\"baseurl\";s:22:\"http://friendica.local\";}',DATE_ADD(NOW(), INTERVAL 1 DAY)),
-('probe_url::http://friendica.local/profile/friendica5','a:21:{s:4:\"name\";s:10:\"friendica5\";s:4:\"nick\";s:10:\"friendica5\";s:4:\"guid\";s:32:\"758d682b1959b10ab0768ff699049903\";s:3:\"url\";s:41:\"http://friendica.local/profile/friendica5\";s:4:\"addr\";s:24:\"friendica5@friendica.local\";s:5:\"alias\";s:0:\"\";s:5:\"photo\";s:42:\"http://friendica.local/photo/profile/6.jpg\";s:9:\"community\";s:0:\"\";s:8:\"keywords\";s:0:\"\";s:8:\"location\";s:0:\"\";s:5:\"about\";s:0:\"\";s:5:\"batch\";s:0:\"\";s:6:\"notify\";s:45:\"http://friendica.local/dfrn_notify/friendica5\";s:4:\"poll\";s:43:\"http://friendica.local/dfrn_poll/friendica5\";s:7:\"request\";s:46:\"http://friendica.local/dfrn_request/friendica5\";s:7:\"confirm\";s:46:\"http://friendica.local/dfrn_confirm/friendica5\";s:4:\"poco\";s:38:\"http://friendica.local/poco/friendica5\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dfrn\";s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAmtBUbN/07wWbcUvp9QvR\nKLoM+WjC0K0rFsx6L/Mktk6Go5+DqofuHSQgfJZGBI3vbTlbwW76peX/0aqiZPGF\nrrhX1FMhU23AxYE9TixRR+oqIKETNzU8NuahpK/ZBokoPL7mzrY4o5dNcnG4S57O\nir4VfEpuYB99K7Uo4yVc6a50ZQfDoBy6nnCPbVmh+gokc28paK7Av0vnMwwD6TWQ\nrgXyrPsa+Af5YeDC7GOmhppeN+e5zycRTddfXWR8QFp+he43b7z54pB+ajAu3J+C\nTAagIp5UWrBmwclF2gmLWvyYYpwTF3kNz+Waf0s3khiZXcJZKxGKVqXoTkqEKV/i\nvHryaBlvvAkQKR1mfJpNasJfHrqhOlHigWi3ISlPJQB4h+85W+YAXj+3j26OnMpb\nCmjf0BXLnjuC+w9rXFW/kj3Q1PxNaAfx/BoV62unWBKnZAkkzHOkQ5yyATdXQaEY\nlDsFbc0itSm3zjsPa1gXtn9e9z8Mqn5MwKk5I9k7TIr6/FdgbX7gxl6mn59OQ0v+\ne8o7HECSQvT8c+WmvBk3tjQHDgw3FeiJ54w0IGiha530vPCk5Z840d/jVUL7Qc6j\nrNi7hLOBvx4jdxk+5tq6fZMG4Sbu+Iibc4b+f2QyVW7Pcxt3CM/ADh0kzfGJ7wQd\nzl4w/9+s8DPT43Tbn98QK+MCAwEAAQ==\n-----END PUBLIC KEY-----\n\";s:7:\"baseurl\";s:22:\"http://friendica.local\";}',DATE_ADD(NOW(), INTERVAL 1 DAY));
+INSERT INTO `cache` VALUES (_binary 'Probe::uri::friendica1@192.168.22.10','a:21:{s:4:\"name\";s:10:\"friendica1\";s:4:\"nick\";s:10:\"friendica1\";s:4:\"guid\";s:36:\"930bb26b-585b-f00c-1225-b79618332648\";s:3:\"url\";s:39:\"http://192.168.22.10/profile/friendica1\";s:4:\"addr\";s:24:\"friendica1@192.168.22.10\";s:5:\"alias\";s:32:\"http://192.168.22.10/~friendica1\";s:5:\"photo\";s:79:\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\";s:9:\"community\";s:0:\"\";s:8:\"keywords\";s:0:\"\";s:8:\"location\";s:0:\"\";s:5:\"about\";s:0:\"\";s:5:\"batch\";s:0:\"\";s:6:\"notify\";s:43:\"http://192.168.22.10/dfrn_notify/friendica1\";s:4:\"poll\";s:41:\"http://192.168.22.10/dfrn_poll/friendica1\";s:7:\"request\";s:44:\"http://192.168.22.10/dfrn_request/friendica1\";s:7:\"confirm\";s:44:\"http://192.168.22.10/dfrn_confirm/friendica1\";s:4:\"poco\";s:36:\"http://192.168.22.10/poco/friendica1\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dfrn\";s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAmQR1Wmtv2KMZ5f5NTJMf\nRfX+1KXfhCKZaDgtL8/Trtb1ZXLq0tlBVhm29MI1F6cxZFhNlFyW6GZCeZFKX3FP\n2pFw03sEBTo5PCLso18EEl9kXV9cXoBMzINI3jIGnJiawq9PfIw5142jFBLOxiDS\nc/iNG6iFbq2qHwiQJjtp61BCFivIMZaHXqvtroakggjBH3EbRx+rZfeqjB8MRqOc\npXIqjc0lrHk8QGdXeuUAWsL2qUqHVNekLBXPnRcdMT8BxUmtBj0ccZ1IICLPFEzK\nr6DtqH5kE+aq9IcoMIEDjUhnyOAvFda8TlxX8D5SMFbrfJZDTypDqXHnSxHUS0Rd\nX06tLJZxMgqHspkxp6nzxk7JGPHKQmU6N0uqQb+i7dFlgC8QRLi79a1x019dvpAN\nRwbhGnn/pEU9Kn1JbYTAI6irBnHnlAUkpxmwSzRx5ncbNbhbniMD2/39IV1mztUh\nAyc262/cRRJAu8pEsPvc/pSijIyfrxJGYqF/uUcS5gbrY+wCjpYaBdzFxQEcD1Aq\nvXQGxi3sMRY9b1FJ+f3UTB7D9kIBCbwUNOXCjDCrOKZN6nxPLpKnfFsneHleUHa0\n+MRzI/vX78jQ1P4KgxPIiSktfrZitBpyzCC5O4ytiwqF2E8Ei0zE6OL2gm8yv7tB\n00ewnSBHzIpdnS51XuxxmIsCAwEAAQ==\n-----END PUBLIC KEY-----\n\";s:7:\"baseurl\";s:20:\"http://192.168.22.10\";}','2018-11-18 13:41:24','2018-11-17 13:41:24'),(_binary 'Probe::uri::friendica2@192.168.22.10','a:21:{s:4:\"name\";s:10:\"friendica2\";s:4:\"nick\";s:10:\"friendica2\";s:4:\"guid\";s:36:\"930bb26b-155b-f00c-272b-7ee871449332\";s:3:\"url\";s:39:\"http://192.168.22.10/profile/friendica2\";s:4:\"addr\";s:24:\"friendica2@192.168.22.10\";s:5:\"alias\";s:32:\"http://192.168.22.10/~friendica2\";s:5:\"photo\";s:79:\"http://192.168.22.10/photo/15820583805bf00e7fd7909940374120-4.jpg?ts=1542459007\";s:9:\"community\";s:0:\"\";s:8:\"keywords\";s:0:\"\";s:8:\"location\";s:0:\"\";s:5:\"about\";s:0:\"\";s:5:\"batch\";s:0:\"\";s:6:\"notify\";s:43:\"http://192.168.22.10/dfrn_notify/friendica2\";s:4:\"poll\";s:41:\"http://192.168.22.10/dfrn_poll/friendica2\";s:7:\"request\";s:44:\"http://192.168.22.10/dfrn_request/friendica2\";s:7:\"confirm\";s:44:\"http://192.168.22.10/dfrn_confirm/friendica2\";s:4:\"poco\";s:36:\"http://192.168.22.10/poco/friendica2\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dfrn\";s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwMWwwjqXtfQmCzLQmZ+D\ntRVdtv1Vq6DdjC/+aEP3UKLpp0nzNcsfT3U8Kejs23o0KpC+EVFXuWZqvxyeHoiZ\n+w9i1roJf2eSLBVeAjiEmLbI7wSfLBu+iA1x+X6+d9wxxAgzM7KHIBOghVCDussz\n4AaojP4Dx3Egsl1w+1j/ULUNCvf1wq9KLMMgJlnemC4cHfv+ObcxdisPezjVD9sg\nnvRLKyv6i8gm8csDwaHtHP6VNxc0JnauU6GIxBrDmlnpKYGb3rl3WLSvuiyzJYrr\nzKESnFINFKRLCG3m548OK+reRBDmgYbsZFJ57FS6YTa63268IwwtlRbRs8n8N7Mi\nO0jAXhRyZKRim6lkykIUjwlmIKfS2xl38k1kg5VLfPwZYAhiG6+JMcBlyj7hKU+4\nN9FKKfLlxtRz/g2kh81eHWEOXblEohpR/GbAhMF8h/tkHM+ze2TAbyEK1A+UWlWZ\n3olMRdt/awlAd657XqGVukYUg++GdEGkVyeWcCV3CwscbhiFAqpV/TWh6yARultJ\nvij/UQWi27yFY1v4EAactGL/V+zrmQSduKGd7jpHJe2XVS4DGuw+ThiDQc8gamlG\ndmZcPkVxChFqGpxGKXOr8uFWbYUG4Cj3iA4iV8XOlGUIN8uFtbWX/VyVHGNGDmGg\n60osshOegUJTNz8OBkZspvsCAwEAAQ==\n-----END PUBLIC KEY-----\n\";s:7:\"baseurl\";s:20:\"http://192.168.22.10\";}','2018-11-18 13:47:02','2018-11-17 13:47:02'),(_binary 'Probe::uri::friendica4@192.168.22.10','a:21:{s:4:\"name\";s:10:\"friendica4\";s:4:\"nick\";s:10:\"friendica4\";s:4:\"guid\";s:36:\"930bb26b-485b-f00c-9705-875375530301\";s:3:\"url\";s:39:\"http://192.168.22.10/profile/friendica4\";s:4:\"addr\";s:24:\"friendica4@192.168.22.10\";s:5:\"alias\";s:32:\"http://192.168.22.10/~friendica4\";s:5:\"photo\";s:79:\"http://192.168.22.10/photo/97971161215bf00e801fdd7464746900-4.jpg?ts=1542459008\";s:9:\"community\";s:0:\"\";s:8:\"keywords\";s:0:\"\";s:8:\"location\";s:0:\"\";s:5:\"about\";s:0:\"\";s:5:\"batch\";s:0:\"\";s:6:\"notify\";s:43:\"http://192.168.22.10/dfrn_notify/friendica4\";s:4:\"poll\";s:41:\"http://192.168.22.10/dfrn_poll/friendica4\";s:7:\"request\";s:44:\"http://192.168.22.10/dfrn_request/friendica4\";s:7:\"confirm\";s:44:\"http://192.168.22.10/dfrn_confirm/friendica4\";s:4:\"poco\";s:36:\"http://192.168.22.10/poco/friendica4\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dfrn\";s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtOfQNRnGbzBy9Rc7gLAI\nrB5Fp2SBFfjRnd5g99HKWI3Amz5BXdcOWsgikVtwSVGDD8TGPj56qIlp+ctfYkPZ\nn5QSGfA3VS5eqWNfE9aG3XZAO7M7x2pKVaf79ciuYK0HQrmCeClB844x8rXDmW5m\n1k6Any22lpXHdDY8heR6O/uLIG9i/eRiD8tFMY3ATVkJ4MF5TY/m0ZGhHAMfK9dm\nkJzNvJc0cYe6kBmpDDmlJwObo75NfPBi3bqTaIZvTxda6lgWcuv/J1IR0fLhW8IJ\nbbXcd/fSNHV5zdqPmZsiu4+nx1xf+40J1v9+uKCCxH6UlUR9HLcCpYH6PDmoEkRk\n2WVPsU2+crVbY5cbNx08LVe6ZGl/onhTM35t2JBpo9ClgTSmpgEkRQsBebWNEKn3\n/y7Ib+/IywdomRUTgXVtKt5+90FdEhNwrba2CyD3dFW/CQCwx+363juCZr16EiKx\nbG5VJ1aIN8/My9feB9fklqyCpy0vkMI9NptQbtKntueETeLTqKlZ5uJJZJtd6S7z\nrTAd6vx5WLOMYlfQF2K7MVCwYUVfcIoWKxAg3SU+5sIG+cSrreT67wxt6k6sEEOw\npRZn3qZ13vPpO1mJelhqQeDZYutywYHjNj+L5TjCIZqIS129MZbqDJELkjTmckRV\nAZmzTHqCDXwd70IddYvuuJMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";s:7:\"baseurl\";s:20:\"http://192.168.22.10\";}','2018-11-18 13:48:45','2018-11-17 13:48:45'),(_binary 'Probe::uri::http://192.168.22.10/profile/admin','a:21:{s:4:\"name\";s:5:\"admin\";s:4:\"nick\";s:5:\"admin\";s:4:\"guid\";s:36:\"930bb26b-675b-f00a-1f35-2cc901636033\";s:3:\"url\";s:34:\"http://192.168.22.10/profile/admin\";s:4:\"addr\";s:19:\"admin@192.168.22.10\";s:5:\"alias\";s:27:\"http://192.168.22.10/~admin\";s:5:\"photo\";s:79:\"http://192.168.22.10/photo/59483894715bf00a1f6a24a891914929-4.jpg?ts=1542457887\";s:9:\"community\";s:0:\"\";s:8:\"keywords\";s:0:\"\";s:8:\"location\";s:0:\"\";s:5:\"about\";s:0:\"\";s:5:\"batch\";s:0:\"\";s:6:\"notify\";s:38:\"http://192.168.22.10/dfrn_notify/admin\";s:4:\"poll\";s:36:\"http://192.168.22.10/dfrn_poll/admin\";s:7:\"request\";s:39:\"http://192.168.22.10/dfrn_request/admin\";s:7:\"confirm\";s:39:\"http://192.168.22.10/dfrn_confirm/admin\";s:4:\"poco\";s:31:\"http://192.168.22.10/poco/admin\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dfrn\";s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyYmalhhmPJg0qwLjbeoL\nKgykA6idu8HtZkKWPpXZHHD9J0InLId7Ht3G9dSBIBbHpWhaoFHkI06PRaqiT3sY\n4yXPBWDuhnIzzbV5VbxXShzRCe0LzBMhvusf/74sQkqH64g7xsaSBipHHaUEa7yD\nv+xCoGtoSOcqGEBzesSH//sIl94IrkkN+/grb1ZSFFjQYWMLMWMD7Py/awcqOtCB\nJ6NnmcBVMK5CxyV+YN+C+dhUsf+LjvH7WE0uigvTlMG+lGfXHxl4/en8bcAQ/GEr\n1xfbDJuknxr+ckGFZeHtj6Noz1IRD7y+7rlTgbZTmOrCJKg38Br2m3tMGGhIU3t7\nSmrKn8qqf9HuyR83+7Cu+t8x24LuhTjGW2Z6KE5TqYacMu+to58MFH8lDOnoOxHA\nGWpi9kYPXSbO9mLwDNF3pue3bLusvGQnns9h38w8m1Q25nivKKvgVbOrdNaB6wUy\nFIDcqjlZOVIyZ24QWZck77Em/cCkEf1c9kV4f1VjwmyQ4apSPf6q92AHcBlbv7yI\nFhVbGMhEaMIT7PQgxi2F48YInnlNjQlk3yHv3sdjlYJvcHHlf2PsMXlRb1CzrFRf\nX6Uv7e1obwy+SsywkAq+sT4tfsPEw2mIL56cXw0licP2hjOIgzYD1xi8pZx3xsQP\nTjdpqBmCKfnzs+TCZIbXIQ8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";s:7:\"baseurl\";s:20:\"http://192.168.22.10\";}','2018-11-18 12:34:45','2018-11-17 12:34:45'),(_binary 'Probe::uri::http://192.168.22.10/profile/friendica1','a:21:{s:4:\"name\";s:10:\"friendica1\";s:4:\"nick\";s:10:\"friendica1\";s:4:\"guid\";s:36:\"930bb26b-585b-f00c-1225-b79618332648\";s:3:\"url\";s:39:\"http://192.168.22.10/profile/friendica1\";s:4:\"addr\";s:24:\"friendica1@192.168.22.10\";s:5:\"alias\";s:32:\"http://192.168.22.10/~friendica1\";s:5:\"photo\";s:40:\"http://192.168.22.10/photo/profile/2.jpg\";s:9:\"community\";s:0:\"\";s:8:\"keywords\";s:0:\"\";s:8:\"location\";s:0:\"\";s:5:\"about\";s:0:\"\";s:5:\"batch\";s:0:\"\";s:6:\"notify\";s:43:\"http://192.168.22.10/dfrn_notify/friendica1\";s:4:\"poll\";s:41:\"http://192.168.22.10/dfrn_poll/friendica1\";s:7:\"request\";s:44:\"http://192.168.22.10/dfrn_request/friendica1\";s:7:\"confirm\";s:44:\"http://192.168.22.10/dfrn_confirm/friendica1\";s:4:\"poco\";s:36:\"http://192.168.22.10/poco/friendica1\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dfrn\";s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAmQR1Wmtv2KMZ5f5NTJMf\nRfX+1KXfhCKZaDgtL8/Trtb1ZXLq0tlBVhm29MI1F6cxZFhNlFyW6GZCeZFKX3FP\n2pFw03sEBTo5PCLso18EEl9kXV9cXoBMzINI3jIGnJiawq9PfIw5142jFBLOxiDS\nc/iNG6iFbq2qHwiQJjtp61BCFivIMZaHXqvtroakggjBH3EbRx+rZfeqjB8MRqOc\npXIqjc0lrHk8QGdXeuUAWsL2qUqHVNekLBXPnRcdMT8BxUmtBj0ccZ1IICLPFEzK\nr6DtqH5kE+aq9IcoMIEDjUhnyOAvFda8TlxX8D5SMFbrfJZDTypDqXHnSxHUS0Rd\nX06tLJZxMgqHspkxp6nzxk7JGPHKQmU6N0uqQb+i7dFlgC8QRLi79a1x019dvpAN\nRwbhGnn/pEU9Kn1JbYTAI6irBnHnlAUkpxmwSzRx5ncbNbhbniMD2/39IV1mztUh\nAyc262/cRRJAu8pEsPvc/pSijIyfrxJGYqF/uUcS5gbrY+wCjpYaBdzFxQEcD1Aq\nvXQGxi3sMRY9b1FJ+f3UTB7D9kIBCbwUNOXCjDCrOKZN6nxPLpKnfFsneHleUHa0\n+MRzI/vX78jQ1P4KgxPIiSktfrZitBpyzCC5O4ytiwqF2E8Ei0zE6OL2gm8yv7tB\n00ewnSBHzIpdnS51XuxxmIsCAwEAAQ==\n-----END PUBLIC KEY-----\n\";s:7:\"baseurl\";s:20:\"http://192.168.22.10\";}','2018-11-18 12:50:07','2018-11-17 12:50:07'),(_binary 'Probe::uri::http://192.168.22.10/profile/friendica2','a:21:{s:4:\"name\";s:10:\"friendica2\";s:4:\"nick\";s:10:\"friendica2\";s:4:\"guid\";s:36:\"930bb26b-155b-f00c-272b-7ee871449332\";s:3:\"url\";s:39:\"http://192.168.22.10/profile/friendica2\";s:4:\"addr\";s:24:\"friendica2@192.168.22.10\";s:5:\"alias\";s:32:\"http://192.168.22.10/~friendica2\";s:5:\"photo\";s:40:\"http://192.168.22.10/photo/profile/3.jpg\";s:9:\"community\";s:0:\"\";s:8:\"keywords\";s:0:\"\";s:8:\"location\";s:0:\"\";s:5:\"about\";s:0:\"\";s:5:\"batch\";s:0:\"\";s:6:\"notify\";s:43:\"http://192.168.22.10/dfrn_notify/friendica2\";s:4:\"poll\";s:41:\"http://192.168.22.10/dfrn_poll/friendica2\";s:7:\"request\";s:44:\"http://192.168.22.10/dfrn_request/friendica2\";s:7:\"confirm\";s:44:\"http://192.168.22.10/dfrn_confirm/friendica2\";s:4:\"poco\";s:36:\"http://192.168.22.10/poco/friendica2\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dfrn\";s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwMWwwjqXtfQmCzLQmZ+D\ntRVdtv1Vq6DdjC/+aEP3UKLpp0nzNcsfT3U8Kejs23o0KpC+EVFXuWZqvxyeHoiZ\n+w9i1roJf2eSLBVeAjiEmLbI7wSfLBu+iA1x+X6+d9wxxAgzM7KHIBOghVCDussz\n4AaojP4Dx3Egsl1w+1j/ULUNCvf1wq9KLMMgJlnemC4cHfv+ObcxdisPezjVD9sg\nnvRLKyv6i8gm8csDwaHtHP6VNxc0JnauU6GIxBrDmlnpKYGb3rl3WLSvuiyzJYrr\nzKESnFINFKRLCG3m548OK+reRBDmgYbsZFJ57FS6YTa63268IwwtlRbRs8n8N7Mi\nO0jAXhRyZKRim6lkykIUjwlmIKfS2xl38k1kg5VLfPwZYAhiG6+JMcBlyj7hKU+4\nN9FKKfLlxtRz/g2kh81eHWEOXblEohpR/GbAhMF8h/tkHM+ze2TAbyEK1A+UWlWZ\n3olMRdt/awlAd657XqGVukYUg++GdEGkVyeWcCV3CwscbhiFAqpV/TWh6yARultJ\nvij/UQWi27yFY1v4EAactGL/V+zrmQSduKGd7jpHJe2XVS4DGuw+ThiDQc8gamlG\ndmZcPkVxChFqGpxGKXOr8uFWbYUG4Cj3iA4iV8XOlGUIN8uFtbWX/VyVHGNGDmGg\n60osshOegUJTNz8OBkZspvsCAwEAAQ==\n-----END PUBLIC KEY-----\n\";s:7:\"baseurl\";s:20:\"http://192.168.22.10\";}','2018-11-18 12:50:07','2018-11-17 12:50:07'),(_binary 'Probe::uri::http://192.168.22.10/profile/friendica3','a:21:{s:4:\"name\";s:10:\"friendica3\";s:4:\"nick\";s:10:\"friendica3\";s:4:\"guid\";s:36:\"930bb26b-425b-f00c-3ce7-94f334620775\";s:3:\"url\";s:39:\"http://192.168.22.10/profile/friendica3\";s:4:\"addr\";s:24:\"friendica3@192.168.22.10\";s:5:\"alias\";s:32:\"http://192.168.22.10/~friendica3\";s:5:\"photo\";s:40:\"http://192.168.22.10/photo/profile/4.jpg\";s:9:\"community\";s:0:\"\";s:8:\"keywords\";s:0:\"\";s:8:\"location\";s:0:\"\";s:5:\"about\";s:0:\"\";s:5:\"batch\";s:0:\"\";s:6:\"notify\";s:43:\"http://192.168.22.10/dfrn_notify/friendica3\";s:4:\"poll\";s:41:\"http://192.168.22.10/dfrn_poll/friendica3\";s:7:\"request\";s:44:\"http://192.168.22.10/dfrn_request/friendica3\";s:7:\"confirm\";s:44:\"http://192.168.22.10/dfrn_confirm/friendica3\";s:4:\"poco\";s:36:\"http://192.168.22.10/poco/friendica3\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dfrn\";s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvAs4TR4AI+nlBt8d7BHD\nViq6w3UslHqURRUo0+sfAE5RL45im2z+ryPag1K5dbs5pcoa6hfk9+EREgoWlwnX\nX/8UdkvkoHE6/JDFimuaK7pequwUQbQoOXkkBAyPtN8YhjfGM19CI5FIVByY+O8p\nO/lGls1h5bxYEIgjA0tTDw5FuhPtiw9SJAPtQs5Gueoe9y7VwXNLNenKI6r6/Kfo\nzgYKJS98ibCllMiDIY0ixZZqhsh5+oEAsGPaNtQSgw09fWyyDNUKOenC4NhhMWsY\nBtTgDOPkM1AgidQKny7wtfo04YCn13SZuU6cWXqCx2pTgxLpBRgNbfkf6/DerVEO\nh2/Fxx2oMrRqLox+kAj03zrKnto3n5cYASlmfeEmUBHtjc/qPbuEzm+FEJKTXkrg\njt0+xzTQxPr+oFMinACdTMu6J4lB6dGCJxbx/Dx6FcRKymUYGdLvZWITfKZAikRh\nX8Pll3bFExOk5ieOdBLRt5ujGHuMbV204qpUsL0kDU9/4aMnpJei4EZuw21ovDH1\nVchVjJS4fzsJkaDfA81+83ADHXU10+UJ7PXAq7U416nC/dr30Gp2cxYb1qELYe4W\nGXE9k857z1o3BevJi4smy0FeydVVEVJ/1SPhPcdKHIA6sfP+TzuvWk7zK+xDwdyb\no4/nVNHD26NC1mVTTAjR7t0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";s:7:\"baseurl\";s:20:\"http://192.168.22.10\";}','2018-11-18 12:50:08','2018-11-17 12:50:08'),(_binary 'Probe::uri::http://192.168.22.10/profile/friendica4','a:21:{s:4:\"name\";s:10:\"friendica4\";s:4:\"nick\";s:10:\"friendica4\";s:4:\"guid\";s:36:\"930bb26b-485b-f00c-9705-875375530301\";s:3:\"url\";s:39:\"http://192.168.22.10/profile/friendica4\";s:4:\"addr\";s:24:\"friendica4@192.168.22.10\";s:5:\"alias\";s:32:\"http://192.168.22.10/~friendica4\";s:5:\"photo\";s:40:\"http://192.168.22.10/photo/profile/5.jpg\";s:9:\"community\";s:0:\"\";s:8:\"keywords\";s:0:\"\";s:8:\"location\";s:0:\"\";s:5:\"about\";s:0:\"\";s:5:\"batch\";s:0:\"\";s:6:\"notify\";s:43:\"http://192.168.22.10/dfrn_notify/friendica4\";s:4:\"poll\";s:41:\"http://192.168.22.10/dfrn_poll/friendica4\";s:7:\"request\";s:44:\"http://192.168.22.10/dfrn_request/friendica4\";s:7:\"confirm\";s:44:\"http://192.168.22.10/dfrn_confirm/friendica4\";s:4:\"poco\";s:36:\"http://192.168.22.10/poco/friendica4\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dfrn\";s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtOfQNRnGbzBy9Rc7gLAI\nrB5Fp2SBFfjRnd5g99HKWI3Amz5BXdcOWsgikVtwSVGDD8TGPj56qIlp+ctfYkPZ\nn5QSGfA3VS5eqWNfE9aG3XZAO7M7x2pKVaf79ciuYK0HQrmCeClB844x8rXDmW5m\n1k6Any22lpXHdDY8heR6O/uLIG9i/eRiD8tFMY3ATVkJ4MF5TY/m0ZGhHAMfK9dm\nkJzNvJc0cYe6kBmpDDmlJwObo75NfPBi3bqTaIZvTxda6lgWcuv/J1IR0fLhW8IJ\nbbXcd/fSNHV5zdqPmZsiu4+nx1xf+40J1v9+uKCCxH6UlUR9HLcCpYH6PDmoEkRk\n2WVPsU2+crVbY5cbNx08LVe6ZGl/onhTM35t2JBpo9ClgTSmpgEkRQsBebWNEKn3\n/y7Ib+/IywdomRUTgXVtKt5+90FdEhNwrba2CyD3dFW/CQCwx+363juCZr16EiKx\nbG5VJ1aIN8/My9feB9fklqyCpy0vkMI9NptQbtKntueETeLTqKlZ5uJJZJtd6S7z\nrTAd6vx5WLOMYlfQF2K7MVCwYUVfcIoWKxAg3SU+5sIG+cSrreT67wxt6k6sEEOw\npRZn3qZ13vPpO1mJelhqQeDZYutywYHjNj+L5TjCIZqIS129MZbqDJELkjTmckRV\nAZmzTHqCDXwd70IddYvuuJMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";s:7:\"baseurl\";s:20:\"http://192.168.22.10\";}','2018-11-18 12:50:08','2018-11-17 12:50:08'),(_binary 'Probe::uri::http://192.168.22.10/profile/friendica5','a:21:{s:4:\"name\";s:10:\"friendica5\";s:4:\"nick\";s:10:\"friendica5\";s:4:\"guid\";s:36:\"930bb26b-545b-f00c-b13c-f57634480673\";s:3:\"url\";s:39:\"http://192.168.22.10/profile/friendica5\";s:4:\"addr\";s:24:\"friendica5@192.168.22.10\";s:5:\"alias\";s:32:\"http://192.168.22.10/~friendica5\";s:5:\"photo\";s:40:\"http://192.168.22.10/photo/profile/6.jpg\";s:9:\"community\";s:0:\"\";s:8:\"keywords\";s:0:\"\";s:8:\"location\";s:0:\"\";s:5:\"about\";s:0:\"\";s:5:\"batch\";s:0:\"\";s:6:\"notify\";s:43:\"http://192.168.22.10/dfrn_notify/friendica5\";s:4:\"poll\";s:41:\"http://192.168.22.10/dfrn_poll/friendica5\";s:7:\"request\";s:44:\"http://192.168.22.10/dfrn_request/friendica5\";s:7:\"confirm\";s:44:\"http://192.168.22.10/dfrn_confirm/friendica5\";s:4:\"poco\";s:36:\"http://192.168.22.10/poco/friendica5\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dfrn\";s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzbQgk0okIu48OTsuvI/j\nnTYfKREWuHx0Rkr/44zKv9NGOJItxb82OoK/59o4l2mkt3REOwEzsSeAUe8VjkFU\nnfmjTTg8GqDCQ07Bmux1lVdtyAIhqr3uMraS8bODUMRFnDSX39rYYUH+h7oBZ44k\nW2vGvnWKh8BYPmV+hAab8TuJBODrZy1z5A1lc9CSSoZCiEOSvO5tGgiTBWW/CUoC\n6jR/BqZy/jlbiuED/t1Hn8dKCyPkAUppFhVJgSiSaysLeQlGsw58QYvD4WJXWbGh\nOzBDyR5hmSPuRuCxWD0GkpCnZGtkLhrJHAhYysAvqlc6Oo+6leRuLq2S05cZI1cL\nwsjapgnIvPCSIm7OkFlEimqveMNTOKNbcyIHaq8kL3ZyUYWuygVndL9AdUhIEAkE\nOROFlAyv0fC0tbBhnsJ/SifvEGYOaO4eRB1mvvY2R+JU4gPXLWbeNSNrn4zpTdIL\n0pwDJvLAv+tgeheBz6fNyKqETeclMEuo+GUs3nB8zeO2ZJXwzAgqMt5/Vr27v8d7\nk+Cer7ydUT8QTlsRGTAjaWicDFPLlH9v2v15JEaDqjtIJ9kUdAaj+BnR3+j1x86g\nSrJa5SV4kdu/hduRtIfnhKTpu/ZnxhQzkWuu6gWtjCpLzTuaHybnh69rSz7CKoFU\nXnqm6IVFII/ny2a7I1KrMFECAwEAAQ==\n-----END PUBLIC KEY-----\n\";s:7:\"baseurl\";s:20:\"http://192.168.22.10\";}','2018-11-18 12:50:08','2018-11-17 12:50:08'),(_binary 'documentLoader:https://w3id.org/identity/v1','O:8:\"stdClass\":3:{s:10:\"contextUrl\";N;s:8:\"document\";s:3622:\"{\n  \"@context\": {\n    \"id\": \"@id\",\n    \"type\": \"@type\",\n\n    \"cred\": \"https://w3id.org/credentials#\",\n    \"dc\": \"http://purl.org/dc/terms/\",\n    \"identity\": \"https://w3id.org/identity#\",\n    \"perm\": \"https://w3id.org/permissions#\",\n    \"ps\": \"https://w3id.org/payswarm#\",\n    \"rdf\": \"http://www.w3.org/1999/02/22-rdf-syntax-ns#\",\n    \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\",\n    \"sec\": \"https://w3id.org/security#\",\n    \"schema\": \"http://schema.org/\",\n    \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n\n    \"Group\": \"https://www.w3.org/ns/activitystreams#Group\",\n\n    \"claim\": {\"@id\": \"cred:claim\", \"@type\": \"@id\"},\n    \"credential\": {\"@id\": \"cred:credential\", \"@type\": \"@id\"},\n    \"issued\": {\"@id\": \"cred:issued\", \"@type\": \"xsd:dateTime\"},\n    \"issuer\": {\"@id\": \"cred:issuer\", \"@type\": \"@id\"},\n    \"recipient\": {\"@id\": \"cred:recipient\", \"@type\": \"@id\"},\n    \"Credential\": \"cred:Credential\",\n    \"CryptographicKeyCredential\": \"cred:CryptographicKeyCredential\",\n\n    \"about\": {\"@id\": \"schema:about\", \"@type\": \"@id\"},\n    \"address\": {\"@id\": \"schema:address\", \"@type\": \"@id\"},\n    \"addressCountry\": \"schema:addressCountry\",\n    \"addressLocality\": \"schema:addressLocality\",\n    \"addressRegion\": \"schema:addressRegion\",\n    \"comment\": \"rdfs:comment\",\n    \"created\": {\"@id\": \"dc:created\", \"@type\": \"xsd:dateTime\"},\n    \"creator\": {\"@id\": \"dc:creator\", \"@type\": \"@id\"},\n    \"description\": \"schema:description\",\n    \"email\": \"schema:email\",\n    \"familyName\": \"schema:familyName\",\n    \"givenName\": \"schema:givenName\",\n    \"image\": {\"@id\": \"schema:image\", \"@type\": \"@id\"},\n    \"label\": \"rdfs:label\",\n    \"name\": \"schema:name\",\n    \"postalCode\": \"schema:postalCode\",\n    \"streetAddress\": \"schema:streetAddress\",\n    \"title\": \"dc:title\",\n    \"url\": {\"@id\": \"schema:url\", \"@type\": \"@id\"},\n    \"Person\": \"schema:Person\",\n    \"PostalAddress\": \"schema:PostalAddress\",\n    \"Organization\": \"schema:Organization\",\n\n    \"identityService\": {\"@id\": \"identity:identityService\", \"@type\": \"@id\"},\n    \"idp\": {\"@id\": \"identity:idp\", \"@type\": \"@id\"},\n    \"Identity\": \"identity:Identity\",\n\n    \"paymentProcessor\": \"ps:processor\",\n    \"preferences\": {\"@id\": \"ps:preferences\", \"@type\": \"@vocab\"},\n\n    \"cipherAlgorithm\": \"sec:cipherAlgorithm\",\n    \"cipherData\": \"sec:cipherData\",\n    \"cipherKey\": \"sec:cipherKey\",\n    \"digestAlgorithm\": \"sec:digestAlgorithm\",\n    \"digestValue\": \"sec:digestValue\",\n    \"domain\": \"sec:domain\",\n    \"expires\": {\"@id\": \"sec:expiration\", \"@type\": \"xsd:dateTime\"},\n    \"initializationVector\": \"sec:initializationVector\",\n    \"member\": {\"@id\": \"schema:member\", \"@type\": \"@id\"},\n    \"memberOf\": {\"@id\": \"schema:memberOf\", \"@type\": \"@id\"},\n    \"nonce\": \"sec:nonce\",\n    \"normalizationAlgorithm\": \"sec:normalizationAlgorithm\",\n    \"owner\": {\"@id\": \"sec:owner\", \"@type\": \"@id\"},\n    \"password\": \"sec:password\",\n    \"privateKey\": {\"@id\": \"sec:privateKey\", \"@type\": \"@id\"},\n    \"privateKeyPem\": \"sec:privateKeyPem\",\n    \"publicKey\": {\"@id\": \"sec:publicKey\", \"@type\": \"@id\"},\n    \"publicKeyPem\": \"sec:publicKeyPem\",\n    \"publicKeyService\": {\"@id\": \"sec:publicKeyService\", \"@type\": \"@id\"},\n    \"revoked\": {\"@id\": \"sec:revoked\", \"@type\": \"xsd:dateTime\"},\n    \"signature\": \"sec:signature\",\n    \"signatureAlgorithm\": \"sec:signatureAlgorithm\",\n    \"signatureValue\": \"sec:signatureValue\",\n    \"CryptographicKey\": \"sec:Key\",\n    \"EncryptedMessage\": \"sec:EncryptedMessage\",\n    \"GraphSignature2012\": \"sec:GraphSignature2012\",\n    \"LinkedDataSignature2015\": \"sec:LinkedDataSignature2015\",\n\n    \"accessControl\": {\"@id\": \"perm:accessControl\", \"@type\": \"@id\"},\n    \"writePermission\": {\"@id\": \"perm:writePermission\", \"@type\": \"@id\"}\n  }\n}\n\";s:11:\"documentUrl\";s:52:\"https://web-payments.org/contexts/identity-v1.jsonld\";}','2018-11-18 14:00:04','2018-11-17 14:00:04'),(_binary 'documentLoader:https://w3id.org/security/v1','O:8:\"stdClass\":3:{s:10:\"contextUrl\";N;s:8:\"document\";s:2019:\"{\n  \"@context\": {\n    \"id\": \"@id\",\n    \"type\": \"@type\",\n\n    \"dc\": \"http://purl.org/dc/terms/\",\n    \"sec\": \"https://w3id.org/security#\",\n    \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n\n    \"EcdsaKoblitzSignature2016\": \"sec:EcdsaKoblitzSignature2016\",\n    \"Ed25519Signature2018\": \"sec:Ed25519Signature2018\",\n    \"EncryptedMessage\": \"sec:EncryptedMessage\",\n    \"GraphSignature2012\": \"sec:GraphSignature2012\",\n    \"LinkedDataSignature2015\": \"sec:LinkedDataSignature2015\",\n    \"LinkedDataSignature2016\": \"sec:LinkedDataSignature2016\",\n    \"CryptographicKey\": \"sec:Key\",\n\n    \"authenticationTag\": \"sec:authenticationTag\",\n    \"canonicalizationAlgorithm\": \"sec:canonicalizationAlgorithm\",\n    \"cipherAlgorithm\": \"sec:cipherAlgorithm\",\n    \"cipherData\": \"sec:cipherData\",\n    \"cipherKey\": \"sec:cipherKey\",\n    \"created\": {\"@id\": \"dc:created\", \"@type\": \"xsd:dateTime\"},\n    \"creator\": {\"@id\": \"dc:creator\", \"@type\": \"@id\"},\n    \"digestAlgorithm\": \"sec:digestAlgorithm\",\n    \"digestValue\": \"sec:digestValue\",\n    \"domain\": \"sec:domain\",\n    \"encryptionKey\": \"sec:encryptionKey\",\n    \"expiration\": {\"@id\": \"sec:expiration\", \"@type\": \"xsd:dateTime\"},\n    \"expires\": {\"@id\": \"sec:expiration\", \"@type\": \"xsd:dateTime\"},\n    \"initializationVector\": \"sec:initializationVector\",\n    \"iterationCount\": \"sec:iterationCount\",\n    \"nonce\": \"sec:nonce\",\n    \"normalizationAlgorithm\": \"sec:normalizationAlgorithm\",\n    \"owner\": {\"@id\": \"sec:owner\", \"@type\": \"@id\"},\n    \"password\": \"sec:password\",\n    \"privateKey\": {\"@id\": \"sec:privateKey\", \"@type\": \"@id\"},\n    \"privateKeyPem\": \"sec:privateKeyPem\",\n    \"publicKey\": {\"@id\": \"sec:publicKey\", \"@type\": \"@id\"},\n    \"publicKeyBase58\": \"sec:publicKeyBase58\",\n    \"publicKeyPem\": \"sec:publicKeyPem\",\n    \"publicKeyService\": {\"@id\": \"sec:publicKeyService\", \"@type\": \"@id\"},\n    \"revoked\": {\"@id\": \"sec:revoked\", \"@type\": \"xsd:dateTime\"},\n    \"salt\": \"sec:salt\",\n    \"signature\": \"sec:signature\",\n    \"signatureAlgorithm\": \"sec:signingAlgorithm\",\n    \"signatureValue\": \"sec:signatureValue\"\n  }\n}\n\";s:11:\"documentUrl\";s:52:\"https://web-payments.org/contexts/security-v1.jsonld\";}','2018-11-18 12:34:45','2018-11-17 12:34:45'),(_binary 'documentLoader:https://www.w3.org/ns/activitystreams','O:8:\"stdClass\":3:{s:10:\"contextUrl\";N;s:8:\"document\";s:7856:\"{\n  \"@context\": {\n    \"@vocab\": \"_:\",\n    \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n    \"as\": \"https://www.w3.org/ns/activitystreams#\",\n    \"ldp\": \"http://www.w3.org/ns/ldp#\",\n    \"id\": \"@id\",\n    \"type\": \"@type\",\n    \"Accept\": \"as:Accept\",\n    \"Activity\": \"as:Activity\",\n    \"IntransitiveActivity\": \"as:IntransitiveActivity\",\n    \"Add\": \"as:Add\",\n    \"Announce\": \"as:Announce\",\n    \"Application\": \"as:Application\",\n    \"Arrive\": \"as:Arrive\",\n    \"Article\": \"as:Article\",\n    \"Audio\": \"as:Audio\",\n    \"Block\": \"as:Block\",\n    \"Collection\": \"as:Collection\",\n    \"CollectionPage\": \"as:CollectionPage\",\n    \"Relationship\": \"as:Relationship\",\n    \"Create\": \"as:Create\",\n    \"Delete\": \"as:Delete\",\n    \"Dislike\": \"as:Dislike\",\n    \"Document\": \"as:Document\",\n    \"Event\": \"as:Event\",\n    \"Follow\": \"as:Follow\",\n    \"Flag\": \"as:Flag\",\n    \"Group\": \"as:Group\",\n    \"Ignore\": \"as:Ignore\",\n    \"Image\": \"as:Image\",\n    \"Invite\": \"as:Invite\",\n    \"Join\": \"as:Join\",\n    \"Leave\": \"as:Leave\",\n    \"Like\": \"as:Like\",\n    \"Link\": \"as:Link\",\n    \"Mention\": \"as:Mention\",\n    \"Note\": \"as:Note\",\n    \"Object\": \"as:Object\",\n    \"Offer\": \"as:Offer\",\n    \"OrderedCollection\": \"as:OrderedCollection\",\n    \"OrderedCollectionPage\": \"as:OrderedCollectionPage\",\n    \"Organization\": \"as:Organization\",\n    \"Page\": \"as:Page\",\n    \"Person\": \"as:Person\",\n    \"Place\": \"as:Place\",\n    \"Profile\": \"as:Profile\",\n    \"Question\": \"as:Question\",\n    \"Reject\": \"as:Reject\",\n    \"Remove\": \"as:Remove\",\n    \"Service\": \"as:Service\",\n    \"TentativeAccept\": \"as:TentativeAccept\",\n    \"TentativeReject\": \"as:TentativeReject\",\n    \"Tombstone\": \"as:Tombstone\",\n    \"Undo\": \"as:Undo\",\n    \"Update\": \"as:Update\",\n    \"Video\": \"as:Video\",\n    \"View\": \"as:View\",\n    \"Listen\": \"as:Listen\",\n    \"Read\": \"as:Read\",\n    \"Move\": \"as:Move\",\n    \"Travel\": \"as:Travel\",\n    \"IsFollowing\": \"as:IsFollowing\",\n    \"IsFollowedBy\": \"as:IsFollowedBy\",\n    \"IsContact\": \"as:IsContact\",\n    \"IsMember\": \"as:IsMember\",\n    \"subject\": {\n      \"@id\": \"as:subject\",\n      \"@type\": \"@id\"\n    },\n    \"relationship\": {\n      \"@id\": \"as:relationship\",\n      \"@type\": \"@id\"\n    },\n    \"actor\": {\n      \"@id\": \"as:actor\",\n      \"@type\": \"@id\"\n    },\n    \"attributedTo\": {\n      \"@id\": \"as:attributedTo\",\n      \"@type\": \"@id\"\n    },\n    \"attachment\": {\n      \"@id\": \"as:attachment\",\n      \"@type\": \"@id\"\n    },\n    \"bcc\": {\n      \"@id\": \"as:bcc\",\n      \"@type\": \"@id\"\n    },\n    \"bto\": {\n      \"@id\": \"as:bto\",\n      \"@type\": \"@id\"\n    },\n    \"cc\": {\n      \"@id\": \"as:cc\",\n      \"@type\": \"@id\"\n    },\n    \"context\": {\n      \"@id\": \"as:context\",\n      \"@type\": \"@id\"\n    },\n    \"current\": {\n      \"@id\": \"as:current\",\n      \"@type\": \"@id\"\n    },\n    \"first\": {\n      \"@id\": \"as:first\",\n      \"@type\": \"@id\"\n    },\n    \"generator\": {\n      \"@id\": \"as:generator\",\n      \"@type\": \"@id\"\n    },\n    \"icon\": {\n      \"@id\": \"as:icon\",\n      \"@type\": \"@id\"\n    },\n    \"image\": {\n      \"@id\": \"as:image\",\n      \"@type\": \"@id\"\n    },\n    \"inReplyTo\": {\n      \"@id\": \"as:inReplyTo\",\n      \"@type\": \"@id\"\n    },\n    \"items\": {\n      \"@id\": \"as:items\",\n      \"@type\": \"@id\"\n    },\n    \"instrument\": {\n      \"@id\": \"as:instrument\",\n      \"@type\": \"@id\"\n    },\n    \"orderedItems\": {\n      \"@id\": \"as:items\",\n      \"@type\": \"@id\",\n      \"@container\": \"@list\"\n    },\n    \"last\": {\n      \"@id\": \"as:last\",\n      \"@type\": \"@id\"\n    },\n    \"location\": {\n      \"@id\": \"as:location\",\n      \"@type\": \"@id\"\n    },\n    \"next\": {\n      \"@id\": \"as:next\",\n      \"@type\": \"@id\"\n    },\n    \"object\": {\n      \"@id\": \"as:object\",\n      \"@type\": \"@id\"\n    },\n    \"oneOf\": {\n      \"@id\": \"as:oneOf\",\n      \"@type\": \"@id\"\n    },\n    \"anyOf\": {\n      \"@id\": \"as:anyOf\",\n      \"@type\": \"@id\"\n    },\n    \"closed\": {\n      \"@id\": \"as:closed\",\n      \"@type\": \"xsd:dateTime\"\n    },\n    \"origin\": {\n      \"@id\": \"as:origin\",\n      \"@type\": \"@id\"\n    },\n    \"accuracy\": {\n      \"@id\": \"as:accuracy\",\n      \"@type\": \"xsd:float\"\n    },\n    \"prev\": {\n      \"@id\": \"as:prev\",\n      \"@type\": \"@id\"\n    },\n    \"preview\": {\n      \"@id\": \"as:preview\",\n      \"@type\": \"@id\"\n    },\n    \"replies\": {\n      \"@id\": \"as:replies\",\n      \"@type\": \"@id\"\n    },\n    \"result\": {\n      \"@id\": \"as:result\",\n      \"@type\": \"@id\"\n    },\n    \"audience\": {\n      \"@id\": \"as:audience\",\n      \"@type\": \"@id\"\n    },\n    \"partOf\": {\n      \"@id\": \"as:partOf\",\n      \"@type\": \"@id\"\n    },\n    \"tag\": {\n      \"@id\": \"as:tag\",\n      \"@type\": \"@id\"\n    },\n    \"target\": {\n      \"@id\": \"as:target\",\n      \"@type\": \"@id\"\n    },\n    \"to\": {\n      \"@id\": \"as:to\",\n      \"@type\": \"@id\"\n    },\n    \"url\": {\n      \"@id\": \"as:url\",\n      \"@type\": \"@id\"\n    },\n    \"altitude\": {\n      \"@id\": \"as:altitude\",\n      \"@type\": \"xsd:float\"\n    },\n    \"content\": \"as:content\",\n    \"contentMap\": {\n      \"@id\": \"as:content\",\n      \"@container\": \"@language\"\n    },\n    \"name\": \"as:name\",\n    \"nameMap\": {\n      \"@id\": \"as:name\",\n      \"@container\": \"@language\"\n    },\n    \"duration\": {\n      \"@id\": \"as:duration\",\n      \"@type\": \"xsd:duration\"\n    },\n    \"endTime\": {\n      \"@id\": \"as:endTime\",\n      \"@type\": \"xsd:dateTime\"\n    },\n    \"height\": {\n      \"@id\": \"as:height\",\n      \"@type\": \"xsd:nonNegativeInteger\"\n    },\n    \"href\": {\n      \"@id\": \"as:href\",\n      \"@type\": \"@id\"\n    },\n    \"hreflang\": \"as:hreflang\",\n    \"latitude\": {\n      \"@id\": \"as:latitude\",\n      \"@type\": \"xsd:float\"\n    },\n    \"longitude\": {\n      \"@id\": \"as:longitude\",\n      \"@type\": \"xsd:float\"\n    },\n    \"mediaType\": \"as:mediaType\",\n    \"published\": {\n      \"@id\": \"as:published\",\n      \"@type\": \"xsd:dateTime\"\n    },\n    \"radius\": {\n      \"@id\": \"as:radius\",\n      \"@type\": \"xsd:float\"\n    },\n    \"rel\": \"as:rel\",\n    \"startIndex\": {\n      \"@id\": \"as:startIndex\",\n      \"@type\": \"xsd:nonNegativeInteger\"\n    },\n    \"startTime\": {\n      \"@id\": \"as:startTime\",\n      \"@type\": \"xsd:dateTime\"\n    },\n    \"summary\": \"as:summary\",\n    \"summaryMap\": {\n      \"@id\": \"as:summary\",\n      \"@container\": \"@language\"\n    },\n    \"totalItems\": {\n      \"@id\": \"as:totalItems\",\n      \"@type\": \"xsd:nonNegativeInteger\"\n    },\n    \"units\": \"as:units\",\n    \"updated\": {\n      \"@id\": \"as:updated\",\n      \"@type\": \"xsd:dateTime\"\n    },\n    \"width\": {\n      \"@id\": \"as:width\",\n      \"@type\": \"xsd:nonNegativeInteger\"\n    },\n    \"describes\": {\n      \"@id\": \"as:describes\",\n      \"@type\": \"@id\"\n    },\n    \"formerType\": {\n      \"@id\": \"as:formerType\",\n      \"@type\": \"@id\"\n    },\n    \"deleted\": {\n      \"@id\": \"as:deleted\",\n      \"@type\": \"xsd:dateTime\"\n    },\n    \"inbox\": {\n      \"@id\": \"ldp:inbox\",\n      \"@type\": \"@id\"\n    },\n    \"outbox\": {\n      \"@id\": \"as:outbox\",\n      \"@type\": \"@id\"\n    },\n    \"following\": {\n      \"@id\": \"as:following\",\n      \"@type\": \"@id\"\n    },\n    \"followers\": {\n      \"@id\": \"as:followers\",\n      \"@type\": \"@id\"\n    },\n    \"streams\": {\n      \"@id\": \"as:streams\",\n      \"@type\": \"@id\"\n    },\n    \"preferredUsername\": \"as:preferredUsername\",\n    \"endpoints\": {\n      \"@id\": \"as:endpoints\",\n      \"@type\": \"@id\"\n    },\n    \"uploadMedia\": {\n      \"@id\": \"as:uploadMedia\",\n      \"@type\": \"@id\"\n    },\n    \"proxyUrl\": {\n      \"@id\": \"as:proxyUrl\",\n      \"@type\": \"@id\"\n    },\n    \"liked\": {\n      \"@id\": \"as:liked\",\n      \"@type\": \"@id\"\n    },\n    \"oauthAuthorizationEndpoint\": {\n      \"@id\": \"as:oauthAuthorizationEndpoint\",\n      \"@type\": \"@id\"\n    },\n    \"oauthTokenEndpoint\": {\n      \"@id\": \"as:oauthTokenEndpoint\",\n      \"@type\": \"@id\"\n    },\n    \"provideClientKey\": {\n      \"@id\": \"as:provideClientKey\",\n      \"@type\": \"@id\"\n    },\n    \"signClientKey\": {\n      \"@id\": \"as:signClientKey\",\n      \"@type\": \"@id\"\n    },\n    \"sharedInbox\": {\n      \"@id\": \"as:sharedInbox\",\n      \"@type\": \"@id\"\n    },\n    \"Public\": {\n      \"@id\": \"as:Public\",\n      \"@type\": \"@id\"\n    },\n    \"source\": \"as:source\",\n    \"likes\": {\n      \"@id\": \"as:likes\",\n      \"@type\": \"@id\"\n    },\n    \"shares\": {\n      \"@id\": \"as:shares\",\n      \"@type\": \"@id\"\n    }\n  }\n}\n\";s:11:\"documentUrl\";s:37:\"https://www.w3.org/ns/activitystreams\";}','2018-11-18 12:34:44','2018-11-17 12:34:44');
 /*!40000 ALTER TABLE `cache` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -154,14 +181,14 @@ DROP TABLE IF EXISTS `challenge`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `challenge` (
-  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
   `challenge` varchar(255) NOT NULL DEFAULT '',
   `dfrn-id` varchar(255) NOT NULL DEFAULT '',
-  `expire` int(11) NOT NULL DEFAULT '0',
+  `expire` int(10) unsigned NOT NULL DEFAULT '0',
   `type` varchar(255) NOT NULL DEFAULT '',
   `last_update` varchar(255) NOT NULL DEFAULT '',
   PRIMARY KEY (`id`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4;
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -186,9 +213,9 @@ CREATE TABLE `clients` (
   `redirect_uri` varchar(200) NOT NULL DEFAULT '',
   `name` text,
   `icon` text,
-  `uid` int(11) NOT NULL DEFAULT '0',
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'User id',
   PRIMARY KEY (`client_id`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='OAuth usage';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -209,12 +236,12 @@ DROP TABLE IF EXISTS `config`;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `config` (
   `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
-  `cat` varbinary(255) NOT NULL DEFAULT '',
-  `k` varbinary(255) NOT NULL DEFAULT '',
+  `cat` varbinary(50) NOT NULL DEFAULT '',
+  `k` varbinary(50) NOT NULL DEFAULT '',
   `v` mediumtext,
   PRIMARY KEY (`id`),
   UNIQUE KEY `cat_k` (`cat`,`k`)
-) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COMMENT='main configuration storage';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -223,7 +250,7 @@ CREATE TABLE `config` (
 
 LOCK TABLES `config` WRITE;
 /*!40000 ALTER TABLE `config` DISABLE KEYS */;
-INSERT INTO `config` VALUES (1,'system','maintenance','0'),(2,'system','maintenance_reason',''),(3,'system','dbupdate','1'),(4,'system','url','http://friendica.local'),(5,'system','build','1234'),(6,'system','temppath','/tmp/friendica.local'),(7,'system','itemcache','/tmp/friendica.local/itemcache'),(8,'system','cache_cleared_day','1504774549'),(9,'system','cache_cleared_hour','1504774549'),(10,'system','cache_cleared_half_hour','1504774549'),(11,'system','cache_cleared_quarter_hour','1504775460'),(12,'system','cache_cleared_five_minute','1504775835'),(13,'system','cache_cleared_minute','1504775968'),(14,'system','poller_last_cleaned','1504775768'),(15,'system','site_prvkey','-----BEGIN PRIVATE KEY-----\nMIICdwIBADANBgkqhkiG9w0BAQEFAASCAmEwggJdAgEAAoGBAKt55CWxHK15VG/X\nnUyQhm+1ZQnLcjsBQowmbWjJdZdPq/5ID5elVMj5VGwZ8gkZFUASS7c1kK+ZvFgi\nTc4j8c2vjbjGhZ5yee/9zGkZcUu/ZC1QVXNwlw/M25Fzu1iB53xH8BiqHNFY/88Y\n6f+wvWKgTP1Z3SmgOb2pDcfxd90nAgMBAAECgYBRmPU6AmfVHNFTT1To5DU03yqv\nWIKJFXZnXrndjVBJqn37yKqyzNflss+7iTUloyv7izlAe1rYVN3NSrWfjHc5U4Y3\nTRRsKcl3EhA1ExI6LGWCfCEstpHq8Ix78cASKAm2rC+Jfnn7Vssuunii7bDvplZi\n/pNl9hEuTwwSEBaF4QJBAOGysKq228c6c7Jzl8/huzXfygPqAw2M//gfVJcMCRs7\nyYPbyLXGkry/73e5InrjaYfQVGKv/jm8Wviq9bQ+468CQQDCf5QoH4Zht2z20Ysb\noUkQ7qsYgoxQun1ZYMVnzsAsPc8vh+2H2oGnT4o2K2sa7XuKJVcVO+AUp6yZaiab\npuQJAkBxQ5SHR5cJ51qSjpH8ICMsSS9/QVvg3AbFBSwVVVPol9tsUcrq9klDcesC\nISWdmCyonLMMh5fEb7MTofAGUZ0/AkEAqlNvO3PgCtLG6Z63Y4rqoZlg3CX3Gvs1\nqn/EYBP+1r+KIOW4bbA8ung9YRLEyOAPv/rTOBUnNu9fhzoedVDBgQJBAI0Vb7kQ\nd9O7cMNoeNkU1z3D19jl8OOqUx1RFHF/ZforUfLhTctDOmkJi+lCtjL59MUtToUw\nR+aGkzhkzkFDDR4=\n-----END PRIVATE KEY-----\n'),(16,'system','site_pubkey','-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCreeQlsRyteVRv151MkIZvtWUJ\ny3I7AUKMJm1oyXWXT6v+SA+XpVTI+VRsGfIJGRVAEku3NZCvmbxYIk3OI/HNr424\nxoWecnnv/cxpGXFLv2QtUFVzcJcPzNuRc7tYged8R/AYqhzRWP/PGOn/sL1ioEz9\nWd0poDm9qQ3H8XfdJwIDAQAB\n-----END PUBLIC KEY-----\n');
+INSERT INTO `config` VALUES (1,_binary 'system',_binary 'build','1290'),(2,_binary 'system',_binary 'temppath','/tmp/'),(3,_binary 'database',_binary 'last_successful_update_function','update_1290'),(4,_binary 'database',_binary 'last_successful_update_function_time','1542457404'),(5,_binary 'system',_binary 'maintenance','0'),(6,_binary 'system',_binary 'maintenance_reason',''),(7,_binary 'system',_binary 'dbupdate','1'),(8,_binary 'database',_binary 'last_successful_update','1290'),(9,_binary 'database',_binary 'last_successful_update_time','1542457404'),(10,_binary 'system',_binary 'worker_last_cleaned','1542467401'),(11,_binary 'system',_binary 'url','http://192.168.22.10'),(12,_binary 'system',_binary 'itemcache','/tmp/itemcache'),(13,_binary 'system',_binary 'spoolpath','/tmp/spool'),(14,_binary 'system',_binary 'last_worker_execution','2018-11-17 15:10:01'),(15,_binary 'system',_binary 'last_expire_day','17'),(16,_binary 'system',_binary 'last_cron_hourly','1542466202'),(17,_binary 'system',_binary 'last_cron','1542466802'),(18,_binary 'system',_binary 'post_update_version','1281'),(19,_binary 'system',_binary 'cache_last_cleared','1542466204'),(20,_binary 'system',_binary 'disable_password_exposed','1'),(21,_binary 'system',_binary 'site_prvkey','-----BEGIN PRIVATE KEY-----\nMIICdwIBADANBgkqhkiG9w0BAQEFAASCAmEwggJdAgEAAoGBAJIdBXCjtHBRpqM3\n7is5u6I39XM6Q0l5pOAVP5MsKhlU+wYqdBld9heVBlJqhWfYz509+Kgpcmn2e/HS\nz+8yCr77FtlzzUOve1ESi1q5ZW0LWZKwepoxs9RmHIBy1eWe4kB4/53dojUlxXJP\n6iNUKHK9DYDuh8JuWty4D+YmVvmzAgMBAAECgYBiLWXuXdFsdzDFE1vRZ6WQRpGC\nr29u+3GxsBVbyp0vEE7rwbLpKJ2nEteAoVqqgKBgQ7fFJrReRuTZhJF7Y+CblypX\n2px3tjLTVc7O2NuHlgrXFk+RJLXr8lg9jbzcU77wy0YTPZMqoFIVFFZQcjjJ+T4Q\n0Mh7K9jqIrGIOFPTgQJBAMIS8ZQoeP9hDQ17FyWpkEDJleY2RTVer42D2T5Pn7GI\nlOlRGqLZFzu6YXWynNa1HvfcxIlW/sR0YrDlEGwLJ2MCQQDAvGIQ9oPXdNR31NLe\nS22hIi1KZxOAa0cS8FH4BxA7F3a3ShC1CiIObl/O03u+ZBJYho2peqQ++rIkNo+h\nWD1xAkEAjkHikO6l2tSiA7qxeer0EXlyhoBLdNaGKl52VMV60mDCfs/zjWFCNYbm\nP6cAbiXvoFJUQjPhpdGGMhKGWhxG7wJBAKxuneoBMpkre/8tl+6rWwyjMBP1vhvR\nXogSG7OkViAX8O0wxVvDEg8JLowy5u3CSCuNTeZHw/RYg9IkQkIeWPECQCrDS23z\neTzUnhRcMRCtH9YrkAIcyQpRao5lD36Q7P0zr4sepU7790B4rqUl/UzL3sm6VOG7\nDDTBvTPpj1b+/bU=\n-----END PRIVATE KEY-----\n'),(22,_binary 'system',_binary 'site_pubkey','-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCSHQVwo7RwUaajN+4rObuiN/Vz\nOkNJeaTgFT+TLCoZVPsGKnQZXfYXlQZSaoVn2M+dPfioKXJp9nvx0s/vMgq++xbZ\nc81Dr3tREotauWVtC1mSsHqaMbPUZhyActXlnuJAeP+d3aI1JcVyT+ojVChyvQ2A\n7ofCblrcuA/mJlb5swIDAQAB\n-----END PUBLIC KEY-----\n'),(23,_binary 'system',_binary 'post_update_version_1279_id','0'),(24,_binary 'system',_binary 'post_update_version_1281_id','0');
 /*!40000 ALTER TABLE `config` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -235,26 +262,26 @@ DROP TABLE IF EXISTS `contact`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `contact` (
-  `id` int(11) NOT NULL AUTO_INCREMENT,
-  `uid` int(11) NOT NULL DEFAULT '0',
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Owner User id',
   `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  `self` tinyint(1) NOT NULL DEFAULT '0',
+  `self` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1 if the contact is the user him/her self',
   `remote_self` tinyint(1) NOT NULL DEFAULT '0',
-  `rel` tinyint(1) NOT NULL DEFAULT '0',
+  `rel` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'The kind of the relation between the user and the contact',
   `duplex` tinyint(1) NOT NULL DEFAULT '0',
-  `network` varchar(255) NOT NULL DEFAULT '',
-  `name` varchar(255) NOT NULL DEFAULT '',
-  `nick` varchar(255) NOT NULL DEFAULT '',
+  `network` char(4) NOT NULL DEFAULT '' COMMENT 'Network protocol of the contact',
+  `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Name that this contact is known by',
+  `nick` varchar(255) NOT NULL DEFAULT '' COMMENT 'Nick- and user name of the contact',
   `location` varchar(255) NOT NULL DEFAULT '',
   `about` text,
-  `keywords` text,
+  `keywords` text COMMENT 'public keywords (interests) of the contact',
   `gender` varchar(32) NOT NULL DEFAULT '',
   `xmpp` varchar(255) NOT NULL DEFAULT '',
   `attag` varchar(255) NOT NULL DEFAULT '',
   `avatar` varchar(255) NOT NULL DEFAULT '',
-  `photo` text,
-  `thumb` text,
-  `micro` text,
+  `photo` varchar(255) DEFAULT '' COMMENT 'Link to the profile photo of the contact',
+  `thumb` varchar(255) DEFAULT '' COMMENT 'Link to the profile photo (thumb size)',
+  `micro` varchar(255) DEFAULT '' COMMENT 'Link to the profile photo (micro size)',
   `site-pubkey` text,
   `issued-id` varchar(255) NOT NULL DEFAULT '',
   `dfrn-id` varchar(255) NOT NULL DEFAULT '',
@@ -262,46 +289,47 @@ CREATE TABLE `contact` (
   `nurl` varchar(255) NOT NULL DEFAULT '',
   `addr` varchar(255) NOT NULL DEFAULT '',
   `alias` varchar(255) NOT NULL DEFAULT '',
-  `pubkey` text,
-  `prvkey` text,
+  `pubkey` text COMMENT 'RSA public key 4096 bit',
+  `prvkey` text COMMENT 'RSA private key 4096 bit',
   `batch` varchar(255) NOT NULL DEFAULT '',
-  `request` text,
-  `notify` text,
-  `poll` text,
-  `confirm` text,
-  `poco` text,
+  `request` varchar(255) DEFAULT NULL,
+  `notify` varchar(255) DEFAULT NULL,
+  `poll` varchar(255) DEFAULT NULL,
+  `confirm` varchar(255) DEFAULT NULL,
+  `poco` varchar(255) DEFAULT NULL,
   `aes_allow` tinyint(1) NOT NULL DEFAULT '0',
   `ret-aes` tinyint(1) NOT NULL DEFAULT '0',
   `usehub` tinyint(1) NOT NULL DEFAULT '0',
   `subhub` tinyint(1) NOT NULL DEFAULT '0',
   `hub-verify` varchar(255) NOT NULL DEFAULT '',
-  `last-update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  `success_update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  `failure_update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+  `last-update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last try to update the contact info',
+  `success_update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last successful contact update',
+  `failure_update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last failed update',
   `name-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
   `uri-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
   `avatar-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
   `term-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  `last-item` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  `priority` tinyint(3) NOT NULL DEFAULT '0',
+  `last-item` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'date of the last post',
+  `priority` tinyint(3) unsigned NOT NULL DEFAULT '0',
   `blocked` tinyint(1) NOT NULL DEFAULT '1',
-  `readonly` tinyint(1) NOT NULL DEFAULT '0',
+  `readonly` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'posts of the contact are readonly',
   `writable` tinyint(1) NOT NULL DEFAULT '0',
-  `forum` tinyint(1) NOT NULL DEFAULT '0',
-  `prv` tinyint(1) NOT NULL DEFAULT '0',
-  `contact-type` int(11) NOT NULL DEFAULT '0',
+  `forum` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'contact is a forum',
+  `prv` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'contact is a private group',
+  `contact-type` tinyint(4) NOT NULL DEFAULT '0',
   `hidden` tinyint(1) NOT NULL DEFAULT '0',
   `archive` tinyint(1) NOT NULL DEFAULT '0',
   `pending` tinyint(1) NOT NULL DEFAULT '1',
-  `rating` tinyint(1) NOT NULL DEFAULT '0',
+  `deleted` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Contact has been deleted',
+  `rating` tinyint(4) NOT NULL DEFAULT '0',
   `reason` text,
-  `closeness` tinyint(2) NOT NULL DEFAULT '99',
+  `closeness` tinyint(3) unsigned NOT NULL DEFAULT '99',
   `info` mediumtext,
-  `profile-id` int(11) NOT NULL DEFAULT '0',
+  `profile-id` int(10) unsigned NOT NULL DEFAULT '0',
   `bdyear` varchar(4) NOT NULL DEFAULT '',
   `bd` date NOT NULL DEFAULT '0001-01-01',
   `notify_new_posts` tinyint(1) NOT NULL DEFAULT '0',
-  `fetch_further_information` tinyint(1) NOT NULL DEFAULT '0',
+  `fetch_further_information` tinyint(3) unsigned NOT NULL DEFAULT '0',
   `ffi_keyword_blacklist` text,
   PRIMARY KEY (`id`),
   KEY `uid_name` (`uid`,`name`(190)),
@@ -309,14 +337,14 @@ CREATE TABLE `contact` (
   KEY `alias_uid` (`alias`(32),`uid`),
   KEY `pending_uid` (`pending`,`uid`),
   KEY `blocked_uid` (`blocked`,`uid`),
-  KEY `uid_rel_network_poll` (`uid`,`rel`,`network`(4),`poll`(64),`archive`),
-  KEY `uid_network_batch` (`uid`,`network`(4),`batch`(64)),
+  KEY `uid_rel_network_poll` (`uid`,`rel`,`network`,`poll`(64),`archive`),
+  KEY `uid_network_batch` (`uid`,`network`,`batch`(64)),
   KEY `addr_uid` (`addr`(32),`uid`),
   KEY `nurl_uid` (`nurl`(32),`uid`),
   KEY `nick_uid` (`nick`(32),`uid`),
-  KEY `dfrn-id` (`dfrn-id`(191)),
-  KEY `issued-id` (`issued-id`(191))
-) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4;
+  KEY `dfrn-id` (`dfrn-id`(64)),
+  KEY `issued-id` (`issued-id`(64))
+) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 COMMENT='contact table';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -325,7 +353,7 @@ CREATE TABLE `contact` (
 
 LOCK TABLES `contact` WRITE;
 /*!40000 ALTER TABLE `contact` DISABLE KEYS */;
-INSERT INTO `contact` VALUES (1,1,'2017-09-07 08:55:42',1,0,0,0,'','admin','admin','',NULL,NULL,'','','','','http://friendica.local/photo/profile/1.jpg','http://friendica.local/photo/avatar/1.jpg','http://friendica.local/photo/micro/1.jpg',NULL,'','','http://friendica.local/profile/admin','http://friendica.local/profile/admin','admin@friendica.local','',NULL,NULL,'','http://friendica.local/dfrn_request/admin','http://friendica.local/dfrn_notify/admin','http://friendica.local/dfrn_poll/admin','http://friendica.local/dfrn_confirm/admin','http://friendica.local/poco/admin',0,0,0,0,'','0001-01-01 00:00:00','0001-01-01 00:00:00','0001-01-01 00:00:00','2017-09-07 08:55:42','2017-09-07 08:55:42','2017-09-07 08:55:42','0001-01-01 00:00:00','0001-01-01 00:00:00',0,0,0,0,0,0,0,0,0,0,0,NULL,0,NULL,0,'','0001-01-01',0,0,NULL),(2,2,'2017-09-07 08:56:53',1,0,0,0,'','friendica1','friendica1','',NULL,NULL,'','','','http://friendica.local/photo/f958f83dd2af4c30b30045dfc6ff0718-4.jpg?ts=1504775108','http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575','http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-5.jpg?ts=1504775575','http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-6.jpg?ts=1504775575',NULL,'','','http://friendica.local/profile/friendica1','http://friendica.local/profile/friendica1','friendica1@friendica.local','',NULL,NULL,'','http://friendica.local/dfrn_request/friendica1','http://friendica.local/dfrn_notify/friendica1','http://friendica.local/dfrn_poll/friendica1','http://friendica.local/dfrn_confirm/friendica1','http://friendica.local/poco/friendica1',0,0,0,0,'','0001-01-01 00:00:00','0001-01-01 00:00:00','0001-01-01 00:00:00','2017-09-07 08:56:53','2017-09-07 08:56:53','2017-09-07 09:12:55','0001-01-01 00:00:00','0001-01-01 00:00:00',0,0,0,0,0,0,0,0,0,0,0,NULL,0,NULL,0,'','0001-01-01',0,0,NULL),(3,3,'2017-09-07 08:58:34',1,0,0,0,'','friendica2','friendica2','',NULL,NULL,'','','','','http://friendica.local/photo/profile/3.jpg','http://friendica.local/photo/avatar/3.jpg','http://friendica.local/photo/micro/3.jpg',NULL,'','','http://friendica.local/profile/friendica2','http://friendica.local/profile/friendica2','friendica2@friendica.local','',NULL,NULL,'','http://friendica.local/dfrn_request/friendica2','http://friendica.local/dfrn_notify/friendica2','http://friendica.local/dfrn_poll/friendica2','http://friendica.local/dfrn_confirm/friendica2','http://friendica.local/poco/friendica2',0,0,0,0,'','0001-01-01 00:00:00','2017-09-07 09:16:41','0001-01-01 00:00:00','2017-09-07 08:58:34','2017-09-07 08:58:34','2017-09-07 08:58:34','0001-01-01 00:00:00','2017-09-07 09:16:41',0,0,0,0,0,0,0,0,0,0,0,NULL,0,NULL,0,'','0001-01-01',0,0,NULL),(4,4,'2017-09-07 08:59:16',1,0,0,0,'','friendica3','friendica3','',NULL,NULL,'','','','','http://friendica.local/photo/profile/4.jpg','http://friendica.local/photo/avatar/4.jpg','http://friendica.local/photo/micro/4.jpg',NULL,'','','http://friendica.local/profile/friendica3','http://friendica.local/profile/friendica3','friendica3@friendica.local','',NULL,NULL,'','http://friendica.local/dfrn_request/friendica3','http://friendica.local/dfrn_notify/friendica3','http://friendica.local/dfrn_poll/friendica3','http://friendica.local/dfrn_confirm/friendica3','http://friendica.local/poco/friendica3',0,0,0,0,'','0001-01-01 00:00:00','0001-01-01 00:00:00','0001-01-01 00:00:00','2017-09-07 08:59:16','2017-09-07 08:59:16','2017-09-07 08:59:16','0001-01-01 00:00:00','0001-01-01 00:00:00',0,0,0,0,0,0,0,0,0,0,0,NULL,0,NULL,0,'','0001-01-01',0,0,NULL),(5,5,'2017-09-07 08:59:53',1,0,0,0,'','friendica4','friendica4','',NULL,NULL,'','','','','http://friendica.local/photo/profile/5.jpg','http://friendica.local/photo/avatar/5.jpg','http://friendica.local/photo/micro/5.jpg',NULL,'','','http://friendica.local/profile/friendica4','http://friendica.local/profile/friendica4','friendica4@friendica.local','',NULL,NULL,'','http://friendica.local/dfrn_request/friendica4','http://friendica.local/dfrn_notify/friendica4','http://friendica.local/dfrn_poll/friendica4','http://friendica.local/dfrn_confirm/friendica4','http://friendica.local/poco/friendica4',0,0,0,0,'','0001-01-01 00:00:00','0001-01-01 00:00:00','0001-01-01 00:00:00','2017-09-07 08:59:53','2017-09-07 08:59:53','2017-09-07 08:59:53','0001-01-01 00:00:00','0001-01-01 00:00:00',0,0,0,0,0,0,0,0,0,0,0,NULL,0,NULL,0,'','0001-01-01',0,0,NULL),(6,6,'2017-09-07 09:00:32',1,0,0,0,'','friendica5','friendica5','',NULL,NULL,'','','','','http://friendica.local/photo/profile/6.jpg','http://friendica.local/photo/avatar/6.jpg','http://friendica.local/photo/micro/6.jpg',NULL,'','','http://friendica.local/profile/friendica5','http://friendica.local/profile/friendica5','friendica5@friendica.local','',NULL,NULL,'','http://friendica.local/dfrn_request/friendica5','http://friendica.local/dfrn_notify/friendica5','http://friendica.local/dfrn_poll/friendica5','http://friendica.local/dfrn_confirm/friendica5','http://friendica.local/poco/friendica5',0,0,0,0,'','0001-01-01 00:00:00','2017-09-07 09:16:08','0001-01-01 00:00:00','2017-09-07 09:00:32','2017-09-07 09:00:32','2017-09-07 09:00:32','0001-01-01 00:00:00','2017-09-07 09:16:08',0,0,0,0,0,0,0,0,0,0,0,NULL,0,NULL,0,'','0001-01-01',0,0,NULL),(7,3,'2017-09-07 09:04:07',0,0,3,1,'dfrn','friendica1','friendica1','','','','','','','http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575','http://friendica.local/photo/18a7495723879503dac64b352e245508-4.jpg?ts=1504775948','http://friendica.local/photo/18a7495723879503dac64b352e245508-5.jpg?ts=1504775948','http://friendica.local/photo/18a7495723879503dac64b352e245508-6.jpg?ts=1504775948','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzNeTX2GGZAqTecUeOPNq\n+uFCfBuN4g6xKTkBlUDeVCLp2N3uVJq+TSjmoau8MpY3jCD2Nqn5KsMPh8XJV2s6\nb1kSjmVdpr4EeBXPyvi3asCcgmqi2IeoK/ihVGP9IrrYh8zwzVY9wW1/TPcC4N4W\nCcmeFTO08CSJh2P8ROq6irU0ndbmqfmFSs5uZ7UcEKUzkgSSPTxq5x3O7xSfTbOZ\nPNhSn3r5buSOd46KyWaBIJ2KgFNoY2AGJqbzZTZmJZB/qelrONtJ6XDnDI9GNQBI\nyL9935Scmo9WrXeZcqXNW3yI97s1tH27pCxhsyy5xqzEYfAPwPFry4gbO+wSGcNm\nFYfbCM19uPvJyN6TEgFNZD5401Pl8LQaVkSAnV9LQPzn/54CJYQb6KlE0rymROyQ\nvKPUZmEkw6ZnVJIF5pjxu6bGGPdv3xmBH6Xnmi0hhNA2AEDbv6wDrLZYLUCTSSqq\nhW8WK3HylsP9dqNT+a3X9l9dG7vqmRevGcbBQDDZPOKjkJkAa8IgIlk3UIWs3bYY\nST0VUtjRpsoLo3XmdYtY5qXxjGjtEy7NjRErlT31WoMzxcLhLwxKGWQz/xMC9OXe\np+uoyVUOd3U/Jvz6vpW9k5ua417IrF9XaxtcKvhp69m16br8JkMuKWvdGomWDXxA\nG1cAbsHJN6JJEU/3Vo35sh0CAwEAAQ==\n-----END PUBLIC KEY-----\n','68a21e99d42d564e035d3f5e711894605683a8e65cb692f6907065ae021467a4','','http://friendica.local/profile/friendica1','http://friendica.local/profile/friendica1','friendica1@friendica.local','',NULL,'-----BEGIN PRIVATE KEY-----\nMIIJQwIBADANBgkqhkiG9w0BAQEFAASCCS0wggkpAgEAAoICAQDnxnD1D7W/uXSH\nNd4UKFY1vv22SVPY1HwGHFEfXj681kKO01QISeeJYYFLVWUH5jPv3mDpeChF47Vk\nfeFYqj/tDrl0pXeiQFeboZFI2JZ1mCH3IZsZ9i7fIdd5e7lBrsxIB/5H7PEGVv7e\nuGc162WSNT3D6imrQBizfjeHhZK85GDQZUTcSMQHz/sv7fagAy8WqOB9h0u1dRjc\n8xxNareMXprM6RANV/dqE9G9f1VQJYhhZkMRNHgb5P1wfQwexSd8Lk31da9082KV\noP6gXE6zL0dI9olsFXT2BgHTJLBW/ZW338Vow2Ay96mnWrMXibSVjj1Ud/qOYejo\nfNOKNjS2BRkKHuxrMLONG2nlbPdXXGhVZ8mBo8wpQSFAFNtbhvhaT7hEFwbZDGy/\ndg+kJABkXe7doG95GpEiOTozZ+1bV6J2FwHqlK4Hdn4PRYqqmzAk0vLFekuaC3No\nI8D02c2SZkx+g2U9Y4iH9MbG+TPgb4x6/5cWNbcsAK25vtXn31WLD7PwLPuMFtfc\n6bbKwjgOUtmi3DsRj/iW82IUifS2agcsQfwPI4t9em3RhUASXkkWSTQAScm8BCPD\nB7bH/rFodUeDfyEPm3QtjUjMlc4BwGes7TJziZ/GnW1CHr2ZOQPHWrADnFB+Cc7N\nKJHA/vYRj5WXVyHmzQBhYCNpu73G1QIDAQABAoICAFxPpvGTvjmMLaMkizzQC/YA\nCaCud9ymVHdCk/TAXpBrbbrg5FkgxjzrPsm4SzLoNstUcJjMKI4dcUOC91uPA0Lx\nWF/i/1D5+2qa4Ph4ewR/ARgipFmkuWpZWi6iXliQu//8XwRalGyH/Z7LJyBMjvm6\nhs0e2FXCg5QJsyggxR7CfuTBULnDqX/LECo4xr9YRUrrG+4jEr5E0xA9K4qR9GTN\n0S3HrYMDBCGVnzWwH1R6fmT8i72wfh3uCBrjUw52S5GkB5y5sJYN0bfylTddTGMF\nc4jV2EnaCelq3xMvS6R5/0VqtH9TQV9LUKC8+RNo3ympqzeXSY2n5VGjVcV4bWlH\nbFGHb2w6Jzw6TXQP/2zxmQ4xkbJgHfVNxPAHDasLMNl+dB0Eyj0NYjWBmZ1p9Kr9\nYvMoEnMpICc4vlaq+Si+zaL/T3nqC+NIQtw3/1IzWp1MBllxD0qpQFIIS9of7VXW\nbKFaoviBdIAyHXcdcWt8z2SoWx8Lu4J7jcDIKcN/zuFFY8YWq3KFartNtUR24Umg\n71k7nNVT8PbJh66808kh1wBtPS2IMukB4FkO7Mec+qIJwWQDt4NSYhshVFfoDj42\nJvD8rFb+Cws0XRcjLLf2W9v1Rm6LLm4HK2uBgq5K5xXC997b99RiQUgjbDDWA9Qe\nFzLkD91Ko43TjfKDU+2JAoIBAQD5V0InPyG38BMBWbDr/55Px4I1/ZMBbc17vBIq\nuaP52qn9GImZ4P14H3XrlFZZmp2N2QFRQ1+JX9SOg5930+iZZcBrtFY0QVMcfSTl\nJ9UNlEcAvfUy5Q0ROhX9K1E0Is+g8OpWvEuAPt9iMLWL9TX5m9u6gojMC89Ns3zs\ntACj7+CUWlnNiTzkGcQ7aQ0jNjFRP/ySbYYGCk8kRl/jCrU0WkCFVb8IpXD2BT1F\nKt0YWrjOzOt509lfHftIXVtV7PXpB0RrMikFshrwLg4TXIUmaPuxtFnv8Z12RZ4E\npcDFvx+7xM08aXVMFznx5RMQtl18YwBaaDzw+LE/r4KMfktnAoIBAQDt9xYZDYr4\nuEXZ3Yj5DtIMgrKlgjfcNgPvqfju/9IaHLiMZR96vhMOI97a2rj+JF6nnpgJrc3b\nJjKbxUaK3cLuWZDXguvdpqejrW2JNcufBPCHJE19UOXoe2R3JVtY280wZOX1Q1N9\nW0HDMkXPeSZUVIdDWzZ4GdBmUYDE7QsNyaeJcXHdQ5Lr6zlqIny2ZCae2M8yTZW7\nLpyZ8i1mLaOMzjmgi3OxhUZG15zKRkzQX7ZZ++zEPDI5olXOsZVWa69zHMVKNyq+\nndS2pAl1DCSEnavx2ktAJXMRSgUmSsTWyHGegq8RyZGEo8J6y6FB0scuXyBrbUmk\nKD6zLYXDH7JjAoIBAQDCwqTasRZubaj6ugtXHBCVsnoEIDDOwezqhKoQE3eA94sm\nNh9tQe/a/4AFZpXYYcxFe0brKdwbGu6V7zwFxlF+WJtnxbI8GPaJXzsNgAKMG9Em\nRDqd6Yo+dYetfENunO5fgS8aVvQGlZW5ReDZFM13ToXgdovSDjt8LwIahjOl2f4r\nAzP4NwWICpRb75+ibHczRu7LlZ9FYpIU/J9zYe7OmNyjCaoxX8EPemI0f9m5Z0vJ\nxQj93TuCb5HTIZDxWilvPwzzSnf+ifM+vkqiVvduXDyVvxEtOiZLtu9KJAqiq7pm\n2b+SO7GyoMXTK6KrwDbfrRkehSNs+mTBIR+xDAlrAoIBAH+II4SruGYRxAW977Gi\n2rmvtfRztGJFZJimHG5iFgS+jb1YWKWchnPWj5H1FJ3Heh8VJOBTEHc5onfPIz47\nGURKJhEJ7kStEzzqLkER3p3LtOiIcSsPFxggQTiFgc4+hlpASOnH+k+9f6IQKE/H\n2t3pK1DS6n81PnYHih5/96OdBjfn36E4nN3pA6047GOHixcolOqdn/hgQ7dRjjkr\njnJg94tuEUP7bC19Ul8pi/NEyGKzXDHTHQu8T4Zlr+ZP8gicS7O5myPrTFvRz+u1\n5UBZjBQi7J9lMqT6aYYbHiEJ7bKI0TCUOXO/m/PZfAPd5beZbbOFL6lVlDzM0do/\n+4cCggEBALzPadzFIcF+aLTVHhyyrunRaqADL/VAzhiXQK3bdH/ynrfbLJFuGplE\nzS/9ZN/Fdc61q7ToHSFjg8+XXMW/prvPfzFlE00FdOfXG8PpZ+CKYvgKJO9enFck\n9nw+Mn/xaI5Dj2/2CYVEvJZegimrC9V4b9DIZlJAmMZhomWwGozoGzBBpEKxeKfn\nPD68ef4BoJ23QhMbBHFjjQgR5jf2zokdwFFSfJUQ0CmiA7xDlj5Wwka+AS70VH9J\nvVGB1CdffbFbyB8681zMqNHdjkm6VWK49k1aU0U8+L3Id7mQsWtTSxP35gla3tGn\n0vy9vZpxcdJfSLjIIO3w4YBk4DCOE+s=\n-----END PRIVATE KEY-----\n','','http://friendica.local/dfrn_request/friendica1','http://friendica.local/dfrn_notify/friendica1','http://friendica.local/dfrn_poll/friendica1','http://friendica.local/dfrn_confirm/friendica1','',0,0,0,0,'','0001-01-01 00:00:00','0001-01-01 00:00:00','0001-01-01 00:00:00','2017-09-07 08:56:53','2017-09-07 09:12:55','2017-09-07 09:19:08','0001-01-01 00:00:00','0001-01-01 00:00:00',0,0,0,1,0,0,0,1,0,0,0,NULL,99,NULL,0,'2018','0001-01-01',0,0,NULL),(8,2,'2017-09-07 09:04:08',0,0,3,1,'dfrn','friendica2','friendica2','','','','','','','http://friendica.local/photo/profile/3.jpg','http://friendica.local/photo/5b0e9c6920adcf8efafaf3743d0e0c6c-4.jpg?ts=1504775802','http://friendica.local/photo/5b0e9c6920adcf8efafaf3743d0e0c6c-5.jpg?ts=1504775802','http://friendica.local/photo/5b0e9c6920adcf8efafaf3743d0e0c6c-6.jpg?ts=1504775802','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzOHCS/TBWB72tguU5RWu\nG4KnESmdXWGSHHrCm0iWP88Xl17lkEw58o4yt+bQS3c8U46OwP8z9EyCxFyDyHPU\noVgii+jMmT4hhKw5TeDPWwHSUZM07OP2d0J0Kktr6wC16DfGLWqo+EnJcLxyjFGn\nV6KzYR2d/73m0bj26QWM4w2ZCfBZvEEZsreF0XsZuBOWVRlTB4GzDlsRwRt05kUi\nevFnrth0fq+aeEnZA/8eFY9X8F1LB+mZLRdmWX77pMDtzzxTJUBoQPCkOJ0BvdXi\nyAYybmcxFzR/x1u+kpsgxeDOOPDAQAPnbBQcNNwWtl+emd8wmqXcbmM3XeIa1HPb\nDi0CHXJ5Lr95JYP2brAZu4dEwUNeTzkVkvB8DlviOSFmlg6CWmSKXdaF8trK6j4d\nlv7nxGBvmrbx1CmeA3RblvHR1aRyoQdNhBh1eLJrkDcaTgtzhycrjqdz+vVVV/xi\n4yMY9x+voxENfurEo/XsbzGfPSigTIHImzBcMtG0RTgxTMke6CoqRZW1pXFxZast\ncpsO02JRdPrXt+DHpYzDf8oEMTa4TNKBvczcT8ar82RZYY0srVV0uxH77xhx1bvm\nVAPf40FA2qbHZzCAv64YU9LdIT4iPEUga+Y5m9t2LvS+RiA8Zw/mmOdMFp4hI6+K\nELuO8hQc3Ot0moqfpYCnSl0CAwEAAQ==\n-----END PUBLIC KEY-----\n','','68a21e99d42d564e035d3f5e711894605683a8e65cb692f6907065ae021467a4','http://friendica.local/profile/friendica2','http://friendica.local/profile/friendica2','friendica2@friendica.local','','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA58Zw9Q+1v7l0hzXeFChW\nNb79tklT2NR8BhxRH14+vNZCjtNUCEnniWGBS1VlB+Yz795g6XgoReO1ZH3hWKo/\n7Q65dKV3okBXm6GRSNiWdZgh9yGbGfYu3yHXeXu5Qa7MSAf+R+zxBlb+3rhnNetl\nkjU9w+opq0AYs343h4WSvORg0GVE3EjEB8/7L+32oAMvFqjgfYdLtXUY3PMcTWq3\njF6azOkQDVf3ahPRvX9VUCWIYWZDETR4G+T9cH0MHsUnfC5N9XWvdPNilaD+oFxO\nsy9HSPaJbBV09gYB0ySwVv2Vt9/FaMNgMvepp1qzF4m0lY49VHf6jmHo6HzTijY0\ntgUZCh7sazCzjRtp5Wz3V1xoVWfJgaPMKUEhQBTbW4b4Wk+4RBcG2Qxsv3YPpCQA\nZF3u3aBveRqRIjk6M2ftW1eidhcB6pSuB3Z+D0WKqpswJNLyxXpLmgtzaCPA9NnN\nkmZMfoNlPWOIh/TGxvkz4G+Mev+XFjW3LACtub7V599Viw+z8Cz7jBbX3Om2ysI4\nDlLZotw7EY/4lvNiFIn0tmoHLEH8DyOLfXpt0YVAEl5JFkk0AEnJvAQjwwe2x/6x\naHVHg38hD5t0LY1IzJXOAcBnrO0yc4mfxp1tQh69mTkDx1qwA5xQfgnOzSiRwP72\nEY+Vl1ch5s0AYWAjabu9xtUCAwEAAQ==\n-----END PUBLIC KEY-----\n',NULL,'','http://friendica.local/dfrn_request/friendica2','http://friendica.local/dfrn_notify/friendica2','http://friendica.local/dfrn_poll/friendica2','http://friendica.local/dfrn_confirm/friendica2','http://friendica.local/poco/friendica2',0,0,0,0,'','0001-01-01 00:00:00','2017-09-07 09:16:42','0001-01-01 00:00:00','2017-09-07 08:58:34','2017-09-07 08:58:34','2017-09-07 09:16:42','0001-01-01 00:00:00','2017-09-07 09:16:42',0,0,0,1,0,0,0,1,0,0,0,NULL,99,NULL,0,'2018','0001-01-01',0,0,NULL),(9,4,'2017-09-07 09:04:38',0,0,3,1,'dfrn','friendica1','friendica1','','','','','','','http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575','http://friendica.local/photo/adef541d0f334352940ad40251e15158-4.jpg?ts=1504775869','http://friendica.local/photo/adef541d0f334352940ad40251e15158-5.jpg?ts=1504775869','http://friendica.local/photo/adef541d0f334352940ad40251e15158-6.jpg?ts=1504775869','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzNeTX2GGZAqTecUeOPNq\n+uFCfBuN4g6xKTkBlUDeVCLp2N3uVJq+TSjmoau8MpY3jCD2Nqn5KsMPh8XJV2s6\nb1kSjmVdpr4EeBXPyvi3asCcgmqi2IeoK/ihVGP9IrrYh8zwzVY9wW1/TPcC4N4W\nCcmeFTO08CSJh2P8ROq6irU0ndbmqfmFSs5uZ7UcEKUzkgSSPTxq5x3O7xSfTbOZ\nPNhSn3r5buSOd46KyWaBIJ2KgFNoY2AGJqbzZTZmJZB/qelrONtJ6XDnDI9GNQBI\nyL9935Scmo9WrXeZcqXNW3yI97s1tH27pCxhsyy5xqzEYfAPwPFry4gbO+wSGcNm\nFYfbCM19uPvJyN6TEgFNZD5401Pl8LQaVkSAnV9LQPzn/54CJYQb6KlE0rymROyQ\nvKPUZmEkw6ZnVJIF5pjxu6bGGPdv3xmBH6Xnmi0hhNA2AEDbv6wDrLZYLUCTSSqq\nhW8WK3HylsP9dqNT+a3X9l9dG7vqmRevGcbBQDDZPOKjkJkAa8IgIlk3UIWs3bYY\nST0VUtjRpsoLo3XmdYtY5qXxjGjtEy7NjRErlT31WoMzxcLhLwxKGWQz/xMC9OXe\np+uoyVUOd3U/Jvz6vpW9k5ua417IrF9XaxtcKvhp69m16br8JkMuKWvdGomWDXxA\nG1cAbsHJN6JJEU/3Vo35sh0CAwEAAQ==\n-----END PUBLIC KEY-----\n','5f8ea3ac413c8f14f7181e844d0ccede4baa4dc3d7ba126353f6d8b8205563ae','','http://friendica.local/profile/friendica1','http://friendica.local/profile/friendica1','friendica1@friendica.local','',NULL,'-----BEGIN PRIVATE KEY-----\nMIIJQwIBADANBgkqhkiG9w0BAQEFAASCCS0wggkpAgEAAoICAQC0RYY6VyN0YlSS\ny4ZbymJw/1NKR1/oGa/ZJTX6DHKQ6DHwyWmfi85Ls28OV3LDK3fi/MhJzerWsb+8\nPNVOqrfzd0HTaHCfo+0+OGsAJLTBHdvwpV4xhuCLen/R/6i5XZ7BPNH89lfia5wU\n5SQciWjHq2Ek1uxmfYA+t82mY4dXZjXWZCM+rHb/L2Qg3kee1nrFxv3LpVnz5ncu\nZAJP0u0yfphmKP9MgbvAAZKHl3C4K3jEESXmzU3HZSPlu+dD/63VxiXSxbEnFhmo\nuCbitNbJm7wyo2w7tkL4s1ku9vJ3Db1kaqN8TBH9O+wusGYtTuvSYq+p92bk68c+\nMRKc0qCP8YpZzWMmaRd0bdfVn/uB0IXoUqskdcmCFNfxZFeJT0kHYG6IAgvSrqy2\nLBKukgkNm+AHvJIFKVadrJyDqU15hrvZiMGys13albu//mnoGdL0zcVePtVPzcsK\nYc58P/9rkJv02UONSYW8avUzvvaW91lvQ7MFVJFOvODpbL9bQc+Zbr2hqNSjwpRy\nIVk0VRVejqbp04qFgToqzLYA1AzFBmquJGd8Ie4uTiYKcxqtt09FcPYFI03u6EQ7\ncLgyktrUMYTrAkV6V48bMl2ehtZmhoAvzndQqu7ZjSczyR41oJemCDgjItQL1kwo\n4ki+/OOdZ0uDJCguYNijJVq1vxS5GQIDAQABAoICAQCO9swanFyLwiecOzgUt44W\nWwas06nloelpZi9GXHTHIr3oXXMcin1SX7zlPMjQqzpqk1or3dgt581M9VmdB5rW\nxG85v4wBrrlJLOj+th17QbjZQexPjs2pD78qxXwDdZGfYiKOYLcV441mrMpUr0yf\nfPSPiLr2FPWNx6qaGDiPQYnUupmQ7Kl6exUHVACsoR/Ala1UwY9y9AT0j2+d6oMe\nFnO6IS1GeWRyQ0z3p0xHYoJly8upHIxgY39yg/BGZxBvhrMcUpfJjadPvKtqA0yL\nmqxH5H7DZCn8ng9ORZ3IeOcIKeH5g0KI9+q4pECEEiDHOmhhfMjnJ21djwFZyVh3\nOpL7aeVVFvQOl2wJyvw+c+ohGIqqn9eLlWZh79FMX/6X8ux9WqER0Djj+aBjECr3\n/dC7fA4ZyA8ozww4hy+IW5RSjA2kEyRGa97kKUN3taFM81RBEf6kzRyVAwU/OTfr\nr8A8IT7JE1fr+gAktSkw3KZG1O3wSjp3FTjM8St6PlDorrki/+L3Rs15Cc9HMZ9B\nAvaLIPwuWysOuq9tkagwgJTFCwHPAQWu+1QfQdjJf9I/cIdiN7bpsDaV0b0HAf8f\nx1M+WPf/YDxELiay3XDt3e3JCNI/hFhVTjyw+4DZ+dgn+9Giq7+7Ks79w08Nar6i\npnUvtFUT4MLcHeTAYocg2QKCAQEA3NmtC7CroWFWgeedjIEUPHJv2AEHDH0YR4/D\nUD271Jk4HeyL2dprBmlWAinK29ucWodbmbmfGCLFUFrlnYuLMKFEyJtjzkAQrPkb\n8ud2xOQ7QATLEC9Romq/6nNi9mWYeKpUmfl8GH7edxI/QigqF1of7ECPNOLjWahi\nGBC6aVx1UV0NZ1FpqkoQc3aqsrGdZZsWnn3KXO0bxhl0Z/EWgqGukhFU5aYmUddU\nSMJt5rQj54A54jk7QcMjZVGVm081BbRsiqwxFR7m+XF/05crddpTr4pi4TgLT7j1\netViO0b8TL01Wtdy7Wem3H3mHByohDMcG26nOYzsBVSkBQveOwKCAQEA0PaCWm87\nNa7l9dDd7wTq0wMBJlShnsJsFSparGHuajYC2i7C/tsT5aRMp/FRkXFTTdqK6hXe\nyBLFU7rlZnTFDgoytfZzdVWd7uuuJDzSAT4cn3fpUZ8DrWnWAjwvVPkmJkwZT0hw\nrWlXfF9mdUVRXx6wK/hzJd00pYx4CD7cYGigA3rLUYLMMAIdZSSal+z1DgRbglMy\n9C5upER1e8/bbpHLc17SeQKIJKRnOpbEd2znTat9D5BTbesXZIyGumEgFIV9UEWF\nT4CpwOb+Cwz5UxXVEwTikIyL1L5EfccAPopkJPouww8m+DDIML0zKgeQHXGumD3C\nCMD36XRNK/HsuwKCAQAxsEPvwmMLHxRQi+T1jMEZzIF/btPAKpEA4MaH0ivlbEek\n6+iXLj4wJhj0yaRbjPCDqbqhPpMd4gzUxG6u4IuDeHU6UUPGTsGxuSZho1Qkflka\nUTnCvXK3gR8Gx8k3OKpyU5hPQEN8W2cAETnsT48Qy/UsuWW+92FBddIEKhdWxzea\nA76VRUrpxlonMEa9h5qrFpajOBgEilBaZLW9ARAYefoF4SJhvN0YQsMyz5PceSEu\n37mmPUwowpe/HvjzBYIfc3WMSauNXfOHodKpr3RWwrVbZF5U38AjwrBwX3wHbDQt\nq9BKTPkNkumG6EiSgJwlij5DqcSz/RHJLT7t57qrAoIBAQCci2BCcbwQzpMWYcAx\n1SQ6qrCMz7A4qHyiKpW9OKyMwyPF4mxQ0z0Ht9t5oW6zIAwBcizJi1LX3kAYJxa+\nd9I8X2V4LkZ264oiuEtAeJP3PFnjGckgTZlKq9QY3o+y/+gVnsMDQ0iukRFqamnu\nhtyb/viKKFnTTvGm6CHwQ2+Dhj4B/VceHHftq1fsMszh7jHzq04Gx1+P0M0woNzG\nwYQpRG3/Y1UYNM5bbRKssNBEi8CIzmUlaMEnwoxG1oQEUsjettaXcU2ars/9ZM+C\n5dhO5zc2RV2aXsBOw6+57oB/WdwGW6r2lH5kRt9irAsNfJb5h/X9tZ6MQkw3h9pc\nhqQLAoIBAE2IAyVYtcHezSUsZKfQcBB8dYKdSbbvE0GyUA/cdP3TQSAYzwgdL20K\nO9TyFdOaS+a3JgujPkd+lkEG8iTQjX0P5RWsEd8+ByxWXuamGMrb6I89dkV3ch4g\nWxEEV64tCry+/ieOnUbB0T14RV0m+ou3Ryfr8WzB0TwnxufbAZwrmT5H8E4eEM0n\nSEp9nPXPCGIdANCVAPuRj/N7ZCEjJSSevA/1Dbp7FRml5t9rdYyMAhlhhXxnYe4S\nKsPpGOhMVRel1St2g7wDsaWOCxFcGKQh7MtM9LBIgW6pZZB+Rq/eJ0yehZEy6LCL\nhxEQjbHHQD7pAUfTHYLxTsa8jTmE59I=\n-----END PRIVATE KEY-----\n','','http://friendica.local/dfrn_request/friendica1','http://friendica.local/dfrn_notify/friendica1','http://friendica.local/dfrn_poll/friendica1','http://friendica.local/dfrn_confirm/friendica1','',0,0,0,0,'','0001-01-01 00:00:00','0001-01-01 00:00:00','0001-01-01 00:00:00','2017-09-07 08:56:53','2017-09-07 09:12:55','2017-09-07 09:17:49','0001-01-01 00:00:00','0001-01-01 00:00:00',0,0,0,1,0,0,0,1,0,0,0,NULL,99,NULL,0,'2018','0001-01-01',0,0,NULL),(10,2,'2017-09-07 09:04:38',0,0,3,1,'dfrn','friendica3','friendica3','','','','','','','http://friendica.local/photo/profile/4.jpg','http://friendica.local/photo/01ff45af20fe4c6fb230e6fc773f3ef8-4.jpg?ts=1504775904','http://friendica.local/photo/01ff45af20fe4c6fb230e6fc773f3ef8-5.jpg?ts=1504775904','http://friendica.local/photo/01ff45af20fe4c6fb230e6fc773f3ef8-6.jpg?ts=1504775904','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwIuhjeg03GoOuSYqulsa\nvd/spvniwjaYZhCJYTHgOM4ak9qG8SwPhguSBMqZS3baHEcZtYcYsu5vSQAO/zCB\niK8yefV8LguBhoNw36p/hoQ4TdApOH3cjKAJoaxZSJw0oa50ebCSbh23chRHESbv\nlvfGXq0Pmk060VcLf6h00Iivg/BFNmDfEqrVmgpl0G1PIOatNJ5QdEpCP0E5Bg/H\nvnqvBgpkVAZkKA4xY5rw6pB2NofK74gaeNklnVFqAwaQZUrBv+z1C7h3NQ5YRees\nuspiwZVyFy95xm+kGlKq6GJ7WPQi1mKSJisHLxh9uI7ylgIyRWi/GRA2NBLb15tJ\nL9PpyWEbKhEX/zCUQbos6cFC3+jgiJoYIIa5pOYU0Ekf5AcyF3dFsbcWGObn++wv\nk+5dIK/un+1KOv7X3e/bAnkVCHHjzWAzURQkvb0fwFVzw80ioP4L4V+mvw4jxh+x\ndpPBQmqgCglqE2cpCB4gAcYPlXICBC18YcUYOkYIlgz2WuslcJCnrHO6K5q6lAn3\nNqEI/LmJDrq3hbu96k8d/0zCMNO+u3xPIhDcQ6ZzyhZmVDTpVGFiJ7Yhtfih3ASC\nZqWowoSq5onVWLCsj4QquNCIvJK1NLrkrr6rxD4DbCzW7XbZkenuHumh3HoFb5Lc\nRN6UJNHe/4FNNUzcAVBgEe0CAwEAAQ==\n-----END PUBLIC KEY-----\n','','5f8ea3ac413c8f14f7181e844d0ccede4baa4dc3d7ba126353f6d8b8205563ae','http://friendica.local/profile/friendica3','http://friendica.local/profile/friendica3','friendica3@friendica.local','','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtEWGOlcjdGJUksuGW8pi\ncP9TSkdf6Bmv2SU1+gxykOgx8Mlpn4vOS7NvDldywyt34vzISc3q1rG/vDzVTqq3\n83dB02hwn6PtPjhrACS0wR3b8KVeMYbgi3p/0f+ouV2ewTzR/PZX4mucFOUkHIlo\nx6thJNbsZn2APrfNpmOHV2Y11mQjPqx2/y9kIN5HntZ6xcb9y6VZ8+Z3LmQCT9Lt\nMn6YZij/TIG7wAGSh5dwuCt4xBEl5s1Nx2Uj5bvnQ/+t1cYl0sWxJxYZqLgm4rTW\nyZu8MqNsO7ZC+LNZLvbydw29ZGqjfEwR/TvsLrBmLU7r0mKvqfdm5OvHPjESnNKg\nj/GKWc1jJmkXdG3X1Z/7gdCF6FKrJHXJghTX8WRXiU9JB2BuiAIL0q6stiwSrpIJ\nDZvgB7ySBSlWnaycg6lNeYa72YjBsrNd2pW7v/5p6BnS9M3FXj7VT83LCmHOfD//\na5Cb9NlDjUmFvGr1M772lvdZb0OzBVSRTrzg6Wy/W0HPmW69oajUo8KUciFZNFUV\nXo6m6dOKhYE6Ksy2ANQMxQZqriRnfCHuLk4mCnMarbdPRXD2BSNN7uhEO3C4MpLa\n1DGE6wJFelePGzJdnobWZoaAL853UKru2Y0nM8keNaCXpgg4IyLUC9ZMKOJIvvzj\nnWdLgyQoLmDYoyVatb8UuRkCAwEAAQ==\n-----END PUBLIC KEY-----\n',NULL,'','http://friendica.local/dfrn_request/friendica3','http://friendica.local/dfrn_notify/friendica3','http://friendica.local/dfrn_poll/friendica3','http://friendica.local/dfrn_confirm/friendica3','http://friendica.local/poco/friendica3',0,0,0,0,'','0001-01-01 00:00:00','0001-01-01 00:00:00','0001-01-01 00:00:00','2017-09-07 08:59:16','2017-09-07 08:59:16','2017-09-07 09:18:24','0001-01-01 00:00:00','0001-01-01 00:00:00',0,0,0,1,0,0,0,1,0,0,0,NULL,99,NULL,0,'2018','0001-01-01',0,0,NULL),(11,5,'2017-09-07 09:04:53',0,0,3,1,'dfrn','friendica1','friendica1','','','','','','','http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575','http://friendica.local/photo/01ebf2eb957e5aef5463ba5ae6510ef5-4.jpg?ts=1504775948','http://friendica.local/photo/01ebf2eb957e5aef5463ba5ae6510ef5-5.jpg?ts=1504775948','http://friendica.local/photo/01ebf2eb957e5aef5463ba5ae6510ef5-6.jpg?ts=1504775948','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzNeTX2GGZAqTecUeOPNq\n+uFCfBuN4g6xKTkBlUDeVCLp2N3uVJq+TSjmoau8MpY3jCD2Nqn5KsMPh8XJV2s6\nb1kSjmVdpr4EeBXPyvi3asCcgmqi2IeoK/ihVGP9IrrYh8zwzVY9wW1/TPcC4N4W\nCcmeFTO08CSJh2P8ROq6irU0ndbmqfmFSs5uZ7UcEKUzkgSSPTxq5x3O7xSfTbOZ\nPNhSn3r5buSOd46KyWaBIJ2KgFNoY2AGJqbzZTZmJZB/qelrONtJ6XDnDI9GNQBI\nyL9935Scmo9WrXeZcqXNW3yI97s1tH27pCxhsyy5xqzEYfAPwPFry4gbO+wSGcNm\nFYfbCM19uPvJyN6TEgFNZD5401Pl8LQaVkSAnV9LQPzn/54CJYQb6KlE0rymROyQ\nvKPUZmEkw6ZnVJIF5pjxu6bGGPdv3xmBH6Xnmi0hhNA2AEDbv6wDrLZYLUCTSSqq\nhW8WK3HylsP9dqNT+a3X9l9dG7vqmRevGcbBQDDZPOKjkJkAa8IgIlk3UIWs3bYY\nST0VUtjRpsoLo3XmdYtY5qXxjGjtEy7NjRErlT31WoMzxcLhLwxKGWQz/xMC9OXe\np+uoyVUOd3U/Jvz6vpW9k5ua417IrF9XaxtcKvhp69m16br8JkMuKWvdGomWDXxA\nG1cAbsHJN6JJEU/3Vo35sh0CAwEAAQ==\n-----END PUBLIC KEY-----\n','0997345dcbd619bdf939118195406a677ade32f3025e6a6ad315a1c031988a38','','http://friendica.local/profile/friendica1','http://friendica.local/profile/friendica1','friendica1@friendica.local','',NULL,'-----BEGIN PRIVATE KEY-----\nMIIJRQIBADANBgkqhkiG9w0BAQEFAASCCS8wggkrAgEAAoICAQDhFhp7XnY4N5J0\n/vBCUF8+TKQ4OmXAHer6KRlKYd3t6HZDkINzwJagd6EqLvCzMQbvEdR6MXt9w0Zs\nrCeODQ8r2Acr/zKL5MUSBdV2sDdZa4YCSu3HLZQ6f6e8IEJRiuys/s6dpG2oXjf7\nAeorqImHvt+8qdZ87HTPjmh35bwbN9NZU61VGK/WEQw4ZPUmfuKhQk4xgs37jPyu\nXew/X6YbVNuqAI8uK3m9Kex7jq1eSRwg+oQf0OAtS6aD+JDxqNtW+v2F2FHUWVur\n8VNpwqgxT7jrqckAzmz5y7olhomaXM7cIStOiCjHqLrhJca3jNfcq4EvbgYVdTEj\n7DBIb3e04HZPVgURKQpEgxWj4oh0yMkpXrh/9vbcAjJOeTDDj87gs3xLSvsr6d3v\nujDSxSA+nxxZzTSn4N/aFxirELH4vSDVTv7+VxYY+06sI0av4DIT3DiHQdDno3/P\nxCOMD230i3POnjpP+5KzRpDdqLW56Oixst/CnH7p9eU3DGU1FjPKaQNwTKkBt/Fj\n0TpbzyBZ9O3EOZG81BEqAOBGa2+hQX2PVDzkGGuJ2lq4UPhblN44jH+W48343+/e\nZKaBKrEw5GtFUX/qUXGmqFMPiWIhSxwWiK/eYMXTDOcF1I7/fUgpfHmeyz+FnP4S\nqKjlLFMSl3RCAhmyRy7UjCsR/qhTqwIDAQABAoICAQDUb+Yile8B9AE4hvz/uZeK\n1w8POp6aCiKiZHPILkIlrocgEZ7fet8vKHlltNPca+Ndc/iUM2uYMNug6YKToWO2\nP7fVIJD2U75j2jm0QXCb5s2eEFYG7M+/vofzGIc/Kt1iEUO0qWINzI8NSqtW9USI\nZ/AGwkz7rrg4xPF4Z8136uKApmcrr5cVdRWRjEeMQ6lmBYyDUi9SwagicebtkTrX\nBOols01vh/zoOk9F9k1OdbYksgxNcviCB6prWAiE7JfHqi/pSVdCEexhhezyHpRb\npiCj26UoK6vSvyM7E5V/qSRbwrp67it+9ZMbuGmrBzUcwom02CTJz8fHXb3cP8g7\nmse2kmTsITTNnMTpgolhynZ5yPASCYVLLqAbtipOzkuoIotJaA7EiKQDnlk5RsDe\n4sBFr6aBuCB/KMwNvo3oK8aviLoUb/s0l1o8v6qELn7L9n/RhF0TqjkXhh1IjJfX\nS3qtmjuynh++RIUOWb5CPHstfuo3Sf6wMi68XVr0rUkpMEvUZNp+UiVbJeP5ayc8\n3MK/JQQqkfFoTbFmHxBO5pCBgQ6ZX3tT0jIDjHLM03Eq8acSILWYkgS+YMmlD1js\nT3jwgLqP6Jgeto6iJwR4BHKaOkTHw4qU7GTLxrXKBSQZd8oA+Eym5tlnr/U9tHya\n6BF4O0PO/xu5k1qWvZIVIQKCAQEA/tyUPaeOoG4xyTR/50Vkx8RBmJdETAfuOYeT\nZoUMeYBKDPBpd+X2CGf4GubFOZmRSK5STRtnBmX2koh/M+q7DatX9oZVwbvsvqTB\n3FpmAyXr5qNkr/q2MYtvEmJMU+9htJe9BhRzKXB0bCEAFhFJFpYyRRxhEqFeMiPZ\ntU5SL+wsrVw3x/MHgidapl53LsprPpiWh+s8cJ3iTckbkOo3PEzvyqk2A0Z/OmTG\n58GbKmKneID8cSgcbTkjHltzHKNCdZQZnuat8qTtvU1STefD5xDNgHKasmdeufR1\n7R3+NIzX6laJBlXC2GDw3ECq68nEUycm4785pIpNg8YOIFC/AwKCAQEA4hd6VuND\nx+u7o8J4lrPXxnIxY4DZ8+1193AkDDsR9sSAIGLb17N1VsKCPrYmrP/6WGUjLC4S\n8Yc6EiVQaeEDpxp0tut6395HvbDcDn1adK4Uaz2bq2lxRrnffCeD8sD35P9xSZJr\nUdjBeNbPVQWNl182UizgrDNog+X9k6acAnDPw8tKoHp3FSsvI8KsmWE7NIR11XZC\n+hGe1TY5vjXK31KT05PrFF86Mqw9ntv5g3bhSMOPduU6kuQ5LZwCkd/knTkHL8zt\nMNFYFZrZIQ/NtIYyKF5dvu5Q/+iBEp50PSz95toMi/cQ71/XwAUjaDv2dsaztliC\nJHcDvwvmBvtEOQKCAQEAnmw68cBQFkWpSOsLfpVSOiMyq0mMOL7NRJGT/KxDvtsS\nLMzcop0dvMf0H7THcDCXcNh7bFbWSdHj3d5fQ8RrlemmeiWy9QR9+1uq7fB7bQWL\niAiVNBbiXhXQa1sTGzG4SGvyIe9gTqgKlpRE23LPPe0LPo6PgOcyCHTkhaEz0Xo7\no1+phO77Adq4rKYX68wDshtjpwWAwnhCDhwuuHv+7crdW9qnKo4N1ByEz9c3Preo\nZm23fhdy5CoaPGqYOXr6euAetPmrsyL2bS+9M5QX4HA/bdLPeoprBaiCDW0RcVUD\nejVkY723qo1H64F/PaZkFVRHBlb929vkpz7b1RacRQKCAQEAzZij+5c27/oB6+zQ\nU9q/AQqetulZSWRKvfQQE78zmr8d9FVxrTjYH0lJv1VM3kz4jqGJ1ocfWtuphw6/\njUi9VZvNPvnsBt/PRUQrGFINi8UxdEPV544/IB2uiOw2JO4tfuR7VHf9d7QwW36b\nk6k1FM3US+3bcTxecnMWoMoFXILRrC6VclFrMKjQeShyZBfzCtLZhH/CcDzNvv1M\njRfFoEcrfl8oiqH9/k56ypcm0tGsE8siDvBsz18ST9Nq0tRSxFYzntgvaRE1lI/3\nmwUP/nV57xPBE/sLVWtM1G2bLnZXfTIT7sOBduwk+cyyYfsFKQWQLuVVk2tW0Mg1\nKWwcoQKCAQEA/V34b1Eeh7i2zI9w168F7iGxuPfHEnlTqN6o/A76/TdF44LScHmH\n5y9Xqj+fLluWqnjxyW6bwlODEDLbHVrlGdeIQKC98Hg/Q48wKZN7aRdynC/DCM2Z\nEiblj3WliCILU1hmpId5Ffio9ZcDSr7f5o4Q9mwI5b7cO+VqcnmDNubOD2Da+c0m\n5AQmvqdPSqpbMUxmZA/UMiC2yXWT3R08c64m2OniKMTWXEa5c9P8hQBOkJojwYbp\nZzdrYgAX/aThAVAktzKr+NgKhuvqvCPfj2Iv0sLXRjHbR0vWOaq4zn6Pm3TMUY3Y\nhKYXLntnZi2ifmt+9Y2ZFfPU6T7Cdu5F+Q==\n-----END PRIVATE KEY-----\n','','http://friendica.local/dfrn_request/friendica1','http://friendica.local/dfrn_notify/friendica1','http://friendica.local/dfrn_poll/friendica1','http://friendica.local/dfrn_confirm/friendica1','',0,0,0,0,'','0001-01-01 00:00:00','0001-01-01 00:00:00','0001-01-01 00:00:00','2017-09-07 08:56:53','2017-09-07 09:12:55','2017-09-07 09:19:08','0001-01-01 00:00:00','0001-01-01 00:00:00',0,0,0,1,0,0,0,1,0,0,0,NULL,99,NULL,0,'2018','0001-01-01',0,0,NULL),(12,2,'2017-09-07 09:04:53',0,0,3,1,'dfrn','friendica4','friendica4','',NULL,NULL,'','','','http://friendica.local/photo/15048d33e71544a25a6dd13bb081c78f-4.jpg?ts=1504775545','http://friendica.local/photo/777ac66400f3fef5ff42189840387ede-4.jpg?ts=1504775585','http://friendica.local/photo/777ac66400f3fef5ff42189840387ede-5.jpg?ts=1504775585','http://friendica.local/photo/777ac66400f3fef5ff42189840387ede-6.jpg?ts=1504775585','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxAJ+t/FrD0sHO2ecwsoH\nmOst2aPHca5n4UEIpr2ZTl26WN1AbcNo9wahDHXG7pE50GQwvmnnTIlVDLAsBC23\n8sTSpGXrIC8L7YiyDeu3piBp/w4jy8JQrbXn4L8IQbnmi6nDCSr1szXjBcvdPPKK\nrCFgYJ4hjEkSp/wJcKZ1mlRTwtofWZHUMu3NsP2146wRj0roydFVkWGrfsH8grUO\nqMktmpCUOQNsOIAN8b6vQiYQQoamGWjV8wXO3W0fRhQ5Yjko19j1t+O1Jvy2CMhn\nRY2wiGZ91ZSfl8VNLrz38JyeR0cz7YJeNYzOggB1AjEzLhKtqw7zkyW8Qg1Kfo85\ndagFPZ5sQZ8R4nus7xabICMG/qJPL23/1tyenxqkVP0iDIhLo/f0uuG4riNOJZtf\nPYPT6sxSlqxbznuLQr1fYnjFyEnFtJpzuAuvybshT5QLyKntcGap67fWoj/7SrA4\n8T5RCdYHDacMdKEC1SDwpokpgWhWaRkUxJ5F0Q5Jpyvhui/UkxkevDWv5373pgVz\ngaZlxRKYKABWiJkQH9FPAdsr4nUVErl/zvI0+9GuzK/EJ5ToVs8bF98Jb4Y3o2pm\nNtPL1ao9r0ug/3F7RHTLs1tp0Bdm/Gxk/RJf4j6gKgAw9WcdHzkxcvikhAY43zMe\n5qExQo663i3hzw4v3p94i+sCAwEAAQ==\n-----END PUBLIC KEY-----\n','','0997345dcbd619bdf939118195406a677ade32f3025e6a6ad315a1c031988a38','http://friendica.local/profile/friendica4','http://friendica.local/profile/friendica4','','','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA4RYae152ODeSdP7wQlBf\nPkykODplwB3q+ikZSmHd7eh2Q5CDc8CWoHehKi7wszEG7xHUejF7fcNGbKwnjg0P\nK9gHK/8yi+TFEgXVdrA3WWuGAkrtxy2UOn+nvCBCUYrsrP7OnaRtqF43+wHqK6iJ\nh77fvKnWfOx0z45od+W8GzfTWVOtVRiv1hEMOGT1Jn7ioUJOMYLN+4z8rl3sP1+m\nG1TbqgCPLit5vSnse46tXkkcIPqEH9DgLUumg/iQ8ajbVvr9hdhR1Flbq/FTacKo\nMU+466nJAM5s+cu6JYaJmlzO3CErTogox6i64SXGt4zX3KuBL24GFXUxI+wwSG93\ntOB2T1YFESkKRIMVo+KIdMjJKV64f/b23AIyTnkww4/O4LN8S0r7K+nd77ow0sUg\nPp8cWc00p+Df2hcYqxCx+L0g1U7+/lcWGPtOrCNGr+AyE9w4h0HQ56N/z8QjjA9t\n9Itzzp46T/uSs0aQ3ai1uejosbLfwpx+6fXlNwxlNRYzymkDcEypAbfxY9E6W88g\nWfTtxDmRvNQRKgDgRmtvoUF9j1Q85BhridpauFD4W5TeOIx/luPN+N/v3mSmgSqx\nMORrRVF/6lFxpqhTD4liIUscFoiv3mDF0wznBdSO/31IKXx5nss/hZz+Eqio5SxT\nEpd0QgIZskcu1IwrEf6oU6sCAwEAAQ==\n-----END PUBLIC KEY-----\n',NULL,'','http://friendica.local/dfrn_request/friendica4','http://friendica.local/dfrn_notify/friendica4','http://friendica.local/dfrn_poll/friendica4','http://friendica.local/dfrn_confirm/friendica4','http://friendica.local/poco/friendica4',0,0,0,0,'','0001-01-01 00:00:00','0001-01-01 00:00:00','0001-01-01 00:00:00','2017-09-07 09:11:20','2017-09-07 09:11:20','2017-09-07 09:13:05','0001-01-01 00:00:00','0001-01-01 00:00:00',0,0,0,0,0,0,0,0,0,0,0,NULL,99,NULL,0,'','0001-01-01',0,0,NULL),(13,6,'2017-09-07 09:05:08',0,0,3,1,'dfrn','friendica1','friendica1','','','','','','','http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575','http://friendica.local/photo/f958f83dd2af4c30b30045dfc6ff0718-4.jpg?ts=1504775869','http://friendica.local/photo/f958f83dd2af4c30b30045dfc6ff0718-5.jpg?ts=1504775869','http://friendica.local/photo/f958f83dd2af4c30b30045dfc6ff0718-6.jpg?ts=1504775869','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzNeTX2GGZAqTecUeOPNq\n+uFCfBuN4g6xKTkBlUDeVCLp2N3uVJq+TSjmoau8MpY3jCD2Nqn5KsMPh8XJV2s6\nb1kSjmVdpr4EeBXPyvi3asCcgmqi2IeoK/ihVGP9IrrYh8zwzVY9wW1/TPcC4N4W\nCcmeFTO08CSJh2P8ROq6irU0ndbmqfmFSs5uZ7UcEKUzkgSSPTxq5x3O7xSfTbOZ\nPNhSn3r5buSOd46KyWaBIJ2KgFNoY2AGJqbzZTZmJZB/qelrONtJ6XDnDI9GNQBI\nyL9935Scmo9WrXeZcqXNW3yI97s1tH27pCxhsyy5xqzEYfAPwPFry4gbO+wSGcNm\nFYfbCM19uPvJyN6TEgFNZD5401Pl8LQaVkSAnV9LQPzn/54CJYQb6KlE0rymROyQ\nvKPUZmEkw6ZnVJIF5pjxu6bGGPdv3xmBH6Xnmi0hhNA2AEDbv6wDrLZYLUCTSSqq\nhW8WK3HylsP9dqNT+a3X9l9dG7vqmRevGcbBQDDZPOKjkJkAa8IgIlk3UIWs3bYY\nST0VUtjRpsoLo3XmdYtY5qXxjGjtEy7NjRErlT31WoMzxcLhLwxKGWQz/xMC9OXe\np+uoyVUOd3U/Jvz6vpW9k5ua417IrF9XaxtcKvhp69m16br8JkMuKWvdGomWDXxA\nG1cAbsHJN6JJEU/3Vo35sh0CAwEAAQ==\n-----END PUBLIC KEY-----\n','b131df195ce498422ad8e308cab463756662cce5372c6437f78edee801599598','','http://friendica.local/profile/friendica1','http://friendica.local/profile/friendica1','friendica1@friendica.local','',NULL,'-----BEGIN PRIVATE KEY-----\nMIIJQwIBADANBgkqhkiG9w0BAQEFAASCCS0wggkpAgEAAoICAQDI72Z1FLvDtXqd\nOSvJ+IRPi4ji+gk3q1qVhyYE1NVe9lwGGEvBEMsq6Flw9AQEys7tzWuD9Orn5p7b\nmVnWb47rFyy3Q0ZAqADhFDHO6sx9Slm9OurCvkGAHfCxYjX+a9TwDXmETiltw0A1\nedOLftBLxRe/hMNoE9rM6daqpKdRrBqDhhKng8AE+PbrwZD4dhOQNOhgvj1kbRCd\nE9RHdK3wrKVBQ9ZNm75WMgBjSbDSUupLrcBBeDXD0Htn5+Ox9Z2gY5aDYJyemwoT\nuKssxgaALHe7WnQ3K2Buvol1oaFyCQDk71WwCLt0bvzi3VjlJGcerTI5cenqX542\nCrbALRftr6j5vztQPg9/1aJqEBBFHzg9Vedyx6eJkZ+GM4AHQe2xPSWG67E3zOnP\nYpXCQ/ountJWb3cnQnVIGxn14V1JK8s9yUJ1KiaTqKB/lHCCqkl/fceeBhcKKfZx\nlUKiMbqzGT8zfli/hBCQSZDEj7CVLo8ZeqmZMpVi/9jRvS4DDA3fIbsAdq4y/wOZ\nCxla9mr77SkSJrgQOd4hcQN5EDifSbCcSKY2exBxr90/xE0Nq3oPa+kd2oLUU4ej\nITVt3YXO1m9RFmsuxISjpcfcMvtLKT+OfLl377K/hDeRphB6ka9UM8GO0XPvle5D\n3Z2hT6ZYeb96ob8J8nz01JedoazxiwIDAQABAoICACq2UPY0WRFqA01meLtvG1j5\nVTjCY7E0uIWue9NtFoogHkGhaoD4u+c8Cr8q76vBHKmKD/+10TVIXZ5ag7FEd4Hb\npEK0hzt5Ou6dZ1UPrjY31smVu493995u/toGAWo6q8H3a0xHfSD67ywu4Fv3sflZ\nRQoOA6edCNakImCVrYd76QrqNg7rv6aO8ZX9yH44Q0JVLMxbxBsT4AMz0tz5nXva\nhypPbD+FCrmx2UlBwdeDjpBVt9dy4SLlr0XQEiOjDUWpxbXZlJFWbZbxm1liIsGe\nMjleKfQMQWxpDjk2CWZ/KXSAt5s6z/YZHaJv4NScn1rzAAkcANg0SSI9tsk1DK+2\nLkyk3S3Ihs7eyjvt+r/cVz0mKi3nHrNoizNyOfxclh8XHbwAAJtoKtqZTfNAbvGZ\nw81Px34l4PCUP6AI4W9Q9aMwY6p1eqwId7MXZcuSQDXBZ5Fl1+FjS16CT3B57k+2\nIKqjWt+gqvKLNFmzOfx9dpMrOiNfjJq9BvEj4fjkbdr+R9gyFRQ1jWAJ/rLL9dAG\niY/1an9uUWOFVxrlD0t8LNubBSFtdxivQExwQDNisUbnaArL+HVQOS9BcAuPwn1j\n3he3qzJeZe0Qxy20E/Rpuq/2T8ZL4cDs22+Ho4a5EfOx8ADqr2co5paQezQsBllS\nNpoQOH8z7tQPQFeRDYYpAoIBAQDt0l2HWyHS1vd9VhiWysjuYjq7YQzdJGdRW9cj\nD2wq+dWVK1UEqiS5KKAwBSr5L9uVCgWX+N/Qbukvvu5tKWJ4tX2wuDVcq6WGsiDC\no0f1ixgR0pSM4axEplVwiod05RG+ThW0FZnTgIzgQsPGhMNoHC+wTaTS7ZxP5ZiF\nO6FlS06TAptYcQvn7gVPCNnRvoZemuNxS2OxFq2RwWM8df0S6B+PHg77i4Ga26O3\nOmISTKQgqJcBiFtGkssIW5wqGsNiqIarIATUh29tIY+V4+fUFChH15A9D2GNOJbR\nG6HPgEUPBrL530Xt7eZ8VGFHLv+ONyJvitRUID2MfyYLrKVvAoIBAQDYSz9qP5Q/\nSmfKHnAVrYjZsZ26kTO+Sa4I8Mniv5zvZd7UtVrxCBPjzl1M+tUaWMuJb2Q8h5jh\n3IBOPA9T+wEsKsnaaZjsyn13CV+NhHpqbyDrQxpj9dqmLS4jw7jgiyOwrbwep7iP\ntqxSxv6Ih3eYMdAV72nJFJ0SYRxQ3OwN370LQmRiaOtt3V8d1MRaAkIiMrI6Z8B+\ni/1sbn8VYOYIP4OxC/7y98S53Dgz3zR8OPw3E214PbAmB+jvyu8yyID2RqkWw6gK\n/y4bgBYMu8qmZA8aXswod0kwO0PpuHlWgTlM+sF6VWVh/g8moh/L/6gAUU1uTW6r\nR7ZE+4vUUD+lAoIBAQCkhuNTj/VvYm5nVFfAglvNp0FQfoyitNuRSoMkazf+50Ye\nY5L2niq3ueZQMlMPf09e5UcHYxKbpQ9Hi8Rw2q+YKJ7i0h2AlfL2o2bMoJ9YvLiT\nI+bHLBy8hYIYUI3zjcHfsS+MnWEFFCrhvu6n+RMihFVtl9mOXvnDwGfqzF0UsauT\nQrtrzRFai606hzoBw9g7vNXafDhku/aqHmrj2hCRsuqaXUYqOdIY6xhw20Abvs/R\nFDEby1SyFz3E83OvIULIjyRTYNxWl7e7fPtTzA6HBsbzJKtRwsFPLLYRxhcEcY3V\nHmJVQWSkfO/2VX3S/C2qGnSFTDsmVAOgnhoY+4CbAoIBAQDJ9RDkWzNIGWhp8BvG\nEf/LDK5zCqtezRtEW9iV8UZOvjbfM+sTTfCMcB7sBvW+IRUDYdAdOJtGoYXoBupl\nBuTkYZuSZbEVwEiAQm9HC2DmSpdZNJHKrkAXk+4WFOVmPGT5zm7tzLtm7TFgJVB7\nGMpRgImEQcTrrWSwSZ6P3ohGuBejEL38qWzSa7Ype4ZPaPZpSh7irAev4XSir1XY\nF18SaoPDZ6kJItI8nOSZgptWNjtCDdDUSf1UtWQJqtnH+DF6QyYVDGG2yug5Y1Kz\nVxF0Zc84VzWXvzHGaEAUVlxtqkFfoG/RkzUT1448C3tXFoK+sSt0h7aDFXWaWaoJ\nd1jFAoIBAAk8TVCOKJYgGm/zwxgWN3mDNQ27CC8DSQ3MLOU6nkmTRvV1/OiUzipQ\n0Buw/uwjL2NW9GhpmMrYwIubWGLtaj404Nr+E1g5imFQ8Mbnd87QFyVo0GKvHgln\nyasyjXsV/KiSGbzHS2t2gUnLK4PhNCYHh3YV/NfLMHkz0CKBB8seOfkvoPxv2L5v\n9f/+stLIzlh6FMkZDJbkvItTRFd9ATZWnd1+4D4uilvIbZrwzXfHxJbK4NGnJHgD\nVoL7bqBRr6mWrBsHIj7yqzg6Bonc/qo5wCfxTcyBTdGApD9+Jt1+sMqPjj0edDn4\nQWUGbLVQAkXIUOS1Aj9RCSDKYa7c9dY=\n-----END PRIVATE KEY-----\n','','http://friendica.local/dfrn_request/friendica1','http://friendica.local/dfrn_notify/friendica1','http://friendica.local/dfrn_poll/friendica1','http://friendica.local/dfrn_confirm/friendica1','',0,0,0,0,'','0001-01-01 00:00:00','0001-01-01 00:00:00','0001-01-01 00:00:00','2017-09-07 08:56:53','2017-09-07 09:12:55','2017-09-07 09:17:49','0001-01-01 00:00:00','0001-01-01 00:00:00',0,0,0,1,0,0,0,1,0,0,0,NULL,99,NULL,0,'2018','0001-01-01',0,0,NULL),(14,2,'2017-09-07 09:05:09',0,0,3,1,'dfrn','friendica5','friendica5','','','','','','','http://friendica.local/photo/profile/6.jpg','http://friendica.local/photo/ed2cf7a93daffb15532a78b261ac4685-4.jpg?ts=1504775768','http://friendica.local/photo/ed2cf7a93daffb15532a78b261ac4685-5.jpg?ts=1504775768','http://friendica.local/photo/ed2cf7a93daffb15532a78b261ac4685-6.jpg?ts=1504775768','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAmtBUbN/07wWbcUvp9QvR\nKLoM+WjC0K0rFsx6L/Mktk6Go5+DqofuHSQgfJZGBI3vbTlbwW76peX/0aqiZPGF\nrrhX1FMhU23AxYE9TixRR+oqIKETNzU8NuahpK/ZBokoPL7mzrY4o5dNcnG4S57O\nir4VfEpuYB99K7Uo4yVc6a50ZQfDoBy6nnCPbVmh+gokc28paK7Av0vnMwwD6TWQ\nrgXyrPsa+Af5YeDC7GOmhppeN+e5zycRTddfXWR8QFp+he43b7z54pB+ajAu3J+C\nTAagIp5UWrBmwclF2gmLWvyYYpwTF3kNz+Waf0s3khiZXcJZKxGKVqXoTkqEKV/i\nvHryaBlvvAkQKR1mfJpNasJfHrqhOlHigWi3ISlPJQB4h+85W+YAXj+3j26OnMpb\nCmjf0BXLnjuC+w9rXFW/kj3Q1PxNaAfx/BoV62unWBKnZAkkzHOkQ5yyATdXQaEY\nlDsFbc0itSm3zjsPa1gXtn9e9z8Mqn5MwKk5I9k7TIr6/FdgbX7gxl6mn59OQ0v+\ne8o7HECSQvT8c+WmvBk3tjQHDgw3FeiJ54w0IGiha530vPCk5Z840d/jVUL7Qc6j\nrNi7hLOBvx4jdxk+5tq6fZMG4Sbu+Iibc4b+f2QyVW7Pcxt3CM/ADh0kzfGJ7wQd\nzl4w/9+s8DPT43Tbn98QK+MCAwEAAQ==\n-----END PUBLIC KEY-----\n','','b131df195ce498422ad8e308cab463756662cce5372c6437f78edee801599598','http://friendica.local/profile/friendica5','http://friendica.local/profile/friendica5','friendica5@friendica.local','','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyO9mdRS7w7V6nTkryfiE\nT4uI4voJN6talYcmBNTVXvZcBhhLwRDLKuhZcPQEBMrO7c1rg/Tq5+ae25lZ1m+O\n6xcst0NGQKgA4RQxzurMfUpZvTrqwr5BgB3wsWI1/mvU8A15hE4pbcNANXnTi37Q\nS8UXv4TDaBPazOnWqqSnUawag4YSp4PABPj268GQ+HYTkDToYL49ZG0QnRPUR3St\n8KylQUPWTZu+VjIAY0mw0lLqS63AQXg1w9B7Z+fjsfWdoGOWg2CcnpsKE7irLMYG\ngCx3u1p0Nytgbr6JdaGhcgkA5O9VsAi7dG784t1Y5SRnHq0yOXHp6l+eNgq2wC0X\n7a+o+b87UD4Pf9WiahAQRR84PVXncseniZGfhjOAB0HtsT0lhuuxN8zpz2KVwkP6\nLp7SVm93J0J1SBsZ9eFdSSvLPclCdSomk6igf5RwgqpJf33HngYXCin2cZVCojG6\nsxk/M35Yv4QQkEmQxI+wlS6PGXqpmTKVYv/Y0b0uAwwN3yG7AHauMv8DmQsZWvZq\n++0pEia4EDneIXEDeRA4n0mwnEimNnsQca/dP8RNDat6D2vpHdqC1FOHoyE1bd2F\nztZvURZrLsSEo6XH3DL7Syk/jny5d++yv4Q3kaYQepGvVDPBjtFz75XuQ92doU+m\nWHm/eqG/CfJ89NSXnaGs8YsCAwEAAQ==\n-----END PUBLIC KEY-----\n',NULL,'','http://friendica.local/dfrn_request/friendica5','http://friendica.local/dfrn_notify/friendica5','http://friendica.local/dfrn_poll/friendica5','http://friendica.local/dfrn_confirm/friendica5','http://friendica.local/poco/friendica5',0,0,0,0,'','0001-01-01 00:00:00','2017-09-07 09:16:08','0001-01-01 00:00:00','2017-09-07 09:00:32','2017-09-07 09:00:32','2017-09-07 09:16:08','0001-01-01 00:00:00','2017-09-07 09:16:08',0,0,0,1,0,0,0,1,0,0,0,NULL,99,NULL,0,'2018','0001-01-01',0,0,NULL),(15,4,'2017-09-07 09:07:14',0,0,3,1,'dfrn','friendica2','friendica2','','','','','','','http://friendica.local/photo/profile/3.jpg','http://friendica.local/photo/22875ea1ab42e09a2f1d3869cd6edfe7-4.jpg?ts=1504775802','http://friendica.local/photo/22875ea1ab42e09a2f1d3869cd6edfe7-5.jpg?ts=1504775802','http://friendica.local/photo/22875ea1ab42e09a2f1d3869cd6edfe7-6.jpg?ts=1504775802','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzOHCS/TBWB72tguU5RWu\nG4KnESmdXWGSHHrCm0iWP88Xl17lkEw58o4yt+bQS3c8U46OwP8z9EyCxFyDyHPU\noVgii+jMmT4hhKw5TeDPWwHSUZM07OP2d0J0Kktr6wC16DfGLWqo+EnJcLxyjFGn\nV6KzYR2d/73m0bj26QWM4w2ZCfBZvEEZsreF0XsZuBOWVRlTB4GzDlsRwRt05kUi\nevFnrth0fq+aeEnZA/8eFY9X8F1LB+mZLRdmWX77pMDtzzxTJUBoQPCkOJ0BvdXi\nyAYybmcxFzR/x1u+kpsgxeDOOPDAQAPnbBQcNNwWtl+emd8wmqXcbmM3XeIa1HPb\nDi0CHXJ5Lr95JYP2brAZu4dEwUNeTzkVkvB8DlviOSFmlg6CWmSKXdaF8trK6j4d\nlv7nxGBvmrbx1CmeA3RblvHR1aRyoQdNhBh1eLJrkDcaTgtzhycrjqdz+vVVV/xi\n4yMY9x+voxENfurEo/XsbzGfPSigTIHImzBcMtG0RTgxTMke6CoqRZW1pXFxZast\ncpsO02JRdPrXt+DHpYzDf8oEMTa4TNKBvczcT8ar82RZYY0srVV0uxH77xhx1bvm\nVAPf40FA2qbHZzCAv64YU9LdIT4iPEUga+Y5m9t2LvS+RiA8Zw/mmOdMFp4hI6+K\nELuO8hQc3Ot0moqfpYCnSl0CAwEAAQ==\n-----END PUBLIC KEY-----\n','1cc038d56cabb3f58fe8d4a2033828f1c9c787ccea8750c42fd03c5b068516a6','','http://friendica.local/profile/friendica2','http://friendica.local/profile/friendica2','friendica2@friendica.local','',NULL,'-----BEGIN PRIVATE KEY-----\nMIIJQwIBADANBgkqhkiG9w0BAQEFAASCCS0wggkpAgEAAoICAQDWB6eJMw4sUcCs\nqMTOziLls5i/UCAlmmXHdy4eDaof9dfskyXmGMW3BDtRiOxjTdh4G/hOPAlcBFCy\n6vz/LmZ+4xeoaMfuzRydFj72e0o+gkpsyrqjfs7Tu+/veDoxodsX4kNF4w0Dyd6H\n/7wdYDhFj/61eu+Il/Js0Z/QLtWJnHit2aboax0QZIohGg963zQIbYLDB6meZYOX\nuNGrYr8rZdDJaBBtK7qadT/A7X537B1mlAkleu4WP77x+R5b9YJZIZyr1TC7yN4C\niBXPicdOQzyQNj5xTQ8ZpAujS4B7P/Nbp5pIWUX6dt84P5w6HssZw/naB7MBGVFf\n3mIpYY7DhvmsMcSjH1vTkLCZATa+jD91uIwtc4q5sky35WcZY/SmY5V5ljzkXdBg\n9X9r7EIfIjaiL1pK+DX1HQouGL9ebHtc45n8DhBbuAuxzwlHYdnPoIlodHixCb5g\nLBUl4QFWBlrDo+UiokGqBul3z7rfg1/GRfCFfkrITqnWLkg0X1hF4JCh9i0Bo+IW\nyRYvXJQj9X5PfiRvpbkgb24brGxBc10VLr8CwVlaqpjyy7/bJ3p/xsAIYlkptKnF\nf2vsFaJXbbnzkdaSrgkzqKZCCFJGjDTAQKAgG8L/5wqNBsScke+E3EltWd1eUrpt\nEna1ely5kW2MIf25LmtHOx+pjvkTjQIDAQABAoICAGi7BCMhxYywUGzshKmBuxfV\ngygSiDh+TdGGIx33p8jN3uPXuVLXyl/dBT3Hl4ycOhHD9gQqYpYRUn/KdxRTWzo5\n24jABR14ZskDarnn6JOf49VKenuogIKhUy5GEYvZ3MDaKfsXuHWjIW5BGIbzX3XC\nmWuqhW28lJblGKOhV0JoO7EucPsH9wffeqvp+asxb1+0XqkapchpejQS7x5DSrJs\ntvbnIiqZnE0alKDOVfVOp7BbPgKGHdzrQn9bXJy5DRiaVvTKdHdfOivY9XtBuzIz\nun4C3RlKENqGKF+2gV9OEsJFyDwg2xpNcrsufT7/dHjeKfOjktc10VjtE/GV2Go1\nqMFLimTlVnwEwFaqTTs4kISZqghKbOFss2C0/fuu1l6QudW5f8Pz8oeukxe76u23\narKp08VJLgRgg15z+C9ZOnRR6vnDPvnZLBbR8TPBZpVpO6sXZAIezBLs+cvbJmti\n/nHLtB97GjivlsD7alAaPdT3C81Ghjaf0oDQhHenNCwqjp6ff959fXtedLD2DRfc\n9L1XolR3PlXMtW2uBk7jbruA/Tskllz+HzJW1Bz+uh9BYsXL/EbwD5FvD6IeSKGM\nEpFiKuGUjEGKjD/Lr8yeKZKUnIaehu7zQVoWat8qkGefY6bWvIziIbhAMaZRTCtE\nt5QplVRI9jkePXX56l2tAoIBAQD5NU8MRnUtnzyzFLpafLeFRZKSQWkIWrtAF/27\nuaxbRarJt+ThFCplUqh0REShnOUmhkGDrLoRneg7XT0sbMp52tZyfMuQhbUswO2X\nmZKLbYeiT0sC8KGLhcyos1GtOBvyoiXjjGc3PzEQhDXQ9mfxc6CiJoNIAOU29+i3\n9O2FKwXSzwF/rG4Ef5eVI5xG2HTkS/zZgNUA3zx/vE94nuagt3bvwnidlURx4QjL\n9wVU7XEr9ZnNz6+z3LLMn8FKFKgAo8EuHpMmhD/OsgollnmhPG60wPKNTFdncWM1\n9Muij0aoLerJvb57KUhlJd4+ZnQBNl838B0juI+85GM79pKLAoIBAQDb3OlKN1g/\nSVKw1qro44qwYYS+Yg+3eDkv0puFnBT4IHaA1hjwml2k4CKu2sA5ydixtYzBXyqJ\nsiI1EuGuaTTiq8jU66KDxzsus0DT3etOrEfd53FTfdCEtZ7tnooTFhrUQFlmy93K\nQz0Rs34Wl/2nB4rUoTCpSvCLE8R8hId5vPQRV6NNxzNQvRIaSExiJuS0AC45AHWE\n+C9JFX3ZAYwDzMxVOH1BxvbGAyHWq2d0J1MVvc099o3SWmmN2keAfD6FGyJxKN5p\n0RNggWpD+68snnFApi3T1mZiK9w7mQyw04VbE8Xa0sbxvNqdCB0NVrD4/7Ivg/SV\npHeD7Tef/C1HAoIBAQC1A162iNsGV1qsrUqq/VoEKMPNDkvvcJAAfyyjVbt21IS4\nXqWWQ6KD1GVdhlTfmunrcKtXrHe+4hbUP+Z2RVNQ7X7EzBbElApERqKNclQ6iEVz\nxOq0aPq+MGK2ywFxs4bBV7vzq4ExZOoLmCzK6qAXhqhP/29uNpBHvAzCydpY1yY0\nuH3bMfD7vX3qK2KRJxrI1NUFW4ncR0pXcf27nJfid0Ch6HzZ4ZlEqnNMS9IInSuO\nBahBETELkSwia4vndleNl2RzTmwOFxON3E54fPM+BXpYOqozrhbyoS6x+2yKWE23\nTRr0jKk2JodaSQZEBwEN/GNvay6PSrjFOJNH89L/AoIBAFeskkMMKt6hyJ3IHMNd\n6XJIkPyycf4BrRxK6cWv5hTELT1XIv7fL7SNxIbhqIHi4cyLzyNVZcsfA9ESRHie\nb35sblup01alXg5TYOibuDfZL5dnsaNPqpUhL80lyX2u9Ofq+Tuq1DjR80pZv1AX\nMAkpUs1TsenwfleXfGUDHFsJZHJ99hsP8oChxNRCPGNviwfUgposerCZn5GPRm4A\n1eq2Ak2Bh0Fxq/puSVIna8u/2rvywiORbCCT+T+d6aFs6il+Fo/1civUOdvj/5I4\njTRHwnW7Ts8I0i8XumzxrUPeNXGKQv3ty3OekbbJA3zMMyo4HMAh6Ki7uwUa1XGw\nyAUCggEBAPV+99cdLm4Slhss+UEpYxw9Bcsre/m7AcIwmxFrUHSuQZYgM7wvEqX+\nyB22k2zDbc6xRy1SbS/biX5xdeVOSlVUJDVsoQ9sqQbPZb/7a1Jtlcw7l5vRIX2x\nE4ewsVDJfBEcnsgXTCQ3Zg/LiIXLnq4Ixh7yyak7v+ZsENG66Iu64IPOxR4VmhSx\n4kcqwwmEikAMBp6T5jWr/1AzsFL9Aw++XuiA20xfL1XIxx40KNh5edmPXqa5sC4d\njuRXcOoc8leXbgA8J+gZ+1oMmP1pfktEG4Q9vLWB93plucjTebgk178hztnkSlBX\n0+nhwk3lGL5IGs5grmAOQN3tmgj/Khk=\n-----END PRIVATE KEY-----\n','','http://friendica.local/dfrn_request/friendica2','http://friendica.local/dfrn_notify/friendica2','http://friendica.local/dfrn_poll/friendica2','http://friendica.local/dfrn_confirm/friendica2','',0,0,0,0,'','0001-01-01 00:00:00','2017-09-07 09:16:42','0001-01-01 00:00:00','2017-09-07 08:58:34','2017-09-07 08:58:34','2017-09-07 09:16:42','0001-01-01 00:00:00','2017-09-07 09:16:42',0,0,0,1,0,0,0,1,0,0,0,NULL,99,NULL,0,'2018','0001-01-01',0,0,NULL),(16,3,'2017-09-07 09:07:14',0,0,3,1,'dfrn','friendica3','friendica3','',NULL,NULL,'','','','http://friendica.local/photo/9c78857b3d725c1c6d1227a7b8cbe6b2-4.jpg?ts=1504775234','http://friendica.local/photo/9c78857b3d725c1c6d1227a7b8cbe6b2-4.jpg?ts=1504775369','http://friendica.local/photo/9c78857b3d725c1c6d1227a7b8cbe6b2-5.jpg?ts=1504775369','http://friendica.local/photo/9c78857b3d725c1c6d1227a7b8cbe6b2-6.jpg?ts=1504775369','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwIuhjeg03GoOuSYqulsa\nvd/spvniwjaYZhCJYTHgOM4ak9qG8SwPhguSBMqZS3baHEcZtYcYsu5vSQAO/zCB\niK8yefV8LguBhoNw36p/hoQ4TdApOH3cjKAJoaxZSJw0oa50ebCSbh23chRHESbv\nlvfGXq0Pmk060VcLf6h00Iivg/BFNmDfEqrVmgpl0G1PIOatNJ5QdEpCP0E5Bg/H\nvnqvBgpkVAZkKA4xY5rw6pB2NofK74gaeNklnVFqAwaQZUrBv+z1C7h3NQ5YRees\nuspiwZVyFy95xm+kGlKq6GJ7WPQi1mKSJisHLxh9uI7ylgIyRWi/GRA2NBLb15tJ\nL9PpyWEbKhEX/zCUQbos6cFC3+jgiJoYIIa5pOYU0Ekf5AcyF3dFsbcWGObn++wv\nk+5dIK/un+1KOv7X3e/bAnkVCHHjzWAzURQkvb0fwFVzw80ioP4L4V+mvw4jxh+x\ndpPBQmqgCglqE2cpCB4gAcYPlXICBC18YcUYOkYIlgz2WuslcJCnrHO6K5q6lAn3\nNqEI/LmJDrq3hbu96k8d/0zCMNO+u3xPIhDcQ6ZzyhZmVDTpVGFiJ7Yhtfih3ASC\nZqWowoSq5onVWLCsj4QquNCIvJK1NLrkrr6rxD4DbCzW7XbZkenuHumh3HoFb5Lc\nRN6UJNHe/4FNNUzcAVBgEe0CAwEAAQ==\n-----END PUBLIC KEY-----\n','','1cc038d56cabb3f58fe8d4a2033828f1c9c787ccea8750c42fd03c5b068516a6','http://friendica.local/profile/friendica3','http://friendica.local/profile/friendica3','','','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA1geniTMOLFHArKjEzs4i\n5bOYv1AgJZplx3cuHg2qH/XX7JMl5hjFtwQ7UYjsY03YeBv4TjwJXARQsur8/y5m\nfuMXqGjH7s0cnRY+9ntKPoJKbMq6o37O07vv73g6MaHbF+JDReMNA8neh/+8HWA4\nRY/+tXrviJfybNGf0C7ViZx4rdmm6GsdEGSKIRoPet80CG2CwwepnmWDl7jRq2K/\nK2XQyWgQbSu6mnU/wO1+d+wdZpQJJXruFj++8fkeW/WCWSGcq9Uwu8jeAogVz4nH\nTkM8kDY+cU0PGaQLo0uAez/zW6eaSFlF+nbfOD+cOh7LGcP52gezARlRX95iKWGO\nw4b5rDHEox9b05CwmQE2vow/dbiMLXOKubJMt+VnGWP0pmOVeZY85F3QYPV/a+xC\nHyI2oi9aSvg19R0KLhi/Xmx7XOOZ/A4QW7gLsc8JR2HZz6CJaHR4sQm+YCwVJeEB\nVgZaw6PlIqJBqgbpd8+634NfxkXwhX5KyE6p1i5INF9YReCQofYtAaPiFskWL1yU\nI/V+T34kb6W5IG9uG6xsQXNdFS6/AsFZWqqY8su/2yd6f8bACGJZKbSpxX9r7BWi\nV22585HWkq4JM6imQghSRow0wECgIBvC/+cKjQbEnJHvhNxJbVndXlK6bRJ2tXpc\nuZFtjCH9uS5rRzsfqY75E40CAwEAAQ==\n-----END PUBLIC KEY-----\n',NULL,'','http://friendica.local/dfrn_request/friendica3','http://friendica.local/dfrn_notify/friendica3','http://friendica.local/dfrn_poll/friendica3','http://friendica.local/dfrn_confirm/friendica3','http://friendica.local/poco/friendica3',0,0,0,0,'','0001-01-01 00:00:00','0001-01-01 00:00:00','0001-01-01 00:00:00','2017-09-07 09:09:29','2017-09-07 09:09:29','2017-09-07 09:09:29','0001-01-01 00:00:00','0001-01-01 00:00:00',0,0,0,0,0,0,0,0,0,0,0,NULL,99,NULL,0,'','0001-01-01',0,0,NULL),(17,6,'2017-09-07 09:12:25',0,0,3,1,'dfrn','friendica4','friendica4','',NULL,NULL,'','','','http://friendica.local/photo/15048d33e71544a25a6dd13bb081c78f-4.jpg?ts=1504775545','http://friendica.local/photo/15048d33e71544a25a6dd13bb081c78f-4.jpg?ts=1504775585','http://friendica.local/photo/15048d33e71544a25a6dd13bb081c78f-5.jpg?ts=1504775585','http://friendica.local/photo/15048d33e71544a25a6dd13bb081c78f-6.jpg?ts=1504775585','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxAJ+t/FrD0sHO2ecwsoH\nmOst2aPHca5n4UEIpr2ZTl26WN1AbcNo9wahDHXG7pE50GQwvmnnTIlVDLAsBC23\n8sTSpGXrIC8L7YiyDeu3piBp/w4jy8JQrbXn4L8IQbnmi6nDCSr1szXjBcvdPPKK\nrCFgYJ4hjEkSp/wJcKZ1mlRTwtofWZHUMu3NsP2146wRj0roydFVkWGrfsH8grUO\nqMktmpCUOQNsOIAN8b6vQiYQQoamGWjV8wXO3W0fRhQ5Yjko19j1t+O1Jvy2CMhn\nRY2wiGZ91ZSfl8VNLrz38JyeR0cz7YJeNYzOggB1AjEzLhKtqw7zkyW8Qg1Kfo85\ndagFPZ5sQZ8R4nus7xabICMG/qJPL23/1tyenxqkVP0iDIhLo/f0uuG4riNOJZtf\nPYPT6sxSlqxbznuLQr1fYnjFyEnFtJpzuAuvybshT5QLyKntcGap67fWoj/7SrA4\n8T5RCdYHDacMdKEC1SDwpokpgWhWaRkUxJ5F0Q5Jpyvhui/UkxkevDWv5373pgVz\ngaZlxRKYKABWiJkQH9FPAdsr4nUVErl/zvI0+9GuzK/EJ5ToVs8bF98Jb4Y3o2pm\nNtPL1ao9r0ug/3F7RHTLs1tp0Bdm/Gxk/RJf4j6gKgAw9WcdHzkxcvikhAY43zMe\n5qExQo663i3hzw4v3p94i+sCAwEAAQ==\n-----END PUBLIC KEY-----\n','d27e7ba18c5f07077f89ed544d5336cece07bf8eac82df050f5b4df9a30c994d','','http://friendica.local/profile/friendica4','http://friendica.local/profile/friendica4','','',NULL,'-----BEGIN PRIVATE KEY-----\nMIIJQwIBADANBgkqhkiG9w0BAQEFAASCCS0wggkpAgEAAoICAQDZm1QsjHfufsmg\n8qjli3qnAzoxTgEfu9DlArbbhJ08vJwcL2RBHVXRXfxCzZVjFcKHQvlP5n3dF1jx\nu8vEj0qn6x/1+5ZPfrM/EUGEgNSrefAmoCXwRPobFS02wGGc/MXZZD6EQcftCWDP\n7AWpXN92Sl8WhuKGW3FRRqbxoaVuVK7JZ+V1HNgt3JKCpErXjefWF/4T9tJIn1dG\neO/hLAA4m2A1J9XUBFL64GzVHj+/0eZ9dDmkdZulPPKtB+MYuawgSKF3Hei6TOWJ\n29Gif1gccovl4516e96Vml5zghbXetKymEf4awx2jX2GOvRqaQZlSodWZwTM+Z2N\nlh/7x5bo8NdtMnJEibpBg2ExyPYVRcIHXXbuzaDdawvPfbu9lQzWpXenndp+yZgc\nJl9j6ysgv/x5AW4auLDSaxiraeNpncibedE2nyCWfW0zDkZCij3FjfAQZC4VXZIE\nfZX7Im6WnAvUmMbXbTHcsVdljiW6w0ZFqb3LisF3Ps92iPgpT15cMDLHxIleA580\nwj2+P/oZxdviUIhS/okpiAFZ3uOFh8kvxMM3JF7Z5M9FKd//IHlbkBlgNCDJFKnr\npv7El0xeDgDyyfmzUJtydXmgqNpSoNH6kSc1teFPwk0f9GSsNpVMoLzLQ68ngXd7\nGy1EFAewRJBikRS2uAdsSQD8p9wn6QIDAQABAoICAQCqS3zcQDG7W02/vyeePEGI\nYmYwH7ORehJIpo8jy+yhk5k4FX6H1sVKTBsWzHyURnsuD6O8e80UMSlSRH17Hgh2\n0PL6NiGzpJvyRzbW01ubtpnSIJKQLertNu1jY7sAeHD9aA3kwvYK8sPo8/SaTiwz\nDpDLuFOeggF0ca5EexRT+8GtrLlNpX0opu2hf6Fyf4NncO9OAGMgolJSvGI9/YlO\nw4nPD5WvjpLB8tA5GKsbGtEebM6PfdqIveHMt9dpiiTCPxTde3KeGX+pG3Y7jR0P\nZjVFe5PKPxY6TcyM6MmnaF9rlPD94Aio3qHVYl3UyMxQiLrRS13ea5p5K3tsNw5J\nXBgkpTaAGDKi7V4e/zL1l/6z5ALtW3Wmu2MvZPUR/Z4yckGNIq/b1aQ6WwQgZtKP\nKEtdX92osod+n2Fh4zeMAhD5rMkHud2NfGyK/6MfIrZTrWYyDKIJ5S/BUEiMsdGj\nWRv866++3V4LPcKL4xoZ0dEWJZNtCJjZoU55S9h1PG/LeTWutuzbPYpeN+5GSkWa\nhykLdZvMnCo1fycdmFprGvXcH7wmY9EAx09Nh3XQedVAo/c2IK2HHYFQwv6ZwL6J\nmSEdbFofqtJyFN1K8psShaYdlbjk074SG39HiyOJHRBRhT9sEfjFZJDbAupE5D3F\nfobkBjx5NxoTDFHEcGl0AQKCAQEA96ul+iyJ8RsdDkIZXrJ2FfGLLctghX9M9cYl\nbFGL0MAdq7DkhcH8cr4j4crGcwCS0gPI87Up4BmImS+ust8EoOeXeIKGsyPZ+des\nxFP8sCg52PNH/L5YClrv+l1KcJsvtuvH2AWBjyzmiySFZNISWR7x8ceoS3VHnYe7\nf4wixkme8eiSibQZPKavAVZD53bWehCHMNkyi0mb0p+KuVwVxnn7C4T2U6Fm/Pgg\nls3/vILFdJuT/h8WvgtpX3wmcOM3mVXDGU6xhTJCAJzSIdeQNkCRBujcDpF+l49x\nX2ZPLxr83a0di3H5RbjXv4zZzsd3dpeNcx23MbG/9NjAHvWi0QKCAQEA4OzXuYO3\nP5nbGoMPzaTAPDYrwDpDf5Ss7ImdFvFoQntcsSlGm116XY9CGtHkiFLa8WSYCenv\nDFdQA9MEwhIst2nXfijFEizbXv8vk7WA4Zqa5vjfT39HuyX1Aay+8DT36Xskoi82\nvDaDaEvTE1/kaXXVEB9BBBcGusGCH37JshC/HXXkqk27FPf8DwcIVsa5EeBEVGWu\nkOxUCnPqECAyWo+o5V2wQ5XvDPnmIMUhS0HOAVZLjXpeyWtyAXlKQewIlrdz017g\ntOtC3kjScPBJGedJ2vPTV1rPFSvMKLlrrlgEgOPoQIpfALwf4pF7VCHJGFed6APb\n2SLKNJZdByyJmQKCAQEAvOTtciEGFB3Zy0Yek1sJNTNEM2kp9KdiyxCU+kg3mr7r\n4kbIBDwvjlP2if9d29hUIllAqp9BkOnohO0ZENOHdDEuFXt3wKlXVnZoDlUAJFqJ\nxC3Iebuy6jLxVMJSRBAYFCtAAEIyzkAwlW8FTh/qXo57eSwN739DX6JmHqGC5DjC\nQT5ghSYXGWsHjr18jMzWR8LTWS5Onm1Fqx6Db1wMP5RJJEAEn0Q6iDW2pU33/o6+\ninEeLnMHpWqOs4S8zNx/SzNd2a9rNWtfa5gvrB/8nWQhOGPhcjsFkhKVJW2idwre\nUTP3lKMYu1R/OFj0xgDb3Fc6StIfJoerH9MwtGwkAQKCAQAz8Z50Ql3sezylZ8Ub\nicO3ZA9AinQSH6S7z6AOr1uTlue2JkEfGjxrJO1wQi7T6MaVXtTZ3UOOhw98gpwj\nsYzQIspYYVP5uZBD5Qz4wL7t2wWQ98KimlNXfhGR/HHwCVuDeSPhrKOoXbKFQJWT\ncN7QGB1HZuBd8G9ma9AANAiibcmlJRfU2LSuyAJW+hnL6ILPBQrirsTcxSc3bsOM\nS9M1JN4tcjCFuzeEuKWTxdLFjYHkvygdmTgQrhabDoa+qKLnI6DFHLEqNvavXQP0\nfxlyuP5OaWbSUq9mRUIV2ZRro/oORhPZ69q60bdPXKetq0vEql9WOKXqBGXMNTlw\nsbFpAoIBADxkpmiCKczH9Xek99kEFJZBDA4MSwi19MBa+guz5SkdJk/tW9Ns0Z1U\nwQJN4eMLNfDt+TB88JWXQI0qEX3o/VS30Sj84kKjreSkHSbIc0XlyLhfnG1swXkN\nR2HfWs3HrJhAP93bFg/phP8VsKa5ek/VetIcDK+L0h2uUujlG1WOglu1MNs1mo9r\ngYqIQ3SidbzlA/l1gQ+Kjw9nkd5n5twgN1LpQZjP6uad3/vJ6SacMbPTodUZw3Hv\nGfTGGa8/YrWfhlos2JJE6Fgh6wrHgn0lFwbRlXAjcdAwCgW2TsnPHxo84PEM6WZb\nKWMdUnVxfEPRjMmrwA33NQjDMKHoq+o=\n-----END PRIVATE KEY-----\n','','http://friendica.local/dfrn_request/friendica4','http://friendica.local/dfrn_notify/friendica4','http://friendica.local/dfrn_poll/friendica4','http://friendica.local/dfrn_confirm/friendica4','',0,0,0,0,'','0001-01-01 00:00:00','0001-01-01 00:00:00','0001-01-01 00:00:00','2017-09-07 09:13:05','2017-09-07 09:13:05','2017-09-07 09:13:05','0001-01-01 00:00:00','0001-01-01 00:00:00',0,0,0,0,0,0,0,0,0,0,0,NULL,99,NULL,0,'','0001-01-01',0,0,NULL),(18,5,'2017-09-07 09:12:25',0,0,3,1,'dfrn','friendica5','friendica5','','','','','','','http://friendica.local/photo/profile/6.jpg','http://friendica.local/photo/d74f209bfcd190b3864fa678e5068a16-4.jpg?ts=1504775769','http://friendica.local/photo/d74f209bfcd190b3864fa678e5068a16-5.jpg?ts=1504775769','http://friendica.local/photo/d74f209bfcd190b3864fa678e5068a16-6.jpg?ts=1504775769','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAmtBUbN/07wWbcUvp9QvR\nKLoM+WjC0K0rFsx6L/Mktk6Go5+DqofuHSQgfJZGBI3vbTlbwW76peX/0aqiZPGF\nrrhX1FMhU23AxYE9TixRR+oqIKETNzU8NuahpK/ZBokoPL7mzrY4o5dNcnG4S57O\nir4VfEpuYB99K7Uo4yVc6a50ZQfDoBy6nnCPbVmh+gokc28paK7Av0vnMwwD6TWQ\nrgXyrPsa+Af5YeDC7GOmhppeN+e5zycRTddfXWR8QFp+he43b7z54pB+ajAu3J+C\nTAagIp5UWrBmwclF2gmLWvyYYpwTF3kNz+Waf0s3khiZXcJZKxGKVqXoTkqEKV/i\nvHryaBlvvAkQKR1mfJpNasJfHrqhOlHigWi3ISlPJQB4h+85W+YAXj+3j26OnMpb\nCmjf0BXLnjuC+w9rXFW/kj3Q1PxNaAfx/BoV62unWBKnZAkkzHOkQ5yyATdXQaEY\nlDsFbc0itSm3zjsPa1gXtn9e9z8Mqn5MwKk5I9k7TIr6/FdgbX7gxl6mn59OQ0v+\ne8o7HECSQvT8c+WmvBk3tjQHDgw3FeiJ54w0IGiha530vPCk5Z840d/jVUL7Qc6j\nrNi7hLOBvx4jdxk+5tq6fZMG4Sbu+Iibc4b+f2QyVW7Pcxt3CM/ADh0kzfGJ7wQd\nzl4w/9+s8DPT43Tbn98QK+MCAwEAAQ==\n-----END PUBLIC KEY-----\n','','d27e7ba18c5f07077f89ed544d5336cece07bf8eac82df050f5b4df9a30c994d','http://friendica.local/profile/friendica5','http://friendica.local/profile/friendica5','friendica5@friendica.local','','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA2ZtULIx37n7JoPKo5Yt6\npwM6MU4BH7vQ5QK224SdPLycHC9kQR1V0V38Qs2VYxXCh0L5T+Z93RdY8bvLxI9K\np+sf9fuWT36zPxFBhIDUq3nwJqAl8ET6GxUtNsBhnPzF2WQ+hEHH7Qlgz+wFqVzf\ndkpfFobihltxUUam8aGlblSuyWfldRzYLdySgqRK143n1hf+E/bSSJ9XRnjv4SwA\nOJtgNSfV1ARS+uBs1R4/v9HmfXQ5pHWbpTzyrQfjGLmsIEihdx3oukzlidvRon9Y\nHHKL5eOdenvelZpec4IW13rSsphH+GsMdo19hjr0amkGZUqHVmcEzPmdjZYf+8eW\n6PDXbTJyRIm6QYNhMcj2FUXCB1127s2g3WsLz327vZUM1qV3p53afsmYHCZfY+sr\nIL/8eQFuGriw0msYq2njaZ3Im3nRNp8gln1tMw5GQoo9xY3wEGQuFV2SBH2V+yJu\nlpwL1JjG120x3LFXZY4lusNGRam9y4rBdz7Pdoj4KU9eXDAyx8SJXgOfNMI9vj/6\nGcXb4lCIUv6JKYgBWd7jhYfJL8TDNyRe2eTPRSnf/yB5W5AZYDQgyRSp66b+xJdM\nXg4A8sn5s1CbcnV5oKjaUqDR+pEnNbXhT8JNH/RkrDaVTKC8y0OvJ4F3exstRBQH\nsESQYpEUtrgHbEkA/KfcJ+kCAwEAAQ==\n-----END PUBLIC KEY-----\n',NULL,'','http://friendica.local/dfrn_request/friendica5','http://friendica.local/dfrn_notify/friendica5','http://friendica.local/dfrn_poll/friendica5','http://friendica.local/dfrn_confirm/friendica5','http://friendica.local/poco/friendica5',0,0,0,0,'','0001-01-01 00:00:00','2017-09-07 09:16:09','0001-01-01 00:00:00','2017-09-07 09:00:32','2017-09-07 09:00:32','2017-09-07 09:16:09','0001-01-01 00:00:00','2017-09-07 09:16:09',0,0,0,1,0,0,0,1,0,0,0,NULL,99,NULL,0,'2018','0001-01-01',0,0,NULL),(19,0,'2017-09-07 09:16:08',0,0,2,0,'dfrn','friendica5','friendica5','','','','','','','http://friendica.local/photo/profile/6.jpg','http://friendica.local/photo/2b902d193517f74d2c14e163cff8c10e-4.jpg?ts=1504775768','http://friendica.local/photo/2b902d193517f74d2c14e163cff8c10e-5.jpg?ts=1504775768','http://friendica.local/photo/2b902d193517f74d2c14e163cff8c10e-6.jpg?ts=1504775768',NULL,'','','http://friendica.local/profile/friendica5','http://friendica.local/profile/friendica5','friendica5@friendica.local','','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAmtBUbN/07wWbcUvp9QvR\nKLoM+WjC0K0rFsx6L/Mktk6Go5+DqofuHSQgfJZGBI3vbTlbwW76peX/0aqiZPGF\nrrhX1FMhU23AxYE9TixRR+oqIKETNzU8NuahpK/ZBokoPL7mzrY4o5dNcnG4S57O\nir4VfEpuYB99K7Uo4yVc6a50ZQfDoBy6nnCPbVmh+gokc28paK7Av0vnMwwD6TWQ\nrgXyrPsa+Af5YeDC7GOmhppeN+e5zycRTddfXWR8QFp+he43b7z54pB+ajAu3J+C\nTAagIp5UWrBmwclF2gmLWvyYYpwTF3kNz+Waf0s3khiZXcJZKxGKVqXoTkqEKV/i\nvHryaBlvvAkQKR1mfJpNasJfHrqhOlHigWi3ISlPJQB4h+85W+YAXj+3j26OnMpb\nCmjf0BXLnjuC+w9rXFW/kj3Q1PxNaAfx/BoV62unWBKnZAkkzHOkQ5yyATdXQaEY\nlDsFbc0itSm3zjsPa1gXtn9e9z8Mqn5MwKk5I9k7TIr6/FdgbX7gxl6mn59OQ0v+\ne8o7HECSQvT8c+WmvBk3tjQHDgw3FeiJ54w0IGiha530vPCk5Z840d/jVUL7Qc6j\nrNi7hLOBvx4jdxk+5tq6fZMG4Sbu+Iibc4b+f2QyVW7Pcxt3CM/ADh0kzfGJ7wQd\nzl4w/9+s8DPT43Tbn98QK+MCAwEAAQ==\n-----END PUBLIC KEY-----\n',NULL,'','http://friendica.local/dfrn_request/friendica5','http://friendica.local/dfrn_notify/friendica5','http://friendica.local/dfrn_poll/friendica5','http://friendica.local/dfrn_confirm/friendica5','http://friendica.local/poco/friendica5',0,0,0,0,'','0001-01-01 00:00:00','2017-09-07 09:16:09','0001-01-01 00:00:00','2017-09-07 09:16:08','2017-09-07 09:16:08','2017-09-07 09:16:08','0001-01-01 00:00:00','2017-09-07 09:16:09',0,0,0,1,0,0,0,0,0,0,0,NULL,99,NULL,0,'','0001-01-01',0,0,NULL),(20,0,'2017-09-07 09:16:41',0,0,2,0,'dfrn','friendica2','friendica2','','','','','','','http://friendica.local/photo/profile/3.jpg','http://friendica.local/photo/01f62fe9af5d22dfb7664e78e64acd43-4.jpg?ts=1504775801','http://friendica.local/photo/01f62fe9af5d22dfb7664e78e64acd43-5.jpg?ts=1504775801','http://friendica.local/photo/01f62fe9af5d22dfb7664e78e64acd43-6.jpg?ts=1504775801',NULL,'','','http://friendica.local/profile/friendica2','http://friendica.local/profile/friendica2','friendica2@friendica.local','','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzOHCS/TBWB72tguU5RWu\nG4KnESmdXWGSHHrCm0iWP88Xl17lkEw58o4yt+bQS3c8U46OwP8z9EyCxFyDyHPU\noVgii+jMmT4hhKw5TeDPWwHSUZM07OP2d0J0Kktr6wC16DfGLWqo+EnJcLxyjFGn\nV6KzYR2d/73m0bj26QWM4w2ZCfBZvEEZsreF0XsZuBOWVRlTB4GzDlsRwRt05kUi\nevFnrth0fq+aeEnZA/8eFY9X8F1LB+mZLRdmWX77pMDtzzxTJUBoQPCkOJ0BvdXi\nyAYybmcxFzR/x1u+kpsgxeDOOPDAQAPnbBQcNNwWtl+emd8wmqXcbmM3XeIa1HPb\nDi0CHXJ5Lr95JYP2brAZu4dEwUNeTzkVkvB8DlviOSFmlg6CWmSKXdaF8trK6j4d\nlv7nxGBvmrbx1CmeA3RblvHR1aRyoQdNhBh1eLJrkDcaTgtzhycrjqdz+vVVV/xi\n4yMY9x+voxENfurEo/XsbzGfPSigTIHImzBcMtG0RTgxTMke6CoqRZW1pXFxZast\ncpsO02JRdPrXt+DHpYzDf8oEMTa4TNKBvczcT8ar82RZYY0srVV0uxH77xhx1bvm\nVAPf40FA2qbHZzCAv64YU9LdIT4iPEUga+Y5m9t2LvS+RiA8Zw/mmOdMFp4hI6+K\nELuO8hQc3Ot0moqfpYCnSl0CAwEAAQ==\n-----END PUBLIC KEY-----\n',NULL,'','http://friendica.local/dfrn_request/friendica2','http://friendica.local/dfrn_notify/friendica2','http://friendica.local/dfrn_poll/friendica2','http://friendica.local/dfrn_confirm/friendica2','http://friendica.local/poco/friendica2',0,0,0,0,'','0001-01-01 00:00:00','2017-09-07 09:16:42','0001-01-01 00:00:00','2017-09-07 09:16:41','2017-09-07 09:16:41','2017-09-07 09:16:41','0001-01-01 00:00:00','2017-09-07 09:16:42',0,0,0,1,0,0,0,0,0,0,0,NULL,99,NULL,0,'','0001-01-01',0,0,NULL),(21,0,'2017-09-07 09:17:49',0,0,2,0,'dfrn','friendica1','friendica1','','','','','','','http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575','http://friendica.local/photo/39e7b822c093a22f70de8782c7d652d4-4.jpg?ts=1504775948','http://friendica.local/photo/39e7b822c093a22f70de8782c7d652d4-5.jpg?ts=1504775948','http://friendica.local/photo/39e7b822c093a22f70de8782c7d652d4-6.jpg?ts=1504775948',NULL,'','','http://friendica.local/profile/friendica1','http://friendica.local/profile/friendica1','friendica1@friendica.local','','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzNeTX2GGZAqTecUeOPNq\n+uFCfBuN4g6xKTkBlUDeVCLp2N3uVJq+TSjmoau8MpY3jCD2Nqn5KsMPh8XJV2s6\nb1kSjmVdpr4EeBXPyvi3asCcgmqi2IeoK/ihVGP9IrrYh8zwzVY9wW1/TPcC4N4W\nCcmeFTO08CSJh2P8ROq6irU0ndbmqfmFSs5uZ7UcEKUzkgSSPTxq5x3O7xSfTbOZ\nPNhSn3r5buSOd46KyWaBIJ2KgFNoY2AGJqbzZTZmJZB/qelrONtJ6XDnDI9GNQBI\nyL9935Scmo9WrXeZcqXNW3yI97s1tH27pCxhsyy5xqzEYfAPwPFry4gbO+wSGcNm\nFYfbCM19uPvJyN6TEgFNZD5401Pl8LQaVkSAnV9LQPzn/54CJYQb6KlE0rymROyQ\nvKPUZmEkw6ZnVJIF5pjxu6bGGPdv3xmBH6Xnmi0hhNA2AEDbv6wDrLZYLUCTSSqq\nhW8WK3HylsP9dqNT+a3X9l9dG7vqmRevGcbBQDDZPOKjkJkAa8IgIlk3UIWs3bYY\nST0VUtjRpsoLo3XmdYtY5qXxjGjtEy7NjRErlT31WoMzxcLhLwxKGWQz/xMC9OXe\np+uoyVUOd3U/Jvz6vpW9k5ua417IrF9XaxtcKvhp69m16br8JkMuKWvdGomWDXxA\nG1cAbsHJN6JJEU/3Vo35sh0CAwEAAQ==\n-----END PUBLIC KEY-----\n',NULL,'','http://friendica.local/dfrn_request/friendica1','http://friendica.local/dfrn_notify/friendica1','http://friendica.local/dfrn_poll/friendica1','http://friendica.local/dfrn_confirm/friendica1','http://friendica.local/poco/friendica1',0,0,0,0,'','0001-01-01 00:00:00','0001-01-01 00:00:00','0001-01-01 00:00:00','2017-09-07 09:17:49','2017-09-07 09:17:49','2017-09-07 09:19:08','0001-01-01 00:00:00','0001-01-01 00:00:00',0,0,0,1,0,0,0,0,0,0,0,NULL,99,NULL,0,'','0001-01-01',0,0,NULL),(22,0,'2017-09-07 09:18:24',0,0,2,0,'dfrn','friendica3','friendica3','','','','','','','http://friendica.local/photo/profile/4.jpg','http://friendica.local/photo/19065c444ea257e137e46e890d2c7001-4.jpg?ts=1504775904','http://friendica.local/photo/19065c444ea257e137e46e890d2c7001-5.jpg?ts=1504775904','http://friendica.local/photo/19065c444ea257e137e46e890d2c7001-6.jpg?ts=1504775904',NULL,'','','http://friendica.local/profile/friendica3','http://friendica.local/profile/friendica3','friendica3@friendica.local','','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwIuhjeg03GoOuSYqulsa\nvd/spvniwjaYZhCJYTHgOM4ak9qG8SwPhguSBMqZS3baHEcZtYcYsu5vSQAO/zCB\niK8yefV8LguBhoNw36p/hoQ4TdApOH3cjKAJoaxZSJw0oa50ebCSbh23chRHESbv\nlvfGXq0Pmk060VcLf6h00Iivg/BFNmDfEqrVmgpl0G1PIOatNJ5QdEpCP0E5Bg/H\nvnqvBgpkVAZkKA4xY5rw6pB2NofK74gaeNklnVFqAwaQZUrBv+z1C7h3NQ5YRees\nuspiwZVyFy95xm+kGlKq6GJ7WPQi1mKSJisHLxh9uI7ylgIyRWi/GRA2NBLb15tJ\nL9PpyWEbKhEX/zCUQbos6cFC3+jgiJoYIIa5pOYU0Ekf5AcyF3dFsbcWGObn++wv\nk+5dIK/un+1KOv7X3e/bAnkVCHHjzWAzURQkvb0fwFVzw80ioP4L4V+mvw4jxh+x\ndpPBQmqgCglqE2cpCB4gAcYPlXICBC18YcUYOkYIlgz2WuslcJCnrHO6K5q6lAn3\nNqEI/LmJDrq3hbu96k8d/0zCMNO+u3xPIhDcQ6ZzyhZmVDTpVGFiJ7Yhtfih3ASC\nZqWowoSq5onVWLCsj4QquNCIvJK1NLrkrr6rxD4DbCzW7XbZkenuHumh3HoFb5Lc\nRN6UJNHe/4FNNUzcAVBgEe0CAwEAAQ==\n-----END PUBLIC KEY-----\n',NULL,'','http://friendica.local/dfrn_request/friendica3','http://friendica.local/dfrn_notify/friendica3','http://friendica.local/dfrn_poll/friendica3','http://friendica.local/dfrn_confirm/friendica3','http://friendica.local/poco/friendica3',0,0,0,0,'','0001-01-01 00:00:00','0001-01-01 00:00:00','0001-01-01 00:00:00','2017-09-07 09:18:24','2017-09-07 09:18:24','2017-09-07 09:18:24','0001-01-01 00:00:00','0001-01-01 00:00:00',0,0,0,1,0,0,0,0,0,0,0,NULL,99,NULL,0,'','0001-01-01',0,0,NULL);
+INSERT INTO `contact` VALUES (1,1,'2018-11-17 12:31:27',1,0,0,0,'','admin','admin','','',NULL,'','','','http://192.168.22.10/photo/profile/1.jpg','http://192.168.22.10/photo/59483894715bf00a1f6a24a891914929-4.jpg?ts=1542457887','http://192.168.22.10/photo/59483894715bf00a1f6a24a891914929-5.jpg?ts=1542457887','http://192.168.22.10/photo/59483894715bf00a1f6a24a891914929-6.jpg?ts=1542457887',NULL,'','','http://192.168.22.10/profile/admin','http://192.168.22.10/profile/admin','admin@192.168.22.10','',NULL,NULL,'','http://192.168.22.10/dfrn_request/admin','http://192.168.22.10/dfrn_notify/admin','http://192.168.22.10/dfrn_poll/admin','http://192.168.22.10/dfrn_confirm/admin','http://192.168.22.10/poco/admin',0,0,0,0,'','0001-01-01 00:00:00','0001-01-01 00:00:00','0001-01-01 00:00:00','2018-11-17 12:34:42','2018-11-17 12:31:27','2018-11-17 12:31:27','0001-01-01 00:00:00','0001-01-01 00:00:00',0,0,0,0,0,0,0,0,0,0,0,0,NULL,0,NULL,0,'','0001-01-01',0,0,NULL),(2,0,'2018-11-17 12:34:21',0,0,2,0,'dfrn','admin','admin','','',NULL,'','','','http://192.168.22.10/photo/profile/1.jpg','http://192.168.22.10/photo/52226322615bf00acd9acbf086558812-4.jpg?ts=1542459003','http://192.168.22.10/photo/52226322615bf00acd9acbf086558812-5.jpg?ts=1542459003','http://192.168.22.10/photo/52226322615bf00acd9acbf086558812-6.jpg?ts=1542459003',NULL,'','','http://192.168.22.10/profile/admin','http://192.168.22.10/profile/admin','admin@192.168.22.10','http://192.168.22.10/~admin','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyYmalhhmPJg0qwLjbeoL\nKgykA6idu8HtZkKWPpXZHHD9J0InLId7Ht3G9dSBIBbHpWhaoFHkI06PRaqiT3sY\n4yXPBWDuhnIzzbV5VbxXShzRCe0LzBMhvusf/74sQkqH64g7xsaSBipHHaUEa7yD\nv+xCoGtoSOcqGEBzesSH//sIl94IrkkN+/grb1ZSFFjQYWMLMWMD7Py/awcqOtCB\nJ6NnmcBVMK5CxyV+YN+C+dhUsf+LjvH7WE0uigvTlMG+lGfXHxl4/en8bcAQ/GEr\n1xfbDJuknxr+ckGFZeHtj6Noz1IRD7y+7rlTgbZTmOrCJKg38Br2m3tMGGhIU3t7\nSmrKn8qqf9HuyR83+7Cu+t8x24LuhTjGW2Z6KE5TqYacMu+to58MFH8lDOnoOxHA\nGWpi9kYPXSbO9mLwDNF3pue3bLusvGQnns9h38w8m1Q25nivKKvgVbOrdNaB6wUy\nFIDcqjlZOVIyZ24QWZck77Em/cCkEf1c9kV4f1VjwmyQ4apSPf6q92AHcBlbv7yI\nFhVbGMhEaMIT7PQgxi2F48YInnlNjQlk3yHv3sdjlYJvcHHlf2PsMXlRb1CzrFRf\nX6Uv7e1obwy+SsywkAq+sT4tfsPEw2mIL56cXw0licP2hjOIgzYD1xi8pZx3xsQP\nTjdpqBmCKfnzs+TCZIbXIQ8CAwEAAQ==\n-----END PUBLIC KEY-----\n',NULL,'','http://192.168.22.10/dfrn_request/admin','http://192.168.22.10/dfrn_notify/admin','http://192.168.22.10/dfrn_poll/admin','http://192.168.22.10/dfrn_confirm/admin','http://192.168.22.10/poco/admin',0,0,0,0,'','0001-01-01 00:00:00','2018-11-17 12:34:45','0001-01-01 00:00:00','2018-11-17 12:34:45','2018-11-17 12:34:45','2018-11-17 12:50:03','0001-01-01 00:00:00','0001-01-01 00:00:00',0,0,0,1,0,0,-1,0,0,0,0,0,NULL,99,NULL,0,'','0001-01-01',0,0,NULL),(3,0,'2018-11-17 12:34:43',0,0,1,0,'dfrn','relay','relay','',NULL,NULL,'','','','','','','',NULL,'','','http://192.168.22.10','http://192.168.22.10','','',NULL,NULL,'http://192.168.22.10/dfrn_notify',NULL,NULL,NULL,NULL,NULL,0,0,0,0,'','0001-01-01 00:00:00','0001-01-01 00:00:00','0001-01-01 00:00:00','0001-01-01 00:00:00','0001-01-01 00:00:00','0001-01-01 00:00:00','0001-01-01 00:00:00','0001-01-01 00:00:00',0,0,0,1,0,0,4,0,0,0,0,0,NULL,99,NULL,0,'','0001-01-01',0,0,NULL),(4,2,'2018-11-17 12:39:46',1,0,0,0,'','friendica1','friendica1','','',NULL,'','','','http://192.168.22.10/photo/profile/2.jpg','http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007','http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-5.jpg?ts=1542459007','http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-6.jpg?ts=1542459007',NULL,'','','http://192.168.22.10/profile/friendica1','http://192.168.22.10/profile/friendica1','friendica1@192.168.22.10','',NULL,NULL,'','http://192.168.22.10/dfrn_request/friendica1','http://192.168.22.10/dfrn_notify/friendica1','http://192.168.22.10/dfrn_poll/friendica1','http://192.168.22.10/dfrn_confirm/friendica1','http://192.168.22.10/poco/friendica1',0,0,0,0,'','0001-01-01 00:00:00','2018-11-17 14:02:14','0001-01-01 00:00:00','2018-11-17 12:39:46','2018-11-17 12:39:46','2018-11-17 12:50:07','0001-01-01 00:00:00','2018-11-17 14:02:14',0,0,0,0,0,0,0,0,0,0,0,0,NULL,0,NULL,0,'','0001-01-01',0,0,NULL),(5,3,'2018-11-17 12:40:07',1,0,0,0,'','friendica2','friendica2','','',NULL,'','','','http://192.168.22.10/photo/profile/3.jpg','http://192.168.22.10/photo/15820583805bf00e7fd7909940374120-4.jpg?ts=1542459007','http://192.168.22.10/photo/15820583805bf00e7fd7909940374120-5.jpg?ts=1542459007','http://192.168.22.10/photo/15820583805bf00e7fd7909940374120-6.jpg?ts=1542459007',NULL,'','','http://192.168.22.10/profile/friendica2','http://192.168.22.10/profile/friendica2','friendica2@192.168.22.10','',NULL,NULL,'','http://192.168.22.10/dfrn_request/friendica2','http://192.168.22.10/dfrn_notify/friendica2','http://192.168.22.10/dfrn_poll/friendica2','http://192.168.22.10/dfrn_confirm/friendica2','http://192.168.22.10/poco/friendica2',0,0,0,0,'','0001-01-01 00:00:00','2018-11-17 14:00:04','0001-01-01 00:00:00','2018-11-17 12:40:07','2018-11-17 12:40:07','2018-11-17 12:50:07','0001-01-01 00:00:00','2018-11-17 14:00:04',0,0,0,0,0,0,0,0,0,0,0,0,NULL,0,NULL,0,'','0001-01-01',0,0,NULL),(6,4,'2018-11-17 12:40:28',1,0,0,0,'','friendica3','friendica3','','',NULL,'','','','http://192.168.22.10/photo/profile/4.jpg','http://192.168.22.10/photo/12242958235bf00e8006f72987476580-4.jpg?ts=1542459008','http://192.168.22.10/photo/12242958235bf00e8006f72987476580-5.jpg?ts=1542459008','http://192.168.22.10/photo/12242958235bf00e8006f72987476580-6.jpg?ts=1542459008',NULL,'','','http://192.168.22.10/profile/friendica3','http://192.168.22.10/profile/friendica3','friendica3@192.168.22.10','',NULL,NULL,'','http://192.168.22.10/dfrn_request/friendica3','http://192.168.22.10/dfrn_notify/friendica3','http://192.168.22.10/dfrn_poll/friendica3','http://192.168.22.10/dfrn_confirm/friendica3','http://192.168.22.10/poco/friendica3',0,0,0,0,'','0001-01-01 00:00:00','0001-01-01 00:00:00','0001-01-01 00:00:00','2018-11-17 12:40:28','2018-11-17 12:40:28','2018-11-17 12:50:08','0001-01-01 00:00:00','0001-01-01 00:00:00',0,0,0,0,0,0,0,0,0,0,0,0,NULL,0,NULL,0,'','0001-01-01',0,0,NULL),(7,5,'2018-11-17 12:41:59',1,0,0,0,'','friendica4','friendica4','','',NULL,'','','','http://192.168.22.10/photo/profile/5.jpg','http://192.168.22.10/photo/97971161215bf00e801fdd7464746900-4.jpg?ts=1542459008','http://192.168.22.10/photo/97971161215bf00e801fdd7464746900-5.jpg?ts=1542459008','http://192.168.22.10/photo/97971161215bf00e801fdd7464746900-6.jpg?ts=1542459008',NULL,'','','http://192.168.22.10/profile/friendica4','http://192.168.22.10/profile/friendica4','friendica4@192.168.22.10','',NULL,NULL,'','http://192.168.22.10/dfrn_request/friendica4','http://192.168.22.10/dfrn_notify/friendica4','http://192.168.22.10/dfrn_poll/friendica4','http://192.168.22.10/dfrn_confirm/friendica4','http://192.168.22.10/poco/friendica4',0,0,0,0,'','0001-01-01 00:00:00','2018-11-17 14:02:58','0001-01-01 00:00:00','2018-11-17 12:41:59','2018-11-17 12:41:59','2018-11-17 12:50:08','0001-01-01 00:00:00','2018-11-17 14:02:58',0,0,0,0,0,0,0,0,0,0,0,0,NULL,0,NULL,0,'','0001-01-01',0,0,NULL),(8,6,'2018-11-17 12:42:25',1,0,0,0,'','friendica5','friendica5','','',NULL,'','','','http://192.168.22.10/photo/profile/6.jpg','http://192.168.22.10/photo/63436871415bf00e80dfe9c308856934-4.jpg?ts=1542459008','http://192.168.22.10/photo/63436871415bf00e80dfe9c308856934-5.jpg?ts=1542459008','http://192.168.22.10/photo/63436871415bf00e80dfe9c308856934-6.jpg?ts=1542459008',NULL,'','','http://192.168.22.10/profile/friendica5','http://192.168.22.10/profile/friendica5','friendica5@192.168.22.10','',NULL,NULL,'','http://192.168.22.10/dfrn_request/friendica5','http://192.168.22.10/dfrn_notify/friendica5','http://192.168.22.10/dfrn_poll/friendica5','http://192.168.22.10/dfrn_confirm/friendica5','http://192.168.22.10/poco/friendica5',0,0,0,0,'','0001-01-01 00:00:00','0001-01-01 00:00:00','0001-01-01 00:00:00','2018-11-17 12:42:25','2018-11-17 12:42:25','2018-11-17 12:50:08','0001-01-01 00:00:00','0001-01-01 00:00:00',0,0,0,0,0,0,0,0,0,0,0,0,NULL,0,NULL,0,'','0001-01-01',0,0,NULL),(9,0,'2018-11-17 12:50:07',0,0,2,0,'dfrn','friendica2','friendica2','','',NULL,'','','','http://192.168.22.10/photo/15820583805bf00e7fd7909940374120-4.jpg?ts=1542459007','http://192.168.22.10/photo/53312796025bf00e7f82e82896954942-4.jpg?ts=1542462605','http://192.168.22.10/photo/53312796025bf00e7f82e82896954942-5.jpg?ts=1542462605','http://192.168.22.10/photo/53312796025bf00e7f82e82896954942-6.jpg?ts=1542462605',NULL,'','','http://192.168.22.10/profile/friendica2','http://192.168.22.10/profile/friendica2','friendica2@192.168.22.10','http://192.168.22.10/~friendica2','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwMWwwjqXtfQmCzLQmZ+D\ntRVdtv1Vq6DdjC/+aEP3UKLpp0nzNcsfT3U8Kejs23o0KpC+EVFXuWZqvxyeHoiZ\n+w9i1roJf2eSLBVeAjiEmLbI7wSfLBu+iA1x+X6+d9wxxAgzM7KHIBOghVCDussz\n4AaojP4Dx3Egsl1w+1j/ULUNCvf1wq9KLMMgJlnemC4cHfv+ObcxdisPezjVD9sg\nnvRLKyv6i8gm8csDwaHtHP6VNxc0JnauU6GIxBrDmlnpKYGb3rl3WLSvuiyzJYrr\nzKESnFINFKRLCG3m548OK+reRBDmgYbsZFJ57FS6YTa63268IwwtlRbRs8n8N7Mi\nO0jAXhRyZKRim6lkykIUjwlmIKfS2xl38k1kg5VLfPwZYAhiG6+JMcBlyj7hKU+4\nN9FKKfLlxtRz/g2kh81eHWEOXblEohpR/GbAhMF8h/tkHM+ze2TAbyEK1A+UWlWZ\n3olMRdt/awlAd657XqGVukYUg++GdEGkVyeWcCV3CwscbhiFAqpV/TWh6yARultJ\nvij/UQWi27yFY1v4EAactGL/V+zrmQSduKGd7jpHJe2XVS4DGuw+ThiDQc8gamlG\ndmZcPkVxChFqGpxGKXOr8uFWbYUG4Cj3iA4iV8XOlGUIN8uFtbWX/VyVHGNGDmGg\n60osshOegUJTNz8OBkZspvsCAwEAAQ==\n-----END PUBLIC KEY-----\n',NULL,'','http://192.168.22.10/dfrn_request/friendica2','http://192.168.22.10/dfrn_notify/friendica2','http://192.168.22.10/dfrn_poll/friendica2','http://192.168.22.10/dfrn_confirm/friendica2','http://192.168.22.10/poco/friendica2',0,0,0,0,'','2018-11-17 13:50:05','2018-11-17 14:00:04','0001-01-01 00:00:00','2018-11-17 12:50:07','2018-11-17 12:50:07','2018-11-17 13:50:05','0001-01-01 00:00:00','2018-11-17 14:00:04',0,0,0,1,0,0,-1,0,0,0,0,0,NULL,99,NULL,0,'','0001-01-01',0,0,NULL),(10,0,'2018-11-17 12:50:07',0,0,2,0,'dfrn','friendica1','friendica1','','',NULL,'','','','http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007','http://192.168.22.10/photo/95550517915bf00e7f84cd7979805449-4.jpg?ts=1542462606','http://192.168.22.10/photo/95550517915bf00e7f84cd7979805449-5.jpg?ts=1542462606','http://192.168.22.10/photo/95550517915bf00e7f84cd7979805449-6.jpg?ts=1542462606',NULL,'','','http://192.168.22.10/profile/friendica1','http://192.168.22.10/profile/friendica1','friendica1@192.168.22.10','http://192.168.22.10/~friendica1','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAmQR1Wmtv2KMZ5f5NTJMf\nRfX+1KXfhCKZaDgtL8/Trtb1ZXLq0tlBVhm29MI1F6cxZFhNlFyW6GZCeZFKX3FP\n2pFw03sEBTo5PCLso18EEl9kXV9cXoBMzINI3jIGnJiawq9PfIw5142jFBLOxiDS\nc/iNG6iFbq2qHwiQJjtp61BCFivIMZaHXqvtroakggjBH3EbRx+rZfeqjB8MRqOc\npXIqjc0lrHk8QGdXeuUAWsL2qUqHVNekLBXPnRcdMT8BxUmtBj0ccZ1IICLPFEzK\nr6DtqH5kE+aq9IcoMIEDjUhnyOAvFda8TlxX8D5SMFbrfJZDTypDqXHnSxHUS0Rd\nX06tLJZxMgqHspkxp6nzxk7JGPHKQmU6N0uqQb+i7dFlgC8QRLi79a1x019dvpAN\nRwbhGnn/pEU9Kn1JbYTAI6irBnHnlAUkpxmwSzRx5ncbNbhbniMD2/39IV1mztUh\nAyc262/cRRJAu8pEsPvc/pSijIyfrxJGYqF/uUcS5gbrY+wCjpYaBdzFxQEcD1Aq\nvXQGxi3sMRY9b1FJ+f3UTB7D9kIBCbwUNOXCjDCrOKZN6nxPLpKnfFsneHleUHa0\n+MRzI/vX78jQ1P4KgxPIiSktfrZitBpyzCC5O4ytiwqF2E8Ei0zE6OL2gm8yv7tB\n00ewnSBHzIpdnS51XuxxmIsCAwEAAQ==\n-----END PUBLIC KEY-----\n',NULL,'','http://192.168.22.10/dfrn_request/friendica1','http://192.168.22.10/dfrn_notify/friendica1','http://192.168.22.10/dfrn_poll/friendica1','http://192.168.22.10/dfrn_confirm/friendica1','http://192.168.22.10/poco/friendica1',0,0,0,0,'','2018-11-17 13:50:06','2018-11-17 14:03:08','0001-01-01 00:00:00','2018-11-17 12:50:07','2018-11-17 12:50:07','2018-11-17 13:50:06','0001-01-01 00:00:00','2018-11-17 14:03:08',0,0,0,1,0,0,-1,0,0,0,0,0,NULL,99,NULL,0,'','0001-01-01',0,0,NULL),(11,0,'2018-11-17 12:50:07',0,0,2,0,'dfrn','friendica4','friendica4','','',NULL,'','','','http://192.168.22.10/photo/97971161215bf00e801fdd7464746900-4.jpg?ts=1542459008','http://192.168.22.10/photo/11822615065bf00e7fab8ba088168210-4.jpg?ts=1542462606','http://192.168.22.10/photo/11822615065bf00e7fab8ba088168210-5.jpg?ts=1542462606','http://192.168.22.10/photo/11822615065bf00e7fab8ba088168210-6.jpg?ts=1542462606',NULL,'','','http://192.168.22.10/profile/friendica4','http://192.168.22.10/profile/friendica4','friendica4@192.168.22.10','http://192.168.22.10/~friendica4','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtOfQNRnGbzBy9Rc7gLAI\nrB5Fp2SBFfjRnd5g99HKWI3Amz5BXdcOWsgikVtwSVGDD8TGPj56qIlp+ctfYkPZ\nn5QSGfA3VS5eqWNfE9aG3XZAO7M7x2pKVaf79ciuYK0HQrmCeClB844x8rXDmW5m\n1k6Any22lpXHdDY8heR6O/uLIG9i/eRiD8tFMY3ATVkJ4MF5TY/m0ZGhHAMfK9dm\nkJzNvJc0cYe6kBmpDDmlJwObo75NfPBi3bqTaIZvTxda6lgWcuv/J1IR0fLhW8IJ\nbbXcd/fSNHV5zdqPmZsiu4+nx1xf+40J1v9+uKCCxH6UlUR9HLcCpYH6PDmoEkRk\n2WVPsU2+crVbY5cbNx08LVe6ZGl/onhTM35t2JBpo9ClgTSmpgEkRQsBebWNEKn3\n/y7Ib+/IywdomRUTgXVtKt5+90FdEhNwrba2CyD3dFW/CQCwx+363juCZr16EiKx\nbG5VJ1aIN8/My9feB9fklqyCpy0vkMI9NptQbtKntueETeLTqKlZ5uJJZJtd6S7z\nrTAd6vx5WLOMYlfQF2K7MVCwYUVfcIoWKxAg3SU+5sIG+cSrreT67wxt6k6sEEOw\npRZn3qZ13vPpO1mJelhqQeDZYutywYHjNj+L5TjCIZqIS129MZbqDJELkjTmckRV\nAZmzTHqCDXwd70IddYvuuJMCAwEAAQ==\n-----END PUBLIC KEY-----\n',NULL,'','http://192.168.22.10/dfrn_request/friendica4','http://192.168.22.10/dfrn_notify/friendica4','http://192.168.22.10/dfrn_poll/friendica4','http://192.168.22.10/dfrn_confirm/friendica4','http://192.168.22.10/poco/friendica4',0,0,0,0,'','2018-11-17 13:50:06','2018-11-17 14:03:08','0001-01-01 00:00:00','2018-11-17 12:50:08','2018-11-17 12:50:08','2018-11-17 13:50:06','0001-01-01 00:00:00','2018-11-17 14:03:08',0,0,0,1,0,0,-1,0,0,0,0,0,NULL,99,NULL,0,'','0001-01-01',0,0,NULL),(12,0,'2018-11-17 12:50:07',0,0,2,0,'dfrn','friendica3','friendica3','','',NULL,'','','','http://192.168.22.10/photo/12242958235bf00e8006f72987476580-4.jpg?ts=1542459008','http://192.168.22.10/photo/73148550885bf00e7fb1447228602212-4.jpg?ts=1542462605','http://192.168.22.10/photo/73148550885bf00e7fb1447228602212-5.jpg?ts=1542462605','http://192.168.22.10/photo/73148550885bf00e7fb1447228602212-6.jpg?ts=1542462605',NULL,'','','http://192.168.22.10/profile/friendica3','http://192.168.22.10/profile/friendica3','friendica3@192.168.22.10','http://192.168.22.10/~friendica3','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvAs4TR4AI+nlBt8d7BHD\nViq6w3UslHqURRUo0+sfAE5RL45im2z+ryPag1K5dbs5pcoa6hfk9+EREgoWlwnX\nX/8UdkvkoHE6/JDFimuaK7pequwUQbQoOXkkBAyPtN8YhjfGM19CI5FIVByY+O8p\nO/lGls1h5bxYEIgjA0tTDw5FuhPtiw9SJAPtQs5Gueoe9y7VwXNLNenKI6r6/Kfo\nzgYKJS98ibCllMiDIY0ixZZqhsh5+oEAsGPaNtQSgw09fWyyDNUKOenC4NhhMWsY\nBtTgDOPkM1AgidQKny7wtfo04YCn13SZuU6cWXqCx2pTgxLpBRgNbfkf6/DerVEO\nh2/Fxx2oMrRqLox+kAj03zrKnto3n5cYASlmfeEmUBHtjc/qPbuEzm+FEJKTXkrg\njt0+xzTQxPr+oFMinACdTMu6J4lB6dGCJxbx/Dx6FcRKymUYGdLvZWITfKZAikRh\nX8Pll3bFExOk5ieOdBLRt5ujGHuMbV204qpUsL0kDU9/4aMnpJei4EZuw21ovDH1\nVchVjJS4fzsJkaDfA81+83ADHXU10+UJ7PXAq7U416nC/dr30Gp2cxYb1qELYe4W\nGXE9k857z1o3BevJi4smy0FeydVVEVJ/1SPhPcdKHIA6sfP+TzuvWk7zK+xDwdyb\no4/nVNHD26NC1mVTTAjR7t0CAwEAAQ==\n-----END PUBLIC KEY-----\n',NULL,'','http://192.168.22.10/dfrn_request/friendica3','http://192.168.22.10/dfrn_notify/friendica3','http://192.168.22.10/dfrn_poll/friendica3','http://192.168.22.10/dfrn_confirm/friendica3','http://192.168.22.10/poco/friendica3',0,0,0,0,'','2018-11-17 13:50:05','2018-11-17 13:50:05','0001-01-01 00:00:00','2018-11-17 12:50:08','2018-11-17 12:50:08','2018-11-17 13:50:05','0001-01-01 00:00:00','0001-01-01 00:00:00',0,0,0,1,0,0,-1,0,0,0,0,0,NULL,99,NULL,0,'','0001-01-01',0,0,NULL),(13,0,'2018-11-17 12:50:08',0,0,2,0,'dfrn','friendica5','friendica5','','',NULL,'','','','http://192.168.22.10/photo/63436871415bf00e80dfe9c308856934-4.jpg?ts=1542459008','http://192.168.22.10/photo/14369303895bf00e80b1e28207310424-4.jpg?ts=1542462606','http://192.168.22.10/photo/14369303895bf00e80b1e28207310424-5.jpg?ts=1542462606','http://192.168.22.10/photo/14369303895bf00e80b1e28207310424-6.jpg?ts=1542462606',NULL,'','','http://192.168.22.10/profile/friendica5','http://192.168.22.10/profile/friendica5','friendica5@192.168.22.10','http://192.168.22.10/~friendica5','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzbQgk0okIu48OTsuvI/j\nnTYfKREWuHx0Rkr/44zKv9NGOJItxb82OoK/59o4l2mkt3REOwEzsSeAUe8VjkFU\nnfmjTTg8GqDCQ07Bmux1lVdtyAIhqr3uMraS8bODUMRFnDSX39rYYUH+h7oBZ44k\nW2vGvnWKh8BYPmV+hAab8TuJBODrZy1z5A1lc9CSSoZCiEOSvO5tGgiTBWW/CUoC\n6jR/BqZy/jlbiuED/t1Hn8dKCyPkAUppFhVJgSiSaysLeQlGsw58QYvD4WJXWbGh\nOzBDyR5hmSPuRuCxWD0GkpCnZGtkLhrJHAhYysAvqlc6Oo+6leRuLq2S05cZI1cL\nwsjapgnIvPCSIm7OkFlEimqveMNTOKNbcyIHaq8kL3ZyUYWuygVndL9AdUhIEAkE\nOROFlAyv0fC0tbBhnsJ/SifvEGYOaO4eRB1mvvY2R+JU4gPXLWbeNSNrn4zpTdIL\n0pwDJvLAv+tgeheBz6fNyKqETeclMEuo+GUs3nB8zeO2ZJXwzAgqMt5/Vr27v8d7\nk+Cer7ydUT8QTlsRGTAjaWicDFPLlH9v2v15JEaDqjtIJ9kUdAaj+BnR3+j1x86g\nSrJa5SV4kdu/hduRtIfnhKTpu/ZnxhQzkWuu6gWtjCpLzTuaHybnh69rSz7CKoFU\nXnqm6IVFII/ny2a7I1KrMFECAwEAAQ==\n-----END PUBLIC KEY-----\n',NULL,'','http://192.168.22.10/dfrn_request/friendica5','http://192.168.22.10/dfrn_notify/friendica5','http://192.168.22.10/dfrn_poll/friendica5','http://192.168.22.10/dfrn_confirm/friendica5','http://192.168.22.10/poco/friendica5',0,0,0,0,'','2018-11-17 13:50:06','2018-11-17 13:50:06','0001-01-01 00:00:00','2018-11-17 12:50:08','2018-11-17 12:50:08','2018-11-17 13:50:06','0001-01-01 00:00:00','0001-01-01 00:00:00',0,0,0,1,0,0,-1,0,0,0,0,0,NULL,99,NULL,0,'','0001-01-01',0,0,NULL),(14,3,'2018-11-17 13:41:24',0,0,3,1,'dfrn','friendica1','friendica1','',NULL,NULL,'','','','http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007','http://192.168.22.10/photo/21202845355bf01a84c5d33470288998-4.jpg?ts=1542462605','http://192.168.22.10/photo/21202845355bf01a84c5d33470288998-5.jpg?ts=1542462605','http://192.168.22.10/photo/21202845355bf01a84c5d33470288998-6.jpg?ts=1542462605','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAmQR1Wmtv2KMZ5f5NTJMf\nRfX+1KXfhCKZaDgtL8/Trtb1ZXLq0tlBVhm29MI1F6cxZFhNlFyW6GZCeZFKX3FP\n2pFw03sEBTo5PCLso18EEl9kXV9cXoBMzINI3jIGnJiawq9PfIw5142jFBLOxiDS\nc/iNG6iFbq2qHwiQJjtp61BCFivIMZaHXqvtroakggjBH3EbRx+rZfeqjB8MRqOc\npXIqjc0lrHk8QGdXeuUAWsL2qUqHVNekLBXPnRcdMT8BxUmtBj0ccZ1IICLPFEzK\nr6DtqH5kE+aq9IcoMIEDjUhnyOAvFda8TlxX8D5SMFbrfJZDTypDqXHnSxHUS0Rd\nX06tLJZxMgqHspkxp6nzxk7JGPHKQmU6N0uqQb+i7dFlgC8QRLi79a1x019dvpAN\nRwbhGnn/pEU9Kn1JbYTAI6irBnHnlAUkpxmwSzRx5ncbNbhbniMD2/39IV1mztUh\nAyc262/cRRJAu8pEsPvc/pSijIyfrxJGYqF/uUcS5gbrY+wCjpYaBdzFxQEcD1Aq\nvXQGxi3sMRY9b1FJ+f3UTB7D9kIBCbwUNOXCjDCrOKZN6nxPLpKnfFsneHleUHa0\n+MRzI/vX78jQ1P4KgxPIiSktfrZitBpyzCC5O4ytiwqF2E8Ei0zE6OL2gm8yv7tB\n00ewnSBHzIpdnS51XuxxmIsCAwEAAQ==\n-----END PUBLIC KEY-----\n','ce98c64de523350b56ee2d3e87a26aaf629a05ac414e1904bca31d58887a7a33','','http://192.168.22.10/profile/friendica1','http://192.168.22.10/profile/friendica1','friendica1@192.168.22.10','http://192.168.22.10/~friendica1',NULL,'-----BEGIN PRIVATE KEY-----\nMIIJRAIBADANBgkqhkiG9w0BAQEFAASCCS4wggkqAgEAAoICAQDuiykPrT/50Xyo\nm7tmXD0wA1uFK7NiRJLcDJzvSJQLOisVCULCmgN1v0/SMyxKHmunj4FNMH57Pg6f\n2rkdwobTzIzJUFP/a5XUcuY49uc369bgbUur8fTdscG/5iL9+ouClTLUAmt1Yn+3\niru8WzSZzDBScT4R6oRvXC0wFlJrjtlr8xSgD50U0TSxcmmD7VIjHGWaUM7Kdygf\ng/pTGtnDml94MVNYMnXoa3fChXQRrJ/XqLg+HUUbatiDJDH1spKzP3imsQ4FKxNa\n9gy7YJMBkmDoFs7A0RxJR4FoGMrBya1DIWV4HeTpF3mPra1Rnzt0UyPNwMejoCWE\n7L7h0SMDx6pdg4yYu7/xeCywkm0WzMPF9mgvK8ngACeOEbRusiE3EcRu556hQwqT\no5m/aJzKcJbvLrxIL+WaaEQq+cqQoNGPcNHuSXmw7K7cd3+rUy/fHSti535wTBNz\nGjlglWVhmb5PI5Z9kEI57pX652t1Sx9rV3CUaC+pmLDNWI/yoHRk5lqB41Iie3r8\nBtDAY5iFfkXFILCQz+x/MyR9xridci37KLpsoz6bBbmbvuk66uZRfp4hIvdg/bCC\nMoqIjIBjNT26Hw01fFSeij+OBJThSYvucwhuDRtWKpRaSY6NyS0cbTAiKQ8M14f4\n2i7yQY8cogAayfjD2SXinG1uRi054QIDAQABAoICAC77ob7AtNUTeaYL5kEm8bY/\nMwtrrA0yzGoi4dYPSXlcn5epF0kU5JGQeLxB7/s5OqLqFOGLJ55GfsLlZYiDA+M7\nao9MDv9DxWLuroGRv8C35r6VSE45fa0ckbimL0YuzsONd1FimJ+qItWXsZpLrHSO\nTwYt37fPpP35/bx26QzeOdyVJ/7OlHXBLsu0aSve1kqsESbvu4sNJQ3wBKHRrApm\noV8e9/drGOYKJLBfcJj6kxD63i79vNrFlJdfzadC4LoFSlIqlURXU5ya0a8mOk4Y\n8pVDyL0ZcqTMPKSwHV9FxaZvMXkTCj8OrJar8nMdFay3o1mnGqsTo9AmgQIhGvAG\nQMQDjdztd51lizRb4nepBG0BfbJ6qip85U+o8Bjjj4zU/f0QyozEStG71k8olz/F\nPcKUePjPD8Lqyg3uXJnV6PIEKJNyvANWgEVYttbgKOEN8JpQmmZJONoyhpH3EDl+\nJH72FUQLx/dZRqpmMD6X5tAd1hoab90XQeUQNHq6tHypaWatWJr+dX9mEm3tx9ep\nbLuy+ALXBjU0AqU0mihuj3OUMpz1ZlFG9AdVf757iFol8JsSy6JVU81NMc5L3Eqa\nBWD+RjsoKOlxOAIkTJlkh0WF0DvngPHfd6PQBMgejXZrcj/L74uSa9kWTm08ejM1\n3V86+xiGeo+2d9TENEhBAoIBAQD/rN7NzCiVWtOB7ZmX6Lu71ubtKUaXiotnURSg\nJGxM/Z7xfrV4sZuh0Lt+91IkhDVVPim8GslTNZDWzfIMBwNr4h2CQn5N2x2OtX27\nXyBYXtzGl0F0AyBRSa6w97AurB9F4c1JusV1nzjy23MF+fwEMo45Fx7GrAuKUrHJ\n/FhDwLT3ugOQKdnJqoDmrDf1XYclhg8QorseW1lX8hyUisTt3DvewTTcMaSgwEa3\nr+oO/j3fy0rZhf3bXK6TcDutRVm94te4tQo6rpnGDu08WhSyOQZK8wPDv61R1ZdC\nRW349oAWuO5/oEKuigGtN7ERSgCqcBuFIuUgyDJPpkP9aFS9AoIBAQDu2LhMNGjx\ntWwUYVKnPjyItn1XkiCAAVmxWt3AlKdUjNu0fENVjDUr+8R+6XKaXCo9HHvI30TK\nlsVfYoi6JhOLCIPWta6/Qm6B/3tGPPOOsZHzOUrCKdyj8Cy+SKkSCNETZ8o6js43\nbvrt9uhoupnhCWwjipD9Qrv7MJDEGBs2FVsXC23toNwcB0L3znWLtNEaYxwqy1Hd\nftFniSSugLnNOfwkfGhoL39fjbbkVjFMvOMu6aoIQj4RTu9yYMGIyciHJGddZTrq\nnxXHuybslo0arqbYjzulNMKe9mMLjsYag8e2rjFlsow+Q6CpmpsDOKkYUILKx1y+\nz1N2b4Ud/TX1AoIBAQC3w4hgYlzI/H8I472BccV9PPi9fO0//lQz7hLlB0jQDXow\nGOJV3VH+/AfHOfvQQzYSDpvwl1AcfmOcAGn4OxI6eEq9VQ1y6ApWiBvWkIiu+3+z\nPQPOXnDb/BmTGHOJGC1iDOmAFL3XzJkh9Ji3svVwDuYqInP8V6vzv3wJsVW/XMK1\nSv1EoM/oIqSDJ0URFigM0E4DpvLW3tFYZKwmF5dzXtepQzS7DvNElu49GDMik5nl\nQDiMH8JV6EeRsRkzcKUP1fs2xuiTROtBb3kT56r4bgQX2pLaHupz5xDQkRZ52rI1\norXJBWboDEkoNt8NjiLsXadqCaql5T5EATzc5iABAoIBAQCKJJzLrpB4JHdjfjrA\n8lUuuWXbjW/wuVc4JhcV+KSjWWkFhc2oIBTs4Ixw3vLi5qWjfOL3dnMiPXvgxGvS\nRo2NH5qpR6HPi0vBMpQJNt2jzX5dz+g2TuIHi7VFRV9MR/8tGx2zKr+I/k5x7hnT\n4QF5T+rUz6M2aC+zhA5m7I5ohIeP15N4Gk7UgzqveyEvcaBzg5laAwjRdDUHjiHC\nMD/GvF/idnYotDgWey+p91RCTwmTK6ClcDLX7fC+Fco6JIMv7tU+BnvCEcsWH1/O\n/PCV2ygzHvzfe5mJOXZly+k2krujJDL73/4PUSwOjJZVkaLzpjVPtWkmD2H1oWC7\nzKU1AoIBAQCmOZptSlnC9EciKKKpf7o+oLHGWzZ1dE0gqt/PMiSnVT47L3bvQar8\nkDj1WEHOvcnzc7wKFWSWPLC9z7hzbHG9JRQCOLRP4bHOOJmpstuysWGasJrUqMcy\nnt82Km7fpBFgCXnuGvqX0EVRfwSFf1KsrxpPstrUPrf9Jc9N0YJds+YFaPdKabzr\nBrbXTU791sH/PTEnu0NGh58f9QfdMnL4Erc0D386J6qMCdncVTjjcg+JYRGuRtgy\nxPgBCjDK1bJnGq7KPE8S5hNDWcdkNf7e9P48HdsQig39ZZhWMWSPolesbg29cUrI\nEyOTyS1giBSb5tm2OSranEiTj87Hbz7F\n-----END PRIVATE KEY-----\n','','http://192.168.22.10/dfrn_request/friendica1','http://192.168.22.10/dfrn_notify/friendica1','http://192.168.22.10/dfrn_poll/friendica1','http://192.168.22.10/dfrn_confirm/friendica1','http://192.168.22.10/poco/friendica1',0,0,0,0,'','2018-11-17 13:50:05','2018-11-17 14:03:08','0001-01-01 00:00:00','2018-11-17 13:46:35','2018-11-17 13:46:35','2018-11-17 13:50:05','0001-01-01 00:00:00','2018-11-17 14:03:08',0,0,0,1,0,0,0,0,0,0,0,0,'',99,NULL,0,'','0001-01-01',0,0,NULL),(15,2,'2018-11-17 13:41:27',0,0,3,1,'dfrn','friendica2','friendica2','',NULL,NULL,'','','','http://192.168.22.10/photo/15820583805bf00e7fd7909940374120-4.jpg?ts=1542459007','http://192.168.22.10/photo/43713557095bf01a87be90d132625601-4.jpg?ts=1542462605','http://192.168.22.10/photo/43713557095bf01a87be90d132625601-5.jpg?ts=1542462605','http://192.168.22.10/photo/43713557095bf01a87be90d132625601-6.jpg?ts=1542462605','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwMWwwjqXtfQmCzLQmZ+D\ntRVdtv1Vq6DdjC/+aEP3UKLpp0nzNcsfT3U8Kejs23o0KpC+EVFXuWZqvxyeHoiZ\n+w9i1roJf2eSLBVeAjiEmLbI7wSfLBu+iA1x+X6+d9wxxAgzM7KHIBOghVCDussz\n4AaojP4Dx3Egsl1w+1j/ULUNCvf1wq9KLMMgJlnemC4cHfv+ObcxdisPezjVD9sg\nnvRLKyv6i8gm8csDwaHtHP6VNxc0JnauU6GIxBrDmlnpKYGb3rl3WLSvuiyzJYrr\nzKESnFINFKRLCG3m548OK+reRBDmgYbsZFJ57FS6YTa63268IwwtlRbRs8n8N7Mi\nO0jAXhRyZKRim6lkykIUjwlmIKfS2xl38k1kg5VLfPwZYAhiG6+JMcBlyj7hKU+4\nN9FKKfLlxtRz/g2kh81eHWEOXblEohpR/GbAhMF8h/tkHM+ze2TAbyEK1A+UWlWZ\n3olMRdt/awlAd657XqGVukYUg++GdEGkVyeWcCV3CwscbhiFAqpV/TWh6yARultJ\nvij/UQWi27yFY1v4EAactGL/V+zrmQSduKGd7jpHJe2XVS4DGuw+ThiDQc8gamlG\ndmZcPkVxChFqGpxGKXOr8uFWbYUG4Cj3iA4iV8XOlGUIN8uFtbWX/VyVHGNGDmGg\n60osshOegUJTNz8OBkZspvsCAwEAAQ==\n-----END PUBLIC KEY-----\n','','ce98c64de523350b56ee2d3e87a26aaf629a05ac414e1904bca31d58887a7a33','http://192.168.22.10/profile/friendica2','http://192.168.22.10/profile/friendica2','friendica2@192.168.22.10','http://192.168.22.10/~friendica2','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA7ospD60/+dF8qJu7Zlw9\nMANbhSuzYkSS3Ayc70iUCzorFQlCwpoDdb9P0jMsSh5rp4+BTTB+ez4On9q5HcKG\n08yMyVBT/2uV1HLmOPbnN+vW4G1Lq/H03bHBv+Yi/fqLgpUy1AJrdWJ/t4q7vFs0\nmcwwUnE+EeqEb1wtMBZSa47Za/MUoA+dFNE0sXJpg+1SIxxlmlDOyncoH4P6UxrZ\nw5pfeDFTWDJ16Gt3woV0Eayf16i4Ph1FG2rYgyQx9bKSsz94prEOBSsTWvYMu2CT\nAZJg6BbOwNEcSUeBaBjKwcmtQyFleB3k6Rd5j62tUZ87dFMjzcDHo6AlhOy+4dEj\nA8eqXYOMmLu/8XgssJJtFszDxfZoLyvJ4AAnjhG0brIhNxHEbueeoUMKk6OZv2ic\nynCW7y68SC/lmmhEKvnKkKDRj3DR7kl5sOyu3Hd/q1Mv3x0rYud+cEwTcxo5YJVl\nYZm+TyOWfZBCOe6V+udrdUsfa1dwlGgvqZiwzViP8qB0ZOZageNSInt6/AbQwGOY\nhX5FxSCwkM/sfzMkfca4nXIt+yi6bKM+mwW5m77pOurmUX6eISL3YP2wgjKKiIyA\nYzU9uh8NNXxUnoo/jgSU4UmL7nMIbg0bViqUWkmOjcktHG0wIikPDNeH+Nou8kGP\nHKIAGsn4w9kl4pxtbkYtOeECAwEAAQ==\n-----END PUBLIC KEY-----\n',NULL,'','http://192.168.22.10/dfrn_request/friendica2','http://192.168.22.10/dfrn_notify/friendica2','http://192.168.22.10/dfrn_poll/friendica2','http://192.168.22.10/dfrn_confirm/friendica2','http://192.168.22.10/poco/friendica2',1,0,0,0,'','2018-11-17 13:50:05','2018-11-17 14:00:04','0001-01-01 00:00:00','2018-11-17 13:46:35','2018-11-17 13:46:35','2018-11-17 13:50:05','0001-01-01 00:00:00','2018-11-17 14:00:04',0,0,0,1,0,0,0,0,0,0,0,0,NULL,99,NULL,0,'','0001-01-01',0,0,NULL),(16,4,'2018-11-17 13:44:15',0,0,3,1,'dfrn','friendica1','friendica1','',NULL,NULL,'','','','http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007','http://192.168.22.10/photo/17505033475bf01b2f38ff6177578340-4.jpg?ts=1542462605','http://192.168.22.10/photo/17505033475bf01b2f38ff6177578340-5.jpg?ts=1542462605','http://192.168.22.10/photo/17505033475bf01b2f38ff6177578340-6.jpg?ts=1542462605','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAmQR1Wmtv2KMZ5f5NTJMf\nRfX+1KXfhCKZaDgtL8/Trtb1ZXLq0tlBVhm29MI1F6cxZFhNlFyW6GZCeZFKX3FP\n2pFw03sEBTo5PCLso18EEl9kXV9cXoBMzINI3jIGnJiawq9PfIw5142jFBLOxiDS\nc/iNG6iFbq2qHwiQJjtp61BCFivIMZaHXqvtroakggjBH3EbRx+rZfeqjB8MRqOc\npXIqjc0lrHk8QGdXeuUAWsL2qUqHVNekLBXPnRcdMT8BxUmtBj0ccZ1IICLPFEzK\nr6DtqH5kE+aq9IcoMIEDjUhnyOAvFda8TlxX8D5SMFbrfJZDTypDqXHnSxHUS0Rd\nX06tLJZxMgqHspkxp6nzxk7JGPHKQmU6N0uqQb+i7dFlgC8QRLi79a1x019dvpAN\nRwbhGnn/pEU9Kn1JbYTAI6irBnHnlAUkpxmwSzRx5ncbNbhbniMD2/39IV1mztUh\nAyc262/cRRJAu8pEsPvc/pSijIyfrxJGYqF/uUcS5gbrY+wCjpYaBdzFxQEcD1Aq\nvXQGxi3sMRY9b1FJ+f3UTB7D9kIBCbwUNOXCjDCrOKZN6nxPLpKnfFsneHleUHa0\n+MRzI/vX78jQ1P4KgxPIiSktfrZitBpyzCC5O4ytiwqF2E8Ei0zE6OL2gm8yv7tB\n00ewnSBHzIpdnS51XuxxmIsCAwEAAQ==\n-----END PUBLIC KEY-----\n','ad991e9a63e538162a806e598615bd6e016a1cc379fd547876509ffea342a4fe','','http://192.168.22.10/profile/friendica1','http://192.168.22.10/profile/friendica1','friendica1@192.168.22.10','http://192.168.22.10/~friendica1',NULL,'-----BEGIN PRIVATE KEY-----\nMIIJQwIBADANBgkqhkiG9w0BAQEFAASCCS0wggkpAgEAAoICAQDB+mgwLQt/Qrwh\nYT11B6x0XioNWhGQCILN8D7yyFt/WNQ5x5vKM2Q9/2+OcG4smKHWbjTLjtVIPyZx\nVkKI1GK72a7mclLir3nQKQghAUXZ08JVWkmO+Jo7OA2Z7YFiZRoWsX/e79XlXiXY\nggj4GuojY7GhLwz8rqJUynqn4+O+oISt5rPNdIaMhWMI3cFIG63+aSBz57nbch4P\nY/5MzQ0ItxAWZ5naN52EtexA3rXsR/b+G4kH4JEryk9vu8w2SBE+ANI75KiMdZ/G\nH8PiTl1wZosYCU+n/Z4d2YovwmQExIoPr+2BBZXcb/AbYgIjxuWjkBinRQK5MCmt\nr/GhScbsT0isSo0IuJgeCEig+DY4KO4lVYxXbwxYX7yW3lep8Yg5uOtiRGbsqbUi\nRIqn5uJFw8YXjcnjpkvf2/w+PQAxuXmxZIJq7ijN/vndxrorw5OAm+oo32gnfjSi\n7AMzX9dtLsMtZVSv3G4DYafbq8wU4hH96bAdHXdtbPldEGUhlqq+oUQsEqu6RAUa\nt6BA1B6LN7qf4quiIrn4+y0SIDAqW+CqYpXl2H43yCKZpbYV97yqWFrnDzjyMmGx\neHN1dcPxW7aFN5VrTrwfsaESd+fkkYs5ytXgT02jSbzE9DN2ivL3X6UDMY+gNalD\nFLX2RCQDUcNHU8wr3DinFSho21ys0wIDAQABAoICAFxFBqZT5vIkBmVCYf93JPs9\nh3dObqg6xC29p9PIpm1PDbRmVJ68D2TGSoRQyrd/6wua5JYnXSC+mUS0KXX4wPZm\nN6H6o56cpa70tZ8tgdJ5vijnh7HwYzzkDuQ3a6IoQV6mFBMxtmcif5IbWLTb6J/o\n3iezv9O6JhF7NxkBd+XHaRVndgO2+AGDuXYQNc5dDEjGLN+1TF0sTUw43lAeAaMx\noP9nTHHWnqDwAG9jANph6QU6h9YtZiCUXXDiveLcKQd7UIWY4OvfT57ooT7W0++R\nd3x5gWCBbWL5hZfuObFi4+FOaAVFaOGwhWAhIK9v/u/srS1z0DXSySCLXr6/31TY\n6RRjcjqJw17kyVmCz4kEoxicGpczuqslymC1W7KA8D8b8Dk2ExjQLxWw7vEa5V00\no5wCRIqmcMaFjtK8lO7R8eBQwsHRv1hNcWP62Ufnn0je7If7AqkXuqKwy0nC9iUX\nXCJlgvWj1sugcShM3Q8UNYaPfrxLLTlSOSzp036ACKkTqAha7EjDLQztpeLZpZ0U\noGfjPgb1yMPrZ4CxfuF4kIedbINY5Bpid/cd9ug+hR42+eJODNNgODhMmPJwyT2q\neWV4X+fAl+q+bs3Ohwvm0LikDXlt8wKjThuNLfxCvu7pVQXJegBgv/0xQC+UgtfJ\ndOWNp7/MSLlHM3yLy4hBAoIBAQDfpYYZFdux3nj5B5fKO413aiRl+gCemF/m+S8B\nLJshUSPsyQYvp3oYMXxAgkVgFaGQSeq+QKHniRzB7knwRgoRjcRNvS8esQZTp3+l\nlx1xLquB1UZUxmH46VHY/yAEq669AraQQHJMrcufZGO++RO4BDOoVXEng5eXj7cI\nYFVNWP5073Hn9ULcaKJqw2DLAytpjxM8Oosi54dag+w0EDcRRjjTPfhd1vVOJc/3\nlbpkXPRCM1g/AF2tyiYol3U1hkUdcvhbjFgFK4JtHQIbZ31DSdXm1W8HHWnJTj7P\njPpCBS724PkVgyN6mHW31zgfgUKq/3OEFRO1A2Uka4d9K7CxAoIBAQDeCiZFYfkC\n/2iFBzRn9qkl7XfNbs2r9cc6nnbUDLDtyd2TpC54JJyaarfNgAQ87+LoXyYLhz7c\n50fzyscnugt7TvXapmawbvnvuuDDdfloISD+xgJ9Z8ccUIk7gEkLQLNQHzdGS2pc\nBz1EYk54jEiU4vuiOndSns3wMjEme1fkz8uaBHJnHWGlvpkX1vEnNU06V6jvYZV/\ngQhl4loX0OTb/O++1yhY8IQzT/ZJxqHK8PmaxuzfsxMa6D9HX9gH6M59ToFlwV4L\niM1OB2/jczpe9BZQYePX/ijclJI8rq+FhfyA+aeLnkzZSF1oMPh5qLZE32UX0nHY\nErzwnddWu/bDAoIBAQC4zwM8/38IQJsezlN0XjnMj/1791dDtw6owwlAoyeeJHrX\nVFa0UmTmUR4oAH5ro/RaU3qTtL0Vo4wMBWk8D+SKFOg+hTLG3eoofqVQpMtDmBlJ\ntH/l1flnwwZLlqdStLw0nGVYVqkdDBDTqhVy3kiZK3+0fsZ+rJM8Pxo05cYXoI7E\n+ojZ8SZLFHwCVWlK2VeqZvyyLH6FXWXQOmuZqjyXHbwfc3olsVgMN9re8O+Rt+5w\nNhWaGidPUViu+ll03XuHllX88MBbpVSl7e6rzp0IWZ9UnNKewoOEQhBNWmYC4F2q\nzMWILVHIIOxF+qb6Acqhm25Nm00pq6CMs/7GRLBBAoIBAD95aU1mX5gyyX9V+u5J\nfjtgcmIg7dzdyxF/4XpnEmE31wbw5XPlC3u9TEQL96ov7Y7+PFMJW7gsyc3wxxQd\nRFEA1pml/i8r2nlk1AIshJr29Ya/tlCBTVNT1pdS6g60dU5PTi7jOkmKrEITVFlz\nyP//D25mBlxxF3A1+QUGN68qlAq4gLfnl1WZcgx1nsTVoPkvvBSKsgEcMvllRtoO\nFo6o9SR6P4eFYlWE42RdyzzHvKM5gNfGSozjnctao9hG/limC6m6KJdliUNoLt03\nwJUKdCKQiWDiwG2mb1O3oGesUO3R8Mqh+1gWLtWtQisNRuXTcwPnXjIl0St8A+ZA\nn58CggEBAND8Vi9SR9qAfZyWrNnEe0kj1BbU9qN0YM0YXpoprilTvSfs8dvaHyYn\noFPlzuOMNHQaIhNljACffDbpp6LFIIwCVH9vmtX9+Q6hXtPh1TgLLWkX9QQnhmQP\n62qg1WcySN3rLUbXYV4kcM6CvkMzBd/7W32dXI9KZsVCaq1oCT2OhVYe9qaPeFui\nycHVe40eWe1mDwnVbuIe+VjiudKB/0kFWIJRdsn8JQcKKnVOaNhdbLrDGTWRf/bE\nfdZXG/i9FEilsZFomB6hgfzWf4CwqSD84kBc4DkZb/5PBs6JTr7bFbWNSdgxh4Ry\ncPr8/as1WQOhv7qi698ewvIuKmXOG54=\n-----END PRIVATE KEY-----\n','','http://192.168.22.10/dfrn_request/friendica1','http://192.168.22.10/dfrn_notify/friendica1','http://192.168.22.10/dfrn_poll/friendica1','http://192.168.22.10/dfrn_confirm/friendica1','http://192.168.22.10/poco/friendica1',0,0,0,0,'','2018-11-17 13:50:05','2018-11-17 14:03:08','0001-01-01 00:00:00','2018-11-17 13:47:38','2018-11-17 13:47:38','2018-11-17 13:50:05','0001-01-01 00:00:00','2018-11-17 14:03:08',0,0,0,1,0,0,0,0,0,0,0,0,'',99,NULL,0,'','0001-01-01',0,0,NULL),(17,2,'2018-11-17 13:44:17',0,0,3,1,'dfrn','friendica3','friendica3','',NULL,NULL,'','','','http://192.168.22.10/photo/12242958235bf00e8006f72987476580-4.jpg?ts=1542459008','http://192.168.22.10/photo/10942403815bf01b31eec59540800317-4.jpg?ts=1542462605','http://192.168.22.10/photo/10942403815bf01b31eec59540800317-5.jpg?ts=1542462605','http://192.168.22.10/photo/10942403815bf01b31eec59540800317-6.jpg?ts=1542462605','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvAs4TR4AI+nlBt8d7BHD\nViq6w3UslHqURRUo0+sfAE5RL45im2z+ryPag1K5dbs5pcoa6hfk9+EREgoWlwnX\nX/8UdkvkoHE6/JDFimuaK7pequwUQbQoOXkkBAyPtN8YhjfGM19CI5FIVByY+O8p\nO/lGls1h5bxYEIgjA0tTDw5FuhPtiw9SJAPtQs5Gueoe9y7VwXNLNenKI6r6/Kfo\nzgYKJS98ibCllMiDIY0ixZZqhsh5+oEAsGPaNtQSgw09fWyyDNUKOenC4NhhMWsY\nBtTgDOPkM1AgidQKny7wtfo04YCn13SZuU6cWXqCx2pTgxLpBRgNbfkf6/DerVEO\nh2/Fxx2oMrRqLox+kAj03zrKnto3n5cYASlmfeEmUBHtjc/qPbuEzm+FEJKTXkrg\njt0+xzTQxPr+oFMinACdTMu6J4lB6dGCJxbx/Dx6FcRKymUYGdLvZWITfKZAikRh\nX8Pll3bFExOk5ieOdBLRt5ujGHuMbV204qpUsL0kDU9/4aMnpJei4EZuw21ovDH1\nVchVjJS4fzsJkaDfA81+83ADHXU10+UJ7PXAq7U416nC/dr30Gp2cxYb1qELYe4W\nGXE9k857z1o3BevJi4smy0FeydVVEVJ/1SPhPcdKHIA6sfP+TzuvWk7zK+xDwdyb\no4/nVNHD26NC1mVTTAjR7t0CAwEAAQ==\n-----END PUBLIC KEY-----\n','','ad991e9a63e538162a806e598615bd6e016a1cc379fd547876509ffea342a4fe','http://192.168.22.10/profile/friendica3','http://192.168.22.10/profile/friendica3','friendica3@192.168.22.10','http://192.168.22.10/~friendica3','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwfpoMC0Lf0K8IWE9dQes\ndF4qDVoRkAiCzfA+8shbf1jUOcebyjNkPf9vjnBuLJih1m40y47VSD8mcVZCiNRi\nu9mu5nJS4q950CkIIQFF2dPCVVpJjviaOzgNme2BYmUaFrF/3u/V5V4l2III+Brq\nI2OxoS8M/K6iVMp6p+PjvqCEreazzXSGjIVjCN3BSBut/mkgc+e523IeD2P+TM0N\nCLcQFmeZ2jedhLXsQN617Ef2/huJB+CRK8pPb7vMNkgRPgDSO+SojHWfxh/D4k5d\ncGaLGAlPp/2eHdmKL8JkBMSKD6/tgQWV3G/wG2ICI8blo5AYp0UCuTApra/xoUnG\n7E9IrEqNCLiYHghIoPg2OCjuJVWMV28MWF+8lt5XqfGIObjrYkRm7Km1IkSKp+bi\nRcPGF43J46ZL39v8Pj0AMbl5sWSCau4ozf753ca6K8OTgJvqKN9oJ340ouwDM1/X\nbS7DLWVUr9xuA2Gn26vMFOIR/emwHR13bWz5XRBlIZaqvqFELBKrukQFGregQNQe\nize6n+KroiK5+PstEiAwKlvgqmKV5dh+N8gimaW2Ffe8qlha5w848jJhsXhzdXXD\n8Vu2hTeVa068H7GhEnfn5JGLOcrV4E9No0m8xPQzdory91+lAzGPoDWpQxS19kQk\nA1HDR1PMK9w4pxUoaNtcrNMCAwEAAQ==\n-----END PUBLIC KEY-----\n',NULL,'','http://192.168.22.10/dfrn_request/friendica3','http://192.168.22.10/dfrn_notify/friendica3','http://192.168.22.10/dfrn_poll/friendica3','http://192.168.22.10/dfrn_confirm/friendica3','http://192.168.22.10/poco/friendica3',1,0,0,0,'','2018-11-17 13:50:05','2018-11-17 13:50:05','0001-01-01 00:00:00','2018-11-17 13:47:38','2018-11-17 13:47:38','2018-11-17 13:50:05','0001-01-01 00:00:00','0001-01-01 00:00:00',0,0,0,1,0,0,0,0,0,0,0,0,NULL,99,NULL,0,'','0001-01-01',0,0,NULL),(18,5,'2018-11-17 13:45:32',0,0,3,1,'dfrn','friendica1','friendica1','',NULL,NULL,'','','','http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007','http://192.168.22.10/photo/18858997325bf01b7c29d79163158635-4.jpg?ts=1542462606','http://192.168.22.10/photo/18858997325bf01b7c29d79163158635-5.jpg?ts=1542462606','http://192.168.22.10/photo/18858997325bf01b7c29d79163158635-6.jpg?ts=1542462606','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAmQR1Wmtv2KMZ5f5NTJMf\nRfX+1KXfhCKZaDgtL8/Trtb1ZXLq0tlBVhm29MI1F6cxZFhNlFyW6GZCeZFKX3FP\n2pFw03sEBTo5PCLso18EEl9kXV9cXoBMzINI3jIGnJiawq9PfIw5142jFBLOxiDS\nc/iNG6iFbq2qHwiQJjtp61BCFivIMZaHXqvtroakggjBH3EbRx+rZfeqjB8MRqOc\npXIqjc0lrHk8QGdXeuUAWsL2qUqHVNekLBXPnRcdMT8BxUmtBj0ccZ1IICLPFEzK\nr6DtqH5kE+aq9IcoMIEDjUhnyOAvFda8TlxX8D5SMFbrfJZDTypDqXHnSxHUS0Rd\nX06tLJZxMgqHspkxp6nzxk7JGPHKQmU6N0uqQb+i7dFlgC8QRLi79a1x019dvpAN\nRwbhGnn/pEU9Kn1JbYTAI6irBnHnlAUkpxmwSzRx5ncbNbhbniMD2/39IV1mztUh\nAyc262/cRRJAu8pEsPvc/pSijIyfrxJGYqF/uUcS5gbrY+wCjpYaBdzFxQEcD1Aq\nvXQGxi3sMRY9b1FJ+f3UTB7D9kIBCbwUNOXCjDCrOKZN6nxPLpKnfFsneHleUHa0\n+MRzI/vX78jQ1P4KgxPIiSktfrZitBpyzCC5O4ytiwqF2E8Ei0zE6OL2gm8yv7tB\n00ewnSBHzIpdnS51XuxxmIsCAwEAAQ==\n-----END PUBLIC KEY-----\n','076eff03665df26450206ca0cd89fd1b41ace1252fbc59af5e8b906a1b5970c8','','http://192.168.22.10/profile/friendica1','http://192.168.22.10/profile/friendica1','friendica1@192.168.22.10','http://192.168.22.10/~friendica1',NULL,'-----BEGIN PRIVATE KEY-----\nMIIJQQIBADANBgkqhkiG9w0BAQEFAASCCSswggknAgEAAoICAQDXP0gvhHwhzGKy\nrElXyR8p03yXqSeoDSX4HKULG/P50XKt6+LOjwy425e6Q1bX+Fcl7r2NHyFN5Lbt\nxehAae1CvrD4oTDCZYXC9oDPhtTH8nlnQT2y3v0BOaASTHkt4j4gLYDE00PQJH/b\nEDxMVER/GLjvUm+bBDnfApZTOz1tbzGQW53B/nYA2nsHgitX19jv19o5+3RYvXHf\nIuMGUc1eO5ZPtsSC9t80BZbfkf5zjkNQdvmbEHAwAlkF1H+ZLCSvZ33flqkinAaN\n71rjwnAsvfPEK+AjYptwpNRUFyo3ShW9Fu4EI2w5i1jlMhhH+OwGXvY+xpdHPxkS\nT1zqeaowDEIvg9l5j2HQAwKLUglXvg/nq5qDEr8cTw01Yx5hprqpu0gt2B8U8XSV\n98894I1HH1ZsNxMhKx/W8psMw70ycA3Hxpq/dvURFFK37hL+XhStQvq5IiH3wcdp\nNyQlQnBhAJ86kEsEfq5l5aP/TAluPe9QvfrkIgPbyaZqECZANbpDzxM0ndqpowtH\nfot9Hs0zZI5oldXXW0v3EIJ+J8nPXjQJWZKd6jw5l9u9XWIW3ikfWsqQuo+Cbpqm\nLX+68J/u+mp0I6lzkHWjQ9KFVLlx+cRTQALVd5MuQXddFaiiGYzeKym/5MqOCjNE\nudS5sievz2xw9LjBXSIvO1qdVWOSwQIDAQABAoICAC1ew2JwtJGTOUKcGiGM3Sq9\nz0dQenFrxBMWRpue2sBPq7KJRBdyA6Z7cvHp+8YuLIBsYDv80dJPYVehHaFmMoKd\nG0RtBZAUQiukNeaIbxVuQLTJBa5MXlwBv4Hb6LcJNzslHD1goqye5OxR8cPNB1sa\n5PBdGfU84M3nB7Snif0lMPdSuGAJuOnZI5GjmGs9rhZwEymhnRaPaA82lU/hsj4o\npThMOAO68bVPcEvTxCSrWfj9+wL6ZgtYk1ctQXAR4/GtCNU2NpR6+s60Ix5a/7YO\nm/E/plEPGeCWfcLz1wwsa4Sd7rGknc1LWAOHmaKiD24QWitFROHZpPk9DULHPl3b\nYSqDbYXTcBsroTF+RUolhtAzcS4ijDBRwE4cXShjgYLtiQbK1nowbQQni8apvYAf\nHoMG86TdBvvwTLfgT1wkKYhyPrmC1LXyCignkB/ZGxiI/6FZVYiyXs8zFrIoEb8e\nhOZ8XNmLFNFzDQIZay4dQe7Y4AsLt97l4BLm6wgCwEWXOeu2maiBIj6y+uA67f4s\nBj8FCJWP2ky6v2IQGh6V7BlWE+iK57GVWk/zB34y+AUTkXIi5hp/khcU5YjMYaqz\nfG8DpSd+0X71pV5cQKVG58a2uLI0EzWxpCtNlM6ab1g2CKY54sKYVb+D9ZwW4Bu9\n2zoCqUOY26PSfS+IcGEhAoIBAQDsl/zmeZ1E11A1aLGd6pLhT+nv75aJPBR2ItG4\nPt4JxLJ2tj4BIv62ZOCV/Kf5hI3kIC1f+5Op8Zd3FudxDfWfyNRXnHZq8CWh/vao\ncFq8bR+Q4l928LS3XjpQ9nSyWRo8Cu/cfMnUQAYh+3iAWNypmxiIfYET+X0c8Rew\nrana0qirweUuxQf8vmlRZgcdFjU6JGFHmBF4RdQmctKVtHqSIolkEnFXEQWhZEiS\njFgrCJ63nC63p6okVgU9QRATsDoR8xtImOk9BB9Cbi8GCqZxqKUt1lHtqp2zmAcr\nkZICewhR7Tl5+ctcp7TV/buu28+Ofodeyaq20/A78i/Yn6m1AoIBAQDo5w78QdpF\nnN8i4M6Oq9OGQyDKbjiiYCywnZh4l0y/D7ecHZ/bx4xfnvySRC6wSal3ubVOY1oM\nLEQEffPvVJurNiaybYS6XQsMU1f6k2q3NUrUrDEHZBNqV10LpucIU+2M3zdeYr7p\nLG1697Xu1vA7fG6RDt0vRRFKP6qtfd7IKegqeuDmXhucr9TZwrNQXDP7aNK5sl1l\nTlNy0yFCBaP2+cFykW8zWrW0MsozGxsN5GvQr5fI2/VkKjCnXaiRDtt4XTUy5x5v\nACQ2FzUH8kKNUIpCEkFnCtDhmigup/qk6frQENJs323IChnPXBZt0HEjCbZ6Cc6F\naDcZx1kI+rxdAoIBAGNH4CMi02Do7UqMNURsA9iyfRtnMYdDA98S+2hSUUBOHwl7\nrgcyFSqaqDeoPyCQhC4/ZmsJmcxNid66aMJjNjgnwRtGl9aGEXSqFf1WsGyzafSV\nWbQCjAMKcnQ5B30zsLOTb1XZs6PyfeBSsx1ArNArOh9Ecx7bqam0bdmA9m7RyV/R\nzIdUvOZNTMqQgtms0Qcl7wBpCqOqwbykoEOb6XdbMMYiixcbGH7CI0YDyJe+VUP9\nMQl2PQpkYmxy2fk5ERUpK8DKEc295hQtQmRJodC+ERpr/hM6blTHrfKVcmzCDhq6\n7kyGCtVFtre5csGMkctcwxd+jrmLtBqjpXpEfaUCggEAdKYFY2K4J9WCDL37tolo\nz/4fFkROKUVyHKNSElP1JFyC4bYUsscnD11ZswhjOfgq4MQqgrBQEXi6OGW9H0mJ\nDh95EjS4HX8sYWf80Iu1Dz2p1QrJI6KD9ub6uzNE0271s3C5EpTyeWa/Dq+yd4U/\nnQuddRm0vlAhcMaifXJlemtC1MPmkHrh6YBHYymZFc6YWnsNz+P90xd/xCrqpV6d\n2L0Onoso3te32iD2FNKmojadqU/I/djs9tYKuEi4fK6sTYSheHU5UO8JM+47qVc0\n7gJAvQbXqvxH0jabmYKYjrCB5mQGgHEHUwF8G9dLhIS5pYrf0g/HWBnyPv8RIOY0\nIQKCAQAgxz/lpFvvC4ww9TjSN9BdW0wtd6nDMpl7PGuVgr1tvsWGJs92SGhijFUb\nPlNugTpPsLyFu1lyahhssoPovAYzmdWCUfaQLc/2Ft/FsTvpVkLbdYAwYclVHWC9\nhoFgN+AHCbEAeus4bWoeUCRa/iJqqJoE0YMeq3r/emqS09I32hKJCjr+f8iGIDOA\nc3a5D3iJsZiswIZjOZi2Afnc4zfhRgRybT3QgtZPUmNX69XKSSnS8+rk7+c6pG3Q\ntC2UCoef5gfbOVR/A5bN/2YJjGIgWnBi2SbldwKiCuB+xRtngSBwE6AMJLSbVJxw\nEtYXfSC6tARyRSgYLEKRCN97Aiur\n-----END PRIVATE KEY-----\n','','http://192.168.22.10/dfrn_request/friendica1','http://192.168.22.10/dfrn_notify/friendica1','http://192.168.22.10/dfrn_poll/friendica1','http://192.168.22.10/dfrn_confirm/friendica1','http://192.168.22.10/poco/friendica1',0,0,0,0,'','2018-11-17 13:50:06','2018-11-17 14:03:08','0001-01-01 00:00:00','2018-11-17 13:48:15','2018-11-17 13:48:15','2018-11-17 13:50:06','0001-01-01 00:00:00','2018-11-17 14:03:08',0,0,0,1,0,0,0,0,0,0,0,0,'',99,NULL,0,'','0001-01-01',0,0,NULL),(19,2,'2018-11-17 13:45:34',0,0,3,1,'dfrn','friendica4','friendica4','',NULL,NULL,'','','','http://192.168.22.10/photo/97971161215bf00e801fdd7464746900-4.jpg?ts=1542459008','http://192.168.22.10/photo/34785303845bf01b7eb2f18737560971-4.jpg?ts=1542462605','http://192.168.22.10/photo/34785303845bf01b7eb2f18737560971-5.jpg?ts=1542462605','http://192.168.22.10/photo/34785303845bf01b7eb2f18737560971-6.jpg?ts=1542462605','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtOfQNRnGbzBy9Rc7gLAI\nrB5Fp2SBFfjRnd5g99HKWI3Amz5BXdcOWsgikVtwSVGDD8TGPj56qIlp+ctfYkPZ\nn5QSGfA3VS5eqWNfE9aG3XZAO7M7x2pKVaf79ciuYK0HQrmCeClB844x8rXDmW5m\n1k6Any22lpXHdDY8heR6O/uLIG9i/eRiD8tFMY3ATVkJ4MF5TY/m0ZGhHAMfK9dm\nkJzNvJc0cYe6kBmpDDmlJwObo75NfPBi3bqTaIZvTxda6lgWcuv/J1IR0fLhW8IJ\nbbXcd/fSNHV5zdqPmZsiu4+nx1xf+40J1v9+uKCCxH6UlUR9HLcCpYH6PDmoEkRk\n2WVPsU2+crVbY5cbNx08LVe6ZGl/onhTM35t2JBpo9ClgTSmpgEkRQsBebWNEKn3\n/y7Ib+/IywdomRUTgXVtKt5+90FdEhNwrba2CyD3dFW/CQCwx+363juCZr16EiKx\nbG5VJ1aIN8/My9feB9fklqyCpy0vkMI9NptQbtKntueETeLTqKlZ5uJJZJtd6S7z\nrTAd6vx5WLOMYlfQF2K7MVCwYUVfcIoWKxAg3SU+5sIG+cSrreT67wxt6k6sEEOw\npRZn3qZ13vPpO1mJelhqQeDZYutywYHjNj+L5TjCIZqIS129MZbqDJELkjTmckRV\nAZmzTHqCDXwd70IddYvuuJMCAwEAAQ==\n-----END PUBLIC KEY-----\n','','076eff03665df26450206ca0cd89fd1b41ace1252fbc59af5e8b906a1b5970c8','http://192.168.22.10/profile/friendica4','http://192.168.22.10/profile/friendica4','friendica4@192.168.22.10','http://192.168.22.10/~friendica4','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA1z9IL4R8IcxisqxJV8kf\nKdN8l6knqA0l+BylCxvz+dFyrevizo8MuNuXukNW1/hXJe69jR8hTeS27cXoQGnt\nQr6w+KEwwmWFwvaAz4bUx/J5Z0E9st79ATmgEkx5LeI+IC2AxNND0CR/2xA8TFRE\nfxi471JvmwQ53wKWUzs9bW8xkFudwf52ANp7B4IrV9fY79faOft0WL1x3yLjBlHN\nXjuWT7bEgvbfNAWW35H+c45DUHb5mxBwMAJZBdR/mSwkr2d935apIpwGje9a48Jw\nLL3zxCvgI2KbcKTUVBcqN0oVvRbuBCNsOYtY5TIYR/jsBl72PsaXRz8ZEk9c6nmq\nMAxCL4PZeY9h0AMCi1IJV74P56uagxK/HE8NNWMeYaa6qbtILdgfFPF0lffPPeCN\nRx9WbDcTISsf1vKbDMO9MnANx8aav3b1ERRSt+4S/l4UrUL6uSIh98HHaTckJUJw\nYQCfOpBLBH6uZeWj/0wJbj3vUL365CID28mmahAmQDW6Q88TNJ3aqaMLR36LfR7N\nM2SOaJXV11tL9xCCfifJz140CVmSneo8OZfbvV1iFt4pH1rKkLqPgm6api1/uvCf\n7vpqdCOpc5B1o0PShVS5cfnEU0AC1XeTLkF3XRWoohmM3ispv+TKjgozRLnUubIn\nr89scPS4wV0iLztanVVjksECAwEAAQ==\n-----END PUBLIC KEY-----\n',NULL,'','http://192.168.22.10/dfrn_request/friendica4','http://192.168.22.10/dfrn_notify/friendica4','http://192.168.22.10/dfrn_poll/friendica4','http://192.168.22.10/dfrn_confirm/friendica4','http://192.168.22.10/poco/friendica4',1,0,0,0,'','2018-11-17 13:50:05','2018-11-17 14:03:08','0001-01-01 00:00:00','2018-11-17 13:48:15','2018-11-17 13:48:15','2018-11-17 13:50:05','0001-01-01 00:00:00','2018-11-17 14:03:08',0,0,0,1,0,0,0,0,0,0,0,0,NULL,99,NULL,0,'','0001-01-01',0,0,NULL),(20,6,'2018-11-17 13:45:59',0,0,3,1,'dfrn','friendica1','friendica1','',NULL,NULL,'','','','http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007','http://192.168.22.10/photo/56404448515bf01b9730801345691622-4.jpg?ts=1542462606','http://192.168.22.10/photo/56404448515bf01b9730801345691622-5.jpg?ts=1542462606','http://192.168.22.10/photo/56404448515bf01b9730801345691622-6.jpg?ts=1542462606','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAmQR1Wmtv2KMZ5f5NTJMf\nRfX+1KXfhCKZaDgtL8/Trtb1ZXLq0tlBVhm29MI1F6cxZFhNlFyW6GZCeZFKX3FP\n2pFw03sEBTo5PCLso18EEl9kXV9cXoBMzINI3jIGnJiawq9PfIw5142jFBLOxiDS\nc/iNG6iFbq2qHwiQJjtp61BCFivIMZaHXqvtroakggjBH3EbRx+rZfeqjB8MRqOc\npXIqjc0lrHk8QGdXeuUAWsL2qUqHVNekLBXPnRcdMT8BxUmtBj0ccZ1IICLPFEzK\nr6DtqH5kE+aq9IcoMIEDjUhnyOAvFda8TlxX8D5SMFbrfJZDTypDqXHnSxHUS0Rd\nX06tLJZxMgqHspkxp6nzxk7JGPHKQmU6N0uqQb+i7dFlgC8QRLi79a1x019dvpAN\nRwbhGnn/pEU9Kn1JbYTAI6irBnHnlAUkpxmwSzRx5ncbNbhbniMD2/39IV1mztUh\nAyc262/cRRJAu8pEsPvc/pSijIyfrxJGYqF/uUcS5gbrY+wCjpYaBdzFxQEcD1Aq\nvXQGxi3sMRY9b1FJ+f3UTB7D9kIBCbwUNOXCjDCrOKZN6nxPLpKnfFsneHleUHa0\n+MRzI/vX78jQ1P4KgxPIiSktfrZitBpyzCC5O4ytiwqF2E8Ei0zE6OL2gm8yv7tB\n00ewnSBHzIpdnS51XuxxmIsCAwEAAQ==\n-----END PUBLIC KEY-----\n','532811c29a1067f15bf4868ad3563bafcc2e9df33d775ffa722f0cb0beb7d374','','http://192.168.22.10/profile/friendica1','http://192.168.22.10/profile/friendica1','friendica1@192.168.22.10','http://192.168.22.10/~friendica1',NULL,'-----BEGIN PRIVATE KEY-----\nMIIJQwIBADANBgkqhkiG9w0BAQEFAASCCS0wggkpAgEAAoICAQCmA+tdMxIUX19t\nXDvk1ZM2B4H4HrdgqXWhX8kIbclia9HiDB3gZwq87/3Wkblo+SuFxZvspPmr6T7u\nRhpv4A0epvfgWtZQIDER8Zvy/IxvNsB5C5XOeaHbN0R0imvMcJZWTYJIAeBT9Q9K\npK3klQBILZOR397UhsmsoJ99O5zM4DW9B+n9Sjs7O6UdmkqWOay1ymfsz2hIiqyd\nheINfdZpEmecMCDzwsQZ4YIxKshRzEaGMb4RcShuCzA9hgz2cEGWztGFulvYKg+1\nd4NruwbNNNzkeAGpPNc7zqudUAJwC3uEPN2bdTJxWRcFAwO/VUwoTYIvhaiIkH9d\n7FwCYXTmBldrzX3MlZ8G4gUBqlrmuXvW9rl8uncfubXoRMdZGLzp18f/acM024HC\nyjoH4yoA7Zn6Prn8qqBxE/H1t9sipBg3NJwkeG3nI02ba/kCYQea5ATuz6tFcbON\nL0VZ1qau0ULViQFK0AeRpjXYVw479GMc8OghxNeOsl0/OkOW189sAULpjMsnBFRr\nVaF+kb6jhrAEYb0+87dO20ys06hpFOycslucFfqBCXDYmBh+lB3qFYLQN/KQsd1X\nYeGFNFwF1WdE+l4W0pS722bxi6hRFseZX+PuyMjtP7E+MZcg8+GYPIuTWewb5JfV\nhchhmPHcnqLPm8lpEbgqD1d3eguk4QIDAQABAoICAD7vBW5TSetHLFm8uUfKXwAA\nYJi6rDGMi/cc5Iy5cbpJvUq/5SOIbF2rbMLGg070Bjez7aQL9knhJeYV1TfL661P\nBnCaftvpGDEBMmkuq94NF3HLnoKjQWRk0yKKxsq9c4BL6bN6YpvxLlbRjso0YeL6\nxBJsl4BhiFpUmaFT0+Emrbh3I5DNbx7JQZKzRsskGgDgNf1jstitGTqt4j/TEFDM\nlVJ0PEmr78MP5dbVrRK1KZb9jFv4VadBvovUIV3auEJ/LJZRSzfq2gGkyMEyKSXp\ngENr6tVJJx6Y/h2okwP+llhO6oNgLjsh1sQjnGwP3cr5dvyk4nrCrEXisA6G+1UL\ngOL6MAF86bMSIE+t3PjKv1GC2vTIKeKrNHwqr0ahfup3t/fHVZBwrm911SK1IQQ1\nKWhJ7uIjHYR3ePcx2ZObvLsJ5eAEjermrrqoAo+GuqZFpWpeWzLdUWLe6I4R9M4/\nc9HEcidAjVb0s+tj6qFT965tdGD/b2BQ4nNxHEB4aERgZwA3ddsPcQf4jcfIJjcR\nrETYQZ8+EeIQAm9wdgMmzK2i2ZbwLpgyDrQmYBRkFnGEl/rh/z4Poo9pZ5Q8fcz0\nRoES2NScYvEmCRolkkg9HZStFQgvVZrd9A/B/b4C8nJ8sygKjTmULeTqWSxfBEcx\n0RjwE8nDLageSKA5Sd0xAoIBAQDTSFsAvGuptBqnKTlSyFsssc0fSzgzF+mf24yv\nk4aXPvXuEwT7U+7KkQ7cCPZ6+s6h2QWQtXNUUDtE5tw5XDwlEdRQycduDJFYAtPi\nInIXThtAAd7Pf++bnvqG/yyVcC87LbkyUfhTgaCFCKkUUkhrZNrK1ki5rXG88ulC\nThuCS/vnZqluLUPKiRFWltaXTq42/zz3nANmxNrWohlr7UftNCZP/FUl61/mbRgy\nQSZReXAW7owZuQWm3Fiiap7mQtBANs6FRlChmlSDM1TVzak1w5GEmGg+Y4Ez5RCx\njxNDRPC87Dpsoj8WnFlMHlzGD/9bDpFh3fnPXlrS6BAVjTrvAoIBAQDJJueiJbRg\nfP8mgOvZUUVcJtteCpEpHzaLC0n9289diOAvF3OI4dwdZkC5wdvCk5Z4882HvEgx\ngopq3u2xRHB6UpwH9bVC85RQfUG4HM1w5lUkh8gexwqRfgu1jU69Cnnv1Qvucoer\ngTT+RvHELTQN8xBYvOpGOZJ3WDz0SzJ/GA8cLMhRKzySPtkijYRt3bpKF4HqvkZ5\n7zIXqY0RshtgWs/+zKYsI1JtAsfjYus9Nr1k/Qur3csGDSn8MBJTBgdGQ5LXlRR9\nz8TwT6NRnAc4dbsAFZmz7Lcl+0V3ph8TkdcyE3LVvY7OpbN0K8ilCsUr6tptZHh2\nFZowrjv4m10vAoIBAQCyBnSPgTQicRxIH4cqhqG0XjidFq9K9eonhUHcqyysAiQM\nrz/yWT2Kt4FSy8aLxwsW+psi3JFJyLS4EOIc/ue6wHQqgmqlArfw9aj9ENMbafey\nDiFkq8MEWId1+krhu/5AGf3DNahNDJtpnOuCsPZOb1Oft8DdmxSMBg2fjdrGBipC\nR5GZwVAutyHB2SUFpwlKU/RWGsIO9O4EDd/nva5uYxOpL8+7PMG4kdHiflzAJ9fX\nqran8eueNmoEqFwtXrzEbqnDSIUmNbjiN/1SjZD3OUtC83xanVM/m9JeGlU7yDok\npdNwt6D691CSv76iMNaULgk38mbMYQ+cSGdNEYxHAoIBAAvc4II+iQG7vWxu4/ng\nAiAqJnvIUcFEFvpiQw3WnccdYGNGlci30TxmoGCUHzq9a31cm31qzDMnSLR+yzPO\nHngIUS1i/zqglNmeWXbbM/55hwHthA7UnDnyXgxp9f/OE1ziip6YYInrx81LL8zr\nAYvlDsy873AOyyWAra+Wk7bNG28E8RdgXmUdkb6o6+tyzR67fizy5cMhKSoeFLS7\ndUPcdzHGrfIibyUAqfsuBUOJ6+d9yOds4CFOO3ClAR+mVl19dLaEEz5MN4gYmkAg\n3Igm4U1i+LqUtkRmKjWhNWn5CuDoJriWQkrLmOa8AkxBc1lgs1sKNtR396zxSZYi\ny38CggEBAIuWw88SfJ8MyWxVdJZKwCovJIUhJEroKKIedBRfB3/2utMokapETDDJ\ngRFLoR/D6m1m2mM8AXYLcs4nmkZUEGqZU0JrLAY2yPd3sK2Wh3OH14rnM99r1GCu\n4QJDIOzsPQ7XLyzV7Yqiv/dX5IEs8xZ9FomDsDws4nZdWy3icqqxMSU0VAN5435M\nkpCBAtPTaVpDbgvDed1kABzvoK+SrxW4rIev4s9In0katJCVmKixMiySRh7r8uqX\nPXsb9SzOHN2iEpNSJ26KRLVDPLuo/erGpKHbrskon3MtM+FGfGakNRupXKgc3QXG\nd8YEF+sLpOQ/40DZFXUG42RUZVkci70=\n-----END PRIVATE KEY-----\n','','http://192.168.22.10/dfrn_request/friendica1','http://192.168.22.10/dfrn_notify/friendica1','http://192.168.22.10/dfrn_poll/friendica1','http://192.168.22.10/dfrn_confirm/friendica1','http://192.168.22.10/poco/friendica1',0,0,0,0,'','2018-11-17 13:50:06','2018-11-17 14:03:08','0001-01-01 00:00:00','2018-11-17 13:49:10','2018-11-17 13:49:10','2018-11-17 13:50:06','0001-01-01 00:00:00','2018-11-17 14:03:08',0,0,0,1,0,0,0,0,0,0,0,0,'',99,NULL,0,'','0001-01-01',0,0,NULL),(21,2,'2018-11-17 13:46:01',0,0,3,1,'dfrn','friendica5','friendica5','',NULL,NULL,'','','','http://192.168.22.10/photo/63436871415bf00e80dfe9c308856934-4.jpg?ts=1542459008','http://192.168.22.10/photo/14034074815bf01b999cc19093001643-4.jpg?ts=1542462605','http://192.168.22.10/photo/14034074815bf01b999cc19093001643-5.jpg?ts=1542462605','http://192.168.22.10/photo/14034074815bf01b999cc19093001643-6.jpg?ts=1542462605','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzbQgk0okIu48OTsuvI/j\nnTYfKREWuHx0Rkr/44zKv9NGOJItxb82OoK/59o4l2mkt3REOwEzsSeAUe8VjkFU\nnfmjTTg8GqDCQ07Bmux1lVdtyAIhqr3uMraS8bODUMRFnDSX39rYYUH+h7oBZ44k\nW2vGvnWKh8BYPmV+hAab8TuJBODrZy1z5A1lc9CSSoZCiEOSvO5tGgiTBWW/CUoC\n6jR/BqZy/jlbiuED/t1Hn8dKCyPkAUppFhVJgSiSaysLeQlGsw58QYvD4WJXWbGh\nOzBDyR5hmSPuRuCxWD0GkpCnZGtkLhrJHAhYysAvqlc6Oo+6leRuLq2S05cZI1cL\nwsjapgnIvPCSIm7OkFlEimqveMNTOKNbcyIHaq8kL3ZyUYWuygVndL9AdUhIEAkE\nOROFlAyv0fC0tbBhnsJ/SifvEGYOaO4eRB1mvvY2R+JU4gPXLWbeNSNrn4zpTdIL\n0pwDJvLAv+tgeheBz6fNyKqETeclMEuo+GUs3nB8zeO2ZJXwzAgqMt5/Vr27v8d7\nk+Cer7ydUT8QTlsRGTAjaWicDFPLlH9v2v15JEaDqjtIJ9kUdAaj+BnR3+j1x86g\nSrJa5SV4kdu/hduRtIfnhKTpu/ZnxhQzkWuu6gWtjCpLzTuaHybnh69rSz7CKoFU\nXnqm6IVFII/ny2a7I1KrMFECAwEAAQ==\n-----END PUBLIC KEY-----\n','','532811c29a1067f15bf4868ad3563bafcc2e9df33d775ffa722f0cb0beb7d374','http://192.168.22.10/profile/friendica5','http://192.168.22.10/profile/friendica5','friendica5@192.168.22.10','http://192.168.22.10/~friendica5','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEApgPrXTMSFF9fbVw75NWT\nNgeB+B63YKl1oV/JCG3JYmvR4gwd4GcKvO/91pG5aPkrhcWb7KT5q+k+7kYab+AN\nHqb34FrWUCAxEfGb8vyMbzbAeQuVznmh2zdEdIprzHCWVk2CSAHgU/UPSqSt5JUA\nSC2Tkd/e1IbJrKCffTuczOA1vQfp/Uo7OzulHZpKljmstcpn7M9oSIqsnYXiDX3W\naRJnnDAg88LEGeGCMSrIUcxGhjG+EXEobgswPYYM9nBBls7Rhbpb2CoPtXeDa7sG\nzTTc5HgBqTzXO86rnVACcAt7hDzdm3UycVkXBQMDv1VMKE2CL4WoiJB/XexcAmF0\n5gZXa819zJWfBuIFAapa5rl71va5fLp3H7m16ETHWRi86dfH/2nDNNuBwso6B+Mq\nAO2Z+j65/KqgcRPx9bfbIqQYNzScJHht5yNNm2v5AmEHmuQE7s+rRXGzjS9FWdam\nrtFC1YkBStAHkaY12FcOO/RjHPDoIcTXjrJdPzpDltfPbAFC6YzLJwRUa1WhfpG+\no4awBGG9PvO3TttMrNOoaRTsnLJbnBX6gQlw2JgYfpQd6hWC0DfykLHdV2HhhTRc\nBdVnRPpeFtKUu9tm8YuoURbHmV/j7sjI7T+xPjGXIPPhmDyLk1nsG+SX1YXIYZjx\n3J6iz5vJaRG4Kg9Xd3oLpOECAwEAAQ==\n-----END PUBLIC KEY-----\n',NULL,'','http://192.168.22.10/dfrn_request/friendica5','http://192.168.22.10/dfrn_notify/friendica5','http://192.168.22.10/dfrn_poll/friendica5','http://192.168.22.10/dfrn_confirm/friendica5','http://192.168.22.10/poco/friendica5',1,0,0,0,'','2018-11-17 13:50:05','2018-11-17 13:50:05','0001-01-01 00:00:00','2018-11-17 13:49:10','2018-11-17 13:49:10','2018-11-17 13:50:05','0001-01-01 00:00:00','0001-01-01 00:00:00',0,0,0,1,0,0,0,0,0,0,0,0,NULL,99,NULL,0,'','0001-01-01',0,0,NULL),(22,4,'2018-11-17 13:47:03',0,0,3,1,'dfrn','friendica2','friendica2','',NULL,NULL,'','','','http://192.168.22.10/photo/15820583805bf00e7fd7909940374120-4.jpg?ts=1542459007','http://192.168.22.10/photo/11253258925bf01bd73be2b220663529-4.jpg?ts=1542462605','http://192.168.22.10/photo/11253258925bf01bd73be2b220663529-5.jpg?ts=1542462605','http://192.168.22.10/photo/11253258925bf01bd73be2b220663529-6.jpg?ts=1542462605','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwMWwwjqXtfQmCzLQmZ+D\ntRVdtv1Vq6DdjC/+aEP3UKLpp0nzNcsfT3U8Kejs23o0KpC+EVFXuWZqvxyeHoiZ\n+w9i1roJf2eSLBVeAjiEmLbI7wSfLBu+iA1x+X6+d9wxxAgzM7KHIBOghVCDussz\n4AaojP4Dx3Egsl1w+1j/ULUNCvf1wq9KLMMgJlnemC4cHfv+ObcxdisPezjVD9sg\nnvRLKyv6i8gm8csDwaHtHP6VNxc0JnauU6GIxBrDmlnpKYGb3rl3WLSvuiyzJYrr\nzKESnFINFKRLCG3m548OK+reRBDmgYbsZFJ57FS6YTa63268IwwtlRbRs8n8N7Mi\nO0jAXhRyZKRim6lkykIUjwlmIKfS2xl38k1kg5VLfPwZYAhiG6+JMcBlyj7hKU+4\nN9FKKfLlxtRz/g2kh81eHWEOXblEohpR/GbAhMF8h/tkHM+ze2TAbyEK1A+UWlWZ\n3olMRdt/awlAd657XqGVukYUg++GdEGkVyeWcCV3CwscbhiFAqpV/TWh6yARultJ\nvij/UQWi27yFY1v4EAactGL/V+zrmQSduKGd7jpHJe2XVS4DGuw+ThiDQc8gamlG\ndmZcPkVxChFqGpxGKXOr8uFWbYUG4Cj3iA4iV8XOlGUIN8uFtbWX/VyVHGNGDmGg\n60osshOegUJTNz8OBkZspvsCAwEAAQ==\n-----END PUBLIC KEY-----\n','10fde14e2501ffb578f1121b3d563d79884e322fccc694a2648d0a0cea6e489d','','http://192.168.22.10/profile/friendica2','http://192.168.22.10/profile/friendica2','friendica2@192.168.22.10','http://192.168.22.10/~friendica2',NULL,'-----BEGIN PRIVATE KEY-----\nMIIJRAIBADANBgkqhkiG9w0BAQEFAASCCS4wggkqAgEAAoICAQCsXFDF0TgB2+AN\nbltnZ7edGmwx9rqLDAUn5SEQG++JvJGztZ/itct4CpKljs4Qo2NMz2iZmhCN2srq\n+VJSxfLrhd9bZFooNNn1T1I5UTwcBXdlu8V6v/wR1OkAoKEvG32ieJ+OCqp6oSBd\nPDto/TQ/BUajtZzFrw8UXEktTT8I/oJNHkj/JbWVDdw7IpngeZNd55piKd87Go1M\ncmcqUNHFhJRq0ODqwog+aCSd2lZtcF1Rg02SdAayvfjR+2eLMVj8nhKV/HSgsqit\nwdosbuITXrjmLEe4dhyCmdeDcpsZlGK2BQcIB/ypN7PahCC0aSLBDSZaZhvWTR6Z\nRKIEJ3p0ZZURZhNX1gCnBLxMIgd4uYq+tIo81e6apD9Hoo2nKK4WLQwofFbZ4A66\nRkqd8Vwb6FYbgBnl8YukhXT88TPd/RZsrnAgcGqEIhSSyu/G2XC2vgxEDy1EpgTD\nYxJasCoGC+d4zn4C6qX8Vr5NFGESDAPLSWD3T1JYk0t9z9LeqxUZn4zE3uxPzwZy\nJzhWC4LWrvmbV16ox6YSN79AMEyStQCFP1HGDqfTgG7vEaDsSyMB06P4FLVUqqSK\nQ9mvIZgPPNaFkmGFF5iG+Hmhw0/ZR/Zenm6oB9IEy72keiTWfhFG5Khb6qDFO9oS\nr7Myb0yUY+sOtljtn9+zvlMJz1GtzwIDAQABAoICAD8glIjPJucvY7EnoRyPVSWa\nHtRx3EK/BUhmWCSxRps40Fh0hfmfwcTWgn1Wf0yCuwTP1iyjy7pYzwceh7M/QshW\nQMcVSxv8t3NsON47TXup2OAO1LYviJ/zTd9n9YDuXaZa7X01lNjTGKptPAko67DF\nOukMxD1271vyrO6FozelF44tMGkao5XS/L0/4AHiJUI4aEfZtCPOhr/gCr7p2Nqx\nwzYYCLiSxRmuRPL3m737cIJBR/ECw81FXNNzc6n8Se5D6uS6EPEmXjc9j63EctLL\nV4cd4qrBv5FpzRAcsoe83CZ0Uu3zFuvXNe0rhVruQsdYDJsBWOK1Xiaeh4Rj/Sn4\ngyy5sgFp8BhwPaN+FXrXw1CdLeV/9djPfrU6qj0kMrud9QolzpaCe4ZMmIuuOqTa\nAFHhvi29H4GeEtJMyGp4qVgwHYjZHWeyFVajPx1qxln6cSLVPSBNAodX3Mp4xf4P\ndgPBc7/mPZChahP7NjMfrzNp8mMaZUGFAB20hKgjkG8+L+GyHki5EuwQaT4ZVlfV\nuGDGR/26a5Ngv5tS3O/51ua1oiYDQTt0gGIV2a3/SqQaVb04aDQxlGU7sosLS/KN\nFqMXznY6bP5oZVDSxLghBC5/EaoxznLQLJ0I25S8Ke60SszedSrSG8FTa5D25cW+\nMYeSc6QQKEoxQ0SDGj2hAoIBAQDVS7OuNDk6YC+PS8RGEGxdTlQh24XGyY7yXUpM\nRoFypL1KBhVaScjHGAyKCHzNgO05N90C9Ygqsij1+QaJo6lM45uw8xPGM2NHEmJr\nUJzoHAN1+E3qmDKyyE8XRndhvG5w90fok8i4b81vQm9q5bdSiTLyDbHqTz6lWg4L\nWAGhreJF0mizDyE1ZgUVK/ha8DpuR+yqy4Jxo7bhXoh7BwqDt6cVoiTDzSYl54LT\nBkQ/u2UPlStEh/Tj8AQArblZFFHA9f/WrfyNcYp1O6jwFv622OyfSKNFCpiZq7HE\nJFz3upYj9aWEQ3R6EkzRfQdUq9N+5xKu3GudejaDCuMmr2YRAoIBAQDO3oSrX+m4\nGQt9cBBz/+l18szWjRyuE2hcvx3tIlJtGP7HWdFcjZ+TMB0iLYrbdNj97CZ4Ryw+\nZQfYmd/ylArpTXs29MzbosPRC/jX817HqfNyR4v55mtmGoYqwPlFW4xZNP2islZU\n1kgrrlysIrYTCEBBKjLGdRqb++GPUe777/rW5R5doO9s7pn6ieQ6C0wlDBkFlFrW\nRyZ8uwJyG/XS6I3Tampya4P23PlP+v99a8c/AmwepfMx2n67TvSvunyo3IVdqL1b\nB81+53wEuYrz9UC7F19N9Gm/IBEXaZX+Rht0/XxFYwzpbYzcJMefneYmIptu+wD+\nM4H4xJX6wnXfAoIBAQDKX5Iy1f/6YCqf1i56n7iBawEuQp+R9cl4MYV+C2Nkx+OF\naXI3AUzLggjbqqPnQ81Qfa1n0liI0hNFFirayvqmJkqhQHDhm/40/797vLezDmlG\nM/qRfCiWMrHADq7Uf7l121lR1W4beJC9YJZgIWanm99HhDDrdJamwmQS5URfB6Fp\nx/Jo+hDzHkHyTY7NkaKO4hUuE/tHISMyf8QUnqCeStDwGLCzSmFIk3kwCYEVyxJf\nD5RG6Iw0/JR/pFT4rOvInl9IbDn0ZecNxjZK3jZ8fCM+Geg3aI9TNnFq/Wlr7o/n\nvHl3nZzU+aoDFZKwBnubq1ixqhc9CijQerL9EGxRAoIBAQDAZ/BnYNcF9q1cJw32\nhjCDFqf0ad0h/0US9mMEOucFN7lIez6h4cto39hJAKjlAuIMEkeZmUEKa3eHu16y\nxYT8h6cxbzDWm6WbWpJBcMdX17dpNCh57xk3JzZgr4lpPAPmuMWrPEnVsFQB5LOn\nGsXUH9l7gp8lPKfaKsUZQzCPPR5GH2ZF2Ti3TZkDkJsobXeOAZmIOfrez+B5JIra\nzSyv1MKMv65v65Ya1l5ASIi3A7aW4U7klp8CYGF9H6uvgjkN6cVVXmt4LmKwROdx\nkY0u6I4jNVLcM5bjQBUFfJwYmuZQwq+B7eWFevIHk2HkEL2N/KQq7eR3ijq5wUZp\nq9JrAoIBAQCEnmfY4L5Nu0Z+9wv5gkxdebqRQUEtauVmBj5eydpTbEYkFmAEABlr\nY7BED9MhnvRiXwVUV1qyOceV175POMRsU9/Ng3Oz4lrmWRZlWnz4tFnnFbAAc6eE\nF8lhV9LUoAY9NygAezpGxmNkf/Y3hI4BhchdkspQfItIQsw2T1EWwoGFZ+EukDBx\n3JSoJZ/TjeviAmbApeUp/+3M8Kpcy8pj4zq6AU+OZa3b8/NONiYszNvhZZfSQ+ip\nvpXr6oAiSpUXzyQr0zUxC7szjLwBY/e+Wfo9A8g8CvBaeqmCo8kW0U6iGQ5A4MfQ\nOxkZ3F7pI9Me0Rznx5JLR6Gu78P1+58F\n-----END PRIVATE KEY-----\n','','http://192.168.22.10/dfrn_request/friendica2','http://192.168.22.10/dfrn_notify/friendica2','http://192.168.22.10/dfrn_poll/friendica2','http://192.168.22.10/dfrn_confirm/friendica2','http://192.168.22.10/poco/friendica2',0,0,0,0,'','2018-11-17 13:50:05','2018-11-17 14:00:04','0001-01-01 00:00:00','2018-11-17 13:47:49','2018-11-17 13:47:49','2018-11-17 13:50:05','0001-01-01 00:00:00','2018-11-17 14:00:04',0,0,0,1,0,0,0,0,0,0,0,0,'',99,NULL,0,'','0001-01-01',0,0,NULL),(23,3,'2018-11-17 13:47:05',0,0,3,1,'dfrn','friendica3','friendica3','',NULL,NULL,'','','','http://192.168.22.10/photo/12242958235bf00e8006f72987476580-4.jpg?ts=1542459008','http://192.168.22.10/photo/13931663105bf01bd94d90e243464200-4.jpg?ts=1542462605','http://192.168.22.10/photo/13931663105bf01bd94d90e243464200-5.jpg?ts=1542462605','http://192.168.22.10/photo/13931663105bf01bd94d90e243464200-6.jpg?ts=1542462605','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvAs4TR4AI+nlBt8d7BHD\nViq6w3UslHqURRUo0+sfAE5RL45im2z+ryPag1K5dbs5pcoa6hfk9+EREgoWlwnX\nX/8UdkvkoHE6/JDFimuaK7pequwUQbQoOXkkBAyPtN8YhjfGM19CI5FIVByY+O8p\nO/lGls1h5bxYEIgjA0tTDw5FuhPtiw9SJAPtQs5Gueoe9y7VwXNLNenKI6r6/Kfo\nzgYKJS98ibCllMiDIY0ixZZqhsh5+oEAsGPaNtQSgw09fWyyDNUKOenC4NhhMWsY\nBtTgDOPkM1AgidQKny7wtfo04YCn13SZuU6cWXqCx2pTgxLpBRgNbfkf6/DerVEO\nh2/Fxx2oMrRqLox+kAj03zrKnto3n5cYASlmfeEmUBHtjc/qPbuEzm+FEJKTXkrg\njt0+xzTQxPr+oFMinACdTMu6J4lB6dGCJxbx/Dx6FcRKymUYGdLvZWITfKZAikRh\nX8Pll3bFExOk5ieOdBLRt5ujGHuMbV204qpUsL0kDU9/4aMnpJei4EZuw21ovDH1\nVchVjJS4fzsJkaDfA81+83ADHXU10+UJ7PXAq7U416nC/dr30Gp2cxYb1qELYe4W\nGXE9k857z1o3BevJi4smy0FeydVVEVJ/1SPhPcdKHIA6sfP+TzuvWk7zK+xDwdyb\no4/nVNHD26NC1mVTTAjR7t0CAwEAAQ==\n-----END PUBLIC KEY-----\n','','10fde14e2501ffb578f1121b3d563d79884e322fccc694a2648d0a0cea6e489d','http://192.168.22.10/profile/friendica3','http://192.168.22.10/profile/friendica3','friendica3@192.168.22.10','http://192.168.22.10/~friendica3','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEArFxQxdE4AdvgDW5bZ2e3\nnRpsMfa6iwwFJ+UhEBvvibyRs7Wf4rXLeAqSpY7OEKNjTM9omZoQjdrK6vlSUsXy\n64XfW2RaKDTZ9U9SOVE8HAV3ZbvFer/8EdTpAKChLxt9onifjgqqeqEgXTw7aP00\nPwVGo7Wcxa8PFFxJLU0/CP6CTR5I/yW1lQ3cOyKZ4HmTXeeaYinfOxqNTHJnKlDR\nxYSUatDg6sKIPmgkndpWbXBdUYNNknQGsr340ftnizFY/J4Slfx0oLKorcHaLG7i\nE1645ixHuHYcgpnXg3KbGZRitgUHCAf8qTez2oQgtGkiwQ0mWmYb1k0emUSiBCd6\ndGWVEWYTV9YApwS8TCIHeLmKvrSKPNXumqQ/R6KNpyiuFi0MKHxW2eAOukZKnfFc\nG+hWG4AZ5fGLpIV0/PEz3f0WbK5wIHBqhCIUksrvxtlwtr4MRA8tRKYEw2MSWrAq\nBgvneM5+Auql/Fa+TRRhEgwDy0lg909SWJNLfc/S3qsVGZ+MxN7sT88Gcic4VguC\n1q75m1deqMemEje/QDBMkrUAhT9Rxg6n04Bu7xGg7EsjAdOj+BS1VKqkikPZryGY\nDzzWhZJhhReYhvh5ocNP2Uf2Xp5uqAfSBMu9pHok1n4RRuSoW+qgxTvaEq+zMm9M\nlGPrDrZY7Z/fs75TCc9Rrc8CAwEAAQ==\n-----END PUBLIC KEY-----\n',NULL,'','http://192.168.22.10/dfrn_request/friendica3','http://192.168.22.10/dfrn_notify/friendica3','http://192.168.22.10/dfrn_poll/friendica3','http://192.168.22.10/dfrn_confirm/friendica3','http://192.168.22.10/poco/friendica3',1,0,0,0,'','2018-11-17 13:50:05','2018-11-17 13:50:05','0001-01-01 00:00:00','2018-11-17 13:47:49','2018-11-17 13:47:49','2018-11-17 13:50:05','0001-01-01 00:00:00','0001-01-01 00:00:00',0,0,0,1,0,0,0,0,0,0,0,0,NULL,99,NULL,0,'','0001-01-01',0,0,NULL),(24,6,'2018-11-17 13:48:45',0,0,3,1,'dfrn','friendica4','friendica4','',NULL,NULL,'','','','http://192.168.22.10/photo/97971161215bf00e801fdd7464746900-4.jpg?ts=1542459008','http://192.168.22.10/photo/10196270915bf01c3d3dcff106620826-4.jpg?ts=1542462606','http://192.168.22.10/photo/10196270915bf01c3d3dcff106620826-5.jpg?ts=1542462606','http://192.168.22.10/photo/10196270915bf01c3d3dcff106620826-6.jpg?ts=1542462606','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtOfQNRnGbzBy9Rc7gLAI\nrB5Fp2SBFfjRnd5g99HKWI3Amz5BXdcOWsgikVtwSVGDD8TGPj56qIlp+ctfYkPZ\nn5QSGfA3VS5eqWNfE9aG3XZAO7M7x2pKVaf79ciuYK0HQrmCeClB844x8rXDmW5m\n1k6Any22lpXHdDY8heR6O/uLIG9i/eRiD8tFMY3ATVkJ4MF5TY/m0ZGhHAMfK9dm\nkJzNvJc0cYe6kBmpDDmlJwObo75NfPBi3bqTaIZvTxda6lgWcuv/J1IR0fLhW8IJ\nbbXcd/fSNHV5zdqPmZsiu4+nx1xf+40J1v9+uKCCxH6UlUR9HLcCpYH6PDmoEkRk\n2WVPsU2+crVbY5cbNx08LVe6ZGl/onhTM35t2JBpo9ClgTSmpgEkRQsBebWNEKn3\n/y7Ib+/IywdomRUTgXVtKt5+90FdEhNwrba2CyD3dFW/CQCwx+363juCZr16EiKx\nbG5VJ1aIN8/My9feB9fklqyCpy0vkMI9NptQbtKntueETeLTqKlZ5uJJZJtd6S7z\nrTAd6vx5WLOMYlfQF2K7MVCwYUVfcIoWKxAg3SU+5sIG+cSrreT67wxt6k6sEEOw\npRZn3qZ13vPpO1mJelhqQeDZYutywYHjNj+L5TjCIZqIS129MZbqDJELkjTmckRV\nAZmzTHqCDXwd70IddYvuuJMCAwEAAQ==\n-----END PUBLIC KEY-----\n','398aa5209e0dbf9f0933927563fa9f62fa5484bd124182598e41ebdbd4684d05','','http://192.168.22.10/profile/friendica4','http://192.168.22.10/profile/friendica4','friendica4@192.168.22.10','http://192.168.22.10/~friendica4',NULL,'-----BEGIN PRIVATE KEY-----\nMIIJRAIBADANBgkqhkiG9w0BAQEFAASCCS4wggkqAgEAAoICAQDJYkBgoJRvyGAo\ntEKURq+1fpLS8qasFZkUc786Vo6c9RAkXOpu5HoG4fETJvozGGMP87BPzxV0rvbG\n8640p+CGWKQGIf4m8+/0TlDo/Q6vyZtR6jkfrbvU2XYrErLGnaRJvhNkIhQ8Qwf0\nweK5Nes4LZEPq/65AbJ9+dWJ4L2s0djjx94U7S6lChkTtSXIVGgGd2fQcxzv6CaD\nvk9aENhQHwjs3BVOhX198OVTywcsWKLUtu9yY5zDE/9lbv5BpWOdIWNHZIqNx5+i\nPmxTk/KpUfTehodRZYFH+KA+T0bPpQOpP6KXHdcm/x3PplNF3+P3GXl7E1MC3mVF\nhmjecF5hzo4iYmT1a962rBHBCc+4dbCJPlWKgb6W+076iF1nkNFDzk1RHGyZQj8p\nZ423v1upPKUWn1qHmLgM9SCNp9gOPT+YuXmEZgxhLo3KEgvc7NFyiX9uSdOGmz5B\npkpQdpBTXnA30P7cQkoX+Ciul3ZUstL3Wu0dCa5MvzNi4FtNPmpRv2j+kKzzoGnn\nD3ztIc4+Y66pH/T0ARcGPjDiXaNSyHejN6ahFudaxRied/QG1O/5A54iWCrQQ0Pv\nXg+/cSg2yJKoDAHfgaCvADt0xYDfxK3t0QCV5XN2cM8wRCS+6BRk2s0JiBiAo2j5\ntR22diqdcR80OniMEa/iDS1fGr6AmQIDAQABAoICAQCYJ2/Ukf8U5iQhHPEg7rdb\nPaLZVxSu+DKMzVcyUKu300C6+Kj32BCKmrN2cQChEk/mgYw5AJGJc5hogTyh9CUj\n3F0xdQV9kNk/kNx47JnoHz8HCRzX3oAINbWenaYNgpXaUY59HXKEhXDBcKxIm4B5\nFZSAbscqKSofHGBGqFMm+/YPQ7d7wCh58cM4rKk7Tuq52AXL7O10JcbTyzpRJmEJ\nSCmKLE684QcL3LKoOMHWs7FzXjRUDQcoLTfN/6qDFt7Ina1RB5nXvXfTMa7PBv1V\nCOMmLiaXTUX8htErwuIRiO/XNIk3/AfPIvn3JgfMx3iJ/elXICacCEQj34Xkaqoj\njLf05YZDbFRLV4pZTuMLPWq+mG27NK3ayOhyaGp/NGia7PadgyJC4Bsgo3v+zpiy\nxVmvNOtt4HSFi3CmAaX0hIBQTFzEvWIjF1CDawgztFn/B0dwep1AFZnLuQ5oWKHs\nHW2aIB3zZtU1bqz4GqvXfhVqIyf4aFZObdkxYagMkAirXWKyxT13YRLtVKlWewC8\nQLIiwfm+JISQxVSFnzJuLK1oFRiFbqNuSXLzd25SZiGuh52C/9y/FbxniS4uF/oD\nrTFqLdRAj6aNmDkkPzvbdc55/1/tD989d2ouHuxM2EBgZqLxqsF/gpxnO3QOAjdo\nnI40HdCtRSk6vAu5kklDMQKCAQEA5argQ3dWR7uigsnOO2nLpeFJ6EAP8P1c2Dtf\n8cMQgsnKAIeBiZ9bokuwVvKmxITXrWtRcNUWbSV3hAEQ2Ibp5fO/tGlle25tDH3R\nTZNPhw+k3BtKqJdT0/TZB7dW3T3SDVmCYSlzEoJKwuC4PJuCVcTobnvSDqyqM1nL\nnoWkqLijwQ6JSm/mHbwZ5gctQiHzEJXxqrONvfxaNg/nq/TYRrwc3xOtqry1ktZb\n0C2attsyvloltOaeXXjR6W34J93VYDXS1vAw36JQI4jZgDoM6eyvka56DOkEIfEN\nogXDaQap/Pa9kMQ/Cx9f+qKY7dCjHM9L6hBus71NpvqWxXKsawKCAQEA4HkzsvYY\neqTJXKRSjJJAmwC23zuymKYuINOPlPwzXdB4ToUBy+vrc0A2ldL+j6K31+oGSkf3\nUrp8dd477JmtRcFT5d8qQj6oKs/pPS7gGD0p92SN1Sd2fceXoaT67Wq3wBdPjrAl\nznogHZcCH7BlPrEUPEcg1SsVnCsoUF2JW3PJd4dQB5jUBu/8eveqt1R9ciqg5Tck\nN/bY5eAxlKq/v6ayJ4R7e1dkdnnyhyyCzSN0Ob8aaP2uUUVepurTGq1GYfzMHKdk\n8yWypNOMMVxw8iehuuqPkr5eFv3fFgqnrTnmQjjbX9nhPs4G4RLmfaxVGEif5FlA\nGaYQRFUKj7lICwKCAQAjS9ebhsOj0ppvL0SarO+3VqBdKTtJ9iZGtRlRtoDbGNgK\nrMijtfIHR0qakkA/A4uCA3RIuvbvX0q25tMH8/QOex+DQo9uINJxkQSRv4oBX84e\nZbNbpaYkdQTFws9+wPl/Q7pd5FjjB1MmEBNAfUXSmKiAEld+GdsueSZp/nAH3hiM\nmwdOgVQETdxNFd1GxKDuc5zodx/ZiubyWA9qxf5XIKHvRr7x9n6RSpBhtiCI6bcq\nugABhU/hXaglD9mLhvQ8DQmSLufT9sYKMAX9Ru6lJNL2uLHZOhaAgONveyNFCNkn\nH2SS0xY9R10gz8xhACeRTeqE1nGs/fLpLqntPmpxAoIBAQDGKHiJHVKSwfG4RJ9S\n1LEPpFvLSSnqM5k5BUoVHWZDBQuPVT82w3dAcIk/TdnG9sAQbNlMracZcuL4Mkz4\nGtmpYHct0AnAHQvbb1rY1g6hlyz65duHNaUWeCHVYozZFYJMosdqkPlvAsRjGrGX\nQ+K8qxnP9IJ5a+VRzY9zEn91KgvJ5ruxWSqjTSu3afdci8uKAzOx5TGl7dWfaICc\nWveWuhM/a2aOhaF8LT76MULu0MODTr6DvJ4rxG9ALsBZJmmhisas7ODi/H5tnwp9\ncLuMKYxOM063HjJ1XXuYO6O1+gzYnNScEv0SslHEUykB/CXKoCH2NQuvGLf3epMu\nOUPtAoIBAQCQGuBcoU71tmGYD1ERGrohZCZwqP+2TPJjCiIzpJofNbe9CZhW54nU\n2ojpd3EE5pXCfxMNuEutAjU5S/BOWIJKb79pR5u7v4BpEb2AIAPWITz9bBRXEju6\ncZPKTYiEURcSfpyVyLBjiuk14VxnDZccQ6gZK+0BPRYEl3nRgYOHIVlizoJHJAjw\nBBuKYJp2WN4b1MCvhnRRL/eaDfG4MPux9nKwbQrEQNd60benoh/doRTKor2XfpnW\nQMw/zLn0p++8Wbr3Bd7YhmWhBvCp6elJcSVQ3QRQC3t8tfoaeaJiLdDQEaDAygO8\nU/inKhObeent3pSH7HybR8mM8Q5XTatA\n-----END PRIVATE KEY-----\n','','http://192.168.22.10/dfrn_request/friendica4','http://192.168.22.10/dfrn_notify/friendica4','http://192.168.22.10/dfrn_poll/friendica4','http://192.168.22.10/dfrn_confirm/friendica4','http://192.168.22.10/poco/friendica4',0,0,0,0,'','2018-11-17 13:50:06','2018-11-17 14:03:08','0001-01-01 00:00:00','2018-11-17 13:49:20','2018-11-17 13:49:20','2018-11-17 13:50:06','0001-01-01 00:00:00','2018-11-17 14:03:08',0,0,0,1,0,0,0,0,0,0,0,0,'',99,NULL,0,'','0001-01-01',0,0,NULL),(25,5,'2018-11-17 13:48:47',0,0,3,1,'dfrn','friendica5','friendica5','',NULL,NULL,'','','','http://192.168.22.10/photo/63436871415bf00e80dfe9c308856934-4.jpg?ts=1542459008','http://192.168.22.10/photo/11789807665bf01c3fd8ccd829485384-4.jpg?ts=1542462606','http://192.168.22.10/photo/11789807665bf01c3fd8ccd829485384-5.jpg?ts=1542462606','http://192.168.22.10/photo/11789807665bf01c3fd8ccd829485384-6.jpg?ts=1542462606','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzbQgk0okIu48OTsuvI/j\nnTYfKREWuHx0Rkr/44zKv9NGOJItxb82OoK/59o4l2mkt3REOwEzsSeAUe8VjkFU\nnfmjTTg8GqDCQ07Bmux1lVdtyAIhqr3uMraS8bODUMRFnDSX39rYYUH+h7oBZ44k\nW2vGvnWKh8BYPmV+hAab8TuJBODrZy1z5A1lc9CSSoZCiEOSvO5tGgiTBWW/CUoC\n6jR/BqZy/jlbiuED/t1Hn8dKCyPkAUppFhVJgSiSaysLeQlGsw58QYvD4WJXWbGh\nOzBDyR5hmSPuRuCxWD0GkpCnZGtkLhrJHAhYysAvqlc6Oo+6leRuLq2S05cZI1cL\nwsjapgnIvPCSIm7OkFlEimqveMNTOKNbcyIHaq8kL3ZyUYWuygVndL9AdUhIEAkE\nOROFlAyv0fC0tbBhnsJ/SifvEGYOaO4eRB1mvvY2R+JU4gPXLWbeNSNrn4zpTdIL\n0pwDJvLAv+tgeheBz6fNyKqETeclMEuo+GUs3nB8zeO2ZJXwzAgqMt5/Vr27v8d7\nk+Cer7ydUT8QTlsRGTAjaWicDFPLlH9v2v15JEaDqjtIJ9kUdAaj+BnR3+j1x86g\nSrJa5SV4kdu/hduRtIfnhKTpu/ZnxhQzkWuu6gWtjCpLzTuaHybnh69rSz7CKoFU\nXnqm6IVFII/ny2a7I1KrMFECAwEAAQ==\n-----END PUBLIC KEY-----\n','','398aa5209e0dbf9f0933927563fa9f62fa5484bd124182598e41ebdbd4684d05','http://192.168.22.10/profile/friendica5','http://192.168.22.10/profile/friendica5','friendica5@192.168.22.10','http://192.168.22.10/~friendica5','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyWJAYKCUb8hgKLRClEav\ntX6S0vKmrBWZFHO/OlaOnPUQJFzqbuR6BuHxEyb6MxhjD/OwT88VdK72xvOuNKfg\nhlikBiH+JvPv9E5Q6P0Or8mbUeo5H6271Nl2KxKyxp2kSb4TZCIUPEMH9MHiuTXr\nOC2RD6v+uQGyffnVieC9rNHY48feFO0upQoZE7UlyFRoBndn0HMc7+gmg75PWhDY\nUB8I7NwVToV9ffDlU8sHLFii1LbvcmOcwxP/ZW7+QaVjnSFjR2SKjcefoj5sU5Py\nqVH03oaHUWWBR/igPk9Gz6UDqT+ilx3XJv8dz6ZTRd/j9xl5exNTAt5lRYZo3nBe\nYc6OImJk9WvetqwRwQnPuHWwiT5VioG+lvtO+ohdZ5DRQ85NURxsmUI/KWeNt79b\nqTylFp9ah5i4DPUgjafYDj0/mLl5hGYMYS6NyhIL3OzRcol/bknThps+QaZKUHaQ\nU15wN9D+3EJKF/gorpd2VLLS91rtHQmuTL8zYuBbTT5qUb9o/pCs86Bp5w987SHO\nPmOuqR/09AEXBj4w4l2jUsh3ozemoRbnWsUYnnf0BtTv+QOeIlgq0END714Pv3Eo\nNsiSqAwB34GgrwA7dMWA38St7dEAleVzdnDPMEQkvugUZNrNCYgYgKNo+bUdtnYq\nnXEfNDp4jBGv4g0tXxq+gJkCAwEAAQ==\n-----END PUBLIC KEY-----\n',NULL,'','http://192.168.22.10/dfrn_request/friendica5','http://192.168.22.10/dfrn_notify/friendica5','http://192.168.22.10/dfrn_poll/friendica5','http://192.168.22.10/dfrn_confirm/friendica5','http://192.168.22.10/poco/friendica5',1,0,0,0,'','2018-11-17 13:50:06','2018-11-17 13:50:06','0001-01-01 00:00:00','2018-11-17 13:49:20','2018-11-17 13:49:20','2018-11-17 13:50:06','0001-01-01 00:00:00','0001-01-01 00:00:00',0,0,0,1,0,0,0,0,0,0,0,0,NULL,99,NULL,0,'','0001-01-01',0,0,NULL);
 /*!40000 ALTER TABLE `contact` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -337,17 +365,17 @@ DROP TABLE IF EXISTS `conv`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `conv` (
-  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
-  `guid` varchar(255) NOT NULL DEFAULT '',
-  `recips` text,
-  `uid` int(11) NOT NULL DEFAULT '0',
-  `creator` varchar(255) NOT NULL DEFAULT '',
-  `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  `subject` text,
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
+  `guid` varchar(255) NOT NULL DEFAULT '' COMMENT 'A unique identifier for this conversation',
+  `recips` text COMMENT 'sender_handle;recipient_handle',
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Owner User id',
+  `creator` varchar(255) NOT NULL DEFAULT '' COMMENT 'handle of creator',
+  `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation timestamp',
+  `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'edited timestamp',
+  `subject` text COMMENT 'subject of initial message',
   PRIMARY KEY (`id`),
   KEY `uid` (`uid`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='private messages';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -367,16 +395,17 @@ DROP TABLE IF EXISTS `conversation`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `conversation` (
-  `item-uri` varbinary(255) NOT NULL,
-  `reply-to-uri` varbinary(255) NOT NULL DEFAULT '',
-  `conversation-uri` varbinary(255) NOT NULL DEFAULT '',
-  `conversation-href` varbinary(255) NOT NULL DEFAULT '',
-  `protocol` tinyint(1) unsigned NOT NULL DEFAULT '0',
-  `source` mediumtext,
-  `received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+  `item-uri` varbinary(255) NOT NULL COMMENT 'Original URI of the item - unrelated to the table with the same name',
+  `reply-to-uri` varbinary(255) NOT NULL DEFAULT '' COMMENT 'URI to which this item is a reply',
+  `conversation-uri` varbinary(255) NOT NULL DEFAULT '' COMMENT 'GNU Social conversation URI',
+  `conversation-href` varbinary(255) NOT NULL DEFAULT '' COMMENT 'GNU Social conversation link',
+  `protocol` tinyint(3) unsigned NOT NULL DEFAULT '255' COMMENT 'The protocol of the item',
+  `source` mediumtext COMMENT 'Original source',
+  `received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Receiving date',
   PRIMARY KEY (`item-uri`),
-  KEY `conversation-uri` (`conversation-uri`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+  KEY `conversation-uri` (`conversation-uri`),
+  KEY `received` (`received`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Raw data and structure information for messages';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -385,10 +414,34 @@ CREATE TABLE `conversation` (
 
 LOCK TABLES `conversation` WRITE;
 /*!40000 ALTER TABLE `conversation` DISABLE KEYS */;
-INSERT INTO `conversation` VALUES ('urn:X-dfrn:friendica.local:2:758d682b1459b10f0be17c3206121357','','http://friendica.local/display/friendica1/15','http://friendica.local/display/friendica1/15',1,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<feed xmlns=\"http://www.w3.org/2005/Atom\" xmlns:thr=\"http://purl.org/syndication/thread/1.0\" xmlns:at=\"http://purl.org/atompub/tombstones/1.0\" xmlns:media=\"http://purl.org/syndication/atommedia\" xmlns:dfrn=\"http://purl.org/macgirvin/dfrn/1.0\" xmlns:activity=\"http://activitystrea.ms/spec/1.0/\" xmlns:georss=\"http://www.georss.org/georss\" xmlns:poco=\"http://portablecontacts.net/spec/1.0\" xmlns:ostatus=\"http://ostatus.org/schema/1.0\" xmlns:statusnet=\"http://status.net/schema/api/1/\">\n  <id>http://friendica.local/profile/friendica1</id>\n  <title>friendica1</title>\n  <generator uri=\"https://friendi.ca\" version=\"3.5.3-dev-1234\">Friendica</generator>\n  <link rel=\"license\" href=\"http://creativecommons.org/licenses/by/3.0/\"/>\n  <link rel=\"alternate\" type=\"text/html\" href=\"http://friendica.local/profile/friendica1\"/>\n  <dfrn:account_type>0</dfrn:account_type>\n  <updated>2017-09-07T09:19:08Z</updated>\n  <dfrn:owner>\n    <name dfrn:updated=\"2017-09-07T08:56:53Z\">friendica1</name>\n    <uri dfrn:updated=\"2017-09-07T08:56:53Z\">http://friendica.local/profile/friendica1</uri>\n    <dfrn:handle dfrn:updated=\"2017-09-07T08:56:53Z\">friendica1@friendica.local</dfrn:handle>\n    <link rel=\"photo\" type=\"image/jpeg\" media:width=\"175\" media:height=\"175\" href=\"http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575\" dfrn:updated=\"2017-09-07T09:12:55Z\"/>\n    <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"175\" media:height=\"175\" href=\"http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575\" dfrn:updated=\"2017-09-07T09:12:55Z\"/>\n    <dfrn:hide>true</dfrn:hide>\n    <dfrn:birthday>2018-01-01T00:00:00Z</dfrn:birthday>\n    <poco:displayName>friendica1</poco:displayName>\n    <poco:updated>2017-09-07T08:56:53Z</poco:updated>\n    <poco:note/>\n    <poco:preferredUsername>friendica1</poco:preferredUsername>\n    <poco:utcOffset>+00:00</poco:utcOffset>\n  </dfrn:owner>\n  <entry>\n    <author>\n      <name>friendica1</name>\n      <uri>http://friendica.local/profile/friendica1</uri>\n      <dfrn:handle>friendica1@friendica.local</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575\"/>\n    </author>\n    <dfrn:owner>\n      <name>friendica1</name>\n      <uri>http://friendica.local/profile/friendica1</uri>\n      <dfrn:handle>friendica1@friendica.local</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575\"/>\n    </dfrn:owner>\n    <ostatus:conversation href=\"http://friendica.local/display/friendica1/15\" ref=\"http://friendica.local/display/friendica1/15\">http://friendica.local/display/friendica1/15</ostatus:conversation>\n    <id>urn:X-dfrn:friendica.local:2:758d682b1459b10f0be17c3206121357</id>\n    <title/>\n    <published>2017-09-07T09:19:07Z</published>\n    <updated>2017-09-07T09:19:07Z</updated>\n    <dfrn:env>QW5kIHRoaXMgcG9zdCBnb2VzIHRvIGdyb3VwMSBvbmx5IQ</dfrn:env>\n    <content type=\"text\">And this post goes to group1 only!</content>\n    <link rel=\"alternate\" type=\"text/html\" href=\"http://friendica.local/display/758d682b1459b10f0be17c3206121357\"/>\n    <dfrn:comment-allow>1</dfrn:comment-allow>\n    <dfrn:private>1</dfrn:private>\n    <dfrn:diaspora_guid>758d682b1459b10f0be17c3206121357</dfrn:diaspora_guid>\n    <activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>\n    <activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>\n  </entry>\n</feed>','2017-09-07 09:19:08'),('urn:X-dfrn:friendica.local:2:758d682b1859b10ebd6abab685903735','','http://friendica.local/display/friendica1/9','http://friendica.local/display/friendica1/9',1,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<feed xmlns=\"http://www.w3.org/2005/Atom\" xmlns:thr=\"http://purl.org/syndication/thread/1.0\" xmlns:at=\"http://purl.org/atompub/tombstones/1.0\" xmlns:media=\"http://purl.org/syndication/atommedia\" xmlns:dfrn=\"http://purl.org/macgirvin/dfrn/1.0\" xmlns:activity=\"http://activitystrea.ms/spec/1.0/\" xmlns:georss=\"http://www.georss.org/georss\" xmlns:poco=\"http://portablecontacts.net/spec/1.0\" xmlns:ostatus=\"http://ostatus.org/schema/1.0\" xmlns:statusnet=\"http://status.net/schema/api/1/\">\n  <id>http://friendica.local/profile/friendica1</id>\n  <title>friendica1</title>\n  <generator uri=\"https://friendi.ca\" version=\"3.5.3-dev-1234\">Friendica</generator>\n  <link rel=\"license\" href=\"http://creativecommons.org/licenses/by/3.0/\"/>\n  <link rel=\"alternate\" type=\"text/html\" href=\"http://friendica.local/profile/friendica1\"/>\n  <dfrn:account_type>0</dfrn:account_type>\n  <updated>2017-09-07T09:17:49Z</updated>\n  <dfrn:owner>\n    <name dfrn:updated=\"2017-09-07T08:56:53Z\">friendica1</name>\n    <uri dfrn:updated=\"2017-09-07T08:56:53Z\">http://friendica.local/profile/friendica1</uri>\n    <dfrn:handle dfrn:updated=\"2017-09-07T08:56:53Z\">friendica1@friendica.local</dfrn:handle>\n    <link rel=\"photo\" type=\"image/jpeg\" media:width=\"175\" media:height=\"175\" href=\"http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575\" dfrn:updated=\"2017-09-07T09:12:55Z\"/>\n    <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"175\" media:height=\"175\" href=\"http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575\" dfrn:updated=\"2017-09-07T09:12:55Z\"/>\n    <dfrn:hide>true</dfrn:hide>\n    <dfrn:birthday>2018-01-01T00:00:00Z</dfrn:birthday>\n    <poco:displayName>friendica1</poco:displayName>\n    <poco:updated>2017-09-07T08:56:53Z</poco:updated>\n    <poco:note/>\n    <poco:preferredUsername>friendica1</poco:preferredUsername>\n    <poco:utcOffset>+00:00</poco:utcOffset>\n  </dfrn:owner>\n  <entry>\n    <author>\n      <name>friendica1</name>\n      <uri>http://friendica.local/profile/friendica1</uri>\n      <dfrn:handle>friendica1@friendica.local</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575\"/>\n    </author>\n    <dfrn:owner>\n      <name>friendica1</name>\n      <uri>http://friendica.local/profile/friendica1</uri>\n      <dfrn:handle>friendica1@friendica.local</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575\"/>\n    </dfrn:owner>\n    <ostatus:conversation href=\"http://friendica.local/display/friendica1/9\" ref=\"http://friendica.local/display/friendica1/9\">http://friendica.local/display/friendica1/9</ostatus:conversation>\n    <id>urn:X-dfrn:friendica.local:2:758d682b1859b10ebd6abab685903735</id>\n    <title/>\n    <published>2017-09-07T09:17:49Z</published>\n    <updated>2017-09-07T09:17:49Z</updated>\n    <dfrn:env>SGV5LCBncm91cDIsIHRoaXMgcG9zdCBpcyBvbmx5IHZpc2libGUgdG8geW91IQ</dfrn:env>\n    <content type=\"text\">Hey, group2, this post is only visible to you!</content>\n    <link rel=\"alternate\" type=\"text/html\" href=\"http://friendica.local/display/758d682b1859b10ebd6abab685903735\"/>\n    <dfrn:comment-allow>1</dfrn:comment-allow>\n    <dfrn:private>1</dfrn:private>\n    <dfrn:diaspora_guid>758d682b1859b10ebd6abab685903735</dfrn:diaspora_guid>\n    <activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>\n    <activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>\n  </entry>\n</feed>','2017-09-07 09:17:49'),('urn:X-dfrn:friendica.local:3:758d682b1359b10e79d3f8f310513025','','http://friendica.local/display/friendica2/5','http://friendica.local/display/friendica2/5',1,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<feed xmlns=\"http://www.w3.org/2005/Atom\" xmlns:thr=\"http://purl.org/syndication/thread/1.0\" xmlns:at=\"http://purl.org/atompub/tombstones/1.0\" xmlns:media=\"http://purl.org/syndication/atommedia\" xmlns:dfrn=\"http://purl.org/macgirvin/dfrn/1.0\" xmlns:activity=\"http://activitystrea.ms/spec/1.0/\" xmlns:georss=\"http://www.georss.org/georss\" xmlns:poco=\"http://portablecontacts.net/spec/1.0\" xmlns:ostatus=\"http://ostatus.org/schema/1.0\" xmlns:statusnet=\"http://status.net/schema/api/1/\">\n  <id>http://friendica.local/profile/friendica2</id>\n  <title>friendica2</title>\n  <generator uri=\"https://friendi.ca\" version=\"3.5.3-dev-1234\">Friendica</generator>\n  <link rel=\"license\" href=\"http://creativecommons.org/licenses/by/3.0/\"/>\n  <link rel=\"alternate\" type=\"text/html\" href=\"http://friendica.local/profile/friendica2\"/>\n  <dfrn:account_type>0</dfrn:account_type>\n  <updated>2017-09-07T09:16:42Z</updated>\n  <dfrn:owner>\n    <name dfrn:updated=\"2017-09-07T08:58:34Z\">friendica2</name>\n    <uri dfrn:updated=\"2017-09-07T08:58:34Z\">http://friendica.local/profile/friendica2</uri>\n    <dfrn:handle dfrn:updated=\"2017-09-07T08:58:34Z\">friendica2@friendica.local</dfrn:handle>\n    <link rel=\"photo\" type=\"image/jpeg\" media:width=\"175\" media:height=\"175\" href=\"http://friendica.local/photo/profile/3.jpg\" dfrn:updated=\"2017-09-07T08:58:34Z\"/>\n    <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"175\" media:height=\"175\" href=\"http://friendica.local/photo/profile/3.jpg\" dfrn:updated=\"2017-09-07T08:58:34Z\"/>\n    <dfrn:hide>true</dfrn:hide>\n    <dfrn:birthday>2018-01-01T00:00:00Z</dfrn:birthday>\n    <poco:displayName>friendica2</poco:displayName>\n    <poco:updated>2017-09-07T08:58:34Z</poco:updated>\n    <poco:note/>\n    <poco:preferredUsername>friendica2</poco:preferredUsername>\n    <poco:utcOffset>+00:00</poco:utcOffset>\n  </dfrn:owner>\n  <entry>\n    <author>\n      <name>friendica2</name>\n      <uri>http://friendica.local/profile/friendica2</uri>\n      <dfrn:handle>friendica2@friendica.local</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.local/photo/profile/3.jpg\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.local/photo/profile/3.jpg\"/>\n    </author>\n    <dfrn:owner>\n      <name>friendica2</name>\n      <uri>http://friendica.local/profile/friendica2</uri>\n      <dfrn:handle>friendica2@friendica.local</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.local/photo/profile/3.jpg\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.local/photo/profile/3.jpg\"/>\n    </dfrn:owner>\n    <ostatus:conversation href=\"http://friendica.local/display/friendica2/5\" ref=\"http://friendica.local/display/friendica2/5\">http://friendica.local/display/friendica2/5</ostatus:conversation>\n    <id>urn:X-dfrn:friendica.local:3:758d682b1359b10e79d3f8f310513025</id>\n    <title/>\n    <published>2017-09-07T09:16:41Z</published>\n    <updated>2017-09-07T09:16:41Z</updated>\n    <dfrn:env>SGVsbG8sIEknbSBmcmllbmRpY2EyISBIb3cgYXJlIHlvdT8</dfrn:env>\n    <content type=\"text\">Hello, I\'m friendica2! How are you?</content>\n    <link rel=\"alternate\" type=\"text/html\" href=\"http://friendica.local/display/758d682b1359b10e79d3f8f310513025\"/>\n    <dfrn:comment-allow>1</dfrn:comment-allow>\n    <dfrn:diaspora_guid>758d682b1359b10e79d3f8f310513025</dfrn:diaspora_guid>\n    <activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>\n    <activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>\n  </entry>\n</feed>','2017-09-07 09:16:42'),('urn:X-dfrn:friendica.local:3:758d682b2059b10f204f9c2684001373','urn:X-dfrn:friendica.local:2:758d682b1459b10f0be17c3206121357','http://friendica.local/display/friendica1/15','http://friendica.local/display/friendica1/15',1,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<feed xmlns=\"http://www.w3.org/2005/Atom\" xmlns:thr=\"http://purl.org/syndication/thread/1.0\" xmlns:at=\"http://purl.org/atompub/tombstones/1.0\" xmlns:media=\"http://purl.org/syndication/atommedia\" xmlns:dfrn=\"http://purl.org/macgirvin/dfrn/1.0\" xmlns:activity=\"http://activitystrea.ms/spec/1.0/\" xmlns:georss=\"http://www.georss.org/georss\" xmlns:poco=\"http://portablecontacts.net/spec/1.0\" xmlns:ostatus=\"http://ostatus.org/schema/1.0\" xmlns:statusnet=\"http://status.net/schema/api/1/\">\n  <id>http://friendica.local/profile/friendica2</id>\n  <title>friendica2</title>\n  <generator uri=\"https://friendi.ca\" version=\"3.5.3-dev-1234\">Friendica</generator>\n  <link rel=\"license\" href=\"http://creativecommons.org/licenses/by/3.0/\"/>\n  <link rel=\"alternate\" type=\"text/html\" href=\"http://friendica.local/profile/friendica2\"/>\n  <dfrn:account_type>0</dfrn:account_type>\n  <updated>2017-09-07T09:19:28Z</updated>\n  <dfrn:owner>\n    <name dfrn:updated=\"2017-09-07T08:58:34Z\">friendica2</name>\n    <uri dfrn:updated=\"2017-09-07T08:58:34Z\">http://friendica.local/profile/friendica2</uri>\n    <dfrn:handle dfrn:updated=\"2017-09-07T08:58:34Z\">friendica2@friendica.local</dfrn:handle>\n    <link rel=\"photo\" type=\"image/jpeg\" media:width=\"175\" media:height=\"175\" href=\"http://friendica.local/photo/profile/3.jpg\" dfrn:updated=\"2017-09-07T08:58:34Z\"/>\n    <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"175\" media:height=\"175\" href=\"http://friendica.local/photo/profile/3.jpg\" dfrn:updated=\"2017-09-07T08:58:34Z\"/>\n    <dfrn:hide>true</dfrn:hide>\n    <dfrn:birthday>2018-01-01T00:00:00Z</dfrn:birthday>\n    <poco:displayName>friendica2</poco:displayName>\n    <poco:updated>2017-09-07T08:58:34Z</poco:updated>\n    <poco:note/>\n    <poco:preferredUsername>friendica2</poco:preferredUsername>\n    <poco:utcOffset>+00:00</poco:utcOffset>\n  </dfrn:owner>\n  <entry>\n    <author>\n      <name>friendica2</name>\n      <uri>http://friendica.local/profile/friendica2</uri>\n      <dfrn:handle>friendica2@friendica.local</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.local/photo/profile/3.jpg\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.local/photo/profile/3.jpg\"/>\n    </author>\n    <dfrn:owner>\n      <name>friendica2</name>\n      <uri>http://friendica.local/profile/friendica2</uri>\n      <dfrn:handle>friendica2@friendica.local</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.local/photo/profile/3.jpg\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.local/photo/profile/3.jpg\"/>\n    </dfrn:owner>\n    <thr:in-reply-to ref=\"urn:X-dfrn:friendica.local:2:758d682b1459b10f0be17c3206121357\" type=\"text/html\" href=\"http://friendica.local/display/758d682b1459b10f0be17c3206121357\" dfrn:diaspora_guid=\"758d682b1459b10f0be17c3206121357\"/>\n    <ostatus:conversation href=\"http://friendica.local/display/friendica1/15\" ref=\"http://friendica.local/display/friendica1/15\">http://friendica.local/display/friendica1/15</ostatus:conversation>\n    <id>urn:X-dfrn:friendica.local:3:758d682b2059b10f204f9c2684001373</id>\n    <title/>\n    <published>2017-09-07T09:19:28Z</published>\n    <updated>2017-09-07T09:19:28Z</updated>\n    <dfrn:env>WWF5IQ</dfrn:env>\n    <content type=\"text\">Yay!</content>\n    <link rel=\"alternate\" type=\"text/html\" href=\"http://friendica.local/display/758d682b2059b10f204f9c2684001373\"/>\n    <dfrn:private>1</dfrn:private>\n    <dfrn:diaspora_guid>758d682b2059b10f204f9c2684001373</dfrn:diaspora_guid>\n    <dfrn:diaspora_signature>eyJzaWduZWRfdGV4dCI6IntcImF1dGhvclwiOlwiZnJpZW5kaWNhMkBmcmllbmRpY2EuZGV2XCIsXCJndWlkXCI6XCI3NThkNjgyYjIwNTliMTBmMjA0ZjljMjY4NDAwMTM3M1wiLFwiY3JlYXRlZF9hdFwiOlwiMjAxNy0wOS0wN1QwOToxOToyOFpcIixcInBhcmVudF9ndWlkXCI6XCI3NThkNjgyYjE0NTliMTBmMGJlMTdjMzIwNjEyMTM1N1wiLFwidGV4dFwiOlwiWWF5IVwiLFwiYXV0aG9yX3NpZ25hdHVyZVwiOlwiVHk0T25rWlVGS2dyVmtGMGtONUorMjFialZDb3lPd2xqb2o2OGd3V1FSM1hFVEFKNHZcXFwvTzF5RnlwTHl6YnJPWkNCV3pDOWU5V2czZytGVDZvS2RZTEJ6TVI2UXUyVnJBRllNNUpJOWUwRzhJSVZXV0ZHRDJ6RnloQWhKTHd6eTkzQnF6Q1RURDUrM3M1UDJxdVRKa0p5SnF3ZUdjek5sTGsyZW0yNldTaEc5VnBjZ0Z1UUF5VmNRR0FsVGFVQnFGWW43TW8zRDV4V1BncmhXRXpVOEFVMWkzbEtyN2RCZWtjRU12RkY1aDUxRGViWUNNbXVNdnlqQk1XRURqdjhjYm0wdmVcXFwvNHVvMHVVMEQ5dmlrM29DVEF6WkNWM3JjTGt0aHAwTUZJMXN4R2VwSHpra1xcXC9ISlNNa3lCXFxcL1ZxRE5nUGRlTVR0YkNCQ2RLcjBObVNpbTJkVGxPVmFzY21zdnBRb3kxdFhEd3YxK1BNczJ0RVQ0TzErSnJ2UkZKNlZOSzlsS1BzNTlSWjFZaEZmTEluZUtuNjE2bWNKbTlaYkhEaTZ5MXVRUklHdERqTEdndnM2OVRxVkkwMjhqUlUyS2hsdnJOTThTa3R2UlNmYkh1OERwajFuMXhtZWRPd21kbEpzSnZ6R01PZDJmTnJcXFwvRVhnNm1ZN1lwZ1lQQnQ3VDQyTWZScWFqYXFEVWplTjFYS25mdnByT0RVRE5oR21vbDJmN21NTGk0UnBReVNQRmpEQ0MrNHZoNnk4cTZ5YzRUMkNWekVNWlhJckJlRTNRVzQ2SFNncVZtckVwVlA3MlZMNExTV0dTNDZNOENtQlhwOWMrZ2YwN0M1OWRrbFNQZ0dhMEQrNVo3NjhMMjV0SlBxQXZsVkpTaFNxMWhRVlZUVzRxak5BZmR2S0dJOTA9XCJ9Iiwic2lnbmF0dXJlIjpudWxsLCJzaWduZXIiOiIifQ==</dfrn:diaspora_signature>\n    <activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>\n    <activity:object-type>http://activitystrea.ms/schema/1.0/comment</activity:object-type>\n  </entry>\n</feed>','2017-09-07 09:19:28'),('urn:X-dfrn:friendica.local:4:758d682b1059b10ee096f38798595234','urn:X-dfrn:friendica.local:2:758d682b1859b10ebd6abab685903735','http://friendica.local/display/friendica1/9','http://friendica.local/display/friendica1/9',1,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<feed xmlns=\"http://www.w3.org/2005/Atom\" xmlns:thr=\"http://purl.org/syndication/thread/1.0\" xmlns:at=\"http://purl.org/atompub/tombstones/1.0\" xmlns:media=\"http://purl.org/syndication/atommedia\" xmlns:dfrn=\"http://purl.org/macgirvin/dfrn/1.0\" xmlns:activity=\"http://activitystrea.ms/spec/1.0/\" xmlns:georss=\"http://www.georss.org/georss\" xmlns:poco=\"http://portablecontacts.net/spec/1.0\" xmlns:ostatus=\"http://ostatus.org/schema/1.0\" xmlns:statusnet=\"http://status.net/schema/api/1/\">\n  <id>http://friendica.local/profile/friendica3</id>\n  <title>friendica3</title>\n  <generator uri=\"https://friendi.ca\" version=\"3.5.3-dev-1234\">Friendica</generator>\n  <link rel=\"license\" href=\"http://creativecommons.org/licenses/by/3.0/\"/>\n  <link rel=\"alternate\" type=\"text/html\" href=\"http://friendica.local/profile/friendica3\"/>\n  <dfrn:account_type>0</dfrn:account_type>\n  <updated>2017-09-07T09:18:24Z</updated>\n  <dfrn:owner>\n    <name dfrn:updated=\"2017-09-07T08:59:16Z\">friendica3</name>\n    <uri dfrn:updated=\"2017-09-07T08:59:16Z\">http://friendica.local/profile/friendica3</uri>\n    <dfrn:handle dfrn:updated=\"2017-09-07T08:59:16Z\">friendica3@friendica.local</dfrn:handle>\n    <link rel=\"photo\" type=\"image/jpeg\" media:width=\"175\" media:height=\"175\" href=\"http://friendica.local/photo/profile/4.jpg\" dfrn:updated=\"2017-09-07T08:59:16Z\"/>\n    <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"175\" media:height=\"175\" href=\"http://friendica.local/photo/profile/4.jpg\" dfrn:updated=\"2017-09-07T08:59:16Z\"/>\n    <dfrn:hide>true</dfrn:hide>\n    <dfrn:birthday>2018-01-01T00:00:00Z</dfrn:birthday>\n    <poco:displayName>friendica3</poco:displayName>\n    <poco:updated>2017-09-07T08:59:16Z</poco:updated>\n    <poco:note/>\n    <poco:preferredUsername>friendica3</poco:preferredUsername>\n    <poco:utcOffset>+00:00</poco:utcOffset>\n  </dfrn:owner>\n  <entry>\n    <author>\n      <name>friendica3</name>\n      <uri>http://friendica.local/profile/friendica3</uri>\n      <dfrn:handle>friendica3@friendica.local</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.local/photo/profile/4.jpg\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.local/photo/profile/4.jpg\"/>\n    </author>\n    <dfrn:owner>\n      <name>friendica3</name>\n      <uri>http://friendica.local/profile/friendica3</uri>\n      <dfrn:handle>friendica3@friendica.local</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.local/photo/profile/4.jpg\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.local/photo/profile/4.jpg\"/>\n    </dfrn:owner>\n    <thr:in-reply-to ref=\"urn:X-dfrn:friendica.local:2:758d682b1859b10ebd6abab685903735\" type=\"text/html\" href=\"http://friendica.local/display/758d682b1859b10ebd6abab685903735\" dfrn:diaspora_guid=\"758d682b1859b10ebd6abab685903735\"/>\n    <ostatus:conversation href=\"http://friendica.local/display/friendica1/9\" ref=\"http://friendica.local/display/friendica1/9\">http://friendica.local/display/friendica1/9</ostatus:conversation>\n    <id>urn:X-dfrn:friendica.local:4:758d682b1059b10ee096f38798595234</id>\n    <title/>\n    <published>2017-09-07T09:18:24Z</published>\n    <updated>2017-09-07T09:18:24Z</updated>\n    <dfrn:env>Q29vbCE</dfrn:env>\n    <content type=\"text\">Cool!</content>\n    <link rel=\"alternate\" type=\"text/html\" href=\"http://friendica.local/display/758d682b1059b10ee096f38798595234\"/>\n    <dfrn:private>1</dfrn:private>\n    <dfrn:diaspora_guid>758d682b1059b10ee096f38798595234</dfrn:diaspora_guid>\n    <dfrn:diaspora_signature>eyJzaWduZWRfdGV4dCI6IntcImF1dGhvclwiOlwiZnJpZW5kaWNhM0BmcmllbmRpY2EuZGV2XCIsXCJndWlkXCI6XCI3NThkNjgyYjEwNTliMTBlZTA5NmYzODc5ODU5NTIzNFwiLFwiY3JlYXRlZF9hdFwiOlwiMjAxNy0wOS0wN1QwOToxODoyNFpcIixcInBhcmVudF9ndWlkXCI6XCI3NThkNjgyYjE4NTliMTBlYmQ2YWJhYjY4NTkwMzczNVwiLFwidGV4dFwiOlwiQ29vbCFcIixcImF1dGhvcl9zaWduYXR1cmVcIjpcIkJCdEhZK3dRMlpMNk0wQnk2d2s3VHc4OHg1OEJZSFEyeklKMXVmaTZWOXA1a1dyWWIzQUVFT3FIWGJqNE0yOHl6R1VzelZWMVV0UVxcXC9WM2VtbUFraER6elR6NUIzUk5Pd1dqcUZWcGJNbHR6VzR6N2pQNnZmWTE4dytJQ29yTFR1dCt5bm4wbStYU0pKS1E0Rkd3cXB3V0RPUnNzZ2s2aHB1b3E0UWd6SVlSVVNTMXBtME9TVVAxWjNSMk5RWEdhalR6UjY2ZTErYTdIYTRzTG42SjA2UlRmblQ4KzF3WWJNUG5vOUF6RmdhTnRRMk9jSjNwTmtcXFwvVnVxTkRDWEF5RGthZjdjYnBMc0I0UWNEcWsrcDkxR1FcXFwvXFxcL09nRVN3V1QrS0JWUHY2Vm9BMWJadWJBMG5nQkhmZGI0d0RXQ3l0MHd0TGV0cG8yVHVLU3BraWtOOWhEdjR2VWZsbzZUS1NsZHk3WVFSVTBDV0FVSHh3bEtnU244VXVGblxcXC9vZXFcXFwvMXJuenM4MUVHcWNodzZOU1dGZStuTVpXWFQ2a25uZ0dRTnJvdVprV1RKQUJMUlZmdFBTRUZxZjk4eXNPaE90OXFQQ09xOVNjR25LREhyWnlpU08rYVRoN1E3WXBleHM4c1xcXC9ZYlM2ZTNpREFmNzRRYXFQMTRmS2VDbXQzczJ6eWhzT2VteGZiOTY5NDNTWnVpNG13TDNqdDJYaEpodTJHVE5qaklCdithUW9CUnZlR1pEcUVqeWU2eCtEZlQ1d1A5NTVlOGcyNGRCWDVKb0Y5RFlzc044ZCtyT2lVam1hT0wzTjNwd0RucGJMMTJkekgzT014bGdmNkdUdTZBUHRWWGtITDcwZjY1cFxcXC9wZ3AxY3FRN2E0VlRwdUZYbHR1T0VGVFZBUlFBMFJrSHJGUW1FPVwifSIsInNpZ25hdHVyZSI6bnVsbCwic2lnbmVyIjoiIn0=</dfrn:diaspora_signature>\n    <activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>\n    <activity:object-type>http://activitystrea.ms/schema/1.0/comment</activity:object-type>\n  </entry>\n</feed>','2017-09-07 09:18:24'),('urn:X-dfrn:friendica.local:6:758d682b1559b10e589ca69032940355','','http://friendica.local/display/friendica5/1','http://friendica.local/display/friendica5/1',1,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<feed xmlns=\"http://www.w3.org/2005/Atom\" xmlns:thr=\"http://purl.org/syndication/thread/1.0\" xmlns:at=\"http://purl.org/atompub/tombstones/1.0\" xmlns:media=\"http://purl.org/syndication/atommedia\" xmlns:dfrn=\"http://purl.org/macgirvin/dfrn/1.0\" xmlns:activity=\"http://activitystrea.ms/spec/1.0/\" xmlns:georss=\"http://www.georss.org/georss\" xmlns:poco=\"http://portablecontacts.net/spec/1.0\" xmlns:ostatus=\"http://ostatus.org/schema/1.0\" xmlns:statusnet=\"http://status.net/schema/api/1/\">\n  <id>http://friendica.local/profile/friendica5</id>\n  <title>friendica5</title>\n  <generator uri=\"https://friendi.ca\" version=\"3.5.3-dev-1234\">Friendica</generator>\n  <link rel=\"license\" href=\"http://creativecommons.org/licenses/by/3.0/\"/>\n  <link rel=\"alternate\" type=\"text/html\" href=\"http://friendica.local/profile/friendica5\"/>\n  <dfrn:account_type>0</dfrn:account_type>\n  <updated>2017-09-07T09:16:08Z</updated>\n  <dfrn:owner>\n    <name dfrn:updated=\"2017-09-07T09:00:32Z\">friendica5</name>\n    <uri dfrn:updated=\"2017-09-07T09:00:32Z\">http://friendica.local/profile/friendica5</uri>\n    <dfrn:handle dfrn:updated=\"2017-09-07T09:00:32Z\">friendica5@friendica.local</dfrn:handle>\n    <link rel=\"photo\" type=\"image/jpeg\" media:width=\"175\" media:height=\"175\" href=\"http://friendica.local/photo/profile/6.jpg\" dfrn:updated=\"2017-09-07T09:00:32Z\"/>\n    <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"175\" media:height=\"175\" href=\"http://friendica.local/photo/profile/6.jpg\" dfrn:updated=\"2017-09-07T09:00:32Z\"/>\n    <dfrn:hide>true</dfrn:hide>\n    <dfrn:birthday>2018-01-01T00:00:00Z</dfrn:birthday>\n    <poco:displayName>friendica5</poco:displayName>\n    <poco:updated>2017-09-07T09:00:32Z</poco:updated>\n    <poco:note/>\n    <poco:preferredUsername>friendica5</poco:preferredUsername>\n    <poco:utcOffset>+00:00</poco:utcOffset>\n  </dfrn:owner>\n  <entry>\n    <author>\n      <name>friendica5</name>\n      <uri>http://friendica.local/profile/friendica5</uri>\n      <dfrn:handle>friendica5@friendica.local</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.local/photo/profile/6.jpg\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.local/photo/profile/6.jpg\"/>\n    </author>\n    <dfrn:owner>\n      <name>friendica5</name>\n      <uri>http://friendica.local/profile/friendica5</uri>\n      <dfrn:handle>friendica5@friendica.local</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.local/photo/profile/6.jpg\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://friendica.local/photo/profile/6.jpg\"/>\n    </dfrn:owner>\n    <ostatus:conversation href=\"http://friendica.local/display/friendica5/1\" ref=\"http://friendica.local/display/friendica5/1\">http://friendica.local/display/friendica5/1</ostatus:conversation>\n    <id>urn:X-dfrn:friendica.local:6:758d682b1559b10e589ca69032940355</id>\n    <title/>\n    <published>2017-09-07T09:16:08Z</published>\n    <updated>2017-09-07T09:16:08Z</updated>\n    <dfrn:env>SGksIG15IG5hbWUgaXMgZnJpZW5kaWNhNSwgSSBhbSBuZXcgaGVyZSE</dfrn:env>\n    <content type=\"text\">Hi, my name is friendica5, I am new here!</content>\n    <link rel=\"alternate\" type=\"text/html\" href=\"http://friendica.local/display/758d682b1559b10e589ca69032940355\"/>\n    <dfrn:comment-allow>1</dfrn:comment-allow>\n    <dfrn:diaspora_guid>758d682b1559b10e589ca69032940355</dfrn:diaspora_guid>\n    <activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>\n    <activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>\n  </entry>\n</feed>','2017-09-07 09:16:08');
+INSERT INTO `conversation` VALUES (_binary 'http://192.168.22.10/objects/930bb26b-125b-f01c-fe10-e5f035205082','',_binary 'http://192.168.22.10/display/friendica1/3',_binary 'http://192.168.22.10/display/friendica1/3',1,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<feed xmlns=\"http://www.w3.org/2005/Atom\" xmlns:thr=\"http://purl.org/syndication/thread/1.0\" xmlns:at=\"http://purl.org/atompub/tombstones/1.0\" xmlns:media=\"http://purl.org/syndication/atommedia\" xmlns:dfrn=\"http://purl.org/macgirvin/dfrn/1.0\" xmlns:activity=\"http://activitystrea.ms/spec/1.0/\" xmlns:georss=\"http://www.georss.org/georss\" xmlns:poco=\"http://portablecontacts.net/spec/1.0\" xmlns:ostatus=\"http://ostatus.org/schema/1.0\" xmlns:statusnet=\"http://status.net/schema/api/1/\">\n  <id>http://192.168.22.10/profile/friendica1</id>\n  <title>friendica1</title>\n  <generator uri=\"https://friendi.ca\" version=\"2018.12-dev-1290\">Friendica</generator>\n  <link rel=\"license\" href=\"http://creativecommons.org/licenses/by/3.0/\"/>\n  <link rel=\"alternate\" type=\"text/html\" href=\"http://192.168.22.10/profile/friendica1\"/>\n  <dfrn:account_type>0</dfrn:account_type>\n  <updated>2018-11-17T14:00:02Z</updated>\n  <dfrn:owner>\n    <name dfrn:updated=\"2018-11-17T12:39:46Z\">friendica1</name>\n    <uri dfrn:updated=\"2018-11-17T12:39:46Z\">http://192.168.22.10/profile/friendica1</uri>\n    <dfrn:handle dfrn:updated=\"2018-11-17T12:39:46Z\">friendica1@192.168.22.10</dfrn:handle>\n    <link rel=\"photo\" type=\"image/jpeg\" media:width=\"300\" media:height=\"300\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\" dfrn:updated=\"2018-11-17T12:50:07Z\"/>\n    <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"300\" media:height=\"300\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\" dfrn:updated=\"2018-11-17T12:50:07Z\"/>\n    <dfrn:hide>true</dfrn:hide>\n    <poco:displayName>friendica1</poco:displayName>\n    <poco:updated>2018-11-17T12:39:46Z</poco:updated>\n    <poco:note/>\n    <poco:preferredUsername>friendica1</poco:preferredUsername>\n    <poco:utcOffset>+00:00</poco:utcOffset>\n  </dfrn:owner>\n  <entry>\n    <author>\n      <name>friendica1</name>\n      <uri>http://192.168.22.10/profile/friendica1</uri>\n      <dfrn:handle>friendica1@192.168.22.10</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\"/>\n    </author>\n    <dfrn:owner>\n      <name>friendica1</name>\n      <uri>http://192.168.22.10/profile/friendica1</uri>\n      <dfrn:handle>friendica1@192.168.22.10</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\"/>\n    </dfrn:owner>\n    <ostatus:conversation href=\"http://192.168.22.10/display/friendica1/3\" ref=\"http://192.168.22.10/display/friendica1/3\">http://192.168.22.10/display/friendica1/3</ostatus:conversation>\n    <id>http://192.168.22.10/objects/930bb26b-125b-f01c-fe10-e5f035205082</id>\n    <title/>\n    <published>2018-11-17T13:51:58Z</published>\n    <updated>2018-11-17T13:51:58Z</updated>\n    <dfrn:env>VGhpcyBpcyBhIHBvc3RpbmcgdG8gZ3JvdXAgMS4</dfrn:env>\n    <content type=\"text\">This is a posting to group 1.</content>\n    <link rel=\"alternate\" type=\"text/html\" href=\"http://192.168.22.10/display/930bb26b-125b-f01c-fe10-e5f035205082\"/>\n    <dfrn:comment-allow>1</dfrn:comment-allow>\n    <dfrn:private>1</dfrn:private>\n    <dfrn:diaspora_guid>930bb26b-125b-f01c-fe10-e5f035205082</dfrn:diaspora_guid>\n    <activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>\n    <activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>\n  </entry>\n</feed>','2018-11-17 14:00:02'),(_binary 'http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928',_binary 'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783','',_binary 'http://192.168.22.10/display/friendica1/1',0,'{\"@context\":[\"https://www.w3.org/ns/activitystreams\",\"https://w3id.org/security/v1\",{\"vcard\":\"http://www.w3.org/2006/vcard/ns#\",\"dfrn\":\"http://purl.org/macgirvin/dfrn/1.0/\",\"diaspora\":\"https://diasporafoundation.org/ns/\",\"manuallyApprovesFollowers\":\"as:manuallyApprovesFollowers\",\"sensitive\":\"as:sensitive\",\"Hashtag\":\"as:Hashtag\"}],\"id\":\"http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928#Create\",\"type\":\"Create\",\"actor\":\"http://192.168.22.10/profile/friendica4\",\"published\":\"2018-11-17T13:54:22Z\",\"instrument\":{\"type\":\"Service\",\"name\":\"Friendica \'The Tazmans Flax-lily\' 2018.12-dev-1290; http://192.168.22.10\"},\"to\":[\"https://www.w3.org/ns/activitystreams#Public\",\"http://192.168.22.10/profile/friendica1\"],\"cc\":[\"http://192.168.22.10/followers/friendica4\",\"http://192.168.22.10/profile/friendica2\"],\"object\":{\"id\":\"http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928\",\"type\":\"Note\",\"summary\":null,\"inReplyTo\":\"http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783\",\"diaspora:guid\":\"930bb26b-135b-f01d-8e3d-8cc050176928\",\"published\":\"2018-11-17T13:54:22Z\",\"url\":\"http://192.168.22.10/display/930bb26b-135b-f01d-8e3d-8cc050176928\",\"attributedTo\":\"http://192.168.22.10/profile/friendica4\",\"sensitive\":false,\"context\":\"http://192.168.22.10/display/friendica1/1\",\"content\":\"friendica 4 testing <img class=\\\"smiley\\\" src=\\\"http://192.168.22.10/images/smiley-smile.gif\\\" alt=\\\":-)\\\" title=\\\":-)\\\">\",\"source\":{\"content\":\"friendica 4 testing :-)\",\"mediaType\":\"text/bbcode\"},\"diaspora:comment\":\"{\\\"author\\\":\\\"friendica4@192.168.22.10\\\",\\\"guid\\\":\\\"930bb26b-135b-f01d-8e3d-8cc050176928\\\",\\\"created_at\\\":\\\"2018-11-17T13:54:22Z\\\",\\\"parent_guid\\\":\\\"930bb26b-205b-f01c-e722-bc8141142783\\\",\\\"text\\\":\\\"friendica 4 testing ![:-)](http:\\\\/\\\\/192.168.22.10\\\\/images\\\\/smiley-smile.gif \\\\\\\":-)\\\\\\\")\\\",\\\"author_signature\\\":\\\"Vb6Zsv9mbohlyjwpJygXcWfB+hheZSwDPaIg91l3ktTy\\\\/U7LtnjaPMwi1reyVMKJkJOStrBKbLU4K4Wf5H16hjIRHK76gvsFjAHNJ0+38RKeYhOoYrDhG037XqeqO\\\\/HiXvQUXrOEmOck4P1Z+25W6pW38HuSZOdja02fF1VdUipSytxuJam5JBeo0akZAAWSRw1\\\\/OseUMxdawEoUz0XKUoufNlfgFjU\\\\/Z6TgzEEC\\\\/bGr7JyOMMqX6BaGQi65WLuBdtSPteFvz+qWfBcosBmpuoTQwvx7p68WcNyv2B\\\\/zP5N1RHL1\\\\/JTpYX3rD9aab9bFei5VuMczDzU6wBxZUF718MG+00A3zJ9Lh7Zikad3Ryn\\\\/HQvdT5DlNyCVIs\\\\/9hLRsEUSwvoxnCR1vOwt7oZtwejHiCcDcrM+UM7nykblb6Ms0ds2RZ3BrlSU0JFRjzIj+sDq\\\\/NBcwxRPec2rsdlAF6ogxRx3I19173ZF6RrL+mWT1TpKPOpIseN5megEeInHf3RAn68JmE\\\\/6v3DBsEPNTleofzzJQpMIrN5j4hXps5O7uB8YJ3+2rHUs\\\\/qHz7M8LhndFqXeqtCbLeQOkeZcwqV+5KvXKg+yezZzQBG21RE+JYMJx1LIZ7N+22JtcdSMCwhYcVUTIfuRX2ka+Pfuq2Dszm0PBwq3GNC5wrXpwTlLk=\\\"}\",\"attachment\":[],\"tag\":[],\"to\":[\"https://www.w3.org/ns/activitystreams#Public\",\"http://192.168.22.10/profile/friendica1\"],\"cc\":[\"http://192.168.22.10/followers/friendica4\",\"http://192.168.22.10/profile/friendica2\"]},\"signature\":{\"type\":\"RsaSignature2017\",\"nonce\":\"b65c0d86d324429297ed66e65ab2b5d68388e37e8d323b9fae5d35caf8c89434\",\"creator\":\"#main-key\",\"created\":\"2018-11-17T14:00:02Z\",\"signatureValue\":\"\"}}','2018-11-17 14:00:04'),(_binary 'http://192.168.22.10/objects/930bb26b-155b-f01d-60ee-5ee161000810',_binary 'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',_binary 'http://192.168.22.10/display/friendica1/1',_binary 'http://192.168.22.10/display/friendica1/1',1,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<feed xmlns=\"http://www.w3.org/2005/Atom\" xmlns:thr=\"http://purl.org/syndication/thread/1.0\" xmlns:at=\"http://purl.org/atompub/tombstones/1.0\" xmlns:media=\"http://purl.org/syndication/atommedia\" xmlns:dfrn=\"http://purl.org/macgirvin/dfrn/1.0\" xmlns:activity=\"http://activitystrea.ms/spec/1.0/\" xmlns:georss=\"http://www.georss.org/georss\" xmlns:poco=\"http://portablecontacts.net/spec/1.0\" xmlns:ostatus=\"http://ostatus.org/schema/1.0\" xmlns:statusnet=\"http://status.net/schema/api/1/\">\n  <id>http://192.168.22.10/profile/friendica2</id>\n  <title>friendica2</title>\n  <generator uri=\"https://friendi.ca\" version=\"2018.12-dev-1290\">Friendica</generator>\n  <link rel=\"license\" href=\"http://creativecommons.org/licenses/by/3.0/\"/>\n  <link rel=\"alternate\" type=\"text/html\" href=\"http://192.168.22.10/profile/friendica2\"/>\n  <dfrn:account_type>0</dfrn:account_type>\n  <updated>2018-11-17T14:00:04Z</updated>\n  <dfrn:owner>\n    <name dfrn:updated=\"2018-11-17T12:40:07Z\">friendica2</name>\n    <uri dfrn:updated=\"2018-11-17T12:40:07Z\">http://192.168.22.10/profile/friendica2</uri>\n    <dfrn:handle dfrn:updated=\"2018-11-17T12:40:07Z\">friendica2@192.168.22.10</dfrn:handle>\n    <link rel=\"photo\" type=\"image/jpeg\" media:width=\"300\" media:height=\"300\" href=\"http://192.168.22.10/photo/15820583805bf00e7fd7909940374120-4.jpg?ts=1542459007\" dfrn:updated=\"2018-11-17T12:50:07Z\"/>\n    <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"300\" media:height=\"300\" href=\"http://192.168.22.10/photo/15820583805bf00e7fd7909940374120-4.jpg?ts=1542459007\" dfrn:updated=\"2018-11-17T12:50:07Z\"/>\n    <dfrn:hide>true</dfrn:hide>\n    <poco:displayName>friendica2</poco:displayName>\n    <poco:updated>2018-11-17T12:40:07Z</poco:updated>\n    <poco:note/>\n    <poco:preferredUsername>friendica2</poco:preferredUsername>\n    <poco:utcOffset>+00:00</poco:utcOffset>\n  </dfrn:owner>\n  <entry>\n    <author>\n      <name>friendica2</name>\n      <uri>http://192.168.22.10/profile/friendica2</uri>\n      <dfrn:handle>friendica2@192.168.22.10</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/53312796025bf00e7f82e82896954942-4.jpg?ts=1542462605\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/53312796025bf00e7f82e82896954942-4.jpg?ts=1542462605\"/>\n    </author>\n    <dfrn:owner>\n      <name>friendica2</name>\n      <uri>http://192.168.22.10/profile/friendica2</uri>\n      <dfrn:handle>friendica2@192.168.22.10</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/53312796025bf00e7f82e82896954942-4.jpg?ts=1542462605\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/53312796025bf00e7f82e82896954942-4.jpg?ts=1542462605\"/>\n    </dfrn:owner>\n    <thr:in-reply-to ref=\"http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783\" type=\"text/html\" href=\"http://192.168.22.10/display/930bb26b-205b-f01c-e722-bc8141142783\" dfrn:diaspora_guid=\"930bb26b-205b-f01c-e722-bc8141142783\"/>\n    <ostatus:conversation href=\"http://192.168.22.10/display/friendica1/1\" ref=\"http://192.168.22.10/display/friendica1/1\">http://192.168.22.10/display/friendica1/1</ostatus:conversation>\n    <id>http://192.168.22.10/objects/930bb26b-155b-f01d-60ee-5ee161000810</id>\n    <title/>\n    <published>2018-11-17T13:53:36Z</published>\n    <updated>2018-11-17T13:53:36Z</updated>\n    <dfrn:env>ZnJpZW5kaWNhIDIgY2hlY2tpbmcgaW4u</dfrn:env>\n    <content type=\"text\">friendica 2 checking in.</content>\n    <link rel=\"alternate\" type=\"text/html\" href=\"http://192.168.22.10/display/930bb26b-155b-f01d-60ee-5ee161000810\"/>\n    <dfrn:comment-allow>1</dfrn:comment-allow>\n    <dfrn:diaspora_guid>930bb26b-155b-f01d-60ee-5ee161000810</dfrn:diaspora_guid>\n    <dfrn:diaspora_signature>eyJzaWduZWRfdGV4dCI6IntcImF1dGhvclwiOlwiZnJpZW5kaWNhMkAxOTIuMTY4LjIyLjEwXCIsXCJndWlkXCI6XCI5MzBiYjI2Yi0xNTViLWYwMWQtNjBlZS01ZWUxNjEwMDA4MTBcIixcImNyZWF0ZWRfYXRcIjpcIjIwMTgtMTEtMTdUMTM6NTM6MzZaXCIsXCJwYXJlbnRfZ3VpZFwiOlwiOTMwYmIyNmItMjA1Yi1mMDFjLWU3MjItYmM4MTQxMTQyNzgzXCIsXCJ0ZXh0XCI6XCJmcmllbmRpY2EgMiBjaGVja2luZyBpbi5cIixcImF1dGhvcl9zaWduYXR1cmVcIjpcIkNMTDJcXFwvcnBzZHArRExoK1d1VVZHRkhTTFIwVDB3SFhHbVNzR3lEWmxVdktick5JTGd0ZkNsWDdlWHpnc3dMYmE5d0dBK24xdUdkMlZBRlc2am9yN2JoVGJxdnhJeFxcXC9yOU1BeXNnc3VGS2RNVHVBbjVFNndtTWVUM0lEVW1udnVZSTQrUXBmQldYSmRwRHpib2w5alJFM3psVWpKakErRHBDWUpkNDY2V3lsMGtvUzh1RHBzd29XM2Y0SXRcXFwvZnhVSDRYUzArTnAxR2xCQjRYRTFSZDNcXFwvM1ZzUU1sdHhiUUNZOGlRdHFcXFwvNmZRRFEzbjFIVUZFRVxcXC9uRWQ1eGFITEwyRllJNHVkWkUrVmRYZ1YraVNhRTdGa3NIZWJoRk9jMU9IalFZM1ByTTdwSmtaWmpiaVJNRElGMFk3UURjN1p6dEFTMlVaaTRvbHJrWHBXQUdYaXE5MW8ycVNvQlRnMldnQ1Z4ait6MzU1QkxJODU5Tk1nT1pWOU1DQk1RSURYZGl1OGRaeVxcXC9CNXR5cklLckF0QWw1ZFNlREZaVVhDenR4TzFCalZOcWRrUytlbWxzS0ZLMG1pRDZVcXNTa0FTZUd4dTZQUitNK0tVVkVqMzRQbmxWZzdYTzh1cFJHSVU3d2Vmemp6cjRIK21HS04xWHhmS3Z3UXZWM0piS0V4WStsenZkRkhJVUhKOERNd2ptY1NBZHpBYjduS2g1VFhvWUxlTFlSUGpFczY2dEE2VThRZFBWcHJFZFVpT3Qzb1l6dFVBamd1Vzlxb05ESkQ3VXdjZDEwVW11eVgzODJIbUhqWms4KzVmYnFKVXlEYnJ4NXh1Y0tBM1lsdU9Pb2lDVGNRbm5GYWpiOEU5aVZRY2IyRmhaYWNlZDJLWnNpNVRVUWFlRnh6Ym9KVEM1d2lVPVwifSIsInNpZ25hdHVyZSI6bnVsbCwic2lnbmVyIjpudWxsfQ==</dfrn:diaspora_signature>\n    <activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>\n    <activity:object-type>http://activitystrea.ms/schema/1.0/comment</activity:object-type>\n  </entry>\n</feed>','2018-11-17 14:00:04'),(_binary 'http://192.168.22.10/objects/930bb26b-195b-f01f-925f-1a4363126542','',_binary 'http://192.168.22.10/display/friendica4/26',_binary 'http://192.168.22.10/display/friendica4/26',1,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<feed xmlns=\"http://www.w3.org/2005/Atom\" xmlns:thr=\"http://purl.org/syndication/thread/1.0\" xmlns:at=\"http://purl.org/atompub/tombstones/1.0\" xmlns:media=\"http://purl.org/syndication/atommedia\" xmlns:dfrn=\"http://purl.org/macgirvin/dfrn/1.0\" xmlns:activity=\"http://activitystrea.ms/spec/1.0/\" xmlns:georss=\"http://www.georss.org/georss\" xmlns:poco=\"http://portablecontacts.net/spec/1.0\" xmlns:ostatus=\"http://ostatus.org/schema/1.0\" xmlns:statusnet=\"http://status.net/schema/api/1/\">\n  <id>http://192.168.22.10/profile/friendica4</id>\n  <title>friendica4</title>\n  <generator uri=\"https://friendi.ca\" version=\"2018.12-dev-1290\">Friendica</generator>\n  <link rel=\"license\" href=\"http://creativecommons.org/licenses/by/3.0/\"/>\n  <link rel=\"alternate\" type=\"text/html\" href=\"http://192.168.22.10/profile/friendica4\"/>\n  <dfrn:account_type>0</dfrn:account_type>\n  <updated>2018-11-17T14:03:08Z</updated>\n  <dfrn:owner>\n    <name dfrn:updated=\"2018-11-17T12:41:59Z\">friendica4</name>\n    <uri dfrn:updated=\"2018-11-17T12:41:59Z\">http://192.168.22.10/profile/friendica4</uri>\n    <dfrn:handle dfrn:updated=\"2018-11-17T12:41:59Z\">friendica4@192.168.22.10</dfrn:handle>\n    <link rel=\"photo\" type=\"image/jpeg\" media:width=\"300\" media:height=\"300\" href=\"http://192.168.22.10/photo/97971161215bf00e801fdd7464746900-4.jpg?ts=1542459008\" dfrn:updated=\"2018-11-17T12:50:08Z\"/>\n    <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"300\" media:height=\"300\" href=\"http://192.168.22.10/photo/97971161215bf00e801fdd7464746900-4.jpg?ts=1542459008\" dfrn:updated=\"2018-11-17T12:50:08Z\"/>\n    <dfrn:hide>true</dfrn:hide>\n    <poco:displayName>friendica4</poco:displayName>\n    <poco:updated>2018-11-17T12:41:59Z</poco:updated>\n    <poco:note/>\n    <poco:preferredUsername>friendica4</poco:preferredUsername>\n    <poco:utcOffset>+00:00</poco:utcOffset>\n  </dfrn:owner>\n  <entry>\n    <author>\n      <name>friendica4</name>\n      <uri>http://192.168.22.10/profile/friendica4</uri>\n      <dfrn:handle>friendica4@192.168.22.10</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/97971161215bf00e801fdd7464746900-4.jpg?ts=1542459008\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/97971161215bf00e801fdd7464746900-4.jpg?ts=1542459008\"/>\n    </author>\n    <dfrn:owner>\n      <name>friendica4</name>\n      <uri>http://192.168.22.10/profile/friendica4</uri>\n      <dfrn:handle>friendica4@192.168.22.10</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/97971161215bf00e801fdd7464746900-4.jpg?ts=1542459008\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/97971161215bf00e801fdd7464746900-4.jpg?ts=1542459008\"/>\n    </dfrn:owner>\n    <ostatus:conversation href=\"http://192.168.22.10/display/friendica4/26\" ref=\"http://192.168.22.10/display/friendica4/26\">http://192.168.22.10/display/friendica4/26</ostatus:conversation>\n    <id>http://192.168.22.10/objects/930bb26b-195b-f01f-925f-1a4363126542</id>\n    <title/>\n    <published>2018-11-17T14:02:58Z</published>\n    <updated>2018-11-17T14:02:58Z</updated>\n    <dfrn:env>VGVzdGluZy4uLg</dfrn:env>\n    <content type=\"text\">Testing...</content>\n    <link rel=\"alternate\" type=\"text/html\" href=\"http://192.168.22.10/display/930bb26b-195b-f01f-925f-1a4363126542\"/>\n    <dfrn:comment-allow>1</dfrn:comment-allow>\n    <dfrn:diaspora_guid>930bb26b-195b-f01f-925f-1a4363126542</dfrn:diaspora_guid>\n    <activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>\n    <activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>\n  </entry>\n</feed>','2018-11-17 14:03:08'),(_binary 'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783','',_binary 'http://192.168.22.10/display/friendica1/1',_binary 'http://192.168.22.10/display/friendica1/1',1,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<feed xmlns=\"http://www.w3.org/2005/Atom\" xmlns:thr=\"http://purl.org/syndication/thread/1.0\" xmlns:at=\"http://purl.org/atompub/tombstones/1.0\" xmlns:media=\"http://purl.org/syndication/atommedia\" xmlns:dfrn=\"http://purl.org/macgirvin/dfrn/1.0\" xmlns:activity=\"http://activitystrea.ms/spec/1.0/\" xmlns:georss=\"http://www.georss.org/georss\" xmlns:poco=\"http://portablecontacts.net/spec/1.0\" xmlns:ostatus=\"http://ostatus.org/schema/1.0\" xmlns:statusnet=\"http://status.net/schema/api/1/\">\n  <id>http://192.168.22.10/profile/friendica1</id>\n  <title>friendica1</title>\n  <generator uri=\"https://friendi.ca\" version=\"2018.12-dev-1290\">Friendica</generator>\n  <link rel=\"license\" href=\"http://creativecommons.org/licenses/by/3.0/\"/>\n  <link rel=\"alternate\" type=\"text/html\" href=\"http://192.168.22.10/profile/friendica1\"/>\n  <dfrn:account_type>0</dfrn:account_type>\n  <updated>2018-11-17T14:00:01Z</updated>\n  <dfrn:owner>\n    <name dfrn:updated=\"2018-11-17T12:39:46Z\">friendica1</name>\n    <uri dfrn:updated=\"2018-11-17T12:39:46Z\">http://192.168.22.10/profile/friendica1</uri>\n    <dfrn:handle dfrn:updated=\"2018-11-17T12:39:46Z\">friendica1@192.168.22.10</dfrn:handle>\n    <link rel=\"photo\" type=\"image/jpeg\" media:width=\"300\" media:height=\"300\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\" dfrn:updated=\"2018-11-17T12:50:07Z\"/>\n    <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"300\" media:height=\"300\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\" dfrn:updated=\"2018-11-17T12:50:07Z\"/>\n    <dfrn:hide>true</dfrn:hide>\n    <poco:displayName>friendica1</poco:displayName>\n    <poco:updated>2018-11-17T12:39:46Z</poco:updated>\n    <poco:note/>\n    <poco:preferredUsername>friendica1</poco:preferredUsername>\n    <poco:utcOffset>+00:00</poco:utcOffset>\n  </dfrn:owner>\n  <entry>\n    <author>\n      <name>friendica1</name>\n      <uri>http://192.168.22.10/profile/friendica1</uri>\n      <dfrn:handle>friendica1@192.168.22.10</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\"/>\n    </author>\n    <dfrn:owner>\n      <name>friendica1</name>\n      <uri>http://192.168.22.10/profile/friendica1</uri>\n      <dfrn:handle>friendica1@192.168.22.10</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\"/>\n    </dfrn:owner>\n    <ostatus:conversation href=\"http://192.168.22.10/display/friendica1/1\" ref=\"http://192.168.22.10/display/friendica1/1\">http://192.168.22.10/display/friendica1/1</ostatus:conversation>\n    <id>http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783</id>\n    <title/>\n    <published>2018-11-17T13:51:35Z</published>\n    <updated>2018-11-17T13:51:35Z</updated>\n    <dfrn:env>VGhpcyBpcyBhIHB1YmxpYyB0ZXN0IHBvc3Rpbmcu</dfrn:env>\n    <content type=\"text\">This is a public test posting.</content>\n    <link rel=\"alternate\" type=\"text/html\" href=\"http://192.168.22.10/display/930bb26b-205b-f01c-e722-bc8141142783\"/>\n    <dfrn:comment-allow>1</dfrn:comment-allow>\n    <dfrn:diaspora_guid>930bb26b-205b-f01c-e722-bc8141142783</dfrn:diaspora_guid>\n    <activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>\n    <activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>\n  </entry>\n</feed>','2018-11-17 14:00:01'),(_binary 'http://192.168.22.10/objects/930bb26b-205b-f01f-5a43-237373720429',_binary 'http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928',_binary 'http://192.168.22.10/display/friendica1/1',_binary 'http://192.168.22.10/display/friendica1/1',1,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<feed xmlns=\"http://www.w3.org/2005/Atom\" xmlns:thr=\"http://purl.org/syndication/thread/1.0\" xmlns:at=\"http://purl.org/atompub/tombstones/1.0\" xmlns:media=\"http://purl.org/syndication/atommedia\" xmlns:dfrn=\"http://purl.org/macgirvin/dfrn/1.0\" xmlns:activity=\"http://activitystrea.ms/spec/1.0/\" xmlns:georss=\"http://www.georss.org/georss\" xmlns:poco=\"http://portablecontacts.net/spec/1.0\" xmlns:ostatus=\"http://ostatus.org/schema/1.0\" xmlns:statusnet=\"http://status.net/schema/api/1/\">\n  <id>http://192.168.22.10/profile/friendica1</id>\n  <title>friendica1</title>\n  <generator uri=\"https://friendi.ca\" version=\"2018.12-dev-1290\">Friendica</generator>\n  <link rel=\"license\" href=\"http://creativecommons.org/licenses/by/3.0/\"/>\n  <link rel=\"alternate\" type=\"text/html\" href=\"http://192.168.22.10/profile/friendica1\"/>\n  <dfrn:account_type>0</dfrn:account_type>\n  <updated>2018-11-17T14:03:07Z</updated>\n  <dfrn:owner>\n    <name dfrn:updated=\"2018-11-17T12:39:46Z\">friendica1</name>\n    <uri dfrn:updated=\"2018-11-17T12:39:46Z\">http://192.168.22.10/profile/friendica1</uri>\n    <dfrn:handle dfrn:updated=\"2018-11-17T12:39:46Z\">friendica1@192.168.22.10</dfrn:handle>\n    <link rel=\"photo\" type=\"image/jpeg\" media:width=\"300\" media:height=\"300\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\" dfrn:updated=\"2018-11-17T12:50:07Z\"/>\n    <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"300\" media:height=\"300\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\" dfrn:updated=\"2018-11-17T12:50:07Z\"/>\n    <dfrn:hide>true</dfrn:hide>\n    <poco:displayName>friendica1</poco:displayName>\n    <poco:updated>2018-11-17T12:39:46Z</poco:updated>\n    <poco:note/>\n    <poco:preferredUsername>friendica1</poco:preferredUsername>\n    <poco:utcOffset>+00:00</poco:utcOffset>\n  </dfrn:owner>\n  <entry>\n    <author>\n      <name>friendica1</name>\n      <uri>http://192.168.22.10/profile/friendica1</uri>\n      <dfrn:handle>friendica1@192.168.22.10</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\"/>\n    </author>\n    <dfrn:owner>\n      <name>friendica1</name>\n      <uri>http://192.168.22.10/profile/friendica1</uri>\n      <dfrn:handle>friendica1@192.168.22.10</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\"/>\n    </dfrn:owner>\n    <ostatus:conversation href=\"http://192.168.22.10/display/friendica1/1\" ref=\"http://192.168.22.10/display/friendica1/1\">http://192.168.22.10/display/friendica1/1</ostatus:conversation>\n    <id>http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783</id>\n    <title/>\n    <published>2018-11-17T13:51:35Z</published>\n    <updated>2018-11-17T13:51:35Z</updated>\n    <dfrn:env>VGhpcyBpcyBhIHB1YmxpYyB0ZXN0IHBvc3Rpbmcu</dfrn:env>\n    <content type=\"text\">This is a public test posting.</content>\n    <link rel=\"alternate\" type=\"text/html\" href=\"http://192.168.22.10/display/930bb26b-205b-f01c-e722-bc8141142783\"/>\n    <dfrn:comment-allow>1</dfrn:comment-allow>\n    <dfrn:diaspora_guid>930bb26b-205b-f01c-e722-bc8141142783</dfrn:diaspora_guid>\n    <activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>\n    <activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>\n  </entry>\n  <entry>\n    <author>\n      <name>friendica1</name>\n      <uri>http://192.168.22.10/profile/friendica1</uri>\n      <dfrn:handle>friendica1@192.168.22.10</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\"/>\n    </author>\n    <dfrn:owner>\n      <name>friendica1</name>\n      <uri>http://192.168.22.10/profile/friendica1</uri>\n      <dfrn:handle>friendica1@192.168.22.10</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\"/>\n    </dfrn:owner>\n    <thr:in-reply-to ref=\"http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928\" type=\"text/html\" href=\"http://192.168.22.10/display/930bb26b-135b-f01d-8e3d-8cc050176928\" dfrn:diaspora_guid=\"930bb26b-135b-f01d-8e3d-8cc050176928\"/>\n    <ostatus:conversation href=\"http://192.168.22.10/display/friendica1/1\" ref=\"http://192.168.22.10/display/friendica1/1\">http://192.168.22.10/display/friendica1/1</ostatus:conversation>\n    <id>http://192.168.22.10/objects/930bb26b-205b-f01f-5a43-237373720429</id>\n    <title/>\n    <published>2018-11-17T14:02:02Z</published>\n    <updated>2018-11-17T14:02:02Z</updated>\n    <dfrn:env>aHR0cDovL2FjdGl2aXR5c3RyZWEubXMvc2NoZW1hLzEuMC9saWtl</dfrn:env>\n    <content type=\"text\">http://activitystrea.ms/schema/1.0/like</content>\n    <link rel=\"alternate\" type=\"text/html\" href=\"http://192.168.22.10/display/930bb26b-765b-f01f-5a43-22a585408489\"/>\n    <dfrn:comment-allow>1</dfrn:comment-allow>\n    <dfrn:diaspora_guid>930bb26b-765b-f01f-5a43-22a585408489</dfrn:diaspora_guid>\n    <dfrn:diaspora_signature>eyJzaWduZWRfdGV4dCI6IntcImF1dGhvclwiOlwiZnJpZW5kaWNhMUAxOTIuMTY4LjIyLjEwXCIsXCJndWlkXCI6XCI5MzBiYjI2Yi03NjViLWYwMWYtNWE0My0yMmE1ODU0MDg0ODlcIixcInBhcmVudF9ndWlkXCI6XCI5MzBiYjI2Yi0xMzViLWYwMWQtOGUzZC04Y2MwNTAxNzY5MjhcIixcInBhcmVudF90eXBlXCI6XCJDb21tZW50XCIsXCJwb3NpdGl2ZVwiOlwidHJ1ZVwiLFwiYXV0aG9yX3NpZ25hdHVyZVwiOlwiUTdXcVZ6MkF2dUYybm9ZanNxM0RRQjNqXFxcLzkrV1JtaUpDaXkzRE1KR1lXTktYemdpazZMTnJqMnJjRUdVTlk5elFRTFhnS25jQlBaXFxcL3owQ0JcXFwvdGNFaU0xVUM2ODNEUURrWmgzNUVyYm1lWFNpbENWWGluRnVQZG9oXFxcL0FSZCtFQzQxcjdYdjBCWmxZTmZWTHFiSHJTWlpTY1d6amlYMVhEWGd1RkZjUVFBcHY5bEZINTJ1XFxcL0NcXFwvclVHS09VTlxcXC83blg5ZldFdlBZU3lucVZheWJaOFBkS1pHOU9hSTJ5czVMWldzUmVENFxcXC82SnY0bktmQ2twNkp2bEpHdXVTejBhenJnODA0WDVcXFwvRFU0WTB2VThVbDN6VE5mNHk5cDd0am9PYU5TZlR0MDFOdlJVcG1DV1xcXC9UaXo3UDVtOFYwWnI1Y3hGV1JPbjlUcFl0RVlyZjE4OTdRSHZBREV5TnZHNHhmaENaT3pacTBjNmo1eTd6UVRURFVXZzNZSnNOXFxcL3hhK2wxVlhSUGhjVXc2blVrT1Zjckx3T25sZjk1aWJKKzdZMHFQM3gzOFk2S2k2NkpISHRwQmdNeDE3RGE1eE9IdWtLemowa2Q2XFxcL2ptcURTOHc4Nm1UaUV4NXhieEJxU1xcXC9wYzlnODVRSFxcXC8zUW03Q0tiQ1BmRUNhMkxHaDk0M0pzSjAzU2NvSzFaY3JkVzZKSEZmMHRCWUo4SUN6ZVlTaG9CVktaWTlrNjg3VFFhNVNYbThwQmxmdE14WTlDQVQ4TklCcFpWRWxpdnlSdSsyR2x2aFg3VEgwMm1zNVBkYmp4b2VIYUNDa1BmcWcxQVpLRGhuK3U3OXVsb2RVQW5iOFNDRlxcXC9VYlp6RE10RXdLTVoyWDZPNmlhWEJWYXJPWDRWaHd3aFVmY25zRDFEaXFCVUZMeHM9XCJ9Iiwic2lnbmF0dXJlIjpudWxsLCJzaWduZXIiOm51bGx9</dfrn:diaspora_signature>\n    <activity:verb>http://activitystrea.ms/schema/1.0/like</activity:verb>\n    <activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>\n  </entry>\n</feed>','2018-11-17 14:03:07'),(_binary 'http://192.168.22.10/objects/930bb26b-205b-f01f-5a43-237373720429#Like',_binary 'http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928','','',0,'{\"@context\":[\"https://www.w3.org/ns/activitystreams\",\"https://w3id.org/security/v1\",{\"vcard\":\"http://www.w3.org/2006/vcard/ns#\",\"dfrn\":\"http://purl.org/macgirvin/dfrn/1.0/\",\"diaspora\":\"https://diasporafoundation.org/ns/\",\"manuallyApprovesFollowers\":\"as:manuallyApprovesFollowers\",\"sensitive\":\"as:sensitive\",\"Hashtag\":\"as:Hashtag\"}],\"id\":\"http://192.168.22.10/objects/930bb26b-205b-f01f-5a43-237373720429#Like\",\"type\":\"Like\",\"actor\":\"http://192.168.22.10/profile/friendica1\",\"published\":\"2018-11-17T14:02:02Z\",\"instrument\":{\"type\":\"Service\",\"name\":\"Friendica \'The Tazmans Flax-lily\' 2018.12-dev-1290; http://192.168.22.10\"},\"to\":[\"http://192.168.22.10/profile/friendica4\",\"https://www.w3.org/ns/activitystreams#Public\"],\"cc\":[\"http://192.168.22.10/followers/friendica1\",\"http://192.168.22.10/profile/friendica2\"],\"diaspora:guid\":\"930bb26b-765b-f01f-5a43-22a585408489\",\"diaspora:like\":\"{\\\"author\\\":\\\"friendica1@192.168.22.10\\\",\\\"guid\\\":\\\"930bb26b-765b-f01f-5a43-22a585408489\\\",\\\"parent_guid\\\":\\\"930bb26b-135b-f01d-8e3d-8cc050176928\\\",\\\"parent_type\\\":\\\"Comment\\\",\\\"positive\\\":\\\"true\\\",\\\"author_signature\\\":\\\"Q7WqVz2AvuF2noYjsq3DQB3j\\\\/9+WRmiJCiy3DMJGYWNKXzgik6LNrj2rcEGUNY9zQQLXgKncBPZ\\\\/z0CB\\\\/tcEiM1UC683DQDkZh35ErbmeXSilCVXinFuPdoh\\\\/ARd+EC41r7Xv0BZlYNfVLqbHrSZZScWzjiX1XDXguFFcQQApv9lFH52u\\\\/C\\\\/rUGKOUN\\\\/7nX9fWEvPYSynqVaybZ8PdKZG9OaI2ys5LZWsReD4\\\\/6Jv4nKfCkp6JvlJGuuSz0azrg804X5\\\\/DU4Y0vU8Ul3zTNf4y9p7tjoOaNSfTt01NvRUpmCW\\\\/Tiz7P5m8V0Zr5cxFWROn9TpYtEYrf1897QHvADEyNvG4xfhCZOzZq0c6j5y7zQTTDUWg3YJsN\\\\/xa+l1VXRPhcUw6nUkOVcrLwOnlf95ibJ+7Y0qP3x38Y6Ki66JHHtpBgMx17Da5xOHukKzj0kd6\\\\/jmqDS8w86mTiEx5xbxBqS\\\\/pc9g85QH\\\\/3Qm7CKbCPfECa2LGh943JsJ03ScoK1ZcrdW6JHFf0tBYJ8ICzeYShoBVKZY9k687TQa5SXm8pBlftMxY9CAT8NIBpZVElivyRu+2GlvhX7TH02ms5PdbjxoeHaCCkPfqg1AZKDhn+u79ulodUAnb8SCF\\\\/UbZzDMtEwKMZ2X6O6iaXBVarOX4VhwwhUfcnsD1DiqBUFLxs=\\\"}\",\"object\":\"http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928\",\"signature\":{\"type\":\"RsaSignature2017\",\"nonce\":\"17d99540e3b864be4b6df3a3b02fa005be1ccedfed45607412d97fc77233cfa7\",\"creator\":\"http://192.168.22.10/profile/friendica1#main-key\",\"created\":\"2018-11-17T14:03:07Z\",\"signatureValue\":\"Zs2WW38G4hKtHs142L5xpO3TTmKbRfSFZJ9Q4OccMiwd5O5BMasp0Fa4d3SHhiqTCIljTVVeCBn5vGG082nrabnCMhJ22IB085tTmnDe8N4sFyQ4uRggEVODvIee5Sygcqsfc4gNaedLj3P3pr6vgB/BiaxBJyd6blZqme8wCt74vljapm7X+yjbzN3lI4PMIBsMboXGbyHHxCkFdKQNDOzXagdZNeW2tLzS4Bq0eOyRbStxLDPmdi8nYgbOmF/hpAjgwRBb2NglIaUlvM6dnOErpJCkZZ84lHdq0PlZfZ27y3o/YIW6e/m6uQ3ohdJ2/FgVvuJ7DGptQPzsxfKys+iUbFFZwhbHgMNYyJIfifX+0B4/8NiVvFhwyLXnPHLfJ8PFAq1qrI2Uknap88GhUIkYbB/pvjeOaSyolkUnYpAYUtQowxnbJa0VFL4lFKwM6JvNehOcMEoj8mj2p2hvVHRL+1uYB/70r6RjmBDvu6AUepfvzIUNsKmymHxJuLI6GsSjAzm7FLyfxmvJsdkKammjn7LP0vjWDNMcXqohKTvK76aWrY64uneaAPS9hY6M71PsOXXzYugmMCdhFPTl6W7lWk7lCoLe+GEyrAWpKlVR1SmBrxES0nuclKUNw97Z8/ZxsI9Ia2rUIZPufcdLxseFZuxV+nPGXmjlVpRqav0=\"}}','2018-11-17 14:03:07'),(_binary 'http://192.168.22.10/objects/930bb26b-555b-f01f-66c7-ab6175377664',_binary 'http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928',_binary 'http://192.168.22.10/display/friendica1/1',_binary 'http://192.168.22.10/display/friendica1/1',1,'<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<feed xmlns=\"http://www.w3.org/2005/Atom\" xmlns:thr=\"http://purl.org/syndication/thread/1.0\" xmlns:at=\"http://purl.org/atompub/tombstones/1.0\" xmlns:media=\"http://purl.org/syndication/atommedia\" xmlns:dfrn=\"http://purl.org/macgirvin/dfrn/1.0\" xmlns:activity=\"http://activitystrea.ms/spec/1.0/\" xmlns:georss=\"http://www.georss.org/georss\" xmlns:poco=\"http://portablecontacts.net/spec/1.0\" xmlns:ostatus=\"http://ostatus.org/schema/1.0\" xmlns:statusnet=\"http://status.net/schema/api/1/\">\n  <id>http://192.168.22.10/profile/friendica1</id>\n  <title>friendica1</title>\n  <generator uri=\"https://friendi.ca\" version=\"2018.12-dev-1290\">Friendica</generator>\n  <link rel=\"license\" href=\"http://creativecommons.org/licenses/by/3.0/\"/>\n  <link rel=\"alternate\" type=\"text/html\" href=\"http://192.168.22.10/profile/friendica1\"/>\n  <dfrn:account_type>0</dfrn:account_type>\n  <updated>2018-11-17T14:03:08Z</updated>\n  <dfrn:owner>\n    <name dfrn:updated=\"2018-11-17T12:39:46Z\">friendica1</name>\n    <uri dfrn:updated=\"2018-11-17T12:39:46Z\">http://192.168.22.10/profile/friendica1</uri>\n    <dfrn:handle dfrn:updated=\"2018-11-17T12:39:46Z\">friendica1@192.168.22.10</dfrn:handle>\n    <link rel=\"photo\" type=\"image/jpeg\" media:width=\"300\" media:height=\"300\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\" dfrn:updated=\"2018-11-17T12:50:07Z\"/>\n    <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"300\" media:height=\"300\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\" dfrn:updated=\"2018-11-17T12:50:07Z\"/>\n    <dfrn:hide>true</dfrn:hide>\n    <poco:displayName>friendica1</poco:displayName>\n    <poco:updated>2018-11-17T12:39:46Z</poco:updated>\n    <poco:note/>\n    <poco:preferredUsername>friendica1</poco:preferredUsername>\n    <poco:utcOffset>+00:00</poco:utcOffset>\n  </dfrn:owner>\n  <entry>\n    <author>\n      <name>friendica1</name>\n      <uri>http://192.168.22.10/profile/friendica1</uri>\n      <dfrn:handle>friendica1@192.168.22.10</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\"/>\n    </author>\n    <dfrn:owner>\n      <name>friendica1</name>\n      <uri>http://192.168.22.10/profile/friendica1</uri>\n      <dfrn:handle>friendica1@192.168.22.10</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\"/>\n    </dfrn:owner>\n    <ostatus:conversation href=\"http://192.168.22.10/display/friendica1/1\" ref=\"http://192.168.22.10/display/friendica1/1\">http://192.168.22.10/display/friendica1/1</ostatus:conversation>\n    <id>http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783</id>\n    <title/>\n    <published>2018-11-17T13:51:35Z</published>\n    <updated>2018-11-17T13:51:35Z</updated>\n    <dfrn:env>VGhpcyBpcyBhIHB1YmxpYyB0ZXN0IHBvc3Rpbmcu</dfrn:env>\n    <content type=\"text\">This is a public test posting.</content>\n    <link rel=\"alternate\" type=\"text/html\" href=\"http://192.168.22.10/display/930bb26b-205b-f01c-e722-bc8141142783\"/>\n    <dfrn:comment-allow>1</dfrn:comment-allow>\n    <dfrn:diaspora_guid>930bb26b-205b-f01c-e722-bc8141142783</dfrn:diaspora_guid>\n    <activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>\n    <activity:object-type>http://activitystrea.ms/schema/1.0/note</activity:object-type>\n  </entry>\n  <entry>\n    <author>\n      <name>friendica1</name>\n      <uri>http://192.168.22.10/profile/friendica1</uri>\n      <dfrn:handle>friendica1@192.168.22.10</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\"/>\n    </author>\n    <dfrn:owner>\n      <name>friendica1</name>\n      <uri>http://192.168.22.10/profile/friendica1</uri>\n      <dfrn:handle>friendica1@192.168.22.10</dfrn:handle>\n      <link rel=\"photo\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\"/>\n      <link rel=\"avatar\" type=\"image/jpeg\" media:width=\"80\" media:height=\"80\" href=\"http://192.168.22.10/photo/12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007\"/>\n    </dfrn:owner>\n    <thr:in-reply-to ref=\"http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928\" type=\"text/html\" href=\"http://192.168.22.10/display/930bb26b-135b-f01d-8e3d-8cc050176928\" dfrn:diaspora_guid=\"930bb26b-135b-f01d-8e3d-8cc050176928\"/>\n    <ostatus:conversation href=\"http://192.168.22.10/display/friendica1/1\" ref=\"http://192.168.22.10/display/friendica1/1\">http://192.168.22.10/display/friendica1/1</ostatus:conversation>\n    <id>http://192.168.22.10/objects/930bb26b-555b-f01f-66c7-ab6175377664</id>\n    <title/>\n    <published>2018-11-17T14:02:14Z</published>\n    <updated>2018-11-17T14:02:14Z</updated>\n    <dfrn:env>TmljZSB0byBoYXZlIHlvdSBoZXJlIDotRA</dfrn:env>\n    <content type=\"text\">Nice to have you here :-D</content>\n    <link rel=\"alternate\" type=\"text/html\" href=\"http://192.168.22.10/display/930bb26b-555b-f01f-66c7-ab6175377664\"/>\n    <dfrn:comment-allow>1</dfrn:comment-allow>\n    <dfrn:diaspora_guid>930bb26b-555b-f01f-66c7-ab6175377664</dfrn:diaspora_guid>\n    <dfrn:diaspora_signature>eyJzaWduZWRfdGV4dCI6IntcImF1dGhvclwiOlwiZnJpZW5kaWNhMUAxOTIuMTY4LjIyLjEwXCIsXCJndWlkXCI6XCI5MzBiYjI2Yi01NTViLWYwMWYtNjZjNy1hYjYxNzUzNzc2NjRcIixcImNyZWF0ZWRfYXRcIjpcIjIwMTgtMTEtMTdUMTQ6MDI6MTRaXCIsXCJwYXJlbnRfZ3VpZFwiOlwiOTMwYmIyNmItMjA1Yi1mMDFjLWU3MjItYmM4MTQxMTQyNzgzXCIsXCJ0ZXh0XCI6XCJOaWNlIHRvIGhhdmUgeW91IGhlcmUgIVs6LURdKGh0dHA6XFxcL1xcXC8xOTIuMTY4LjIyLjEwXFxcL2ltYWdlc1xcXC9zbWlsZXktbGF1Z2hpbmcuZ2lmIFxcXCI6LURcXFwiKVwiLFwiYXV0aG9yX3NpZ25hdHVyZVwiOlwiYWlIME93YnFhdnVEZzlUalVSNGJ2ZDh0TE5jXFxcL0VsU0N2OWprM3UwNDh0OHQ4MFdxbmNqcU4yU0xMNTNUWG9lejY2UUpTYTJ2a1Jud0pEa29hdWRtZHdCWVRQcXhzVEdmTjZESlJBYzZrXFxcL2VES3plbXdVdzJvd3A3OUJQek9IelxcXC9xRjA3STZvVnoyaUt6RDJHbVdjV2syeElLUWFlQVllY0pUMHc5dE5wcHU2SXJyQXR0ekJYbkgrM2dMWTd3U24yTkxWT3ZrRlNCNk1wY1oxOEhKbzBvZnFwejFYU21ZSWhmT3RQOG1GNVo0SWdWaTFlMVdHR2ZwalZNTytLbjVvdURQVXNIdDk4bm8xWTNwQktyZDBHRlNEXFxcL3NQOTVlVlo0SFRvZ1UzTGhLbzZxcVhYZjNuZ2xCSEJqOXBtdXdKWHIwWU1jZ1BEbHRGMjBibmpDNzFmdlRDUUpRSlFkNm53aWFjdjd4T1M2emdIY3ppUUtZQzlrK1VNQmJwWE1iSUROR3A2NHJ1YWJZSWdidlBSOGVpeGJGODFVeVduZ1JGNldaUVpqT215bzVRR0RsajRmMlRRQ1RxMzlCeDlidytFYTF4M0lvdmhRZTFiRlduUm5hNnBQbFFycGZ6dm40VWlnYzJzREE5eUNvSUVpUGVTcEZHMUdmdVc2ZldWcTRudGxKUjcxbGZxWmFkZVBwWUN6dXRCSzVTRDFvUlQxb3hGYnNpXFxcL2UyeU1DZWtISzBCN2JVQjdDekxnVTFWV2xRZ0QwYmJ1cklaVzlSNEF4TGJvTkt2dkpvc2xHZ29cXFwvUWlwS0MrOVVLYk00dEdxZUVqdVhUc0w0a1FHaDFjcVFHTHQ4bTBnZ24zSnY4RE4yTUJYdGVlQzF2c08zYktId2hvQVh6XFxcL29WM0lYXFxcL25hZGc9XCIsXCJ0aHJlYWRfcGFyZW50X2d1aWRcIjpcIjkzMGJiMjZiLTEzNWItZjAxZC04ZTNkLThjYzA1MDE3NjkyOFwifSIsInNpZ25hdHVyZSI6bnVsbCwic2lnbmVyIjpudWxsfQ==</dfrn:diaspora_signature>\n    <activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>\n    <activity:object-type>http://activitystrea.ms/schema/1.0/comment</activity:object-type>\n  </entry>\n</feed>','2018-11-17 14:03:08');
 /*!40000 ALTER TABLE `conversation` ENABLE KEYS */;
 UNLOCK TABLES;
 
+--
+-- Table structure for table `diaspora-interaction`
+--
+
+DROP TABLE IF EXISTS `diaspora-interaction`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `diaspora-interaction` (
+  `uri-id` int(10) unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
+  `interaction` mediumtext COMMENT 'The Diaspora interaction',
+  PRIMARY KEY (`uri-id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Signed Diaspora Interaction';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `diaspora-interaction`
+--
+
+LOCK TABLES `diaspora-interaction` WRITE;
+/*!40000 ALTER TABLE `diaspora-interaction` DISABLE KEYS */;
+INSERT INTO `diaspora-interaction` VALUES (3,'{\"author\":\"friendica2@192.168.22.10\",\"guid\":\"930bb26b-155b-f01d-60ee-5ee161000810\",\"created_at\":\"2018-11-17T13:53:36Z\",\"parent_guid\":\"930bb26b-205b-f01c-e722-bc8141142783\",\"text\":\"friendica 2 checking in.\",\"author_signature\":\"CLL2\\/rpsdp+DLh+WuUVGFHSLR0T0wHXGmSsGyDZlUvKbrNILgtfClX7eXzgswLba9wGA+n1uGd2VAFW6jor7bhTbqvxIx\\/r9MAysgsuFKdMTuAn5E6wmMeT3IDUmnvuYI4+QpfBWXJdpDzbol9jRE3zlUjJjA+DpCYJd466Wyl0koS8uDpswoW3f4It\\/fxUH4XS0+Np1GlBB4XE1Rd3\\/3VsQMltxbQCY8iQtq\\/6fQDQ3n1HUFEE\\/nEd5xaHLL2FYI4udZE+VdXgV+iSaE7FksHebhFOc1OHjQY3PrM7pJkZZjbiRMDIF0Y7QDc7ZztAS2UZi4olrkXpWAGXiq91o2qSoBTg2WgCVxj+z355BLI859NMgOZV9MCBMQIDXdiu8dZy\\/B5tyrIKrAtAl5dSeDFZUXCztxO1BjVNqdkS+emlsKFK0miD6UqsSkASeGxu6PR+M+KUVEj34PnlVg7XO8upRGIU7wefzjzr4H+mGKN1XxfKvwQvV3JbKExY+lzvdFHIUHJ8DMwjmcSAdzAb7nKh5TXoYLeLYRPjEs66tA6U8QdPVprEdUiOt3oYztUAjguW9qoNDJD7Uwcd10UmuyX382HmHjZk8+5fbqJUyDbrx5xucKA3YluOOoiCTcQnnFajb8E9iVQcb2FhZaced2KZsi5TUQaeFxzboJTC5wiU=\"}'),(4,'{\"author\":\"friendica4@192.168.22.10\",\"guid\":\"930bb26b-135b-f01d-8e3d-8cc050176928\",\"created_at\":\"2018-11-17T13:54:22Z\",\"parent_guid\":\"930bb26b-205b-f01c-e722-bc8141142783\",\"text\":\"friendica 4 testing ![:-)](http:\\/\\/192.168.22.10\\/images\\/smiley-smile.gif \\\":-)\\\")\",\"author_signature\":\"Vb6Zsv9mbohlyjwpJygXcWfB+hheZSwDPaIg91l3ktTy\\/U7LtnjaPMwi1reyVMKJkJOStrBKbLU4K4Wf5H16hjIRHK76gvsFjAHNJ0+38RKeYhOoYrDhG037XqeqO\\/HiXvQUXrOEmOck4P1Z+25W6pW38HuSZOdja02fF1VdUipSytxuJam5JBeo0akZAAWSRw1\\/OseUMxdawEoUz0XKUoufNlfgFjU\\/Z6TgzEEC\\/bGr7JyOMMqX6BaGQi65WLuBdtSPteFvz+qWfBcosBmpuoTQwvx7p68WcNyv2B\\/zP5N1RHL1\\/JTpYX3rD9aab9bFei5VuMczDzU6wBxZUF718MG+00A3zJ9Lh7Zikad3Ryn\\/HQvdT5DlNyCVIs\\/9hLRsEUSwvoxnCR1vOwt7oZtwejHiCcDcrM+UM7nykblb6Ms0ds2RZ3BrlSU0JFRjzIj+sDq\\/NBcwxRPec2rsdlAF6ogxRx3I19173ZF6RrL+mWT1TpKPOpIseN5megEeInHf3RAn68JmE\\/6v3DBsEPNTleofzzJQpMIrN5j4hXps5O7uB8YJ3+2rHUs\\/qHz7M8LhndFqXeqtCbLeQOkeZcwqV+5KvXKg+yezZzQBG21RE+JYMJx1LIZ7N+22JtcdSMCwhYcVUTIfuRX2ka+Pfuq2Dszm0PBwq3GNC5wrXpwTlLk=\"}'),(5,'{\"author\":\"friendica1@192.168.22.10\",\"guid\":\"930bb26b-765b-f01f-5a43-22a585408489\",\"parent_guid\":\"930bb26b-135b-f01d-8e3d-8cc050176928\",\"parent_type\":\"Comment\",\"positive\":\"true\",\"author_signature\":\"Q7WqVz2AvuF2noYjsq3DQB3j\\/9+WRmiJCiy3DMJGYWNKXzgik6LNrj2rcEGUNY9zQQLXgKncBPZ\\/z0CB\\/tcEiM1UC683DQDkZh35ErbmeXSilCVXinFuPdoh\\/ARd+EC41r7Xv0BZlYNfVLqbHrSZZScWzjiX1XDXguFFcQQApv9lFH52u\\/C\\/rUGKOUN\\/7nX9fWEvPYSynqVaybZ8PdKZG9OaI2ys5LZWsReD4\\/6Jv4nKfCkp6JvlJGuuSz0azrg804X5\\/DU4Y0vU8Ul3zTNf4y9p7tjoOaNSfTt01NvRUpmCW\\/Tiz7P5m8V0Zr5cxFWROn9TpYtEYrf1897QHvADEyNvG4xfhCZOzZq0c6j5y7zQTTDUWg3YJsN\\/xa+l1VXRPhcUw6nUkOVcrLwOnlf95ibJ+7Y0qP3x38Y6Ki66JHHtpBgMx17Da5xOHukKzj0kd6\\/jmqDS8w86mTiEx5xbxBqS\\/pc9g85QH\\/3Qm7CKbCPfECa2LGh943JsJ03ScoK1ZcrdW6JHFf0tBYJ8ICzeYShoBVKZY9k687TQa5SXm8pBlftMxY9CAT8NIBpZVElivyRu+2GlvhX7TH02ms5PdbjxoeHaCCkPfqg1AZKDhn+u79ulodUAnb8SCF\\/UbZzDMtEwKMZ2X6O6iaXBVarOX4VhwwhUfcnsD1DiqBUFLxs=\"}'),(6,'{\"author\":\"friendica1@192.168.22.10\",\"guid\":\"930bb26b-555b-f01f-66c7-ab6175377664\",\"created_at\":\"2018-11-17T14:02:14Z\",\"parent_guid\":\"930bb26b-205b-f01c-e722-bc8141142783\",\"text\":\"Nice to have you here ![:-D](http:\\/\\/192.168.22.10\\/images\\/smiley-laughing.gif \\\":-D\\\")\",\"author_signature\":\"aiH0OwbqavuDg9TjUR4bvd8tLNc\\/ElSCv9jk3u048t8t80WqncjqN2SLL53TXoez66QJSa2vkRnwJDkoaudmdwBYTPqxsTGfN6DJRAc6k\\/eDKzemwUw2owp79BPzOHz\\/qF07I6oVz2iKzD2GmWcWk2xIKQaeAYecJT0w9tNppu6IrrAttzBXnH+3gLY7wSn2NLVOvkFSB6MpcZ18HJo0ofqpz1XSmYIhfOtP8mF5Z4IgVi1e1WGGfpjVMO+Kn5ouDPUsHt98no1Y3pBKrd0GFSD\\/sP95eVZ4HTogU3LhKo6qqXXf3nglBHBj9pmuwJXr0YMcgPDltF20bnjC71fvTCQJQJQd6nwiacv7xOS6zgHcziQKYC9k+UMBbpXMbIDNGp64ruabYIgbvPR8eixbF81UyWngRF6WZQZjOmyo5QGDlj4f2TQCTq39Bx9bw+Ea1x3IovhQe1bFWnRna6pPlQrpfzvn4Uigc2sDA9yCoIEiPeSpFG1GfuW6fWVq4ntlJR71lfqZadePpYCzutBK5SD1oRT1oxFbsi\\/e2yMCekHK0B7bUB7CzLgU1VWlQgD0bburIZW9R4AxLboNKvvJoslGgo\\/QipKC+9UKbM4tGqeEjuXTsL4kQGh1cqQGLt8m0ggn3Jv8DN2MBXteeC1vsO3bKHwhoAXz\\/oV3IX\\/nadg=\",\"thread_parent_guid\":\"930bb26b-135b-f01d-8e3d-8cc050176928\"}'),(8,'{\"author\":\"friendica1@192.168.22.10\",\"guid\":\"930bb26b-765b-f01f-5a43-22a585408489\",\"parent_guid\":\"930bb26b-135b-f01d-8e3d-8cc050176928\",\"parent_type\":\"Comment\",\"positive\":\"true\",\"author_signature\":\"Q7WqVz2AvuF2noYjsq3DQB3j\\/9+WRmiJCiy3DMJGYWNKXzgik6LNrj2rcEGUNY9zQQLXgKncBPZ\\/z0CB\\/tcEiM1UC683DQDkZh35ErbmeXSilCVXinFuPdoh\\/ARd+EC41r7Xv0BZlYNfVLqbHrSZZScWzjiX1XDXguFFcQQApv9lFH52u\\/C\\/rUGKOUN\\/7nX9fWEvPYSynqVaybZ8PdKZG9OaI2ys5LZWsReD4\\/6Jv4nKfCkp6JvlJGuuSz0azrg804X5\\/DU4Y0vU8Ul3zTNf4y9p7tjoOaNSfTt01NvRUpmCW\\/Tiz7P5m8V0Zr5cxFWROn9TpYtEYrf1897QHvADEyNvG4xfhCZOzZq0c6j5y7zQTTDUWg3YJsN\\/xa+l1VXRPhcUw6nUkOVcrLwOnlf95ibJ+7Y0qP3x38Y6Ki66JHHtpBgMx17Da5xOHukKzj0kd6\\/jmqDS8w86mTiEx5xbxBqS\\/pc9g85QH\\/3Qm7CKbCPfECa2LGh943JsJ03ScoK1ZcrdW6JHFf0tBYJ8ICzeYShoBVKZY9k687TQa5SXm8pBlftMxY9CAT8NIBpZVElivyRu+2GlvhX7TH02ms5PdbjxoeHaCCkPfqg1AZKDhn+u79ulodUAnb8SCF\\/UbZzDMtEwKMZ2X6O6iaXBVarOX4VhwwhUfcnsD1DiqBUFLxs=\"}');
+/*!40000 ALTER TABLE `diaspora-interaction` ENABLE KEYS */;
+UNLOCK TABLES;
+
 --
 -- Table structure for table `event`
 --
@@ -397,29 +450,29 @@ DROP TABLE IF EXISTS `event`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `event` (
-  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
   `guid` varchar(255) NOT NULL DEFAULT '',
-  `uid` int(11) NOT NULL DEFAULT '0',
-  `cid` int(11) NOT NULL DEFAULT '0',
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Owner User id',
+  `cid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'contact_id (ID of the contact in contact table)',
   `uri` varchar(255) NOT NULL DEFAULT '',
-  `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  `start` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  `finish` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  `summary` text,
-  `desc` text,
-  `location` text,
-  `type` varchar(255) NOT NULL DEFAULT '',
-  `nofinish` tinyint(1) NOT NULL DEFAULT '0',
-  `adjust` tinyint(1) NOT NULL DEFAULT '1',
-  `ignore` tinyint(1) unsigned NOT NULL DEFAULT '0',
-  `allow_cid` mediumtext,
-  `allow_gid` mediumtext,
-  `deny_cid` mediumtext,
-  `deny_gid` mediumtext,
+  `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation time',
+  `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'last edit time',
+  `start` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'event start time',
+  `finish` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'event end time',
+  `summary` text COMMENT 'short description or title of the event',
+  `desc` text COMMENT 'event description',
+  `location` text COMMENT 'event location',
+  `type` varchar(20) NOT NULL DEFAULT '' COMMENT 'event or birthday',
+  `nofinish` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'if event does have no end this is 1',
+  `adjust` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'adjust to timezone of the recipient (0 or 1)',
+  `ignore` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0 or 1',
+  `allow_cid` mediumtext COMMENT 'Access Control - list of allowed contact.id ''<19><78>''',
+  `allow_gid` mediumtext COMMENT 'Access Control - list of allowed groups',
+  `deny_cid` mediumtext COMMENT 'Access Control - list of denied contact.id',
+  `deny_gid` mediumtext COMMENT 'Access Control - list of denied groups',
   PRIMARY KEY (`id`),
   KEY `uid_start` (`uid`,`start`)
-) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Events';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -428,7 +481,6 @@ CREATE TABLE `event` (
 
 LOCK TABLES `event` WRITE;
 /*!40000 ALTER TABLE `event` DISABLE KEYS */;
-INSERT INTO `event` VALUES (1,'',2,14,'','2017-09-07 09:16:08','2017-09-07 09:16:08','2018-01-01 00:00:00','2018-01-02 00:00:00','friendica5\\\'s birthday','Happy Birthday  [url=http://friendica.local/profile/friendica5]friendica5[/url]',NULL,'birthday',0,1,0,NULL,NULL,NULL,NULL),(2,'',5,18,'','2017-09-07 09:16:08','2017-09-07 09:16:08','2018-01-01 00:00:00','2018-01-02 00:00:00','friendica5\\\'s birthday','Happy Birthday  [url=http://friendica.local/profile/friendica5]friendica5[/url]',NULL,'birthday',0,1,0,NULL,NULL,NULL,NULL),(3,'',2,8,'','2017-09-07 09:16:42','2017-09-07 09:16:42','2018-01-01 00:00:00','2018-01-02 00:00:00','friendica2\\\'s birthday','Happy Birthday  [url=http://friendica.local/profile/friendica2]friendica2[/url]',NULL,'birthday',0,1,0,NULL,NULL,NULL,NULL),(4,'',4,15,'','2017-09-07 09:16:42','2017-09-07 09:16:42','2018-01-01 00:00:00','2018-01-02 00:00:00','friendica2\\\'s birthday','Happy Birthday  [url=http://friendica.local/profile/friendica2]friendica2[/url]',NULL,'birthday',0,1,0,NULL,NULL,NULL,NULL),(5,'',4,9,'','2017-09-07 09:17:49','2017-09-07 09:17:49','2018-01-01 00:00:00','2018-01-02 00:00:00','friendica1\\\'s birthday','Happy Birthday  [url=http://friendica.local/profile/friendica1]friendica1[/url]',NULL,'birthday',0,1,0,NULL,NULL,NULL,NULL),(6,'',6,13,'','2017-09-07 09:17:49','2017-09-07 09:17:49','2018-01-01 00:00:00','2018-01-02 00:00:00','friendica1\\\'s birthday','Happy Birthday  [url=http://friendica.local/profile/friendica1]friendica1[/url]',NULL,'birthday',0,1,0,NULL,NULL,NULL,NULL),(7,'',2,10,'','2017-09-07 09:18:24','2017-09-07 09:18:24','2018-01-01 00:00:00','2018-01-02 00:00:00','friendica3\\\'s birthday','Happy Birthday  [url=http://friendica.local/profile/friendica3]friendica3[/url]',NULL,'birthday',0,1,0,NULL,NULL,NULL,NULL),(8,'',3,7,'','2017-09-07 09:19:08','2017-09-07 09:19:08','2018-01-01 00:00:00','2018-01-02 00:00:00','friendica1\\\'s birthday','Happy Birthday  [url=http://friendica.local/profile/friendica1]friendica1[/url]',NULL,'birthday',0,1,0,NULL,NULL,NULL,NULL),(9,'',5,11,'','2017-09-07 09:19:08','2017-09-07 09:19:08','2018-01-01 00:00:00','2018-01-02 00:00:00','friendica1\\\'s birthday','Happy Birthday  [url=http://friendica.local/profile/friendica1]friendica1[/url]',NULL,'birthday',0,1,0,NULL,NULL,NULL,NULL);
 /*!40000 ALTER TABLE `event` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -440,8 +492,8 @@ DROP TABLE IF EXISTS `fcontact`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `fcontact` (
-  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
-  `guid` varchar(255) NOT NULL DEFAULT '',
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
+  `guid` varchar(255) NOT NULL DEFAULT '' COMMENT 'unique id',
   `url` varchar(255) NOT NULL DEFAULT '',
   `name` varchar(255) NOT NULL DEFAULT '',
   `photo` varchar(255) NOT NULL DEFAULT '',
@@ -452,15 +504,15 @@ CREATE TABLE `fcontact` (
   `notify` varchar(255) NOT NULL DEFAULT '',
   `poll` varchar(255) NOT NULL DEFAULT '',
   `confirm` varchar(255) NOT NULL DEFAULT '',
-  `priority` tinyint(1) NOT NULL DEFAULT '0',
-  `network` varchar(32) NOT NULL DEFAULT '',
+  `priority` tinyint(3) unsigned NOT NULL DEFAULT '0',
+  `network` char(4) NOT NULL DEFAULT '',
   `alias` varchar(255) NOT NULL DEFAULT '',
   `pubkey` text,
   `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
   PRIMARY KEY (`id`),
   UNIQUE KEY `url` (`url`(190)),
   KEY `addr` (`addr`(32))
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Diaspora compatible contacts - used in the Diaspora implementation';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -472,57 +524,6 @@ LOCK TABLES `fcontact` WRITE;
 /*!40000 ALTER TABLE `fcontact` ENABLE KEYS */;
 UNLOCK TABLES;
 
---
--- Table structure for table `ffinder`
---
-
-DROP TABLE IF EXISTS `ffinder`;
-/*!40101 SET @saved_cs_client     = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `ffinder` (
-  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
-  `uid` int(10) unsigned NOT NULL DEFAULT '0',
-  `cid` int(10) unsigned NOT NULL DEFAULT '0',
-  `fid` int(10) unsigned NOT NULL DEFAULT '0',
-  PRIMARY KEY (`id`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `ffinder`
---
-
-LOCK TABLES `ffinder` WRITE;
-/*!40000 ALTER TABLE `ffinder` DISABLE KEYS */;
-/*!40000 ALTER TABLE `ffinder` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `fserver`
---
-
-DROP TABLE IF EXISTS `fserver`;
-/*!40101 SET @saved_cs_client     = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `fserver` (
-  `id` int(11) NOT NULL AUTO_INCREMENT,
-  `server` varchar(255) NOT NULL DEFAULT '',
-  `posturl` varchar(255) NOT NULL DEFAULT '',
-  `key` text,
-  PRIMARY KEY (`id`),
-  KEY `server` (`server`(32))
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `fserver`
---
-
-LOCK TABLES `fserver` WRITE;
-/*!40000 ALTER TABLE `fserver` DISABLE KEYS */;
-/*!40000 ALTER TABLE `fserver` ENABLE KEYS */;
-UNLOCK TABLES;
-
 --
 -- Table structure for table `fsuggest`
 --
@@ -531,9 +532,9 @@ DROP TABLE IF EXISTS `fsuggest`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `fsuggest` (
-  `id` int(11) NOT NULL AUTO_INCREMENT,
-  `uid` int(11) NOT NULL DEFAULT '0',
-  `cid` int(11) NOT NULL DEFAULT '0',
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'User id',
+  `cid` int(10) unsigned NOT NULL DEFAULT '0',
   `name` varchar(255) NOT NULL DEFAULT '',
   `url` varchar(255) NOT NULL DEFAULT '',
   `request` varchar(255) NOT NULL DEFAULT '',
@@ -541,7 +542,7 @@ CREATE TABLE `fsuggest` (
   `note` text,
   `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
   PRIMARY KEY (`id`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='friend suggestion stuff';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -561,13 +562,13 @@ DROP TABLE IF EXISTS `gcign`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `gcign` (
-  `id` int(11) NOT NULL AUTO_INCREMENT,
-  `uid` int(11) NOT NULL DEFAULT '0',
-  `gcid` int(11) NOT NULL DEFAULT '0',
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Local User id',
+  `gcid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'gcontact.id of ignored contact',
   PRIMARY KEY (`id`),
   KEY `uid` (`uid`),
   KEY `gcid` (`gcid`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='contacts ignored by friend suggestions';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -587,12 +588,12 @@ DROP TABLE IF EXISTS `gcontact`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `gcontact` (
-  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
-  `name` varchar(255) NOT NULL DEFAULT '',
-  `nick` varchar(255) NOT NULL DEFAULT '',
-  `url` varchar(255) NOT NULL DEFAULT '',
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
+  `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Name that this contact is known by',
+  `nick` varchar(255) NOT NULL DEFAULT '' COMMENT 'Nick- and user name of the contact',
+  `url` varchar(255) NOT NULL DEFAULT '' COMMENT 'Link to the contacts profile page',
   `nurl` varchar(255) NOT NULL DEFAULT '',
-  `photo` varchar(255) NOT NULL DEFAULT '',
+  `photo` varchar(255) NOT NULL DEFAULT '' COMMENT 'Link to the profile photo',
   `connect` varchar(255) NOT NULL DEFAULT '',
   `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
   `updated` datetime DEFAULT '0001-01-01 00:00:00',
@@ -600,27 +601,27 @@ CREATE TABLE `gcontact` (
   `last_failure` datetime DEFAULT '0001-01-01 00:00:00',
   `location` varchar(255) NOT NULL DEFAULT '',
   `about` text,
-  `keywords` text,
+  `keywords` text COMMENT 'puplic keywords (interests)',
   `gender` varchar(32) NOT NULL DEFAULT '',
   `birthday` varchar(32) NOT NULL DEFAULT '0001-01-01',
-  `community` tinyint(1) NOT NULL DEFAULT '0',
-  `contact-type` tinyint(1) NOT NULL DEFAULT '-1',
-  `hide` tinyint(1) NOT NULL DEFAULT '0',
-  `nsfw` tinyint(1) NOT NULL DEFAULT '0',
-  `network` varchar(255) NOT NULL DEFAULT '',
+  `community` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1 if contact is forum account',
+  `contact-type` tinyint(4) NOT NULL DEFAULT '-1',
+  `hide` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1 = should be hidden from search',
+  `nsfw` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1 = contact posts nsfw content',
+  `network` char(4) NOT NULL DEFAULT '' COMMENT 'social network protocol',
   `addr` varchar(255) NOT NULL DEFAULT '',
-  `notify` text,
+  `notify` varchar(255) DEFAULT NULL,
   `alias` varchar(255) NOT NULL DEFAULT '',
-  `generation` tinyint(3) NOT NULL DEFAULT '0',
-  `server_url` varchar(255) NOT NULL DEFAULT '',
+  `generation` tinyint(3) unsigned NOT NULL DEFAULT '0',
+  `server_url` varchar(255) NOT NULL DEFAULT '' COMMENT 'baseurl of the contacts server',
   PRIMARY KEY (`id`),
   UNIQUE KEY `nurl` (`nurl`(190)),
   KEY `name` (`name`(64)),
   KEY `nick` (`nick`(32)),
   KEY `addr` (`addr`(64)),
-  KEY `hide_network_updated` (`hide`,`network`(4),`updated`),
+  KEY `hide_network_updated` (`hide`,`network`,`updated`),
   KEY `updated` (`updated`)
-) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COMMENT='global contacts';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -629,7 +630,7 @@ CREATE TABLE `gcontact` (
 
 LOCK TABLES `gcontact` WRITE;
 /*!40000 ALTER TABLE `gcontact` DISABLE KEYS */;
-INSERT INTO `gcontact` VALUES (1,'friendica1','friendica1','http://friendica.local/profile/friendica1','http://friendica.local/profile/friendica1','http://friendica.local/photo/profile/2.jpg','friendica1@friendica.local','2017-09-07 09:02:27','0001-01-01 00:00:00','2017-09-07 09:02:28','0001-01-01 00:00:00','','','','','0001-01-01',0,-1,1,0,'dfrn','friendica1@friendica.local','http://friendica.local/dfrn_notify/friendica1','',1,'http://friendica.local'),(2,'friendica2','friendica2','http://friendica.local/profile/friendica2','http://friendica.local/profile/friendica2','http://friendica.local/photo/profile/3.jpg','friendica2@friendica.local','2017-09-07 09:06:02','0001-01-01 00:00:00','2017-09-07 09:06:02','0001-01-01 00:00:00','','','','','0001-01-01',0,-1,1,0,'dfrn','friendica2@friendica.local','http://friendica.local/dfrn_notify/friendica2','',1,'http://friendica.local'),(3,'friendica3','friendica3','http://friendica.local/profile/friendica3','http://friendica.local/profile/friendica3','http://friendica.local/photo/profile/4.jpg','friendica3@friendica.local','2017-09-07 09:09:50','0001-01-01 00:00:00','2017-09-07 09:09:50','0001-01-01 00:00:00','','','','','0001-01-01',0,-1,1,0,'dfrn','friendica3@friendica.local','http://friendica.local/dfrn_notify/friendica3','',1,'http://friendica.local'),(4,'friendica4','friendica4','http://friendica.local/profile/friendica4','http://friendica.local/profile/friendica4','http://friendica.local/photo/profile/5.jpg','friendica4@friendica.local','2017-09-07 09:11:41','0001-01-01 00:00:00','2017-09-07 09:11:41','0001-01-01 00:00:00','','','','','0001-01-01',0,-1,1,0,'dfrn','friendica4@friendica.local','http://friendica.local/dfrn_notify/friendica4','',1,'http://friendica.local'),(5,'friendica5','friendica5','http://friendica.local/profile/friendica5','http://friendica.local/profile/friendica5','http://friendica.local/photo/profile/6.jpg','friendica5@friendica.local','2017-09-07 09:13:25','0001-01-01 00:00:00','2017-09-07 09:13:25','0001-01-01 00:00:00','','','','','0001-01-01',0,-1,1,0,'dfrn','friendica5@friendica.local','http://friendica.local/dfrn_notify/friendica5','',1,'http://friendica.local');
+INSERT INTO `gcontact` VALUES (1,'admin','admin','http://192.168.22.10/profile/admin','http://192.168.22.10/profile/admin','http://192.168.22.10/photo/profile/1.jpg','admin@192.168.22.10','2018-11-17 12:34:42','2018-11-17 12:50:02','2018-11-17 12:34:46','0001-01-01 00:00:00','','',NULL,'','0000-00-00',0,-1,1,0,'dfrn','admin@192.168.22.10','http://192.168.22.10/dfrn_notify/admin','http://192.168.22.10/~admin',1,'http://192.168.22.10'),(2,'friendica1','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/profile/2.jpg','friendica1@192.168.22.10','2018-11-17 12:50:03','2018-11-17 13:50:02','2018-11-17 13:50:06','0001-01-01 00:00:00','','',NULL,'','0000-00-00',0,-1,1,0,'dfrn','friendica1@192.168.22.10','http://192.168.22.10/dfrn_notify/friendica1','http://192.168.22.10/~friendica1',1,'http://192.168.22.10'),(3,'friendica2','friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/profile/3.jpg','friendica2@192.168.22.10','2018-11-17 12:50:03','2018-11-17 13:50:03','2018-11-17 13:50:05','0001-01-01 00:00:00','','',NULL,'','0000-00-00',0,-1,1,0,'dfrn','friendica2@192.168.22.10','http://192.168.22.10/dfrn_notify/friendica2','http://192.168.22.10/~friendica2',1,'http://192.168.22.10'),(4,'friendica3','friendica3','http://192.168.22.10/profile/friendica3','http://192.168.22.10/profile/friendica3','http://192.168.22.10/photo/profile/4.jpg','friendica3@192.168.22.10','2018-11-17 12:50:03','0001-01-01 00:00:00','2018-11-17 13:50:05','0001-01-01 00:00:00','','',NULL,'','0000-00-00',0,-1,1,0,'dfrn','friendica3@192.168.22.10','http://192.168.22.10/dfrn_notify/friendica3','http://192.168.22.10/~friendica3',1,'http://192.168.22.10'),(5,'friendica4','friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/profile/5.jpg','friendica4@192.168.22.10','2018-11-17 12:50:03','2018-11-17 13:50:04','2018-11-17 13:50:06','0001-01-01 00:00:00','','',NULL,'','0000-00-00',0,-1,1,0,'dfrn','friendica4@192.168.22.10','http://192.168.22.10/dfrn_notify/friendica4','http://192.168.22.10/~friendica4',1,'http://192.168.22.10'),(6,'friendica5','friendica5','http://192.168.22.10/profile/friendica5','http://192.168.22.10/profile/friendica5','http://192.168.22.10/photo/profile/6.jpg','friendica5@192.168.22.10','2018-11-17 12:50:03','0001-01-01 00:00:00','2018-11-17 13:50:06','0001-01-01 00:00:00','','',NULL,'','0000-00-00',0,-1,1,0,'dfrn','friendica5@192.168.22.10','http://192.168.22.10/dfrn_notify/friendica5','http://192.168.22.10/~friendica5',1,'http://192.168.22.10');
 /*!40000 ALTER TABLE `gcontact` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -641,16 +642,16 @@ DROP TABLE IF EXISTS `glink`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `glink` (
-  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
-  `cid` int(11) NOT NULL DEFAULT '0',
-  `uid` int(11) NOT NULL DEFAULT '0',
-  `gcid` int(11) NOT NULL DEFAULT '0',
-  `zcid` int(11) NOT NULL DEFAULT '0',
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
+  `cid` int(10) unsigned NOT NULL DEFAULT '0',
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'User id',
+  `gcid` int(10) unsigned NOT NULL DEFAULT '0',
+  `zcid` int(10) unsigned NOT NULL DEFAULT '0',
   `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
   PRIMARY KEY (`id`),
   UNIQUE KEY `cid_uid_gcid_zcid` (`cid`,`uid`,`gcid`,`zcid`),
   KEY `gcid` (`gcid`)
-) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='''friends of friends'' linkages derived from poco';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -659,7 +660,6 @@ CREATE TABLE `glink` (
 
 LOCK TABLES `glink` WRITE;
 /*!40000 ALTER TABLE `glink` DISABLE KEYS */;
-INSERT INTO `glink` VALUES (1,14,2,5,0,'2017-09-07 09:16:08'),(2,18,5,5,0,'2017-09-07 09:16:09'),(3,8,2,2,0,'2017-09-07 09:19:28'),(4,15,4,2,0,'2017-09-07 09:16:42'),(5,9,4,1,0,'2017-09-07 09:18:24'),(6,13,6,1,0,'2017-09-07 09:18:24'),(7,10,2,3,0,'2017-09-07 09:18:24'),(8,7,3,1,0,'2017-09-07 09:19:28'),(9,11,5,1,0,'2017-09-07 09:19:28');
 /*!40000 ALTER TABLE `glink` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -671,14 +671,14 @@ DROP TABLE IF EXISTS `group`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `group` (
-  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
-  `uid` int(10) unsigned NOT NULL DEFAULT '0',
-  `visible` tinyint(1) NOT NULL DEFAULT '0',
-  `deleted` tinyint(1) NOT NULL DEFAULT '0',
-  `name` varchar(255) NOT NULL DEFAULT '',
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Owner User id',
+  `visible` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1 indicates the member list is not private',
+  `deleted` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1 indicates the group has been deleted',
+  `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'human readable name of group',
   PRIMARY KEY (`id`),
   KEY `uid` (`uid`)
-) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COMMENT='privacy groups, group info';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -687,7 +687,7 @@ CREATE TABLE `group` (
 
 LOCK TABLES `group` WRITE;
 /*!40000 ALTER TABLE `group` DISABLE KEYS */;
-INSERT INTO `group` VALUES (1,1,0,0,'Friends'),(2,2,0,0,'Friends'),(3,3,0,0,'Friends'),(4,4,0,0,'Friends'),(5,5,0,0,'Friends'),(6,6,0,0,'Friends'),(7,2,0,0,'group1'),(8,2,0,0,'group2');
+INSERT INTO `group` VALUES (1,1,0,0,'Kontakte'),(2,2,0,0,'Friends'),(3,3,0,0,'Friends'),(4,4,0,0,'Friends'),(5,5,0,0,'Friends'),(6,6,0,0,'Friends'),(7,2,0,0,'group1'),(8,2,0,0,'group2');
 /*!40000 ALTER TABLE `group` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -699,15 +699,13 @@ DROP TABLE IF EXISTS `group_member`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `group_member` (
-  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
-  `uid` int(10) unsigned NOT NULL DEFAULT '0',
-  `gid` int(10) unsigned NOT NULL DEFAULT '0',
-  `contact-id` int(10) unsigned NOT NULL DEFAULT '0',
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
+  `gid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'groups.id of the associated group',
+  `contact-id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'contact.id of the member assigned to the associated group',
   PRIMARY KEY (`id`),
-  UNIQUE KEY `uid_gid_contactid` (`uid`,`gid`,`contact-id`),
-  KEY `contactid` (`contact-id`),
-  KEY `gid_contactid` (`gid`,`contact-id`)
-) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4;
+  UNIQUE KEY `gid_contactid` (`gid`,`contact-id`),
+  KEY `contactid` (`contact-id`)
+) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COMMENT='privacy groups, member info';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -716,7 +714,7 @@ CREATE TABLE `group_member` (
 
 LOCK TABLES `group_member` WRITE;
 /*!40000 ALTER TABLE `group_member` DISABLE KEYS */;
-INSERT INTO `group_member` VALUES (1,2,2,8),(2,2,2,10),(3,2,2,12),(4,2,2,14),(13,2,7,8),(14,2,7,12),(16,2,8,10),(17,2,8,14),(5,3,3,7),(6,3,3,16),(7,4,4,9),(8,4,4,15),(9,5,5,11),(10,5,5,18),(11,6,6,13),(12,6,6,17);
+INSERT INTO `group_member` VALUES (1,2,15),(2,2,17),(3,2,19),(4,2,21),(5,3,14),(6,3,23),(7,4,16),(8,4,22),(9,5,18),(10,5,25),(11,6,20),(12,6,24),(13,7,15),(14,7,19),(15,8,17),(16,8,21);
 /*!40000 ALTER TABLE `group_member` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -728,24 +726,27 @@ DROP TABLE IF EXISTS `gserver`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `gserver` (
-  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
   `url` varchar(255) NOT NULL DEFAULT '',
   `nurl` varchar(255) NOT NULL DEFAULT '',
   `version` varchar(255) NOT NULL DEFAULT '',
   `site_name` varchar(255) NOT NULL DEFAULT '',
   `info` text,
-  `register_policy` tinyint(1) NOT NULL DEFAULT '0',
+  `register_policy` tinyint(4) NOT NULL DEFAULT '0',
+  `registered-users` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Number of registered users',
   `poco` varchar(255) NOT NULL DEFAULT '',
   `noscrape` varchar(255) NOT NULL DEFAULT '',
-  `network` varchar(32) NOT NULL DEFAULT '',
+  `network` char(4) NOT NULL DEFAULT '',
   `platform` varchar(255) NOT NULL DEFAULT '',
+  `relay-subscribe` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Has the server subscribed to the relay system',
+  `relay-scope` varchar(10) NOT NULL DEFAULT '' COMMENT 'The scope of messages that the server wants to get',
   `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
   `last_poco_query` datetime DEFAULT '0001-01-01 00:00:00',
   `last_contact` datetime DEFAULT '0001-01-01 00:00:00',
   `last_failure` datetime DEFAULT '0001-01-01 00:00:00',
   PRIMARY KEY (`id`),
   UNIQUE KEY `nurl` (`nurl`(190))
-) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COMMENT='Global servers';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -754,10 +755,34 @@ CREATE TABLE `gserver` (
 
 LOCK TABLES `gserver` WRITE;
 /*!40000 ALTER TABLE `gserver` DISABLE KEYS */;
-INSERT INTO `gserver` VALUES (1,'http://friendica.local','http://friendica.local','3.5.3-dev','My Friend Network','',2,'','http://friendica.local/noscrape','dfrn','Friendica','2017-09-07 09:02:27','0001-01-01 00:00:00','2017-09-07 09:13:25','0001-01-01 00:00:00');
+INSERT INTO `gserver` VALUES (1,'http://192.168.22.10','http://192.168.22.10','2018.12-dev','Friendica Social Network','',2,6,'','','dfrn','Friendica',0,'','2018-11-17 12:34:43','0001-01-01 00:00:00','2018-11-17 12:50:08','0001-01-01 00:00:00');
 /*!40000 ALTER TABLE `gserver` ENABLE KEYS */;
 UNLOCK TABLES;
 
+--
+-- Table structure for table `gserver-tag`
+--
+
+DROP TABLE IF EXISTS `gserver-tag`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `gserver-tag` (
+  `gserver-id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The id of the gserver',
+  `tag` varchar(100) NOT NULL DEFAULT '' COMMENT 'Tag that the server has subscribed',
+  PRIMARY KEY (`gserver-id`,`tag`),
+  KEY `tag` (`tag`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Tags that the server has subscribed';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `gserver-tag`
+--
+
+LOCK TABLES `gserver-tag` WRITE;
+/*!40000 ALTER TABLE `gserver-tag` DISABLE KEYS */;
+/*!40000 ALTER TABLE `gserver-tag` ENABLE KEYS */;
+UNLOCK TABLES;
+
 --
 -- Table structure for table `hook`
 --
@@ -766,14 +791,14 @@ DROP TABLE IF EXISTS `hook`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `hook` (
-  `id` int(11) NOT NULL AUTO_INCREMENT,
-  `hook` varchar(255) NOT NULL DEFAULT '',
-  `file` varchar(255) NOT NULL DEFAULT '',
-  `function` varchar(255) NOT NULL DEFAULT '',
-  `priority` int(11) unsigned NOT NULL DEFAULT '0',
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
+  `hook` varbinary(100) NOT NULL DEFAULT '' COMMENT 'name of hook',
+  `file` varbinary(200) NOT NULL DEFAULT '' COMMENT 'relative filename of hook handler',
+  `function` varbinary(200) NOT NULL DEFAULT '' COMMENT 'function name of hook handler',
+  `priority` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'not yet implemented - can be used to sort conflicts in hook handling by calling handlers in priority order',
   PRIMARY KEY (`id`),
-  UNIQUE KEY `hook_file_function` (`hook`(50),`file`(80),`function`(60))
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+  UNIQUE KEY `hook_file_function` (`hook`,`file`,`function`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='addon hook registry';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -793,10 +818,10 @@ DROP TABLE IF EXISTS `intro`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `intro` (
-  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
-  `uid` int(10) unsigned NOT NULL DEFAULT '0',
-  `fid` int(11) NOT NULL DEFAULT '0',
-  `contact-id` int(11) NOT NULL DEFAULT '0',
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'User id',
+  `fid` int(10) unsigned NOT NULL DEFAULT '0',
+  `contact-id` int(10) unsigned NOT NULL DEFAULT '0',
   `knowyou` tinyint(1) NOT NULL DEFAULT '0',
   `duplex` tinyint(1) NOT NULL DEFAULT '0',
   `note` text,
@@ -826,70 +851,76 @@ DROP TABLE IF EXISTS `item`;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `item` (
   `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
-  `guid` varchar(255) NOT NULL DEFAULT '',
+  `guid` varchar(255) NOT NULL DEFAULT '' COMMENT 'A unique identifier for this item',
   `uri` varchar(255) NOT NULL DEFAULT '',
-  `uid` int(10) unsigned NOT NULL DEFAULT '0',
-  `contact-id` int(11) NOT NULL DEFAULT '0',
-  `gcontact-id` int(11) unsigned NOT NULL DEFAULT '0',
-  `type` varchar(255) NOT NULL DEFAULT '',
-  `wall` tinyint(1) NOT NULL DEFAULT '0',
-  `gravity` tinyint(1) NOT NULL DEFAULT '0',
-  `parent` int(10) unsigned NOT NULL DEFAULT '0',
-  `parent-uri` varchar(255) NOT NULL DEFAULT '',
+  `uri-id` int(10) unsigned DEFAULT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
+  `uri-hash` varchar(80) NOT NULL DEFAULT '' COMMENT 'RIPEMD-128 hash from uri',
+  `parent` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'item.id of the parent to this item if it is a reply of some form; otherwise this must be set to the id of this item',
+  `parent-uri` varchar(255) NOT NULL DEFAULT '' COMMENT 'uri of the parent to this item',
+  `parent-uri-id` int(10) unsigned DEFAULT NULL COMMENT 'Id of the item-uri table that contains the parent uri',
+  `thr-parent` varchar(255) NOT NULL DEFAULT '' COMMENT 'If the parent of this item is not the top-level item in the conversation, the uri of the immediate parent; otherwise set to parent-uri',
+  `thr-parent-id` int(10) unsigned DEFAULT NULL COMMENT 'Id of the item-uri table that contains the thread parent uri',
+  `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Creation timestamp.',
+  `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of last edit (default is created)',
+  `commented` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of last comment/reply to this item',
+  `received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime',
+  `changed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date that something in the conversation changed, indicating clients should fetch the conversation again',
+  `gravity` tinyint(3) unsigned NOT NULL DEFAULT '0',
+  `network` char(4) NOT NULL DEFAULT '' COMMENT 'Network from where the item comes from',
+  `owner-id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Link to the contact table with uid=0 of the owner of this item',
+  `author-id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Link to the contact table with uid=0 of the author of this item',
+  `icid` int(10) unsigned DEFAULT NULL COMMENT 'Id of the item-content table entry that contains the whole item content',
+  `iaid` int(10) unsigned DEFAULT NULL COMMENT 'Id of the item-activity table entry that contains the activity data',
   `extid` varchar(255) NOT NULL DEFAULT '',
-  `thr-parent` varchar(255) NOT NULL DEFAULT '',
-  `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  `commented` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  `received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  `changed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  `owner-id` int(11) NOT NULL DEFAULT '0',
-  `owner-name` varchar(255) NOT NULL DEFAULT '',
-  `owner-link` varchar(255) NOT NULL DEFAULT '',
-  `owner-avatar` varchar(255) NOT NULL DEFAULT '',
-  `author-id` int(11) NOT NULL DEFAULT '0',
-  `author-name` varchar(255) NOT NULL DEFAULT '',
-  `author-link` varchar(255) NOT NULL DEFAULT '',
-  `author-avatar` varchar(255) NOT NULL DEFAULT '',
-  `title` varchar(255) NOT NULL DEFAULT '',
-  `body` mediumtext,
-  `app` varchar(255) NOT NULL DEFAULT '',
-  `verb` varchar(255) NOT NULL DEFAULT '',
-  `object-type` varchar(255) NOT NULL DEFAULT '',
-  `object` text,
-  `target-type` varchar(255) NOT NULL DEFAULT '',
-  `target` text,
-  `postopts` text,
-  `plink` varchar(255) NOT NULL DEFAULT '',
-  `resource-id` varchar(255) NOT NULL DEFAULT '',
-  `event-id` int(11) NOT NULL DEFAULT '0',
-  `tag` mediumtext,
-  `attach` mediumtext,
-  `inform` mediumtext,
-  `file` mediumtext,
-  `location` varchar(255) NOT NULL DEFAULT '',
-  `coord` varchar(255) NOT NULL DEFAULT '',
-  `allow_cid` mediumtext,
-  `allow_gid` mediumtext,
-  `deny_cid` mediumtext,
-  `deny_gid` mediumtext,
-  `private` tinyint(1) NOT NULL DEFAULT '0',
-  `pubmail` tinyint(1) NOT NULL DEFAULT '0',
-  `moderated` tinyint(1) NOT NULL DEFAULT '0',
-  `visible` tinyint(1) NOT NULL DEFAULT '0',
-  `spam` tinyint(1) NOT NULL DEFAULT '0',
-  `starred` tinyint(1) NOT NULL DEFAULT '0',
-  `bookmark` tinyint(1) NOT NULL DEFAULT '0',
-  `unseen` tinyint(1) NOT NULL DEFAULT '1',
-  `deleted` tinyint(1) NOT NULL DEFAULT '0',
-  `origin` tinyint(1) NOT NULL DEFAULT '0',
-  `forum_mode` tinyint(1) NOT NULL DEFAULT '0',
-  `last-child` tinyint(1) unsigned NOT NULL DEFAULT '1',
-  `mention` tinyint(1) NOT NULL DEFAULT '0',
-  `network` varchar(32) NOT NULL DEFAULT '',
-  `rendered-hash` varchar(32) NOT NULL DEFAULT '',
-  `rendered-html` mediumtext,
+  `post-type` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Post type (personal note, bookmark, ...)',
   `global` tinyint(1) NOT NULL DEFAULT '0',
+  `private` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'distribution is restricted',
+  `visible` tinyint(1) NOT NULL DEFAULT '0',
+  `moderated` tinyint(1) NOT NULL DEFAULT '0',
+  `deleted` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'item has been deleted',
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Owner id which owns this copy of the item',
+  `contact-id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'contact.id',
+  `wall` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'This item was posted to the wall of uid',
+  `origin` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'item originated at this site',
+  `pubmail` tinyint(1) NOT NULL DEFAULT '0',
+  `starred` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'item has been favourited',
+  `unseen` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'item has not been seen',
+  `mention` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'The owner of this item was mentioned in it',
+  `forum_mode` tinyint(3) unsigned NOT NULL DEFAULT '0',
+  `psid` int(10) unsigned DEFAULT NULL COMMENT 'ID of the permission set of this post',
+  `resource-id` varchar(32) NOT NULL DEFAULT '' COMMENT 'Used to link other tables to items, it identifies the linked resource (e.g. photo) and if set must also set resource_type',
+  `event-id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Used to link to the event.id',
+  `attach` mediumtext COMMENT 'JSON structure representing attachments to this item',
+  `allow_cid` mediumtext COMMENT 'Deprecated',
+  `allow_gid` mediumtext COMMENT 'Deprecated',
+  `deny_cid` mediumtext COMMENT 'Deprecated',
+  `deny_gid` mediumtext COMMENT 'Deprecated',
+  `postopts` text COMMENT 'Deprecated',
+  `inform` mediumtext COMMENT 'Deprecated',
+  `type` varchar(20) DEFAULT NULL COMMENT 'Deprecated',
+  `bookmark` tinyint(1) DEFAULT NULL COMMENT 'Deprecated',
+  `file` mediumtext COMMENT 'Deprecated',
+  `location` varchar(255) DEFAULT NULL COMMENT 'Deprecated',
+  `coord` varchar(255) DEFAULT NULL COMMENT 'Deprecated',
+  `tag` mediumtext COMMENT 'Deprecated',
+  `plink` varchar(255) DEFAULT NULL COMMENT 'Deprecated',
+  `title` varchar(255) DEFAULT NULL COMMENT 'Deprecated',
+  `content-warning` varchar(255) DEFAULT NULL COMMENT 'Deprecated',
+  `body` mediumtext COMMENT 'Deprecated',
+  `app` varchar(255) DEFAULT NULL COMMENT 'Deprecated',
+  `verb` varchar(100) DEFAULT NULL COMMENT 'Deprecated',
+  `object-type` varchar(100) DEFAULT NULL COMMENT 'Deprecated',
+  `object` text COMMENT 'Deprecated',
+  `target-type` varchar(100) DEFAULT NULL COMMENT 'Deprecated',
+  `target` text COMMENT 'Deprecated',
+  `author-name` varchar(255) DEFAULT NULL COMMENT 'Deprecated',
+  `author-link` varchar(255) DEFAULT NULL COMMENT 'Deprecated',
+  `author-avatar` varchar(255) DEFAULT NULL COMMENT 'Deprecated',
+  `owner-name` varchar(255) DEFAULT NULL COMMENT 'Deprecated',
+  `owner-link` varchar(255) DEFAULT NULL COMMENT 'Deprecated',
+  `owner-avatar` varchar(255) DEFAULT NULL COMMENT 'Deprecated',
+  `rendered-hash` varchar(32) DEFAULT NULL COMMENT 'Deprecated',
+  `rendered-html` mediumtext COMMENT 'Deprecated',
   PRIMARY KEY (`id`),
   KEY `guid` (`guid`(191)),
   KEY `uri` (`uri`(191)),
@@ -899,25 +930,24 @@ CREATE TABLE `item` (
   KEY `uid_id` (`uid`,`id`),
   KEY `uid_contactid_id` (`uid`,`contact-id`,`id`),
   KEY `uid_created` (`uid`,`created`),
+  KEY `uid_commented` (`uid`,`commented`),
   KEY `uid_unseen_contactid` (`uid`,`unseen`,`contact-id`),
-  KEY `uid_network_received` (`uid`,`network`(4),`received`),
-  KEY `uid_network_commented` (`uid`,`network`(4),`commented`),
+  KEY `uid_network_received` (`uid`,`network`,`received`),
+  KEY `uid_network_commented` (`uid`,`network`,`commented`),
   KEY `uid_thrparent` (`uid`,`thr-parent`(190)),
   KEY `uid_parenturi` (`uid`,`parent-uri`(190)),
   KEY `uid_contactid_created` (`uid`,`contact-id`,`created`),
   KEY `authorid_created` (`author-id`,`created`),
   KEY `ownerid` (`owner-id`),
   KEY `uid_uri` (`uid`,`uri`(190)),
-  KEY `resource-id` (`resource-id`(191)),
-  KEY `contactid_allowcid_allowpid_denycid_denygid` (`contact-id`,`allow_cid`(10),`allow_gid`(10),`deny_cid`(10),`deny_gid`(10)),
-  KEY `uid_type_changed` (`uid`,`type`(190),`changed`),
-  KEY `contactid_verb` (`contact-id`,`verb`(190)),
+  KEY `resource-id` (`resource-id`),
   KEY `deleted_changed` (`deleted`,`changed`),
   KEY `uid_wall_changed` (`uid`,`wall`,`changed`),
   KEY `uid_eventid` (`uid`,`event-id`),
-  KEY `uid_authorlink` (`uid`,`author-link`(190)),
-  KEY `uid_ownerlink` (`uid`,`owner-link`(190))
-) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4;
+  KEY `icid` (`icid`),
+  KEY `iaid` (`iaid`),
+  KEY `psid_wall` (`psid`,`wall`)
+) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8mb4 COMMENT='Structure for all posts';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -926,38 +956,133 @@ CREATE TABLE `item` (
 
 LOCK TABLES `item` WRITE;
 /*!40000 ALTER TABLE `item` DISABLE KEYS */;
-INSERT INTO `item` VALUES (1,'758d682b1559b10e589ca69032940355','urn:X-dfrn:friendica.local:6:758d682b1559b10e589ca69032940355',6,6,5,'wall',1,0,1,'urn:X-dfrn:friendica.local:6:758d682b1559b10e589ca69032940355','','urn:X-dfrn:friendica.local:6:758d682b1559b10e589ca69032940355','2017-09-07 09:16:08','2017-09-07 09:16:08','2017-09-07 09:16:08','2017-09-07 09:16:08','2017-09-07 09:16:08',19,'friendica5','http://friendica.local/profile/friendica5','http://friendica.local/photo/avatar/6.jpg',19,'friendica5','http://friendica.local/profile/friendica5','http://friendica.local/photo/avatar/6.jpg','','Hi, my name is friendica5, I am new here!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','',NULL,'lang=english;0.26171428571429:italian;0.20561904761905:swahili;0.19666666666667','http://friendica.local/display/758d682b1559b10e589ca69032940355','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,1,0,1,0,'dfrn','f6e9f0ecd605b649f4bb2f9025ef7132','Hi, my name is friendica5, I am new here!',1),(2,'758d682b1559b10e589ca69032940355','urn:X-dfrn:friendica.local:6:758d682b1559b10e589ca69032940355',0,19,5,'remote',0,0,2,'urn:X-dfrn:friendica.local:6:758d682b1559b10e589ca69032940355','','urn:X-dfrn:friendica.local:6:758d682b1559b10e589ca69032940355','2017-09-07 09:16:08','2017-09-07 09:16:08','2017-09-07 09:16:08','2017-09-07 09:16:08','2017-09-07 09:16:08',19,'friendica5','http://friendica.local/profile/friendica5','http://friendica.local/photo/avatar/6.jpg',19,'friendica5','http://friendica.local/profile/friendica5','http://friendica.local/photo/avatar/6.jpg','','Hi, my name is friendica5, I am new here!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','','','lang=english;0.26171428571429:italian;0.20561904761905:swahili;0.19666666666667','http://friendica.local/display/758d682b1559b10e589ca69032940355','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn','f6e9f0ecd605b649f4bb2f9025ef7132','Hi, my name is friendica5, I am new here!',1),(3,'758d682b1559b10e589ca69032940355','urn:X-dfrn:friendica.local:6:758d682b1559b10e589ca69032940355',2,14,5,'remote',0,0,3,'urn:X-dfrn:friendica.local:6:758d682b1559b10e589ca69032940355','','urn:X-dfrn:friendica.local:6:758d682b1559b10e589ca69032940355','2017-09-07 09:16:08','2017-09-07 09:16:08','2017-09-07 09:16:08','2017-09-07 09:16:08','2017-09-07 09:16:08',19,'friendica5','http://friendica.local/profile/friendica5','http://friendica.local/photo/profile/6.jpg',19,'friendica5','http://friendica.local/profile/friendica5','http://friendica.local/photo/profile/6.jpg','','Hi, my name is friendica5, I am new here!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','','','lang=english;0.26171428571429:italian;0.20561904761905:swahili;0.19666666666667','http://friendica.local/display/758d682b1559b10e589ca69032940355','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn','f6e9f0ecd605b649f4bb2f9025ef7132','Hi, my name is friendica5, I am new here!',1),(4,'758d682b1559b10e589ca69032940355','urn:X-dfrn:friendica.local:6:758d682b1559b10e589ca69032940355',5,18,5,'remote',0,0,4,'urn:X-dfrn:friendica.local:6:758d682b1559b10e589ca69032940355','','urn:X-dfrn:friendica.local:6:758d682b1559b10e589ca69032940355','2017-09-07 09:16:08','2017-09-07 09:16:08','2017-09-07 09:16:09','2017-09-07 09:16:09','2017-09-07 09:16:09',19,'friendica5','http://friendica.local/profile/friendica5','http://friendica.local/photo/profile/6.jpg',19,'friendica5','http://friendica.local/profile/friendica5','http://friendica.local/photo/profile/6.jpg','','Hi, my name is friendica5, I am new here!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','','','lang=english;0.26171428571429:italian;0.20561904761905:swahili;0.19666666666667','http://friendica.local/display/758d682b1559b10e589ca69032940355','',0,'','','','','','','','','','',0,0,0,1,0,0,0,1,0,0,0,1,0,'dfrn','f6e9f0ecd605b649f4bb2f9025ef7132','Hi, my name is friendica5, I am new here!',1),(5,'758d682b1359b10e79d3f8f310513025','urn:X-dfrn:friendica.local:3:758d682b1359b10e79d3f8f310513025',3,3,2,'wall',1,0,5,'urn:X-dfrn:friendica.local:3:758d682b1359b10e79d3f8f310513025','','urn:X-dfrn:friendica.local:3:758d682b1359b10e79d3f8f310513025','2017-09-07 09:16:41','2017-09-07 09:16:41','2017-09-07 09:16:41','2017-09-07 09:16:41','2017-09-07 09:16:41',20,'friendica2','http://friendica.local/profile/friendica2','http://friendica.local/photo/avatar/3.jpg',20,'friendica2','http://friendica.local/profile/friendica2','http://friendica.local/photo/avatar/3.jpg','','Hello, I\'m friendica2! How are you?','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','',NULL,'lang=italian;0.16459770114943:english;0.16:hawaiian;0.13287356321839','http://friendica.local/display/758d682b1359b10e79d3f8f310513025','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,1,0,1,0,'dfrn','cb3a2ad36c8910dac777062647b0e739','Hello, I\'m friendica2! How are you?',1),(6,'758d682b1359b10e79d3f8f310513025','urn:X-dfrn:friendica.local:3:758d682b1359b10e79d3f8f310513025',0,20,2,'remote',0,0,6,'urn:X-dfrn:friendica.local:3:758d682b1359b10e79d3f8f310513025','','urn:X-dfrn:friendica.local:3:758d682b1359b10e79d3f8f310513025','2017-09-07 09:16:41','2017-09-07 09:16:41','2017-09-07 09:16:42','2017-09-07 09:16:41','2017-09-07 09:16:42',20,'friendica2','http://friendica.local/profile/friendica2','http://friendica.local/photo/avatar/3.jpg',20,'friendica2','http://friendica.local/profile/friendica2','http://friendica.local/photo/avatar/3.jpg','','Hello, I\'m friendica2! How are you?','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','','','lang=italian;0.16459770114943:english;0.16:hawaiian;0.13287356321839','http://friendica.local/display/758d682b1359b10e79d3f8f310513025','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn','cb3a2ad36c8910dac777062647b0e739','Hello, I\'m friendica2! How are you?',1),(7,'758d682b1359b10e79d3f8f310513025','urn:X-dfrn:friendica.local:3:758d682b1359b10e79d3f8f310513025',2,8,2,'remote',0,0,7,'urn:X-dfrn:friendica.local:3:758d682b1359b10e79d3f8f310513025','','urn:X-dfrn:friendica.local:3:758d682b1359b10e79d3f8f310513025','2017-09-07 09:16:41','2017-09-07 09:16:41','2017-09-07 09:16:42','2017-09-07 09:16:42','2017-09-07 09:16:42',20,'friendica2','http://friendica.local/profile/friendica2','http://friendica.local/photo/profile/3.jpg',20,'friendica2','http://friendica.local/profile/friendica2','http://friendica.local/photo/profile/3.jpg','','Hello, I\'m friendica2! How are you?','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','','','lang=italian;0.16459770114943:english;0.16:hawaiian;0.13287356321839','http://friendica.local/display/758d682b1359b10e79d3f8f310513025','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn','cb3a2ad36c8910dac777062647b0e739','Hello, I\'m friendica2! How are you?',1),(8,'758d682b1359b10e79d3f8f310513025','urn:X-dfrn:friendica.local:3:758d682b1359b10e79d3f8f310513025',4,15,2,'remote',0,0,8,'urn:X-dfrn:friendica.local:3:758d682b1359b10e79d3f8f310513025','','urn:X-dfrn:friendica.local:3:758d682b1359b10e79d3f8f310513025','2017-09-07 09:16:41','2017-09-07 09:16:41','2017-09-07 09:16:42','2017-09-07 09:16:42','2017-09-07 09:16:42',20,'friendica2','http://friendica.local/profile/friendica2','http://friendica.local/photo/profile/3.jpg',20,'friendica2','http://friendica.local/profile/friendica2','http://friendica.local/photo/profile/3.jpg','','Hello, I\'m friendica2! How are you?','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','','','lang=italian;0.16459770114943:english;0.16:hawaiian;0.13287356321839','http://friendica.local/display/758d682b1359b10e79d3f8f310513025','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn','cb3a2ad36c8910dac777062647b0e739','Hello, I\'m friendica2! How are you?',1),(9,'758d682b1859b10ebd6abab685903735','urn:X-dfrn:friendica.local:2:758d682b1859b10ebd6abab685903735',2,2,1,'wall',1,0,9,'urn:X-dfrn:friendica.local:2:758d682b1859b10ebd6abab685903735','','urn:X-dfrn:friendica.local:2:758d682b1859b10ebd6abab685903735','2017-09-07 09:17:49','2017-09-07 09:17:49','2017-09-07 09:18:24','2017-09-07 09:17:49','2017-09-07 09:18:24',21,'friendica1','http://friendica.local/profile/friendica1','http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-5.jpg?ts=1504775575',21,'friendica1','http://friendica.local/profile/friendica1','http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-5.jpg?ts=1504775575','','Hey, group2, this post is only visible to you!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','',NULL,'lang=english;0.32923076923077:czech;0.1965811965812:slovak;0.19179487179487','http://friendica.local/display/758d682b1859b10ebd6abab685903735','',0,'','','','','','','','<8>','','',1,0,0,1,0,0,0,0,0,1,0,0,0,'dfrn','d5d5408ee800a3c1a3b3d4b2826935f2','Hey, group2, this post is only visible to you!',0),(10,'758d682b1859b10ebd6abab685903735','urn:X-dfrn:friendica.local:2:758d682b1859b10ebd6abab685903735',4,9,1,'remote',0,0,10,'urn:X-dfrn:friendica.local:2:758d682b1859b10ebd6abab685903735','','urn:X-dfrn:friendica.local:2:758d682b1859b10ebd6abab685903735','2017-09-07 09:17:49','2017-09-07 09:17:49','2017-09-07 09:18:24','2017-09-07 09:17:49','2017-09-07 09:18:24',21,'friendica1','http://friendica.local/profile/friendica1','http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575',21,'friendica1','http://friendica.local/profile/friendica1','http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575','','Hey, group2, this post is only visible to you!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','','','lang=english;0.32923076923077:czech;0.1965811965812:slovak;0.19179487179487','http://friendica.local/display/758d682b1859b10ebd6abab685903735','',0,'','','','','','','','','','',1,0,0,1,0,0,0,0,0,0,0,0,0,'dfrn','d5d5408ee800a3c1a3b3d4b2826935f2','Hey, group2, this post is only visible to you!',0),(11,'758d682b1859b10ebd6abab685903735','urn:X-dfrn:friendica.local:2:758d682b1859b10ebd6abab685903735',6,13,1,'remote',0,0,11,'urn:X-dfrn:friendica.local:2:758d682b1859b10ebd6abab685903735','','urn:X-dfrn:friendica.local:2:758d682b1859b10ebd6abab685903735','2017-09-07 09:17:49','2017-09-07 09:17:49','2017-09-07 09:18:25','2017-09-07 09:17:49','2017-09-07 09:18:25',21,'friendica1','http://friendica.local/profile/friendica1','http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575',21,'friendica1','http://friendica.local/profile/friendica1','http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575','','Hey, group2, this post is only visible to you!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','','','lang=english;0.32923076923077:czech;0.1965811965812:slovak;0.19179487179487','http://friendica.local/display/758d682b1859b10ebd6abab685903735','',0,'','','','','','','','','','',1,0,0,1,0,0,0,1,0,0,0,0,0,'dfrn','d5d5408ee800a3c1a3b3d4b2826935f2','Hey, group2, this post is only visible to you!',0),(12,'758d682b1059b10ee096f38798595234','urn:X-dfrn:friendica.local:4:758d682b1059b10ee096f38798595234',4,4,3,'remote-comment',0,6,10,'urn:X-dfrn:friendica.local:2:758d682b1859b10ebd6abab685903735','','urn:X-dfrn:friendica.local:2:758d682b1859b10ebd6abab685903735','2017-09-07 09:18:24','2017-09-07 09:18:24','2017-09-07 09:18:24','2017-09-07 09:18:24','2017-09-07 09:18:24',22,'friendica3','http://friendica.local/profile/friendica3','http://friendica.local/photo/avatar/4.jpg',22,'friendica3','http://friendica.local/profile/friendica3','http://friendica.local/photo/avatar/4.jpg','','Cool!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/comment','','',NULL,'lang=welsh;0.30333333333333:romanian;0.24583333333333:portuguese;0.24583333333333','http://friendica.local/display/758d682b1059b10ee096f38798595234','',0,'','','','','','','','','','',1,0,0,1,0,0,0,0,0,1,0,1,0,'dfrn','481164a1e08e1182a8c3476458754cfe','Cool!',0),(13,'758d682b1059b10ee096f38798595234','urn:X-dfrn:friendica.local:4:758d682b1059b10ee096f38798595234',2,10,3,'remote-comment',1,6,9,'urn:X-dfrn:friendica.local:2:758d682b1859b10ebd6abab685903735','','urn:X-dfrn:friendica.local:2:758d682b1859b10ebd6abab685903735','2017-09-07 09:18:24','2017-09-07 09:18:24','2017-09-07 09:18:24','2017-09-07 09:18:24','2017-09-07 09:18:24',22,'friendica3','http://friendica.local/profile/friendica3','http://friendica.local/photo/profile/4.jpg',22,'friendica3','http://friendica.local/profile/friendica3','http://friendica.local/photo/profile/4.jpg','','Cool!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/comment','','','','lang=welsh;0.30333333333333:romanian;0.24583333333333:portuguese;0.24583333333333','http://friendica.local/display/758d682b1059b10ee096f38798595234','',0,'','','','','','','','<8>','','',1,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn','481164a1e08e1182a8c3476458754cfe','Cool!',0),(14,'758d682b1059b10ee096f38798595234','urn:X-dfrn:friendica.local:4:758d682b1059b10ee096f38798595234',6,13,3,'remote',0,6,11,'urn:X-dfrn:friendica.local:2:758d682b1859b10ebd6abab685903735','','urn:X-dfrn:friendica.local:2:758d682b1859b10ebd6abab685903735','2017-09-07 09:18:24','2017-09-07 09:18:24','2017-09-07 09:18:24','2017-09-07 09:18:25','2017-09-07 09:18:25',22,'friendica3','http://friendica.local/profile/friendica3','http://friendica.local/photo/01ff45af20fe4c6fb230e6fc773f3ef8-4.jpg?ts=1504775904',22,'friendica3','http://friendica.local/profile/friendica3','http://friendica.local/photo/01ff45af20fe4c6fb230e6fc773f3ef8-4.jpg?ts=1504775904','','Cool!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/comment','','','','lang=welsh;0.30333333333333:romanian;0.24583333333333:portuguese;0.24583333333333','http://friendica.local/display/758d682b1059b10ee096f38798595234','',0,'','','','','','','','','','',1,0,0,1,0,0,0,1,0,0,0,1,0,'dfrn','481164a1e08e1182a8c3476458754cfe','Cool!',0),(15,'758d682b1459b10f0be17c3206121357','urn:X-dfrn:friendica.local:2:758d682b1459b10f0be17c3206121357',2,2,1,'wall',1,0,15,'urn:X-dfrn:friendica.local:2:758d682b1459b10f0be17c3206121357','','urn:X-dfrn:friendica.local:2:758d682b1459b10f0be17c3206121357','2017-09-07 09:19:07','2017-09-07 09:19:07','2017-09-07 09:19:28','2017-09-07 09:19:07','2017-09-07 09:19:28',21,'friendica1','http://friendica.local/profile/friendica1','http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-5.jpg?ts=1504775575',21,'friendica1','http://friendica.local/profile/friendica1','http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-5.jpg?ts=1504775575','','And this post goes to group1 only!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','',NULL,'lang=english;0.43118279569892:pidgin;0.29258064516129:lithuanian;0.21688172043011','http://friendica.local/display/758d682b1459b10f0be17c3206121357','',0,'','','','','','','','<7>','','',1,0,0,1,0,0,0,0,0,1,0,0,0,'dfrn','55a23b185f917e31a5b959328b696300','And this post goes to group1 only!',0),(16,'758d682b1459b10f0be17c3206121357','urn:X-dfrn:friendica.local:2:758d682b1459b10f0be17c3206121357',3,7,1,'remote',0,0,16,'urn:X-dfrn:friendica.local:2:758d682b1459b10f0be17c3206121357','','urn:X-dfrn:friendica.local:2:758d682b1459b10f0be17c3206121357','2017-09-07 09:19:07','2017-09-07 09:19:07','2017-09-07 09:19:28','2017-09-07 09:19:08','2017-09-07 09:19:28',21,'friendica1','http://friendica.local/profile/friendica1','http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575',21,'friendica1','http://friendica.local/profile/friendica1','http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575','','And this post goes to group1 only!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','','','lang=english;0.43118279569892:pidgin;0.29258064516129:lithuanian;0.21688172043011','http://friendica.local/display/758d682b1459b10f0be17c3206121357','',0,'','','','','','','','','','',1,0,0,1,0,0,0,0,0,0,0,0,0,'dfrn','55a23b185f917e31a5b959328b696300','And this post goes to group1 only!',0),(17,'758d682b1459b10f0be17c3206121357','urn:X-dfrn:friendica.local:2:758d682b1459b10f0be17c3206121357',5,11,1,'remote',0,0,17,'urn:X-dfrn:friendica.local:2:758d682b1459b10f0be17c3206121357','','urn:X-dfrn:friendica.local:2:758d682b1459b10f0be17c3206121357','2017-09-07 09:19:07','2017-09-07 09:19:07','2017-09-07 09:19:28','2017-09-07 09:19:08','2017-09-07 09:19:28',21,'friendica1','http://friendica.local/profile/friendica1','http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575',21,'friendica1','http://friendica.local/profile/friendica1','http://friendica.local/photo/4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575','','And this post goes to group1 only!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','','','lang=english;0.43118279569892:pidgin;0.29258064516129:lithuanian;0.21688172043011','http://friendica.local/display/758d682b1459b10f0be17c3206121357','',0,'','','','','','','','','','',1,0,0,1,0,0,0,1,0,0,0,0,0,'dfrn','55a23b185f917e31a5b959328b696300','And this post goes to group1 only!',0),(18,'758d682b2059b10f204f9c2684001373','urn:X-dfrn:friendica.local:3:758d682b2059b10f204f9c2684001373',3,3,2,'remote-comment',0,6,16,'urn:X-dfrn:friendica.local:2:758d682b1459b10f0be17c3206121357','','urn:X-dfrn:friendica.local:2:758d682b1459b10f0be17c3206121357','2017-09-07 09:19:28','2017-09-07 09:19:28','2017-09-07 09:19:28','2017-09-07 09:19:28','2017-09-07 09:19:28',20,'friendica2','http://friendica.local/profile/friendica2','http://friendica.local/photo/avatar/3.jpg',20,'friendica2','http://friendica.local/profile/friendica2','http://friendica.local/photo/avatar/3.jpg','','Yay!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/comment','','',NULL,'lang=tagalog;0.41777777777778:somali;0.35111111111111:swahili;0.32777777777778','http://friendica.local/display/758d682b2059b10f204f9c2684001373','',0,'','','','','','','','','','',1,0,0,1,0,0,0,0,0,1,0,1,0,'dfrn','0e54fc6a9dba79c2bc03ac08f3bf4a27','Yay!',0),(19,'758d682b2059b10f204f9c2684001373','urn:X-dfrn:friendica.local:3:758d682b2059b10f204f9c2684001373',2,8,2,'remote-comment',1,6,15,'urn:X-dfrn:friendica.local:2:758d682b1459b10f0be17c3206121357','','urn:X-dfrn:friendica.local:2:758d682b1459b10f0be17c3206121357','2017-09-07 09:19:28','2017-09-07 09:19:28','2017-09-07 09:19:28','2017-09-07 09:19:28','2017-09-07 09:19:28',20,'friendica2','http://friendica.local/profile/friendica2','http://friendica.local/photo/profile/3.jpg',20,'friendica2','http://friendica.local/profile/friendica2','http://friendica.local/photo/profile/3.jpg','','Yay!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/comment','','','','lang=tagalog;0.41777777777778:somali;0.35111111111111:swahili;0.32777777777778','http://friendica.local/display/758d682b2059b10f204f9c2684001373','',0,'','','','','','','','<7>','','',1,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn','0e54fc6a9dba79c2bc03ac08f3bf4a27','Yay!',0),(20,'758d682b2059b10f204f9c2684001373','urn:X-dfrn:friendica.local:3:758d682b2059b10f204f9c2684001373',5,11,2,'remote',0,6,17,'urn:X-dfrn:friendica.local:2:758d682b1459b10f0be17c3206121357','','urn:X-dfrn:friendica.local:2:758d682b1459b10f0be17c3206121357','2017-09-07 09:19:28','2017-09-07 09:19:28','2017-09-07 09:19:28','2017-09-07 09:19:28','2017-09-07 09:19:28',20,'friendica2','http://friendica.local/profile/friendica2','http://friendica.local/photo/5b0e9c6920adcf8efafaf3743d0e0c6c-4.jpg?ts=1504775802',20,'friendica2','http://friendica.local/profile/friendica2','http://friendica.local/photo/5b0e9c6920adcf8efafaf3743d0e0c6c-4.jpg?ts=1504775802','','Yay!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/comment','','','','lang=tagalog;0.41777777777778:somali;0.35111111111111:swahili;0.32777777777778','http://friendica.local/display/758d682b2059b10f204f9c2684001373','',0,'','','','','','','','','','',1,0,0,1,0,0,0,1,0,0,0,1,0,'dfrn','0e54fc6a9dba79c2bc03ac08f3bf4a27','Yay!',0);
+INSERT INTO `item` VALUES (1,'930bb26b-205b-f01c-e722-bc8141142783','http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'',1,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'2018-11-17 13:51:35','2018-11-17 13:51:35','2018-11-17 14:02:14','2018-11-17 13:51:35','2018-11-17 14:02:14',0,'dfrn',10,10,1,NULL,'',0,1,0,1,0,0,2,4,1,1,0,0,0,0,0,1,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2,'930bb26b-205b-f01c-e722-bc8141142783','http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'',2,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'2018-11-17 13:51:35','2018-11-17 13:51:35','2018-11-17 14:03:07','2018-11-17 13:51:35','2018-11-17 14:03:07',0,'dfrn',10,10,1,NULL,'',0,1,0,1,0,0,0,10,0,0,0,0,1,0,0,2,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3,'930bb26b-125b-f01c-fe10-e5f035205082','http://192.168.22.10/objects/930bb26b-125b-f01c-fe10-e5f035205082',2,'',3,'http://192.168.22.10/objects/930bb26b-125b-f01c-fe10-e5f035205082',2,'http://192.168.22.10/objects/930bb26b-125b-f01c-fe10-e5f035205082',2,'2018-11-17 13:51:58','2018-11-17 13:51:58','2018-11-17 13:51:58','2018-11-17 13:51:58','2018-11-17 13:51:58',0,'dfrn',10,10,2,NULL,'',0,0,1,1,0,0,2,4,1,1,0,0,0,0,0,3,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4,'930bb26b-155b-f01d-60ee-5ee161000810','http://192.168.22.10/objects/930bb26b-155b-f01d-60ee-5ee161000810',3,'',2,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'2018-11-17 13:53:36','2018-11-17 13:53:36','2018-11-17 13:53:36','2018-11-17 13:53:36','2018-11-17 13:53:36',6,'dfrn',9,9,3,NULL,'',0,1,0,1,0,0,0,5,0,1,0,0,1,0,0,2,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(5,'930bb26b-135b-f01d-8e3d-8cc050176928','http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928',4,'',2,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'2018-11-17 13:54:22','2018-11-17 13:54:22','2018-11-17 13:54:22','2018-11-17 13:54:22','2018-11-17 13:54:22',6,'dfrn',11,11,4,NULL,'',0,1,0,1,0,0,0,7,0,1,0,0,1,0,0,2,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(6,'930bb26b-205b-f01c-e722-bc8141142783','http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'',6,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'2018-11-17 13:51:35','2018-11-17 13:51:35','2018-11-17 14:03:08','2018-11-17 14:00:01','2018-11-17 14:03:08',0,'dfrn',10,10,1,NULL,'',0,1,0,1,0,0,3,14,0,0,0,0,1,0,0,4,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(7,'930bb26b-205b-f01c-e722-bc8141142783','http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'',7,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'2018-11-17 13:51:35','2018-11-17 13:51:35','2018-11-17 14:03:08','2018-11-17 14:00:02','2018-11-17 14:03:08',0,'dfrn',10,10,1,NULL,'',0,1,0,1,0,0,6,20,0,0,0,0,1,0,0,5,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8,'930bb26b-205b-f01c-e722-bc8141142783','http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'',8,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'2018-11-17 13:51:35','2018-11-17 13:51:35','2018-11-17 14:03:08','2018-11-17 14:00:02','2018-11-17 14:03:08',0,'dfrn',10,10,1,NULL,'',0,1,0,1,0,0,5,18,0,0,0,0,0,0,0,6,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(9,'930bb26b-205b-f01c-e722-bc8141142783','http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'',9,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'2018-11-17 13:51:35','2018-11-17 13:51:35','2018-11-17 14:03:08','2018-11-17 14:00:02','2018-11-17 14:03:08',0,'dfrn',10,10,1,NULL,'',0,1,0,1,0,0,4,16,0,0,0,0,1,0,0,7,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(10,'930bb26b-125b-f01c-fe10-e5f035205082','http://192.168.22.10/objects/930bb26b-125b-f01c-fe10-e5f035205082',2,'',10,'http://192.168.22.10/objects/930bb26b-125b-f01c-fe10-e5f035205082',2,'http://192.168.22.10/objects/930bb26b-125b-f01c-fe10-e5f035205082',2,'2018-11-17 13:51:58','2018-11-17 13:51:58','2018-11-17 14:00:02','2018-11-17 14:00:02','2018-11-17 14:00:02',0,'dfrn',10,10,2,NULL,'',0,0,1,1,0,0,5,18,0,0,0,0,0,0,0,6,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(11,'930bb26b-125b-f01c-fe10-e5f035205082','http://192.168.22.10/objects/930bb26b-125b-f01c-fe10-e5f035205082',2,'',11,'http://192.168.22.10/objects/930bb26b-125b-f01c-fe10-e5f035205082',2,'http://192.168.22.10/objects/930bb26b-125b-f01c-fe10-e5f035205082',2,'2018-11-17 13:51:58','2018-11-17 13:51:58','2018-11-17 14:00:03','2018-11-17 14:00:02','2018-11-17 14:00:03',0,'dfrn',10,10,2,NULL,'',0,0,1,1,0,0,3,14,0,0,0,0,1,0,0,4,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(12,'930bb26b-155b-f01d-60ee-5ee161000810','http://192.168.22.10/objects/930bb26b-155b-f01d-60ee-5ee161000810',3,'',1,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'2018-11-17 13:53:36','2018-11-17 13:53:36','2018-11-17 13:53:36','2018-11-17 14:00:04','2018-11-17 13:53:36',6,'apub',9,9,3,NULL,'',0,1,0,1,0,0,2,15,1,0,0,0,0,0,0,1,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(13,'930bb26b-155b-f01d-60ee-5ee161000810','http://192.168.22.10/objects/930bb26b-155b-f01d-60ee-5ee161000810',3,'',6,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'2018-11-17 13:53:36','2018-11-17 13:53:36','2018-11-17 13:53:36','2018-11-17 14:00:04','2018-11-17 13:53:36',6,'apub',9,9,3,NULL,'',0,1,0,1,0,0,3,5,0,0,0,0,1,0,0,4,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(14,'930bb26b-135b-f01d-8e3d-8cc050176928','http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928',4,'',1,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'2018-11-17 13:54:22','2018-11-17 13:54:22','2018-11-17 13:54:22','2018-11-17 14:00:04','2018-11-17 13:54:22',6,'apub',11,11,4,NULL,'',0,1,0,1,0,0,2,19,1,0,0,0,0,0,0,1,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(15,'930bb26b-155b-f01d-60ee-5ee161000810','http://192.168.22.10/objects/930bb26b-155b-f01d-60ee-5ee161000810',3,'',7,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'2018-11-17 13:53:36','2018-11-17 13:53:36','2018-11-17 13:53:36','2018-11-17 14:00:04','2018-11-17 13:53:36',6,'apub',9,9,3,NULL,'',0,1,0,1,0,0,6,9,0,0,0,0,1,0,0,5,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16,'930bb26b-135b-f01d-8e3d-8cc050176928','http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928',4,'',6,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'2018-11-17 13:54:22','2018-11-17 13:54:22','2018-11-17 13:54:22','2018-11-17 14:00:04','2018-11-17 13:54:22',6,'apub',11,11,4,NULL,'',0,1,0,1,0,0,3,11,0,0,0,0,1,0,0,4,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17,'930bb26b-155b-f01d-60ee-5ee161000810','http://192.168.22.10/objects/930bb26b-155b-f01d-60ee-5ee161000810',3,'',8,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'2018-11-17 13:53:36','2018-11-17 13:53:36','2018-11-17 13:53:36','2018-11-17 14:00:04','2018-11-17 13:53:36',6,'apub',9,9,3,NULL,'',0,1,0,1,0,0,5,9,0,0,0,0,0,0,0,6,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18,'930bb26b-135b-f01d-8e3d-8cc050176928','http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928',4,'',7,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'2018-11-17 13:54:22','2018-11-17 13:54:22','2018-11-17 13:54:22','2018-11-17 14:00:04','2018-11-17 13:54:22',6,'apub',11,11,4,NULL,'',0,1,0,1,0,0,6,24,0,0,0,0,1,0,0,5,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19,'930bb26b-155b-f01d-60ee-5ee161000810','http://192.168.22.10/objects/930bb26b-155b-f01d-60ee-5ee161000810',3,'',9,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'2018-11-17 13:53:36','2018-11-17 13:53:36','2018-11-17 13:53:36','2018-11-17 14:00:04','2018-11-17 13:53:36',6,'apub',9,9,3,NULL,'',0,1,0,1,0,0,4,22,0,0,0,0,1,0,0,7,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(20,'930bb26b-135b-f01d-8e3d-8cc050176928','http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928',4,'',8,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'2018-11-17 13:54:22','2018-11-17 13:54:22','2018-11-17 13:54:22','2018-11-17 14:00:04','2018-11-17 13:54:22',6,'apub',11,11,4,NULL,'',0,1,0,1,0,0,5,7,0,0,0,0,0,0,0,6,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(21,'930bb26b-135b-f01d-8e3d-8cc050176928','http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928',4,'',9,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'2018-11-17 13:54:22','2018-11-17 13:54:22','2018-11-17 13:54:22','2018-11-17 14:00:04','2018-11-17 13:54:22',6,'apub',11,11,4,NULL,'',0,1,0,1,0,0,4,11,0,0,0,0,1,0,0,7,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(22,'930bb26b-765b-f01f-5a43-22a585408489','http://192.168.22.10/objects/930bb26b-205b-f01f-5a43-237373720429',5,'',1,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928',4,'2018-11-17 14:02:02','2018-11-17 14:02:02','2018-11-17 14:02:02','2018-11-17 14:02:02','2018-11-17 14:02:02',3,'dfrn',10,10,NULL,1,'',0,1,0,1,0,0,2,4,1,1,0,0,0,0,0,1,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(23,'930bb26b-765b-f01f-5a43-22a585408489','http://192.168.22.10/objects/930bb26b-205b-f01f-5a43-237373720429',5,'',2,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928',4,'2018-11-17 14:02:02','2018-11-17 14:02:02','2018-11-17 14:02:02','2018-11-17 14:02:02','2018-11-17 14:02:02',3,'dfrn',10,10,NULL,1,'',0,1,0,1,0,0,0,10,0,0,0,0,1,0,0,2,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24,'930bb26b-555b-f01f-66c7-ab6175377664','http://192.168.22.10/objects/930bb26b-555b-f01f-66c7-ab6175377664',6,'',1,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928',4,'2018-11-17 14:02:14','2018-11-17 14:02:14','2018-11-17 14:02:14','2018-11-17 14:02:14','2018-11-17 14:02:14',6,'dfrn',10,10,5,NULL,'',0,1,0,1,0,0,2,4,1,1,0,0,0,0,0,1,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(25,'930bb26b-555b-f01f-66c7-ab6175377664','http://192.168.22.10/objects/930bb26b-555b-f01f-66c7-ab6175377664',6,'',2,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928',4,'2018-11-17 14:02:14','2018-11-17 14:02:14','2018-11-17 14:02:14','2018-11-17 14:02:14','2018-11-17 14:02:14',6,'dfrn',10,10,5,NULL,'',0,1,0,1,0,0,0,10,0,0,0,0,1,0,0,2,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(26,'930bb26b-195b-f01f-925f-1a4363126542','http://192.168.22.10/objects/930bb26b-195b-f01f-925f-1a4363126542',7,'',26,'http://192.168.22.10/objects/930bb26b-195b-f01f-925f-1a4363126542',7,'http://192.168.22.10/objects/930bb26b-195b-f01f-925f-1a4363126542',7,'2018-11-17 14:02:58','2018-11-17 14:02:58','2018-11-17 14:02:58','2018-11-17 14:02:58','2018-11-17 14:02:58',0,'dfrn',11,11,6,NULL,'',0,1,0,1,0,0,5,7,1,1,0,0,0,0,0,6,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27,'930bb26b-195b-f01f-925f-1a4363126542','http://192.168.22.10/objects/930bb26b-195b-f01f-925f-1a4363126542',7,'',27,'http://192.168.22.10/objects/930bb26b-195b-f01f-925f-1a4363126542',7,'http://192.168.22.10/objects/930bb26b-195b-f01f-925f-1a4363126542',7,'2018-11-17 14:02:58','2018-11-17 14:02:58','2018-11-17 14:02:58','2018-11-17 14:02:58','2018-11-17 14:02:58',0,'dfrn',11,11,6,NULL,'',0,1,0,1,0,0,0,11,0,0,0,0,1,0,0,2,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(28,'930bb26b-765b-f01f-5a43-22a585408489','http://192.168.22.10/objects/930bb26b-205b-f01f-5a43-237373720429#Like',8,'',8,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928',4,'2018-11-17 14:02:02','2018-11-17 14:02:02','2018-11-17 14:02:02','2018-11-17 14:03:07','2018-11-17 14:02:02',3,'apub',10,10,NULL,2,'',0,1,0,1,0,0,5,18,0,0,0,0,1,0,0,6,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(29,'930bb26b-765b-f01f-5a43-22a585408489','http://192.168.22.10/objects/930bb26b-205b-f01f-5a43-237373720429#Like',8,'',2,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928',4,'2018-11-17 14:02:02','2018-11-17 14:02:02','2018-11-17 14:02:02','2018-11-17 14:03:07','2018-11-17 14:02:02',3,'apub',10,10,NULL,2,'',0,1,0,1,0,0,0,10,0,0,0,0,1,0,0,2,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(30,'930bb26b-765b-f01f-5a43-22a585408489','http://192.168.22.10/objects/930bb26b-205b-f01f-5a43-237373720429#Like',8,'',6,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928',4,'2018-11-17 14:02:02','2018-11-17 14:02:02','2018-11-17 14:02:02','2018-11-17 14:03:07','2018-11-17 14:02:02',3,'apub',10,10,NULL,2,'',0,1,0,1,0,0,3,14,0,0,0,0,1,0,0,4,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(31,'930bb26b-765b-f01f-5a43-22a585408489','http://192.168.22.10/objects/930bb26b-205b-f01f-5a43-237373720429#Like',8,'',9,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928',4,'2018-11-17 14:02:02','2018-11-17 14:02:02','2018-11-17 14:02:02','2018-11-17 14:03:07','2018-11-17 14:02:02',3,'apub',10,10,NULL,2,'',0,1,0,1,0,0,4,16,0,0,0,0,1,0,0,7,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(32,'930bb26b-765b-f01f-5a43-22a585408489','http://192.168.22.10/objects/930bb26b-205b-f01f-5a43-237373720429#Like',8,'',7,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928',4,'2018-11-17 14:02:02','2018-11-17 14:02:02','2018-11-17 14:02:02','2018-11-17 14:03:07','2018-11-17 14:02:02',3,'apub',10,10,NULL,2,'',0,1,0,1,0,0,6,20,0,0,0,0,1,0,0,5,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(33,'930bb26b-195b-f01f-925f-1a4363126542','http://192.168.22.10/objects/930bb26b-195b-f01f-925f-1a4363126542',7,'',33,'http://192.168.22.10/objects/930bb26b-195b-f01f-925f-1a4363126542',7,'http://192.168.22.10/objects/930bb26b-195b-f01f-925f-1a4363126542',7,'2018-11-17 14:02:58','2018-11-17 14:02:58','2018-11-17 14:03:08','2018-11-17 14:03:08','2018-11-17 14:03:08',0,'dfrn',11,11,6,NULL,'',0,1,0,1,0,0,2,19,0,0,0,0,1,0,0,1,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34,'930bb26b-555b-f01f-66c7-ab6175377664','http://192.168.22.10/objects/930bb26b-555b-f01f-66c7-ab6175377664',6,'',6,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928',4,'2018-11-17 14:02:14','2018-11-17 14:02:14','2018-11-17 14:02:14','2018-11-17 14:03:08','2018-11-17 14:02:14',6,'apub',10,10,5,NULL,'',0,1,0,1,0,0,3,14,0,0,0,0,1,0,0,4,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(35,'930bb26b-555b-f01f-66c7-ab6175377664','http://192.168.22.10/objects/930bb26b-555b-f01f-66c7-ab6175377664',6,'',7,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928',4,'2018-11-17 14:02:14','2018-11-17 14:02:14','2018-11-17 14:02:14','2018-11-17 14:03:08','2018-11-17 14:02:14',6,'apub',10,10,5,NULL,'',0,1,0,1,0,0,6,20,0,0,0,0,1,0,0,5,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(36,'930bb26b-555b-f01f-66c7-ab6175377664','http://192.168.22.10/objects/930bb26b-555b-f01f-66c7-ab6175377664',6,'',8,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928',4,'2018-11-17 14:02:14','2018-11-17 14:02:14','2018-11-17 14:02:14','2018-11-17 14:03:08','2018-11-17 14:02:14',6,'apub',10,10,5,NULL,'',0,1,0,1,0,0,5,18,0,0,0,0,1,0,0,6,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(37,'930bb26b-555b-f01f-66c7-ab6175377664','http://192.168.22.10/objects/930bb26b-555b-f01f-66c7-ab6175377664',6,'',9,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928',4,'2018-11-17 14:02:14','2018-11-17 14:02:14','2018-11-17 14:02:14','2018-11-17 14:03:08','2018-11-17 14:02:14',6,'dfrn',10,10,5,NULL,'',0,1,0,1,0,0,4,16,0,0,0,0,1,0,0,7,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(38,'930bb26b-555b-f01f-66c7-ab6175377664','http://192.168.22.10/objects/930bb26b-555b-f01f-66c7-ab6175377664',6,'',9,'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',1,'http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928',4,'2018-11-17 14:02:14','2018-11-17 14:02:14','2018-11-17 14:02:14','2018-11-17 14:03:08','2018-11-17 14:02:14',6,'apub',10,10,5,NULL,'',0,1,0,1,0,0,4,16,0,0,0,0,1,0,0,7,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(39,'930bb26b-195b-f01f-925f-1a4363126542','http://192.168.22.10/objects/930bb26b-195b-f01f-925f-1a4363126542',7,'',39,'http://192.168.22.10/objects/930bb26b-195b-f01f-925f-1a4363126542',7,'http://192.168.22.10/objects/930bb26b-195b-f01f-925f-1a4363126542',7,'2018-11-17 14:02:58','2018-11-17 14:02:58','2018-11-17 14:03:08','2018-11-17 14:03:08','2018-11-17 14:03:08',0,'dfrn',11,11,6,NULL,'',0,1,0,1,0,0,6,24,0,0,0,0,1,0,0,5,'',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
 /*!40000 ALTER TABLE `item` ENABLE KEYS */;
 UNLOCK TABLES;
 
 --
--- Table structure for table `item_id`
+-- Table structure for table `item-activity`
 --
 
-DROP TABLE IF EXISTS `item_id`;
+DROP TABLE IF EXISTS `item-activity`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `item_id` (
-  `id` int(11) NOT NULL AUTO_INCREMENT,
-  `iid` int(11) NOT NULL DEFAULT '0',
-  `uid` int(11) NOT NULL DEFAULT '0',
-  `sid` varchar(255) NOT NULL DEFAULT '',
-  `service` varchar(255) NOT NULL DEFAULT '',
+CREATE TABLE `item-activity` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `uri` varchar(255) DEFAULT NULL,
+  `uri-id` int(10) unsigned DEFAULT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
+  `uri-hash` varchar(80) NOT NULL DEFAULT '' COMMENT 'RIPEMD-128 hash from uri',
+  `activity` smallint(5) unsigned NOT NULL DEFAULT '0',
   PRIMARY KEY (`id`),
-  KEY `uid` (`uid`),
-  KEY `sid` (`sid`(191)),
-  KEY `service` (`service`(32)),
-  KEY `iid` (`iid`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+  UNIQUE KEY `uri-hash` (`uri-hash`),
+  KEY `uri` (`uri`(191)),
+  KEY `uri-id` (`uri-id`)
+) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COMMENT='Activities for items';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `item-activity`
+--
+
+LOCK TABLES `item-activity` WRITE;
+/*!40000 ALTER TABLE `item-activity` DISABLE KEYS */;
+INSERT INTO `item-activity` VALUES (1,NULL,5,'5',0),(2,NULL,8,'8',0);
+/*!40000 ALTER TABLE `item-activity` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `item-content`
+--
+
+DROP TABLE IF EXISTS `item-content`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `item-content` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `uri` varchar(255) DEFAULT NULL,
+  `uri-id` int(10) unsigned DEFAULT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
+  `uri-plink-hash` varchar(80) NOT NULL DEFAULT '' COMMENT 'RIPEMD-128 hash from uri',
+  `title` varchar(255) NOT NULL DEFAULT '' COMMENT 'item title',
+  `content-warning` varchar(255) NOT NULL DEFAULT '',
+  `body` mediumtext COMMENT 'item body content',
+  `location` varchar(255) NOT NULL DEFAULT '' COMMENT 'text location where this item originated',
+  `coord` varchar(255) NOT NULL DEFAULT '' COMMENT 'longitude/latitude pair representing location where this item originated',
+  `language` text COMMENT 'Language information about this post',
+  `app` varchar(255) NOT NULL DEFAULT '' COMMENT 'application which generated this item',
+  `rendered-hash` varchar(32) NOT NULL DEFAULT '',
+  `rendered-html` mediumtext COMMENT 'item.body converted to html',
+  `object-type` varchar(100) NOT NULL DEFAULT '' COMMENT 'ActivityStreams object type',
+  `object` text COMMENT 'JSON encoded object structure unless it is an implied object (normal post)',
+  `target-type` varchar(100) NOT NULL DEFAULT '' COMMENT 'ActivityStreams target type if applicable (URI)',
+  `target` text COMMENT 'JSON encoded target structure if used',
+  `plink` varchar(255) NOT NULL DEFAULT '' COMMENT 'permalink or URL to a displayable copy of the message at its source',
+  `verb` varchar(100) NOT NULL DEFAULT '' COMMENT 'ActivityStreams verb',
+  PRIMARY KEY (`id`),
+  UNIQUE KEY `uri-plink-hash` (`uri-plink-hash`),
+  KEY `uri` (`uri`(191)),
+  KEY `uri-id` (`uri-id`)
+) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COMMENT='Content for all posts';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `item-content`
+--
+
+LOCK TABLES `item-content` WRITE;
+/*!40000 ALTER TABLE `item-content` DISABLE KEYS */;
+INSERT INTO `item-content` VALUES (1,NULL,1,'1','','','This is a public test posting.','','','{\"en\":0.40678571428571,\"la\":0.30309523809524,\"fr\":0.28404761904762}','','80624d4b29c199dbace71f914601a0ff','This is a public test posting.','http://activitystrea.ms/schema/1.0/note','','','','http://192.168.22.10/display/930bb26b-205b-f01c-e722-bc8141142783','http://activitystrea.ms/schema/1.0/post'),(2,NULL,2,'2','','','This is a posting to group 1.','','','{\"en\":0.47093333333333,\"sk\":0.28946666666667,\"lt\":0.27453333333333}','','90dde7ca9354eaef06d3b9101fb662fd','This is a posting to group 1.','http://activitystrea.ms/schema/1.0/note','','','','http://192.168.22.10/display/930bb26b-125b-f01c-fe10-e5f035205082','http://activitystrea.ms/schema/1.0/post'),(3,NULL,3,'3','','','friendica 2 checking in.','','','{\"tl\":0.28466666666667,\"en\":0.2805,\"nl\":0.248}','','abf89282dfe1dd467eaeb4628e7406f3','friendica 2 checking in.','http://activitystrea.ms/schema/1.0/comment','','','','http://192.168.22.10/display/930bb26b-155b-f01d-60ee-5ee161000810','http://activitystrea.ms/schema/1.0/post'),(4,NULL,4,'4','','','friendica 4 testing :-)','','','{\"en\":0.36020833333333,\"nl\":0.28479166666667,\"tl\":0.27229166666667}','','130e6cf769f1f7b5f511426531a9d288','friendica 4 testing <img class=\"smiley\" src=\"http://192.168.22.10/images/smiley-smile.gif\" alt=\":-)\" title=\":-)\" />','http://activitystrea.ms/schema/1.0/comment','','','','http://192.168.22.10/display/930bb26b-135b-f01d-8e3d-8cc050176928','http://activitystrea.ms/schema/1.0/post'),(5,NULL,6,'6','','','Nice to have you here :-D','','','{\"en\":0.46787878787879,\"cs\":0.30257575757576,\"da\":0.28651515151515}','','af24ae13dd60eaa4c6613750c976ac80','Nice to have you here <img class=\"smiley\" src=\"http://192.168.22.10/images/smiley-laughing.gif\" alt=\":-D\" title=\":-D\"  />','http://activitystrea.ms/schema/1.0/comment','','','','http://192.168.22.10/display/930bb26b-555b-f01f-66c7-ab6175377664','http://activitystrea.ms/schema/1.0/post'),(6,NULL,7,'7','','','Testing...','','','{\"en\":0.65380952380952,\"nl\":0.46095238095238,\"et\":0.40190476190476}','','9d770c909c2c69b09eae2372c4cf405d','Testing...','http://activitystrea.ms/schema/1.0/note','','','','http://192.168.22.10/display/930bb26b-195b-f01f-925f-1a4363126542','http://activitystrea.ms/schema/1.0/post');
+/*!40000 ALTER TABLE `item-content` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `item-delivery-data`
+--
+
+DROP TABLE IF EXISTS `item-delivery-data`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `item-delivery-data` (
+  `iid` int(10) unsigned NOT NULL COMMENT 'Item id',
+  `postopts` text COMMENT 'External post connectors add their network name to this comma-separated string to identify that they should be delivered to these networks during delivery',
+  `inform` mediumtext COMMENT 'Additional receivers of the linked item',
+  PRIMARY KEY (`iid`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Delivery data for items';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `item-delivery-data`
+--
+
+LOCK TABLES `item-delivery-data` WRITE;
+/*!40000 ALTER TABLE `item-delivery-data` DISABLE KEYS */;
+/*!40000 ALTER TABLE `item-delivery-data` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `item-uri`
+--
+
+DROP TABLE IF EXISTS `item-uri`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `item-uri` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `uri` varbinary(255) NOT NULL COMMENT 'URI of an item',
+  `guid` varbinary(255) DEFAULT NULL COMMENT 'A unique identifier for an item',
+  PRIMARY KEY (`id`),
+  UNIQUE KEY `uri` (`uri`),
+  KEY `guid` (`guid`)
+) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COMMENT='URI and GUID for items';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
--- Dumping data for table `item_id`
+-- Dumping data for table `item-uri`
 --
 
-LOCK TABLES `item_id` WRITE;
-/*!40000 ALTER TABLE `item_id` DISABLE KEYS */;
-/*!40000 ALTER TABLE `item_id` ENABLE KEYS */;
+LOCK TABLES `item-uri` WRITE;
+/*!40000 ALTER TABLE `item-uri` DISABLE KEYS */;
+INSERT INTO `item-uri` VALUES (1,_binary 'http://192.168.22.10/objects/930bb26b-205b-f01c-e722-bc8141142783',_binary '930bb26b-205b-f01c-e722-bc8141142783'),(2,_binary 'http://192.168.22.10/objects/930bb26b-125b-f01c-fe10-e5f035205082',_binary '930bb26b-125b-f01c-fe10-e5f035205082'),(3,_binary 'http://192.168.22.10/objects/930bb26b-155b-f01d-60ee-5ee161000810',_binary '930bb26b-155b-f01d-60ee-5ee161000810'),(4,_binary 'http://192.168.22.10/objects/930bb26b-135b-f01d-8e3d-8cc050176928',_binary '930bb26b-135b-f01d-8e3d-8cc050176928'),(5,_binary 'http://192.168.22.10/objects/930bb26b-205b-f01f-5a43-237373720429',_binary '930bb26b-765b-f01f-5a43-22a585408489'),(6,_binary 'http://192.168.22.10/objects/930bb26b-555b-f01f-66c7-ab6175377664',_binary '930bb26b-555b-f01f-66c7-ab6175377664'),(7,_binary 'http://192.168.22.10/objects/930bb26b-195b-f01f-925f-1a4363126542',_binary '930bb26b-195b-f01f-925f-1a4363126542'),(8,_binary 'http://192.168.22.10/objects/930bb26b-205b-f01f-5a43-237373720429#Like',_binary '930bb26b-765b-f01f-5a43-22a585408489');
+/*!40000 ALTER TABLE `item-uri` ENABLE KEYS */;
 UNLOCK TABLES;
 
 --
@@ -968,11 +1093,13 @@ DROP TABLE IF EXISTS `locks`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `locks` (
-  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
   `name` varchar(128) NOT NULL DEFAULT '',
   `locked` tinyint(1) NOT NULL DEFAULT '0',
-  `pid` int(10) unsigned NOT NULL DEFAULT '0',
-  PRIMARY KEY (`id`)
+  `pid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Process ID',
+  `expires` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of cache expiration',
+  PRIMARY KEY (`id`),
+  KEY `name_expires` (`name`,`expires`)
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
 /*!40101 SET character_set_client = @saved_cs_client */;
 
@@ -993,30 +1120,30 @@ DROP TABLE IF EXISTS `mail`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `mail` (
-  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
-  `uid` int(10) unsigned NOT NULL DEFAULT '0',
-  `guid` varchar(255) NOT NULL DEFAULT '',
-  `from-name` varchar(255) NOT NULL DEFAULT '',
-  `from-photo` varchar(255) NOT NULL DEFAULT '',
-  `from-url` varchar(255) NOT NULL DEFAULT '',
-  `contact-id` varchar(255) NOT NULL DEFAULT '',
-  `convid` int(11) unsigned NOT NULL DEFAULT '0',
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Owner User id',
+  `guid` varchar(255) NOT NULL DEFAULT '' COMMENT 'A unique identifier for this private message',
+  `from-name` varchar(255) NOT NULL DEFAULT '' COMMENT 'name of the sender',
+  `from-photo` varchar(255) NOT NULL DEFAULT '' COMMENT 'contact photo link of the sender',
+  `from-url` varchar(255) NOT NULL DEFAULT '' COMMENT 'profile linke of the sender',
+  `contact-id` varchar(255) NOT NULL DEFAULT '' COMMENT 'contact.id',
+  `convid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'conv.id',
   `title` varchar(255) NOT NULL DEFAULT '',
   `body` mediumtext,
-  `seen` tinyint(1) NOT NULL DEFAULT '0',
+  `seen` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'if message visited it is 1',
   `reply` tinyint(1) NOT NULL DEFAULT '0',
   `replied` tinyint(1) NOT NULL DEFAULT '0',
-  `unknown` tinyint(1) NOT NULL DEFAULT '0',
+  `unknown` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'if sender not in the contact table this is 1',
   `uri` varchar(255) NOT NULL DEFAULT '',
   `parent-uri` varchar(255) NOT NULL DEFAULT '',
-  `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+  `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation time of the private message',
   PRIMARY KEY (`id`),
   KEY `uid_seen` (`uid`,`seen`),
   KEY `convid` (`convid`),
   KEY `uri` (`uri`(64)),
   KEY `parent-uri` (`parent-uri`(64)),
-  KEY `contactid` (`contact-id`(191))
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+  KEY `contactid` (`contact-id`(32))
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='private messages';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -1036,21 +1163,21 @@ DROP TABLE IF EXISTS `mailacct`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `mailacct` (
-  `id` int(11) NOT NULL AUTO_INCREMENT,
-  `uid` int(11) NOT NULL DEFAULT '0',
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'User id',
   `server` varchar(255) NOT NULL DEFAULT '',
-  `port` int(11) NOT NULL DEFAULT '0',
+  `port` smallint(5) unsigned NOT NULL DEFAULT '0',
   `ssltype` varchar(16) NOT NULL DEFAULT '',
   `mailbox` varchar(255) NOT NULL DEFAULT '',
   `user` varchar(255) NOT NULL DEFAULT '',
   `pass` text,
   `reply_to` varchar(255) NOT NULL DEFAULT '',
-  `action` int(11) NOT NULL DEFAULT '0',
+  `action` tinyint(3) unsigned NOT NULL DEFAULT '0',
   `movetofolder` varchar(255) NOT NULL DEFAULT '',
   `pubmail` tinyint(1) NOT NULL DEFAULT '0',
   `last_check` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
   PRIMARY KEY (`id`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Mail account data for fetching mails';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -1070,12 +1197,12 @@ DROP TABLE IF EXISTS `manage`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `manage` (
-  `id` int(11) NOT NULL AUTO_INCREMENT,
-  `uid` int(11) NOT NULL DEFAULT '0',
-  `mid` int(11) NOT NULL DEFAULT '0',
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'User id',
+  `mid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'User id',
   PRIMARY KEY (`id`),
   UNIQUE KEY `uid_mid` (`uid`,`mid`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='table of accounts that can manage each other';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -1095,29 +1222,29 @@ DROP TABLE IF EXISTS `notify`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `notify` (
-  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
   `hash` varchar(64) NOT NULL DEFAULT '',
-  `type` int(11) NOT NULL DEFAULT '0',
+  `type` smallint(5) unsigned NOT NULL DEFAULT '0',
   `name` varchar(255) NOT NULL DEFAULT '',
   `url` varchar(255) NOT NULL DEFAULT '',
   `photo` varchar(255) NOT NULL DEFAULT '',
   `date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
   `msg` mediumtext,
-  `uid` int(11) NOT NULL DEFAULT '0',
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Owner User id',
   `link` varchar(255) NOT NULL DEFAULT '',
-  `iid` int(11) NOT NULL DEFAULT '0',
-  `parent` int(11) NOT NULL DEFAULT '0',
+  `iid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'item.id',
+  `parent` int(10) unsigned NOT NULL DEFAULT '0',
   `seen` tinyint(1) NOT NULL DEFAULT '0',
-  `verb` varchar(255) NOT NULL DEFAULT '',
-  `otype` varchar(16) NOT NULL DEFAULT '',
-  `name_cache` tinytext,
-  `msg_cache` mediumtext,
+  `verb` varchar(100) NOT NULL DEFAULT '',
+  `otype` varchar(10) NOT NULL DEFAULT '',
+  `name_cache` tinytext COMMENT 'Cached bbcode parsing of name',
+  `msg_cache` mediumtext COMMENT 'Cached bbcode parsing of msg',
   PRIMARY KEY (`id`),
   KEY `hash_uid` (`hash`,`uid`),
   KEY `seen_uid_date` (`seen`,`uid`,`date`),
   KEY `uid_date` (`uid`,`date`),
   KEY `uid_type_link` (`uid`,`type`,`link`(190))
-) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COMMENT='notifications';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -1126,7 +1253,7 @@ CREATE TABLE `notify` (
 
 LOCK TABLES `notify` WRITE;
 /*!40000 ALTER TABLE `notify` DISABLE KEYS */;
-INSERT INTO `notify` VALUES (1,'8b9091886bbc8ede3fd0759c41eb855ed76ed1a4840dc75851e6a311f929bfcf',1,'friendica1','http://friendica.local/profile/friendica1','http://friendica.local/photo/18a7495723879503dac64b352e245508-4.jpg?ts=1504775047','2017-09-07 09:04:08','You\'ve received [url=]an introduction[/url] from [url=http://friendica.local/profile/friendica1]friendica1[/url].',3,'http://friendica.local/notifications/intros',0,0,0,'http://activitystrea.ms/schema/1.0/request-friend','intro','friendica1','You\'ve received an introduction from {0}.'),(2,'0185ee6a3b89d4f753fa981223fb1c625ac77889c888286fefdb4b8bae4a7e46',1,'friendica1','http://friendica.local/profile/friendica1','http://friendica.local/photo/adef541d0f334352940ad40251e15158-4.jpg?ts=1504775078','2017-09-07 09:04:38','You\'ve received [url=]an introduction[/url] from [url=http://friendica.local/profile/friendica1]friendica1[/url].',4,'http://friendica.local/notifications/intros',0,0,0,'http://activitystrea.ms/schema/1.0/request-friend','intro','friendica1','You\'ve received an introduction from {0}.'),(3,'3f85ccadc16c9dfbd8cf3e224632a008a95bda2aea4608ff1a64ca8771e3bb5d',1,'friendica1','http://friendica.local/profile/friendica1','http://friendica.local/photo/01ebf2eb957e5aef5463ba5ae6510ef5-4.jpg?ts=1504775093','2017-09-07 09:04:53','You\'ve received [url=]an introduction[/url] from [url=http://friendica.local/profile/friendica1]friendica1[/url].',5,'http://friendica.local/notifications/intros',0,0,0,'http://activitystrea.ms/schema/1.0/request-friend','intro','friendica1','You\'ve received an introduction from {0}.'),(4,'8403fa566bec0ae4c56d639aeb46e907451725f3f3288c1dd77e9c3ec8de6477',1,'friendica1','http://friendica.local/profile/friendica1','http://friendica.local/photo/f958f83dd2af4c30b30045dfc6ff0718-4.jpg?ts=1504775108','2017-09-07 09:05:09','You\'ve received [url=]an introduction[/url] from [url=http://friendica.local/profile/friendica1]friendica1[/url].',6,'http://friendica.local/notifications/intros',0,0,0,'http://activitystrea.ms/schema/1.0/request-friend','intro','friendica1','You\'ve received an introduction from {0}.'),(5,'a4ed1cf044ad062c2b4215bf1a3e3974df4dae11c20a966a25f962dde1c769f0',2,'friendica2','http://friendica.local/profile/friendica2','http://friendica.local/photo/5b0e9c6920adcf8efafaf3743d0e0c6c-4.jpg?ts=1504775178','2017-09-07 09:06:18','[url=http://friendica.local/profile/friendica2]friendica2[/url] has accepted your [url=]connection request[/url].',2,'http://friendica.local/contacts/8',0,0,1,'http://activitystrea.ms/schema/1.0/make-friend','intro','friendica2','{0} has accepted your connection request.'),(6,'7adb52b4277d2ed6bba91b37dd1339b2f9d3fd91235170568d64101e89e96292',1,'friendica2','http://friendica.local/profile/friendica2','http://friendica.local/photo/22875ea1ab42e09a2f1d3869cd6edfe7-4.jpg?ts=1504775234','2017-09-07 09:07:14','You\'ve received [url=]an introduction[/url] from [url=http://friendica.local/profile/friendica2]friendica2[/url].',4,'http://friendica.local/notifications/intros',0,0,0,'http://activitystrea.ms/schema/1.0/request-friend','intro','friendica2','You\'ve received an introduction from {0}.'),(7,'f6d4c03380e095b388c5980deb0e0ac7b3602781bf93d728d89b63819943e7c6',2,'friendica3','http://friendica.local/profile/friendica3','http://friendica.local/photo/01ff45af20fe4c6fb230e6fc773f3ef8-4.jpg?ts=1504775360','2017-09-07 09:09:20','[url=http://friendica.local/profile/friendica3]friendica3[/url] has accepted your [url=]connection request[/url].',2,'http://friendica.local/contacts/10',0,0,1,'http://activitystrea.ms/schema/1.0/make-friend','intro','friendica3','{0} has accepted your connection request.'),(8,'f0dab05c5fbbc4e332289bca702c1ee568e6eb1600ce06a8930246403bd7fa1f',2,'friendica3','http://friendica.local/profile/friendica3','http://friendica.local/photo/9c78857b3d725c1c6d1227a7b8cbe6b2-4.jpg?ts=1504775369','2017-09-07 09:09:29','[url=http://friendica.local/profile/friendica3]friendica3[/url] has accepted your [url=]connection request[/url].',3,'http://friendica.local/contacts/16',0,0,1,'http://activitystrea.ms/schema/1.0/make-friend','intro','friendica3','{0} has accepted your connection request.'),(9,'fc68ae34aeb64be347f5b1f0e64357199f74cc1d75b735c75ef3914865f44d25',2,'friendica4','http://friendica.local/profile/friendica4','http://friendica.local/photo/b32d851ca091305b4cf5d115070cedbd-4.jpg?ts=1504775480','2017-09-07 09:11:20','[url=http://friendica.local/profile/friendica4]friendica4[/url] has accepted your [url=]connection request[/url].',2,'http://friendica.local/contacts/12',0,0,1,'http://activitystrea.ms/schema/1.0/make-friend','intro','friendica4','{0} has accepted your connection request.'),(10,'e8b5ef969f3ed6a11b14d14cbdd32fb7d05d9e8ba6060412914ee30ec8dd01ce',1,'friendica4','http://friendica.local/profile/friendica4','http://friendica.local/photo/15048d33e71544a25a6dd13bb081c78f-4.jpg?ts=1504775545','2017-09-07 09:12:25','You\'ve received [url=]an introduction[/url] from [url=http://friendica.local/profile/friendica4]friendica4[/url].',6,'http://friendica.local/notifications/intros',0,0,0,'http://activitystrea.ms/schema/1.0/request-friend','intro','friendica4','You\'ve received an introduction from {0}.'),(11,'8a827db2d0d9cbc5e73855437caa6d88a0c659e486da193c2508a9e29bbafd45',2,'friendica5','http://friendica.local/profile/friendica5','http://friendica.local/photo/ed2cf7a93daffb15532a78b261ac4685-4.jpg?ts=1504775575','2017-09-07 09:12:55','[url=http://friendica.local/profile/friendica5]friendica5[/url] has accepted your [url=]connection request[/url].',2,'http://friendica.local/contacts/14',0,0,1,'http://activitystrea.ms/schema/1.0/make-friend','intro','friendica5','{0} has accepted your connection request.'),(12,'14005c0225b144739f6075c11d116604d5b20bc44cf6f1d4a673e5a08ac3f70e',2,'friendica5','http://friendica.local/profile/friendica5','http://friendica.local/photo/d74f209bfcd190b3864fa678e5068a16-4.jpg?ts=1504775585','2017-09-07 09:13:05','[url=http://friendica.local/profile/friendica5]friendica5[/url] has accepted your [url=]connection request[/url].',5,'http://friendica.local/contacts/18',0,0,0,'http://activitystrea.ms/schema/1.0/make-friend','intro','friendica5','{0} has accepted your connection request.'),(13,'10fd661782ce0c899ce061157ea1bb3bd700f70c1344c1edc1fd901ff9bfaa43',8,'friendica3','http://friendica.local/profile/friendica3','http://friendica.local/photo/profile/4.jpg','2017-09-07 09:18:24','[url=http://friendica.local/profile/friendica3]friendica3[/url] commented on [url=]your post[/url]',2,'http://friendica.local/display/758d682b1059b10ee096f38798595234',13,9,0,'http://activitystrea.ms/schema/1.0/post','item','friendica3','{0} commented on your post'),(14,'e3ba1aabdf61082a83d511c9aafc661ac49f9c6cbb8d6126af3a111421892268',8,'friendica2','http://friendica.local/profile/friendica2','http://friendica.local/photo/profile/3.jpg','2017-09-07 09:19:28','[url=http://friendica.local/profile/friendica2]friendica2[/url] commented on [url=]your post[/url]',2,'http://friendica.local/display/758d682b2059b10f204f9c2684001373',19,15,0,'http://activitystrea.ms/schema/1.0/post','item','friendica2','{0} commented on your post');
+INSERT INTO `notify` VALUES (1,'26b2e6b2bfbdcb1b930d1803d828795494148a442742f0f256208aedddea737e',1,'friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/21202845355bf01a84c5d33470288998-4.jpg?ts=1542462084','2018-11-17 13:41:27','You\'ve received [url=http://192.168.22.10/notifications/intros]an introduction[/url] from [url=http://192.168.22.10/profile/friendica1]friendica1[/url].',3,'http://192.168.22.10/notifications/intros',0,0,0,'http://activitystrea.ms/schema/1.0/request-friend','intro','friendica1','You\'ve received an introduction from {0}.'),(2,'9371eddd53289c4ddd3c49eb6b8074660c5e83b8045849cf6d158af6b2631edc',1,'friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/17505033475bf01b2f38ff6177578340-4.jpg?ts=1542462255','2018-11-17 13:44:18','You\'ve received [url=http://192.168.22.10/notifications/intros]an introduction[/url] from [url=http://192.168.22.10/profile/friendica1]friendica1[/url].',4,'http://192.168.22.10/notifications/intros',0,0,0,'http://activitystrea.ms/schema/1.0/request-friend','intro','friendica1','You\'ve received an introduction from {0}.'),(3,'9a059a93a0fb0e9c09df90fc7cd227c09f8de7fbd78f6df789db9d84937b462e',1,'friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/18858997325bf01b7c29d79163158635-4.jpg?ts=1542462332','2018-11-17 13:45:34','You\'ve received [url=http://192.168.22.10/notifications/intros]an introduction[/url] from [url=http://192.168.22.10/profile/friendica1]friendica1[/url].',5,'http://192.168.22.10/notifications/intros',0,0,0,'http://activitystrea.ms/schema/1.0/request-friend','intro','friendica1','You\'ve received an introduction from {0}.'),(4,'699ac5930bdd21fb2e4712783526cecd2ef429697e3067323540c5b8db62e7a2',1,'friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/56404448515bf01b9730801345691622-4.jpg?ts=1542462359','2018-11-17 13:46:01','You\'ve received [url=http://192.168.22.10/notifications/intros]an introduction[/url] from [url=http://192.168.22.10/profile/friendica1]friendica1[/url].',6,'http://192.168.22.10/notifications/intros',0,0,0,'http://activitystrea.ms/schema/1.0/request-friend','intro','friendica1','You\'ve received an introduction from {0}.'),(5,'21320ddfd4f92b7e1ad13d25a59d83c4ee1364bcdb7cc142eaa1b2a2c8f98cf2',2,'friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/43713557095bf01a87be90d132625601-4.jpg?ts=1542462395','2018-11-17 13:46:35','[url=http://192.168.22.10/profile/friendica2]friendica2[/url] has accepted your [url=http://192.168.22.10/contact/15]connection request[/url].',2,'http://192.168.22.10/contact/15',0,0,1,'http://activitystrea.ms/schema/1.0/make-friend','intro','friendica2','{0} has accepted your connection request.'),(6,'a24b63452ae6c7ee8ac8aac9fc830ead7d08cafae467a51c03e9442566c74eb0',1,'friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/11253258925bf01bd73be2b220663529-4.jpg?ts=1542462423','2018-11-17 13:47:05','You\'ve received [url=http://192.168.22.10/notifications/intros]an introduction[/url] from [url=http://192.168.22.10/profile/friendica2]friendica2[/url].',4,'http://192.168.22.10/notifications/intros',0,0,0,'http://activitystrea.ms/schema/1.0/request-friend','intro','friendica2','You\'ve received an introduction from {0}.'),(7,'d31c867f6baa729a7b0da2d1d97bd2a19d78f4024f674cfa768c2f6afaa57027',2,'friendica3','http://192.168.22.10/profile/friendica3','http://192.168.22.10/photo/10942403815bf01b31eec59540800317-4.jpg?ts=1542462458','2018-11-17 13:47:38','[url=http://192.168.22.10/profile/friendica3]friendica3[/url] has accepted your [url=http://192.168.22.10/contact/17]connection request[/url].',2,'http://192.168.22.10/contact/17',0,0,1,'http://activitystrea.ms/schema/1.0/make-friend','intro','friendica3','{0} has accepted your connection request.'),(8,'d10dcfd489738e1ea313982384aa13bd4aaa599b3b80543eaa62b6fe96bdb10b',2,'friendica3','http://192.168.22.10/profile/friendica3','http://192.168.22.10/photo/13931663105bf01bd94d90e243464200-4.jpg?ts=1542462469','2018-11-17 13:47:49','[url=http://192.168.22.10/profile/friendica3]friendica3[/url] has accepted your [url=http://192.168.22.10/contact/23]connection request[/url].',3,'http://192.168.22.10/contact/23',0,0,1,'http://activitystrea.ms/schema/1.0/make-friend','intro','friendica3','{0} has accepted your connection request.'),(9,'0d9147f1bc16b0162e2974dfb2d420c184973e0bdaee8a4c1a2676cc0b2a5600',2,'friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/34785303845bf01b7eb2f18737560971-4.jpg?ts=1542462495','2018-11-17 13:48:15','[url=http://192.168.22.10/profile/friendica4]friendica4[/url] has accepted your [url=http://192.168.22.10/contact/19]connection request[/url].',2,'http://192.168.22.10/contact/19',0,0,1,'http://activitystrea.ms/schema/1.0/make-friend','intro','friendica4','{0} has accepted your connection request.'),(10,'167440058a53e00efd7af49034a4317962ebe7fdef5a5553b70efaa38b4c827a',1,'friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/10196270915bf01c3d3dcff106620826-4.jpg?ts=1542462525','2018-11-17 13:48:47','You\'ve received [url=http://192.168.22.10/notifications/intros]an introduction[/url] from [url=http://192.168.22.10/profile/friendica4]friendica4[/url].',6,'http://192.168.22.10/notifications/intros',0,0,0,'http://activitystrea.ms/schema/1.0/request-friend','intro','friendica4','You\'ve received an introduction from {0}.'),(11,'6ae913f3467c467ee755dd60e718e8e020448feb22c50d7e413e4fc75b997008',2,'friendica5','http://192.168.22.10/profile/friendica5','http://192.168.22.10/photo/14034074815bf01b999cc19093001643-4.jpg?ts=1542462550','2018-11-17 13:49:10','[url=http://192.168.22.10/profile/friendica5]friendica5[/url] has accepted your [url=http://192.168.22.10/contact/21]connection request[/url].',2,'http://192.168.22.10/contact/21',0,0,1,'http://activitystrea.ms/schema/1.0/make-friend','intro','friendica5','{0} has accepted your connection request.'),(12,'056c97fea6f9ef275430a56f511936bfb4ef21ceec4ab68188f15f4b977ccb5d',2,'friendica5','http://192.168.22.10/profile/friendica5','http://192.168.22.10/photo/11789807665bf01c3fd8ccd829485384-4.jpg?ts=1542462560','2018-11-17 13:49:20','[url=http://192.168.22.10/profile/friendica5]friendica5[/url] has accepted your [url=http://192.168.22.10/contact/25]connection request[/url].',5,'http://192.168.22.10/contact/25',0,0,1,'http://activitystrea.ms/schema/1.0/make-friend','intro','friendica5','{0} has accepted your connection request.'),(13,'629b3cd91925c1f39331fea188615eb2edec6889718328037304ed1ae76a1181',8,'friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/11822615065bf00e7fab8ba088168210-5.jpg?ts=1542462606','2018-11-17 13:54:22','[url=http://192.168.22.10/profile/friendica4]friendica4[/url] commented on [url=http://192.168.22.10/display/930bb26b-205b-f01c-e722-bc8141142783]friendica1\'s post[/url]',3,'http://192.168.22.10/display/930bb26b-135b-f01d-8e3d-8cc050176928',5,2,0,'http://activitystrea.ms/schema/1.0/post','item','friendica4','{0} commented on friendica1\'s post'),(14,'3aafdf13157f32deb1b4959c16c3c2a0c581702c85fd78ec5d74dd581d30a0e4',8,'friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/53312796025bf00e7f82e82896954942-5.jpg?ts=1542462605','2018-11-17 14:00:04','[url=http://192.168.22.10/profile/friendica2]friendica2[/url] commented on [url=http://192.168.22.10/display/930bb26b-205b-f01c-e722-bc8141142783]your post[/url]',2,'http://192.168.22.10/display/930bb26b-155b-f01d-60ee-5ee161000810',12,1,0,'http://activitystrea.ms/schema/1.0/post','item','friendica2','{0} commented on your post'),(15,'1b5396945536db74389ad73b1adfe3f7d88f69182d819475c4d3781909f3b597',8,'friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/11822615065bf00e7fab8ba088168210-5.jpg?ts=1542462606','2018-11-17 14:00:04','[url=http://192.168.22.10/profile/friendica4]friendica4[/url] commented on [url=http://192.168.22.10/display/930bb26b-205b-f01c-e722-bc8141142783]your post[/url]',2,'http://192.168.22.10/display/930bb26b-135b-f01d-8e3d-8cc050176928',14,1,0,'http://activitystrea.ms/schema/1.0/post','item','friendica4','{0} commented on your post'),(16,'84a3fbc2a38f74fbcc8ce245a1b8066f304d9202531753148a5a6a16d83aaf56',8,'friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/95550517915bf00e7f84cd7979805449-5.jpg?ts=1542462606','2018-11-17 14:02:14','[url=http://192.168.22.10/profile/friendica1]friendica1[/url] commented on [url=http://192.168.22.10/display/930bb26b-205b-f01c-e722-bc8141142783]friendica1\'s post[/url]',3,'http://192.168.22.10/display/930bb26b-555b-f01f-66c7-ab6175377664',25,2,0,'http://activitystrea.ms/schema/1.0/post','item','friendica1','{0} commented on friendica1\'s post'),(17,'4b035a7e4d79f2e46d28be6edb3c41b9b1553d9a7de71330b74fdc7e5e6fb381',8,'friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/95550517915bf00e7f84cd7979805449-5.jpg?ts=1542462606','2018-11-17 14:02:14','[url=http://192.168.22.10/profile/friendica1]friendica1[/url] commented on [url=http://192.168.22.10/display/930bb26b-205b-f01c-e722-bc8141142783]friendica1\'s post[/url]',5,'http://192.168.22.10/display/930bb26b-555b-f01f-66c7-ab6175377664',25,2,0,'http://activitystrea.ms/schema/1.0/post','item','friendica1','{0} commented on friendica1\'s post');
 /*!40000 ALTER TABLE `notify` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -1138,13 +1265,13 @@ DROP TABLE IF EXISTS `notify-threads`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `notify-threads` (
-  `id` int(11) NOT NULL AUTO_INCREMENT,
-  `notify-id` int(11) NOT NULL DEFAULT '0',
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
+  `notify-id` int(10) unsigned NOT NULL DEFAULT '0',
   `master-parent-item` int(10) unsigned NOT NULL DEFAULT '0',
   `parent-item` int(10) unsigned NOT NULL DEFAULT '0',
-  `receiver-uid` int(11) NOT NULL DEFAULT '0',
+  `receiver-uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'User id',
   PRIMARY KEY (`id`)
-) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4;
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -1153,7 +1280,7 @@ CREATE TABLE `notify-threads` (
 
 LOCK TABLES `notify-threads` WRITE;
 /*!40000 ALTER TABLE `notify-threads` DISABLE KEYS */;
-INSERT INTO `notify-threads` VALUES (1,13,9,0,2),(2,14,15,0,2);
+INSERT INTO `notify-threads` VALUES (1,13,2,0,3),(2,14,1,0,2),(3,17,2,0,5);
 /*!40000 ALTER TABLE `notify-threads` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -1165,12 +1292,13 @@ DROP TABLE IF EXISTS `oembed`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `oembed` (
-  `url` varbinary(255) NOT NULL,
-  `content` mediumtext,
-  `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  PRIMARY KEY (`url`),
+  `url` varbinary(255) NOT NULL COMMENT 'page url',
+  `maxwidth` mediumint(8) unsigned NOT NULL COMMENT 'Maximum width passed to Oembed',
+  `content` mediumtext COMMENT 'OEmbed data of the page',
+  `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of creation',
+  PRIMARY KEY (`url`,`maxwidth`),
   KEY `created` (`created`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='cache for OEmbed queries';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -1182,6 +1310,33 @@ LOCK TABLES `oembed` WRITE;
 /*!40000 ALTER TABLE `oembed` ENABLE KEYS */;
 UNLOCK TABLES;
 
+--
+-- Table structure for table `openwebauth-token`
+--
+
+DROP TABLE IF EXISTS `openwebauth-token`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `openwebauth-token` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'User id',
+  `type` varchar(32) NOT NULL DEFAULT '' COMMENT 'Verify type',
+  `token` varchar(255) NOT NULL DEFAULT '' COMMENT 'A generated token',
+  `meta` varchar(255) NOT NULL DEFAULT '',
+  `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of creation',
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Store OpenWebAuth token to verify contacts';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `openwebauth-token`
+--
+
+LOCK TABLES `openwebauth-token` WRITE;
+/*!40000 ALTER TABLE `openwebauth-token` DISABLE KEYS */;
+/*!40000 ALTER TABLE `openwebauth-token` ENABLE KEYS */;
+UNLOCK TABLES;
+
 --
 -- Table structure for table `parsed_url`
 --
@@ -1190,14 +1345,14 @@ DROP TABLE IF EXISTS `parsed_url`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `parsed_url` (
-  `url` varbinary(255) NOT NULL,
-  `guessing` tinyint(1) NOT NULL DEFAULT '0',
-  `oembed` tinyint(1) NOT NULL DEFAULT '0',
-  `content` mediumtext,
-  `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+  `url` varbinary(255) NOT NULL COMMENT 'page url',
+  `guessing` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'is the ''guessing'' mode active?',
+  `oembed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'is the data the result of oembed?',
+  `content` mediumtext COMMENT 'page data',
+  `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of creation',
   PRIMARY KEY (`url`,`guessing`,`oembed`),
   KEY `created` (`created`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='cache for ''parse_url'' queries';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -1209,6 +1364,31 @@ LOCK TABLES `parsed_url` WRITE;
 /*!40000 ALTER TABLE `parsed_url` ENABLE KEYS */;
 UNLOCK TABLES;
 
+--
+-- Table structure for table `participation`
+--
+
+DROP TABLE IF EXISTS `participation`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `participation` (
+  `iid` int(10) unsigned NOT NULL,
+  `server` varchar(60) NOT NULL,
+  `cid` int(10) unsigned NOT NULL,
+  `fid` int(10) unsigned NOT NULL,
+  PRIMARY KEY (`iid`,`server`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Storage for participation messages from Diaspora';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `participation`
+--
+
+LOCK TABLES `participation` WRITE;
+/*!40000 ALTER TABLE `participation` DISABLE KEYS */;
+/*!40000 ALTER TABLE `participation` ENABLE KEYS */;
+UNLOCK TABLES;
+
 --
 -- Table structure for table `pconfig`
 --
@@ -1217,14 +1397,14 @@ DROP TABLE IF EXISTS `pconfig`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `pconfig` (
-  `id` int(11) NOT NULL AUTO_INCREMENT,
-  `uid` int(11) NOT NULL DEFAULT '0',
-  `cat` varbinary(255) NOT NULL DEFAULT '',
-  `k` varbinary(255) NOT NULL DEFAULT '',
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'User id',
+  `cat` varbinary(50) NOT NULL DEFAULT '',
+  `k` varbinary(100) NOT NULL DEFAULT '',
   `v` mediumtext,
   PRIMARY KEY (`id`),
   UNIQUE KEY `uid_cat_k` (`uid`,`cat`,`k`)
-) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COMMENT='personal (per user) configuration storage';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -1233,10 +1413,39 @@ CREATE TABLE `pconfig` (
 
 LOCK TABLES `pconfig` WRITE;
 /*!40000 ALTER TABLE `pconfig` DISABLE KEYS */;
-INSERT INTO `pconfig` VALUES (1,2,'network.view','group.selected','0'),(2,2,'network.view','net.selected','all'),(3,2,'network.view','tab.selected','a:7:{i:0;s:6:\"active\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";}'),(4,2,'expire','items','1'),(5,2,'expire','notes','1'),(6,2,'expire','starred','1'),(7,2,'expire','photos','0'),(8,2,'expire','network_only','0'),(9,2,'system','suggestme','0'),(10,2,'system','post_newfriend','0'),(11,2,'system','post_joingroup','0'),(12,2,'system','post_profilechange','0'),(13,2,'system','email_textonly','0'),(14,3,'expire','items','1'),(15,3,'expire','notes','1'),(16,3,'expire','starred','1'),(17,3,'expire','photos','0'),(18,3,'expire','network_only','0'),(19,3,'system','suggestme','0'),(20,3,'system','post_newfriend','0'),(21,3,'system','post_joingroup','0'),(22,3,'system','post_profilechange','0'),(23,3,'system','email_textonly','0'),(24,4,'expire','items','1'),(25,4,'expire','notes','1'),(26,4,'expire','starred','1'),(27,4,'expire','photos','0'),(28,4,'expire','network_only','0'),(29,4,'system','suggestme','0'),(30,4,'system','post_newfriend','0'),(31,4,'system','post_joingroup','0'),(32,4,'system','post_profilechange','0'),(33,4,'system','email_textonly','0'),(34,5,'expire','items','1'),(35,5,'expire','notes','1'),(36,5,'expire','starred','1'),(37,5,'expire','photos','0'),(38,5,'expire','network_only','0'),(39,5,'system','suggestme','0'),(40,5,'system','post_newfriend','0'),(41,5,'system','post_joingroup','0'),(42,5,'system','post_profilechange','0'),(43,5,'system','email_textonly','0'),(44,6,'expire','items','1'),(45,6,'expire','notes','1'),(46,6,'expire','starred','1'),(47,6,'expire','photos','0'),(48,6,'expire','network_only','0'),(49,6,'system','suggestme','0'),(50,6,'system','post_newfriend','0'),(51,6,'system','post_joingroup','0'),(52,6,'system','post_profilechange','0'),(53,6,'system','email_textonly','0'),(54,4,'network.view','group.selected','0'),(55,4,'network.view','net.selected','all'),(56,4,'network.view','tab.selected','a:7:{i:0;s:6:\"active\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";}'),(57,3,'network.view','group.selected','0'),(58,3,'network.view','net.selected','all'),(59,3,'network.view','tab.selected','a:7:{i:0;s:6:\"active\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";}'),(60,1,'network.view','group.selected','0'),(61,1,'network.view','net.selected','all'),(62,1,'network.view','tab.selected','a:7:{i:0;s:6:\"active\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";}');
+INSERT INTO `pconfig` VALUES (1,1,_binary 'network.view',_binary 'tab.selected','a:6:{i:0;s:6:\"active\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";}'),(2,1,_binary 'expire',_binary 'items','1'),(3,1,_binary 'expire',_binary 'notes','1'),(4,1,_binary 'expire',_binary 'starred','1'),(5,1,_binary 'expire',_binary 'photos','0'),(6,1,_binary 'expire',_binary 'network_only','0'),(7,1,_binary 'system',_binary 'suggestme','0'),(8,1,_binary 'system',_binary 'email_textonly','0'),(9,1,_binary 'system',_binary 'detailed_notif','0'),(10,2,_binary 'network.view',_binary 'tab.selected','a:6:{i:0;s:6:\"active\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";}'),(11,2,_binary 'expire',_binary 'items','1'),(12,2,_binary 'expire',_binary 'notes','1'),(13,2,_binary 'expire',_binary 'starred','1'),(14,2,_binary 'expire',_binary 'photos','0'),(15,2,_binary 'expire',_binary 'network_only','0'),(16,2,_binary 'system',_binary 'suggestme','0'),(17,2,_binary 'system',_binary 'email_textonly','0'),(18,2,_binary 'system',_binary 'detailed_notif','0'),(19,3,_binary 'network.view',_binary 'tab.selected','a:6:{i:0;s:6:\"active\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";}'),(20,5,_binary 'network.view',_binary 'tab.selected','a:6:{i:0;s:6:\"active\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";}');
 /*!40000 ALTER TABLE `pconfig` ENABLE KEYS */;
 UNLOCK TABLES;
 
+--
+-- Table structure for table `permissionset`
+--
+
+DROP TABLE IF EXISTS `permissionset`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `permissionset` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Owner id of this permission set',
+  `allow_cid` mediumtext COMMENT 'Access Control - list of allowed contact.id ''<19><78>''',
+  `allow_gid` mediumtext COMMENT 'Access Control - list of allowed groups',
+  `deny_cid` mediumtext COMMENT 'Access Control - list of denied contact.id',
+  `deny_gid` mediumtext COMMENT 'Access Control - list of denied groups',
+  PRIMARY KEY (`id`),
+  KEY `uid_allow_cid_allow_gid_deny_cid_deny_gid` (`allow_cid`(50),`allow_gid`(30),`deny_cid`(50),`deny_gid`(30))
+) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `permissionset`
+--
+
+LOCK TABLES `permissionset` WRITE;
+/*!40000 ALTER TABLE `permissionset` DISABLE KEYS */;
+INSERT INTO `permissionset` VALUES (1,2,'','','',''),(2,0,'','','',''),(3,2,'','<7>','',''),(4,3,'','','',''),(5,6,'','','',''),(6,5,'','','',''),(7,4,'','','','');
+/*!40000 ALTER TABLE `permissionset` ENABLE KEYS */;
+UNLOCK TABLES;
+
 --
 -- Table structure for table `photo`
 --
@@ -1245,36 +1454,36 @@ DROP TABLE IF EXISTS `photo`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `photo` (
-  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
-  `uid` int(10) unsigned NOT NULL DEFAULT '0',
-  `contact-id` int(10) unsigned NOT NULL DEFAULT '0',
-  `guid` varchar(64) NOT NULL DEFAULT '',
-  `resource-id` varchar(255) NOT NULL DEFAULT '',
-  `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Owner User id',
+  `contact-id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'contact.id',
+  `guid` char(16) NOT NULL DEFAULT '' COMMENT 'A unique identifier for this photo',
+  `resource-id` char(32) NOT NULL DEFAULT '',
+  `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation date',
+  `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'last edited date',
   `title` varchar(255) NOT NULL DEFAULT '',
   `desc` text,
-  `album` varchar(255) NOT NULL DEFAULT '',
+  `album` varchar(255) NOT NULL DEFAULT '' COMMENT 'The name of the album to which the photo belongs',
   `filename` varchar(255) NOT NULL DEFAULT '',
-  `type` varchar(128) NOT NULL DEFAULT 'image/jpeg',
-  `height` smallint(6) NOT NULL DEFAULT '0',
-  `width` smallint(6) NOT NULL DEFAULT '0',
+  `type` varchar(30) NOT NULL DEFAULT 'image/jpeg',
+  `height` smallint(5) unsigned NOT NULL DEFAULT '0',
+  `width` smallint(5) unsigned NOT NULL DEFAULT '0',
   `datasize` int(10) unsigned NOT NULL DEFAULT '0',
   `data` mediumblob NOT NULL,
-  `scale` tinyint(3) NOT NULL DEFAULT '0',
+  `scale` tinyint(3) unsigned NOT NULL DEFAULT '0',
   `profile` tinyint(1) NOT NULL DEFAULT '0',
-  `allow_cid` mediumtext,
-  `allow_gid` mediumtext,
-  `deny_cid` mediumtext,
-  `deny_gid` mediumtext,
+  `allow_cid` mediumtext COMMENT 'Access Control - list of allowed contact.id ''<19><78>''',
+  `allow_gid` mediumtext COMMENT 'Access Control - list of allowed groups',
+  `deny_cid` mediumtext COMMENT 'Access Control - list of denied contact.id',
+  `deny_gid` mediumtext COMMENT 'Access Control - list of denied groups',
   PRIMARY KEY (`id`),
   KEY `contactid` (`contact-id`),
   KEY `uid_contactid` (`uid`,`contact-id`),
   KEY `uid_profile` (`uid`,`profile`),
   KEY `uid_album_scale_created` (`uid`,`album`(32),`scale`,`created`),
-  KEY `uid_album_resource-id_created` (`uid`,`album`(32),`resource-id`(64),`created`),
-  KEY `resource-id` (`resource-id`(64))
-) ENGINE=InnoDB AUTO_INCREMENT=82 DEFAULT CHARSET=utf8mb4;
+  KEY `uid_album_resource-id_created` (`uid`,`album`(32),`resource-id`,`created`),
+  KEY `resource-id` (`resource-id`)
+) ENGINE=InnoDB AUTO_INCREMENT=88 DEFAULT CHARSET=utf8mb4 COMMENT='photo storage';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -1283,7 +1492,7 @@ CREATE TABLE `photo` (
 
 LOCK TABLES `photo` WRITE;
 /*!40000 ALTER TABLE `photo` DISABLE KEYS */;
-INSERT INTO `photo` VALUES (1,1,0,'75859b1098e38271','676c41a6030639fa07634741242d99de','2017-09-07 08:55:42','2017-09-07 08:55:42','','','Profile photos','person-175.jpg','image/jpeg',175,175,5476,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0�\0�\ 1\ 1\11\0��\0\1e\0\ 1\0\ 2\ 3\0\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\n\v\ 4\b  \ 2\ 3\a\ 5\ 6��\0A\10\0\0\ 5\ 3\ 2\ 3\ 5\ 5\ 4\a\a\ 5\0\0\0\0\0\ 1\ 2\ 5\ 6\ 3\ 4\a\b\11        \12!\n\13\151A\14\16\"Q�2aq�\17#%3���$&5BR��\18Es����\0\b\ 1\ 1\0\0?\0��\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն����X\12g���p|L�sN��\1e�}�Y%ZR|�1(�J*I&+�r$0G��)%l�Z�,:��i�(��ϥ�)���J�����*hχ\18oSмI����$�\16Dj.T�\n1PȌ�4��?�{e���Ӧx�)ж\a}t�^x\\~\18�s��2�{���ml&\17��\0�T2#3��ږ_\17�،�ûU�Y�\15f�$���1.�`w��)rr�\ eǒ��$g�boqd�\Z7\"�i,�0g��#�}�G���!�\0\0\0\0\0\0\0\ 2*|z�B��\1c6�Zp�]�s\"�A�ڝ\r�E\7f\r��{�b�\1d�Z�HI��j��>Eq�E�\14˒S.:t�7\19�Vg�5\15�u;��Ys=�YFZ�Rk��}���<j��ʮHnl�Ifh���M6&\ 4\";M\15\13�D�O.����_��)Y\8e1�\r�X!M\nm��y�Kl�R\a�#�k�M&�^�\12o\13\19\ 2|M\11L}Ij���O��D>��OJ��\Z\1c\1c�m�\ 2\ e�i��v2��r�VӍB�l[�rd��D�;\13k�)^�2-gQ~\ 1\1cE\14SA�j�ƴ\1dS��<���\ f0\0\0\0\0\0\0\0\1cv�Sę��>�\'9��خ�\f�豆\ 1�8$��򌩵�\9c\11U\1c\a�Y)�O�&DH]6B�&�\ eKMeN�D�SL�8�d��#z��9�۔�g,�ܮ��G w�7GggU)F�]Es�i-��D\12Rd�{-��\1ce�|jw\14�K\vP���䗴[�<�PU�\ 4\ e&�Jw���iU4�L��\Zno5i)i��\18�ud�:d.-�n��\ f=9�tр��Z!�kj�/�Z��rL�׹S��d�]�Wg�\Z��M(R���%�#\15����F��\vʧJ޵ZT}��$�����\7f��|����7����u�ç(\'\1cI�]_���/\13\ 5�Yk1�S\ 5���Q��\"�x�<Q�e\'e��9$����9YQZ̏D��m�_�֖����n�;p{:=a�����c��^\19\14�1H���[\19\11J#;��u\'b\12�����C�NX��tהQ�;M7I�\13�ڔ+-ì�G��bƺ��\19M\v�S�nC&�s\19�UHˑ=J�W��O_�.�c�\0\0\0\0\0\ 2�>�f�\\r���Z\\kp�q\ 5Ҿ.oU�u���\ 5���Z�\ fn���)����X�Fd��5\19\1fQ\101e�c�@���J\13�{LX(�GԽ��3\19\\�[���a,|�M.�kQ�&_�,���R�\ZK��6>i#2Y*h@\ 3Wu+��\11��-.���q�\7f\'c)�Z�]X��\'f�I�Q��0�J�<�H\18�j�RC\1eZ$1��.�˟��4�?¿ �գ�\"t]�\ eN��&z}Ȩ�4\14\1f��\0*����AMq�%��%[1�PT�ɩ��Æ3�R��R��l14z�Y\"\ 2�d�\17�G�N����\vJː���m\'ʢS-BU5!j/�Iܭ���\121�/FQ\\�^��.h�]\14\13P0��ohϐY�)�^\Z)�T��\16U�G\17Q\11����,fJ��Gِ\0\0\0\0\0\14�q���d\ e-�B\1f\\*�u���D�Z��nǮ~�4\19��$�̏2�.��-m�ݯ�\em(ָ����m����WW���IoԺ������w2I\18��HX%�Lza�֞X��Z6�;\ 1�<��$���%\18jhvs2R�f���:>-DdJZ��)%\12\11��\0#[ڋѓN��Ve��M��|����<�\ 5qE������K>Yk�[\ZYN\f��\"ZyTGV\ZĢ5\12MGR�OO��&7���\v�;_��Ou��\1c[7���Q��?�0�Rv�Vg\13#۔��+���E�1\11\16�vl�\0\0\0\0\0����?�Ɯ^��0�R�lw���έ��lFݒRב�̋�\11rK\12�3=�2###�h��,�\1c�I�\ 6\ 5\197_�Cku齒笩Y\19��;���\ fa{`\0\0�\1e\'uXh����Y\'q�E��Ix��}�RÓ\ 2I\7f\ e_/_#�qG�OO��%�����3.\'�\\�m������>�t��2�7\f��\10�36(�FffJw_C4�4\11y\11\11Z*\0\0\0\0\0\ 2���\ 6�\\�1.�\19۷��C\1c���\ e6����yC\11��2t2$��\183�K���\e\e��\1f\ f�\\��\1d.�K�\r^\'\17�G���E��\19�);S/�ҟ����E��s\1e,��f/qB�5�q�C\"Ǯm̕gx�/���6l�5|*��Io�$����\11}X\0\ 4]�Uz�a��\f��\bjv�C0�)�8�.�op���cև6���\'R   (W�����J�\"�Sf>���UKS���*T�Φ�=72��?���[\vَ��\0��\10���u��&|�5�\7f\"�\19\1c-Uh�\fǭ\16\nV#�9\15Mԗ��;�H�$i5\"�̢�:��g&�\0\0\0\0\0\1c��\1f�ك����\13F��&7��<\15!�E4��/�R���5U*���\n*:�$�N�����$\ZҎ�l�����k/��  ��)=��9�&Q��eؽ��\r\ e>\12���\171\Z\17�T|�J�m��F��\15�J��n��w�i�N�o[/���8�����&�\f�q,���K\r5<���Gݢ\18ʥ����*T����\0/�<�|{9e�.���L�y-ؙ���\r\"ȳ\17.��Q�j�\1d\14[o��OB�g��&f)��e�+/�4�\\�Q�j�����Ѱ�~wh�c�8���ڤF\b�gT�ճ�G�[�M\')��?J\14�UDR)6v[�\"�3��\1c�$n��=�J��K�\'�D��q1�8��򄩴��7�(��U\1f����ueL�����t�v2ҤT�K�[o���|���\0\0\0\0\0\1e\1c���\0/�!3ڕ�\Z˘� �.����s.b����\17\13��U�~T��22T��<�)�<aI&��L�*Ҕ������\v�!�K�f� z���o��\e�݌�\0K���d�Z��gM�bw%%�A\15}�#�JZ\18��t�\a�莠p�&�pJ���y�\1dD2�>�����\1c�qv�s\'��\ZPH��GzjY\19��|�F�2�����?jj|�\0\b໩\nLK�c���\bA_.(\Z\ e����J ���\11����Lj��Ȫ\Zy��\"�}����ݽ��ε�Ճe�\1fS5:�$�n�\19\Z���[��\vδ��\"�d��\ 2��F��(�\1f\10(\13Y��\ZQvL����GM���y!z\'G�ǾƷu(���%;<\0\0\0\0\0?\ 5�յ������������n�n�\n����m���3\"\"\"=�ؼ����\'\18�x��8x�-��\1fa��\16���ES������l13K�\12\7f\v�Yx%���rJ��rR�Y�5B$�E�=4k_��ć�&��N\Z_�����k�\1c��H��Q;wdW)%�/\13y}\'��)5\13���i\17�(��\11�[���xr�I�W�+�]}f,�\n��\13^G��,s���\13���J\'8ӫ�\13\ 4�zLKZ�%l����$�Y�(�:�\19��]��6��\0�㴒�Mʮ�%y�2=�ޟ�$��{�;�SؔI-��m�z�Ѹ�U��)\19h�c���,X�\18ۭ�ѹ���\9bC;ccg)�-TZS��BV�^S2%\19l��@ro�������\ 3W8\ 2&اi��;��\1c6�\19{{��\12IY�\\J6ڒ\"��\"J�|��w\"-�)�`t��J\19��K�q���:\1d�}�7\ 6�4��QoӕI��4��{u��\ 5�H�n�\18�0B\1c��a�G\1c�\'�w\e~�x�-���5\1e�:�\1d���\11�����@\0\0\0\0|�(�\\\7f����-e�k$\v\1cc�\' 4�W\"�+\16H�\ 3Sw��:�\19�%�25�Ȉ׶ܜ�>E�\e�{�殸�g\e]\1ehѣ\"3i�_0���M\13E�K�[�EmFI�    �tҦe�Ϩ�\12W\19�ۧڥ�Z�%.���/�k0���c\19�U��\\�J��r\v[GKU<bL\n�J��\11fx��5���̕�߈҅��\rDgeI䒳E*T��\"/���\7f���\0\0\18\7f����x=�~Ύ@iș\ f^z\bǗ�xL���g�t�\fmS��%0p%:˧����(7�T���zQ\ 4���H��o�\"\ 5V\e[��\7foٖ㻏�\\9���e��\Z1�;��5噭�66\v+\'�2:�j|��H��d���\10~�\19!     ����&��J�\v{�7T�֣W��_�\0���z����\0\0\0\0\15��������SG\f�M%�B\15�I�y�[�뽊G?t/\1cǘ���P����\12Zg�t��\15IC�\16��H�L��ـ��գ�\bí|�\10����CF,\1da�\ f��N\18W\b<��KSY��)�g��\ e��V��\7fv\14\11\ 6�JW.�\0\0\0\1e\1d�?�C�z��\ 3�[Z�גMFh�\17L��<�t��Z�c����Fdo\19\ 3\19=E�of�Q�JC\"�e�n����?\ e\1ca�h}(\ e����qlF��v�Q���훘#m�OV��[S,9�9\1fg=ȐQ��#��J�t�M_ø��+G\1c��]Ai�YL-V�ws�}Ga(�;�7v\bA\11&+����5��\1e���I��2��J�Եl�\11Чjg\nd��WK�C0�ނ��k�!�Nr��5b�K��Jj����9!��5\14I.Y2dq�\"J�_�Dr�\"����\e�Z�+�W$�[\\[��NǶ���}\f�3=���?H\0\0|�)�v\\M�r\16T��*1�m\ e�N�\17&I�Պ$����=�솣�����M�$t���;�5��4X֔C޲|�Wڍ��/no��3�NZQw35\19\1c�r�\12�+����d�JRDv�е�mO��F�\n\'�k~�|�K��1�\0\0\0\0\01����Z^��_��\7f/����\v\1c��\b�#�$ڈ���&�la�˓�Y���6\ e\19� �ޥ���Ri)&���t��;�jL��\14Y��$R��^ɿ\17\19�L�n\19څ�_�� \11�   6��r;���p��B��\r�#��)��� �)f�S�\"A\16]B�\e�$�IK��_�d\0\0�\7f\Z�u�?��\10\ 3]j����W�m6�6�L�U\Z[\11�������-�\1eޢ/}��\1diF!�-J_Y~�x�b�%\17p3>kF�f�����\ 4��J[�D�=��(��l\'�\0\0\0\0\0\0=\v����1Wή1�n\ZݪLV��,��\15�ګ��V0��^�`q-O�52df��Jy|\18�e9\r���O*\15\10\19\1f���d=�\09���.s�\18\Z�\0�&�V�� ��[u;�\vۺK�_\13Q(���d^����x��p���:�\b�L5\7f���\\+�幞\ 1�Y�{\7f�C����ۧ��@\0\0\0\0\0\0@\1f\15�R��:�\19X��R�\a��{�f鷺z��\Z���{����7\13�G�\ fx\0\re��K��)�Z\10�4.=���b�����Wf�\ 2yi=��l�������>��L��\19p��\0pt=����UrG���\'�����z�R\7f/��J�\0\0\0\0\0\0\"C�?\ZQ����\10�S��(���m�]q\13�6Hܷ=��[�zy��%�O�\'�\1e`1�@�BWaA�1#h�C�(��9��?M��Q�H��\"3-����\1c\7f��c�ѷ\b= D�ZW��lה\1c�m�L�IS�w�.��оʈ�2�\f��v�\0\0\0\0\0\0\a\ eu�hJ8��=�U�Ch<�^;����/�F\7f        ��鱴�zm�I\"\1d�\0\0\1e���޻���\0c�d5\1fC�ή\eҦ\19�5l��֋��-N��m�     R��~�w�B���߀\0\0\0\0\0\0��׎JO��\ZO;�\'�0�g\v���yn\1cwd��.��\19����\0\0\0\18�T��^G��\0]�\0?/.�2\0\0\0\0\0\0\0`T��V�*�h�:��mL�܌����\16\7f��\0\0\0\0\0\0\0\0\0\0\0\0\1f��',4,1,'','','',''),(2,1,0,'75859b1098e38271','676c41a6030639fa07634741242d99de','2017-09-07 08:55:42','2017-09-07 08:55:42','','','Profile photos','person-175.jpg','image/jpeg',80,80,2697,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0P\0P\ 1\ 1\11\0��\0\1f\0\ 1\0\ 1\ 4\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\ 1    \n\v\ 2\ 4\a\ 3\ 5\ 6��\01\10\0\0\ 6\ 1\ 3\ 2\ 4\ 6\ 1\ 4\ 3\0\0\0\0\0\ 1\ 2\ 3\ 4\ 5\ 6\a\0\b\11   !\12\13\141\n\15\16\"QqA#���\173���\0\b\ 1\ 1\0\0?\0��M5A\10\ fq\0���<e��\17�~y\ f\1f��oު\ 2\ 3� ?��U�M4�T\11\ 2�\"<\0\7f?��~u�W]��N����-�-�BT����3EKŖ�.���\ eRI�8c\1d\'\1f\Z骖�fk�!��g\13[I�\17\16\15_:\15kƵ�J�u��B��7��\'vX3i�2j:�G���*�e�\0F��G\19S��ש\14�cGH8�Z�!]��n[\19�$4���I�vX\'  �v�a�BÒl1Q�\ f\f�\\���s�q�i����#�,Sg2�\0(fM]5�j��\f#��o/^���\17�^L<\0r\ 3���\1c\7f=��\ f>��4�M5\13�ݸt���=��X�\"��\13\99\ 3!D�p< ��\ 1_x�\1e�r��\a�Y������C���\ f����ê�T,Q�rd�其aɖ\1c��+z�\154��d2���:AY1\13.�Z�F�`\18H��k7>��C�b\ 3���M���r�I��U*UX\18z�n�\ 6\b�h\18\186\bF�CŰjR6g\1f\Z��\f�6@�I\14\11M4�\nP�)�\'��\f\1d���c-�^j�\15���e�\1e[��\16JE�t\0���l�A�5��*\10���ga\'\16��\1d2��א�\rjX��OR_��\7f�]�d\1c�s�8�\10�$+�\'\v۬�<m�1܇������G\ fOG��Td\19Y+s��\1e�-��䛷}\18;W��V��lC��U\ 1���b�Uȴ��)H����\11��\19e�!�\ 4\16/�\ 5��SX\ eA\1e���4�V��5���OJ��㚳W\ f�s\em�rP��\ns��\7fR���\b�ɦS\1dU�\r\ 1�H�1�:� \14D�k\ 1��eZ�]S�\12s\ 2�e��>L%h\15��Au��(VH���\ 6\15�VW&8\'�zr��      \na��p��p\1c~��o�\0\">�\ 2?�:�;�pMT.�c\1eר\b%\'g���>�xk\10��x���3\11���Ԫ*��j\16*sr�R�s&vm��a\13\r��00��n];�_�o��ow�[sŕ�s\'_��X��cՙ�7?�D���\13�}�\v��\19ݦ�k���/��d�\14\\7v�۸n�0U\ 5�X��Ȭ���RU#\1d5\137%9L%0   D@u�o\'l9\13��5�����Rs�1�Y2�3T<\18$oKD��~�.`W�z�$���_�\7f\'@�ꑄ�k\Zܐ�3��\ex���\7f,�3�1�f\1cWdaq�\19*�\ 5u�Zc\f���W,,\11��~�V\"N\12\15[.O=��Pt��*��\b�Ed��]D7@�˶G��ѱ�Bfc\n��uʹ\10�U\ 6\12V�쁍E��\"t��Z�g�)�\nj�r�\19ш�N\ 5\1d`���M�Q\1d��\ f����6�i��)K��\12x�øY�%t��SL���W�?�w_\n�!R�; )��ٴhz�I\13ؼR�@\n\1d�=��M5�[���\19\ e\12�n\ f?ܣ�x�\1c©1b�~c\1dE\fe\n�>\16\19�@.�,S��o\17\ 3\f��=��t٫t��r\16\12��������\f͎������ �r�$eB�t�6���*���$�q�:\1e+��$����.�&�7\")A���\1cf�]���KiyF�W�n6�/��u\17K�D<�}�Ӟ\15Bu�ah���\1e�+#Q��t��72���\13D\e*�Vm\e59�\19�E�S�N�C�V`)���;\n�V�V�e\ 3]�@ŠFѰ�\11ɢ�:9�dȃf�QM\14�!JB\0\a\7f\1e���j���\ ew�-�ۈ��oŷ\1cr�U�$p�\11[$3�q�\16m�1Sp��(,�� �ʒΘ$�����#�ۻ��@�=�t��\ 3\18\10�d젆Q�VO���X�7���>�;\rD�ȕ�\14���0uI�{\ 3,�IW���J5����        �pe9L_\10\18\1f�!���۸�~{~uϐ��\b\ 2?�\11�\0\Z�\7f\1dBk�WY��t��u \e]�8�w��h�.�6kk��HEUj2��dN%U�0�\rUMT�j�+LH `w\18���*\ 2\n\"�\a\11\\��0����g\ f\v\r\16Ѽ|dLTst�G��0h�M\190b�\14�3f�$�5l�H �i&B��馿!t��|�\ ez�@�U�\15\14Me`m��{4*�%���V.m��*(�\1c�C�\ 11<C�\10�y����\1e<�Գ��7|����\ 5\1e)�ܷ����2��I��\160\')5�\b\7f��i,F�!U�ץ��3L�گ\14����)�7�M�d���N���o\ 2]���B�7��qa*����AH���]�L���r�\171\1fS�dݣ$\1cOB�6���\'\15\17|�P��Ϸ\ 3\1f�Xom8��|@}J�\f�ζk��ȗk\14�3X�\e��\19\16m�1x\ 4����9X�\1f�f�c\ f$7\17��M4�V }��+�J��ض��\vWH\v�K*��$       y*���Q����1J��#��M\ 3\1c�P��H�`!C��\a�~�T��\e���\a��=���:���\0\18��}���ޟ�%�m�@�\15\7f\b\0(�\7f���Ɂ��\13���0�/�\18��#�J^\0&n�i���R\18\15��K1�s\b��\16D�ި9�$s\1e/�&����0�.�C�`0�b鮸5n\ eTxTR+�QA��\0��TA��(�GS�\11���92E\13\b\10˪%\0\15\f#��M4�]Qf�^�@QL]���\11LJ��l���� o\7f,ꢒ�\ fa2e��\0뵯��',5,1,'','','',''),(3,1,0,'75859b1098e38271','676c41a6030639fa07634741242d99de','2017-09-07 08:55:42','2017-09-07 08:55:42','','','Profile photos','person-175.jpg','image/jpeg',48,48,1758,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\00\00\ 1\ 1\11\0��\0\e\0\0\ 2\ 3\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\b  \0\ 1\ 6\a\ 4\n��\0.\10\0\ 1\ 4\ 2\ 1\ 3\ 3\ 3\ 2\a\ 1\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0      \11\12\13\14\n\16!\151\"#$23AQa��\0\b\ 1\ 1\0\0?\0��곜c\19�s�\18ǜ�?�\18���x޽�8\a���|S�ۯ܏�R�\0�9�����\ 5�2U?�\ 6fZ%�i�ƅ�Y��rʹ\18D��BG4��Kc��\1dh���$��\Z9���i\15K^`�c�[��|\19\7f���P�5�x˨���e\19ϣ/{�Z\13��u:I\7fP�0��%�S�m���M�l�^+Zn�f�}�d��;JS\15\e$Ymxt9�Z�΅9�!��\ 4\1cC̶�/o�\13�u\13EpZ�ͫ�\bs|����VW�s\ 2���֩\16�+\ f[�Eɖ�Ke�[��}�He�ݗ\"Z(y\f��@ԒS�\ 5�w\a\1f��\ 5��N�)�q���\e��3�JM�\\]���  \b\b̭y����N�\ 5�\0ɚȥ֒a�ʈ���O`\1d�y��|\vҼ�&�-F�m\12f��+`<�\11q{\ 2�*En՘g\b���$��Y��`��P��#\ 6I%�;�<�z�+��<\e��#ۣ��g��dl9�\10n��&���\7fek�ٵ���-^R\18\13#�[$եH\r��      q*CJ�Co����{C��\v��aI��\17��v\1e:ome2£�u):���H�b���Вկ�2�[imS�\16\0�R�\ f�\\��c䥵�:j>�Zf\r3;��Æ�U��sن��\"���-�\12.�\ f9�J>tL\ 3~�\ e�H�,\12���\1c\e$�~�\1c\e�v��f��UFYV<k�\a����\85���d1�����\14��0d,\'����[��\12�\"�뮲�\14xu�w��q�Nl��%S\vA��\1d��%�e�\18��F\11(bFa?�I� \7f\b��.�c�\ e�2��V\ f\ru�%��\ f\a�~k�ozY\16���\10��D�\16���t�Q)G��r5���m��a�z2b�\ 5=4�\n��OC�LI�/�j\ 6��Z��$��֔j\1c����\\$�Uxh\19+d�\14��%f��\fs\'�\10��RL�x�0�_W���2����\ 4�5��&��WH=m��\16m��š�6�\ e��μ�\"^�k��\14Js4���h`Z\\�\'�Z\10��,a�e�� ��|�o���E�����Cٛ\Z��\e7Xj�B�8k���ä\e\14\f�겻�\Z��(\b���tz�\"\1dy\ 5�T�t�d|�9�I��\ 4,�d�\ 44X\'�k\b$3C)���E(w[|w�Z�y���+)V3���Ǯ\b��\11�\Zń��7�w\1f+��3�92�!�-Bݢ=�c�k��\0Z?�b��W�#9�X�c\ e\10��#\r\f(��0ð���\f0�Ze�[F0�4�hJ\eBq��       �S�c\18����;o�W�uK-*�\14\f�b�\ 11X��I\ e�q�s���J�\Z+�[$\bh\ 5�1\f��6�.�\vNR�㠓��b~���T�)�\1d+N����\ e8�h��N��A\ 6�)n+\11�`�\0שY�\19\19�c�1�`Ըԣ.�\ f�e��\ 5�d\14\18W�\10Sq��+ӟ�}\'F\ e�9����\1f��\18njc\1f\18�W����\7f\1e\7f\1f���\0γ\14��u\"�\15V�F\e��l��F1��PAd\18�c\1es���/����',6,1,'','','',''),(4,2,0,'75859b109d5b24c8','a78adc969a71bfd985d769baa2d51c78','2017-09-07 08:56:53','2017-09-07 08:56:53','','','Profile photos','person-175.jpg','image/jpeg',175,175,5476,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0�\0�\ 1\ 1\11\0��\0\1e\0\ 1\0\ 2\ 3\0\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\n\v\ 4\b      \ 2\ 3\a\ 5\ 6��\0A\10\0\0\ 5\ 3\ 2\ 3\ 5\ 5\ 4\a\a\ 5\0\0\0\0\0\ 1\ 2\ 5\ 6\ 3\ 4\a\b\11        \12!\n\13\151A\14\16\"Q�2aq�\17#%3���$&5BR��\18Es����\0\b\ 1\ 1\0\0?\0��\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն����X\12g���p|L�sN��\1e�}�Y%ZR|�1(�J*I&+�r$0G��)%l�Z�,:��i�(��ϥ�)���J�����*hχ\18oSмI����$�\16Dj.T�\n1PȌ�4��?�{e���Ӧx�)ж\a}t�^x\\~\18�s��2�{���ml&\17��\0�T2#3��ږ_\17�،�ûU�Y�\15f�$���1.�`w��)rr�\ eǒ��$g�boqd�\Z7\"�i,�0g��#�}�G���!�\0\0\0\0\0\0\0\ 2*|z�B��\1c6�Zp�]�s\"�A�ڝ\r�E\7f\r��{�b�\1d�Z�HI��j��>Eq�E�\14˒S.:t�7\19�Vg�5\15�u;��Ys=�YFZ�Rk��}���<j��ʮHnl�Ifh���M6&\ 4\";M\15\13�D�O.����_��)Y\8e1�\r�X!M\nm��y�Kl�R\a�#�k�M&�^�\12o\13\19\ 2|M\11L}Ij���O��D>��OJ��\Z\1c\1c�m�\ 2\ e�i��v2��r�VӍB�l[�rd��D�;\13k�)^�2-gQ~\ 1\1cE\14SA�j�ƴ\1dS��<���\ f0\0\0\0\0\0\0\0\1cv�Sę��>�\'9��خ�\f�豆\ 1�8$��򌩵�\9c\11U\1c\a�Y)�O�&DH]6B�&�\ eKMeN�D�SL�8�d��#z��9�۔�g,�ܮ��G w�7GggU)F�]Es�i-��D\12Rd�{-��\1ce�|jw\14�K\vP���䗴[�<�PU�\ 4\ e&�Jw���iU4�L��\Zno5i)i��\18�ud�:d.-�n��\ f=9�tр��Z!�kj�/�Z��rL�׹S��d�]�Wg�\Z��M(R���%�#\15����F��\vʧJ޵ZT}��$�����\7f��|����7����u�ç(\'\1cI�]_���/\13\ 5�Yk1�S\ 5���Q��\"�x�<Q�e\'e��9$����9YQZ̏D��m�_�֖����n�;p{:=a�����c��^\19\14�1H���[\19\11J#;��u\'b\12�����C�NX��tהQ�;M7I�\13�ڔ+-ì�G��bƺ��\19M\v�S�nC&�s\19�UHˑ=J�W��O_�.�c�\0\0\0\0\0\ 2�>�f�\\r���Z\\kp�q\ 5Ҿ.oU�u���\ 5���Z�\ fn���)����X�Fd��5\19\1fQ\101e�c�@���J\13�{LX(�GԽ��3\19\\�[���a,|�M.�kQ�&_�,���R�\ZK��6>i#2Y*h@\ 3Wu+��\11��-.���q�\7f\'c)�Z�]X��\'f�I�Q��0�J�<�H\18�j�RC\1eZ$1��.�˟��4�?¿ �գ�\"t]�\ eN��&z}Ȩ�4\14\1f��\0*����AMq�%��%[1�PT�ɩ��Æ3�R��R��l14z�Y\"\ 2�d�\17�G�N����\vJː���m\'ʢS-BU5!j/�Iܭ���\121�/FQ\\�^��.h�]\14\13P0��ohϐY�)�^\Z)�T��\16U�G\17Q\11����,fJ��Gِ\0\0\0\0\0\14�q���d\ e-�B\1f\\*�u���D�Z��nǮ~�4\19��$�̏2�.��-m�ݯ�\em(ָ����m����WW���IoԺ������w2I\18��HX%�Lza�֞X��Z6�;\ 1�<��$���%\18jhvs2R�f���:>-DdJZ��)%\12\11��\0#[ڋѓN��Ve��M��|����<�\ 5qE������K>Yk�[\ZYN\f��\"ZyTGV\ZĢ5\12MGR�OO��&7���\v�;_��Ou��\1c[7���Q��?�0�Rv�Vg\13#۔��+���E�1\11\16�vl�\0\0\0\0\0����?�Ɯ^��0�R�lw���έ��lFݒRב�̋�\11rK\12�3=�2###�h��,�\1c�I�\ 6\ 5\197_�Cku齒笩Y\19��;���\ fa{`\0\0�\1e\'uXh����Y\'q�E��Ix��}�RÓ\ 2I\7f\ e_/_#�qG�OO��%�����3.\'�\\�m������>�t��2�7\f��\10�36(�FffJw_C4�4\11y\11\11Z*\0\0\0\0\0\ 2���\ 6�\\�1.�\19۷��C\1c���\ e6����yC\11��2t2$��\183�K���\e\e��\1f\ f�\\��\1d.�K�\r^\'\17�G���E��\19�);S/�ҟ����E��s\1e,��f/qB�5�q�C\"Ǯm̕gx�/���6l�5|*��Io�$����\11}X\0\ 4]�Uz�a��\f��\bjv�C0�)�8�.�op���cև6���\'R   (W�����J�\"�Sf>���UKS���*T�Φ�=72��?���[\vَ��\0��\10���u��&|�5�\7f\"�\19\1c-Uh�\fǭ\16\nV#�9\15Mԗ��;�H�$i5\"�̢�:��g&�\0\0\0\0\0\1c��\1f�ك����\13F��&7��<\15!�E4��/�R���5U*���\n*:�$�N�����$\ZҎ�l�����k/��  ��)=��9�&Q��eؽ��\r\ e>\12���\171\Z\17�T|�J�m��F��\15�J��n��w�i�N�o[/���8�����&�\f�q,���K\r5<���Gݢ\18ʥ����*T����\0/�<�|{9e�.���L�y-ؙ���\r\"ȳ\17.��Q�j�\1d\14[o��OB�g��&f)��e�+/�4�\\�Q�j�����Ѱ�~wh�c�8���ڤF\b�gT�ճ�G�[�M\')��?J\14�UDR)6v[�\"�3��\1c�$n��=�J��K�\'�D��q1�8��򄩴��7�(��U\1f����ueL�����t�v2ҤT�K�[o���|���\0\0\0\0\0\1e\1c���\0/�!3ڕ�\Z˘� �.����s.b����\17\13��U�~T��22T��<�)�<aI&��L�*Ҕ������\v�!�K�f� z���o��\e�݌�\0K���d�Z��gM�bw%%�A\15}�#�JZ\18��t�\a�莠p�&�pJ���y�\1dD2�>�����\1c�qv�s\'��\ZPH��GzjY\19��|�F�2�����?jj|�\0\b໩\nLK�c���\bA_.(\Z\ e����J ���\11����Lj��Ȫ\Zy��\"�}����ݽ��ε�Ճe�\1fS5:�$�n�\19\Z���[��\vδ��\"�d��\ 2��F��(�\1f\10(\13Y��\ZQvL����GM���y!z\'G�ǾƷu(���%;<\0\0\0\0\0?\ 5�յ������������n�n�\n����m���3\"\"\"=�ؼ����\'\18�x��8x�-��\1fa��\16���ES������l13K�\12\7f\v�Yx%���rJ��rR�Y�5B$�E�=4k_��ć�&��N\Z_�����k�\1c��H��Q;wdW)%�/\13y}\'��)5\13���i\17�(��\11�[���xr�I�W�+�]}f,�\n��\13^G��,s���\13���J\'8ӫ�\13\ 4�zLKZ�%l����$�Y�(�:�\19��]��6��\0�㴒�Mʮ�%y�2=�ޟ�$��{�;�SؔI-��m�z�Ѹ�U��)\19h�c���,X�\18ۭ�ѹ���\9bC;ccg)�-TZS��BV�^S2%\19l��@ro�������\ 3W8\ 2&اi��;��\1c6�\19{{��\12IY�\\J6ڒ\"��\"J�|��w\"-�)�`t��J\19��K�q���:\1d�}�7\ 6�4��QoӕI��4��{u��\ 5�H�n�\18�0B\1c��a�G\1c�\'�w\e~�x�-���5\1e�:�\1d���\11�����@\0\0\0\0|�(�\\\7f����-e�k$\v\1cc�\' 4�W\"�+\16H�\ 3Sw��:�\19�%�25�Ȉ׶ܜ�>E�\e�{�殸�g\e]\1ehѣ\"3i�_0���M\13E�K�[�EmFI�    �tҦe�Ϩ�\12W\19�ۧڥ�Z�%.���/�k0���c\19�U��\\�J��r\v[GKU<bL\n�J��\11fx��5���̕�߈҅��\rDgeI䒳E*T��\"/���\7f���\0\0\18\7f����x=�~Ύ@iș\ f^z\bǗ�xL���g�t�\fmS��%0p%:˧����(7�T���zQ\ 4���H��o�\"\ 5V\e[��\7foٖ㻏�\\9���e��\Z1�;��5噭�66\v+\'�2:�j|��H��d���\10~�\19!     ����&��J�\v{�7T�֣W��_�\0���z����\0\0\0\0\15��������SG\f�M%�B\15�I�y�[�뽊G?t/\1cǘ���P����\12Zg�t��\15IC�\16��H�L��ـ��գ�\bí|�\10����CF,\1da�\ f��N\18W\b<��KSY��)�g��\ e��V��\7fv\14\11\ 6�JW.�\0\0\0\1e\1d�?�C�z��\ 3�[Z�גMFh�\17L��<�t��Z�c����Fdo\19\ 3\19=E�of�Q�JC\"�e�n����?\ e\1ca�h}(\ e����qlF��v�Q���훘#m�OV��[S,9�9\1fg=ȐQ��#��J�t�M_ø��+G\1c��]Ai�YL-V�ws�}Ga(�;�7v\bA\11&+����5��\1e���I��2��J�Եl�\11Чjg\nd��WK�C0�ނ��k�!�Nr��5b�K��Jj����9!��5\14I.Y2dq�\"J�_�Dr�\"����\e�Z�+�W$�[\\[��NǶ���}\f�3=���?H\0\0|�)�v\\M�r\16T��*1�m\ e�N�\17&I�Պ$����=�솣�����M�$t���;�5��4X֔C޲|�Wڍ��/no��3�NZQw35\19\1c�r�\12�+����d�JRDv�е�mO��F�\n\'�k~�|�K��1�\0\0\0\0\01����Z^��_��\7f/����\v\1c��\b�#�$ڈ���&�la�˓�Y���6\ e\19� �ޥ���Ri)&���t��;�jL��\14Y��$R��^ɿ\17\19�L�n\19څ�_�� \11�   6��r;���p��B��\r�#��)��� �)f�S�\"A\16]B�\e�$�IK��_�d\0\0�\7f\Z�u�?��\10\ 3]j����W�m6�6�L�U\Z[\11�������-�\1eޢ/}��\1diF!�-J_Y~�x�b�%\17p3>kF�f�����\ 4��J[�D�=��(��l\'�\0\0\0\0\0\0=\v����1Wή1�n\ZݪLV��,��\15�ګ��V0��^�`q-O�52df��Jy|\18�e9\r���O*\15\10\19\1f���d=�\09���.s�\18\Z�\0�&�V�� ��[u;�\vۺK�_\13Q(���d^����x��p���:�\b�L5\7f���\\+�幞\ 1�Y�{\7f�C����ۧ��@\0\0\0\0\0\0@\1f\15�R��:�\19X��R�\a��{�f鷺z��\Z���{����7\13�G�\ fx\0\re��K��)�Z\10�4.=���b�����Wf�\ 2yi=��l�������>��L��\19p��\0pt=����UrG���\'�����z�R\7f/��J�\0\0\0\0\0\0\"C�?\ZQ����\10�S��(���m�]q\13�6Hܷ=��[�zy��%�O�\'�\1e`1�@�BWaA�1#h�C�(��9��?M��Q�H��\"3-����\1c\7f��c�ѷ\b= D�ZW��lה\1c�m�L�IS�w�.��оʈ�2�\f��v�\0\0\0\0\0\0\a\ eu�hJ8��=�U�Ch<�^;����/�F\7f        ��鱴�zm�I\"\1d�\0\0\1e���޻���\0c�d5\1fC�ή\eҦ\19�5l��֋��-N��m�     R��~�w�B���߀\0\0\0\0\0\0��׎JO��\ZO;�\'�0�g\v���yn\1cwd��.��\19����\0\0\0\18�T��^G��\0]�\0?/.�2\0\0\0\0\0\0\0`T��V�*�h�:��mL�܌����\16\7f��\0\0\0\0\0\0\0\0\0\0\0\0\1f��',4,1,'','','',''),(5,2,0,'75859b109d5b24c8','a78adc969a71bfd985d769baa2d51c78','2017-09-07 08:56:53','2017-09-07 08:56:53','','','Profile photos','person-175.jpg','image/jpeg',80,80,2697,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0P\0P\ 1\ 1\11\0��\0\1f\0\ 1\0\ 1\ 4\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\ 1    \n\v\ 2\ 4\a\ 3\ 5\ 6��\01\10\0\0\ 6\ 1\ 3\ 2\ 4\ 6\ 1\ 4\ 3\0\0\0\0\0\ 1\ 2\ 3\ 4\ 5\ 6\a\0\b\11   !\12\13\141\n\15\16\"QqA#���\173���\0\b\ 1\ 1\0\0?\0��M5A\10\ fq\0���<e��\17�~y\ f\1f��oު\ 2\ 3� ?��U�M4�T\11\ 2�\"<\0\7f?��~u�W]��N����-�-�BT����3EKŖ�.���\ eRI�8c\1d\'\1f\Z骖�fk�!��g\13[I�\17\16\15_:\15kƵ�J�u��B��7��\'vX3i�2j:�G���*�e�\0F��G\19S��ש\14�cGH8�Z�!]��n[\19�$4���I�vX\'  �v�a�BÒl1Q�\ f\f�\\���s�q�i����#�,Sg2�\0(fM]5�j��\f#��o/^���\17�^L<\0r\ 3���\1c\7f=��\ f>��4�M5\13�ݸt���=��X�\"��\13\99\ 3!D�p< ��\ 1_x�\1e�r��\a�Y������C���\ f����ê�T,Q�rd�其aɖ\1c��+z�\154��d2���:AY1\13.�Z�F�`\18H��k7>��C�b\ 3���M���r�I��U*UX\18z�n�\ 6\b�h\18\186\bF�CŰjR6g\1f\Z��\f�6@�I\14\11M4�\nP�)�\'��\f\1d���c-�^j�\15���e�\1e[��\16JE�t\0���l�A�5��*\10���ga\'\16��\1d2��א�\rjX��OR_��\7f�]�d\1c�s�8�\10�$+�\'\v۬�<m�1܇������G\ fOG��Td\19Y+s��\1e�-��䛷}\18;W��V��lC��U\ 1���b�Uȴ��)H����\11��\19e�!�\ 4\16/�\ 5��SX\ eA\1e���4�V��5���OJ��㚳W\ f�s\em�rP��\ns��\7fR���\b�ɦS\1dU�\r\ 1�H�1�:� \14D�k\ 1��eZ�]S�\12s\ 2�e��>L%h\15��Au��(VH���\ 6\15�VW&8\'�zr��      \na��p��p\1c~��o�\0\">�\ 2?�:�;�pMT.�c\1eר\b%\'g���>�xk\10��x���3\11���Ԫ*��j\16*sr�R�s&vm��a\13\r��00��n];�_�o��ow�[sŕ�s\'_��X��cՙ�7?�D���\13�}�\v��\19ݦ�k���/��d�\14\\7v�۸n�0U\ 5�X��Ȭ���RU#\1d5\137%9L%0   D@u�o\'l9\13��5�����Rs�1�Y2�3T<\18$oKD��~�.`W�z�$���_�\7f\'@�ꑄ�k\Zܐ�3��\ex���\7f,�3�1�f\1cWdaq�\19*�\ 5u�Zc\f���W,,\11��~�V\"N\12\15[.O=��Pt��*��\b�Ed��]D7@�˶G��ѱ�Bfc\n��uʹ\10�U\ 6\12V�쁍E��\"t��Z�g�)�\nj�r�\19ш�N\ 5\1d`���M�Q\1d��\ f����6�i��)K��\12x�øY�%t��SL���W�?�w_\n�!R�; )��ٴhz�I\13ؼR�@\n\1d�=��M5�[���\19\ e\12�n\ f?ܣ�x�\1c©1b�~c\1dE\fe\n�>\16\19�@.�,S��o\17\ 3\f��=��t٫t��r\16\12��������\f͎������ �r�$eB�t�6���*���$�q�:\1e+��$����.�&�7\")A���\1cf�]���KiyF�W�n6�/��u\17K�D<�}�Ӟ\15Bu�ah���\1e�+#Q��t��72���\13D\e*�Vm\e59�\19�E�S�N�C�V`)���;\n�V�V�e\ 3]�@ŠFѰ�\11ɢ�:9�dȃf�QM\14�!JB\0\a\7f\1e���j���\ ew�-�ۈ��oŷ\1cr�U�$p�\11[$3�q�\16m�1Sp��(,�� �ʒΘ$�����#�ۻ��@�=�t��\ 3\18\10�d젆Q�VO���X�7���>�;\rD�ȕ�\14���0uI�{\ 3,�IW���J5����        �pe9L_\10\18\1f�!���۸�~{~uϐ��\b\ 2?�\11�\0\Z�\7f\1dBk�WY��t��u \e]�8�w��h�.�6kk��HEUj2��dN%U�0�\rUMT�j�+LH `w\18���*\ 2\n\"�\a\11\\��0����g\ f\v\r\16Ѽ|dLTst�G��0h�M\190b�\14�3f�$�5l�H �i&B��馿!t��|�\ ez�@�U�\15\14Me`m��{4*�%���V.m��*(�\1c�C�\ 11<C�\10�y����\1e<�Գ��7|����\ 5\1e)�ܷ����2��I��\160\')5�\b\7f��i,F�!U�ץ��3L�گ\14����)�7�M�d���N���o\ 2]���B�7��qa*����AH���]�L���r�\171\1fS�dݣ$\1cOB�6���\'\15\17|�P��Ϸ\ 3\1f�Xom8��|@}J�\f�ζk��ȗk\14�3X�\e��\19\16m�1x\ 4����9X�\1f�f�c\ f$7\17��M4�V }��+�J��ض��\vWH\v�K*��$       y*���Q����1J��#��M\ 3\1c�P��H�`!C��\a�~�T��\e���\a��=���:���\0\18��}���ޟ�%�m�@�\15\7f\b\0(�\7f���Ɂ��\13���0�/�\18��#�J^\0&n�i���R\18\15��K1�s\b��\16D�ި9�$s\1e/�&����0�.�C�`0�b鮸5n\ eTxTR+�QA��\0��TA��(�GS�\11���92E\13\b\10˪%\0\15\f#��M4�]Qf�^�@QL]���\11LJ��l���� o\7f,ꢒ�\ fa2e��\0뵯��',5,1,'','','',''),(6,2,0,'75859b109d5b24c8','a78adc969a71bfd985d769baa2d51c78','2017-09-07 08:56:53','2017-09-07 08:56:53','','','Profile photos','person-175.jpg','image/jpeg',48,48,1758,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\00\00\ 1\ 1\11\0��\0\e\0\0\ 2\ 3\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\b  \0\ 1\ 6\a\ 4\n��\0.\10\0\ 1\ 4\ 2\ 1\ 3\ 3\ 3\ 2\a\ 1\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0      \11\12\13\14\n\16!\151\"#$23AQa��\0\b\ 1\ 1\0\0?\0��곜c\19�s�\18ǜ�?�\18���x޽�8\a���|S�ۯ܏�R�\0�9�����\ 5�2U?�\ 6fZ%�i�ƅ�Y��rʹ\18D��BG4��Kc��\1dh���$��\Z9���i\15K^`�c�[��|\19\7f���P�5�x˨���e\19ϣ/{�Z\13��u:I\7fP�0��%�S�m���M�l�^+Zn�f�}�d��;JS\15\e$Ymxt9�Z�΅9�!��\ 4\1cC̶�/o�\13�u\13EpZ�ͫ�\bs|����VW�s\ 2���֩\16�+\ f[�Eɖ�Ke�[��}�He�ݗ\"Z(y\f��@ԒS�\ 5�w\a\1f��\ 5��N�)�q���\e��3�JM�\\]���  \b\b̭y����N�\ 5�\0ɚȥ֒a�ʈ���O`\1d�y��|\vҼ�&�-F�m\12f��+`<�\11q{\ 2�*En՘g\b���$��Y��`��P��#\ 6I%�;�<�z�+��<\e��#ۣ��g��dl9�\10n��&���\7fek�ٵ���-^R\18\13#�[$եH\r��      q*CJ�Co����{C��\v��aI��\17��v\1e:ome2£�u):���H�b���Вկ�2�[imS�\16\0�R�\ f�\\��c䥵�:j>�Zf\r3;��Æ�U��sن��\"���-�\12.�\ f9�J>tL\ 3~�\ e�H�,\12���\1c\e$�~�\1c\e�v��f��UFYV<k�\a����\85���d1�����\14��0d,\'����[��\12�\"�뮲�\14xu�w��q�Nl��%S\vA��\1d��%�e�\18��F\11(bFa?�I� \7f\b��.�c�\ e�2��V\ f\ru�%��\ f\a�~k�ozY\16���\10��D�\16���t�Q)G��r5���m��a�z2b�\ 5=4�\n��OC�LI�/�j\ 6��Z��$��֔j\1c����\\$�Uxh\19+d�\14��%f��\fs\'�\10��RL�x�0�_W���2����\ 4�5��&��WH=m��\16m��š�6�\ e��μ�\"^�k��\14Js4���h`Z\\�\'�Z\10��,a�e�� ��|�o���E�����Cٛ\Z��\e7Xj�B�8k���ä\e\14\f�겻�\Z��(\b���tz�\"\1dy\ 5�T�t�d|�9�I��\ 4,�d�\ 44X\'�k\b$3C)���E(w[|w�Z�y���+)V3���Ǯ\b��\11�\Zń��7�w\1f+��3�92�!�-Bݢ=�c�k��\0Z?�b��W�#9�X�c\ e\10��#\r\f(��0ð���\f0�Ze�[F0�4�hJ\eBq��       �S�c\18����;o�W�uK-*�\14\f�b�\ 11X��I\ e�q�s���J�\Z+�[$\bh\ 5�1\f��6�.�\vNR�㠓��b~���T�)�\1d+N����\ e8�h��N��A\ 6�)n+\11�`�\0שY�\19\19�c�1�`Ըԣ.�\ f�e��\ 5�d\14\18W�\10Sq��+ӟ�}\'F\ e�9����\1f��\18njc\1f\18�W����\7f\1e\7f\1f���\0γ\14��u\"�\15V�F\e��l��F1��PAd\18�c\1es���/����',6,1,'','','',''),(7,3,0,'75859b10a3a57734','cde8bd4c269d017826b5c163d04134ae','2017-09-07 08:58:34','2017-09-07 08:58:34','','','Profile photos','person-175.jpg','image/jpeg',175,175,5476,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0�\0�\ 1\ 1\11\0��\0\1e\0\ 1\0\ 2\ 3\0\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\n\v\ 4\b      \ 2\ 3\a\ 5\ 6��\0A\10\0\0\ 5\ 3\ 2\ 3\ 5\ 5\ 4\a\a\ 5\0\0\0\0\0\ 1\ 2\ 5\ 6\ 3\ 4\a\b\11        \12!\n\13\151A\14\16\"Q�2aq�\17#%3���$&5BR��\18Es����\0\b\ 1\ 1\0\0?\0��\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն����X\12g���p|L�sN��\1e�}�Y%ZR|�1(�J*I&+�r$0G��)%l�Z�,:��i�(��ϥ�)���J�����*hχ\18oSмI����$�\16Dj.T�\n1PȌ�4��?�{e���Ӧx�)ж\a}t�^x\\~\18�s��2�{���ml&\17��\0�T2#3��ږ_\17�،�ûU�Y�\15f�$���1.�`w��)rr�\ eǒ��$g�boqd�\Z7\"�i,�0g��#�}�G���!�\0\0\0\0\0\0\0\ 2*|z�B��\1c6�Zp�]�s\"�A�ڝ\r�E\7f\r��{�b�\1d�Z�HI��j��>Eq�E�\14˒S.:t�7\19�Vg�5\15�u;��Ys=�YFZ�Rk��}���<j��ʮHnl�Ifh���M6&\ 4\";M\15\13�D�O.����_��)Y\8e1�\r�X!M\nm��y�Kl�R\a�#�k�M&�^�\12o\13\19\ 2|M\11L}Ij���O��D>��OJ��\Z\1c\1c�m�\ 2\ e�i��v2��r�VӍB�l[�rd��D�;\13k�)^�2-gQ~\ 1\1cE\14SA�j�ƴ\1dS��<���\ f0\0\0\0\0\0\0\0\1cv�Sę��>�\'9��خ�\f�豆\ 1�8$��򌩵�\9c\11U\1c\a�Y)�O�&DH]6B�&�\ eKMeN�D�SL�8�d��#z��9�۔�g,�ܮ��G w�7GggU)F�]Es�i-��D\12Rd�{-��\1ce�|jw\14�K\vP���䗴[�<�PU�\ 4\ e&�Jw���iU4�L��\Zno5i)i��\18�ud�:d.-�n��\ f=9�tр��Z!�kj�/�Z��rL�׹S��d�]�Wg�\Z��M(R���%�#\15����F��\vʧJ޵ZT}��$�����\7f��|����7����u�ç(\'\1cI�]_���/\13\ 5�Yk1�S\ 5���Q��\"�x�<Q�e\'e��9$����9YQZ̏D��m�_�֖����n�;p{:=a�����c��^\19\14�1H���[\19\11J#;��u\'b\12�����C�NX��tהQ�;M7I�\13�ڔ+-ì�G��bƺ��\19M\v�S�nC&�s\19�UHˑ=J�W��O_�.�c�\0\0\0\0\0\ 2�>�f�\\r���Z\\kp�q\ 5Ҿ.oU�u���\ 5���Z�\ fn���)����X�Fd��5\19\1fQ\101e�c�@���J\13�{LX(�GԽ��3\19\\�[���a,|�M.�kQ�&_�,���R�\ZK��6>i#2Y*h@\ 3Wu+��\11��-.���q�\7f\'c)�Z�]X��\'f�I�Q��0�J�<�H\18�j�RC\1eZ$1��.�˟��4�?¿ �գ�\"t]�\ eN��&z}Ȩ�4\14\1f��\0*����AMq�%��%[1�PT�ɩ��Æ3�R��R��l14z�Y\"\ 2�d�\17�G�N����\vJː���m\'ʢS-BU5!j/�Iܭ���\121�/FQ\\�^��.h�]\14\13P0��ohϐY�)�^\Z)�T��\16U�G\17Q\11����,fJ��Gِ\0\0\0\0\0\14�q���d\ e-�B\1f\\*�u���D�Z��nǮ~�4\19��$�̏2�.��-m�ݯ�\em(ָ����m����WW���IoԺ������w2I\18��HX%�Lza�֞X��Z6�;\ 1�<��$���%\18jhvs2R�f���:>-DdJZ��)%\12\11��\0#[ڋѓN��Ve��M��|����<�\ 5qE������K>Yk�[\ZYN\f��\"ZyTGV\ZĢ5\12MGR�OO��&7���\v�;_��Ou��\1c[7���Q��?�0�Rv�Vg\13#۔��+���E�1\11\16�vl�\0\0\0\0\0����?�Ɯ^��0�R�lw���έ��lFݒRב�̋�\11rK\12�3=�2###�h��,�\1c�I�\ 6\ 5\197_�Cku齒笩Y\19��;���\ fa{`\0\0�\1e\'uXh����Y\'q�E��Ix��}�RÓ\ 2I\7f\ e_/_#�qG�OO��%�����3.\'�\\�m������>�t��2�7\f��\10�36(�FffJw_C4�4\11y\11\11Z*\0\0\0\0\0\ 2���\ 6�\\�1.�\19۷��C\1c���\ e6����yC\11��2t2$��\183�K���\e\e��\1f\ f�\\��\1d.�K�\r^\'\17�G���E��\19�);S/�ҟ����E��s\1e,��f/qB�5�q�C\"Ǯm̕gx�/���6l�5|*��Io�$����\11}X\0\ 4]�Uz�a��\f��\bjv�C0�)�8�.�op���cև6���\'R   (W�����J�\"�Sf>���UKS���*T�Φ�=72��?���[\vَ��\0��\10���u��&|�5�\7f\"�\19\1c-Uh�\fǭ\16\nV#�9\15Mԗ��;�H�$i5\"�̢�:��g&�\0\0\0\0\0\1c��\1f�ك����\13F��&7��<\15!�E4��/�R���5U*���\n*:�$�N�����$\ZҎ�l�����k/��  ��)=��9�&Q��eؽ��\r\ e>\12���\171\Z\17�T|�J�m��F��\15�J��n��w�i�N�o[/���8�����&�\f�q,���K\r5<���Gݢ\18ʥ����*T����\0/�<�|{9e�.���L�y-ؙ���\r\"ȳ\17.��Q�j�\1d\14[o��OB�g��&f)��e�+/�4�\\�Q�j�����Ѱ�~wh�c�8���ڤF\b�gT�ճ�G�[�M\')��?J\14�UDR)6v[�\"�3��\1c�$n��=�J��K�\'�D��q1�8��򄩴��7�(��U\1f����ueL�����t�v2ҤT�K�[o���|���\0\0\0\0\0\1e\1c���\0/�!3ڕ�\Z˘� �.����s.b����\17\13��U�~T��22T��<�)�<aI&��L�*Ҕ������\v�!�K�f� z���o��\e�݌�\0K���d�Z��gM�bw%%�A\15}�#�JZ\18��t�\a�莠p�&�pJ���y�\1dD2�>�����\1c�qv�s\'��\ZPH��GzjY\19��|�F�2�����?jj|�\0\b໩\nLK�c���\bA_.(\Z\ e����J ���\11����Lj��Ȫ\Zy��\"�}����ݽ��ε�Ճe�\1fS5:�$�n�\19\Z���[��\vδ��\"�d��\ 2��F��(�\1f\10(\13Y��\ZQvL����GM���y!z\'G�ǾƷu(���%;<\0\0\0\0\0?\ 5�յ������������n�n�\n����m���3\"\"\"=�ؼ����\'\18�x��8x�-��\1fa��\16���ES������l13K�\12\7f\v�Yx%���rJ��rR�Y�5B$�E�=4k_��ć�&��N\Z_�����k�\1c��H��Q;wdW)%�/\13y}\'��)5\13���i\17�(��\11�[���xr�I�W�+�]}f,�\n��\13^G��,s���\13���J\'8ӫ�\13\ 4�zLKZ�%l����$�Y�(�:�\19��]��6��\0�㴒�Mʮ�%y�2=�ޟ�$��{�;�SؔI-��m�z�Ѹ�U��)\19h�c���,X�\18ۭ�ѹ���\9bC;ccg)�-TZS��BV�^S2%\19l��@ro�������\ 3W8\ 2&اi��;��\1c6�\19{{��\12IY�\\J6ڒ\"��\"J�|��w\"-�)�`t��J\19��K�q���:\1d�}�7\ 6�4��QoӕI��4��{u��\ 5�H�n�\18�0B\1c��a�G\1c�\'�w\e~�x�-���5\1e�:�\1d���\11�����@\0\0\0\0|�(�\\\7f����-e�k$\v\1cc�\' 4�W\"�+\16H�\ 3Sw��:�\19�%�25�Ȉ׶ܜ�>E�\e�{�殸�g\e]\1ehѣ\"3i�_0���M\13E�K�[�EmFI�    �tҦe�Ϩ�\12W\19�ۧڥ�Z�%.���/�k0���c\19�U��\\�J��r\v[GKU<bL\n�J��\11fx��5���̕�߈҅��\rDgeI䒳E*T��\"/���\7f���\0\0\18\7f����x=�~Ύ@iș\ f^z\bǗ�xL���g�t�\fmS��%0p%:˧����(7�T���zQ\ 4���H��o�\"\ 5V\e[��\7foٖ㻏�\\9���e��\Z1�;��5噭�66\v+\'�2:�j|��H��d���\10~�\19!     ����&��J�\v{�7T�֣W��_�\0���z����\0\0\0\0\15��������SG\f�M%�B\15�I�y�[�뽊G?t/\1cǘ���P����\12Zg�t��\15IC�\16��H�L��ـ��գ�\bí|�\10����CF,\1da�\ f��N\18W\b<��KSY��)�g��\ e��V��\7fv\14\11\ 6�JW.�\0\0\0\1e\1d�?�C�z��\ 3�[Z�גMFh�\17L��<�t��Z�c����Fdo\19\ 3\19=E�of�Q�JC\"�e�n����?\ e\1ca�h}(\ e����qlF��v�Q���훘#m�OV��[S,9�9\1fg=ȐQ��#��J�t�M_ø��+G\1c��]Ai�YL-V�ws�}Ga(�;�7v\bA\11&+����5��\1e���I��2��J�Եl�\11Чjg\nd��WK�C0�ނ��k�!�Nr��5b�K��Jj����9!��5\14I.Y2dq�\"J�_�Dr�\"����\e�Z�+�W$�[\\[��NǶ���}\f�3=���?H\0\0|�)�v\\M�r\16T��*1�m\ e�N�\17&I�Պ$����=�솣�����M�$t���;�5��4X֔C޲|�Wڍ��/no��3�NZQw35\19\1c�r�\12�+����d�JRDv�е�mO��F�\n\'�k~�|�K��1�\0\0\0\0\01����Z^��_��\7f/����\v\1c��\b�#�$ڈ���&�la�˓�Y���6\ e\19� �ޥ���Ri)&���t��;�jL��\14Y��$R��^ɿ\17\19�L�n\19څ�_�� \11�   6��r;���p��B��\r�#��)��� �)f�S�\"A\16]B�\e�$�IK��_�d\0\0�\7f\Z�u�?��\10\ 3]j����W�m6�6�L�U\Z[\11�������-�\1eޢ/}��\1diF!�-J_Y~�x�b�%\17p3>kF�f�����\ 4��J[�D�=��(��l\'�\0\0\0\0\0\0=\v����1Wή1�n\ZݪLV��,��\15�ګ��V0��^�`q-O�52df��Jy|\18�e9\r���O*\15\10\19\1f���d=�\09���.s�\18\Z�\0�&�V�� ��[u;�\vۺK�_\13Q(���d^����x��p���:�\b�L5\7f���\\+�幞\ 1�Y�{\7f�C����ۧ��@\0\0\0\0\0\0@\1f\15�R��:�\19X��R�\a��{�f鷺z��\Z���{����7\13�G�\ fx\0\re��K��)�Z\10�4.=���b�����Wf�\ 2yi=��l�������>��L��\19p��\0pt=����UrG���\'�����z�R\7f/��J�\0\0\0\0\0\0\"C�?\ZQ����\10�S��(���m�]q\13�6Hܷ=��[�zy��%�O�\'�\1e`1�@�BWaA�1#h�C�(��9��?M��Q�H��\"3-����\1c\7f��c�ѷ\b= D�ZW��lה\1c�m�L�IS�w�.��оʈ�2�\f��v�\0\0\0\0\0\0\a\ eu�hJ8��=�U�Ch<�^;����/�F\7f        ��鱴�zm�I\"\1d�\0\0\1e���޻���\0c�d5\1fC�ή\eҦ\19�5l��֋��-N��m�     R��~�w�B���߀\0\0\0\0\0\0��׎JO��\ZO;�\'�0�g\v���yn\1cwd��.��\19����\0\0\0\18�T��^G��\0]�\0?/.�2\0\0\0\0\0\0\0`T��V�*�h�:��mL�܌����\16\7f��\0\0\0\0\0\0\0\0\0\0\0\0\1f��',4,1,'','','',''),(8,3,0,'75859b10a3a57734','cde8bd4c269d017826b5c163d04134ae','2017-09-07 08:58:34','2017-09-07 08:58:34','','','Profile photos','person-175.jpg','image/jpeg',80,80,2697,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0P\0P\ 1\ 1\11\0��\0\1f\0\ 1\0\ 1\ 4\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\ 1    \n\v\ 2\ 4\a\ 3\ 5\ 6��\01\10\0\0\ 6\ 1\ 3\ 2\ 4\ 6\ 1\ 4\ 3\0\0\0\0\0\ 1\ 2\ 3\ 4\ 5\ 6\a\0\b\11   !\12\13\141\n\15\16\"QqA#���\173���\0\b\ 1\ 1\0\0?\0��M5A\10\ fq\0���<e��\17�~y\ f\1f��oު\ 2\ 3� ?��U�M4�T\11\ 2�\"<\0\7f?��~u�W]��N����-�-�BT����3EKŖ�.���\ eRI�8c\1d\'\1f\Z骖�fk�!��g\13[I�\17\16\15_:\15kƵ�J�u��B��7��\'vX3i�2j:�G���*�e�\0F��G\19S��ש\14�cGH8�Z�!]��n[\19�$4���I�vX\'  �v�a�BÒl1Q�\ f\f�\\���s�q�i����#�,Sg2�\0(fM]5�j��\f#��o/^���\17�^L<\0r\ 3���\1c\7f=��\ f>��4�M5\13�ݸt���=��X�\"��\13\99\ 3!D�p< ��\ 1_x�\1e�r��\a�Y������C���\ f����ê�T,Q�rd�其aɖ\1c��+z�\154��d2���:AY1\13.�Z�F�`\18H��k7>��C�b\ 3���M���r�I��U*UX\18z�n�\ 6\b�h\18\186\bF�CŰjR6g\1f\Z��\f�6@�I\14\11M4�\nP�)�\'��\f\1d���c-�^j�\15���e�\1e[��\16JE�t\0���l�A�5��*\10���ga\'\16��\1d2��א�\rjX��OR_��\7f�]�d\1c�s�8�\10�$+�\'\v۬�<m�1܇������G\ fOG��Td\19Y+s��\1e�-��䛷}\18;W��V��lC��U\ 1���b�Uȴ��)H����\11��\19e�!�\ 4\16/�\ 5��SX\ eA\1e���4�V��5���OJ��㚳W\ f�s\em�rP��\ns��\7fR���\b�ɦS\1dU�\r\ 1�H�1�:� \14D�k\ 1��eZ�]S�\12s\ 2�e��>L%h\15��Au��(VH���\ 6\15�VW&8\'�zr��      \na��p��p\1c~��o�\0\">�\ 2?�:�;�pMT.�c\1eר\b%\'g���>�xk\10��x���3\11���Ԫ*��j\16*sr�R�s&vm��a\13\r��00��n];�_�o��ow�[sŕ�s\'_��X��cՙ�7?�D���\13�}�\v��\19ݦ�k���/��d�\14\\7v�۸n�0U\ 5�X��Ȭ���RU#\1d5\137%9L%0   D@u�o\'l9\13��5�����Rs�1�Y2�3T<\18$oKD��~�.`W�z�$���_�\7f\'@�ꑄ�k\Zܐ�3��\ex���\7f,�3�1�f\1cWdaq�\19*�\ 5u�Zc\f���W,,\11��~�V\"N\12\15[.O=��Pt��*��\b�Ed��]D7@�˶G��ѱ�Bfc\n��uʹ\10�U\ 6\12V�쁍E��\"t��Z�g�)�\nj�r�\19ш�N\ 5\1d`���M�Q\1d��\ f����6�i��)K��\12x�øY�%t��SL���W�?�w_\n�!R�; )��ٴhz�I\13ؼR�@\n\1d�=��M5�[���\19\ e\12�n\ f?ܣ�x�\1c©1b�~c\1dE\fe\n�>\16\19�@.�,S��o\17\ 3\f��=��t٫t��r\16\12��������\f͎������ �r�$eB�t�6���*���$�q�:\1e+��$����.�&�7\")A���\1cf�]���KiyF�W�n6�/��u\17K�D<�}�Ӟ\15Bu�ah���\1e�+#Q��t��72���\13D\e*�Vm\e59�\19�E�S�N�C�V`)���;\n�V�V�e\ 3]�@ŠFѰ�\11ɢ�:9�dȃf�QM\14�!JB\0\a\7f\1e���j���\ ew�-�ۈ��oŷ\1cr�U�$p�\11[$3�q�\16m�1Sp��(,�� �ʒΘ$�����#�ۻ��@�=�t��\ 3\18\10�d젆Q�VO���X�7���>�;\rD�ȕ�\14���0uI�{\ 3,�IW���J5����        �pe9L_\10\18\1f�!���۸�~{~uϐ��\b\ 2?�\11�\0\Z�\7f\1dBk�WY��t��u \e]�8�w��h�.�6kk��HEUj2��dN%U�0�\rUMT�j�+LH `w\18���*\ 2\n\"�\a\11\\��0����g\ f\v\r\16Ѽ|dLTst�G��0h�M\190b�\14�3f�$�5l�H �i&B��馿!t��|�\ ez�@�U�\15\14Me`m��{4*�%���V.m��*(�\1c�C�\ 11<C�\10�y����\1e<�Գ��7|����\ 5\1e)�ܷ����2��I��\160\')5�\b\7f��i,F�!U�ץ��3L�گ\14����)�7�M�d���N���o\ 2]���B�7��qa*����AH���]�L���r�\171\1fS�dݣ$\1cOB�6���\'\15\17|�P��Ϸ\ 3\1f�Xom8��|@}J�\f�ζk��ȗk\14�3X�\e��\19\16m�1x\ 4����9X�\1f�f�c\ f$7\17��M4�V }��+�J��ض��\vWH\v�K*��$       y*���Q����1J��#��M\ 3\1c�P��H�`!C��\a�~�T��\e���\a��=���:���\0\18��}���ޟ�%�m�@�\15\7f\b\0(�\7f���Ɂ��\13���0�/�\18��#�J^\0&n�i���R\18\15��K1�s\b��\16D�ި9�$s\1e/�&����0�.�C�`0�b鮸5n\ eTxTR+�QA��\0��TA��(�GS�\11���92E\13\b\10˪%\0\15\f#��M4�]Qf�^�@QL]���\11LJ��l���� o\7f,ꢒ�\ fa2e��\0뵯��',5,1,'','','',''),(9,3,0,'75859b10a3a57734','cde8bd4c269d017826b5c163d04134ae','2017-09-07 08:58:34','2017-09-07 08:58:34','','','Profile photos','person-175.jpg','image/jpeg',48,48,1758,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\00\00\ 1\ 1\11\0��\0\e\0\0\ 2\ 3\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\b  \0\ 1\ 6\a\ 4\n��\0.\10\0\ 1\ 4\ 2\ 1\ 3\ 3\ 3\ 2\a\ 1\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0      \11\12\13\14\n\16!\151\"#$23AQa��\0\b\ 1\ 1\0\0?\0��곜c\19�s�\18ǜ�?�\18���x޽�8\a���|S�ۯ܏�R�\0�9�����\ 5�2U?�\ 6fZ%�i�ƅ�Y��rʹ\18D��BG4��Kc��\1dh���$��\Z9���i\15K^`�c�[��|\19\7f���P�5�x˨���e\19ϣ/{�Z\13��u:I\7fP�0��%�S�m���M�l�^+Zn�f�}�d��;JS\15\e$Ymxt9�Z�΅9�!��\ 4\1cC̶�/o�\13�u\13EpZ�ͫ�\bs|����VW�s\ 2���֩\16�+\ f[�Eɖ�Ke�[��}�He�ݗ\"Z(y\f��@ԒS�\ 5�w\a\1f��\ 5��N�)�q���\e��3�JM�\\]���  \b\b̭y����N�\ 5�\0ɚȥ֒a�ʈ���O`\1d�y��|\vҼ�&�-F�m\12f��+`<�\11q{\ 2�*En՘g\b���$��Y��`��P��#\ 6I%�;�<�z�+��<\e��#ۣ��g��dl9�\10n��&���\7fek�ٵ���-^R\18\13#�[$եH\r��      q*CJ�Co����{C��\v��aI��\17��v\1e:ome2£�u):���H�b���Вկ�2�[imS�\16\0�R�\ f�\\��c䥵�:j>�Zf\r3;��Æ�U��sن��\"���-�\12.�\ f9�J>tL\ 3~�\ e�H�,\12���\1c\e$�~�\1c\e�v��f��UFYV<k�\a����\85���d1�����\14��0d,\'����[��\12�\"�뮲�\14xu�w��q�Nl��%S\vA��\1d��%�e�\18��F\11(bFa?�I� \7f\b��.�c�\ e�2��V\ f\ru�%��\ f\a�~k�ozY\16���\10��D�\16���t�Q)G��r5���m��a�z2b�\ 5=4�\n��OC�LI�/�j\ 6��Z��$��֔j\1c����\\$�Uxh\19+d�\14��%f��\fs\'�\10��RL�x�0�_W���2����\ 4�5��&��WH=m��\16m��š�6�\ e��μ�\"^�k��\14Js4���h`Z\\�\'�Z\10��,a�e�� ��|�o���E�����Cٛ\Z��\e7Xj�B�8k���ä\e\14\f�겻�\Z��(\b���tz�\"\1dy\ 5�T�t�d|�9�I��\ 4,�d�\ 44X\'�k\b$3C)���E(w[|w�Z�y���+)V3���Ǯ\b��\11�\Zń��7�w\1f+��3�92�!�-Bݢ=�c�k��\0Z?�b��W�#9�X�c\ e\10��#\r\f(��0ð���\f0�Ze�[F0�4�hJ\eBq��       �S�c\18����;o�W�uK-*�\14\f�b�\ 11X��I\ e�q�s���J�\Z+�[$\bh\ 5�1\f��6�.�\vNR�㠓��b~���T�)�\1d+N����\ e8�h��N��A\ 6�)n+\11�`�\0שY�\19\19�c�1�`Ըԣ.�\ f�e��\ 5�d\14\18W�\10Sq��+ӟ�}\'F\ e�9����\1f��\18njc\1f\18�W����\7f\1e\7f\1f���\0γ\14��u\"�\15V�F\e��l��F1��PAd\18�c\1es���/����',6,1,'','','',''),(10,4,0,'75859b10a64380c7','97611ba91637997e24ea7ad58fb9cb2e','2017-09-07 08:59:16','2017-09-07 08:59:16','','','Profile photos','person-175.jpg','image/jpeg',175,175,5476,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0�\0�\ 1\ 1\11\0��\0\1e\0\ 1\0\ 2\ 3\0\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\n\v\ 4\b     \ 2\ 3\a\ 5\ 6��\0A\10\0\0\ 5\ 3\ 2\ 3\ 5\ 5\ 4\a\a\ 5\0\0\0\0\0\ 1\ 2\ 5\ 6\ 3\ 4\a\b\11        \12!\n\13\151A\14\16\"Q�2aq�\17#%3���$&5BR��\18Es����\0\b\ 1\ 1\0\0?\0��\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն����X\12g���p|L�sN��\1e�}�Y%ZR|�1(�J*I&+�r$0G��)%l�Z�,:��i�(��ϥ�)���J�����*hχ\18oSмI����$�\16Dj.T�\n1PȌ�4��?�{e���Ӧx�)ж\a}t�^x\\~\18�s��2�{���ml&\17��\0�T2#3��ږ_\17�،�ûU�Y�\15f�$���1.�`w��)rr�\ eǒ��$g�boqd�\Z7\"�i,�0g��#�}�G���!�\0\0\0\0\0\0\0\ 2*|z�B��\1c6�Zp�]�s\"�A�ڝ\r�E\7f\r��{�b�\1d�Z�HI��j��>Eq�E�\14˒S.:t�7\19�Vg�5\15�u;��Ys=�YFZ�Rk��}���<j��ʮHnl�Ifh���M6&\ 4\";M\15\13�D�O.����_��)Y\8e1�\r�X!M\nm��y�Kl�R\a�#�k�M&�^�\12o\13\19\ 2|M\11L}Ij���O��D>��OJ��\Z\1c\1c�m�\ 2\ e�i��v2��r�VӍB�l[�rd��D�;\13k�)^�2-gQ~\ 1\1cE\14SA�j�ƴ\1dS��<���\ f0\0\0\0\0\0\0\0\1cv�Sę��>�\'9��خ�\f�豆\ 1�8$��򌩵�\9c\11U\1c\a�Y)�O�&DH]6B�&�\ eKMeN�D�SL�8�d��#z��9�۔�g,�ܮ��G w�7GggU)F�]Es�i-��D\12Rd�{-��\1ce�|jw\14�K\vP���䗴[�<�PU�\ 4\ e&�Jw���iU4�L��\Zno5i)i��\18�ud�:d.-�n��\ f=9�tр��Z!�kj�/�Z��rL�׹S��d�]�Wg�\Z��M(R���%�#\15����F��\vʧJ޵ZT}��$�����\7f��|����7����u�ç(\'\1cI�]_���/\13\ 5�Yk1�S\ 5���Q��\"�x�<Q�e\'e��9$����9YQZ̏D��m�_�֖����n�;p{:=a�����c��^\19\14�1H���[\19\11J#;��u\'b\12�����C�NX��tהQ�;M7I�\13�ڔ+-ì�G��bƺ��\19M\v�S�nC&�s\19�UHˑ=J�W��O_�.�c�\0\0\0\0\0\ 2�>�f�\\r���Z\\kp�q\ 5Ҿ.oU�u���\ 5���Z�\ fn���)����X�Fd��5\19\1fQ\101e�c�@���J\13�{LX(�GԽ��3\19\\�[���a,|�M.�kQ�&_�,���R�\ZK��6>i#2Y*h@\ 3Wu+��\11��-.���q�\7f\'c)�Z�]X��\'f�I�Q��0�J�<�H\18�j�RC\1eZ$1��.�˟��4�?¿ �գ�\"t]�\ eN��&z}Ȩ�4\14\1f��\0*����AMq�%��%[1�PT�ɩ��Æ3�R��R��l14z�Y\"\ 2�d�\17�G�N����\vJː���m\'ʢS-BU5!j/�Iܭ���\121�/FQ\\�^��.h�]\14\13P0��ohϐY�)�^\Z)�T��\16U�G\17Q\11����,fJ��Gِ\0\0\0\0\0\14�q���d\ e-�B\1f\\*�u���D�Z��nǮ~�4\19��$�̏2�.��-m�ݯ�\em(ָ����m����WW���IoԺ������w2I\18��HX%�Lza�֞X��Z6�;\ 1�<��$���%\18jhvs2R�f���:>-DdJZ��)%\12\11��\0#[ڋѓN��Ve��M��|����<�\ 5qE������K>Yk�[\ZYN\f��\"ZyTGV\ZĢ5\12MGR�OO��&7���\v�;_��Ou��\1c[7���Q��?�0�Rv�Vg\13#۔��+���E�1\11\16�vl�\0\0\0\0\0����?�Ɯ^��0�R�lw���έ��lFݒRב�̋�\11rK\12�3=�2###�h��,�\1c�I�\ 6\ 5\197_�Cku齒笩Y\19��;���\ fa{`\0\0�\1e\'uXh����Y\'q�E��Ix��}�RÓ\ 2I\7f\ e_/_#�qG�OO��%�����3.\'�\\�m������>�t��2�7\f��\10�36(�FffJw_C4�4\11y\11\11Z*\0\0\0\0\0\ 2���\ 6�\\�1.�\19۷��C\1c���\ e6����yC\11��2t2$��\183�K���\e\e��\1f\ f�\\��\1d.�K�\r^\'\17�G���E��\19�);S/�ҟ����E��s\1e,��f/qB�5�q�C\"Ǯm̕gx�/���6l�5|*��Io�$����\11}X\0\ 4]�Uz�a��\f��\bjv�C0�)�8�.�op���cև6���\'R   (W�����J�\"�Sf>���UKS���*T�Φ�=72��?���[\vَ��\0��\10���u��&|�5�\7f\"�\19\1c-Uh�\fǭ\16\nV#�9\15Mԗ��;�H�$i5\"�̢�:��g&�\0\0\0\0\0\1c��\1f�ك����\13F��&7��<\15!�E4��/�R���5U*���\n*:�$�N�����$\ZҎ�l�����k/��  ��)=��9�&Q��eؽ��\r\ e>\12���\171\Z\17�T|�J�m��F��\15�J��n��w�i�N�o[/���8�����&�\f�q,���K\r5<���Gݢ\18ʥ����*T����\0/�<�|{9e�.���L�y-ؙ���\r\"ȳ\17.��Q�j�\1d\14[o��OB�g��&f)��e�+/�4�\\�Q�j�����Ѱ�~wh�c�8���ڤF\b�gT�ճ�G�[�M\')��?J\14�UDR)6v[�\"�3��\1c�$n��=�J��K�\'�D��q1�8��򄩴��7�(��U\1f����ueL�����t�v2ҤT�K�[o���|���\0\0\0\0\0\1e\1c���\0/�!3ڕ�\Z˘� �.����s.b����\17\13��U�~T��22T��<�)�<aI&��L�*Ҕ������\v�!�K�f� z���o��\e�݌�\0K���d�Z��gM�bw%%�A\15}�#�JZ\18��t�\a�莠p�&�pJ���y�\1dD2�>�����\1c�qv�s\'��\ZPH��GzjY\19��|�F�2�����?jj|�\0\b໩\nLK�c���\bA_.(\Z\ e����J ���\11����Lj��Ȫ\Zy��\"�}����ݽ��ε�Ճe�\1fS5:�$�n�\19\Z���[��\vδ��\"�d��\ 2��F��(�\1f\10(\13Y��\ZQvL����GM���y!z\'G�ǾƷu(���%;<\0\0\0\0\0?\ 5�յ������������n�n�\n����m���3\"\"\"=�ؼ����\'\18�x��8x�-��\1fa��\16���ES������l13K�\12\7f\v�Yx%���rJ��rR�Y�5B$�E�=4k_��ć�&��N\Z_�����k�\1c��H��Q;wdW)%�/\13y}\'��)5\13���i\17�(��\11�[���xr�I�W�+�]}f,�\n��\13^G��,s���\13���J\'8ӫ�\13\ 4�zLKZ�%l����$�Y�(�:�\19��]��6��\0�㴒�Mʮ�%y�2=�ޟ�$��{�;�SؔI-��m�z�Ѹ�U��)\19h�c���,X�\18ۭ�ѹ���\9bC;ccg)�-TZS��BV�^S2%\19l��@ro�������\ 3W8\ 2&اi��;��\1c6�\19{{��\12IY�\\J6ڒ\"��\"J�|��w\"-�)�`t��J\19��K�q���:\1d�}�7\ 6�4��QoӕI��4��{u��\ 5�H�n�\18�0B\1c��a�G\1c�\'�w\e~�x�-���5\1e�:�\1d���\11�����@\0\0\0\0|�(�\\\7f����-e�k$\v\1cc�\' 4�W\"�+\16H�\ 3Sw��:�\19�%�25�Ȉ׶ܜ�>E�\e�{�殸�g\e]\1ehѣ\"3i�_0���M\13E�K�[�EmFI�    �tҦe�Ϩ�\12W\19�ۧڥ�Z�%.���/�k0���c\19�U��\\�J��r\v[GKU<bL\n�J��\11fx��5���̕�߈҅��\rDgeI䒳E*T��\"/���\7f���\0\0\18\7f����x=�~Ύ@iș\ f^z\bǗ�xL���g�t�\fmS��%0p%:˧����(7�T���zQ\ 4���H��o�\"\ 5V\e[��\7foٖ㻏�\\9���e��\Z1�;��5噭�66\v+\'�2:�j|��H��d���\10~�\19!     ����&��J�\v{�7T�֣W��_�\0���z����\0\0\0\0\15��������SG\f�M%�B\15�I�y�[�뽊G?t/\1cǘ���P����\12Zg�t��\15IC�\16��H�L��ـ��գ�\bí|�\10����CF,\1da�\ f��N\18W\b<��KSY��)�g��\ e��V��\7fv\14\11\ 6�JW.�\0\0\0\1e\1d�?�C�z��\ 3�[Z�גMFh�\17L��<�t��Z�c����Fdo\19\ 3\19=E�of�Q�JC\"�e�n����?\ e\1ca�h}(\ e����qlF��v�Q���훘#m�OV��[S,9�9\1fg=ȐQ��#��J�t�M_ø��+G\1c��]Ai�YL-V�ws�}Ga(�;�7v\bA\11&+����5��\1e���I��2��J�Եl�\11Чjg\nd��WK�C0�ނ��k�!�Nr��5b�K��Jj����9!��5\14I.Y2dq�\"J�_�Dr�\"����\e�Z�+�W$�[\\[��NǶ���}\f�3=���?H\0\0|�)�v\\M�r\16T��*1�m\ e�N�\17&I�Պ$����=�솣�����M�$t���;�5��4X֔C޲|�Wڍ��/no��3�NZQw35\19\1c�r�\12�+����d�JRDv�е�mO��F�\n\'�k~�|�K��1�\0\0\0\0\01����Z^��_��\7f/����\v\1c��\b�#�$ڈ���&�la�˓�Y���6\ e\19� �ޥ���Ri)&���t��;�jL��\14Y��$R��^ɿ\17\19�L�n\19څ�_�� \11�   6��r;���p��B��\r�#��)��� �)f�S�\"A\16]B�\e�$�IK��_�d\0\0�\7f\Z�u�?��\10\ 3]j����W�m6�6�L�U\Z[\11�������-�\1eޢ/}��\1diF!�-J_Y~�x�b�%\17p3>kF�f�����\ 4��J[�D�=��(��l\'�\0\0\0\0\0\0=\v����1Wή1�n\ZݪLV��,��\15�ګ��V0��^�`q-O�52df��Jy|\18�e9\r���O*\15\10\19\1f���d=�\09���.s�\18\Z�\0�&�V�� ��[u;�\vۺK�_\13Q(���d^����x��p���:�\b�L5\7f���\\+�幞\ 1�Y�{\7f�C����ۧ��@\0\0\0\0\0\0@\1f\15�R��:�\19X��R�\a��{�f鷺z��\Z���{����7\13�G�\ fx\0\re��K��)�Z\10�4.=���b�����Wf�\ 2yi=��l�������>��L��\19p��\0pt=����UrG���\'�����z�R\7f/��J�\0\0\0\0\0\0\"C�?\ZQ����\10�S��(���m�]q\13�6Hܷ=��[�zy��%�O�\'�\1e`1�@�BWaA�1#h�C�(��9��?M��Q�H��\"3-����\1c\7f��c�ѷ\b= D�ZW��lה\1c�m�L�IS�w�.��оʈ�2�\f��v�\0\0\0\0\0\0\a\ eu�hJ8��=�U�Ch<�^;����/�F\7f        ��鱴�zm�I\"\1d�\0\0\1e���޻���\0c�d5\1fC�ή\eҦ\19�5l��֋��-N��m�     R��~�w�B���߀\0\0\0\0\0\0��׎JO��\ZO;�\'�0�g\v���yn\1cwd��.��\19����\0\0\0\18�T��^G��\0]�\0?/.�2\0\0\0\0\0\0\0`T��V�*�h�:��mL�܌����\16\7f��\0\0\0\0\0\0\0\0\0\0\0\0\1f��',4,1,'','','',''),(11,4,0,'75859b10a64380c7','97611ba91637997e24ea7ad58fb9cb2e','2017-09-07 08:59:16','2017-09-07 08:59:16','','','Profile photos','person-175.jpg','image/jpeg',80,80,2697,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0P\0P\ 1\ 1\11\0��\0\1f\0\ 1\0\ 1\ 4\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\ 1   \n\v\ 2\ 4\a\ 3\ 5\ 6��\01\10\0\0\ 6\ 1\ 3\ 2\ 4\ 6\ 1\ 4\ 3\0\0\0\0\0\ 1\ 2\ 3\ 4\ 5\ 6\a\0\b\11   !\12\13\141\n\15\16\"QqA#���\173���\0\b\ 1\ 1\0\0?\0��M5A\10\ fq\0���<e��\17�~y\ f\1f��oު\ 2\ 3� ?��U�M4�T\11\ 2�\"<\0\7f?��~u�W]��N����-�-�BT����3EKŖ�.���\ eRI�8c\1d\'\1f\Z骖�fk�!��g\13[I�\17\16\15_:\15kƵ�J�u��B��7��\'vX3i�2j:�G���*�e�\0F��G\19S��ש\14�cGH8�Z�!]��n[\19�$4���I�vX\'  �v�a�BÒl1Q�\ f\f�\\���s�q�i����#�,Sg2�\0(fM]5�j��\f#��o/^���\17�^L<\0r\ 3���\1c\7f=��\ f>��4�M5\13�ݸt���=��X�\"��\13\99\ 3!D�p< ��\ 1_x�\1e�r��\a�Y������C���\ f����ê�T,Q�rd�其aɖ\1c��+z�\154��d2���:AY1\13.�Z�F�`\18H��k7>��C�b\ 3���M���r�I��U*UX\18z�n�\ 6\b�h\18\186\bF�CŰjR6g\1f\Z��\f�6@�I\14\11M4�\nP�)�\'��\f\1d���c-�^j�\15���e�\1e[��\16JE�t\0���l�A�5��*\10���ga\'\16��\1d2��א�\rjX��OR_��\7f�]�d\1c�s�8�\10�$+�\'\v۬�<m�1܇������G\ fOG��Td\19Y+s��\1e�-��䛷}\18;W��V��lC��U\ 1���b�Uȴ��)H����\11��\19e�!�\ 4\16/�\ 5��SX\ eA\1e���4�V��5���OJ��㚳W\ f�s\em�rP��\ns��\7fR���\b�ɦS\1dU�\r\ 1�H�1�:� \14D�k\ 1��eZ�]S�\12s\ 2�e��>L%h\15��Au��(VH���\ 6\15�VW&8\'�zr��      \na��p��p\1c~��o�\0\">�\ 2?�:�;�pMT.�c\1eר\b%\'g���>�xk\10��x���3\11���Ԫ*��j\16*sr�R�s&vm��a\13\r��00��n];�_�o��ow�[sŕ�s\'_��X��cՙ�7?�D���\13�}�\v��\19ݦ�k���/��d�\14\\7v�۸n�0U\ 5�X��Ȭ���RU#\1d5\137%9L%0   D@u�o\'l9\13��5�����Rs�1�Y2�3T<\18$oKD��~�.`W�z�$���_�\7f\'@�ꑄ�k\Zܐ�3��\ex���\7f,�3�1�f\1cWdaq�\19*�\ 5u�Zc\f���W,,\11��~�V\"N\12\15[.O=��Pt��*��\b�Ed��]D7@�˶G��ѱ�Bfc\n��uʹ\10�U\ 6\12V�쁍E��\"t��Z�g�)�\nj�r�\19ш�N\ 5\1d`���M�Q\1d��\ f����6�i��)K��\12x�øY�%t��SL���W�?�w_\n�!R�; )��ٴhz�I\13ؼR�@\n\1d�=��M5�[���\19\ e\12�n\ f?ܣ�x�\1c©1b�~c\1dE\fe\n�>\16\19�@.�,S��o\17\ 3\f��=��t٫t��r\16\12��������\f͎������ �r�$eB�t�6���*���$�q�:\1e+��$����.�&�7\")A���\1cf�]���KiyF�W�n6�/��u\17K�D<�}�Ӟ\15Bu�ah���\1e�+#Q��t��72���\13D\e*�Vm\e59�\19�E�S�N�C�V`)���;\n�V�V�e\ 3]�@ŠFѰ�\11ɢ�:9�dȃf�QM\14�!JB\0\a\7f\1e���j���\ ew�-�ۈ��oŷ\1cr�U�$p�\11[$3�q�\16m�1Sp��(,�� �ʒΘ$�����#�ۻ��@�=�t��\ 3\18\10�d젆Q�VO���X�7���>�;\rD�ȕ�\14���0uI�{\ 3,�IW���J5����        �pe9L_\10\18\1f�!���۸�~{~uϐ��\b\ 2?�\11�\0\Z�\7f\1dBk�WY��t��u \e]�8�w��h�.�6kk��HEUj2��dN%U�0�\rUMT�j�+LH `w\18���*\ 2\n\"�\a\11\\��0����g\ f\v\r\16Ѽ|dLTst�G��0h�M\190b�\14�3f�$�5l�H �i&B��馿!t��|�\ ez�@�U�\15\14Me`m��{4*�%���V.m��*(�\1c�C�\ 11<C�\10�y����\1e<�Գ��7|����\ 5\1e)�ܷ����2��I��\160\')5�\b\7f��i,F�!U�ץ��3L�گ\14����)�7�M�d���N���o\ 2]���B�7��qa*����AH���]�L���r�\171\1fS�dݣ$\1cOB�6���\'\15\17|�P��Ϸ\ 3\1f�Xom8��|@}J�\f�ζk��ȗk\14�3X�\e��\19\16m�1x\ 4����9X�\1f�f�c\ f$7\17��M4�V }��+�J��ض��\vWH\v�K*��$       y*���Q����1J��#��M\ 3\1c�P��H�`!C��\a�~�T��\e���\a��=���:���\0\18��}���ޟ�%�m�@�\15\7f\b\0(�\7f���Ɂ��\13���0�/�\18��#�J^\0&n�i���R\18\15��K1�s\b��\16D�ި9�$s\1e/�&����0�.�C�`0�b鮸5n\ eTxTR+�QA��\0��TA��(�GS�\11���92E\13\b\10˪%\0\15\f#��M4�]Qf�^�@QL]���\11LJ��l���� o\7f,ꢒ�\ fa2e��\0뵯��',5,1,'','','',''),(12,4,0,'75859b10a64380c7','97611ba91637997e24ea7ad58fb9cb2e','2017-09-07 08:59:16','2017-09-07 08:59:16','','','Profile photos','person-175.jpg','image/jpeg',48,48,1758,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\00\00\ 1\ 1\11\0��\0\e\0\0\ 2\ 3\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\b \0\ 1\ 6\a\ 4\n��\0.\10\0\ 1\ 4\ 2\ 1\ 3\ 3\ 3\ 2\a\ 1\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0      \11\12\13\14\n\16!\151\"#$23AQa��\0\b\ 1\ 1\0\0?\0��곜c\19�s�\18ǜ�?�\18���x޽�8\a���|S�ۯ܏�R�\0�9�����\ 5�2U?�\ 6fZ%�i�ƅ�Y��rʹ\18D��BG4��Kc��\1dh���$��\Z9���i\15K^`�c�[��|\19\7f���P�5�x˨���e\19ϣ/{�Z\13��u:I\7fP�0��%�S�m���M�l�^+Zn�f�}�d��;JS\15\e$Ymxt9�Z�΅9�!��\ 4\1cC̶�/o�\13�u\13EpZ�ͫ�\bs|����VW�s\ 2���֩\16�+\ f[�Eɖ�Ke�[��}�He�ݗ\"Z(y\f��@ԒS�\ 5�w\a\1f��\ 5��N�)�q���\e��3�JM�\\]���  \b\b̭y����N�\ 5�\0ɚȥ֒a�ʈ���O`\1d�y��|\vҼ�&�-F�m\12f��+`<�\11q{\ 2�*En՘g\b���$��Y��`��P��#\ 6I%�;�<�z�+��<\e��#ۣ��g��dl9�\10n��&���\7fek�ٵ���-^R\18\13#�[$եH\r��      q*CJ�Co����{C��\v��aI��\17��v\1e:ome2£�u):���H�b���Вկ�2�[imS�\16\0�R�\ f�\\��c䥵�:j>�Zf\r3;��Æ�U��sن��\"���-�\12.�\ f9�J>tL\ 3~�\ e�H�,\12���\1c\e$�~�\1c\e�v��f��UFYV<k�\a����\85���d1�����\14��0d,\'����[��\12�\"�뮲�\14xu�w��q�Nl��%S\vA��\1d��%�e�\18��F\11(bFa?�I� \7f\b��.�c�\ e�2��V\ f\ru�%��\ f\a�~k�ozY\16���\10��D�\16���t�Q)G��r5���m��a�z2b�\ 5=4�\n��OC�LI�/�j\ 6��Z��$��֔j\1c����\\$�Uxh\19+d�\14��%f��\fs\'�\10��RL�x�0�_W���2����\ 4�5��&��WH=m��\16m��š�6�\ e��μ�\"^�k��\14Js4���h`Z\\�\'�Z\10��,a�e�� ��|�o���E�����Cٛ\Z��\e7Xj�B�8k���ä\e\14\f�겻�\Z��(\b���tz�\"\1dy\ 5�T�t�d|�9�I��\ 4,�d�\ 44X\'�k\b$3C)���E(w[|w�Z�y���+)V3���Ǯ\b��\11�\Zń��7�w\1f+��3�92�!�-Bݢ=�c�k��\0Z?�b��W�#9�X�c\ e\10��#\r\f(��0ð���\f0�Ze�[F0�4�hJ\eBq��       �S�c\18����;o�W�uK-*�\14\f�b�\ 11X��I\ e�q�s���J�\Z+�[$\bh\ 5�1\f��6�.�\vNR�㠓��b~���T�)�\1d+N����\ e8�h��N��A\ 6�)n+\11�`�\0שY�\19\19�c�1�`Ըԣ.�\ f�e��\ 5�d\14\18W�\10Sq��+ӟ�}\'F\ e�9����\1f��\18njc\1f\18�W����\7f\1e\7f\1f���\0γ\14��u\"�\15V�F\e��l��F1��PAd\18�c\1es���/����',6,1,'','','',''),(13,5,0,'75859b10a89b26b7','1e6e86cff989b84650c44bf8f408250a','2017-09-07 08:59:53','2017-09-07 08:59:53','','','Profile photos','person-175.jpg','image/jpeg',175,175,5476,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0�\0�\ 1\ 1\11\0��\0\1e\0\ 1\0\ 2\ 3\0\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\n\v\ 4\b     \ 2\ 3\a\ 5\ 6��\0A\10\0\0\ 5\ 3\ 2\ 3\ 5\ 5\ 4\a\a\ 5\0\0\0\0\0\ 1\ 2\ 5\ 6\ 3\ 4\a\b\11        \12!\n\13\151A\14\16\"Q�2aq�\17#%3���$&5BR��\18Es����\0\b\ 1\ 1\0\0?\0��\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն����X\12g���p|L�sN��\1e�}�Y%ZR|�1(�J*I&+�r$0G��)%l�Z�,:��i�(��ϥ�)���J�����*hχ\18oSмI����$�\16Dj.T�\n1PȌ�4��?�{e���Ӧx�)ж\a}t�^x\\~\18�s��2�{���ml&\17��\0�T2#3��ږ_\17�،�ûU�Y�\15f�$���1.�`w��)rr�\ eǒ��$g�boqd�\Z7\"�i,�0g��#�}�G���!�\0\0\0\0\0\0\0\ 2*|z�B��\1c6�Zp�]�s\"�A�ڝ\r�E\7f\r��{�b�\1d�Z�HI��j��>Eq�E�\14˒S.:t�7\19�Vg�5\15�u;��Ys=�YFZ�Rk��}���<j��ʮHnl�Ifh���M6&\ 4\";M\15\13�D�O.����_��)Y\8e1�\r�X!M\nm��y�Kl�R\a�#�k�M&�^�\12o\13\19\ 2|M\11L}Ij���O��D>��OJ��\Z\1c\1c�m�\ 2\ e�i��v2��r�VӍB�l[�rd��D�;\13k�)^�2-gQ~\ 1\1cE\14SA�j�ƴ\1dS��<���\ f0\0\0\0\0\0\0\0\1cv�Sę��>�\'9��خ�\f�豆\ 1�8$��򌩵�\9c\11U\1c\a�Y)�O�&DH]6B�&�\ eKMeN�D�SL�8�d��#z��9�۔�g,�ܮ��G w�7GggU)F�]Es�i-��D\12Rd�{-��\1ce�|jw\14�K\vP���䗴[�<�PU�\ 4\ e&�Jw���iU4�L��\Zno5i)i��\18�ud�:d.-�n��\ f=9�tр��Z!�kj�/�Z��rL�׹S��d�]�Wg�\Z��M(R���%�#\15����F��\vʧJ޵ZT}��$�����\7f��|����7����u�ç(\'\1cI�]_���/\13\ 5�Yk1�S\ 5���Q��\"�x�<Q�e\'e��9$����9YQZ̏D��m�_�֖����n�;p{:=a�����c��^\19\14�1H���[\19\11J#;��u\'b\12�����C�NX��tהQ�;M7I�\13�ڔ+-ì�G��bƺ��\19M\v�S�nC&�s\19�UHˑ=J�W��O_�.�c�\0\0\0\0\0\ 2�>�f�\\r���Z\\kp�q\ 5Ҿ.oU�u���\ 5���Z�\ fn���)����X�Fd��5\19\1fQ\101e�c�@���J\13�{LX(�GԽ��3\19\\�[���a,|�M.�kQ�&_�,���R�\ZK��6>i#2Y*h@\ 3Wu+��\11��-.���q�\7f\'c)�Z�]X��\'f�I�Q��0�J�<�H\18�j�RC\1eZ$1��.�˟��4�?¿ �գ�\"t]�\ eN��&z}Ȩ�4\14\1f��\0*����AMq�%��%[1�PT�ɩ��Æ3�R��R��l14z�Y\"\ 2�d�\17�G�N����\vJː���m\'ʢS-BU5!j/�Iܭ���\121�/FQ\\�^��.h�]\14\13P0��ohϐY�)�^\Z)�T��\16U�G\17Q\11����,fJ��Gِ\0\0\0\0\0\14�q���d\ e-�B\1f\\*�u���D�Z��nǮ~�4\19��$�̏2�.��-m�ݯ�\em(ָ����m����WW���IoԺ������w2I\18��HX%�Lza�֞X��Z6�;\ 1�<��$���%\18jhvs2R�f���:>-DdJZ��)%\12\11��\0#[ڋѓN��Ve��M��|����<�\ 5qE������K>Yk�[\ZYN\f��\"ZyTGV\ZĢ5\12MGR�OO��&7���\v�;_��Ou��\1c[7���Q��?�0�Rv�Vg\13#۔��+���E�1\11\16�vl�\0\0\0\0\0����?�Ɯ^��0�R�lw���έ��lFݒRב�̋�\11rK\12�3=�2###�h��,�\1c�I�\ 6\ 5\197_�Cku齒笩Y\19��;���\ fa{`\0\0�\1e\'uXh����Y\'q�E��Ix��}�RÓ\ 2I\7f\ e_/_#�qG�OO��%�����3.\'�\\�m������>�t��2�7\f��\10�36(�FffJw_C4�4\11y\11\11Z*\0\0\0\0\0\ 2���\ 6�\\�1.�\19۷��C\1c���\ e6����yC\11��2t2$��\183�K���\e\e��\1f\ f�\\��\1d.�K�\r^\'\17�G���E��\19�);S/�ҟ����E��s\1e,��f/qB�5�q�C\"Ǯm̕gx�/���6l�5|*��Io�$����\11}X\0\ 4]�Uz�a��\f��\bjv�C0�)�8�.�op���cև6���\'R   (W�����J�\"�Sf>���UKS���*T�Φ�=72��?���[\vَ��\0��\10���u��&|�5�\7f\"�\19\1c-Uh�\fǭ\16\nV#�9\15Mԗ��;�H�$i5\"�̢�:��g&�\0\0\0\0\0\1c��\1f�ك����\13F��&7��<\15!�E4��/�R���5U*���\n*:�$�N�����$\ZҎ�l�����k/��  ��)=��9�&Q��eؽ��\r\ e>\12���\171\Z\17�T|�J�m��F��\15�J��n��w�i�N�o[/���8�����&�\f�q,���K\r5<���Gݢ\18ʥ����*T����\0/�<�|{9e�.���L�y-ؙ���\r\"ȳ\17.��Q�j�\1d\14[o��OB�g��&f)��e�+/�4�\\�Q�j�����Ѱ�~wh�c�8���ڤF\b�gT�ճ�G�[�M\')��?J\14�UDR)6v[�\"�3��\1c�$n��=�J��K�\'�D��q1�8��򄩴��7�(��U\1f����ueL�����t�v2ҤT�K�[o���|���\0\0\0\0\0\1e\1c���\0/�!3ڕ�\Z˘� �.����s.b����\17\13��U�~T��22T��<�)�<aI&��L�*Ҕ������\v�!�K�f� z���o��\e�݌�\0K���d�Z��gM�bw%%�A\15}�#�JZ\18��t�\a�莠p�&�pJ���y�\1dD2�>�����\1c�qv�s\'��\ZPH��GzjY\19��|�F�2�����?jj|�\0\b໩\nLK�c���\bA_.(\Z\ e����J ���\11����Lj��Ȫ\Zy��\"�}����ݽ��ε�Ճe�\1fS5:�$�n�\19\Z���[��\vδ��\"�d��\ 2��F��(�\1f\10(\13Y��\ZQvL����GM���y!z\'G�ǾƷu(���%;<\0\0\0\0\0?\ 5�յ������������n�n�\n����m���3\"\"\"=�ؼ����\'\18�x��8x�-��\1fa��\16���ES������l13K�\12\7f\v�Yx%���rJ��rR�Y�5B$�E�=4k_��ć�&��N\Z_�����k�\1c��H��Q;wdW)%�/\13y}\'��)5\13���i\17�(��\11�[���xr�I�W�+�]}f,�\n��\13^G��,s���\13���J\'8ӫ�\13\ 4�zLKZ�%l����$�Y�(�:�\19��]��6��\0�㴒�Mʮ�%y�2=�ޟ�$��{�;�SؔI-��m�z�Ѹ�U��)\19h�c���,X�\18ۭ�ѹ���\9bC;ccg)�-TZS��BV�^S2%\19l��@ro�������\ 3W8\ 2&اi��;��\1c6�\19{{��\12IY�\\J6ڒ\"��\"J�|��w\"-�)�`t��J\19��K�q���:\1d�}�7\ 6�4��QoӕI��4��{u��\ 5�H�n�\18�0B\1c��a�G\1c�\'�w\e~�x�-���5\1e�:�\1d���\11�����@\0\0\0\0|�(�\\\7f����-e�k$\v\1cc�\' 4�W\"�+\16H�\ 3Sw��:�\19�%�25�Ȉ׶ܜ�>E�\e�{�殸�g\e]\1ehѣ\"3i�_0���M\13E�K�[�EmFI�    �tҦe�Ϩ�\12W\19�ۧڥ�Z�%.���/�k0���c\19�U��\\�J��r\v[GKU<bL\n�J��\11fx��5���̕�߈҅��\rDgeI䒳E*T��\"/���\7f���\0\0\18\7f����x=�~Ύ@iș\ f^z\bǗ�xL���g�t�\fmS��%0p%:˧����(7�T���zQ\ 4���H��o�\"\ 5V\e[��\7foٖ㻏�\\9���e��\Z1�;��5噭�66\v+\'�2:�j|��H��d���\10~�\19!     ����&��J�\v{�7T�֣W��_�\0���z����\0\0\0\0\15��������SG\f�M%�B\15�I�y�[�뽊G?t/\1cǘ���P����\12Zg�t��\15IC�\16��H�L��ـ��գ�\bí|�\10����CF,\1da�\ f��N\18W\b<��KSY��)�g��\ e��V��\7fv\14\11\ 6�JW.�\0\0\0\1e\1d�?�C�z��\ 3�[Z�גMFh�\17L��<�t��Z�c����Fdo\19\ 3\19=E�of�Q�JC\"�e�n����?\ e\1ca�h}(\ e����qlF��v�Q���훘#m�OV��[S,9�9\1fg=ȐQ��#��J�t�M_ø��+G\1c��]Ai�YL-V�ws�}Ga(�;�7v\bA\11&+����5��\1e���I��2��J�Եl�\11Чjg\nd��WK�C0�ނ��k�!�Nr��5b�K��Jj����9!��5\14I.Y2dq�\"J�_�Dr�\"����\e�Z�+�W$�[\\[��NǶ���}\f�3=���?H\0\0|�)�v\\M�r\16T��*1�m\ e�N�\17&I�Պ$����=�솣�����M�$t���;�5��4X֔C޲|�Wڍ��/no��3�NZQw35\19\1c�r�\12�+����d�JRDv�е�mO��F�\n\'�k~�|�K��1�\0\0\0\0\01����Z^��_��\7f/����\v\1c��\b�#�$ڈ���&�la�˓�Y���6\ e\19� �ޥ���Ri)&���t��;�jL��\14Y��$R��^ɿ\17\19�L�n\19څ�_�� \11�   6��r;���p��B��\r�#��)��� �)f�S�\"A\16]B�\e�$�IK��_�d\0\0�\7f\Z�u�?��\10\ 3]j����W�m6�6�L�U\Z[\11�������-�\1eޢ/}��\1diF!�-J_Y~�x�b�%\17p3>kF�f�����\ 4��J[�D�=��(��l\'�\0\0\0\0\0\0=\v����1Wή1�n\ZݪLV��,��\15�ګ��V0��^�`q-O�52df��Jy|\18�e9\r���O*\15\10\19\1f���d=�\09���.s�\18\Z�\0�&�V�� ��[u;�\vۺK�_\13Q(���d^����x��p���:�\b�L5\7f���\\+�幞\ 1�Y�{\7f�C����ۧ��@\0\0\0\0\0\0@\1f\15�R��:�\19X��R�\a��{�f鷺z��\Z���{����7\13�G�\ fx\0\re��K��)�Z\10�4.=���b�����Wf�\ 2yi=��l�������>��L��\19p��\0pt=����UrG���\'�����z�R\7f/��J�\0\0\0\0\0\0\"C�?\ZQ����\10�S��(���m�]q\13�6Hܷ=��[�zy��%�O�\'�\1e`1�@�BWaA�1#h�C�(��9��?M��Q�H��\"3-����\1c\7f��c�ѷ\b= D�ZW��lה\1c�m�L�IS�w�.��оʈ�2�\f��v�\0\0\0\0\0\0\a\ eu�hJ8��=�U�Ch<�^;����/�F\7f        ��鱴�zm�I\"\1d�\0\0\1e���޻���\0c�d5\1fC�ή\eҦ\19�5l��֋��-N��m�     R��~�w�B���߀\0\0\0\0\0\0��׎JO��\ZO;�\'�0�g\v���yn\1cwd��.��\19����\0\0\0\18�T��^G��\0]�\0?/.�2\0\0\0\0\0\0\0`T��V�*�h�:��mL�܌����\16\7f��\0\0\0\0\0\0\0\0\0\0\0\0\1f��',4,1,'','','',''),(14,5,0,'75859b10a89b26b7','1e6e86cff989b84650c44bf8f408250a','2017-09-07 08:59:53','2017-09-07 08:59:53','','','Profile photos','person-175.jpg','image/jpeg',80,80,2697,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0P\0P\ 1\ 1\11\0��\0\1f\0\ 1\0\ 1\ 4\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\ 1   \n\v\ 2\ 4\a\ 3\ 5\ 6��\01\10\0\0\ 6\ 1\ 3\ 2\ 4\ 6\ 1\ 4\ 3\0\0\0\0\0\ 1\ 2\ 3\ 4\ 5\ 6\a\0\b\11   !\12\13\141\n\15\16\"QqA#���\173���\0\b\ 1\ 1\0\0?\0��M5A\10\ fq\0���<e��\17�~y\ f\1f��oު\ 2\ 3� ?��U�M4�T\11\ 2�\"<\0\7f?��~u�W]��N����-�-�BT����3EKŖ�.���\ eRI�8c\1d\'\1f\Z骖�fk�!��g\13[I�\17\16\15_:\15kƵ�J�u��B��7��\'vX3i�2j:�G���*�e�\0F��G\19S��ש\14�cGH8�Z�!]��n[\19�$4���I�vX\'  �v�a�BÒl1Q�\ f\f�\\���s�q�i����#�,Sg2�\0(fM]5�j��\f#��o/^���\17�^L<\0r\ 3���\1c\7f=��\ f>��4�M5\13�ݸt���=��X�\"��\13\99\ 3!D�p< ��\ 1_x�\1e�r��\a�Y������C���\ f����ê�T,Q�rd�其aɖ\1c��+z�\154��d2���:AY1\13.�Z�F�`\18H��k7>��C�b\ 3���M���r�I��U*UX\18z�n�\ 6\b�h\18\186\bF�CŰjR6g\1f\Z��\f�6@�I\14\11M4�\nP�)�\'��\f\1d���c-�^j�\15���e�\1e[��\16JE�t\0���l�A�5��*\10���ga\'\16��\1d2��א�\rjX��OR_��\7f�]�d\1c�s�8�\10�$+�\'\v۬�<m�1܇������G\ fOG��Td\19Y+s��\1e�-��䛷}\18;W��V��lC��U\ 1���b�Uȴ��)H����\11��\19e�!�\ 4\16/�\ 5��SX\ eA\1e���4�V��5���OJ��㚳W\ f�s\em�rP��\ns��\7fR���\b�ɦS\1dU�\r\ 1�H�1�:� \14D�k\ 1��eZ�]S�\12s\ 2�e��>L%h\15��Au��(VH���\ 6\15�VW&8\'�zr��      \na��p��p\1c~��o�\0\">�\ 2?�:�;�pMT.�c\1eר\b%\'g���>�xk\10��x���3\11���Ԫ*��j\16*sr�R�s&vm��a\13\r��00��n];�_�o��ow�[sŕ�s\'_��X��cՙ�7?�D���\13�}�\v��\19ݦ�k���/��d�\14\\7v�۸n�0U\ 5�X��Ȭ���RU#\1d5\137%9L%0   D@u�o\'l9\13��5�����Rs�1�Y2�3T<\18$oKD��~�.`W�z�$���_�\7f\'@�ꑄ�k\Zܐ�3��\ex���\7f,�3�1�f\1cWdaq�\19*�\ 5u�Zc\f���W,,\11��~�V\"N\12\15[.O=��Pt��*��\b�Ed��]D7@�˶G��ѱ�Bfc\n��uʹ\10�U\ 6\12V�쁍E��\"t��Z�g�)�\nj�r�\19ш�N\ 5\1d`���M�Q\1d��\ f����6�i��)K��\12x�øY�%t��SL���W�?�w_\n�!R�; )��ٴhz�I\13ؼR�@\n\1d�=��M5�[���\19\ e\12�n\ f?ܣ�x�\1c©1b�~c\1dE\fe\n�>\16\19�@.�,S��o\17\ 3\f��=��t٫t��r\16\12��������\f͎������ �r�$eB�t�6���*���$�q�:\1e+��$����.�&�7\")A���\1cf�]���KiyF�W�n6�/��u\17K�D<�}�Ӟ\15Bu�ah���\1e�+#Q��t��72���\13D\e*�Vm\e59�\19�E�S�N�C�V`)���;\n�V�V�e\ 3]�@ŠFѰ�\11ɢ�:9�dȃf�QM\14�!JB\0\a\7f\1e���j���\ ew�-�ۈ��oŷ\1cr�U�$p�\11[$3�q�\16m�1Sp��(,�� �ʒΘ$�����#�ۻ��@�=�t��\ 3\18\10�d젆Q�VO���X�7���>�;\rD�ȕ�\14���0uI�{\ 3,�IW���J5����        �pe9L_\10\18\1f�!���۸�~{~uϐ��\b\ 2?�\11�\0\Z�\7f\1dBk�WY��t��u \e]�8�w��h�.�6kk��HEUj2��dN%U�0�\rUMT�j�+LH `w\18���*\ 2\n\"�\a\11\\��0����g\ f\v\r\16Ѽ|dLTst�G��0h�M\190b�\14�3f�$�5l�H �i&B��馿!t��|�\ ez�@�U�\15\14Me`m��{4*�%���V.m��*(�\1c�C�\ 11<C�\10�y����\1e<�Գ��7|����\ 5\1e)�ܷ����2��I��\160\')5�\b\7f��i,F�!U�ץ��3L�گ\14����)�7�M�d���N���o\ 2]���B�7��qa*����AH���]�L���r�\171\1fS�dݣ$\1cOB�6���\'\15\17|�P��Ϸ\ 3\1f�Xom8��|@}J�\f�ζk��ȗk\14�3X�\e��\19\16m�1x\ 4����9X�\1f�f�c\ f$7\17��M4�V }��+�J��ض��\vWH\v�K*��$       y*���Q����1J��#��M\ 3\1c�P��H�`!C��\a�~�T��\e���\a��=���:���\0\18��}���ޟ�%�m�@�\15\7f\b\0(�\7f���Ɂ��\13���0�/�\18��#�J^\0&n�i���R\18\15��K1�s\b��\16D�ި9�$s\1e/�&����0�.�C�`0�b鮸5n\ eTxTR+�QA��\0��TA��(�GS�\11���92E\13\b\10˪%\0\15\f#��M4�]Qf�^�@QL]���\11LJ��l���� o\7f,ꢒ�\ fa2e��\0뵯��',5,1,'','','',''),(15,5,0,'75859b10a89b26b7','1e6e86cff989b84650c44bf8f408250a','2017-09-07 08:59:53','2017-09-07 08:59:53','','','Profile photos','person-175.jpg','image/jpeg',48,48,1758,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\00\00\ 1\ 1\11\0��\0\e\0\0\ 2\ 3\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\b \0\ 1\ 6\a\ 4\n��\0.\10\0\ 1\ 4\ 2\ 1\ 3\ 3\ 3\ 2\a\ 1\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0      \11\12\13\14\n\16!\151\"#$23AQa��\0\b\ 1\ 1\0\0?\0��곜c\19�s�\18ǜ�?�\18���x޽�8\a���|S�ۯ܏�R�\0�9�����\ 5�2U?�\ 6fZ%�i�ƅ�Y��rʹ\18D��BG4��Kc��\1dh���$��\Z9���i\15K^`�c�[��|\19\7f���P�5�x˨���e\19ϣ/{�Z\13��u:I\7fP�0��%�S�m���M�l�^+Zn�f�}�d��;JS\15\e$Ymxt9�Z�΅9�!��\ 4\1cC̶�/o�\13�u\13EpZ�ͫ�\bs|����VW�s\ 2���֩\16�+\ f[�Eɖ�Ke�[��}�He�ݗ\"Z(y\f��@ԒS�\ 5�w\a\1f��\ 5��N�)�q���\e��3�JM�\\]���  \b\b̭y����N�\ 5�\0ɚȥ֒a�ʈ���O`\1d�y��|\vҼ�&�-F�m\12f��+`<�\11q{\ 2�*En՘g\b���$��Y��`��P��#\ 6I%�;�<�z�+��<\e��#ۣ��g��dl9�\10n��&���\7fek�ٵ���-^R\18\13#�[$եH\r��      q*CJ�Co����{C��\v��aI��\17��v\1e:ome2£�u):���H�b���Вկ�2�[imS�\16\0�R�\ f�\\��c䥵�:j>�Zf\r3;��Æ�U��sن��\"���-�\12.�\ f9�J>tL\ 3~�\ e�H�,\12���\1c\e$�~�\1c\e�v��f��UFYV<k�\a����\85���d1�����\14��0d,\'����[��\12�\"�뮲�\14xu�w��q�Nl��%S\vA��\1d��%�e�\18��F\11(bFa?�I� \7f\b��.�c�\ e�2��V\ f\ru�%��\ f\a�~k�ozY\16���\10��D�\16���t�Q)G��r5���m��a�z2b�\ 5=4�\n��OC�LI�/�j\ 6��Z��$��֔j\1c����\\$�Uxh\19+d�\14��%f��\fs\'�\10��RL�x�0�_W���2����\ 4�5��&��WH=m��\16m��š�6�\ e��μ�\"^�k��\14Js4���h`Z\\�\'�Z\10��,a�e�� ��|�o���E�����Cٛ\Z��\e7Xj�B�8k���ä\e\14\f�겻�\Z��(\b���tz�\"\1dy\ 5�T�t�d|�9�I��\ 4,�d�\ 44X\'�k\b$3C)���E(w[|w�Z�y���+)V3���Ǯ\b��\11�\Zń��7�w\1f+��3�92�!�-Bݢ=�c�k��\0Z?�b��W�#9�X�c\ e\10��#\r\f(��0ð���\f0�Ze�[F0�4�hJ\eBq��       �S�c\18����;o�W�uK-*�\14\f�b�\ 11X��I\ e�q�s���J�\Z+�[$\bh\ 5�1\f��6�.�\vNR�㠓��b~���T�)�\1d+N����\ e8�h��N��A\ 6�)n+\11�`�\0שY�\19\19�c�1�`Ըԣ.�\ f�e��\ 5�d\14\18W�\10Sq��+ӟ�}\'F\ e�9����\1f��\18njc\1f\18�W����\7f\1e\7f\1f���\0γ\14��u\"�\15V�F\e��l��F1��PAd\18�c\1es���/����',6,1,'','','',''),(16,6,0,'75859b10ab07f500','240eef737fb1a7e5d0bf2425f9f4030e','2017-09-07 09:00:32','2017-09-07 09:00:32','','','Profile photos','person-175.jpg','image/jpeg',175,175,5476,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0�\0�\ 1\ 1\11\0��\0\1e\0\ 1\0\ 2\ 3\0\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\n\v\ 4\b     \ 2\ 3\a\ 5\ 6��\0A\10\0\0\ 5\ 3\ 2\ 3\ 5\ 5\ 4\a\a\ 5\0\0\0\0\0\ 1\ 2\ 5\ 6\ 3\ 4\a\b\11        \12!\n\13\151A\14\16\"Q�2aq�\17#%3���$&5BR��\18Es����\0\b\ 1\ 1\0\0?\0��\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն����X\12g���p|L�sN��\1e�}�Y%ZR|�1(�J*I&+�r$0G��)%l�Z�,:��i�(��ϥ�)���J�����*hχ\18oSмI����$�\16Dj.T�\n1PȌ�4��?�{e���Ӧx�)ж\a}t�^x\\~\18�s��2�{���ml&\17��\0�T2#3��ږ_\17�،�ûU�Y�\15f�$���1.�`w��)rr�\ eǒ��$g�boqd�\Z7\"�i,�0g��#�}�G���!�\0\0\0\0\0\0\0\ 2*|z�B��\1c6�Zp�]�s\"�A�ڝ\r�E\7f\r��{�b�\1d�Z�HI��j��>Eq�E�\14˒S.:t�7\19�Vg�5\15�u;��Ys=�YFZ�Rk��}���<j��ʮHnl�Ifh���M6&\ 4\";M\15\13�D�O.����_��)Y\8e1�\r�X!M\nm��y�Kl�R\a�#�k�M&�^�\12o\13\19\ 2|M\11L}Ij���O��D>��OJ��\Z\1c\1c�m�\ 2\ e�i��v2��r�VӍB�l[�rd��D�;\13k�)^�2-gQ~\ 1\1cE\14SA�j�ƴ\1dS��<���\ f0\0\0\0\0\0\0\0\1cv�Sę��>�\'9��خ�\f�豆\ 1�8$��򌩵�\9c\11U\1c\a�Y)�O�&DH]6B�&�\ eKMeN�D�SL�8�d��#z��9�۔�g,�ܮ��G w�7GggU)F�]Es�i-��D\12Rd�{-��\1ce�|jw\14�K\vP���䗴[�<�PU�\ 4\ e&�Jw���iU4�L��\Zno5i)i��\18�ud�:d.-�n��\ f=9�tр��Z!�kj�/�Z��rL�׹S��d�]�Wg�\Z��M(R���%�#\15����F��\vʧJ޵ZT}��$�����\7f��|����7����u�ç(\'\1cI�]_���/\13\ 5�Yk1�S\ 5���Q��\"�x�<Q�e\'e��9$����9YQZ̏D��m�_�֖����n�;p{:=a�����c��^\19\14�1H���[\19\11J#;��u\'b\12�����C�NX��tהQ�;M7I�\13�ڔ+-ì�G��bƺ��\19M\v�S�nC&�s\19�UHˑ=J�W��O_�.�c�\0\0\0\0\0\ 2�>�f�\\r���Z\\kp�q\ 5Ҿ.oU�u���\ 5���Z�\ fn���)����X�Fd��5\19\1fQ\101e�c�@���J\13�{LX(�GԽ��3\19\\�[���a,|�M.�kQ�&_�,���R�\ZK��6>i#2Y*h@\ 3Wu+��\11��-.���q�\7f\'c)�Z�]X��\'f�I�Q��0�J�<�H\18�j�RC\1eZ$1��.�˟��4�?¿ �գ�\"t]�\ eN��&z}Ȩ�4\14\1f��\0*����AMq�%��%[1�PT�ɩ��Æ3�R��R��l14z�Y\"\ 2�d�\17�G�N����\vJː���m\'ʢS-BU5!j/�Iܭ���\121�/FQ\\�^��.h�]\14\13P0��ohϐY�)�^\Z)�T��\16U�G\17Q\11����,fJ��Gِ\0\0\0\0\0\14�q���d\ e-�B\1f\\*�u���D�Z��nǮ~�4\19��$�̏2�.��-m�ݯ�\em(ָ����m����WW���IoԺ������w2I\18��HX%�Lza�֞X��Z6�;\ 1�<��$���%\18jhvs2R�f���:>-DdJZ��)%\12\11��\0#[ڋѓN��Ve��M��|����<�\ 5qE������K>Yk�[\ZYN\f��\"ZyTGV\ZĢ5\12MGR�OO��&7���\v�;_��Ou��\1c[7���Q��?�0�Rv�Vg\13#۔��+���E�1\11\16�vl�\0\0\0\0\0����?�Ɯ^��0�R�lw���έ��lFݒRב�̋�\11rK\12�3=�2###�h��,�\1c�I�\ 6\ 5\197_�Cku齒笩Y\19��;���\ fa{`\0\0�\1e\'uXh����Y\'q�E��Ix��}�RÓ\ 2I\7f\ e_/_#�qG�OO��%�����3.\'�\\�m������>�t��2�7\f��\10�36(�FffJw_C4�4\11y\11\11Z*\0\0\0\0\0\ 2���\ 6�\\�1.�\19۷��C\1c���\ e6����yC\11��2t2$��\183�K���\e\e��\1f\ f�\\��\1d.�K�\r^\'\17�G���E��\19�);S/�ҟ����E��s\1e,��f/qB�5�q�C\"Ǯm̕gx�/���6l�5|*��Io�$����\11}X\0\ 4]�Uz�a��\f��\bjv�C0�)�8�.�op���cև6���\'R   (W�����J�\"�Sf>���UKS���*T�Φ�=72��?���[\vَ��\0��\10���u��&|�5�\7f\"�\19\1c-Uh�\fǭ\16\nV#�9\15Mԗ��;�H�$i5\"�̢�:��g&�\0\0\0\0\0\1c��\1f�ك����\13F��&7��<\15!�E4��/�R���5U*���\n*:�$�N�����$\ZҎ�l�����k/��  ��)=��9�&Q��eؽ��\r\ e>\12���\171\Z\17�T|�J�m��F��\15�J��n��w�i�N�o[/���8�����&�\f�q,���K\r5<���Gݢ\18ʥ����*T����\0/�<�|{9e�.���L�y-ؙ���\r\"ȳ\17.��Q�j�\1d\14[o��OB�g��&f)��e�+/�4�\\�Q�j�����Ѱ�~wh�c�8���ڤF\b�gT�ճ�G�[�M\')��?J\14�UDR)6v[�\"�3��\1c�$n��=�J��K�\'�D��q1�8��򄩴��7�(��U\1f����ueL�����t�v2ҤT�K�[o���|���\0\0\0\0\0\1e\1c���\0/�!3ڕ�\Z˘� �.����s.b����\17\13��U�~T��22T��<�)�<aI&��L�*Ҕ������\v�!�K�f� z���o��\e�݌�\0K���d�Z��gM�bw%%�A\15}�#�JZ\18��t�\a�莠p�&�pJ���y�\1dD2�>�����\1c�qv�s\'��\ZPH��GzjY\19��|�F�2�����?jj|�\0\b໩\nLK�c���\bA_.(\Z\ e����J ���\11����Lj��Ȫ\Zy��\"�}����ݽ��ε�Ճe�\1fS5:�$�n�\19\Z���[��\vδ��\"�d��\ 2��F��(�\1f\10(\13Y��\ZQvL����GM���y!z\'G�ǾƷu(���%;<\0\0\0\0\0?\ 5�յ������������n�n�\n����m���3\"\"\"=�ؼ����\'\18�x��8x�-��\1fa��\16���ES������l13K�\12\7f\v�Yx%���rJ��rR�Y�5B$�E�=4k_��ć�&��N\Z_�����k�\1c��H��Q;wdW)%�/\13y}\'��)5\13���i\17�(��\11�[���xr�I�W�+�]}f,�\n��\13^G��,s���\13���J\'8ӫ�\13\ 4�zLKZ�%l����$�Y�(�:�\19��]��6��\0�㴒�Mʮ�%y�2=�ޟ�$��{�;�SؔI-��m�z�Ѹ�U��)\19h�c���,X�\18ۭ�ѹ���\9bC;ccg)�-TZS��BV�^S2%\19l��@ro�������\ 3W8\ 2&اi��;��\1c6�\19{{��\12IY�\\J6ڒ\"��\"J�|��w\"-�)�`t��J\19��K�q���:\1d�}�7\ 6�4��QoӕI��4��{u��\ 5�H�n�\18�0B\1c��a�G\1c�\'�w\e~�x�-���5\1e�:�\1d���\11�����@\0\0\0\0|�(�\\\7f����-e�k$\v\1cc�\' 4�W\"�+\16H�\ 3Sw��:�\19�%�25�Ȉ׶ܜ�>E�\e�{�殸�g\e]\1ehѣ\"3i�_0���M\13E�K�[�EmFI�    �tҦe�Ϩ�\12W\19�ۧڥ�Z�%.���/�k0���c\19�U��\\�J��r\v[GKU<bL\n�J��\11fx��5���̕�߈҅��\rDgeI䒳E*T��\"/���\7f���\0\0\18\7f����x=�~Ύ@iș\ f^z\bǗ�xL���g�t�\fmS��%0p%:˧����(7�T���zQ\ 4���H��o�\"\ 5V\e[��\7foٖ㻏�\\9���e��\Z1�;��5噭�66\v+\'�2:�j|��H��d���\10~�\19!     ����&��J�\v{�7T�֣W��_�\0���z����\0\0\0\0\15��������SG\f�M%�B\15�I�y�[�뽊G?t/\1cǘ���P����\12Zg�t��\15IC�\16��H�L��ـ��գ�\bí|�\10����CF,\1da�\ f��N\18W\b<��KSY��)�g��\ e��V��\7fv\14\11\ 6�JW.�\0\0\0\1e\1d�?�C�z��\ 3�[Z�גMFh�\17L��<�t��Z�c����Fdo\19\ 3\19=E�of�Q�JC\"�e�n����?\ e\1ca�h}(\ e����qlF��v�Q���훘#m�OV��[S,9�9\1fg=ȐQ��#��J�t�M_ø��+G\1c��]Ai�YL-V�ws�}Ga(�;�7v\bA\11&+����5��\1e���I��2��J�Եl�\11Чjg\nd��WK�C0�ނ��k�!�Nr��5b�K��Jj����9!��5\14I.Y2dq�\"J�_�Dr�\"����\e�Z�+�W$�[\\[��NǶ���}\f�3=���?H\0\0|�)�v\\M�r\16T��*1�m\ e�N�\17&I�Պ$����=�솣�����M�$t���;�5��4X֔C޲|�Wڍ��/no��3�NZQw35\19\1c�r�\12�+����d�JRDv�е�mO��F�\n\'�k~�|�K��1�\0\0\0\0\01����Z^��_��\7f/����\v\1c��\b�#�$ڈ���&�la�˓�Y���6\ e\19� �ޥ���Ri)&���t��;�jL��\14Y��$R��^ɿ\17\19�L�n\19څ�_�� \11�   6��r;���p��B��\r�#��)��� �)f�S�\"A\16]B�\e�$�IK��_�d\0\0�\7f\Z�u�?��\10\ 3]j����W�m6�6�L�U\Z[\11�������-�\1eޢ/}��\1diF!�-J_Y~�x�b�%\17p3>kF�f�����\ 4��J[�D�=��(��l\'�\0\0\0\0\0\0=\v����1Wή1�n\ZݪLV��,��\15�ګ��V0��^�`q-O�52df��Jy|\18�e9\r���O*\15\10\19\1f���d=�\09���.s�\18\Z�\0�&�V�� ��[u;�\vۺK�_\13Q(���d^����x��p���:�\b�L5\7f���\\+�幞\ 1�Y�{\7f�C����ۧ��@\0\0\0\0\0\0@\1f\15�R��:�\19X��R�\a��{�f鷺z��\Z���{����7\13�G�\ fx\0\re��K��)�Z\10�4.=���b�����Wf�\ 2yi=��l�������>��L��\19p��\0pt=����UrG���\'�����z�R\7f/��J�\0\0\0\0\0\0\"C�?\ZQ����\10�S��(���m�]q\13�6Hܷ=��[�zy��%�O�\'�\1e`1�@�BWaA�1#h�C�(��9��?M��Q�H��\"3-����\1c\7f��c�ѷ\b= D�ZW��lה\1c�m�L�IS�w�.��оʈ�2�\f��v�\0\0\0\0\0\0\a\ eu�hJ8��=�U�Ch<�^;����/�F\7f        ��鱴�zm�I\"\1d�\0\0\1e���޻���\0c�d5\1fC�ή\eҦ\19�5l��֋��-N��m�     R��~�w�B���߀\0\0\0\0\0\0��׎JO��\ZO;�\'�0�g\v���yn\1cwd��.��\19����\0\0\0\18�T��^G��\0]�\0?/.�2\0\0\0\0\0\0\0`T��V�*�h�:��mL�܌����\16\7f��\0\0\0\0\0\0\0\0\0\0\0\0\1f��',4,1,'','','',''),(17,6,0,'75859b10ab07f500','240eef737fb1a7e5d0bf2425f9f4030e','2017-09-07 09:00:32','2017-09-07 09:00:32','','','Profile photos','person-175.jpg','image/jpeg',80,80,2697,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0P\0P\ 1\ 1\11\0��\0\1f\0\ 1\0\ 1\ 4\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\ 1   \n\v\ 2\ 4\a\ 3\ 5\ 6��\01\10\0\0\ 6\ 1\ 3\ 2\ 4\ 6\ 1\ 4\ 3\0\0\0\0\0\ 1\ 2\ 3\ 4\ 5\ 6\a\0\b\11   !\12\13\141\n\15\16\"QqA#���\173���\0\b\ 1\ 1\0\0?\0��M5A\10\ fq\0���<e��\17�~y\ f\1f��oު\ 2\ 3� ?��U�M4�T\11\ 2�\"<\0\7f?��~u�W]��N����-�-�BT����3EKŖ�.���\ eRI�8c\1d\'\1f\Z骖�fk�!��g\13[I�\17\16\15_:\15kƵ�J�u��B��7��\'vX3i�2j:�G���*�e�\0F��G\19S��ש\14�cGH8�Z�!]��n[\19�$4���I�vX\'  �v�a�BÒl1Q�\ f\f�\\���s�q�i����#�,Sg2�\0(fM]5�j��\f#��o/^���\17�^L<\0r\ 3���\1c\7f=��\ f>��4�M5\13�ݸt���=��X�\"��\13\99\ 3!D�p< ��\ 1_x�\1e�r��\a�Y������C���\ f����ê�T,Q�rd�其aɖ\1c��+z�\154��d2���:AY1\13.�Z�F�`\18H��k7>��C�b\ 3���M���r�I��U*UX\18z�n�\ 6\b�h\18\186\bF�CŰjR6g\1f\Z��\f�6@�I\14\11M4�\nP�)�\'��\f\1d���c-�^j�\15���e�\1e[��\16JE�t\0���l�A�5��*\10���ga\'\16��\1d2��א�\rjX��OR_��\7f�]�d\1c�s�8�\10�$+�\'\v۬�<m�1܇������G\ fOG��Td\19Y+s��\1e�-��䛷}\18;W��V��lC��U\ 1���b�Uȴ��)H����\11��\19e�!�\ 4\16/�\ 5��SX\ eA\1e���4�V��5���OJ��㚳W\ f�s\em�rP��\ns��\7fR���\b�ɦS\1dU�\r\ 1�H�1�:� \14D�k\ 1��eZ�]S�\12s\ 2�e��>L%h\15��Au��(VH���\ 6\15�VW&8\'�zr��      \na��p��p\1c~��o�\0\">�\ 2?�:�;�pMT.�c\1eר\b%\'g���>�xk\10��x���3\11���Ԫ*��j\16*sr�R�s&vm��a\13\r��00��n];�_�o��ow�[sŕ�s\'_��X��cՙ�7?�D���\13�}�\v��\19ݦ�k���/��d�\14\\7v�۸n�0U\ 5�X��Ȭ���RU#\1d5\137%9L%0   D@u�o\'l9\13��5�����Rs�1�Y2�3T<\18$oKD��~�.`W�z�$���_�\7f\'@�ꑄ�k\Zܐ�3��\ex���\7f,�3�1�f\1cWdaq�\19*�\ 5u�Zc\f���W,,\11��~�V\"N\12\15[.O=��Pt��*��\b�Ed��]D7@�˶G��ѱ�Bfc\n��uʹ\10�U\ 6\12V�쁍E��\"t��Z�g�)�\nj�r�\19ш�N\ 5\1d`���M�Q\1d��\ f����6�i��)K��\12x�øY�%t��SL���W�?�w_\n�!R�; )��ٴhz�I\13ؼR�@\n\1d�=��M5�[���\19\ e\12�n\ f?ܣ�x�\1c©1b�~c\1dE\fe\n�>\16\19�@.�,S��o\17\ 3\f��=��t٫t��r\16\12��������\f͎������ �r�$eB�t�6���*���$�q�:\1e+��$����.�&�7\")A���\1cf�]���KiyF�W�n6�/��u\17K�D<�}�Ӟ\15Bu�ah���\1e�+#Q��t��72���\13D\e*�Vm\e59�\19�E�S�N�C�V`)���;\n�V�V�e\ 3]�@ŠFѰ�\11ɢ�:9�dȃf�QM\14�!JB\0\a\7f\1e���j���\ ew�-�ۈ��oŷ\1cr�U�$p�\11[$3�q�\16m�1Sp��(,�� �ʒΘ$�����#�ۻ��@�=�t��\ 3\18\10�d젆Q�VO���X�7���>�;\rD�ȕ�\14���0uI�{\ 3,�IW���J5����        �pe9L_\10\18\1f�!���۸�~{~uϐ��\b\ 2?�\11�\0\Z�\7f\1dBk�WY��t��u \e]�8�w��h�.�6kk��HEUj2��dN%U�0�\rUMT�j�+LH `w\18���*\ 2\n\"�\a\11\\��0����g\ f\v\r\16Ѽ|dLTst�G��0h�M\190b�\14�3f�$�5l�H �i&B��馿!t��|�\ ez�@�U�\15\14Me`m��{4*�%���V.m��*(�\1c�C�\ 11<C�\10�y����\1e<�Գ��7|����\ 5\1e)�ܷ����2��I��\160\')5�\b\7f��i,F�!U�ץ��3L�گ\14����)�7�M�d���N���o\ 2]���B�7��qa*����AH���]�L���r�\171\1fS�dݣ$\1cOB�6���\'\15\17|�P��Ϸ\ 3\1f�Xom8��|@}J�\f�ζk��ȗk\14�3X�\e��\19\16m�1x\ 4����9X�\1f�f�c\ f$7\17��M4�V }��+�J��ض��\vWH\v�K*��$       y*���Q����1J��#��M\ 3\1c�P��H�`!C��\a�~�T��\e���\a��=���:���\0\18��}���ޟ�%�m�@�\15\7f\b\0(�\7f���Ɂ��\13���0�/�\18��#�J^\0&n�i���R\18\15��K1�s\b��\16D�ި9�$s\1e/�&����0�.�C�`0�b鮸5n\ eTxTR+�QA��\0��TA��(�GS�\11���92E\13\b\10˪%\0\15\f#��M4�]Qf�^�@QL]���\11LJ��l���� o\7f,ꢒ�\ fa2e��\0뵯��',5,1,'','','',''),(18,6,0,'75859b10ab07f500','240eef737fb1a7e5d0bf2425f9f4030e','2017-09-07 09:00:32','2017-09-07 09:00:32','','','Profile photos','person-175.jpg','image/jpeg',48,48,1758,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\00\00\ 1\ 1\11\0��\0\e\0\0\ 2\ 3\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\b \0\ 1\ 6\a\ 4\n��\0.\10\0\ 1\ 4\ 2\ 1\ 3\ 3\ 3\ 2\a\ 1\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0      \11\12\13\14\n\16!\151\"#$23AQa��\0\b\ 1\ 1\0\0?\0��곜c\19�s�\18ǜ�?�\18���x޽�8\a���|S�ۯ܏�R�\0�9�����\ 5�2U?�\ 6fZ%�i�ƅ�Y��rʹ\18D��BG4��Kc��\1dh���$��\Z9���i\15K^`�c�[��|\19\7f���P�5�x˨���e\19ϣ/{�Z\13��u:I\7fP�0��%�S�m���M�l�^+Zn�f�}�d��;JS\15\e$Ymxt9�Z�΅9�!��\ 4\1cC̶�/o�\13�u\13EpZ�ͫ�\bs|����VW�s\ 2���֩\16�+\ f[�Eɖ�Ke�[��}�He�ݗ\"Z(y\f��@ԒS�\ 5�w\a\1f��\ 5��N�)�q���\e��3�JM�\\]���  \b\b̭y����N�\ 5�\0ɚȥ֒a�ʈ���O`\1d�y��|\vҼ�&�-F�m\12f��+`<�\11q{\ 2�*En՘g\b���$��Y��`��P��#\ 6I%�;�<�z�+��<\e��#ۣ��g��dl9�\10n��&���\7fek�ٵ���-^R\18\13#�[$եH\r��      q*CJ�Co����{C��\v��aI��\17��v\1e:ome2£�u):���H�b���Вկ�2�[imS�\16\0�R�\ f�\\��c䥵�:j>�Zf\r3;��Æ�U��sن��\"���-�\12.�\ f9�J>tL\ 3~�\ e�H�,\12���\1c\e$�~�\1c\e�v��f��UFYV<k�\a����\85���d1�����\14��0d,\'����[��\12�\"�뮲�\14xu�w��q�Nl��%S\vA��\1d��%�e�\18��F\11(bFa?�I� \7f\b��.�c�\ e�2��V\ f\ru�%��\ f\a�~k�ozY\16���\10��D�\16���t�Q)G��r5���m��a�z2b�\ 5=4�\n��OC�LI�/�j\ 6��Z��$��֔j\1c����\\$�Uxh\19+d�\14��%f��\fs\'�\10��RL�x�0�_W���2����\ 4�5��&��WH=m��\16m��š�6�\ e��μ�\"^�k��\14Js4���h`Z\\�\'�Z\10��,a�e�� ��|�o���E�����Cٛ\Z��\e7Xj�B�8k���ä\e\14\f�겻�\Z��(\b���tz�\"\1dy\ 5�T�t�d|�9�I��\ 4,�d�\ 44X\'�k\b$3C)���E(w[|w�Z�y���+)V3���Ǯ\b��\11�\Zń��7�w\1f+��3�92�!�-Bݢ=�c�k��\0Z?�b��W�#9�X�c\ e\10��#\r\f(��0ð���\f0�Ze�[F0�4�hJ\eBq��       �S�c\18����;o�W�uK-*�\14\f�b�\ 11X��I\ e�q�s���J�\Z+�[$\bh\ 5�1\f��6�.�\vNR�㠓��b~���T�)�\1d+N����\ e8�h��N��A\ 6�)n+\11�`�\0שY�\19\19�c�1�`Ըԣ.�\ f�e��\ 5�d\14\18W�\10Sq��+ӟ�}\'F\ e�9����\1f��\18njc\1f\18�W����\7f\1e\7f\1f���\0γ\14��u\"�\15V�F\e��l��F1��PAd\18�c\1es���/����',6,1,'','','',''),(19,3,7,'75859b10b87ebc39','18a7495723879503dac64b352e245508','2017-09-07 09:19:08','2017-09-07 09:19:08','','','Contact Photos','4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575','image/jpeg',175,175,5493,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0�\0�\ 1\ 1\11\0��\0\1e\0\ 1\0\ 2\ 3\0\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\n\v\ 4\b       \ 2\ 3\a\ 5\ 6��\0B\10\0\0\ 5\ 3\ 2\ 3\ 5\ 6\ 2\ 5\v\ 5\0\0\0\0\0\ 1\ 2\ 5\ 6\ 3\ 4\a\b\11        \12!\n\13\151A\14\16\"Qa�q�\17%23�\18#$&5BR����Es�����\0\b\ 1\ 1\0\0?\0��\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն����X\Z\'���p|L�sN��\1e�}�Y%ZR|�\11(�J*I&+�rJ\18#�yI)%l�Z�,:��i�(��ϥ�)���J�����*hχ\18o�мI����$�\16Dj-� (�C\"�cI(s���_�L�:g��\v`w�I\ 5����9�s.w�Y���a\7f���C\"3:I��e�~��g,�\1dڮ�Ϩ�6�&�t\ 1�t�\ 3�/iK��xv<�v   #=�\13{�$�ѹ\16�Idу=��#�}�G���!�\0\0\0\0\0\0\0\ 2*|z�B��\1c6�Zp�]�s\"�A�ڝ\r�E\7f\r��{�b�\1d�Z�HI��j��>Eq�E�\14˒S.:t�7\19�Vg�5\15�u;��Ys=�YFZ�Rk��}����j��ʮHnl�Ifh���M6&\ 4\";M\15\13�DD�]��¿S\1cR��\1cc�\eh�B�\14�{��t��Ƥ\ f\16G��V�Mʽ4$�&2\ 4��\"����%���{̈}9$����489hۆ\ 4\1d��    @�e��崭�\Z��ط<��m�(v&�Ne{�ȵ\1dE�\ 4q\14QM\ 6I��\Z�uO�h���D<�\0\0\0\0\0\0\0qۍG\12fn\19\Z\18��\7fb��R���\18\ 69~�2w�\12��o\nstMT�x\1e=d��>��H��l�\16MT\1c���:�\ f!M2��a��L��c��/�Ri��Cr���\1c����\1d��T�\Z�u\15Υ$�F�\10IN��춆�q�5��S�,-B��c�^�op�}AW�\108�Y)�c?��T��2F\18i��դkI��$b�Փ�鐸�A�\e�\\<��\ 1�F\ 2��h�ŭ�ܿIk�\17)�3\17^�N�ٓ�wu]��k�U4�J�\17��8�W�*�F�7�`^U:V��ң�\15I%�\1c̷?��|����C{�Oh�[�:r�qğ���  ����0\\���\Ze0\\�ޅ\Z��.���\1f�RvZ�\13�NOI\n#��\15���O\fv���-ik�\1d\ eF\a���\1c\ e�o�;�E�I�\14���ձ�\14�5�\Z�Rv!,�\1e�\\4;����MyE\1e�3��t�a9��B��:̌�[�X�T���h_\"��r\194k��*�F\\��U:��M�z�\0�u#�\0�C�\0\0\0\0\0\ 2�>�f�\1cr���Z\\kp�q\ 5Ҿ.oU�u������q-S\a�CJK��PSǬf�2JJ��G�D\fYm���+>!҄�^�\16\n\'��/{}\f�W7\16��-\18K\1f;�K���kI��\v(�;T�F��\r��H̖J�\10\0��J�s\ 4j�\vK��\0��m\1f���p֫WV\'�\"Iٹ\12jTlx�;ҤO,R\ 6\15��Ԑǖ�\fedK����:�8���<)5h�\17y Ó�w        ��r*-�\ 50��\7f�����Bf��J&  u:fIV�r�\15:rjh.p�甴���9�\fM\1e��H���>���듲pg�BҲ4\1d:{-��RT�P�MHZ��Rw+|�)�D�qKєW2W��e�\10���j\ 6\1c�O{F|��aM)xh��\1c�ʴH��-�IF�\163捩Gِ\0\0\0\0\0\14�q���d\ e-�B\1f\\*�u���D�Z��nǮ~�4\19��gfG�y�N��-m�ݯ�\em(ָ����m����WW���IoԺ������w2I\18��HX%�Lza�֞X��Y��;\ 1�$�D�Q{}\12�54;9�)k3S��\1d\1f\16�2%-|Ĕ��\b��\0\11��E�ɧT|+2�B��B�H�U�y���������K>Yk�[\ZYN\f��\"ZyTGV\ZĢ5\12MGR�OO��&7���\v�;_��Ou��\1c[7���O��?�0�Rv�Vg\13#۔��+���E�1\16�[\11ٲ\0\0\0\0\0\ 2��;X��\Zqz�\ 4�qJ����2c:�#��\evIK^Fk4�B/�X���﹑\19\19\1e�E4�eh�M8�8(�:�\0<b\e[�M�=eMB3�\0    �\7f��\a���\0\0h�\13��4xrkꬓ��\"�Ƥ�O�?g�����_×�����Q�S��� o�9�3�ˉ��&[\15\7fw���g�n�<�VF�\1db\11\ 6f�\12����N�:\19�ɠ��\11\11Z*\0\0\0\0\0\ 2���\ 6�\\��.�\19۷��C\1c���\ e6����yC\11��2t2$��\183�K���\e\e��\1fX~B�7��tZ_`j�8��?&n2.�x��Iڙ\7f���\17��,�Ø�f6�1{�7�����\19\16=snd�;�\19|e��en��T�Ri-�$���2\"/�\0\0��j�\\�:Z�0�\rNԨf\1de8�\13�٭�\12\eLz�����$�A%\n�T��\\    \\�[*l��;\ZJ�jt�UeJ�\19������ק����a{1�1��\1d�\Z�\e.�VdϚ����Y�#���\1e�����J�p\'\"����gw�\1c��&�T��R�Xڌ��\0\0\0\0\0\ 3��c�{0q0оS��h�����<���7h������]I��UJ���D����:�g�\e{]BA�(���8�i����m��]b��;�be\ez�]��n@���.�.�Qs\11�{�G���2؍$j]�]��\7f6ꏇ{&�$��+e�\18^�\1c�X]ܤ�\1d���%�\15>s2ia���{�\b��C\19T��\0XR�J��������\adz�]���\ ed��݉�      � �,�1r�~�\1e�6���DdG��OB�g��&f)��e�+/�4�T�Q�j�����Ѱ�~w��c�8���ڤF\b�gT�ճ�G�[�M\')��?J\14�UDR)6v[�#E3��\1c�$n��=�J��K�\'�D��q1�8��򄭴��7�(��U\1f����ueL�����t�v2ҤT�K�[o���\0>}FH\0\0\0\0\0\ f\ eB��\0��\bLv�x(Ʋ�9�<K��ig\1c˘�(��E��m\15dߕ1�L��>3O\"\no�\18H�P��Q\15iJU�;G�\13\\/��e>\19����o\eQ�{hnW�\19^\0�S���8��{�\"Λ\16��JK\\�*��G\18��1)|��\'s6\ f��\1d@��M���o+@�\ 6:�e\buw;uY�*9���r�O\13l4��YL��Բ3Q#�\"5\19�E}�\ 4q�SS��G\ 5�HRb]{\1f~&�B\n�q@�wg\1ev�Q\ag_��=\16�rcW6�EP�j\"؊��v�ׇv�{\13:׎�V\r��}L��dD[u��_^�\v\7f?!y֑p<[L�^�Z}�ӵ�\e���\ 5\ 2k;[cJ.ɖ6���鲔��$/D��Y[�kwR��\12D���\0\0\0\0\ 1�.n���\17Nn��v\rv\16�sv�upVV6�;o̥��\11\11\11��\1fM���\'\18�x��8x�-��\1fa��\16���ES������l13K�\12\7f\v�Yx%���rJ��rR�Y�5B$�e�=4�_��ć�&��N\Z_�����k�\1c��H��Q;wdW/+�^&�����)5\13���i\17�(��\12�-�Z�<9sN���\15�.��\16j�M�   �#�p�9��h���ԥ\13�i�ʼn�Q=&\15�U\12�O�Qn�Q�Ԕl�a��\\�.��\e\\�\0�㴒�Mʮ�%y�2=�ޟ�\12]Z��B\1d˩�J$��\0-�\1d�F��X�\fR2�b�\19��X�01�[�#s;\e=�\Z\19\e\e\r&��QiOwM    Z�<�dJ2�\1fڀ��\e\1d#��o�\ 6�p\ 4M�Nӷ�w��8m�2��i�$��d��m�$E��jD�\1c����E��2�\ e��iC;�iwN1���C���\11�59��\"�~��O]����O�[��^T�f�1��\ 4!���\e�q�2y\17q��W�\12��K�Q�ө��\1d\ f\19y����\0\0\0\0\a��U��K\1e�r�X�2@��?bp�L�r+��d�057x������[S#Y���{m�̣4.��+�o5u�S8���F�\19\11�M2���\a\1d�h�/m2^��*+j2L�L���3,�}D\0���F�>�-:�i)t�\15\7f�Y��.�\18Ϻ�f��bV���Z�:Z��\12`W%\12T���3�>I��>Fd���F�-$�j#;*O$��)R�])\11}����[��d�\0\fz���~B�\1eпgG 4�L��=\ 4c��&n��3κu�6��[\12�8\12�e��T�Ҕ\e�.GUF�(�G��$^J�ڑ\ 2�\r��ſ���q��خ\1c��wZ���\r\18���n�����\e\ 5��Ù\1dL5>wv$Rb2{UB�?H\f���LAF�Li%`\ 5��\e�Tjѫ�Q��\0>�������\0\0\0\0\15��������SG\f�M%�B\15�I�y�[�뽊G?t/\1cǘ���P����\114�%    YT*���\">�a&}b��pij��\ 4a־x�[W�n��\16\ e��\a�b\'\f+�\1eH�%���L��3Ȭ�NC+RW��\nb��L�+�`\0\0\0\ f\ e\1f�!�MWp�᭭gk�&�4q��SG\1ee:O�-]1�Iw�#27������7�Q��%!�T2�C���\1f\ e0Ҵ>�\aMY�V8�#ch�V(��vv��\11����TN-��\1c\1c����\14~=I[��W�M5\7f\ e㿀�\1crn�u\ 5��e0�[\1d�Ν�\1d��X�$��!\ 4D��B�\ f��;0z>S%&Fxʗ1+cRղ�GB���)�r�]/q\fÏz\vύ����9��U/%,��/S�\1crC��j(�\\�d��$D���eQ\1c�ȵ��}B��j\15�+�n-�-��ܧem����3���뷐� \0\ 1�����q65�YRGX���:a:�\\�\'{V(�C�Ӫ���\Z����.�7p����\18�4�2��cZQ\ fz���_j6��{s}�A�Rrҋ������ӗx�\ 1^_է�$�R�#�N��+j}�\Z4hQ>�[����E�\0���\f�\0\0\0\0\ 1��\1dR�t�wؾ~�{�|�\0��0���        ��\"8\"M��/\ f�j��\19��9E��-�`អ\r-�[�,�&��oo��L�\13�)&��\r1E���E)<���q�d�\16ᛨYE���\ 1\19p�i�G#�Z��\ f��/{�ۢ99�1��$\11%,֪q�H\"˨T�q���R����\19\0\09_Ʀ]u\ f�1�\"@�Z��徕�M�ͿS#�F��k-��\'c�^�����bg\aYшk�Rw�_��$ؿ     E�\fϚѹ���c/nA+����\11=�b/\n#܋a=@\0\0\0\0\0\ 1�_��\0���uq�+p��Rb��if�H�F�^\ fʱ����\e\ 3�j}٩�#55�S����)�l\ 5�\"yP���������!�\0\ 1ͮ/1s�p���q4����\a?�\ 2۩�4�^��_2���De�\13\"�\1c?�k�͛��F�ԠGZa���uB�^w-��\fB�G���:l_��zK�\0\0\0\0\0\0\ 4\ 1�AX�/���\11����,�zO���n�{��i���l��O���q?\14~������\0�]]Ľ�Ҟ��        �B���?�(��\\levo\10\'��߮�l�������}�ؙG82����{��䏯��O]����������\e���\0\0\0\0\0\0D��~4�\'���!���FQ��{sW\\D�͒7-�s���^�{y�m����\ 3\ 68�\1f�J�(?�$m\15h{E\17v\'6����w⍪G/�Df[m�c��8�\0��ǿ�n\10Z@�Դ�o^ٯ(9��ܙ\Z��|�]����TG���fFC��\0\0\0\0\0\08s�|kBQś��ޭ*\eA�Z����\7f�:3�N�ߦ��e鷡$�w\18\0\0z*R�z����\ f����\Z���gW\r�S\f�\Z�U�kE��\16�ks����Cÿ���h[\1f�M��߀\0\0\0\0\0\0��׎JO��\ZO;�\'�0�g\v���yn\1cwd��OM�\f���n\0\0\0\ftQ*E�ב�\7f\7f��ˡ\f�\0\0\0\0\0\0\18\15-hթJ�Z4N��[S=�#2�#��[}O�g�\0\0\0\0\0\0\0\0\0\0\0\ f��',4,0,'','','',''),(20,3,7,'75859b10b87ebc39','18a7495723879503dac64b352e245508','2017-09-07 09:19:08','2017-09-07 09:19:08','','','Contact Photos','4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575','image/jpeg',80,80,2703,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0P\0P\ 1\ 1\11\0��\0\1f\0\ 1\0\ 1\ 4\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\ 1  \n\v\ 2\ 4\a\ 3\ 5\ 6��\04\10\0\0\ 6\ 1\ 3\ 1\ 6\ 6\0\ 5\ 5\0\0\0\0\0\ 1\ 2\ 3\ 4\ 5\ 6\a\0\b\11  \12\13\14!1Q\n\15\16\"Aq\17#���3Sa����\0\b\ 1\ 1\0\0?\0��M5A\10\ fQ\0��j�����ǯ<��\1e��_�T\ 4\a�@\7fZ��i����\149\11\ 3��\7f׾�*��)��{ڥ����J�Y�[6h��e�\v�,u��$�\1c1����t�KvD3%�\7f��g\11[I�\17\16\15_:\15kƵ�J�u��B��7��\'vX3i�Rj:�G���*�e�\0\ 6��<C\19S��ש\14�kGH8�Z���!�ܶ;\18HiQM�\f�pN\13���\1e��Z��$�b�\b\1d������~� ��]��vG�X��e�\0P̚�k\12�C�\18G3H�޽��O�/l��x\0�\a���\ e?>a�\a�M|�i������:{Lٞ�w,dRt� aK�B�f����\f\ 4\ 3�5���Ô��\ 25��\ 2\ 2b�%\ 1\ 1\10֡��\eZ�uZꅊqNL�����\192Õ�\ 5oY↚}L�VB�\0��\15�0���ւ7s\0�D�{I��N\n_�J;�)Tʮ>��)���UR�U���V�PlЏ����`�lD4S\16�M�8��\r�fѲ\ 4*H��i�P)CP���O\f3�{\ 5�a��%y��V�\ e)��yn��Yi\16E�\ 23�I�\19\ 6�Vh��\a��;  8�\ 6ݴʛG]��5�b~�=I~\1f}��vݐr��(��C����/m��X�H�r\1e\ eN*ߎ��\\==\1eZ�Q�ed���\ 4{��\\�����n��X�^¹Z���\ e2�T\aƓ�e�%W\"�\1f��\"��w\18FV\be�L�8$���@\17K�aM`9\ 4G�zv�i�e���s���^�q�Y���9���9(h��9�H��F�`�kd�)���\ 6��I$B��\1dr�\n\"n5�����}.��    9�l2�m\1f&\12�\n�b����\14+$V�`\ 3\n�\0++�\1c\13��9W�\ 4�0�h�q�q�\1c\a\1f�����\11\ 4G�\0G��Z�~.      ��׬c��\ 1\ 4���8\e\a�o\r�\12�O\17��5�b61T\Z\15EW�%B�NnTJU\172gfܤ�\b�lu遅-�r�߲�\e}M�{�2۞,�[�:�\0^2�֫\1e��A��DH.�a<��h_/���4�]W�R|��\'\b�ỴN��\ e\13*�.��\14�Ed�����\18�Q3�C��S\0�D\aYV�vÑ>\e~�X\7f{\18��\'?�\1c��,\135C�\ 2f�K�W�2�\ 5}ߝ$���+�O��\1f0T�\'cX����X��l���f��q�\v0�#\v�8�U(+�*�\18e\f�r�a`��[�J�\12p���rw휢���\ 1V��E�+$�z�!�\ 5�]�=�j33\18W\ fۮUȇb����7f\fj,�\13���׳>�NPH�G,y�\18\10�Q�\r�\v���u\11\1e�:��%Ü�hƙi����\ 1\'�l;��\"WI܅4�R+E\7f��n��Q�*?&a%:��6�\rU�M-��(\14\0\08\0�\ e?�\\��^\ 5���ᝠ�+�����>����*�\16)��1�P�P���a�$\ 2�b�:�V�p0�\b��97M��LN�!a-��\ f�oX�\0���y�L���\ f\17\1dY#*\15���\15_n�T~\7f\13%{����]NI${L�quI7i�0�\ 6��\1cq�iw\e\'M-��\Z�^���<��\19�]/)\10�u�\vNxU    �m���\ 3X{Ԭ�F\12Y�c(��Vk0M\10l��Y�l��Df]\16�O�u:�\ e�Y��R�0�+�Z�Z!�\rv�\ 3\16�[F���G&�(��-�D\e4j�h��\nR\10\05�۾ۍSw{a�\ee�;q\1dZ�\18��_ʴD�\1d��d�r�6�ͺ�T�=�J\v)�H(r&��   &���\1c\a\10��n�k�\ 3��      �\7f\fbXBٓ��\19GmY>�\vE�l�\'�x�|�5\12�\"F�r�O���&��\f�y%^\Zn�(�:ԓH\15�*�1{@b���\ 1\ f^\ 3��\7f\1e�\\k�!令#�\b�\0���#�X�3]Rz�l��\f��\0��    �#�\r�D1t�[gfZB*�Q���\"q*�у�j�j$�V�ZbE\13\ 3��\f�YP\10Q\15�8��~1�$\14\fs8�Xh���FD�G7M�|ls\ 6��ѓ\ 6-QI�6mRI�V�$�       �$�P�}4��.����!�^�5\n�⾪���\r��\ ff�YT�}ګEM�|�U\13\ 3\bs�c\13�=�\ eG�m������K;Lcw��O�0Q�=�{h��c):Ě       \ 1c\ 2r�\\����\1e���n\ f귺��{�i��U���_7�\1d&��L��7)ӷ~\r�K�\1d���^f�X�,%_q8Z�)\16��+���\16�_��#�v,��d���S�ѓդ�\e�y��y���\r�\17�?�\ f�^Rv��Y��vS\17\10�b�L�>����E�e\f^\ 1\17/q:\ eV!\a�Y���d7\17��M4�V }��+�J��ض��\vWH\v�K*��$ y*���Q����1J��#��M\ 3\1c�P��H�`!C��\a�~�T��7<\b��\1e��_�]CL\7f�~I����o\ fݒ���U��\14\0\15uE������}�       �V֘~��\f �$\ 2R�����M4�P�C\19�����/\ ea3-�dLn.���\ 4�c��dۛώЌb�\148�0�b鮸4n\ eN�WJ��uW\ 4�ި�c�Q\ 4��\1d\11\13�rd�\" ��TJ\0*\18G���i���͸�+�E1vF�hG\1d�敲�MU\10\ 3\7f�uQIC\0qɓ/!�\ 3�ֿ��',5,0,'','','',''),(21,3,7,'75859b10b87ebc39','18a7495723879503dac64b352e245508','2017-09-07 09:19:08','2017-09-07 09:19:08','','','Contact Photos','4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575','image/jpeg',48,48,1755,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\00\00\ 1\ 1\11\0��\0\e\0\0\ 2\ 2\ 3\ 1\0\0\0\0\0\0\0\0\0\0\0\b   \0\ 6\ 1\ 4\a\n��\0.\10\0\ 1\ 4\ 2\ 1\ 3\ 3\ 3\ 3\ 4\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0      \11\12\13\14\n\16!\151A\"#$23Qa��\0\b\ 1\ 1\0\0?\0���3�c\19�s�\18ǜ�?�1���{�p\ fK����]�_�\1f�r��\0BsK�]�n\v4d�\7f\ 6fZ%\ 2ӣ�\v³+\1e�r0�m�&��i��-��<u��\v`��Xh�K\ 2ɤU-y�͎\roc��e�ښ�B$���.�>jA�g>���%hM����%�C\1c¿p��O!����6���x�i�e�5�\ 5��H�)LW�l�e����!k��:\14�T���h\12�q\ f2ڰ���NݴM\15�j�6�\10A��7�?qY��ˌ�g�Z�[D�En�\17&Z]-�mnB��a!�[v\\�h��2Ba\ 3RI?�\16��\1f�<~/�\17\ay=d�G����\e��3�JM�[ݨ��\10`   ��ԭy���N�\ 5�\0ɚȥ֐Y�ʈ���O`=�y��|\vҼ�&�-F�m\12f��+`<�\11q{\ 2�*En՘g\b���$��Y��`��P��#\ 6I%�;�<�z�+��<\e��#ۣ��g��dl9�\10n��&���\7fek�ٵ���)X�C\16�dz�D���\ 1�0�N%HiI�m���R/hvߠ��)5>B�~N��M�X�}��\']�؜�\Zlcޒ�\12Z��FQ.6��?\11`       �/����>�>J[X㦣�`�3���l8m%X<�=�j�2.�L2�1\"�\10���D�7�0�Ĉ2�+�I1��Kw����n^\16i>%T%�cƺ�x�]�l�_�/�C\1e��X�\11JR�\ 6B�y��\ 5Ÿ�Q-�+μ�+ug�\\�y�J7\1et���{2U0�\1dOH��m�YF]q�Z�a\12�$f\13�d�B\a����2�F<��c.:�e`��Z�_���|������)�n|\7f\ e��KQi\Z�WK�\12�y��#Y,\v6��6\18\17c&,\10S�MP�Δ�3\14ę��;F�imE�M�I�MiF��܎L��N�W����J!O�\12Vi\b��2zA\n(�$�G�#\n%�{�^s*]���p��\\�2n�Et��ܬ�fݏ�Z\Z�m\0�:\1c��2%�.�؁D�3)�[F�\ 5�����a\f\1d��\1c�],2   ]�ˆ�ۮ��\v�Z�ϯ*kj4=���N1�����-c��;l�:\ 1\ 1@�Ϋ+�������O�WW��!א^EJGNFG�Ü$�L�B�FI\0CE�x\ 6��C42�Z�$R�u��}����Z\1cB��c=/>�z����\1d��XK�3x�q�,�8�+�\1c��-�#��?*\ZF���\ 5��V)/%xR3�e�\ 60�\b(b0�\8a;#\f;\bKl��\r%�Ye�c\bCM6���\'\18JP�%8�1��z�Wm�J��e�Z⁜�[�&+\16\18i!�.>V\ ez8��X�E}+d�\r\0�\ 6!�P��eաi�U�t\12v��O�;}qj�e0åi��\15?~A�\1d-\11��٘H �q�-�b>\f\18�\Z�+9�#7�x�1�\Z�\Z�e�\ 1��=`�t,���\n�\0\"\nn:x%zs�Ϥ����?�z|��գ\18�c���u��S?�\7f���K��R+1Uh�a���hTc\1e�%\ 4\16A��1�>?�B�\0����',6,0,'','','',''),(22,0,2,'75859b10b87f222d','4b7db531ad1920a7cb8fb76aed46ddd9','2017-09-07 09:12:55','2017-09-07 09:12:55','','','Contact Photos','f958f83dd2af4c30b30045dfc6ff0718-4.jpg?ts=1504775108','image/jpeg',175,175,5493,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0�\0�\ 1\ 1\11\0��\0\1e\0\ 1\0\ 2\ 3\0\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\n\v\ 4\b      \ 2\ 3\a\ 5\ 6��\0B\10\0\0\ 5\ 3\ 2\ 3\ 5\ 6\ 2\ 5\v\ 5\0\0\0\0\0\ 1\ 2\ 5\ 6\ 3\ 4\a\b\11        \12!\n\13\151A\14\16\"Qa�q�\17%23�\18#$&5BR����Es�����\0\b\ 1\ 1\0\0?\0��\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն����X\Z\'���p|L�sN��\1e�}�Y%ZR|�\11(�J*I&+�rJ\18#�yI)%l�Z�,:��i�(��ϥ�)���J�����*hχ\18o�мI����$�\16Dj-� (�C\"�cI(s���_�L�:g��\v`w�I\ 5����9�s.w�Y���a\7f���C\"3:I��e�~��g,�\1dڮ�Ϩ�6�&�t\ 1�t�\ 3�/iK��xv<�v   #=�\13{�$�ѹ\16�Idу=��#�}�G���!�\0\0\0\0\0\0\0\ 2*|z�B��\1c6�Zp�]�s\"�A�ڝ\r�E\7f\r��{�b�\1d�Z�HI��j��>Eq�E�\14˒S.:t�7\19�Vg�5\15�u;��Ys=�YFZ�Rk��}����j��ʮHnl�Ifh���M6&\ 4\";M\15\13�DD�]��¿S\1cR��\1cc�\eh�B�\14�{��t��Ƥ\ f\16G��V�Mʽ4$�&2\ 4��\"����%���{̈}9$����489hۆ\ 4\1d��    @�e��崭�\Z��ط<��m�(v&�Ne{�ȵ\1dE�\ 4q\14QM\ 6I��\Z�uO�h���D<�\0\0\0\0\0\0\0qۍG\12fn\19\Z\18��\7fb��R���\18\ 69~�2w�\12��o\nstMT�x\1e=d��>��H��l�\16MT\1c���:�\ f!M2��a��L��c��/�Ri��Cr���\1c����\1d��T�\Z�u\15Υ$�F�\10IN��춆�q�5��S�,-B��c�^�op�}AW�\108�Y)�c?��T��2F\18i��դkI��$b�Փ�鐸�A�\e�\\<��\ 1�F\ 2��h�ŭ�ܿIk�\17)�3\17^�N�ٓ�wu]��k�U4�J�\17��8�W�*�F�7�`^U:V��ң�\15I%�\1c̷?��|����C{�Oh�[�:r�qğ���  ����0\\���\Ze0\\�ޅ\Z��.���\1f�RvZ�\13�NOI\n#��\15���O\fv���-ik�\1d\ eF\a���\1c\ e�o�;�E�I�\14���ձ�\14�5�\Z�Rv!,�\1e�\\4;����MyE\1e�3��t�a9��B��:̌�[�X�T���h_\"��r\194k��*�F\\��U:��M�z�\0�u#�\0�C�\0\0\0\0\0\ 2�>�f�\1cr���Z\\kp�q\ 5Ҿ.oU�u������q-S\a�CJK��PSǬf�2JJ��G�D\fYm���+>!҄�^�\16\n\'��/{}\f�W7\16��-\18K\1f;�K���kI��\v(�;T�F��\r��H̖J�\10\0��J�s\ 4j�\vK��\0��m\1f���p֫WV\'�\"Iٹ\12jTlx�;ҤO,R\ 6\15��Ԑǖ�\fedK����:�8���<)5h�\17y Ó�w        ��r*-�\ 50��\7f�����Bf��J&  u:fIV�r�\15:rjh.p�甴���9�\fM\1e��H���>���듲pg�BҲ4\1d:{-��RT�P�MHZ��Rw+|�)�D�qKєW2W��e�\10���j\ 6\1c�O{F|��aM)xh��\1c�ʴH��-�IF�\163捩Gِ\0\0\0\0\0\14�q���d\ e-�B\1f\\*�u���D�Z��nǮ~�4\19��gfG�y�N��-m�ݯ�\em(ָ����m����WW���IoԺ������w2I\18��HX%�Lza�֞X��Y��;\ 1�$�D�Q{}\12�54;9�)k3S��\1d\1f\16�2%-|Ĕ��\b��\0\11��E�ɧT|+2�B��B�H�U�y���������K>Yk�[\ZYN\f��\"ZyTGV\ZĢ5\12MGR�OO��&7���\v�;_��Ou��\1c[7���O��?�0�Rv�Vg\13#۔��+���E�1\16�[\11ٲ\0\0\0\0\0\ 2��;X��\Zqz�\ 4�qJ����2c:�#��\evIK^Fk4�B/�X���﹑\19\19\1e�E4�eh�M8�8(�:�\0<b\e[�M�=eMB3�\0    �\7f��\a���\0\0h�\13��4xrkꬓ��\"�Ƥ�O�?g�����_×�����Q�S��� o�9�3�ˉ��&[\15\7fw���g�n�<�VF�\1db\11\ 6f�\12����N�:\19�ɠ��\11\11Z*\0\0\0\0\0\ 2���\ 6�\\��.�\19۷��C\1c���\ e6����yC\11��2t2$��\183�K���\e\e��\1fX~B�7��tZ_`j�8��?&n2.�x��Iڙ\7f���\17��,�Ø�f6�1{�7�����\19\16=snd�;�\19|e��en��T�Ri-�$���2\"/�\0\0��j�\\�:Z�0�\rNԨf\1de8�\13�٭�\12\eLz�����$�A%\n�T��\\    \\�[*l��;\ZJ�jt�UeJ�\19������ק����a{1�1��\1d�\Z�\e.�VdϚ����Y�#���\1e�����J�p\'\"����gw�\1c��&�T��R�Xڌ��\0\0\0\0\0\ 3��c�{0q0оS��h�����<���7h������]I��UJ���D����:�g�\e{]BA�(���8�i����m��]b��;�be\ez�]��n@���.�.�Qs\11�{�G���2؍$j]�]��\7f6ꏇ{&�$��+e�\18^�\1c�X]ܤ�\1d���%�\15>s2ia���{�\b��C\19T��\0XR�J��������\adz�]���\ ed��݉�      � �,�1r�~�\1e�6���DdG��OB�g��&f)��e�+/�4�T�Q�j�����Ѱ�~w��c�8���ڤF\b�gT�ճ�G�[�M\')��?J\14�UDR)6v[�#E3��\1c�$n��=�J��K�\'�D��q1�8��򄭴��7�(��U\1f����ueL�����t�v2ҤT�K�[o���\0>}FH\0\0\0\0\0\ f\ eB��\0��\bLv�x(Ʋ�9�<K��ig\1c˘�(��E��m\15dߕ1�L��>3O\"\no�\18H�P��Q\15iJU�;G�\13\\/��e>\19����o\eQ�{hnW�\19^\0�S���8��{�\"Λ\16��JK\\�*��G\18��1)|��\'s6\ f��\1d@��M���o+@�\ 6:�e\buw;uY�*9���r�O\13l4��YL��Բ3Q#�\"5\19�E}�\ 4q�SS��G\ 5�HRb]{\1f~&�B\n�q@�wg\1ev�Q\ag_��=\16�rcW6�EP�j\"؊��v�ׇv�{\13:׎�V\r��}L��dD[u��_^�\v\7f?!y֑p<[L�^�Z}�ӵ�\e���\ 5\ 2k;[cJ.ɖ6���鲔��$/D��Y[�kwR��\12D���\0\0\0\0\ 1�.n���\17Nn��v\rv\16�sv�upVV6�;o̥��\11\11\11��\1fM���\'\18�x��8x�-��\1fa��\16���ES������l13K�\12\7f\v�Yx%���rJ��rR�Y�5B$�e�=4�_��ć�&��N\Z_�����k�\1c��H��Q;wdW/+�^&�����)5\13���i\17�(��\12�-�Z�<9sN���\15�.��\16j�M�   �#�p�9��h���ԥ\13�i�ʼn�Q=&\15�U\12�O�Qn�Q�Ԕl�a��\\�.��\e\\�\0�㴒�Mʮ�%y�2=�ޟ�\12]Z��B\1d˩�J$��\0-�\1d�F��X�\fR2�b�\19��X�01�[�#s;\e=�\Z\19\e\e\r&��QiOwM    Z�<�dJ2�\1fڀ��\e\1d#��o�\ 6�p\ 4M�Nӷ�w��8m�2��i�$��d��m�$E��jD�\1c����E��2�\ e��iC;�iwN1���C���\11�59��\"�~��O]����O�[��^T�f�1��\ 4!���\e�q�2y\17q��W�\12��K�Q�ө��\1d\ f\19y����\0\0\0\0\a��U��K\1e�r�X�2@��?bp�L�r+��d�057x������[S#Y���{m�̣4.��+�o5u�S8���F�\19\11�M2���\a\1d�h�/m2^��*+j2L�L���3,�}D\0���F�>�-:�i)t�\15\7f�Y��.�\18Ϻ�f��bV���Z�:Z��\12`W%\12T���3�>I��>Fd���F�-$�j#;*O$��)R�])\11}����[��d�\0\fz���~B�\1eпgG 4�L��=\ 4c��&n��3κu�6��[\12�8\12�e��T�Ҕ\e�.GUF�(�G��$^J�ڑ\ 2�\r��ſ���q��خ\1c��wZ���\r\18���n�����\e\ 5��Ù\1dL5>wv$Rb2{UB�?H\f���LAF�Li%`\ 5��\e�Tjѫ�Q��\0>�������\0\0\0\0\15��������SG\f�M%�B\15�I�y�[�뽊G?t/\1cǘ���P����\114�%    YT*���\">�a&}b��pij��\ 4a־x�[W�n��\16\ e��\a�b\'\f+�\1eH�%���L��3Ȭ�NC+RW��\nb��L�+�`\0\0\0\ f\ e\1f�!�MWp�᭭gk�&�4q��SG\1ee:O�-]1�Iw�#27������7�Q��%!�T2�C���\1f\ e0Ҵ>�\aMY�V8�#ch�V(��vv��\11����TN-��\1c\1c����\14~=I[��W�M5\7f\ e㿀�\1crn�u\ 5��e0�[\1d�Ν�\1d��X�$��!\ 4D��B�\ f��;0z>S%&Fxʗ1+cRղ�GB���)�r�]/q\fÏz\vύ����9��U/%,��/S�\1crC��j(�\\�d��$D���eQ\1c�ȵ��}B��j\15�+�n-�-��ܧem����3���뷐� \0\ 1�����q65�YRGX���:a:�\\�\'{V(�C�Ӫ���\Z����.�7p����\18�4�2��cZQ\ fz���_j6��{s}�A�Rrҋ������ӗx�\ 1^_է�$�R�#�N��+j}�\Z4hQ>�[����E�\0���\f�\0\0\0\0\ 1��\1dR�t�wؾ~�{�|�\0��0���        ��\"8\"M��/\ f�j��\19��9E��-�`អ\r-�[�,�&��oo��L�\13�)&��\r1E���E)<���q�d�\16ᛨYE���\ 1\19p�i�G#�Z��\ f��/{�ۢ99�1��$\11%,֪q�H\"˨T�q���R����\19\0\09_Ʀ]u\ f�1�\"@�Z��徕�M�ͿS#�F��k-��\'c�^�����bg\aYшk�Rw�_��$ؿ     E�\fϚѹ���c/nA+����\11=�b/\n#܋a=@\0\0\0\0\0\ 1�_��\0���uq�+p��Rb��if�H�F�^\ fʱ����\e\ 3�j}٩�#55�S����)�l\ 5�\"yP���������!�\0\ 1ͮ/1s�p���q4����\a?�\ 2۩�4�^��_2���De�\13\"�\1c?�k�͛��F�ԠGZa���uB�^w-��\fB�G���:l_��zK�\0\0\0\0\0\0\ 4\ 1�AX�/���\11����,�zO���n�{��i���l��O���q?\14~������\0�]]Ľ�Ҟ��        �B���?�(��\\levo\10\'��߮�l�������}�ؙG82����{��䏯��O]����������\e���\0\0\0\0\0\0D��~4�\'���!���FQ��{sW\\D�͒7-�s���^�{y�m����\ 3\ 68�\1f�J�(?�$m\15h{E\17v\'6����w⍪G/�Df[m�c��8�\0��ǿ�n\10Z@�Դ�o^ٯ(9��ܙ\Z��|�]����TG���fFC��\0\0\0\0\0\08s�|kBQś��ޭ*\eA�Z����\7f�:3�N�ߦ��e鷡$�w\18\0\0z*R�z����\ f����\Z���gW\r�S\f�\Z�U�kE��\16�ks����Cÿ���h[\1f�M��߀\0\0\0\0\0\0��׎JO��\ZO;�\'�0�g\v���yn\1cwd��OM�\f���n\0\0\0\ftQ*E�ב�\7f\7f��ˡ\f�\0\0\0\0\0\0\18\15-hթJ�Z4N��[S=�#2�#��[}O�g�\0\0\0\0\0\0\0\0\0\0\0\ f��',4,0,'','','',''),(23,0,2,'75859b10b87f222d','4b7db531ad1920a7cb8fb76aed46ddd9','2017-09-07 09:12:55','2017-09-07 09:12:55','','','Contact Photos','f958f83dd2af4c30b30045dfc6ff0718-4.jpg?ts=1504775108','image/jpeg',80,80,2703,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0P\0P\ 1\ 1\11\0��\0\1f\0\ 1\0\ 1\ 4\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\ 1  \n\v\ 2\ 4\a\ 3\ 5\ 6��\04\10\0\0\ 6\ 1\ 3\ 1\ 6\ 6\0\ 5\ 5\0\0\0\0\0\ 1\ 2\ 3\ 4\ 5\ 6\a\0\b\11  \12\13\14!1Q\n\15\16\"Aq\17#���3Sa����\0\b\ 1\ 1\0\0?\0��M5A\10\ fQ\0��j�����ǯ<��\1e��_�T\ 4\a�@\7fZ��i����\149\11\ 3��\7f׾�*��)��{ڥ����J�Y�[6h��e�\v�,u��$�\1c1����t�KvD3%�\7f��g\11[I�\17\16\15_:\15kƵ�J�u��B��7��\'vX3i�Rj:�G���*�e�\0\ 6��<C\19S��ש\14�kGH8�Z���!�ܶ;\18HiQM�\f�pN\13���\1e��Z��$�b�\b\1d������~� ��]��vG�X��e�\0P̚�k\12�C�\18G3H�޽��O�/l��x\0�\a���\ e?>a�\a�M|�i������:{Lٞ�w,dRt� aK�B�f����\f\ 4\ 3�5���Ô��\ 25��\ 2\ 2b�%\ 1\ 1\10֡��\eZ�uZꅊqNL�����\192Õ�\ 5oY↚}L�VB�\0��\15�0���ւ7s\0�D�{I��N\n_�J;�)Tʮ>��)���UR�U���V�PlЏ����`�lD4S\16�M�8��\r�fѲ\ 4*H��i�P)CP���O\f3�{\ 5�a��%y��V�\ e)��yn��Yi\16E�\ 23�I�\19\ 6�Vh��\a��;  8�\ 6ݴʛG]��5�b~�=I~\1f}��vݐr��(��C����/m��X�H�r\1e\ eN*ߎ��\\==\1eZ�Q�ed���\ 4{��\\�����n��X�^¹Z���\ e2�T\aƓ�e�%W\"�\1f��\"��w\18FV\be�L�8$���@\17K�aM`9\ 4G�zv�i�e���s���^�q�Y���9���9(h��9�H��F�`�kd�)���\ 6��I$B��\1dr�\n\"n5�����}.��    9�l2�m\1f&\12�\n�b����\14+$V�`\ 3\n�\0++�\1c\13��9W�\ 4�0�h�q�q�\1c\a\1f�����\11\ 4G�\0G��Z�~.      ��׬c��\ 1\ 4���8\e\a�o\r�\12�O\17��5�b61T\Z\15EW�%B�NnTJU\172gfܤ�\b�lu遅-�r�߲�\e}M�{�2۞,�[�:�\0^2�֫\1e��A��DH.�a<��h_/���4�]W�R|��\'\b�ỴN��\ e\13*�.��\14�Ed�����\18�Q3�C��S\0�D\aYV�vÑ>\e~�X\7f{\18��\'?�\1c��,\135C�\ 2f�K�W�2�\ 5}ߝ$���+�O��\1f0T�\'cX����X��l���f��q�\v0�#\v�8�U(+�*�\18e\f�r�a`��[�J�\12p���rw휢���\ 1V��E�+$�z�!�\ 5�]�=�j33\18W\ fۮUȇb����7f\fj,�\13���׳>�NPH�G,y�\18\10�Q�\r�\v���u\11\1e�:��%Ü�hƙi����\ 1\'�l;��\"WI܅4�R+E\7f��n��Q�*?&a%:��6�\rU�M-��(\14\0\08\0�\ e?�\\��^\ 5���ᝠ�+�����>����*�\16)��1�P�P���a�$\ 2�b�:�V�p0�\b��97M��LN�!a-��\ f�oX�\0���y�L���\ f\17\1dY#*\15���\15_n�T~\7f\13%{����]NI${L�quI7i�0�\ 6��\1cq�iw\e\'M-��\Z�^���<��\19�]/)\10�u�\vNxU    �m���\ 3X{Ԭ�F\12Y�c(��Vk0M\10l��Y�l��Df]\16�O�u:�\ e�Y��R�0�+�Z�Z!�\rv�\ 3\16�[F���G&�(��-�D\e4j�h��\nR\10\05�۾ۍSw{a�\ee�;q\1dZ�\18��_ʴD�\1d��d�r�6�ͺ�T�=�J\v)�H(r&��   &���\1c\a\10��n�k�\ 3��      �\7f\fbXBٓ��\19GmY>�\vE�l�\'�x�|�5\12�\"F�r�O���&��\f�y%^\Zn�(�:ԓH\15�*�1{@b���\ 1\ f^\ 3��\7f\1e�\\k�!令#�\b�\0���#�X�3]Rz�l��\f��\0��    �#�\r�D1t�[gfZB*�Q���\"q*�у�j�j$�V�ZbE\13\ 3��\f�YP\10Q\15�8��~1�$\14\fs8�Xh���FD�G7M�|ls\ 6��ѓ\ 6-QI�6mRI�V�$�       �$�P�}4��.����!�^�5\n�⾪���\r��\ ff�YT�}ګEM�|�U\13\ 3\bs�c\13�=�\ eG�m������K;Lcw��O�0Q�=�{h��c):Ě       \ 1c\ 2r�\\����\1e���n\ f귺��{�i��U���_7�\1d&��L��7)ӷ~\r�K�\1d���^f�X�,%_q8Z�)\16��+���\16�_��#�v,��d���S�ѓդ�\e�y��y���\r�\17�?�\ f�^Rv��Y��vS\17\10�b�L�>����E�e\f^\ 1\17/q:\ eV!\a�Y���d7\17��M4�V }��+�J��ض��\vWH\v�K*��$ y*���Q����1J��#��M\ 3\1c�P��H�`!C��\a�~�T��7<\b��\1e��_�]CL\7f�~I����o\ fݒ���U��\14\0\15uE������}�       �V֘~��\f �$\ 2R�����M4�P�C\19�����/\ ea3-�dLn.���\ 4�c��dۛώЌb�\148�0�b鮸4n\ eN�WJ��uW\ 4�ި�c�Q\ 4��\1d\11\13�rd�\" ��TJ\0*\18G���i���͸�+�E1vF�hG\1d�敲�MU\10\ 3\7f�uQIC\0qɓ/!�\ 3�ֿ��',5,0,'','','',''),(24,0,2,'75859b10b87f222d','4b7db531ad1920a7cb8fb76aed46ddd9','2017-09-07 09:12:55','2017-09-07 09:12:55','','','Contact Photos','f958f83dd2af4c30b30045dfc6ff0718-4.jpg?ts=1504775108','image/jpeg',48,48,1755,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\00\00\ 1\ 1\11\0��\0\e\0\0\ 2\ 2\ 3\ 1\0\0\0\0\0\0\0\0\0\0\0\b   \0\ 6\ 1\ 4\a\n��\0.\10\0\ 1\ 4\ 2\ 1\ 3\ 3\ 3\ 3\ 4\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0      \11\12\13\14\n\16!\151A\"#$23Qa��\0\b\ 1\ 1\0\0?\0���3�c\19�s�\18ǜ�?�1���{�p\ fK����]�_�\1f�r��\0BsK�]�n\v4d�\7f\ 6fZ%\ 2ӣ�\v³+\1e�r0�m�&��i��-��<u��\v`��Xh�K\ 2ɤU-y�͎\roc��e�ښ�B$���.�>jA�g>���%hM����%�C\1c¿p��O!����6���x�i�e�5�\ 5��H�)LW�l�e����!k��:\14�T���h\12�q\ f2ڰ���NݴM\15�j�6�\10A��7�?qY��ˌ�g�Z�[D�En�\17&Z]-�mnB��a!�[v\\�h��2Ba\ 3RI?�\16��\1f�<~/�\17\ay=d�G����\e��3�JM�[ݨ��\10`   ��ԭy���N�\ 5�\0ɚȥ֐Y�ʈ���O`=�y��|\vҼ�&�-F�m\12f��+`<�\11q{\ 2�*En՘g\b���$��Y��`��P��#\ 6I%�;�<�z�+��<\e��#ۣ��g��dl9�\10n��&���\7fek�ٵ���)X�C\16�dz�D���\ 1�0�N%HiI�m���R/hvߠ��)5>B�~N��M�X�}��\']�؜�\Zlcޒ�\12Z��FQ.6��?\11`       �/����>�>J[X㦣�`�3���l8m%X<�=�j�2.�L2�1\"�\10���D�7�0�Ĉ2�+�I1��Kw����n^\16i>%T%�cƺ�x�]�l�_�/�C\1e��X�\11JR�\ 6B�y��\ 5Ÿ�Q-�+μ�+ug�\\�y�J7\1et���{2U0�\1dOH��m�YF]q�Z�a\12�$f\13�d�B\a����2�F<��c.:�e`��Z�_���|������)�n|\7f\ e��KQi\Z�WK�\12�y��#Y,\v6��6\18\17c&,\10S�MP�Δ�3\14ę��;F�imE�M�I�MiF��܎L��N�W����J!O�\12Vi\b��2zA\n(�$�G�#\n%�{�^s*]���p��\\�2n�Et��ܬ�fݏ�Z\Z�m\0�:\1c��2%�.�؁D�3)�[F�\ 5�����a\f\1d��\1c�],2   ]�ˆ�ۮ��\v�Z�ϯ*kj4=���N1�����-c��;l�:\ 1\ 1@�Ϋ+�������O�WW��!א^EJGNFG�Ü$�L�B�FI\0CE�x\ 6��C42�Z�$R�u��}����Z\1cB��c=/>�z����\1d��XK�3x�q�,�8�+�\1c��-�#��?*\ZF���\ 5��V)/%xR3�e�\ 60�\b(b0�\8a;#\f;\bKl��\r%�Ye�c\bCM6���\'\18JP�%8�1��z�Wm�J��e�Z⁜�[�&+\16\18i!�.>V\ ez8��X�E}+d�\r\0�\ 6!�P��eաi�U�t\12v��O�;}qj�e0åi��\15?~A�\1d-\11��٘H �q�-�b>\f\18�\Z�+9�#7�x�1�\Z�\Z�e�\ 1��=`�t,���\n�\0\"\nn:x%zs�Ϥ����?�z|��գ\18�c���u��S?�\7f���K��R+1Uh�a���hTc\1e�%\ 4\16A��1�>?�B�\0����',6,0,'','','',''),(25,2,8,'75859b10b880d425','5b0e9c6920adcf8efafaf3743d0e0c6c','2017-09-07 09:16:42','2017-09-07 09:16:42','','','Contact Photos','3.jpg','image/jpeg',175,175,5486,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0�\0�\ 1\ 1\11\0��\0\1e\0\ 1\0\ 2\ 3\0\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\n\v\ 4\b     \ 2\ 3\a\ 5\ 6��\0B\10\0\0\ 5\ 3\ 2\ 3\ 5\ 5\ 3      \a\ 5\0\0\0\0\0\ 1\ 2\ 5\ 6\ 3\ 4\a\b\11   \12!\n\13\151A\14\16\"Q�aq�\17%23R����\18#$&5B�Es�����\0\b\ 1\ 1\0\0?\0��\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն����X\Zg���p|L�sN��\1e�}�Y%ZR|�\11(�J*I&+�rJ\18#�yI)%l�Z�,:��i�(��ϥ�)���J�����*hχ\18o��>$���Œd\v\"5\16ɐ\14b��o���9���/צF�3�qN��;뤂��������9�;߬�Kka0���Z��\19�$�Բ��Ob3�g\ e�Wqg�U�l�W�\0ĺQ��\17����<;\1eJ;\ 4��剽ŒTh܋}��h�����>�#���\10�\0\0\0\0\0\0\0\ 1\15>=]�Xw\ e\eg-8i��9�u����N�梿���ݱ^\ e�-l$$��5Rt�\"�����e�)�\1d:G\e��+3Ϛ�ͺ���,���-d�5�ܾ��n~5\7fSeW$76sS$�4SME��\13\ 2\11\1d����\"\"O.����_��)Y\8e1�\r�X!M\nm��y�Kl�R\a�#�k�M&�^�\12o\13\19\ 2|M\11L}Ij���O��D>��OJ��\Z\1c\1c�m�\ 2\ e�i��v2��r�VӍB�l[�rd��D�;\13k�2��dZ���\ 28�(��$���h:�״y}\7f\ 2\1e`\0\0\0\0\0\0\08�ƣ�37\f}\fNsſ�]�\19E�c\f\ 3\1cpJL�򄩵�\9c\11U<�\a�Y)�O�&�$.�!E�Q\a%��N�C�SL�8�d��#z��9�㔚g,�ܮ��G w�7GggU)F�]Es�I-��D\12S�:{-��\1ce�|jw\14�K\vP���䗴[�<�PU�\ 4\ e&�Jw���iU4�L��\Zno5i\Z�j��\18�ud�:d.-�n��\ f=9�tр��Z!�kj�/�Z��rL�׹S��d�]�Wg�\Z��M(R���%�#\15劰Q���\18\17�N��j���ERI\7f�3-���_=�\7f#\10���=��\ e���q\'�u\7f\ 2c���L\17-e�ƙL\17#��F�t�����G�����\ 4䓓�B��eEk2=\13\1d��\7f�ZZ�\aC���������3\ 3\e���xdRh�#\'�5ldE(�nF�ԝ�K/��\17\r\ e�9c���^QG���4�&\18N\7fjP��\ e�#=��\16:�)<2�\17ȧ�܆M\Z�3J���\"z�N�{�n���]H�\0�!�\0\0\0\0\0\ 1X\1fl3W\ e9\7f_�.5�W���_\177����v��츖��㡥%�k()��3Q�%%MJ#�\"\ 6,��|h\15\10�B{�i�\ 5\13������c+��r�\16�%��ɥ�Mj5���Z��V#Isӆ��$fK%M\b\0j�t��5s���\7f�n6���e8kU��\13ݑ$�܉5*6<F\1d�R\'�)\ 3\n�^�Hc�D�2�%�Ys�F�g�W�\1e\14��x�N���a�ջ��O�\15\16Ƃ�c��mn��!3\\|�&      u:fIV�r�\15:rjh.p�甴���9�\fM\1e��H���>���듲pg�BҲ�:t�[I줩��*���\17¤�V�pS�\18◣(�d�Bŗ4B.� �\18su=�\19\v=�4�ᢙ�K\ eAeZ$qu\16餣}�\19�Fԣ��\0\0\0\0\0\nY��No�\a\16�!\ f\15N��j{\"F-zy�c�?s\Z\f��I3�#̼˧Q�\16�����\r��k\\]���6��Pꫫ�Ur$��]MIN�^|��$�^u�,\12ݦ=0��O,Vt,�p�\1d��]�I(���F\Z�\1d�̔�����\ e��Q\19\12��bJID�l�\0\b����dӪ>\15�o!Sg�[$i*��<�\\Qng|Q�u��,�,�\ 6tu�-<�#�\rbQ\Z�&��v����\13\e�c�\ 5\1d��٧��u�-����\'��\1f�B�b);C�3����ha��Kr\"ۘ�r-���\0\0\0\0\0\ 1K�\1d\7fy�8�q\ 2a��^���\191�[\11�؍�$��#5�K�\17�,JL���Ȍ��a��L��s�&�[\1c\14d�\7f�1\r�צ�K����\19�ɧ\7f��=��\0\ 3Dx��a�Ó_Ud�ǁ\16�5%�~��<��&\ 4��ܾ^�G�⏚��_�K\7f�ω�f\\O�2ث�����=�t��2�7\f��\10�36��FffJw���&M\ 4^DDV��\0\0\0\0\0���A��<g�|K�\ 6v�����60�C���+}�P�\7f\f\f�%��\f\12�>�����-G�\1f��M�:]\16��\Z�N/&�ɛ����3:Rv�_��?]����%0�<Y���^��k(㸆E�\\ۙ*��_\19k|l�[��U7T�K}�$d�̈���\0\"�ګ�#\ e��g�0CS�*\19�YN)��vk{����\1e�9�=e�:�IB�\15,~\17\ 2W9\16ʛ1�Nƒ�Z�%UYR�Fu==72�����>��^�w\fg�\ah��F˭\15�3橯c�\16`��j�G�f=h�R�\1c     Ȫn������G)#I�\15&e\14��6�96\0\0\0\0\0\0�\18\1e\1cL4/���6v91��!�\r�)�,�~*�Rg#UR�ij�\"��rN������P�kJ;�m�\ e>�b���\ed&\17X��\ e��\18�Fޭ�b�\e�48�K�K�T\\�h^�Q̶#I\Z�hWe+_ͺ���ɧI;�\n�\7fF\17��.V\17w)7\a|<�f�d�O�̚Xi��\1e�>�\10�U-\7f\14�R��/��\7f1�\ 3���.�t��2fs�n��\ 4\10i\16E��u?b�D�V��2#�Ca��u3��3\14�q2�\15���j�w���\7fZ�����qN?;�^��X���R#\ 4g3�Dj�֣��&����\1f�\nI*�)\14�;-�\11����x�j�7A�\1e�%Gi��\13ŢV�8��\1cTN�BV�ER��\14e�*��������W�ZMQ�i;\19iR*h��-����\0�>�$\0\0\0\0\0\a�!}���\bLv�x(Ʋ�9�<K��ig\1c˘�(��E��m\15dߕ1�L��>3O\"\no�\18H�P��Q\15iJU�;G�\13\\/��e>\19����o\eQ�{hnW�\19^\0�S���8��{�\"Λ\16��JK\\�*��G\18��1)|��\'s6\ f��\1d@��M���o+@�\ 6:�e\buw;uY�*9���r�O\13l4��YL��Բ3Q#�\"5\19�E}�\ 4q�SS��G\ 5�HRb]{\1f~&�B\n�q@�wg\1ev�Q\ag_��=\16�rcW6�EP�j\"؊��v�ׇv�{\13:׎�V\r��}L��dD[u��_^�\v\7f?!y֑p<[L�^�Z}�ӵ�\e���\ 5\ 2k;[cJ.ɖ6���鲔��$/D��Y[�kwR��\12D���\0\0\0\0\ 1�.n���\17Nn��v\rv\16�sv�upVV6�;o̥��\11\11\11��\1fM���\'\18�x��8x�-��\1fa��\16���ES������l13K�\12\7f\v�Yx%���rJ��rR�Y�5B$�e�=4�_��ć�&��N\Z_�����k�\1c��H��Q;wdW/+�^&�����)5\13���i\17�(��\11�[���xr�I�W�+�]}f,�\n��\13^G��,s���\13���J\'8ӫ�\13\ 4�zL+Z�%l����$�Y�(�:�\19��]��6��\0e�i%v��]�J�\16d{o�?�$��{�;�SؔI-�[l;�\16�Ǣ��\18�e�Ŏ3\17l�b`cn��F�v6{\nm\f퍍��JZ�������\\��dJ2�\1fڀ��\e\1d#��o�\ 6�p\ 4M�Nӷ�w��8m�2��i�$��d��m�$E��jD�\1c�M�r\"�b�v\aKȴ���4��\18��s���܈�\Z��S�E�NU\'����|�{u��\ 5�H�n�\18�0B\1c��a�G\1c�\'�w\e~�x�-���5\1e�:�\1d���\11�����@\0\0\0\0|�(�\\\7f����-e�s$\v\1cc�\'        4�W\"�+\16H�\ 3Sw��:�\19�%�25�Ȉ׶ܜ�3B�\r���W\\e3���4hё\19��/�Z�q�&����%�-¢��$ʄʺiS2�g�@      +��m��RӭV��NQ\\\17�5�[B챌���h�x�%kk9\ 5�����1&\ 5rQ%Hj��<S����fJ�o�iB�H��3���IY��*Eґ\17\7fO����c$\0\0c��\0w��\15����:9\ 1�\"d=y�#\1e_M�3wg\19�uӬ1�N\12ؔ����.��6���ar:�7�D\12?��\"�U�Ԉ\15Xmn�-��f[��>�p�\ e\e�՗��h����tזf�\14��,��\1c��a��\"�\11�ڪ\14A�@d�&�b\n4�cI+\0-��R�V�^��\7f��_g��G�<\0\0\0\0Wc����3�M\1c214��\bV9&\19�n���)\1c�мs\1ec73MB/\aǬD�<�%eP�J\1fX���������\ 1���G�\11�Z��!m_U���X:�,\1fm��0�\10y#𖦳U2SD�\"�\1d9\f�I^��)�#�\r2��]�\0\0\0<;�~�\ ebj��\ f\rmk;^I5\19��]2�8�)�~�j�2K�!\19��d\fd�\17����FI)\f���]�\1f_���8q�����:j�:�ű\e\eEڱF����n`���=Z�qmL����}��$����J��J�Zi��w\1d\ 5h�tK�->�)�����t��%\Z�y&��\b\"$�r\160~Ʊك��)23�T��[\Z����:\15�L�L��*�{�f\1c{�^|m|D5��Wt�R�y)d��z�X�\1c.�QD��&G\19\"$����#�Y\16�T/�R���B��rMŵź�\e�쭶�}�>�{���v�\1f�\0\0>_��;.&ƹ\v*H�\15\18�6�L\'R\v�$�j�\12huzuQ\1e�vCQ���EҦ�\12:y}�\1dƚ�U�,kJ!�Y>}��Fк/no��3�NZQw35\19\1c�r�\12�+����d�JRDv�е�mO��F�\n\'�k~�|�H��3�\ 38\0\0\0\0\0c�GT��/]�/����_?��F\17�9�2\11�G\ 4I�\11���MZ��1�\'(����l\1c3�A��KuŒ��RM��4��w�$ԙ!�(��RH�\'���~.3,���3u\v(�s�@#.\12m1H�wK[���:��v\etG\'9&2�D�$���N0�\ 4Yu\n�n4�:J_���# \0\a+��ˮ��&8�H\Z�W���ҾSi����dr��؍e��d�}K���\11{�L��:1\rqjN���ě\17�(����Z735<Le��%u2R�\"\'��E�D{�l\'�\0\0\0\0\0\0=\v�W��1Wή1�n\ZݪLV��,��\15�ګ��V0��^�`q-O�52df��Jy|\18�e9\r���O*\15\10\19\1f���$=�\09���.s�\18\Z�\0�&�V�� ��[u;�\vۺK�_\13Q(��dȽG\ f�\Z�3f�k��u(\11֘j�\0\']P�W��s<\ 3\10����\0u\ e\17�{n���\0\0\0\0\0\0\ 1\0~�V-K�h�eb*�K \1e�������dj��)���{t�O�\1f���$=�\05�Wq/\7f4��hBhи��O��.v�\e\19]��    ����+�~i?�q\ f�{\13(�\ 6\\1\7f\1d\ f|r~q�\\����I�?s>��T��_�s��\0\0\0\0\0\0\b��Ɣd�~�\ 4?T�\0��2}��nj눝\19�F��\7f��\v��o1-�\7f���y��\19\ 3�    ]�\a�č��\ fh�����v�9n�Q�H��Ȍ�m��{��\1f�>\18��m�\vH\11:�����5�\a;�{�#RT��K��y~���2����v�\0\0\0\0\0\0\a\ eu�hJ8��=�U�Ch<�^;������F\7f     �[���L�6�$�\ e�\0\0\ fEJ]�]�z\7f��2��ƣ�s\19��zT�8ƭ�{\Z�x������*P���}��\vc�鷐��\0\0\0\0\0\0\Z\7f���I�7�I�wD�\0&\12\f�q���-Î�>�鿡���\r�\0\0\ 1��%H���?�����yt!�\0\0\0\0\0\0\ 3\ 2��\Z�)V�F�ַ�jg��f^D{�\vo���x\0\0\0\0\0\0\0\0\0\0\0\0��',4,0,'','','',''),(26,2,8,'75859b10b880d425','5b0e9c6920adcf8efafaf3743d0e0c6c','2017-09-07 09:16:42','2017-09-07 09:16:42','','','Contact Photos','3.jpg','image/jpeg',80,80,2703,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0P\0P\ 1\ 1\11\0��\0\1f\0\ 1\0\ 1\ 4\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\ 1     \n\v\ 2\ 4\a\ 3\ 5\ 6��\04\10\0\0\ 6\ 1\ 3\ 1\ 6\ 6\0\ 5\ 5\0\0\0\0\0\ 1\ 2\ 3\ 4\ 5\ 6\a\0\b\11  \12\13\14!1Q\n\15\16\"Aq\17#���3Sa����\0\b\ 1\ 1\0\0?\0��M5A\10\ fQ\0��j�����ǯ<��\1e��_�T\ 4\a�@\7fZ��i����\149\11\ 3��\7f׾�*��)��{ڥ����J�Y�[6h��e�\v�,u��$�\1c1����t�KvD3%�\7f��g\11[I�\17\16\15_:\15kƵ�J�u��B��7��\'vX3i�Rj:�G���*�e�\0\ 6��<C\19S��ש\14�kGH8�Z���!�ܶ;\18HiQM�\f�pN\13���\1e��Z��$�b�\b\1d������~� ��]��vG�X��e�\0P̚�k\12�C�\18G3H�޽��O�/l��x\0�\a���\ e?>a�\a�M|�i������:{Kٞ�w,dRt� aK�B�f����\f\ 5}��z�a�o�\1f-fr�����@@D5�\7f\ 6֮\1dV��b�S�&��-�\ 6L��m�[�x���S!�����\ 5d�\"ἵ����1�/��n}����\12��U2�����e&�\15T��`a�U��\e4#�``�!\e\11\r\14ũ\13l�>5�t\19�l�\n�(\"�i�\nP�)�\'��\f\1e�r�c-�^j�\15���e�\1e[��\16ZE�t\0���l�A�-��\'!\ 1�~��N.A�m2���p�\rjX��OR_��\7f�]�d\1c�r�8�\10�$+�\'\v۬�<m�1܇������G/OG��Td\19Y+s��\1e黗-�쭤��}\16;W��V��lC��U\ 1���b�Uȴ��)H����\11��\19e�!�\ 4\16/�\ 5��SX\ eA\1f-zv�i�e���s���^�q�Y���9���9(h��9�H��F�`�kd�)���\ 6��I$B��\1dr�\n\"n5�����}.��  9�l2�m\1f&\12�\n�b����\14+$V�`\ 3\n�\0++�\1c\13��9W�\ 4�0�h�q�q�\1c\a\1f�����\11\ 4G�\0G��Z�>.      ��Ӭ[��\ 1\ 4���8\e\a�o\rb\12�O\17��5�b61T\Z�EW�%B�NnTJS�d�͸\13�\"a�ۦ\ 6\14��˧~��m�7\r���nx��nd��x�\eZ�z�1\ 6��\11 ���\ f��|�#;��Mu_5I�7,�\"����;w\b8L���\v\14SY\15�7ڪJ�c\11D��\ eS        L\ 2Q\10\1de[��\ eD�m��a��c�ܜ��r\16L�L�\ f\b        ���/m_�˘\15�~t�F�P��?��|�R0��c[�\17�w\1dco\19�W\ f\ 6u�4,Ê�.8�%T����La�3\19�兂21o�*�I�B�e�߶r�\ e�8\ 5Z;A\17H��q먆�\17�v��;�61���a\\?n�W\"\1d��\ 6J�ݘ1���\ 4N��+^��%9A\"�\1c��tb(C�GX7|.{\13m�Gt{�ꧼ�\ es\r�\Ze�jR��\ 4�5��\16|�]\'r\14�1H�\15\1fŻ��F\f������gl�45V%4�/\14�P\0\0�\ 3�8�\0�r�Mx\16�73�v���ۃ��(�\1e+�0�LX�ߘ�QC\19B����`�\v��\14��[���0\"�d��6j�1:������>��c�\ 33c��2:sH>p\\ud��V.���U}��Q��L��>�C�u9$��2���$ݦ�\94\e��q�i��l�4���j5z��h���gQt��C���-9�T\']�\16�l\ra�R�5\18IgM��s)Y��4A��5fѳS�\11�tZ%?\19���:\ 5f\ 2�J�ð�Ujuh�P5��\fZ\ 5m\e\ f\v\11\1c�,����!\10lѪ)��d)H@\0׏n�n5M��;����uk8bێ9\7f*�\128w\b��\1d�8�\v6�\18��{^�\16Sl�P�MgL\12ISwg8\ e!\1f\ e����\a9�\13��\0P\18İ��\'e\ 42�ڲ}�\16����O�����j%�D�`�V����M��\19f�J�4�jQ�}�\16�N3�*�1{@b���\ 1\ f^\ 3��\7f\1e�\\k�!令#�\b�\0���#�X�3]Rz�l��\f��\0��        �#�\r�D1t�[gfZB*�Q���\"q*�у�j�j$�V�ZbE\13\ 3��\f�YP\10Q\15�8��~1�$\14\fs8�Xh���FD�G7M�|ls\ 6��ѓ\ 6-QI�6mRI�V�$�       �$�P�}4��.����!�^�5\n�⾪���\r��\ ff�YT�}ګEM�|�U\13\ 3\bs�c\13�=�\ eG�m������K;Lcw��O�0Q�=�{h��c):Ě       \ 1c\ 2r�\\����\1e���n\ f귺��{�i��U���_7�\1d&��L��7)ӷ~\r�K�\1d���^f�X�,%_q8Z�)\16��+���\16�_��#�v,��d���S�ѓդ�\e�y��y���\r�\17�?�\ f�^Rv��Y��vS\17\10�b�L�>����E�e\f^\ 1\17/q:\ eV!\a�Y���d7\17��M4�V }��+�J��ض��\vWH\v�K*��$ y*���Q����1J��#��M\ 3\1c�P��H�`!C��\a�~�T��7<\b��\1e��_�]CL\7f�~I����o\ fݒ���U��\14\0\15uE������}�       �V֘~��\f �$\ 2R�����M4�P�C\19�����/\ ea3-�dLn.���\ 4�c��dۛώЌb�\148�0�b鮸4n\ eN�WJ��uW\ 4�ި�c�Q\ 4��\1d\11\13�rd�\" ��TJ\0*\18G���i���͸�+�E1vF�hG\1d�敲�MU\10\ 3\7f�uQIC\0qɓ/!�\ 3�ֿ��',5,0,'','','',''),(27,2,8,'75859b10b880d425','5b0e9c6920adcf8efafaf3743d0e0c6c','2017-09-07 09:16:42','2017-09-07 09:16:42','','','Contact Photos','3.jpg','image/jpeg',48,48,1755,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\00\00\ 1\ 1\11\0��\0\e\0\0\ 2\ 2\ 3\ 1\0\0\0\0\0\0\0\0\0\0\0\b  \0\ 6\ 1\ 4\a\n��\0.\10\0\ 1\ 4\ 2\ 1\ 3\ 3\ 3\ 3\ 4\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0      \11\12\13\14\n\16!\151A\"#$23Qa��\0\b\ 1\ 1\0\0?\0���3�c\19�s�\18ǜ�?�1���{�p\ fK����]�_�\1f�r��\0BsK�]�n\v4d�\7f\ 6fZ%\ 2ӣ�\v³+\1e�r0�m�&��i��-��<u��\v`��Xh�K\ 2ɤU-y�͎\roc��e�ښ�B$���.�>jA�g>���%hM����%�C\1c¿p��O!����6���x�i�e�5�\ 5��H�)LW�l�e����!k��:\14�T���h\12�q\ f2ڰ���NݴM\15�j�6�\10A��7�?qY��ˌ�g�Z�[D�En�\17&Z]-�mnB��a!�[v\\�h��2Ba\ 3RI?�\16��\1f�<~/�\17\ay=d�G����\e��3�JM�[ݨ��\10`   ��ԭy���N�\ 5�\0ɚȥ֐Y�ʈ���O`=�y��|\vҼ�&�-F�m\12f��+`<�\11q{\ 2�*En՘g\b���$��Y��`��P��#\ 6I%�;�<�z�+��<\e��#ۣ��g��dl9�\10n��&���\7fek�ٵ���)X�C\16�dz�D���\ 1�0�N%HiI�m���R/hvߠ��)5>B�~N��M�X�}��\']�؜�\Zlcޒ�\12Z��FQ.6��?\11`       �/����>�>I�X㞣�`�3���lHm%X8�=�j�2.�K2�1$�\10�����7�\ e\ 5�2�)�I1��Cw����n^\16i>%T%�cƺ�x�]�l�_�/�C\1e��X�\11JR�\ 6B�y��\ 5Ÿ�Q-�+μ�+ug�\\�y�J7\1et���{2U0�\1dOH��m�YF]q�Z�a\12�$f\13�d�B\a����2�F<��c.:�e`��Z�_���|������%�n|\7f\ e��KQi\Z�WK�\12�y��#X0\v6��6\18\17�&,\10S�MP��\14�;\14ę��;F�imE�M�I�MiF��܎L��N�W����J!O�\12Vi\b��2zA\n(�$�G�#\n%�{�^s*]���p��\\�2n�Et��ܬ�fݏ�Z\Z�m\0�:\1c��2%�.�؁D�3)�[F�\ 5�����a\f\1d��\1c�],2  ]�ˆ�ۮ��\v�Z�ϯ*kj4=���N1�����-c��;l�:\ 1\ 1@�Ϋ+�������O�WW��!א^EJGNFG�Ü$�L�B�FI\0CE�x\ 6��C42�Z�$R�u��}����Z\1cB��c=/>�z����\1d��XK�3x�q�,�8�+�\1c��-�#��?*\ZF���\ 5��V)/%xR3�e�\ 60�\b(b0�\8a;#\f;\bKl��\r%�Ye�c\bCM6���\'\18JP�%8�1��z�Wm�J��e�Z⁜�[�&+\16\18i!�.>V\ ez8��X�E}+d�\r\0�\ 6!�P��eաi�U�t\12v��O�;}qj�e0åi��\15?~A�\1d-\11��٘H �q�-�b>\f\18�\Z�+9�#7�x�1�\Z�\Z�e�\ 1��=`�t,���\n�\0\"\nn:x%zs�Ϥ����?�z|��գ\18�c���u��S?�\7f���K��R+1Uh�a���hTc\1e�%\ 4\16A��1�>?�B�\0����',6,0,'','','',''),(28,0,8,'75859b10b8813eeb','db4dd6c60ea3b83171c94ae1c492fa8c','2017-09-07 09:09:29','2017-09-07 09:09:29','','','Contact Photos','22875ea1ab42e09a2f1d3869cd6edfe7-4.jpg?ts=1504775234','image/jpeg',175,175,5493,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0�\0�\ 1\ 1\11\0��\0\1e\0\ 1\0\ 2\ 3\0\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\n\v\ 4\b      \ 2\ 3\a\ 5\ 6��\0B\10\0\0\ 5\ 3\ 2\ 3\ 5\ 6\ 2\ 5\v\ 5\0\0\0\0\0\ 1\ 2\ 5\ 6\ 3\ 4\a\b\11        \12!\n\13\151A\14\16\"Qa�q�\17%23�\18#$&5BR����Es�����\0\b\ 1\ 1\0\0?\0��\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն����X\Z\'���p|L�sN��\1e�}�Y%ZR|�\11(�J*I&+�rJ\18#�yI)%l�Z�,:��i�(��ϥ�)���J�����*hχ\18o�мI����$�\16Dj-� (�C\"�cI(s���_�L�:g��\v`w�I\ 5����9�s.w�Y���a\7f���C\"3:I��e�~��g,�\1dڮ�Ϩ�6�&�t\ 1�t�\ 3�/iK��xv<�v   #=�\13{�$�ѹ\16�Idу=��#�}�G���!�\0\0\0\0\0\0\0\ 2*|z�B��\1c6�Zp�]�s\"�A�ڝ\r�E\7f\r��{�b�\1d�Z�HI��j��>Eq�E�\14˒S.:t�7\19�Vg�5\15�u;��Ys=�YFZ�Rk��}����j��ʮHnl�Ifh���M6&\ 4\";M\15\13�DD�]��¿S\1cR��\1cc�\eh�B�\14�{��t��Ƥ\ f\16G��V�Mʽ4$�&2\ 4��\"����%���{̈}9$����489hۆ\ 4\1d��    @�e��崭�\Z��ط<��m�(v&�Ne{�ȵ\1dE�\ 4q\14QM\ 6I��\Z�uO�h���D<�\0\0\0\0\0\0\0qۍG\12fn\19\Z\18��\7fb��R���\18\ 69~�2w�\12��o\nstET�x\1e<d��>��H��l�\16MT\1c���:�\ f!M2��a��L��c��/�Ri��Cr���\1c����\1d��T�\Z�u\15Υ$�F�\10IN��춆�q�5��S�,-B��c�^�op�}AW�\108�Y)�c?��T��2F\18i��դkI��$b�Փ�鐸�A�\e�\\<��\ 1�F\ 2��h�ŭ�ܿIk�\17)�3\17^�N�ٓ�wu]��k�U4�J�\17��8�W�*�F�7�`^U:V��ң�\15I%�\1c̷?��|����C{�Oh�[�:r�qğ���  ����0\\���\Ze0\\�ޅ\Z��.���\1f�RvZ�\13�NOI\n#��\15���O\fv���-ik�\1d\ eF\a���\1c\ e�o�;�E�I�\14���ձ�\14�5�\Z�Rv!,�\1e�\\4;����MyE\1e�3��t�a9��B��:̌�[�X�T���h_\"��r\194k��*�F\\��U:��M�z�\0�u#�\0�C�\0\0\0\0\0\ 2�>�f�\1cr���Z\\kp�q\ 5Ҿ.oU�u������q-S\a�CJK��PSǬf�2JJ��G�D\fYm���+>!҄�^�\16\n\'��/{}\f�W7\16��-\18K\1f;�K���kI��\v(�;T�F��\r��H̖J�\10\0��J�s\ 4j�\vK��\0��m\1f���p֫WV\'�\"Iٹ\12jTlx�;ҤO,R\ 6\15��Ԑǖ�\fedK����:�8���<)5h�\17y Ó�w        ��r*-�\ 50��\7f�����Bf��J&  u:fIV�r�\15:rjh.p�甴���9�\fM\1e��H���>���듲pg�BҲ4\1d:{-��RT�P�MHZ��Rw+|�)�D�qKєW2W��e�\10���j\ 6\1c�O{F|��aM)xh��\1c�ʴH��-�IF�\163捩Gِ\0\0\0\0\0\14�q���d\ e-�B\1f\\*�u���D�Z��nǮ~�4\19��gfG�y�N��-m�ݯ�\em(ָ����m����WW���IoԺ������w2I\18��HX%�Lza�֞X��Y��;\ 1�$�D�Q{}\12�54;9�)k3S��\1d\1f\16�2%-|Ĕ��\b��\0\11��E�ɧT|+2�B��B�H�U�y���������K>Yk�[\ZYN\f��\"ZyTGV\ZĢ5\12MGR�OO��&7���\v�;_��Ou��\1c[7���O��?�0�Rv�Vg\13#۔��+���E�1\16�[\11ٲ\0\0\0\0\0\ 2��;X��\Zqz�\ 4�qJ����2c:�#��\evIK^Fk4�B/�X���﹑\19\19\1e�E4�eh�M8�8(�:�\0<b\e[�M�=eMB3�\0    �\7f��\a���\0\0h�\13��4xrkꬓ��\"�Ƥ�O�?g�����_×�����Q�S��� o�9�3�ˉ��&[\15\7fw���g�n�<�VF�\1db\11\ 6f�\12����N�:\19�ɠ��\11\11Z*\0\0\0\0\0\ 2���\ 6�\\��.�\19۷��C\1c���\ e6����yC\11��2t2$��\183�K���\e\e��\1fX~B�7��tZ_`j�8��?&n2.�x��Iڙ\7f���\17��,�Ø�f6�1{�7�����\19\16=snd�;�\19|e��en��T�Ri-�$���2\"/�\0\0��j�\\�:Z�0�\rNԨf\1de8�\13�٭�\12\eLz�����$�A%\n�T��\\    \\�[*l��;\ZJ�jt�UeJ�\19������ק����a{1�1��\1d�\Z�\e.�VdϚ����Y�#���\1e�����J�p\'\"����gw�\1c��&�T��R�Xڌ��\0\0\0\0\0\ 3��c�{0q0оS��h�����<���7h������]I��UJ���D����:�g�\e{]BA�(���8�i����m��]b��;�be\ez�]��n@���.�.�Qs\11�{�G���2؍$j]�]��\7f6ꏇ{&�$��+e�\18^�\1c�X]ܤ�\1d���%�\15>s2ia���{�\b��C\19T��\0XR�J��������\adz�]���\ ed��݉�      � �,�1r�~�\1e�6���DdG��OB�g��&f)��e�+/�4�T�Q�j�����Ѱ�~w��c�8���ڤF\b�gT�ճ�G�[�M\')��?J\14�UDR)6v[�#E3��\1c�$n��=�J��K�\'�D��q1�8��򄭴��7�(��U\1f����ueL�����t�v2ҤT�K�[o���\0>}FH\0\0\0\0\0\ f\ eB��\0��\bLv�x(Ʋ�9�<K��ig\1c˘�(��E��m\15dߕ1�L��>3O\"\no�\18H�P��Q\15iJU�;G�\13\\/��e>\19����o\eQ�{hnW�\19^\0�S���8��{�\"Λ\16��JK\\�*��G\18��1)|��\'s6\ f��\1d@��M���o+@�\ 6:�e\buw;uY�*9���r�O\13l4��YL��Բ3Q#�\"5\19�E}�\ 4q�SS��G\ 5�HRb]{\1f~&�B\n�q@�wg\1ev�Q\ag_��=\16�rcW6�EP�j\"؊��v�ׇv�{\13:׎�V\r��}L��dD[u��_^�\v\7f?!y֑p<[L�^�Z}�ӵ�\e���\ 5\ 2k;[cJ.ɖ6���鲔��$/D��Y[�kwR��\12D���\0\0\0\0\ 1�.n���\17Nn��v\rv\16�sv�upVV6�;o̥��\11\11\11��\1fM���\'\18�x��8x�-��\1fa��\16���ES������l13K�\12\7f\v�Yx%���rJ��rR�Y�5B$�e�=4�_��ć�&��N\Z_�����k�\1c��H��Q;wdW/+�^&�����)5\13���i\17�(��\12�-�Z�<9sN���\15�.��\16j�M�   �#�p�9��h���ԥ\13�i�ʼn�Q=&\15�U\12�O�Qn�Q�Ԕl�a��\\�.��\e\\�\0�㴒�Mʮ�%y�2=�ޟ�\12]Z��B\1d˩�J$��\0-�\1d�F��X�\fR2�b�\19��X�01�[�#s;\e=�\Z\19\e\e\r&��QiOwM    Z�<�dJ2�\1fڀ��\e\1d#��o�\ 6�p\ 4M�Nӷ�w��8m�2��i�$��d��m�$E��jD�\1c����E��2�\ e��iC;�iwN1���C���\11�59��\"�~��O]����O�[��^T�f�1��\ 4!���\e�q�2y\17q��W�\12��K�Q�ө��\1d\ f\19y����\0\0\0\0\a��U��K\1e�r�X�2@��?bp�L�r+��d�057x������[S#Y���{m�̣4.��+�o5u�S8���F�\19\11�M2���\a\1d�h�/m2^��*+j2L�L���3,�}D\0���F�>�-:�i)t�\15\7f�Y��.�\18Ϻ�f��bV���Z�:Z��\12`W%\12T���3�>I��>Fd���F�-$�j#;*O$��)R�])\11}����[��d�\0\fz���~B�\1eпgG 4�L��=\ 4c��&n��3κu�6��[\12�8\12�e��T�Ҕ\e�.GUF�(�G��$^J�ڑ\ 2�\r��ſ���q��خ\1c��wZ���\r\18���n�����\e\ 5��Ù\1dL5>wv$Rb2{UB�?H\f���LAF�Li%`\ 5��\e�Tjѫ�Q��\0>�������\0\0\0\0\15��������SG\f�M%�B\15�I�y�[�뽊G?t/\1cǘ���P����\114�%    YT*���\">�a&}b��pij��\ 4a־x�[W�n��\16\ e��\a�b\'\f+�\1eH�%���L��3Ȭ�NC+RW��\nb��L�+�`\0\0\0\ f\ e\1f�!�MWp�᭭gk�&�4q��SG\1ee:O�-]1�Iw�#27������7�Q��%!�T2�C���\1f\ e0Ҵ>�\aMY�V8�#ch�V(��vv��\11����TN-��\1c\1c����\14~=I[��W�M5\7f\ e㿀�\1crn�u\ 5��e0�[\1d�Ν�\1d��X�$��!\ 4D��B�\ f��;0z>S%&Fxʗ1+cRղ�GB���)�r�]/q\fÏz\vύ����9��U/%,��/S�\1crC��j(�\\�d��$D���eQ\1c�ȵ��}B��j\15�+�n-�-��ܧem����3���뷐� \0\ 1�����q65�YRGX���:a:�\\�\'{V(�C�Ӫ���\Z����.�7p����\18�4�2��cZQ\ fz���_j6��{s}�A�Rrҋ������ӗx�\ 1^_է�$�R�#�N��+j}�\Z4hQ>�[����E�\0���\f�\0\0\0\0\ 1��\1dR�t�wؾ~�{�|�\0��0���        ��\"8\"M��/\ f�j��\19��9E��-�`អ\r-�[�,�&��oo��L�\13�)&��\r1E���E)<���q�d�\16ᛨYE���\ 1\19p�i�G#�Z��\ f��/{�ۢ99�1��$\11%,֪q�H\"˨T�q���R����\19\0\09_Ʀ]u\ f�1�\"@�Z��徕�M�ͿS#�F��k-��\'c�^�����bg\aYшk�Rw�_��$ؿ     E�\fϚѹ���c/nA+����\11=�b/\n#܋a=@\0\0\0\0\0\ 1�_��\0���uq�+p��Rb��if�H�F�^\ fʱ����\e\ 3�j}٩�#55�S����)�l\ 5�\"yP���������!�\0\ 1ͮ/1s�p���q4����\a?�\ 2۩�4�^��_2���De�\13\"�\1c?�k�͛��F�ԠGZa���uB�^w-��\fB�G���:l_��zK�\0\0\0\0\0\0\ 4\ 1�AX�/���\11����,�zO���n�{��i���l��O���q?\14~������\0�]]Ľ�Ҟ��        �B���?�(��\\levo\10\'��߮�l�������}�ؙG82����{��䏯��O]����������\e���\0\0\0\0\0\0D��~4�\'���!���FQ��{sW\\D�͒7-�s���^�{y�m����\ 3\ 68�\1f�J�(?�$m\15h{E\17v\'6����w⍪G/�Df[m�c��8�\0��ǿ�n\10Z@�Դ�o^ٯ(9��ܙ\Z��|�]����TG���fFC��\0\0\0\0\0\08s�|kBQś��ޭ*\eA�Z����\7f�:3�N�ߦ��e鷡$�w\18\0\0z*R�z����\ f����\Z���gW\r�S\f�\Z�U�kE��\16�ks����Cÿ���h[\1f�M��߀\0\0\0\0\0\0��׎JO��\ZO;�\'�0�g\v���yn\1cwd��OM�\f���n\0\0\0\ftQ*E�ב�\7f\7f��ˡ\f�\0\0\0\0\0\0\18\15-hթJ�Z4N��[S=�#2�#��[}O�g�\0\0\0\0\0\0\0\0\0\0\0\ f��',4,0,'','','',''),(29,0,8,'75859b10b8813eeb','db4dd6c60ea3b83171c94ae1c492fa8c','2017-09-07 09:09:29','2017-09-07 09:09:29','','','Contact Photos','22875ea1ab42e09a2f1d3869cd6edfe7-4.jpg?ts=1504775234','image/jpeg',80,80,2703,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0P\0P\ 1\ 1\11\0��\0\1f\0\ 1\0\ 1\ 4\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\ 1  \n\v\ 2\ 4\a\ 3\ 5\ 6��\04\10\0\0\ 6\ 1\ 3\ 1\ 6\ 6\0\ 5\ 5\0\0\0\0\0\ 1\ 2\ 3\ 4\ 5\ 6\a\0\b\11  \12\13\14!1Q\n\15\16\"Aq\17#���3Sa����\0\b\ 1\ 1\0\0?\0��M5A\10\ fQ\0��j�����ǯ<��\1e��_�T\ 4\a�@\7fZ��i����\149\11\ 3��\7f׾�*��)��{ڥ����J�Y�[6h��e�\v�,u��$�\1c1����t�KvD3%�\7f��g\11[I�\17\16\15_:\15kƵ�J�u��B��7��\'vX3i�Rj:�G���*�e�\0\ 6��<C\19S��ש\14�kGH8�Z���!�ܶ;\18HiQM�\f�pN\13���\1e��Z��$�b�\b\1d������~� ��]��vG�X��e�\0P̚�k\12�C�\18G3H�޽��O�/l��x\0�\a���\ e?>a�\a�M|�i������:{Lٞ�w,dRt� aK�B�f����\f\ 4\ 3�5���Ô��\ 25��\ 2\ 2b�%\ 1\ 1\10֡��\eZ�uZꅊqNL�����\192Õ�\ 5oY↚}L�VB�\0��\15�0���ւ7s\0�D�{I��N\n_�J;�)Tʮ>��)���UR�U���V�PlЏ����`�lD4S\16�M�8��\r�fѲ\ 4*H��i�P)CP���O\f3�{\ 5�a��%y��V�\ e)��yn��Yi\16E�\ 23�I�\19\ 6�Vh��\a��;  8�\ 6ݴʛG]��5�b~�=I~\1f}��vݐr��(��C����/m��X�H�r\1e\ eN*ߎ��\\==\1eZ�Q�ed���\ 4{��\\�����n��X�^¹Z���\ e2�T\aƓ�e�%W\"�\1f��\"��w\18FV\be�L�8$���@\17K�aM`9\ 4G�zv�i�e���s���^�q�Y���9���9(h��9�H��F�`�kd�)���\ 6��I$B��\1dr�\n\"n5�����}.��    9�l2�m\1f&\12�\n�b����\14+$V�`\ 3\n�\0++�\1c\13��9W�\ 4�0�h�q�q�\1c\a\1f�����\11\ 4G�\0G��Z�~.      ��׬c��\ 1\ 4���8\e\a�o\r�\12�O\17��5�b61T\Z\15EW�%B�NnTJU\172gfܤ�\b�lu遅-�r�߲�\e}M�{�2۞,�[�:�\0^2�֫\1e��A��DH.�a<��h_/���4�]W�R|��\'\b�ỴN��\ e\13*�.��\14�Ed�����\18�Q3�C��S\0�D\aYV�vÑ>\e~�X\7f{\18��\'?�\1c��,\135C�\ 2f�K�W�2�\ 5}ߝ$���+�O��\1f0T�\'cX����X��l���f��q�\v0�#\v�8�U(+�*�\18e\f�r�a`��[�J�\12p���rw휢���\ 1V��E�+$�z�!�\ 5�]�=�j33\18W\ fۮUȇb����7f\fj,�\13���׳>�NPH�G,y�\18\10�Q�\r�\v���u\11\1e�:��%Ü�hƙi����\ 1\'�l;��\"WI܅4�R+E\7f��n��Q�*?&a%:��6�\rU�M-��(\14\0\08\0�\ e?�\\��^\ 5���ᝠ�+�����>����*�\16)��1�P�P���a�$\ 2�b�:�V�p0�\b��97M��LN�!a-��\ f�oX�\0���y�L���\ f\17\1dY#*\15���\15_n�T~\7f\13%{����]NI${L�quI7i�0�\ 6��\1cq�iw\e\'M-��\Z�^���<��\19�]/)\10�u�\vNxU    �m���\ 3X{Ԭ�F\12Y�c(��Vk0M\10l��Y�l��Df]\16�O�u:�\ e�Y��R�0�+�Z�Z!�\rv�\ 3\16�[F���G&�(��-�D\e4j�h��\nR\10\05�۾ۍSw{a�\ee�;q\1dZ�\18��_ʴD�\1d��d�r�6�ͺ�T�=�J\v)�H(r&��   &���\1c\a\10��n�k�\ 3��      �\7f\fbXBٓ��\19GmY>�\vE�l�\'�x�|�5\12�\"F�r�O���&��\f�y%^\Zn�(�:ԓH\15�*�1{@b���\ 1\ f^\ 3��\7f\1e�\\k�!令#�\b�\0���#�X�3]Rz�l��\f��\0��    �#�\r�D1t�[gfZB*�Q���\"q*�у�j�j$�V�ZbE\13\ 3��\f�YP\10Q\15�8��~1�$\14\fs8�Xh���FD�G7M�|ls\ 6��ѓ\ 6-QI�6mRI�V�$�       �$�P�}4��.����!�^�5\n�⾪���\r��\ ff�YT�}ګEM�|�U\13\ 3\bs�c\13�=�\ eG�m������K;Lcw��O�0Q�=�{h��c):Ě       \ 1c\ 2r�\\����\1e���n\ f귺��{�i��U���_7�\1d&��L��7)ӷ~\r�K�\1d���^f�X�,%_q8Z�)\16��+���\16�_��#�v,��d���S�ѓդ�\e�y��y���\r�\17�?�\ f�^Rv��Y��vS\17\10�b�L�>����E�e\f^\ 1\17/q:\ eV!\a�Y���d7\17��M4�V }��+�J��ض��\vWH\v�K*��$ y*���Q����1J��#��M\ 3\1c�P��H�`!C��\a�~�T��7<\b��\1e��_�]CL\7f�~I����o\ fݒ���U��\14\0\15uE������}�       �V֘~��\f �$\ 2R�����M4�P�C\19�����/\ ea3-�dLn.���\ 4�c��dۛώЌb�\148�0�b鮸4n\ eN�WJ��uW\ 4�ި�c�Q\ 4��\1d\11\13�rd�\" ��TJ\0*\18G���i���͸�+�E1vF�hG\1d�敲�MU\10\ 3\7f�uQIC\0qɓ/!�\ 3�ֿ��',5,0,'','','',''),(30,0,8,'75859b10b8813eeb','db4dd6c60ea3b83171c94ae1c492fa8c','2017-09-07 09:09:29','2017-09-07 09:09:29','','','Contact Photos','22875ea1ab42e09a2f1d3869cd6edfe7-4.jpg?ts=1504775234','image/jpeg',48,48,1755,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\00\00\ 1\ 1\11\0��\0\e\0\0\ 2\ 2\ 3\ 1\0\0\0\0\0\0\0\0\0\0\0\b   \0\ 6\ 1\ 4\a\n��\0.\10\0\ 1\ 4\ 2\ 1\ 3\ 3\ 3\ 3\ 4\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0      \11\12\13\14\n\16!\151A\"#$23Qa��\0\b\ 1\ 1\0\0?\0���3�c\19�s�\18ǜ�?�1���{�p\ fK����]�_�\1f�r��\0BsK�]�n\v4d�\7f\ 6fZ%\ 2ӣ�\v³+\1e�r0�m�&��i��-��<u��\v`��Xh�K\ 2ɤU-y�͎\roc��e�ښ�B$���.�>jA�g>���%hM����%�C\1c¿p��O!����6���x�i�e�5�\ 5��H�)LW�l�e����!k��:\14�T���h\12�q\ f2ڰ���NݴM\15�j�6�\10A��7�?qY��ˌ�g�Z�[D�En�\17&Z]-�mnB��a!�[v\\�h��2Ba\ 3RI?�\16��\1f�<~/�\17\ay=d�G����\e��3�JM�[ݨ��\10`   ��ԭy���N�\ 5�\0ɚȥ֐Y�ʈ���O`=�y��|\vҼ�&�-F�m\12f��+`<�\11q{\ 2�*En՘g\b���$��Y��`��P��#\ 6I%�;�<�z�+��<\e��#ۣ��g��dl9�\10n��&���\7fek�ٵ���)X�C\16�dz�D���\ 1�0�N%HiI�m���R/hvߠ��)5>B�~N��M�X�}��\']�؜�\Zlcޒ�\12Z��FQ.6��?\11`       �/����>�>J[X㦣�`�3���l8m%X<�=�j�2.�L2�1\"�\10���D�7�0�Ĉ2�+�I1��Kw����n^\16i>%T%�cƺ�x�]�l�_�/�C\1e��X�\11JR�\ 6B�y��\ 5Ÿ�Q-�+μ�+ug�\\�y�J7\1et���{2U0�\1dOH��m�YF]q�Z�a\12�$f\13�d�B\a����2�F<��c.:�e`��Z�_���|������)�n|\7f\ e��KQi\Z�WK�\12�y��#Y,\v6��6\18\17c&,\10S�MP�Δ�3\14ę��;F�imE�M�I�MiF��܎L��N�W����J!O�\12Vi\b��2zA\n(�$�G�#\n%�{�^s*]���p��\\�2n�Et��ܬ�fݏ�Z\Z�m\0�:\1c��2%�.�؁D�3)�[F�\ 5�����a\f\1d��\1c�],2   ]�ˆ�ۮ��\v�Z�ϯ*kj4=���N1�����-c��;l�:\ 1\ 1@�Ϋ+�������O�WW��!א^EJGNFG�Ü$�L�B�FI\0CE�x\ 6��C42�Z�$R�u��}����Z\1cB��c=/>�z����\1d��XK�3x�q�,�8�+�\1c��-�#��?*\ZF���\ 5��V)/%xR3�e�\ 60�\b(b0�\8a;#\f;\bKl��\r%�Ye�c\bCM6���\'\18JP�%8�1��z�Wm�J��e�Z⁜�[�&+\16\18i!�.>V\ ez8��X�E}+d�\r\0�\ 6!�P��eաi�U�t\12v��O�;}qj�e0åi��\15?~A�\1d-\11��٘H �q�-�b>\f\18�\Z�+9�#7�x�1�\Z�\Z�e�\ 1��=`�t,���\n�\0\"\nn:x%zs�Ϥ����?�z|��գ\18�c���u��S?�\7f���K��R+1Uh�a���hTc\1e�%\ 4\16A��1�>?�B�\0����',6,0,'','','',''),(31,4,9,'75859b10ba668548','adef541d0f334352940ad40251e15158','2017-09-07 09:17:49','2017-09-07 09:17:49','','','Contact Photos','4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575','image/jpeg',175,175,5493,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0�\0�\ 1\ 1\11\0��\0\1e\0\ 1\0\ 2\ 3\0\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\n\v\ 4\b      \ 2\ 3\a\ 5\ 6��\0B\10\0\0\ 5\ 3\ 2\ 3\ 5\ 6\ 2\ 5\v\ 5\0\0\0\0\0\ 1\ 2\ 5\ 6\ 3\ 4\a\b\11        \12!\n\13\151A\14\16\"Qa�q�\17%23�\18#$&5BR����Es�����\0\b\ 1\ 1\0\0?\0��\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն����X\Z\'���p|L�sN��\1e�}�Y%ZR|�\11(�J*I&+�rJ\18#�yI)%l�Z�,:��i�(��ϥ�)���J�����*hχ\18o�мI����$�\16Dj-� (�C\"�cI(s���_�L�:g��\v`w�I\ 5����9�s.w�Y���a\7f���C\"3:I��e�~��g,�\1dڮ�Ϩ�6�&�t\ 1�t�\ 3�/iK��xv<�v   #=�\13{�$�ѹ\16�Idу=��#�}�G���!�\0\0\0\0\0\0\0\ 2*|z�B��\1c6�Zp�]�s\"�A�ڝ\r�E\7f\r��{�b�\1d�Z�HI��j��>Eq�E�\14˒S.:t�7\19�Vg�5\15�u;��Ys=�YFZ�Rk��}����j��ʮHnl�Ifh���M6&\ 4\";M\15\13�DD�]��¿S\1cR��\1cc�\eh�B�\14�{��t��Ƥ\ f\16G��V�Mʽ4$�&2\ 4��\"����%���{̈}9$����489hۆ\ 4\1d��    @�e��崭�\Z��ط<��m�(v&�Ne{�ȵ\1dE�\ 4q\14QM\ 6I��\Z�uO�h���D<�\0\0\0\0\0\0\0qۍG\12fn\19\Z\18��\7fb��R���\18\ 69~�2w�\12��o\nstMT�x\1e=d��>��H��l�\16MT\1c���:�\ f!M2��a��L��c��/�Ri��Cr���\1c����\1d��T�\Z�u\15Υ$�F�\10IN��춆�q�5��S�,-B��c�^�op�}AW�\108�Y)�c?��T��2F\18i��դkI��$b�Փ�鐸�A�\e�\\<��\ 1�F\ 2��h�ŭ�ܿIk�\17)�3\17^�N�ٓ�wu]��k�U4�J�\17��8�W�*�F�7�`^U:V��ң�\15I%�\1c̷?��|����C{�Oh�[�:r�qğ���  ����0\\���\Ze0\\�ޅ\Z��.���\1f�RvZ�\13�NOI\n#��\15���O\fv���-ik�\1d\ eF\a���\1c\ e�o�;�E�I�\14���ձ�\14�5�\Z�Rv!,�\1e�\\4;����MyE\1e�3��t�a9��B��:̌�[�X�T���h_\"��r\194k��*�F\\��U:��M�z�\0�u#�\0�C�\0\0\0\0\0\ 2�>�f�\1cr���Z\\kp�q\ 5Ҿ.oU�u������q-S\a�CJK��PSǬf�2JJ��G�D\fYm���+>!҄�^�\16\n\'��/{}\f�W7\16��-\18K\1f;�K���kI��\v(�;T�F��\r��H̖J�\10\0��J�s\ 4j�\vK��\0��m\1f���p֫WV\'�\"Iٹ\12jTlx�;ҤO,R\ 6\15��Ԑǖ�\fedK����:�8���<)5h�\17y Ó�w        ��r*-�\ 50��\7f�����Bf��J&  u:fIV�r�\15:rjh.p�甴���9�\fM\1e��H���>���듲pg�BҲ4\1d:{-��RT�P�MHZ��Rw+|�)�D�qKєW2W��e�\10���j\ 6\1c�O{F|��aM)xh��\1c�ʴH��-�IF�\163捩Gِ\0\0\0\0\0\14�q���d\ e-�B\1f\\*�u���D�Z��nǮ~�4\19��gfG�y�N��-m�ݯ�\em(ָ����m����WW���IoԺ������w2I\18��HX%�Lza�֞X��Y��;\ 1�$�D�Q{}\12�54;9�)k3S��\1d\1f\16�2%-|Ĕ��\b��\0\11��E�ɧT|+2�B��B�H�U�y���������K>Yk�[\ZYN\f��\"ZyTGV\ZĢ5\12MGR�OO��&7���\v�;_��Ou��\1c[7���O��?�0�Rv�Vg\13#۔��+���E�1\16�[\11ٲ\0\0\0\0\0\ 2��;X��\Zqz�\ 4�qJ����2c:�#��\evIK^Fk4�B/�X���﹑\19\19\1e�E4�eh�M8�8(�:�\0<b\e[�M�=eMB3�\0    �\7f��\a���\0\0h�\13��4xrkꬓ��\"�Ƥ�O�?g�����_×�����Q�S��� o�9�3�ˉ��&[\15\7fw���g�n�<�VF�\1db\11\ 6f�\12����N�:\19�ɠ��\11\11Z*\0\0\0\0\0\ 2���\ 6�\\��.�\19۷��C\1c���\ e6����yC\11��2t2$��\183�K���\e\e��\1fX~B�7��tZ_`j�8��?&n2.�x��Iڙ\7f���\17��,�Ø�f6�1{�7�����\19\16=snd�;�\19|e��en��T�Ri-�$���2\"/�\0\0��j�\\�:Z�0�\rNԨf\1de8�\13�٭�\12\eLz�����$�A%\n�T��\\    \\�[*l��;\ZJ�jt�UeJ�\19������ק����a{1�1��\1d�\Z�\e.�VdϚ����Y�#���\1e�����J�p\'\"����gw�\1c��&�T��R�Xڌ��\0\0\0\0\0\ 3��c�{0q0оS��h�����<���7h������]I��UJ���D����:�g�\e{]BA�(���8�i����m��]b��;�be\ez�]��n@���.�.�Qs\11�{�G���2؍$j]�]��\7f6ꏇ{&�$��+e�\18^�\1c�X]ܤ�\1d���%�\15>s2ia���{�\b��C\19T��\0XR�J��������\adz�]���\ ed��݉�      � �,�1r�~�\1e�6���DdG��OB�g��&f)��e�+/�4�T�Q�j�����Ѱ�~w��c�8���ڤF\b�gT�ճ�G�[�M\')��?J\14�UDR)6v[�#E3��\1c�$n��=�J��K�\'�D��q1�8��򄭴��7�(��U\1f����ueL�����t�v2ҤT�K�[o���\0>}FH\0\0\0\0\0\ f\ eB��\0��\bLv�x(Ʋ�9�<K��ig\1c˘�(��E��m\15dߕ1�L��>3O\"\no�\18H�P��Q\15iJU�;G�\13\\/��e>\19����o\eQ�{hnW�\19^\0�S���8��{�\"Λ\16��JK\\�*��G\18��1)|��\'s6\ f��\1d@��M���o+@�\ 6:�e\buw;uY�*9���r�O\13l4��YL��Բ3Q#�\"5\19�E}�\ 4q�SS��G\ 5�HRb]{\1f~&�B\n�q@�wg\1ev�Q\ag_��=\16�rcW6�EP�j\"؊��v�ׇv�{\13:׎�V\r��}L��dD[u��_^�\v\7f?!y֑p<[L�^�Z}�ӵ�\e���\ 5\ 2k;[cJ.ɖ6���鲔��$/D��Y[�kwR��\12D���\0\0\0\0\ 1�.n���\17Nn��v\rv\16�sv�upVV6�;o̥��\11\11\11��\1fM���\'\18�x��8x�-��\1fa��\16���ES������l13K�\12\7f\v�Yx%���rJ��rR�Y�5B$�e�=4�_��ć�&��N\Z_�����k�\1c��H��Q;wdW/+�^&�����)5\13���i\17�(��\12�-�Z�<9sN���\15�.��\16j�M�   �#�p�9��h���ԥ\13�i�ʼn�Q=&\15�U\12�O�Qn�Q�Ԕl�a��\\�.��\e\\�\0�㴒�Mʮ�%y�2=�ޟ�\12]Z��B\1d˩�J$��\0-�\1d�F��X�\fR2�b�\19��X�01�[�#s;\e=�\Z\19\e\e\r&��QiOwM    Z�<�dJ2�\1fڀ��\e\1d#��o�\ 6�p\ 4M�Nӷ�w��8m�2��i�$��d��m�$E��jD�\1c����E��2�\ e��iC;�iwN1���C���\11�59��\"�~��O]����O�[��^T�f�1��\ 4!���\e�q�2y\17q��W�\12��K�Q�ө��\1d\ f\19y����\0\0\0\0\a��U��K\1e�r�X�2@��?bp�L�r+��d�057x������[S#Y���{m�̣4.��+�o5u�S8���F�\19\11�M2���\a\1d�h�/m2^��*+j2L�L���3,�}D\0���F�>�-:�i)t�\15\7f�Y��.�\18Ϻ�f��bV���Z�:Z��\12`W%\12T���3�>I��>Fd���F�-$�j#;*O$��)R�])\11}����[��d�\0\fz���~B�\1eпgG 4�L��=\ 4c��&n��3κu�6��[\12�8\12�e��T�Ҕ\e�.GUF�(�G��$^J�ڑ\ 2�\r��ſ���q��خ\1c��wZ���\r\18���n�����\e\ 5��Ù\1dL5>wv$Rb2{UB�?H\f���LAF�Li%`\ 5��\e�Tjѫ�Q��\0>�������\0\0\0\0\15��������SG\f�M%�B\15�I�y�[�뽊G?t/\1cǘ���P����\114�%    YT*���\">�a&}b��pij��\ 4a־x�[W�n��\16\ e��\a�b\'\f+�\1eH�%���L��3Ȭ�NC+RW��\nb��L�+�`\0\0\0\ f\ e\1f�!�MWp�᭭gk�&�4q��SG\1ee:O�-]1�Iw�#27������7�Q��%!�T2�C���\1f\ e0Ҵ>�\aMY�V8�#ch�V(��vv��\11����TN-��\1c\1c����\14~=I[��W�M5\7f\ e㿀�\1crn�u\ 5��e0�[\1d�Ν�\1d��X�$��!\ 4D��B�\ f��;0z>S%&Fxʗ1+cRղ�GB���)�r�]/q\fÏz\vύ����9��U/%,��/S�\1crC��j(�\\�d��$D���eQ\1c�ȵ��}B��j\15�+�n-�-��ܧem����3���뷐� \0\ 1�����q65�YRGX���:a:�\\�\'{V(�C�Ӫ���\Z����.�7p����\18�4�2��cZQ\ fz���_j6��{s}�A�Rrҋ������ӗx�\ 1^_է�$�R�#�N��+j}�\Z4hQ>�[����E�\0���\f�\0\0\0\0\ 1��\1dR�t�wؾ~�{�|�\0��0���        ��\"8\"M��/\ f�j��\19��9E��-�`អ\r-�[�,�&��oo��L�\13�)&��\r1E���E)<���q�d�\16ᛨYE���\ 1\19p�i�G#�Z��\ f��/{�ۢ99�1��$\11%,֪q�H\"˨T�q���R����\19\0\09_Ʀ]u\ f�1�\"@�Z��徕�M�ͿS#�F��k-��\'c�^�����bg\aYшk�Rw�_��$ؿ     E�\fϚѹ���c/nA+����\11=�b/\n#܋a=@\0\0\0\0\0\ 1�_��\0���uq�+p��Rb��if�H�F�^\ fʱ����\e\ 3�j}٩�#55�S����)�l\ 5�\"yP���������!�\0\ 1ͮ/1s�p���q4����\a?�\ 2۩�4�^��_2���De�\13\"�\1c?�k�͛��F�ԠGZa���uB�^w-��\fB�G���:l_��zK�\0\0\0\0\0\0\ 4\ 1�AX�/���\11����,�zO���n�{��i���l��O���q?\14~������\0�]]Ľ�Ҟ��        �B���?�(��\\levo\10\'��߮�l�������}�ؙG82����{��䏯��O]����������\e���\0\0\0\0\0\0D��~4�\'���!���FQ��{sW\\D�͒7-�s���^�{y�m����\ 3\ 68�\1f�J�(?�$m\15h{E\17v\'6����w⍪G/�Df[m�c��8�\0��ǿ�n\10Z@�Դ�o^ٯ(9��ܙ\Z��|�]����TG���fFC��\0\0\0\0\0\08s�|kBQś��ޭ*\eA�Z����\7f�:3�N�ߦ��e鷡$�w\18\0\0z*R�z����\ f����\Z���gW\r�S\f�\Z�U�kE��\16�ks����Cÿ���h[\1f�M��߀\0\0\0\0\0\0��׎JO��\ZO;�\'�0�g\v���yn\1cwd��OM�\f���n\0\0\0\ftQ*E�ב�\7f\7f��ˡ\f�\0\0\0\0\0\0\18\15-hթJ�Z4N��[S=�#2�#��[}O�g�\0\0\0\0\0\0\0\0\0\0\0\ f��',4,0,'','','',''),(32,4,9,'75859b10ba668548','adef541d0f334352940ad40251e15158','2017-09-07 09:17:49','2017-09-07 09:17:49','','','Contact Photos','4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575','image/jpeg',80,80,2703,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0P\0P\ 1\ 1\11\0��\0\1f\0\ 1\0\ 1\ 4\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\ 1  \n\v\ 2\ 4\a\ 3\ 5\ 6��\04\10\0\0\ 6\ 1\ 3\ 1\ 6\ 6\0\ 5\ 5\0\0\0\0\0\ 1\ 2\ 3\ 4\ 5\ 6\a\0\b\11  \12\13\14!1Q\n\15\16\"Aq\17#���3Sa����\0\b\ 1\ 1\0\0?\0��M5A\10\ fQ\0��j�����ǯ<��\1e��_�T\ 4\a�@\7fZ��i����\149\11\ 3��\7f׾�*��)��{ڥ����J�Y�[6h��e�\v�,u��$�\1c1����t�KvD3%�\7f��g\11[I�\17\16\15_:\15kƵ�J�u��B��7��\'vX3i�Rj:�G���*�e�\0\ 6��<C\19S��ש\14�kGH8�Z���!�ܶ;\18HiQM�\f�pN\13���\1e��Z��$�b�\b\1d������~� ��]��vG�X��e�\0P̚�k\12�C�\18G3H�޽��O�/l��x\0�\a���\ e?>a�\a�M|�i������:{Lٞ�w,dRt� aK�B�f����\f\ 4\ 3�5���Ô��\ 25��\ 2\ 2b�%\ 1\ 1\10֡��\eZ�uZꅊqNL�����\192Õ�\ 5oY↚}L�VB�\0��\15�0���ւ7s\0�D�{I��N\n_�J;�)Tʮ>��)���UR�U���V�PlЏ����`�lD4S\16�M�8��\r�fѲ\ 4*H��i�P)CP���O\f3�{\ 5�a��%y��V�\ e)��yn��Yi\16E�\ 23�I�\19\ 6�Vh��\a��;  8�\ 6ݴʛG]��5�b~�=I~\1f}��vݐr��(��C����/m��X�H�r\1e\ eN*ߎ��\\==\1eZ�Q�ed���\ 4{��\\�����n��X�^¹Z���\ e2�T\aƓ�e�%W\"�\1f��\"��w\18FV\be�L�8$���@\17K�aM`9\ 4G�zv�i�e���s���^�q�Y���9���9(h��9�H��F�`�kd�)���\ 6��I$B��\1dr�\n\"n5�����}.��    9�l2�m\1f&\12�\n�b����\14+$V�`\ 3\n�\0++�\1c\13��9W�\ 4�0�h�q�q�\1c\a\1f�����\11\ 4G�\0G��Z�~.      ��׬c��\ 1\ 4���8\e\a�o\r�\12�O\17��5�b61T\Z\15EW�%B�NnTJU\172gfܤ�\b�lu遅-�r�߲�\e}M�{�2۞,�[�:�\0^2�֫\1e��A��DH.�a<��h_/���4�]W�R|��\'\b�ỴN��\ e\13*�.��\14�Ed�����\18�Q3�C��S\0�D\aYV�vÑ>\e~�X\7f{\18��\'?�\1c��,\135C�\ 2f�K�W�2�\ 5}ߝ$���+�O��\1f0T�\'cX����X��l���f��q�\v0�#\v�8�U(+�*�\18e\f�r�a`��[�J�\12p���rw휢���\ 1V��E�+$�z�!�\ 5�]�=�j33\18W\ fۮUȇb����7f\fj,�\13���׳>�NPH�G,y�\18\10�Q�\r�\v���u\11\1e�:��%Ü�hƙi����\ 1\'�l;��\"WI܅4�R+E\7f��n��Q�*?&a%:��6�\rU�M-��(\14\0\08\0�\ e?�\\��^\ 5���ᝠ�+�����>����*�\16)��1�P�P���a�$\ 2�b�:�V�p0�\b��97M��LN�!a-��\ f�oX�\0���y�L���\ f\17\1dY#*\15���\15_n�T~\7f\13%{����]NI${L�quI7i�0�\ 6��\1cq�iw\e\'M-��\Z�^���<��\19�]/)\10�u�\vNxU    �m���\ 3X{Ԭ�F\12Y�c(��Vk0M\10l��Y�l��Df]\16�O�u:�\ e�Y��R�0�+�Z�Z!�\rv�\ 3\16�[F���G&�(��-�D\e4j�h��\nR\10\05�۾ۍSw{a�\ee�;q\1dZ�\18��_ʴD�\1d��d�r�6�ͺ�T�=�J\v)�H(r&��   &���\1c\a\10��n�k�\ 3��      �\7f\fbXBٓ��\19GmY>�\vE�l�\'�x�|�5\12�\"F�r�O���&��\f�y%^\Zn�(�:ԓH\15�*�1{@b���\ 1\ f^\ 3��\7f\1e�\\k�!令#�\b�\0���#�X�3]Rz�l��\f��\0��    �#�\r�D1t�[gfZB*�Q���\"q*�у�j�j$�V�ZbE\13\ 3��\f�YP\10Q\15�8��~1�$\14\fs8�Xh���FD�G7M�|ls\ 6��ѓ\ 6-QI�6mRI�V�$�       �$�P�}4��.����!�^�5\n�⾪���\r��\ ff�YT�}ګEM�|�U\13\ 3\bs�c\13�=�\ eG�m������K;Lcw��O�0Q�=�{h��c):Ě       \ 1c\ 2r�\\����\1e���n\ f귺��{�i��U���_7�\1d&��L��7)ӷ~\r�K�\1d���^f�X�,%_q8Z�)\16��+���\16�_��#�v,��d���S�ѓդ�\e�y��y���\r�\17�?�\ f�^Rv��Y��vS\17\10�b�L�>����E�e\f^\ 1\17/q:\ eV!\a�Y���d7\17��M4�V }��+�J��ض��\vWH\v�K*��$ y*���Q����1J��#��M\ 3\1c�P��H�`!C��\a�~�T��7<\b��\1e��_�]CL\7f�~I����o\ fݒ���U��\14\0\15uE������}�       �V֘~��\f �$\ 2R�����M4�P�C\19�����/\ ea3-�dLn.���\ 4�c��dۛώЌb�\148�0�b鮸4n\ eN�WJ��uW\ 4�ި�c�Q\ 4��\1d\11\13�rd�\" ��TJ\0*\18G���i���͸�+�E1vF�hG\1d�敲�MU\10\ 3\7f�uQIC\0qɓ/!�\ 3�ֿ��',5,0,'','','',''),(33,4,9,'75859b10ba668548','adef541d0f334352940ad40251e15158','2017-09-07 09:17:49','2017-09-07 09:17:49','','','Contact Photos','4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575','image/jpeg',48,48,1755,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\00\00\ 1\ 1\11\0��\0\e\0\0\ 2\ 2\ 3\ 1\0\0\0\0\0\0\0\0\0\0\0\b   \0\ 6\ 1\ 4\a\n��\0.\10\0\ 1\ 4\ 2\ 1\ 3\ 3\ 3\ 3\ 4\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0      \11\12\13\14\n\16!\151A\"#$23Qa��\0\b\ 1\ 1\0\0?\0���3�c\19�s�\18ǜ�?�1���{�p\ fK����]�_�\1f�r��\0BsK�]�n\v4d�\7f\ 6fZ%\ 2ӣ�\v³+\1e�r0�m�&��i��-��<u��\v`��Xh�K\ 2ɤU-y�͎\roc��e�ښ�B$���.�>jA�g>���%hM����%�C\1c¿p��O!����6���x�i�e�5�\ 5��H�)LW�l�e����!k��:\14�T���h\12�q\ f2ڰ���NݴM\15�j�6�\10A��7�?qY��ˌ�g�Z�[D�En�\17&Z]-�mnB��a!�[v\\�h��2Ba\ 3RI?�\16��\1f�<~/�\17\ay=d�G����\e��3�JM�[ݨ��\10`   ��ԭy���N�\ 5�\0ɚȥ֐Y�ʈ���O`=�y��|\vҼ�&�-F�m\12f��+`<�\11q{\ 2�*En՘g\b���$��Y��`��P��#\ 6I%�;�<�z�+��<\e��#ۣ��g��dl9�\10n��&���\7fek�ٵ���)X�C\16�dz�D���\ 1�0�N%HiI�m���R/hvߠ��)5>B�~N��M�X�}��\']�؜�\Zlcޒ�\12Z��FQ.6��?\11`       �/����>�>J[X㦣�`�3���l8m%X<�=�j�2.�L2�1\"�\10���D�7�0�Ĉ2�+�I1��Kw����n^\16i>%T%�cƺ�x�]�l�_�/�C\1e��X�\11JR�\ 6B�y��\ 5Ÿ�Q-�+μ�+ug�\\�y�J7\1et���{2U0�\1dOH��m�YF]q�Z�a\12�$f\13�d�B\a����2�F<��c.:�e`��Z�_���|������)�n|\7f\ e��KQi\Z�WK�\12�y��#Y,\v6��6\18\17c&,\10S�MP�Δ�3\14ę��;F�imE�M�I�MiF��܎L��N�W����J!O�\12Vi\b��2zA\n(�$�G�#\n%�{�^s*]���p��\\�2n�Et��ܬ�fݏ�Z\Z�m\0�:\1c��2%�.�؁D�3)�[F�\ 5�����a\f\1d��\1c�],2   ]�ˆ�ۮ��\v�Z�ϯ*kj4=���N1�����-c��;l�:\ 1\ 1@�Ϋ+�������O�WW��!א^EJGNFG�Ü$�L�B�FI\0CE�x\ 6��C42�Z�$R�u��}����Z\1cB��c=/>�z����\1d��XK�3x�q�,�8�+�\1c��-�#��?*\ZF���\ 5��V)/%xR3�e�\ 60�\b(b0�\8a;#\f;\bKl��\r%�Ye�c\bCM6���\'\18JP�%8�1��z�Wm�J��e�Z⁜�[�&+\16\18i!�.>V\ ez8��X�E}+d�\r\0�\ 6!�P��eաi�U�t\12v��O�;}qj�e0åi��\15?~A�\1d-\11��٘H �q�-�b>\f\18�\Z�+9�#7�x�1�\Z�\Z�e�\ 1��=`�t,���\n�\0\"\nn:x%zs�Ϥ����?�z|��գ\18�c���u��S?�\7f���K��R+1Uh�a���hTc\1e�%\ 4\16A��1�>?�B�\0����',6,0,'','','',''),(34,2,10,'75859b10ba67f3b5','01ff45af20fe4c6fb230e6fc773f3ef8','2017-09-07 09:18:24','2017-09-07 09:18:24','','','Contact Photos','4.jpg','image/jpeg',175,175,5486,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0�\0�\ 1\ 1\11\0��\0\1e\0\ 1\0\ 2\ 3\0\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\n\v\ 4\b    \ 2\ 3\a\ 5\ 6��\0B\10\0\0\ 5\ 3\ 2\ 3\ 5\ 5\ 3      \a\ 5\0\0\0\0\0\ 1\ 2\ 5\ 6\ 3\ 4\a\b\11   \12!\n\13\151A\14\16\"Q�aq�\17%23R����\18#$&5B�Es�����\0\b\ 1\ 1\0\0?\0��\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն����X\Zg���p|L�sN��\1e�}�Y%ZR|�\11(�J*I&+�rJ\18#�yI)%l�Z�,:��i�(��ϥ�)���J�����*hχ\18o��>$���Œd\v\"5\16ɐ\14b��o���9���/צF�3�qN��;뤂��������9�;߬�Kka0���Z��\19�$�Բ��Ob3�g\ e�Wqg�U�l�W�\0ĺQ��\17����<;\1eJ;\ 4��剽ŒTh܋}��h�����>�#���\10�\0\0\0\0\0\0\0\ 1\15>=]�Xw\ e\eg-8i��9�u����N�梿���ݱ^\ e�-l$$��5Rt�\"�����e�)�\1d:G\e��+3Ϛ�ͺ���,���-d�5�ܾ��n~5\7fSeW$76sS$�4SME��\13\ 2\11\1d����\"\"O.����_��)Y\8e1�\r�X!M\nm��y�Kl�R\a�#�k�M&�^�\12o\13\19\ 2|M\11L}Ij���O��D>��OJ��\Z\1c\1c�m�\ 2\ e�i��v2��r�VӍB�l[�rd��D�;\13k�2��dZ���\ 28�(��$���h:�״y}\7f\ 2\1e`\0\0\0\0\0\0\08�ƣ�37\f}\fNsſ�]�\19E�c\f\ 3\1cpJL�򄩵�\9c\11U<�\a�Y)�O�&�$.�!E�Q\a%��N�C�SL�8�d��#z��9�㔚g,�ܮ��G w�7GggU)F�]Es�I-��D\12S�:{-��\1ce�|jw\14�K\vP���䗴[�<�PU�\ 4\ e&�Jw���iU4�L��\Zno5i\Z�j��\18�ud�:d.-�n��\ f=9�tр��Z!�kj�/�Z��rL�׹S��d�]�Wg�\Z��M(R���%�#\15劰Q���\18\17�N��j���ERI\7f�3-���_=�\7f#\10���=��\ e���q\'�u\7f\ 2c���L\17-e�ƙL\17#��F�t�����G�����\ 4䓓�B��eEk2=\13\1d��\7f�ZZ�\aC���������3\ 3\e���xdRh�#\'�5ldE(�nF�ԝ�K/��\17\r\ e�9c���^QG���4�&\18N\7fjP��\ e�#=��\16:�)<2�\17ȧ�܆M\Z�3J���\"z�N�{�n���]H�\0�!�\0\0\0\0\0\ 1X\1fl3W\ e9\7f_�.5�W���_\177����v��츖��㡥%�k()��3Q�%%MJ#�\"\ 6,��|h\15\10�B{�i�\ 5\13������c+��r�\16�%��ɥ�Mj5���Z��V#Isӆ��$fK%M\b\0j�t��5s���\7f�n6���e8kU��\13ݑ$�܉5*6<F\1d�R\'�)\ 3\n�^�Hc�D�2�%�Ys�F�g�W�\1e\14��x�N���a�ջ��O�\15\16Ƃ�c��mn��!3\\|�&      u:fIV�r�\15:rjh.p�甴���9�\fM\1e��H���>���듲pg�BҲ�:t�[I줩��*���\17¤�V�pS�\18◣(�d�Bŗ4B.� �\18su=�\19\v=�4�ᢙ�K\ eAeZ$qu\16餣}�\19�Fԣ��\0\0\0\0\0\nY��No�\a\16�!\ f\15N��j{\"F-zy�c�?s\Z\f��I3�#̼˧Q�\16�����\r��k\\]���6��Pꫫ�Ur$��]MIN�^|��$�^u�,\12ݦ=0��O,Vt,�p�\1d��]�I(���F\Z�\1d�̔�����\ e��Q\19\12��bJID�l�\0\b����dӪ>\15�o!Sg�[$i*��<�\\Qng|Q�u��,�,�\ 6tu�-<�#�\rbQ\Z�&��v����\13\e�c�\ 5\1d��٧��u�-����\'��\1f�B�b);C�3����ha��Kr\"ۘ�r-���\0\0\0\0\0\ 1K�\1d\7fy�8�q\ 2a��^���\191�[\11�؍�$��#5�K�\17�,JL���Ȍ��a��L��s�&�[\1c\14d�\7f�1\r�צ�K����\19�ɧ\7f��=��\0\ 3Dx��a�Ó_Ud�ǁ\16�5%�~��<��&\ 4��ܾ^�G�⏚��_�K\7f�ω�f\\O�2ث�����=�t��2�7\f��\10�36��FffJw���&M\ 4^DDV��\0\0\0\0\0���A��<g�|K�\ 6v�����60�C���+}�P�\7f\f\f�%��\f\12�>�����-G�\1f��M�:]\16��\Z�N/&�ɛ����3:Rv�_��?]����%0�<Y���^��k(㸆E�\\ۙ*��_\19k|l�[��U7T�K}�$d�̈���\0\"�ګ�#\ e��g�0CS�*\19�YN)��vk{����\1e�9�=e�:�IB�\15,~\17\ 2W9\16ʛ1�Nƒ�Z�%UYR�Fu==72�����>��^�w\fg�\ah��F˭\15�3橯c�\16`��j�G�f=h�R�\1c     Ȫn������G)#I�\15&e\14��6�96\0\0\0\0\0\0�\18\1e\1cL4/���6v91��!�\r�)�,�~*�Rg#UR�ij�\"��rN������P�kJ;�m�\ e>�b���\ed&\17X��\ e��\18�Fޭ�b�\e�48�K�K�T\\�h^�Q̶#I\Z�hWe+_ͺ���ɧI;�\n�\7fF\17��.V\17w)7\a|<�f�d�O�̚Xi��\1e�>�\10�U-\7f\14�R��/��\7f1�\ 3���.�t��2fs�n��\ 4\10i\16E��u?b�D�V��2#�Ca��u3��3\14�q2�\15���j�w���\7fZ�����qN?;�^��X���R#\ 4g3�Dj�֣��&����\1f�\nI*�)\14�;-�\11����x�j�7A�\1e�%Gi��\13ŢV�8��\1cTN�BV�ER��\14e�*��������W�ZMQ�i;\19iR*h��-����\0�>�$\0\0\0\0\0\a�!}���\bLv�x(Ʋ�9�<K��ig\1c˘�(��E��m\15dߕ1�L��>3O\"\no�\18H�P��Q\15iJU�;G�\13\\/��e>\19����o\eQ�{hnW�\19^\0�S���8��{�\"Λ\16��JK\\�*��G\18��1)|��\'s6\ f��\1d@��M���o+@�\ 6:�e\buw;uY�*9���r�O\13l4��YL��Բ3Q#�\"5\19�E}�\ 4q�SS��G\ 5�HRb]{\1f~&�B\n�q@�wg\1ev�Q\ag_��=\16�rcW6�EP�j\"؊��v�ׇv�{\13:׎�V\r��}L��dD[u��_^�\v\7f?!y֑p<[L�^�Z}�ӵ�\e���\ 5\ 2k;[cJ.ɖ6���鲔��$/D��Y[�kwR��\12D���\0\0\0\0\ 1�.n���\17Nn��v\rv\16�sv�upVV6�;o̥��\11\11\11��\1fM���\'\18�x��8x�-��\1fa��\16���ES������l13K�\12\7f\v�Yx%���rJ��rR�Y�5B$�e�=4�_��ć�&��N\Z_�����k�\1c��H��Q;wdW/+�^&�����)5\13���i\17�(��\11�[���xr�I�W�+�]}f,�\n��\13^G��,s���\13���J\'8ӫ�\13\ 4�zL+Z�%l����$�Y�(�:�\19��]��6��\0e�i%v��]�J�\16d{o�?�$��{�;�SؔI-�[l;�\16�Ǣ��\18�e�Ŏ3\17l�b`cn��F�v6{\nm\f퍍��JZ�������\\��dJ2�\1fڀ��\e\1d#��o�\ 6�p\ 4M�Nӷ�w��8m�2��i�$��d��m�$E��jD�\1c�M�r\"�b�v\aKȴ���4��\18��s���܈�\Z��S�E�NU\'����|�{u��\ 5�H�n�\18�0B\1c��a�G\1c�\'�w\e~�x�-���5\1e�:�\1d���\11�����@\0\0\0\0|�(�\\\7f����-e�s$\v\1cc�\'        4�W\"�+\16H�\ 3Sw��:�\19�%�25�Ȉ׶ܜ�3B�\r���W\\e3���4hё\19��/�Z�q�&����%�-¢��$ʄʺiS2�g�@      +��m��RӭV��NQ\\\17�5�[B챌���h�x�%kk9\ 5�����1&\ 5rQ%Hj��<S����fJ�o�iB�H��3���IY��*Eґ\17\7fO����c$\0\0c��\0w��\15����:9\ 1�\"d=y�#\1e_M�3wg\19�uӬ1�N\12ؔ����.��6���ar:�7�D\12?��\"�U�Ԉ\15Xmn�-��f[��>�p�\ e\e�՗��h����tזf�\14��,��\1c��a��\"�\11�ڪ\14A�@d�&�b\n4�cI+\0-��R�V�^��\7f��_g��G�<\0\0\0\0Wc����3�M\1c214��\bV9&\19�n���)\1c�мs\1ec73MB/\aǬD�<�%eP�J\1fX���������\ 1���G�\11�Z��!m_U���X:�,\1fm��0�\10y#𖦳U2SD�\"�\1d9\f�I^��)�#�\r2��]�\0\0\0<;�~�\ ebj��\ f\rmk;^I5\19��]2�8�)�~�j�2K�!\19��d\fd�\17����FI)\f���]�\1f_���8q�����:j�:�ű\e\eEڱF����n`���=Z�qmL����}��$����J��J�Zi��w\1d\ 5h�tK�->�)�����t��%\Z�y&��\b\"$�r\160~Ʊك��)23�T��[\Z����:\15�L�L��*�{�f\1c{�^|m|D5��Wt�R�y)d��z�X�\1c.�QD��&G\19\"$����#�Y\16�T/�R���B��rMŵź�\e�쭶�}�>�{���v�\1f�\0\0>_��;.&ƹ\v*H�\15\18�6�L\'R\v�$�j�\12huzuQ\1e�vCQ���EҦ�\12:y}�\1dƚ�U�,kJ!�Y>}��Fк/no��3�NZQw35\19\1c�r�\12�+����d�JRDv�е�mO��F�\n\'�k~�|�H��3�\ 38\0\0\0\0\0c�GT��/]�/����_?��F\17�9�2\11�G\ 4I�\11���MZ��1�\'(����l\1c3�A��KuŒ��RM��4��w�$ԙ!�(��RH�\'���~.3,���3u\v(�s�@#.\12m1H�wK[���:��v\etG\'9&2�D�$���N0�\ 4Yu\n�n4�:J_���# \0\a+��ˮ��&8�H\Z�W���ҾSi����dr��؍e��d�}K���\11{�L��:1\rqjN���ě\17�(����Z735<Le��%u2R�\"\'��E�D{�l\'�\0\0\0\0\0\0=\v�W��1Wή1�n\ZݪLV��,��\15�ګ��V0��^�`q-O�52df��Jy|\18�e9\r���O*\15\10\19\1f���$=�\09���.s�\18\Z�\0�&�V�� ��[u;�\vۺK�_\13Q(��dȽG\ f�\Z�3f�k��u(\11֘j�\0\']P�W��s<\ 3\10����\0u\ e\17�{n���\0\0\0\0\0\0\ 1\0~�V-K�h�eb*�K \1e�������dj��)���{t�O�\1f���$=�\05�Wq/\7f4��hBhи��O��.v�\e\19]��    ����+�~i?�q\ f�{\13(�\ 6\\1\7f\1d\ f|r~q�\\����I�?s>��T��_�s��\0\0\0\0\0\0\b��Ɣd�~�\ 4?T�\0��2}��nj눝\19�F��\7f��\v��o1-�\7f���y��\19\ 3�    ]�\a�č��\ fh�����v�9n�Q�H��Ȍ�m��{��\1f�>\18��m�\vH\11:�����5�\a;�{�#RT��K��y~���2����v�\0\0\0\0\0\0\a\ eu�hJ8��=�U�Ch<�^;������F\7f     �[���L�6�$�\ e�\0\0\ fEJ]�]�z\7f��2��ƣ�s\19��zT�8ƭ�{\Z�x������*P���}��\vc�鷐��\0\0\0\0\0\0\Z\7f���I�7�I�wD�\0&\12\f�q���-Î�>�鿡���\r�\0\0\ 1��%H���?�����yt!�\0\0\0\0\0\0\ 3\ 2��\Z�)V�F�ַ�jg��f^D{�\vo���x\0\0\0\0\0\0\0\0\0\0\0\0��',4,0,'','','',''),(35,2,10,'75859b10ba67f3b5','01ff45af20fe4c6fb230e6fc773f3ef8','2017-09-07 09:18:24','2017-09-07 09:18:24','','','Contact Photos','4.jpg','image/jpeg',80,80,2703,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0P\0P\ 1\ 1\11\0��\0\1f\0\ 1\0\ 1\ 4\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\ 1    \n\v\ 2\ 4\a\ 3\ 5\ 6��\04\10\0\0\ 6\ 1\ 3\ 1\ 6\ 6\0\ 5\ 5\0\0\0\0\0\ 1\ 2\ 3\ 4\ 5\ 6\a\0\b\11  \12\13\14!1Q\n\15\16\"Aq\17#���3Sa����\0\b\ 1\ 1\0\0?\0��M5A\10\ fQ\0��j�����ǯ<��\1e��_�T\ 4\a�@\7fZ��i����\149\11\ 3��\7f׾�*��)��{ڥ����J�Y�[6h��e�\v�,u��$�\1c1����t�KvD3%�\7f��g\11[I�\17\16\15_:\15kƵ�J�u��B��7��\'vX3i�Rj:�G���*�e�\0\ 6��<C\19S��ש\14�kGH8�Z���!�ܶ;\18HiQM�\f�pN\13���\1e��Z��$�b�\b\1d������~� ��]��vG�X��e�\0P̚�k\12�C�\18G3H�޽��O�/l��x\0�\a���\ e?>a�\a�M|�i������:{Kٞ�w,dRt� aK�B�f����\f\ 5}��z�a�o�\1f-fr�����@@D5�\7f\ 6֮\1dV��b�S�&��-�\ 6L��m�[�x���S!�����\ 5d�\"ἵ����1�/��n}����\12��U2�����e&�\15T��`a�U��\e4#�``�!\e\11\r\14ũ\13l�>5�t\19�l�\n�(\"�i�\nP�)�\'��\f\1e�r�c-�^j�\15���e�\1e[��\16ZE�t\0���l�A�-��\'!\ 1�~��N.A�m2���p�\rjX��OR_��\7f�]�d\1c�r�8�\10�$+�\'\v۬�<m�1܇������G/OG��Td\19Y+s��\1e黗-�쭤��}\16;W��V��lC��U\ 1���b�Uȴ��)H����\11��\19e�!�\ 4\16/�\ 5��SX\ eA\1f-zv�i�e���s���^�q�Y���9���9(h��9�H��F�`�kd�)���\ 6��I$B��\1dr�\n\"n5�����}.��  9�l2�m\1f&\12�\n�b����\14+$V�`\ 3\n�\0++�\1c\13��9W�\ 4�0�h�q�q�\1c\a\1f�����\11\ 4G�\0G��Z�>.      ��Ӭ[��\ 1\ 4���8\e\a�o\rb\12�O\17��5�b61T\Z�EW�%B�NnTJS�d�͸\13�\"a�ۦ\ 6\14��˧~��m�7\r���nx��nd��x�\eZ�z�1\ 6��\11 ���\ f��|�#;��Mu_5I�7,�\"����;w\b8L���\v\14SY\15�7ڪJ�c\11D��\ eS        L\ 2Q\10\1de[��\ eD�m��a��c�ܜ��r\16L�L�\ f\b        ���/m_�˘\15�~t�F�P��?��|�R0��c[�\17�w\1dco\19�W\ f\ 6u�4,Ê�.8�%T����La�3\19�兂21o�*�I�B�e�߶r�\ e�8\ 5Z;A\17H��q먆�\17�v��;�61���a\\?n�W\"\1d��\ 6J�ݘ1���\ 4N��+^��%9A\"�\1c��tb(C�GX7|.{\13m�Gt{�ꧼ�\ es\r�\Ze�jR��\ 4�5��\16|�]\'r\14�1H�\15\1fŻ��F\f������gl�45V%4�/\14�P\0\0�\ 3�8�\0�r�Mx\16�73�v���ۃ��(�\1e+�0�LX�ߘ�QC\19B����`�\v��\14��[���0\"�d��6j�1:������>��c�\ 33c��2:sH>p\\ud��V.���U}��Q��L��>�C�u9$��2���$ݦ�\94\e��q�i��l�4���j5z��h���gQt��C���-9�T\']�\16�l\ra�R�5\18IgM��s)Y��4A��5fѳS�\11�tZ%?\19���:\ 5f\ 2�J�ð�Ujuh�P5��\fZ\ 5m\e\ f\v\11\1c�,����!\10lѪ)��d)H@\0׏n�n5M��;����uk8bێ9\7f*�\128w\b��\1d�8�\v6�\18��{^�\16Sl�P�MgL\12ISwg8\ e!\1f\ e����\a9�\13��\0P\18İ��\'e\ 42�ڲ}�\16����O�����j%�D�`�V����M��\19f�J�4�jQ�}�\16�N3�*�1{@b���\ 1\ f^\ 3��\7f\1e�\\k�!令#�\b�\0���#�X�3]Rz�l��\f��\0��        �#�\r�D1t�[gfZB*�Q���\"q*�у�j�j$�V�ZbE\13\ 3��\f�YP\10Q\15�8��~1�$\14\fs8�Xh���FD�G7M�|ls\ 6��ѓ\ 6-QI�6mRI�V�$�       �$�P�}4��.����!�^�5\n�⾪���\r��\ ff�YT�}ګEM�|�U\13\ 3\bs�c\13�=�\ eG�m������K;Lcw��O�0Q�=�{h��c):Ě       \ 1c\ 2r�\\����\1e���n\ f귺��{�i��U���_7�\1d&��L��7)ӷ~\r�K�\1d���^f�X�,%_q8Z�)\16��+���\16�_��#�v,��d���S�ѓդ�\e�y��y���\r�\17�?�\ f�^Rv��Y��vS\17\10�b�L�>����E�e\f^\ 1\17/q:\ eV!\a�Y���d7\17��M4�V }��+�J��ض��\vWH\v�K*��$ y*���Q����1J��#��M\ 3\1c�P��H�`!C��\a�~�T��7<\b��\1e��_�]CL\7f�~I����o\ fݒ���U��\14\0\15uE������}�       �V֘~��\f �$\ 2R�����M4�P�C\19�����/\ ea3-�dLn.���\ 4�c��dۛώЌb�\148�0�b鮸4n\ eN�WJ��uW\ 4�ި�c�Q\ 4��\1d\11\13�rd�\" ��TJ\0*\18G���i���͸�+�E1vF�hG\1d�敲�MU\10\ 3\7f�uQIC\0qɓ/!�\ 3�ֿ��',5,0,'','','',''),(36,2,10,'75859b10ba67f3b5','01ff45af20fe4c6fb230e6fc773f3ef8','2017-09-07 09:18:24','2017-09-07 09:18:24','','','Contact Photos','4.jpg','image/jpeg',48,48,1755,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\00\00\ 1\ 1\11\0��\0\e\0\0\ 2\ 2\ 3\ 1\0\0\0\0\0\0\0\0\0\0\0\b \0\ 6\ 1\ 4\a\n��\0.\10\0\ 1\ 4\ 2\ 1\ 3\ 3\ 3\ 3\ 4\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0      \11\12\13\14\n\16!\151A\"#$23Qa��\0\b\ 1\ 1\0\0?\0���3�c\19�s�\18ǜ�?�1���{�p\ fK����]�_�\1f�r��\0BsK�]�n\v4d�\7f\ 6fZ%\ 2ӣ�\v³+\1e�r0�m�&��i��-��<u��\v`��Xh�K\ 2ɤU-y�͎\roc��e�ښ�B$���.�>jA�g>���%hM����%�C\1c¿p��O!����6���x�i�e�5�\ 5��H�)LW�l�e����!k��:\14�T���h\12�q\ f2ڰ���NݴM\15�j�6�\10A��7�?qY��ˌ�g�Z�[D�En�\17&Z]-�mnB��a!�[v\\�h��2Ba\ 3RI?�\16��\1f�<~/�\17\ay=d�G����\e��3�JM�[ݨ��\10`   ��ԭy���N�\ 5�\0ɚȥ֐Y�ʈ���O`=�y��|\vҼ�&�-F�m\12f��+`<�\11q{\ 2�*En՘g\b���$��Y��`��P��#\ 6I%�;�<�z�+��<\e��#ۣ��g��dl9�\10n��&���\7fek�ٵ���)X�C\16�dz�D���\ 1�0�N%HiI�m���R/hvߠ��)5>B�~N��M�X�}��\']�؜�\Zlcޒ�\12Z��FQ.6��?\11`       �/����>�>I�X㞣�`�3���lHm%X8�=�j�2.�K2�1$�\10�����7�\ e\ 5�2�)�I1��Cw����n^\16i>%T%�cƺ�x�]�l�_�/�C\1e��X�\11JR�\ 6B�y��\ 5Ÿ�Q-�+μ�+ug�\\�y�J7\1et���{2U0�\1dOH��m�YF]q�Z�a\12�$f\13�d�B\a����2�F<��c.:�e`��Z�_���|������%�n|\7f\ e��KQi\Z�WK�\12�y��#X0\v6��6\18\17�&,\10S�MP��\14�;\14ę��;F�imE�M�I�MiF��܎L��N�W����J!O�\12Vi\b��2zA\n(�$�G�#\n%�{�^s*]���p��\\�2n�Et��ܬ�fݏ�Z\Z�m\0�:\1c��2%�.�؁D�3)�[F�\ 5�����a\f\1d��\1c�],2  ]�ˆ�ۮ��\v�Z�ϯ*kj4=���N1�����-c��;l�:\ 1\ 1@�Ϋ+�������O�WW��!א^EJGNFG�Ü$�L�B�FI\0CE�x\ 6��C42�Z�$R�u��}����Z\1cB��c=/>�z����\1d��XK�3x�q�,�8�+�\1c��-�#��?*\ZF���\ 5��V)/%xR3�e�\ 60�\b(b0�\8a;#\f;\bKl��\r%�Ye�c\bCM6���\'\18JP�%8�1��z�Wm�J��e�Z⁜�[�&+\16\18i!�.>V\ ez8��X�E}+d�\r\0�\ 6!�P��eաi�U�t\12v��O�;}qj�e0åi��\15?~A�\1d-\11��٘H �q�-�b>\f\18�\Z�+9�#7�x�1�\Z�\Z�e�\ 1��=`�t,���\n�\0\"\nn:x%zs�Ϥ����?�z|��գ\18�c���u��S?�\7f���K��R+1Uh�a���hTc\1e�%\ 4\16A��1�>?�B�\0����',6,0,'','','',''),(37,0,10,'75859b10ba6852dd','de20aa50472d9b54f292966d1cf693c4','2017-09-07 09:09:29','2017-09-07 09:09:29','','','Contact Photos','9c78857b3d725c1c6d1227a7b8cbe6b2-4.jpg?ts=1504775234','image/jpeg',175,175,5493,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0�\0�\ 1\ 1\11\0��\0\1e\0\ 1\0\ 2\ 3\0\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\n\v\ 4\b     \ 2\ 3\a\ 5\ 6��\0B\10\0\0\ 5\ 3\ 2\ 3\ 5\ 6\ 2\ 5\v\ 5\0\0\0\0\0\ 1\ 2\ 5\ 6\ 3\ 4\a\b\11        \12!\n\13\151A\14\16\"Qa�q�\17%23�\18#$&5BR����Es�����\0\b\ 1\ 1\0\0?\0��\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն����X\Z\'���p|L�sN��\1e�}�Y%ZR|�\11(�J*I&+�rJ\18#�yI)%l�Z�,:��i�(��ϥ�)���J�����*hχ\18o�мI����$�\16Dj-� (�C\"�cI(s���_�L�:g��\v`w�I\ 5����9�s.w�Y���a\7f���C\"3:I��e�~��g,�\1dڮ�Ϩ�6�&�t\ 1�t�\ 3�/iK��xv<�v   #=�\13{�$�ѹ\16�Idу=��#�}�G���!�\0\0\0\0\0\0\0\ 2*|z�B��\1c6�Zp�]�s\"�A�ڝ\r�E\7f\r��{�b�\1d�Z�HI��j��>Eq�E�\14˒S.:t�7\19�Vg�5\15�u;��Ys=�YFZ�Rk��}����j��ʮHnl�Ifh���M6&\ 4\";M\15\13�DD�]��¿S\1cR��\1cc�\eh�B�\14�{��t��Ƥ\ f\16G��V�Mʽ4$�&2\ 4��\"����%���{̈}9$����489hۆ\ 4\1d��    @�e��崭�\Z��ط<��m�(v&�Ne{�ȵ\1dE�\ 4q\14QM\ 6I��\Z�uO�h���D<�\0\0\0\0\0\0\0qۍG\12fn\19\Z\18��\7fb��R���\18\ 69~�2w�\12��o\nstET�x\1e<d��>��H��l�\16MT\1c���:�\ f!M2��a��L��c��/�Ri��Cr���\1c����\1d��T�\Z�u\15Υ$�F�\10IN��춆�q�5��S�,-B��c�^�op�}AW�\108�Y)�c?��T��2F\18i��դkI��$b�Փ�鐸�A�\e�\\<��\ 1�F\ 2��h�ŭ�ܿIk�\17)�3\17^�N�ٓ�wu]��k�U4�J�\17��8�W�*�F�7�`^U:V��ң�\15I%�\1c̷?��|����C{�Oh�[�:r�qğ���  ����0\\���\Ze0\\�ޅ\Z��.���\1f�RvZ�\13�NOI\n#��\15���O\fv���-ik�\1d\ eF\a���\1c\ e�o�;�E�I�\14���ձ�\14�5�\Z�Rv!,�\1e�\\4;����MyE\1e�3��t�a9��B��:̌�[�X�T���h_\"��r\194k��*�F\\��U:��M�z�\0�u#�\0�C�\0\0\0\0\0\ 2�>�f�\1cr���Z\\kp�q\ 5Ҿ.oU�u������q-S\a�CJK��PSǬf�2JJ��G�D\fYm���+>!҄�^�\16\n\'��/{}\f�W7\16��-\18K\1f;�K���kI��\v(�;T�F��\r��H̖J�\10\0��J�s\ 4j�\vK��\0��m\1f���p֫WV\'�\"Iٹ\12jTlx�;ҤO,R\ 6\15��Ԑǖ�\fedK����:�8���<)5h�\17y Ó�w        ��r*-�\ 50��\7f�����Bf��J&  u:fIV�r�\15:rjh.p�甴���9�\fM\1e��H���>���듲pg�BҲ4\1d:{-��RT�P�MHZ��Rw+|�)�D�qKєW2W��e�\10���j\ 6\1c�O{F|��aM)xh��\1c�ʴH��-�IF�\163捩Gِ\0\0\0\0\0\14�q���d\ e-�B\1f\\*�u���D�Z��nǮ~�4\19��gfG�y�N��-m�ݯ�\em(ָ����m����WW���IoԺ������w2I\18��HX%�Lza�֞X��Y��;\ 1�$�D�Q{}\12�54;9�)k3S��\1d\1f\16�2%-|Ĕ��\b��\0\11��E�ɧT|+2�B��B�H�U�y���������K>Yk�[\ZYN\f��\"ZyTGV\ZĢ5\12MGR�OO��&7���\v�;_��Ou��\1c[7���O��?�0�Rv�Vg\13#۔��+���E�1\16�[\11ٲ\0\0\0\0\0\ 2��;X��\Zqz�\ 4�qJ����2c:�#��\evIK^Fk4�B/�X���﹑\19\19\1e�E4�eh�M8�8(�:�\0<b\e[�M�=eMB3�\0    �\7f��\a���\0\0h�\13��4xrkꬓ��\"�Ƥ�O�?g�����_×�����Q�S��� o�9�3�ˉ��&[\15\7fw���g�n�<�VF�\1db\11\ 6f�\12����N�:\19�ɠ��\11\11Z*\0\0\0\0\0\ 2���\ 6�\\��.�\19۷��C\1c���\ e6����yC\11��2t2$��\183�K���\e\e��\1fX~B�7��tZ_`j�8��?&n2.�x��Iڙ\7f���\17��,�Ø�f6�1{�7�����\19\16=snd�;�\19|e��en��T�Ri-�$���2\"/�\0\0��j�\\�:Z�0�\rNԨf\1de8�\13�٭�\12\eLz�����$�A%\n�T��\\    \\�[*l��;\ZJ�jt�UeJ�\19������ק����a{1�1��\1d�\Z�\e.�VdϚ����Y�#���\1e�����J�p\'\"����gw�\1c��&�T��R�Xڌ��\0\0\0\0\0\ 3��c�{0q0оS��h�����<���7h������]I��UJ���D����:�g�\e{]BA�(���8�i����m��]b��;�be\ez�]��n@���.�.�Qs\11�{�G���2؍$j]�]��\7f6ꏇ{&�$��+e�\18^�\1c�X]ܤ�\1d���%�\15>s2ia���{�\b��C\19T��\0XR�J��������\adz�]���\ ed��݉�      � �,�1r�~�\1e�6���DdG��OB�g��&f)��e�+/�4�T�Q�j�����Ѱ�~w��c�8���ڤF\b�gT�ճ�G�[�M\')��?J\14�UDR)6v[�#E3��\1c�$n��=�J��K�\'�D��q1�8��򄭴��7�(��U\1f����ueL�����t�v2ҤT�K�[o���\0>}FH\0\0\0\0\0\ f\ eB��\0��\bLv�x(Ʋ�9�<K��ig\1c˘�(��E��m\15dߕ1�L��>3O\"\no�\18H�P��Q\15iJU�;G�\13\\/��e>\19����o\eQ�{hnW�\19^\0�S���8��{�\"Λ\16��JK\\�*��G\18��1)|��\'s6\ f��\1d@��M���o+@�\ 6:�e\buw;uY�*9���r�O\13l4��YL��Բ3Q#�\"5\19�E}�\ 4q�SS��G\ 5�HRb]{\1f~&�B\n�q@�wg\1ev�Q\ag_��=\16�rcW6�EP�j\"؊��v�ׇv�{\13:׎�V\r��}L��dD[u��_^�\v\7f?!y֑p<[L�^�Z}�ӵ�\e���\ 5\ 2k;[cJ.ɖ6���鲔��$/D��Y[�kwR��\12D���\0\0\0\0\ 1�.n���\17Nn��v\rv\16�sv�upVV6�;o̥��\11\11\11��\1fM���\'\18�x��8x�-��\1fa��\16���ES������l13K�\12\7f\v�Yx%���rJ��rR�Y�5B$�e�=4�_��ć�&��N\Z_�����k�\1c��H��Q;wdW/+�^&�����)5\13���i\17�(��\12�-�Z�<9sN���\15�.��\16j�M�   �#�p�9��h���ԥ\13�i�ʼn�Q=&\15�U\12�O�Qn�Q�Ԕl�a��\\�.��\e\\�\0�㴒�Mʮ�%y�2=�ޟ�\12]Z��B\1d˩�J$��\0-�\1d�F��X�\fR2�b�\19��X�01�[�#s;\e=�\Z\19\e\e\r&��QiOwM    Z�<�dJ2�\1fڀ��\e\1d#��o�\ 6�p\ 4M�Nӷ�w��8m�2��i�$��d��m�$E��jD�\1c����E��2�\ e��iC;�iwN1���C���\11�59��\"�~��O]����O�[��^T�f�1��\ 4!���\e�q�2y\17q��W�\12��K�Q�ө��\1d\ f\19y����\0\0\0\0\a��U��K\1e�r�X�2@��?bp�L�r+��d�057x������[S#Y���{m�̣4.��+�o5u�S8���F�\19\11�M2���\a\1d�h�/m2^��*+j2L�L���3,�}D\0���F�>�-:�i)t�\15\7f�Y��.�\18Ϻ�f��bV���Z�:Z��\12`W%\12T���3�>I��>Fd���F�-$�j#;*O$��)R�])\11}����[��d�\0\fz���~B�\1eпgG 4�L��=\ 4c��&n��3κu�6��[\12�8\12�e��T�Ҕ\e�.GUF�(�G��$^J�ڑ\ 2�\r��ſ���q��خ\1c��wZ���\r\18���n�����\e\ 5��Ù\1dL5>wv$Rb2{UB�?H\f���LAF�Li%`\ 5��\e�Tjѫ�Q��\0>�������\0\0\0\0\15��������SG\f�M%�B\15�I�y�[�뽊G?t/\1cǘ���P����\114�%    YT*���\">�a&}b��pij��\ 4a־x�[W�n��\16\ e��\a�b\'\f+�\1eH�%���L��3Ȭ�NC+RW��\nb��L�+�`\0\0\0\ f\ e\1f�!�MWp�᭭gk�&�4q��SG\1ee:O�-]1�Iw�#27������7�Q��%!�T2�C���\1f\ e0Ҵ>�\aMY�V8�#ch�V(��vv��\11����TN-��\1c\1c����\14~=I[��W�M5\7f\ e㿀�\1crn�u\ 5��e0�[\1d�Ν�\1d��X�$��!\ 4D��B�\ f��;0z>S%&Fxʗ1+cRղ�GB���)�r�]/q\fÏz\vύ����9��U/%,��/S�\1crC��j(�\\�d��$D���eQ\1c�ȵ��}B��j\15�+�n-�-��ܧem����3���뷐� \0\ 1�����q65�YRGX���:a:�\\�\'{V(�C�Ӫ���\Z����.�7p����\18�4�2��cZQ\ fz���_j6��{s}�A�Rrҋ������ӗx�\ 1^_է�$�R�#�N��+j}�\Z4hQ>�[����E�\0���\f�\0\0\0\0\ 1��\1dR�t�wؾ~�{�|�\0��0���        ��\"8\"M��/\ f�j��\19��9E��-�`អ\r-�[�,�&��oo��L�\13�)&��\r1E���E)<���q�d�\16ᛨYE���\ 1\19p�i�G#�Z��\ f��/{�ۢ99�1��$\11%,֪q�H\"˨T�q���R����\19\0\09_Ʀ]u\ f�1�\"@�Z��徕�M�ͿS#�F��k-��\'c�^�����bg\aYшk�Rw�_��$ؿ     E�\fϚѹ���c/nA+����\11=�b/\n#܋a=@\0\0\0\0\0\ 1�_��\0���uq�+p��Rb��if�H�F�^\ fʱ����\e\ 3�j}٩�#55�S����)�l\ 5�\"yP���������!�\0\ 1ͮ/1s�p���q4����\a?�\ 2۩�4�^��_2���De�\13\"�\1c?�k�͛��F�ԠGZa���uB�^w-��\fB�G���:l_��zK�\0\0\0\0\0\0\ 4\ 1�AX�/���\11����,�zO���n�{��i���l��O���q?\14~������\0�]]Ľ�Ҟ��        �B���?�(��\\levo\10\'��߮�l�������}�ؙG82����{��䏯��O]����������\e���\0\0\0\0\0\0D��~4�\'���!���FQ��{sW\\D�͒7-�s���^�{y�m����\ 3\ 68�\1f�J�(?�$m\15h{E\17v\'6����w⍪G/�Df[m�c��8�\0��ǿ�n\10Z@�Դ�o^ٯ(9��ܙ\Z��|�]����TG���fFC��\0\0\0\0\0\08s�|kBQś��ޭ*\eA�Z����\7f�:3�N�ߦ��e鷡$�w\18\0\0z*R�z����\ f����\Z���gW\r�S\f�\Z�U�kE��\16�ks����Cÿ���h[\1f�M��߀\0\0\0\0\0\0��׎JO��\ZO;�\'�0�g\v���yn\1cwd��OM�\f���n\0\0\0\ftQ*E�ב�\7f\7f��ˡ\f�\0\0\0\0\0\0\18\15-hթJ�Z4N��[S=�#2�#��[}O�g�\0\0\0\0\0\0\0\0\0\0\0\ f��',4,0,'','','',''),(38,0,10,'75859b10ba6852dd','de20aa50472d9b54f292966d1cf693c4','2017-09-07 09:09:29','2017-09-07 09:09:29','','','Contact Photos','9c78857b3d725c1c6d1227a7b8cbe6b2-4.jpg?ts=1504775234','image/jpeg',80,80,2703,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0P\0P\ 1\ 1\11\0��\0\1f\0\ 1\0\ 1\ 4\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\ 1 \n\v\ 2\ 4\a\ 3\ 5\ 6��\04\10\0\0\ 6\ 1\ 3\ 1\ 6\ 6\0\ 5\ 5\0\0\0\0\0\ 1\ 2\ 3\ 4\ 5\ 6\a\0\b\11  \12\13\14!1Q\n\15\16\"Aq\17#���3Sa����\0\b\ 1\ 1\0\0?\0��M5A\10\ fQ\0��j�����ǯ<��\1e��_�T\ 4\a�@\7fZ��i����\149\11\ 3��\7f׾�*��)��{ڥ����J�Y�[6h��e�\v�,u��$�\1c1����t�KvD3%�\7f��g\11[I�\17\16\15_:\15kƵ�J�u��B��7��\'vX3i�Rj:�G���*�e�\0\ 6��<C\19S��ש\14�kGH8�Z���!�ܶ;\18HiQM�\f�pN\13���\1e��Z��$�b�\b\1d������~� ��]��vG�X��e�\0P̚�k\12�C�\18G3H�޽��O�/l��x\0�\a���\ e?>a�\a�M|�i������:{Lٞ�w,dRt� aK�B�f����\f\ 4\ 3�5���Ô��\ 25��\ 2\ 2b�%\ 1\ 1\10֡��\eZ�uZꅊqNL�����\192Õ�\ 5oY↚}L�VB�\0��\15�0���ւ7s\0�D�{I��N\n_�J;�)Tʮ>��)���UR�U���V�PlЏ����`�lD4S\16�M�8��\r�fѲ\ 4*H��i�P)CP���O\f3�{\ 5�a��%y��V�\ e)��yn��Yi\16E�\ 23�I�\19\ 6�Vh��\a��;  8�\ 6ݴʛG]��5�b~�=I~\1f}��vݐr��(��C����/m��X�H�r\1e\ eN*ߎ��\\==\1eZ�Q�ed���\ 4{��\\�����n��X�^¹Z���\ e2�T\aƓ�e�%W\"�\1f��\"��w\18FV\be�L�8$���@\17K�aM`9\ 4G�zv�i�e���s���^�q�Y���9���9(h��9�H��F�`�kd�)���\ 6��I$B��\1dr�\n\"n5�����}.��    9�l2�m\1f&\12�\n�b����\14+$V�`\ 3\n�\0++�\1c\13��9W�\ 4�0�h�q�q�\1c\a\1f�����\11\ 4G�\0G��Z�~.      ��׬c��\ 1\ 4���8\e\a�o\r�\12�O\17��5�b61T\Z\15EW�%B�NnTJU\172gfܤ�\b�lu遅-�r�߲�\e}M�{�2۞,�[�:�\0^2�֫\1e��A��DH.�a<��h_/���4�]W�R|��\'\b�ỴN��\ e\13*�.��\14�Ed�����\18�Q3�C��S\0�D\aYV�vÑ>\e~�X\7f{\18��\'?�\1c��,\135C�\ 2f�K�W�2�\ 5}ߝ$���+�O��\1f0T�\'cX����X��l���f��q�\v0�#\v�8�U(+�*�\18e\f�r�a`��[�J�\12p���rw휢���\ 1V��E�+$�z�!�\ 5�]�=�j33\18W\ fۮUȇb����7f\fj,�\13���׳>�NPH�G,y�\18\10�Q�\r�\v���u\11\1e�:��%Ü�hƙi����\ 1\'�l;��\"WI܅4�R+E\7f��n��Q�*?&a%:��6�\rU�M-��(\14\0\08\0�\ e?�\\��^\ 5���ᝠ�+�����>����*�\16)��1�P�P���a�$\ 2�b�:�V�p0�\b��97M��LN�!a-��\ f�oX�\0���y�L���\ f\17\1dY#*\15���\15_n�T~\7f\13%{����]NI${L�quI7i�0�\ 6��\1cq�iw\e\'M-��\Z�^���<��\19�]/)\10�u�\vNxU    �m���\ 3X{Ԭ�F\12Y�c(��Vk0M\10l��Y�l��Df]\16�O�u:�\ e�Y��R�0�+�Z�Z!�\rv�\ 3\16�[F���G&�(��-�D\e4j�h��\nR\10\05�۾ۍSw{a�\ee�;q\1dZ�\18��_ʴD�\1d��d�r�6�ͺ�T�=�J\v)�H(r&��   &���\1c\a\10��n�k�\ 3��      �\7f\fbXBٓ��\19GmY>�\vE�l�\'�x�|�5\12�\"F�r�O���&��\f�y%^\Zn�(�:ԓH\15�*�1{@b���\ 1\ f^\ 3��\7f\1e�\\k�!令#�\b�\0���#�X�3]Rz�l��\f��\0��    �#�\r�D1t�[gfZB*�Q���\"q*�у�j�j$�V�ZbE\13\ 3��\f�YP\10Q\15�8��~1�$\14\fs8�Xh���FD�G7M�|ls\ 6��ѓ\ 6-QI�6mRI�V�$�       �$�P�}4��.����!�^�5\n�⾪���\r��\ ff�YT�}ګEM�|�U\13\ 3\bs�c\13�=�\ eG�m������K;Lcw��O�0Q�=�{h��c):Ě       \ 1c\ 2r�\\����\1e���n\ f귺��{�i��U���_7�\1d&��L��7)ӷ~\r�K�\1d���^f�X�,%_q8Z�)\16��+���\16�_��#�v,��d���S�ѓդ�\e�y��y���\r�\17�?�\ f�^Rv��Y��vS\17\10�b�L�>����E�e\f^\ 1\17/q:\ eV!\a�Y���d7\17��M4�V }��+�J��ض��\vWH\v�K*��$ y*���Q����1J��#��M\ 3\1c�P��H�`!C��\a�~�T��7<\b��\1e��_�]CL\7f�~I����o\ fݒ���U��\14\0\15uE������}�       �V֘~��\f �$\ 2R�����M4�P�C\19�����/\ ea3-�dLn.���\ 4�c��dۛώЌb�\148�0�b鮸4n\ eN�WJ��uW\ 4�ި�c�Q\ 4��\1d\11\13�rd�\" ��TJ\0*\18G���i���͸�+�E1vF�hG\1d�敲�MU\10\ 3\7f�uQIC\0qɓ/!�\ 3�ֿ��',5,0,'','','',''),(39,0,10,'75859b10ba6852dd','de20aa50472d9b54f292966d1cf693c4','2017-09-07 09:09:29','2017-09-07 09:09:29','','','Contact Photos','9c78857b3d725c1c6d1227a7b8cbe6b2-4.jpg?ts=1504775234','image/jpeg',48,48,1755,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\00\00\ 1\ 1\11\0��\0\e\0\0\ 2\ 2\ 3\ 1\0\0\0\0\0\0\0\0\0\0\0\b  \0\ 6\ 1\ 4\a\n��\0.\10\0\ 1\ 4\ 2\ 1\ 3\ 3\ 3\ 3\ 4\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0      \11\12\13\14\n\16!\151A\"#$23Qa��\0\b\ 1\ 1\0\0?\0���3�c\19�s�\18ǜ�?�1���{�p\ fK����]�_�\1f�r��\0BsK�]�n\v4d�\7f\ 6fZ%\ 2ӣ�\v³+\1e�r0�m�&��i��-��<u��\v`��Xh�K\ 2ɤU-y�͎\roc��e�ښ�B$���.�>jA�g>���%hM����%�C\1c¿p��O!����6���x�i�e�5�\ 5��H�)LW�l�e����!k��:\14�T���h\12�q\ f2ڰ���NݴM\15�j�6�\10A��7�?qY��ˌ�g�Z�[D�En�\17&Z]-�mnB��a!�[v\\�h��2Ba\ 3RI?�\16��\1f�<~/�\17\ay=d�G����\e��3�JM�[ݨ��\10`   ��ԭy���N�\ 5�\0ɚȥ֐Y�ʈ���O`=�y��|\vҼ�&�-F�m\12f��+`<�\11q{\ 2�*En՘g\b���$��Y��`��P��#\ 6I%�;�<�z�+��<\e��#ۣ��g��dl9�\10n��&���\7fek�ٵ���)X�C\16�dz�D���\ 1�0�N%HiI�m���R/hvߠ��)5>B�~N��M�X�}��\']�؜�\Zlcޒ�\12Z��FQ.6��?\11`       �/����>�>J[X㦣�`�3���l8m%X<�=�j�2.�L2�1\"�\10���D�7�0�Ĉ2�+�I1��Kw����n^\16i>%T%�cƺ�x�]�l�_�/�C\1e��X�\11JR�\ 6B�y��\ 5Ÿ�Q-�+μ�+ug�\\�y�J7\1et���{2U0�\1dOH��m�YF]q�Z�a\12�$f\13�d�B\a����2�F<��c.:�e`��Z�_���|������)�n|\7f\ e��KQi\Z�WK�\12�y��#Y,\v6��6\18\17c&,\10S�MP�Δ�3\14ę��;F�imE�M�I�MiF��܎L��N�W����J!O�\12Vi\b��2zA\n(�$�G�#\n%�{�^s*]���p��\\�2n�Et��ܬ�fݏ�Z\Z�m\0�:\1c��2%�.�؁D�3)�[F�\ 5�����a\f\1d��\1c�],2   ]�ˆ�ۮ��\v�Z�ϯ*kj4=���N1�����-c��;l�:\ 1\ 1@�Ϋ+�������O�WW��!א^EJGNFG�Ü$�L�B�FI\0CE�x\ 6��C42�Z�$R�u��}����Z\1cB��c=/>�z����\1d��XK�3x�q�,�8�+�\1c��-�#��?*\ZF���\ 5��V)/%xR3�e�\ 60�\b(b0�\8a;#\f;\bKl��\r%�Ye�c\bCM6���\'\18JP�%8�1��z�Wm�J��e�Z⁜�[�&+\16\18i!�.>V\ ez8��X�E}+d�\r\0�\ 6!�P��eաi�U�t\12v��O�;}qj�e0åi��\15?~A�\1d-\11��٘H �q�-�b>\f\18�\Z�+9�#7�x�1�\Z�\Z�e�\ 1��=`�t,���\n�\0\"\nn:x%zs�Ϥ����?�z|��գ\18�c���u��S?�\7f���K��R+1Uh�a���hTc\1e�%\ 4\16A��1�>?�B�\0����',6,0,'','','',''),(40,5,11,'75859b10bb574e2e','01ebf2eb957e5aef5463ba5ae6510ef5','2017-09-07 09:19:08','2017-09-07 09:19:08','','','Contact Photos','4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575','image/jpeg',175,175,5493,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0�\0�\ 1\ 1\11\0��\0\1e\0\ 1\0\ 2\ 3\0\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\n\v\ 4\b     \ 2\ 3\a\ 5\ 6��\0B\10\0\0\ 5\ 3\ 2\ 3\ 5\ 6\ 2\ 5\v\ 5\0\0\0\0\0\ 1\ 2\ 5\ 6\ 3\ 4\a\b\11        \12!\n\13\151A\14\16\"Qa�q�\17%23�\18#$&5BR����Es�����\0\b\ 1\ 1\0\0?\0��\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն����X\Z\'���p|L�sN��\1e�}�Y%ZR|�\11(�J*I&+�rJ\18#�yI)%l�Z�,:��i�(��ϥ�)���J�����*hχ\18o�мI����$�\16Dj-� (�C\"�cI(s���_�L�:g��\v`w�I\ 5����9�s.w�Y���a\7f���C\"3:I��e�~��g,�\1dڮ�Ϩ�6�&�t\ 1�t�\ 3�/iK��xv<�v   #=�\13{�$�ѹ\16�Idу=��#�}�G���!�\0\0\0\0\0\0\0\ 2*|z�B��\1c6�Zp�]�s\"�A�ڝ\r�E\7f\r��{�b�\1d�Z�HI��j��>Eq�E�\14˒S.:t�7\19�Vg�5\15�u;��Ys=�YFZ�Rk��}����j��ʮHnl�Ifh���M6&\ 4\";M\15\13�DD�]��¿S\1cR��\1cc�\eh�B�\14�{��t��Ƥ\ f\16G��V�Mʽ4$�&2\ 4��\"����%���{̈}9$����489hۆ\ 4\1d��    @�e��崭�\Z��ط<��m�(v&�Ne{�ȵ\1dE�\ 4q\14QM\ 6I��\Z�uO�h���D<�\0\0\0\0\0\0\0qۍG\12fn\19\Z\18��\7fb��R���\18\ 69~�2w�\12��o\nstMT�x\1e=d��>��H��l�\16MT\1c���:�\ f!M2��a��L��c��/�Ri��Cr���\1c����\1d��T�\Z�u\15Υ$�F�\10IN��춆�q�5��S�,-B��c�^�op�}AW�\108�Y)�c?��T��2F\18i��դkI��$b�Փ�鐸�A�\e�\\<��\ 1�F\ 2��h�ŭ�ܿIk�\17)�3\17^�N�ٓ�wu]��k�U4�J�\17��8�W�*�F�7�`^U:V��ң�\15I%�\1c̷?��|����C{�Oh�[�:r�qğ���  ����0\\���\Ze0\\�ޅ\Z��.���\1f�RvZ�\13�NOI\n#��\15���O\fv���-ik�\1d\ eF\a���\1c\ e�o�;�E�I�\14���ձ�\14�5�\Z�Rv!,�\1e�\\4;����MyE\1e�3��t�a9��B��:̌�[�X�T���h_\"��r\194k��*�F\\��U:��M�z�\0�u#�\0�C�\0\0\0\0\0\ 2�>�f�\1cr���Z\\kp�q\ 5Ҿ.oU�u������q-S\a�CJK��PSǬf�2JJ��G�D\fYm���+>!҄�^�\16\n\'��/{}\f�W7\16��-\18K\1f;�K���kI��\v(�;T�F��\r��H̖J�\10\0��J�s\ 4j�\vK��\0��m\1f���p֫WV\'�\"Iٹ\12jTlx�;ҤO,R\ 6\15��Ԑǖ�\fedK����:�8���<)5h�\17y Ó�w        ��r*-�\ 50��\7f�����Bf��J&  u:fIV�r�\15:rjh.p�甴���9�\fM\1e��H���>���듲pg�BҲ4\1d:{-��RT�P�MHZ��Rw+|�)�D�qKєW2W��e�\10���j\ 6\1c�O{F|��aM)xh��\1c�ʴH��-�IF�\163捩Gِ\0\0\0\0\0\14�q���d\ e-�B\1f\\*�u���D�Z��nǮ~�4\19��gfG�y�N��-m�ݯ�\em(ָ����m����WW���IoԺ������w2I\18��HX%�Lza�֞X��Y��;\ 1�$�D�Q{}\12�54;9�)k3S��\1d\1f\16�2%-|Ĕ��\b��\0\11��E�ɧT|+2�B��B�H�U�y���������K>Yk�[\ZYN\f��\"ZyTGV\ZĢ5\12MGR�OO��&7���\v�;_��Ou��\1c[7���O��?�0�Rv�Vg\13#۔��+���E�1\16�[\11ٲ\0\0\0\0\0\ 2��;X��\Zqz�\ 4�qJ����2c:�#��\evIK^Fk4�B/�X���﹑\19\19\1e�E4�eh�M8�8(�:�\0<b\e[�M�=eMB3�\0    �\7f��\a���\0\0h�\13��4xrkꬓ��\"�Ƥ�O�?g�����_×�����Q�S��� o�9�3�ˉ��&[\15\7fw���g�n�<�VF�\1db\11\ 6f�\12����N�:\19�ɠ��\11\11Z*\0\0\0\0\0\ 2���\ 6�\\��.�\19۷��C\1c���\ e6����yC\11��2t2$��\183�K���\e\e��\1fX~B�7��tZ_`j�8��?&n2.�x��Iڙ\7f���\17��,�Ø�f6�1{�7�����\19\16=snd�;�\19|e��en��T�Ri-�$���2\"/�\0\0��j�\\�:Z�0�\rNԨf\1de8�\13�٭�\12\eLz�����$�A%\n�T��\\    \\�[*l��;\ZJ�jt�UeJ�\19������ק����a{1�1��\1d�\Z�\e.�VdϚ����Y�#���\1e�����J�p\'\"����gw�\1c��&�T��R�Xڌ��\0\0\0\0\0\ 3��c�{0q0оS��h�����<���7h������]I��UJ���D����:�g�\e{]BA�(���8�i����m��]b��;�be\ez�]��n@���.�.�Qs\11�{�G���2؍$j]�]��\7f6ꏇ{&�$��+e�\18^�\1c�X]ܤ�\1d���%�\15>s2ia���{�\b��C\19T��\0XR�J��������\adz�]���\ ed��݉�      � �,�1r�~�\1e�6���DdG��OB�g��&f)��e�+/�4�T�Q�j�����Ѱ�~w��c�8���ڤF\b�gT�ճ�G�[�M\')��?J\14�UDR)6v[�#E3��\1c�$n��=�J��K�\'�D��q1�8��򄭴��7�(��U\1f����ueL�����t�v2ҤT�K�[o���\0>}FH\0\0\0\0\0\ f\ eB��\0��\bLv�x(Ʋ�9�<K��ig\1c˘�(��E��m\15dߕ1�L��>3O\"\no�\18H�P��Q\15iJU�;G�\13\\/��e>\19����o\eQ�{hnW�\19^\0�S���8��{�\"Λ\16��JK\\�*��G\18��1)|��\'s6\ f��\1d@��M���o+@�\ 6:�e\buw;uY�*9���r�O\13l4��YL��Բ3Q#�\"5\19�E}�\ 4q�SS��G\ 5�HRb]{\1f~&�B\n�q@�wg\1ev�Q\ag_��=\16�rcW6�EP�j\"؊��v�ׇv�{\13:׎�V\r��}L��dD[u��_^�\v\7f?!y֑p<[L�^�Z}�ӵ�\e���\ 5\ 2k;[cJ.ɖ6���鲔��$/D��Y[�kwR��\12D���\0\0\0\0\ 1�.n���\17Nn��v\rv\16�sv�upVV6�;o̥��\11\11\11��\1fM���\'\18�x��8x�-��\1fa��\16���ES������l13K�\12\7f\v�Yx%���rJ��rR�Y�5B$�e�=4�_��ć�&��N\Z_�����k�\1c��H��Q;wdW/+�^&�����)5\13���i\17�(��\12�-�Z�<9sN���\15�.��\16j�M�   �#�p�9��h���ԥ\13�i�ʼn�Q=&\15�U\12�O�Qn�Q�Ԕl�a��\\�.��\e\\�\0�㴒�Mʮ�%y�2=�ޟ�\12]Z��B\1d˩�J$��\0-�\1d�F��X�\fR2�b�\19��X�01�[�#s;\e=�\Z\19\e\e\r&��QiOwM    Z�<�dJ2�\1fڀ��\e\1d#��o�\ 6�p\ 4M�Nӷ�w��8m�2��i�$��d��m�$E��jD�\1c����E��2�\ e��iC;�iwN1���C���\11�59��\"�~��O]����O�[��^T�f�1��\ 4!���\e�q�2y\17q��W�\12��K�Q�ө��\1d\ f\19y����\0\0\0\0\a��U��K\1e�r�X�2@��?bp�L�r+��d�057x������[S#Y���{m�̣4.��+�o5u�S8���F�\19\11�M2���\a\1d�h�/m2^��*+j2L�L���3,�}D\0���F�>�-:�i)t�\15\7f�Y��.�\18Ϻ�f��bV���Z�:Z��\12`W%\12T���3�>I��>Fd���F�-$�j#;*O$��)R�])\11}����[��d�\0\fz���~B�\1eпgG 4�L��=\ 4c��&n��3κu�6��[\12�8\12�e��T�Ҕ\e�.GUF�(�G��$^J�ڑ\ 2�\r��ſ���q��خ\1c��wZ���\r\18���n�����\e\ 5��Ù\1dL5>wv$Rb2{UB�?H\f���LAF�Li%`\ 5��\e�Tjѫ�Q��\0>�������\0\0\0\0\15��������SG\f�M%�B\15�I�y�[�뽊G?t/\1cǘ���P����\114�%    YT*���\">�a&}b��pij��\ 4a־x�[W�n��\16\ e��\a�b\'\f+�\1eH�%���L��3Ȭ�NC+RW��\nb��L�+�`\0\0\0\ f\ e\1f�!�MWp�᭭gk�&�4q��SG\1ee:O�-]1�Iw�#27������7�Q��%!�T2�C���\1f\ e0Ҵ>�\aMY�V8�#ch�V(��vv��\11����TN-��\1c\1c����\14~=I[��W�M5\7f\ e㿀�\1crn�u\ 5��e0�[\1d�Ν�\1d��X�$��!\ 4D��B�\ f��;0z>S%&Fxʗ1+cRղ�GB���)�r�]/q\fÏz\vύ����9��U/%,��/S�\1crC��j(�\\�d��$D���eQ\1c�ȵ��}B��j\15�+�n-�-��ܧem����3���뷐� \0\ 1�����q65�YRGX���:a:�\\�\'{V(�C�Ӫ���\Z����.�7p����\18�4�2��cZQ\ fz���_j6��{s}�A�Rrҋ������ӗx�\ 1^_է�$�R�#�N��+j}�\Z4hQ>�[����E�\0���\f�\0\0\0\0\ 1��\1dR�t�wؾ~�{�|�\0��0���        ��\"8\"M��/\ f�j��\19��9E��-�`អ\r-�[�,�&��oo��L�\13�)&��\r1E���E)<���q�d�\16ᛨYE���\ 1\19p�i�G#�Z��\ f��/{�ۢ99�1��$\11%,֪q�H\"˨T�q���R����\19\0\09_Ʀ]u\ f�1�\"@�Z��徕�M�ͿS#�F��k-��\'c�^�����bg\aYшk�Rw�_��$ؿ     E�\fϚѹ���c/nA+����\11=�b/\n#܋a=@\0\0\0\0\0\ 1�_��\0���uq�+p��Rb��if�H�F�^\ fʱ����\e\ 3�j}٩�#55�S����)�l\ 5�\"yP���������!�\0\ 1ͮ/1s�p���q4����\a?�\ 2۩�4�^��_2���De�\13\"�\1c?�k�͛��F�ԠGZa���uB�^w-��\fB�G���:l_��zK�\0\0\0\0\0\0\ 4\ 1�AX�/���\11����,�zO���n�{��i���l��O���q?\14~������\0�]]Ľ�Ҟ��        �B���?�(��\\levo\10\'��߮�l�������}�ؙG82����{��䏯��O]����������\e���\0\0\0\0\0\0D��~4�\'���!���FQ��{sW\\D�͒7-�s���^�{y�m����\ 3\ 68�\1f�J�(?�$m\15h{E\17v\'6����w⍪G/�Df[m�c��8�\0��ǿ�n\10Z@�Դ�o^ٯ(9��ܙ\Z��|�]����TG���fFC��\0\0\0\0\0\08s�|kBQś��ޭ*\eA�Z����\7f�:3�N�ߦ��e鷡$�w\18\0\0z*R�z����\ f����\Z���gW\r�S\f�\Z�U�kE��\16�ks����Cÿ���h[\1f�M��߀\0\0\0\0\0\0��׎JO��\ZO;�\'�0�g\v���yn\1cwd��OM�\f���n\0\0\0\ftQ*E�ב�\7f\7f��ˡ\f�\0\0\0\0\0\0\18\15-hթJ�Z4N��[S=�#2�#��[}O�g�\0\0\0\0\0\0\0\0\0\0\0\ f��',4,0,'','','',''),(41,5,11,'75859b10bb574e2e','01ebf2eb957e5aef5463ba5ae6510ef5','2017-09-07 09:19:08','2017-09-07 09:19:08','','','Contact Photos','4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575','image/jpeg',80,80,2703,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0P\0P\ 1\ 1\11\0��\0\1f\0\ 1\0\ 1\ 4\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\ 1 \n\v\ 2\ 4\a\ 3\ 5\ 6��\04\10\0\0\ 6\ 1\ 3\ 1\ 6\ 6\0\ 5\ 5\0\0\0\0\0\ 1\ 2\ 3\ 4\ 5\ 6\a\0\b\11  \12\13\14!1Q\n\15\16\"Aq\17#���3Sa����\0\b\ 1\ 1\0\0?\0��M5A\10\ fQ\0��j�����ǯ<��\1e��_�T\ 4\a�@\7fZ��i����\149\11\ 3��\7f׾�*��)��{ڥ����J�Y�[6h��e�\v�,u��$�\1c1����t�KvD3%�\7f��g\11[I�\17\16\15_:\15kƵ�J�u��B��7��\'vX3i�Rj:�G���*�e�\0\ 6��<C\19S��ש\14�kGH8�Z���!�ܶ;\18HiQM�\f�pN\13���\1e��Z��$�b�\b\1d������~� ��]��vG�X��e�\0P̚�k\12�C�\18G3H�޽��O�/l��x\0�\a���\ e?>a�\a�M|�i������:{Lٞ�w,dRt� aK�B�f����\f\ 4\ 3�5���Ô��\ 25��\ 2\ 2b�%\ 1\ 1\10֡��\eZ�uZꅊqNL�����\192Õ�\ 5oY↚}L�VB�\0��\15�0���ւ7s\0�D�{I��N\n_�J;�)Tʮ>��)���UR�U���V�PlЏ����`�lD4S\16�M�8��\r�fѲ\ 4*H��i�P)CP���O\f3�{\ 5�a��%y��V�\ e)��yn��Yi\16E�\ 23�I�\19\ 6�Vh��\a��;  8�\ 6ݴʛG]��5�b~�=I~\1f}��vݐr��(��C����/m��X�H�r\1e\ eN*ߎ��\\==\1eZ�Q�ed���\ 4{��\\�����n��X�^¹Z���\ e2�T\aƓ�e�%W\"�\1f��\"��w\18FV\be�L�8$���@\17K�aM`9\ 4G�zv�i�e���s���^�q�Y���9���9(h��9�H��F�`�kd�)���\ 6��I$B��\1dr�\n\"n5�����}.��    9�l2�m\1f&\12�\n�b����\14+$V�`\ 3\n�\0++�\1c\13��9W�\ 4�0�h�q�q�\1c\a\1f�����\11\ 4G�\0G��Z�~.      ��׬c��\ 1\ 4���8\e\a�o\r�\12�O\17��5�b61T\Z\15EW�%B�NnTJU\172gfܤ�\b�lu遅-�r�߲�\e}M�{�2۞,�[�:�\0^2�֫\1e��A��DH.�a<��h_/���4�]W�R|��\'\b�ỴN��\ e\13*�.��\14�Ed�����\18�Q3�C��S\0�D\aYV�vÑ>\e~�X\7f{\18��\'?�\1c��,\135C�\ 2f�K�W�2�\ 5}ߝ$���+�O��\1f0T�\'cX����X��l���f��q�\v0�#\v�8�U(+�*�\18e\f�r�a`��[�J�\12p���rw휢���\ 1V��E�+$�z�!�\ 5�]�=�j33\18W\ fۮUȇb����7f\fj,�\13���׳>�NPH�G,y�\18\10�Q�\r�\v���u\11\1e�:��%Ü�hƙi����\ 1\'�l;��\"WI܅4�R+E\7f��n��Q�*?&a%:��6�\rU�M-��(\14\0\08\0�\ e?�\\��^\ 5���ᝠ�+�����>����*�\16)��1�P�P���a�$\ 2�b�:�V�p0�\b��97M��LN�!a-��\ f�oX�\0���y�L���\ f\17\1dY#*\15���\15_n�T~\7f\13%{����]NI${L�quI7i�0�\ 6��\1cq�iw\e\'M-��\Z�^���<��\19�]/)\10�u�\vNxU    �m���\ 3X{Ԭ�F\12Y�c(��Vk0M\10l��Y�l��Df]\16�O�u:�\ e�Y��R�0�+�Z�Z!�\rv�\ 3\16�[F���G&�(��-�D\e4j�h��\nR\10\05�۾ۍSw{a�\ee�;q\1dZ�\18��_ʴD�\1d��d�r�6�ͺ�T�=�J\v)�H(r&��   &���\1c\a\10��n�k�\ 3��      �\7f\fbXBٓ��\19GmY>�\vE�l�\'�x�|�5\12�\"F�r�O���&��\f�y%^\Zn�(�:ԓH\15�*�1{@b���\ 1\ f^\ 3��\7f\1e�\\k�!令#�\b�\0���#�X�3]Rz�l��\f��\0��    �#�\r�D1t�[gfZB*�Q���\"q*�у�j�j$�V�ZbE\13\ 3��\f�YP\10Q\15�8��~1�$\14\fs8�Xh���FD�G7M�|ls\ 6��ѓ\ 6-QI�6mRI�V�$�       �$�P�}4��.����!�^�5\n�⾪���\r��\ ff�YT�}ګEM�|�U\13\ 3\bs�c\13�=�\ eG�m������K;Lcw��O�0Q�=�{h��c):Ě       \ 1c\ 2r�\\����\1e���n\ f귺��{�i��U���_7�\1d&��L��7)ӷ~\r�K�\1d���^f�X�,%_q8Z�)\16��+���\16�_��#�v,��d���S�ѓդ�\e�y��y���\r�\17�?�\ f�^Rv��Y��vS\17\10�b�L�>����E�e\f^\ 1\17/q:\ eV!\a�Y���d7\17��M4�V }��+�J��ض��\vWH\v�K*��$ y*���Q����1J��#��M\ 3\1c�P��H�`!C��\a�~�T��7<\b��\1e��_�]CL\7f�~I����o\ fݒ���U��\14\0\15uE������}�       �V֘~��\f �$\ 2R�����M4�P�C\19�����/\ ea3-�dLn.���\ 4�c��dۛώЌb�\148�0�b鮸4n\ eN�WJ��uW\ 4�ި�c�Q\ 4��\1d\11\13�rd�\" ��TJ\0*\18G���i���͸�+�E1vF�hG\1d�敲�MU\10\ 3\7f�uQIC\0qɓ/!�\ 3�ֿ��',5,0,'','','',''),(42,5,11,'75859b10bb574e2e','01ebf2eb957e5aef5463ba5ae6510ef5','2017-09-07 09:19:08','2017-09-07 09:19:08','','','Contact Photos','4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575','image/jpeg',48,48,1755,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\00\00\ 1\ 1\11\0��\0\e\0\0\ 2\ 2\ 3\ 1\0\0\0\0\0\0\0\0\0\0\0\b  \0\ 6\ 1\ 4\a\n��\0.\10\0\ 1\ 4\ 2\ 1\ 3\ 3\ 3\ 3\ 4\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0      \11\12\13\14\n\16!\151A\"#$23Qa��\0\b\ 1\ 1\0\0?\0���3�c\19�s�\18ǜ�?�1���{�p\ fK����]�_�\1f�r��\0BsK�]�n\v4d�\7f\ 6fZ%\ 2ӣ�\v³+\1e�r0�m�&��i��-��<u��\v`��Xh�K\ 2ɤU-y�͎\roc��e�ښ�B$���.�>jA�g>���%hM����%�C\1c¿p��O!����6���x�i�e�5�\ 5��H�)LW�l�e����!k��:\14�T���h\12�q\ f2ڰ���NݴM\15�j�6�\10A��7�?qY��ˌ�g�Z�[D�En�\17&Z]-�mnB��a!�[v\\�h��2Ba\ 3RI?�\16��\1f�<~/�\17\ay=d�G����\e��3�JM�[ݨ��\10`   ��ԭy���N�\ 5�\0ɚȥ֐Y�ʈ���O`=�y��|\vҼ�&�-F�m\12f��+`<�\11q{\ 2�*En՘g\b���$��Y��`��P��#\ 6I%�;�<�z�+��<\e��#ۣ��g��dl9�\10n��&���\7fek�ٵ���)X�C\16�dz�D���\ 1�0�N%HiI�m���R/hvߠ��)5>B�~N��M�X�}��\']�؜�\Zlcޒ�\12Z��FQ.6��?\11`       �/����>�>J[X㦣�`�3���l8m%X<�=�j�2.�L2�1\"�\10���D�7�0�Ĉ2�+�I1��Kw����n^\16i>%T%�cƺ�x�]�l�_�/�C\1e��X�\11JR�\ 6B�y��\ 5Ÿ�Q-�+μ�+ug�\\�y�J7\1et���{2U0�\1dOH��m�YF]q�Z�a\12�$f\13�d�B\a����2�F<��c.:�e`��Z�_���|������)�n|\7f\ e��KQi\Z�WK�\12�y��#Y,\v6��6\18\17c&,\10S�MP�Δ�3\14ę��;F�imE�M�I�MiF��܎L��N�W����J!O�\12Vi\b��2zA\n(�$�G�#\n%�{�^s*]���p��\\�2n�Et��ܬ�fݏ�Z\Z�m\0�:\1c��2%�.�؁D�3)�[F�\ 5�����a\f\1d��\1c�],2   ]�ˆ�ۮ��\v�Z�ϯ*kj4=���N1�����-c��;l�:\ 1\ 1@�Ϋ+�������O�WW��!א^EJGNFG�Ü$�L�B�FI\0CE�x\ 6��C42�Z�$R�u��}����Z\1cB��c=/>�z����\1d��XK�3x�q�,�8�+�\1c��-�#��?*\ZF���\ 5��V)/%xR3�e�\ 60�\b(b0�\8a;#\f;\bKl��\r%�Ye�c\bCM6���\'\18JP�%8�1��z�Wm�J��e�Z⁜�[�&+\16\18i!�.>V\ ez8��X�E}+d�\r\0�\ 6!�P��eաi�U�t\12v��O�;}qj�e0åi��\15?~A�\1d-\11��٘H �q�-�b>\f\18�\Z�+9�#7�x�1�\Z�\Z�e�\ 1��=`�t,���\n�\0\"\nn:x%zs�Ϥ����?�z|��գ\18�c���u��S?�\7f���K��R+1Uh�a���hTc\1e�%\ 4\16A��1�>?�B�\0����',6,0,'','','',''),(43,2,12,'75859b10bb588dfc','b32d851ca091305b4cf5d115070cedbd','2017-09-07 09:11:20','2017-09-07 09:11:20','','','Contact Photos','777ac66400f3fef5ff42189840387ede-4.jpg?ts=1504775093','image/jpeg',175,175,5493,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0�\0�\ 1\ 1\11\0��\0\1e\0\ 1\0\ 2\ 3\0\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\n\v\ 4\b     \ 2\ 3\a\ 5\ 6��\0B\10\0\0\ 5\ 3\ 2\ 3\ 5\ 6\ 2\ 5\v\ 5\0\0\0\0\0\ 1\ 2\ 5\ 6\ 3\ 4\a\b\11        \12!\n\13\151A\14\16\"Qa�q�\17%23�\18#$&5BR����Es�����\0\b\ 1\ 1\0\0?\0��\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն����X\Z\'���p|L�sN��\1e�}�Y%ZR|�\11(�J*I&+�rJ\18#�yI)%l�Z�,:��i�(��ϥ�)���J�����*hχ\18o�мI����$�\16Dj-� (�C\"�cI(s���_�L�:g��\v`w�I\ 5����9�s.w�Y���a\7f���C\"3:I��e�~��g,�\1dڮ�Ϩ�6�&�t\ 1�t�\ 3�/iK��xv<�v   #=�\13{�$�ѹ\16�Idу=��#�}�G���!�\0\0\0\0\0\0\0\ 2*|z�B��\1c6�Zp�]�s\"�A�ڝ\r�E\7f\r��{�b�\1d�Z�HI��j��>Eq�E�\14˒S.:t�7\19�Vg�5\15�u;��Ys=�YFZ�Rk��}����j��ʮHnl�Ifh���M6&\ 4\";M\15\13�DD�]��¿S\1cR��\1cc�\eh�B�\14�{��t��Ƥ\ f\16G��V�Mʽ4$�&2\ 4��\"����%���{̈}9$����489hۆ\ 4\1d��    @�e��崭�\Z��ط<��m�(v&�Ne{�ȵ\1dE�\ 4q\14QM\ 6I��\Z�uO�h���D<�\0\0\0\0\0\0\0qۍG\12fn\18\18��\7fb��R���\18\ 68��2w�\12��o\nstET�x\1e=d��>��H��l�\16MD\1c���:�\ f!M2��a��L��c��/�Ri��Cr���\1c����\1d��T�\Z�u\15Υ$�F�\10IN��춆�q�5��S�,-B��c�^�op�}AW�\108�Y)�c?��T��2F\18i��դkI��$b�Փ�鐸�A�\e�\\<��\ 1�F\ 2��h�ŭ�ܿIk�\17)�3\17^�N�ٓ�wu]��k�U4�J�\17��8�W�*�F�7�`^U:V��ң�\15I%�\1c̷?��|����C{�Oh�[�:r�qğ���       ����0\\���\Ze0\\�ޅ\Z��.���\1f�RvZ�\13�NOI\n#��\15���O\fv���-ik�\1d\ eF\a���\1c\ e�o�;�E�I�\14���ձ�\14�5�\Z�Rv!,�\1e�\\4;����MyE\1e�3��t�a9��B��:̌�[�X�T���h_\"��r\194k��*�F\\��U:��M�z�\0�u#�\0�C�\0\0\0\0\0\ 2�>�f�\1cr���Z\\kp�q\ 5Ҿ.oU�u������q-S\a�CJK��PSǬf�2JJ��G�D\fYm���+>!҄�^�\16\n\'��/{}\f�W7\16��-\18K\1f;�K���kI��\v(�;T�F��\r��H̖J�\10\0��J�s\ 4j�\vK��\0��m\1f���p֫WV\'�\"Iٹ\12jTlx�;ҤO,R\ 6\15��Ԑǖ�\fedK����:�8���<)5h�\17y Ó�w        ��r*-�\ 50��\7f�����Bf��J&  u:fIV�r�\15:rjh.p�甴���9�\fM\1e��H���>���듲pg�BҲ4\1d:{-��RT�P�MHZ��Rw+|�)�D�qKєW2W��e�\10���j\ 6\1c�O{F|��aM)xh��\1c�ʴH��-�IF�\163捩Gِ\0\0\0\0\0\14�q���d\ e-�B\1f\\*�u���D�Z��nǮ~�4\19��gfG�y�N��-m�ݯ�\em(ָ����m����WW���IoԺ������w2I\18��HX%�Lza�֞X��Y��;\ 1�$�D�Q{}\12�54;9�)k3S��\1d\1f\16�2%-|Ĕ��\b��\0\11��E�ɧT|+2�B��B�H�U�y���������K>Yk�[\ZYN\f��\"ZyTGV\ZĢ5\12MGR�OO��&7���\v�;_��Ou��\1c[7���O��?�0�Rv�Vg\13#۔��+���E�1\16�[\11ٲ\0\0\0\0\0\ 2��;X��\Zqz�\ 4�qJ����2c:�#��\evIK^Fk4�B/�X���﹑\19\19\1e�E4�eh�M8�8(�:�\0<b\e[�M�=eMB3�\0    �\7f��\a���\0\0h�\13��4xrkꬓ��\"�Ƥ�O�?g�����_×�����Q�S��� o�9�3�ˉ��&[\15\7fw���g�n�<�VF�\1db\11\ 6f�\12����N�:\19�ɠ��\11\11Z*\0\0\0\0\0\ 2���\ 6�\\��.�\19۷��C\1c���\ e6����yC\11��2t2$��\183�K���\e\e��\1fX~B�7��tZ_`j�8��?&n2.�x��Iڙ\7f���\17��,�Ø�f6�1{�7�����\19\16=snd�;�\19|e��en��T�Ri-�$���2\"/�\0\0��j�\\�:Z�0�\rNԨf\1de8�\13�٭�\12\eLz�����$�A%\n�T��\\    \\�[*l��;\ZJ�jt�UeJ�\19������ק����a{1�1��\1d�\Z�\e.�VdϚ����Y�#���\1e�����J�p\'\"����gw�\1c��&�T��R�Xڌ��\0\0\0\0\0\ 3��c�{0q0оS��h�����<���7h������]I��UJ���D����:�g�\e{]BA�(���8�i����m��]b��;�be\ez�]��n@���.�.�Qs\11�{�G���2؍$j]�]��\7f6ꏇ{&�$��+e�\18^�\1c�X]ܤ�\1d���%�\15>s2ia���{�\b��C\19T��\0XR�J��������\adz�]���\ ed��݉�      � �,�1r�~�\1e�6���DdG��OB�g��&f)��e�+/�4�T�Q�j�����Ѱ�~w��c�8���ڤF\b�gT�ճ�G�[�M\')��?J\14�UDR)6v[�#E3��\1c�$n��=�J��K�\'�D��q1�8��򄭴��7�(��U\1f����ueL�����t�v2ҤT�K�[o���\0>}FH\0\0\0\0\0\ f\ eB��\0��\bLv�x(Ʋ�9�<K��ig\1c˘�(��E��m\15dߕ1�L��>3O\"\no�\18H�P��Q\15iJU�;G�\13\\/��e>\19����o\eQ�{hnW�\19^\0�S���8��{�\"Λ\16��JK\\�*��G\18��1)|��\'s6\ f��\1d@��M���o+@�\ 6:�e\buw;uY�*9���r�O\13l4��YL��Բ3Q#�\"5\19�E}�\ 4q�SS��G\ 5�HRb]{\1f~&�B\n�q@�wg\1ev�Q\ag_��=\16�rcW6�EP�j\"؊��v�ׇv�{\13:׎�V\r��}L��dD[u��_^�\v\7f?!y֑p<[L�^�Z}�ӵ�\e���\ 5\ 2k;[cJ.ɖ6���鲔��$/D��Y[�kwR��\12D���\0\0\0\0\ 1�.n���\17Nn��v\rv\16�sv�upVV6�;o̥��\11\11\11��\1fM���\'\18�x��8x�-��\1fa��\16���ES������l13K�\12\7f\v�Yx%���rJ��rR�Y�5B$�e�=4�_��ć�&��N\Z_�����k�\1c��H��Q;wdW/+�^&�����)5\13���i\17�(��\12�-�Z�<9sN���\15�.��\16j�M�   �#�p�9��h���ԥ\13�i�ʼn�Q=&\15�U\12�O�Qn�Q�Ԕl�a��\\�.��\e\\�\0�㴒�Mʮ�%y�2=�ޟ�\12]Z��B\1d˩�J$��\0-�\1d�F��X�\fR2�b�\19��X�01�[�#s;\e=�\Z\19\e\e\r&��QiOwM    Z�<�dJ2�\1fڀ��\e\1d#��o�\ 6�p\ 4M�Nӷ�w��8m�2��i�$��d��m�$E��jD�\1c����E��2�\ e��iC;�iwN1���C���\11�59��\"�~��O]����O�[��^T�f�1��\ 4!���\e�q�2y\17q��W�\12��K�Q�ө��\1d\ f\19y����\0\0\0\0\a��U��K\1e�r�X�2@��?bp�L�r+��d�057x������[S#Y���{m�̣4.��+�o5u�S8���F�\19\11�M2���\a\1d�h�/m2^��*+j2L�L���3,�}D\0���F�>�-:�i)t�\15\7f�Y��.�\18Ϻ�f��bV���Z�:Z��\12`W%\12T���3�>I��>Fd���F�-$�j#;*O$��)R�])\11}����[��d�\0\fz���~B�\1eпgG 4�L��=\ 4c��&n��3κu�6��[\12�8\12�e��T�Ҕ\e�.GUF�(�G��$^J�ڑ\ 2�\r��ſ���q��خ\1c��wZ���\r\18���n�����\e\ 5��Ù\1dL5>wv$Rb2{UB�?H\f���LAF�Li%`\ 5��\e�Tjѫ�Q��\0>�������\0\0\0\0\15��������SG\f�M%�B\15�I�y�[�뽊G?t/\1cǘ���P����\114�%    YT*���\">�a&}b��pij��\ 4a־x�[W�n��\16\ e��\a�b\'\f+�\1eH�%���L��3Ȭ�NC+RW��\nb��L�+�`\0\0\0\ f\ e\1f�!�MWp�᭭gk�&�4q��SG\1ee:O�-]1�Iw�#27������7�Q��%!�T2�C���\1f\ e0Ҵ>�\aMY�V8�#ch�V(��vv��\11����TN-��\1c\1c����\14~=I[��W�M5\7f\ e㿀�\1crn�u\ 5��e0�[\1d�Ν�\1d��X�$��!\ 4D��B�\ f��;0z>S%&Fxʗ1+cRղ�GB���)�r�]/q\fÏz\vύ����9��U/%,��/S�\1crC��j(�\\�d��$D���eQ\1c�ȵ��}B��j\15�+�n-�-��ܧem����3���뷐� \0\ 1�����q65�YRGX���:a:�\\�\'{V(�C�Ӫ���\Z����.�7p����\18�4�2��cZQ\ fz���_j6��{s}�A�Rrҋ������ӗx�\ 1^_է�$�R�#�N��+j}�\Z4hQ>�[����E�\0���\f�\0\0\0\0\ 1��\1dR�t�wؾ~�{�|�\0��0���        ��\"8\"M��/\ f�j��\19��9E��-�`អ\r-�[�,�&��oo��L�\13�)&��\r1E���E)<���q�d�\16ᛨYE���\ 1\19p�i�G#�Z��\ f��/{�ۢ99�1��$\11%,֪q�H\"˨T�q���R����\19\0\09_Ʀ]u\ f�1�\"@�Z��徕�M�ͿS#�F��k-��\'c�^�����bg\aYшk�Rw�_��$ؿ     E�\fϚѹ���c/nA+����\11=�b/\n#܋a=@\0\0\0\0\0\ 1�_��\0���uq�+p��Rb��if�H�F�^\ fʱ����\e\ 3�j}٩�#55�S����)�l\ 5�\"yP���������!�\0\ 1ͮ/1s�p���q4����\a?�\ 2۩�4�^��_2���De�\13\"�\1c?�k�͛��F�ԠGZa���uB�^w-��\fB�G���:l_��zK�\0\0\0\0\0\0\ 4\ 1�AX�/���\11����,�zO���n�{��i���l��O���q?\14~������\0�]]Ľ�Ҟ��        �B���?�(��\\levo\10\'��߮�l�������}�ؙG82����{��䏯��O]����������\e���\0\0\0\0\0\0D��~4�\'���!���FQ��{sW\\D�͒7-�s���^�{y�m����\ 3\ 68�\1f�J�(?�$m\15h{E\17v\'6����w⍪G/�Df[m�c��8�\0��ǿ�n\10Z@�Դ�o^ٯ(9��ܙ\Z��|�]����TG���fFC��\0\0\0\0\0\08s�|kBQś��ޭ*\eA�Z����\7f�:3�N�ߦ��e鷡$�w\18\0\0z*R�z����\ f����\Z���gW\r�S\f�\Z�U�kE��\16�ks����Cÿ���h[\1f�M��߀\0\0\0\0\0\0��׎JO��\ZO;�\'�0�g\v���yn\1cwd��OM�\f���n\0\0\0\ftQ*E�ב�\7f\7f��ˡ\f�\0\0\0\0\0\0\18\15-hթJ�Z4N��[S=�#2�#��[}O�g�\0\0\0\0\0\0\0\0\0\0\0\ f��',4,0,'','','',''),(44,2,12,'75859b10bb588dfc','b32d851ca091305b4cf5d115070cedbd','2017-09-07 09:11:20','2017-09-07 09:11:20','','','Contact Photos','777ac66400f3fef5ff42189840387ede-4.jpg?ts=1504775093','image/jpeg',80,80,2703,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0P\0P\ 1\ 1\11\0��\0\1f\0\ 1\0\ 1\ 4\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\ 1 \n\v\ 2\ 4\a\ 3\ 5\ 6��\04\10\0\0\ 6\ 1\ 3\ 1\ 6\ 6\0\ 5\ 5\0\0\0\0\0\ 1\ 2\ 3\ 4\ 5\ 6\a\0\b\11  \12\13\14!1Q\n\15\16\"Aq\17#���3Sa����\0\b\ 1\ 1\0\0?\0��M5A\10\ fQ\0��j�����ǯ<��\1e��_�T\ 4\a�@\7fZ��i����\149\11\ 3��\7f׾�*��)��{ڥ����J�Y�[6h��e�\v�,u��$�\1c1����t�KvD3%�\7f��g\11[I�\17\16\15_:\15kƵ�J�u��B��7��\'vX3i�Rj:�G���*�e�\0\ 6��<C\19S��ש\14�kGH8�Z���!�ܶ;\18HiQM�\f�pN\13���\1e��Z��$�b�\b\1d������~� ��]��vG�X��e�\0P̚�k\12�C�\18G3H�޽��O�/l��x\0�\a���\ e?>a�\a�M|�i������:{Lٞ�w,dRt� aK�B�f����\f\ 4\ 3�5���Ô��\ 25��\ 2\ 2b�%\ 1\ 1\10֡��\eZ�uZꅊqNL�����\192Õ�\ 5oY↚}L�VB�\0��\15�0���ւ7s\0�D�{I��N\n_�J;�)Tʮ>��)���UR�U���V�PlЏ����`�lD4S\16�M�8��\r�fѲ\ 4*H��i�P)CP���O\f3�{\ 5�a��%y��V�\ e)��yn��Yi\16E�\ 23�I�\19\ 6�Vh��\a��;  8�\ 6ݴʛG]��5�b��=I~\1f}��vݐr��(��C����/n��X�H�r\1e\ eN*ߎ�Y\1c�=\1eZ�Q�ed���\ 4{��\\�����n��X�^¹Z���\ e2�T\aƓ�e�%W\"�\1f��\"��w\18FV\be�L�8$���@\17K�aM`9\ 4G�zv�i�e���s���^�q�Y���9���9(h��9�H��F�`�kd�)���\ 6��I$B��\1dr�\n\"n5�����}.��   9�l2�m\1f&\12�\n�b����\14+$V�`\ 3\n�\0++�\1c\13��9W�\ 4�0�h�q�q�\1c\a\1f�����\11\ 4G�\0G��Z�~.      ��׬c��\ 1\ 4���8\e\a�o\r�\12�O\17��5�b61T\Z\15EW�%B�NnTJU\172gfܤ�\b�lu遅-�r�߲�\e}M�{�2۞,�[�:�\0^2�֫\1e��A��DH.�a<��h_/���4�]W�R|��\'\b�ỴN��\ e\13*�.��\14�Ed�����\18�Q3�C��S\0�D\aYV�vÑ>\e~�X\7f{\18��\'?�\1c��,\135C�\ 2f�K�W�2�\ 5}ߝ$���+�O��\1f0T�\'cX����X��l���f��q�\v0�#\v�8�U(+�*�\18e\f�r�a`��[�J�\12p���rw휢���\ 1V��E�+$�z�!�\ 5�]�=�j33\18W\ fۮUȇb����7f\fj,�\13���׳>�NPH�G,y�\18\10�Q�\r�\v���u\11\1e�:��%Ü�hƙi����\ 1\'�l;��\"WI܅4�R+E\7f��n��Q�*?&a%:��6�\rU�M-��(\14\0\08\0�\ e?�\\��^\ 5���ᝠ�+�����>����*�\16)��1�P�P���a�$\ 2�b�:�V�p0�\b��97M��LN�!a-��\ f�oX�\0���y�L���\ f\17\1dY#*\15���\15_n�T~\7f\13%{����]NI${L�quI7i�0�\ 6��\1cq�iw\e\'M-��\Z�^���<��\19�]/)\10�u�\vNxU    �m���\ 3X{Ԭ�F\12Y�c(��Vk0M\10l��Y�l��Df]\16�O�u:�\ e�Y��R�0�+�Z�Z!�\rv�\ 3\16�[F���G&�(��-�D\e4j�h��\nR\10\05�۾ۍSw{a�\ee�;q\1dZ�\18��_ʴD�\1d��d�r�6�ͺ�T�=�J\v)�H(r&��   &���\1c\a\10��n�k�\ 3��      �\7f\fbXBٓ��\19GmY>�\vE�l�\'�x�|�5\12�\"F�r�O���&��\f�y%^\Zn�(�:ԓH\15�*�1{@b���\ 1\ f^\ 3��\7f\1e�\\k�!令#�\b�\0���#�X�3]Rz�l��\f��\0��    �#�\r�D1t�[gfZB*�Q���\"q*�у�j�j$�V�ZbE\13\ 3��\f�YP\10Q\15�8��~1�$\14\fs8�Xh���FD�G7M�|ls\ 6��ѓ\ 6-QI�6mRI�V�$�       �$�P�}4��.����!�^�5\n�⾪���\r��\ ff�YT�}ګEM�|�U\13\ 3\bs�c\13�=�\ eG�m������K;Lcw��O�0Q�=�{h��c):Ě       \ 1c\ 2r�\\����\1e���n\ f귺��{�i��U���_7�\1d&��L��7)ӷ~\r�K�\1d���^f�X�,%_q8Z�)\16��+���\16�_��#�v,��d���S�ѓդ�\e�y��y���\r�\17�?�\ f�^Rv��Y��vS\17\10�b�L�>����E�e\f^\ 1\17/q:\ eV!\a�Y���d7\17��M4�V }��+�J��ض��\vWH\v�K*��$ y*���Q����1J��#��M\ 3\1c�P��H�`!C��\a�~�T��7<\b��\1e��_�]CL\7f�~I����o\ fݒ���U��\14\0\15uE������}�       �V֘~��\f �$\ 2R�����M4�P�C\19�����/\ ea3-�dLn.���\ 4�c��dۛώЌb�\148�0�b鮸4n\ eN�WJ��uW\ 4�ި�c�Q\ 4��\1d\11\13�rd�\" ��TJ\0*\18G���i���͸�+�E1vF�hG\1d�敲�MU\10\ 3\7f�uQIC\0qɓ/!�\ 3�ֿ��',5,0,'','','',''),(45,2,12,'75859b10bb588dfc','b32d851ca091305b4cf5d115070cedbd','2017-09-07 09:11:20','2017-09-07 09:11:20','','','Contact Photos','777ac66400f3fef5ff42189840387ede-4.jpg?ts=1504775093','image/jpeg',48,48,1755,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\00\00\ 1\ 1\11\0��\0\e\0\0\ 2\ 2\ 3\ 1\0\0\0\0\0\0\0\0\0\0\0\b  \0\ 6\ 1\ 4\a\n��\0.\10\0\ 1\ 4\ 2\ 1\ 3\ 3\ 3\ 3\ 4\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0      \11\12\13\14\n\16!\151A\"#$23Qa��\0\b\ 1\ 1\0\0?\0���3�c\19�s�\18ǜ�?�1���{�p\ fK����]�_�\1f�r��\0BsK�]�n\v4d�\7f\ 6fZ%\ 2ӣ�\v³+\1e�r0�m�&��i��-��<u��\v`��Xh�K\ 2ɤU-y�͎\roc��e�ښ�B$���.�>jA�g>���%hM����%�C\1c¿p��O!����6���x�i�e�5�\ 5��H�)LW�l�e����!k��:\14�T���h\12�q\ f2ڰ���NݴM\15�j�6�\10A��7�?qY��ˌ�g�Z�[D�En�\17&Z]-�mnB��a!�[v\\�h��2Ba\ 3RI?�\16��\1f�<~/�\17\ay=d�G����\e��3�JM�[ݨ��\10`   ��ԭy���N�\ 5�\0ɚȥ֐Y�ʈ���O`=�y��|\vҼ�&�-F�m\12f��+`<�\11q{\ 2�*En՘g\b���$��Y��`��P��#\ 6I%�;�<�z�+��<\e��#ۣ��g��dl9�\10n��&���\7fek�ٵ���)X�C\16�dz�D���\ 1�0�N%HiI�m���R/hvߠ��)5>B�~N��M�X�}��\']�؜�\Zlcޒ�\12Z��FQ.6��?\11`       �/����>�>J[X㦣�`�3���l8m%X<�=�j�2.�L2�1\"�\10���D�7�0�Ĉ2�+�I1��Kw����n^\16i>%T%�cƺ�x�]�l�_�/�C\1e��X�\11JR�\ 6B�y��\ 5Ÿ�Q-�+μ�+ug�\\�y�J7\1et���{2U0�\1dOH��m�YF]q�Z�a\12�$f\13�d�B\a����2�F<��c.:�e`��Z�_���|������)�n|\7f\ e��KQi\Z�WK�\12�y��#Y,\v6��6\18\17c&,\10S�MP�Δ�3\14ę��;F�imE�M�I�MiF��܎L��N�W����J!O�\12Vi\b��2zA\n(�$�G�#\n%�{�^s*]���p��\\�2n�Et��ܬ�fݏ�Z\Z�m\0�:\1c��2%�.�؁D�3)�[F�\ 5�����a\f\1d��\1c�],2   ]�ˆ�ۮ��\v�Z�ϯ*kj4=���N1�����-c��;l�:\ 1\ 1@�Ϋ+�������O�WW��!א^EJGNFG�Ü$�L�B�FI\0CE�x\ 6��C42�Z�$R�u��}����Z\1cB��c=/>�z����\1d��XK�3x�q�,�8�+�\1c��-�#��?*\ZF���\ 5��V)/%xR3�e�\ 60�\b(b0�\8a;#\f;\bKl��\r%�Ye�c\bCM6���\'\18JP�%8�1��z�Wm�J��e�Z⁜�[�&+\16\18i!�.>V\ ez8��X�E}+d�\r\0�\ 6!�P��eաi�U�t\12v��O�;}qj�e0åi��\15?~A�\1d-\11��٘H �q�-�b>\f\18�\Z�+9�#7�x�1�\Z�\Z�e�\ 1��=`�t,���\n�\0\"\nn:x%zs�Ϥ����?�z|��գ\18�c���u��S?�\7f���K��R+1Uh�a���hTc\1e�%\ 4\16A��1�>?�B�\0����',6,0,'','','',''),(46,0,12,'75859b10bb58e506','777ac66400f3fef5ff42189840387ede','2017-09-07 09:13:05','2017-09-07 09:13:05','','','Contact Photos','15048d33e71544a25a6dd13bb081c78f-4.jpg?ts=1504775545','image/jpeg',175,175,5493,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0�\0�\ 1\ 1\11\0��\0\1e\0\ 1\0\ 2\ 3\0\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\n\v\ 4\b     \ 2\ 3\a\ 5\ 6��\0B\10\0\0\ 5\ 3\ 2\ 3\ 5\ 6\ 2\ 5\v\ 5\0\0\0\0\0\ 1\ 2\ 5\ 6\ 3\ 4\a\b\11        \12!\n\13\151A\14\16\"Qa�q�\17%23�\18#$&5BR����Es�����\0\b\ 1\ 1\0\0?\0��\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն����X\Z\'���p|L�sN��\1e�}�Y%ZR|�\11(�J*I&+�rJ\18#�yI)%l�Z�,:��i�(��ϥ�)���J�����*hχ\18o�мI����$�\16Dj-� (�C\"�cI(s���_�L�:g��\v`w�I\ 5����9�s.w�Y���a\7f���C\"3:I��e�~��g,�\1dڮ�Ϩ�6�&�t\ 1�t�\ 3�/iK��xv<�v   #=�\13{�$�ѹ\16�Idу=��#�}�G���!�\0\0\0\0\0\0\0\ 2*|z�B��\1c6�Zp�]�s\"�A�ڝ\r�E\7f\r��{�b�\1d�Z�HI��j��>Eq�E�\14˒S.:t�7\19�Vg�5\15�u;��Ys=�YFZ�Rk��}����j��ʮHnl�Ifh���M6&\ 4\";M\15\13�DD�]��¿S\1cR��\1cc�\eh�B�\14�{��t��Ƥ\ f\16G��V�Mʽ4$�&2\ 4��\"����%���{̈}9$����489hۆ\ 4\1d��    @�e��崭�\Z��ط<��m�(v&�Ne{�ȵ\1dE�\ 4q\14QM\ 6I��\Z�uO�h���D<�\0\0\0\0\0\0\0qۍG\12fn\19\Z\18��\7fb��R���\18\ 69~�2w�\12��o\nstET�x\1e<d��>��H��l�\16MT\1c���:�\ f!M2��a��L��c��/�Ri��Cr���\1c����\1d��T�\Z�u\15Υ$�F�\10IN��춆�q�5��S�,-B��c�^�op�}AW�\108�Y)�c?��T��2F\18i��դkI��$b�Փ�鐸�A�\e�\\<��\ 1�F\ 2��h�ŭ�ܿIk�\17)�3\17^�N�ٓ�wu]��k�U4�J�\17��8�W�*�F�7�`^U:V��ң�\15I%�\1c̷?��|����C{�Oh�[�:r�qğ���  ����0\\���\Ze0\\�ޅ\Z��.���\1f�RvZ�\13�NOI\n#��\15���O\fv���-ik�\1d\ eF\a���\1c\ e�o�;�E�I�\14���ձ�\14�5�\Z�Rv!,�\1e�\\4;����MyE\1e�3��t�a9��B��:̌�[�X�T���h_\"��r\194k��*�F\\��U:��M�z�\0�u#�\0�C�\0\0\0\0\0\ 2�>�f�\1cr���Z\\kp�q\ 5Ҿ.oU�u������q-S\a�CJK��PSǬf�2JJ��G�D\fYm���+>!҄�^�\16\n\'��/{}\f�W7\16��-\18K\1f;�K���kI��\v(�;T�F��\r��H̖J�\10\0��J�s\ 4j�\vK��\0��m\1f���p֫WV\'�\"Iٹ\12jTlx�;ҤO,R\ 6\15��Ԑǖ�\fedK����:�8���<)5h�\17y Ó�w        ��r*-�\ 50��\7f�����Bf��J&  u:fIV�r�\15:rjh.p�甴���9�\fM\1e��H���>���듲pg�BҲ4\1d:{-��RT�P�MHZ��Rw+|�)�D�qKєW2W��e�\10���j\ 6\1c�O{F|��aM)xh��\1c�ʴH��-�IF�\163捩Gِ\0\0\0\0\0\14�q���d\ e-�B\1f\\*�u���D�Z��nǮ~�4\19��gfG�y�N��-m�ݯ�\em(ָ����m����WW���IoԺ������w2I\18��HX%�Lza�֞X��Y��;\ 1�$�D�Q{}\12�54;9�)k3S��\1d\1f\16�2%-|Ĕ��\b��\0\11��E�ɧT|+2�B��B�H�U�y���������K>Yk�[\ZYN\f��\"ZyTGV\ZĢ5\12MGR�OO��&7���\v�;_��Ou��\1c[7���O��?�0�Rv�Vg\13#۔��+���E�1\16�[\11ٲ\0\0\0\0\0\ 2��;X��\Zqz�\ 4�qJ����2c:�#��\evIK^Fk4�B/�X���﹑\19\19\1e�E4�eh�M8�8(�:�\0<b\e[�M�=eMB3�\0    �\7f��\a���\0\0h�\13��4xrkꬓ��\"�Ƥ�O�?g�����_×�����Q�S��� o�9�3�ˉ��&[\15\7fw���g�n�<�VF�\1db\11\ 6f�\12����N�:\19�ɠ��\11\11Z*\0\0\0\0\0\ 2���\ 6�\\��.�\19۷��C\1c���\ e6����yC\11��2t2$��\183�K���\e\e��\1fX~B�7��tZ_`j�8��?&n2.�x��Iڙ\7f���\17��,�Ø�f6�1{�7�����\19\16=snd�;�\19|e��en��T�Ri-�$���2\"/�\0\0��j�\\�:Z�0�\rNԨf\1de8�\13�٭�\12\eLz�����$�A%\n�T��\\    \\�[*l��;\ZJ�jt�UeJ�\19������ק����a{1�1��\1d�\Z�\e.�VdϚ����Y�#���\1e�����J�p\'\"����gw�\1c��&�T��R�Xڌ��\0\0\0\0\0\ 3��c�{0q0оS��h�����<���7h������]I��UJ���D����:�g�\e{]BA�(���8�i����m��]b��;�be\ez�]��n@���.�.�Qs\11�{�G���2؍$j]�]��\7f6ꏇ{&�$��+e�\18^�\1c�X]ܤ�\1d���%�\15>s2ia���{�\b��C\19T��\0XR�J��������\adz�]���\ ed��݉�      � �,�1r�~�\1e�6���DdG��OB�g��&f)��e�+/�4�T�Q�j�����Ѱ�~w��c�8���ڤF\b�gT�ճ�G�[�M\')��?J\14�UDR)6v[�#E3��\1c�$n��=�J��K�\'�D��q1�8��򄭴��7�(��U\1f����ueL�����t�v2ҤT�K�[o���\0>}FH\0\0\0\0\0\ f\ eB��\0��\bLv�x(Ʋ�9�<K��ig\1c˘�(��E��m\15dߕ1�L��>3O\"\no�\18H�P��Q\15iJU�;G�\13\\/��e>\19����o\eQ�{hnW�\19^\0�S���8��{�\"Λ\16��JK\\�*��G\18��1)|��\'s6\ f��\1d@��M���o+@�\ 6:�e\buw;uY�*9���r�O\13l4��YL��Բ3Q#�\"5\19�E}�\ 4q�SS��G\ 5�HRb]{\1f~&�B\n�q@�wg\1ev�Q\ag_��=\16�rcW6�EP�j\"؊��v�ׇv�{\13:׎�V\r��}L��dD[u��_^�\v\7f?!y֑p<[L�^�Z}�ӵ�\e���\ 5\ 2k;[cJ.ɖ6���鲔��$/D��Y[�kwR��\12D���\0\0\0\0\ 1�.n���\17Nn��v\rv\16�sv�upVV6�;o̥��\11\11\11��\1fM���\'\18�x��8x�-��\1fa��\16���ES������l13K�\12\7f\v�Yx%���rJ��rR�Y�5B$�e�=4�_��ć�&��N\Z_�����k�\1c��H��Q;wdW/+�^&�����)5\13���i\17�(��\12�-�Z�<9sN���\15�.��\16j�M�   �#�p�9��h���ԥ\13�i�ʼn�Q=&\15�U\12�O�Qn�Q�Ԕl�a��\\�.��\e\\�\0�㴒�Mʮ�%y�2=�ޟ�\12]Z��B\1d˩�J$��\0-�\1d�F��X�\fR2�b�\19��X�01�[�#s;\e=�\Z\19\e\e\r&��QiOwM    Z�<�dJ2�\1fڀ��\e\1d#��o�\ 6�p\ 4M�Nӷ�w��8m�2��i�$��d��m�$E��jD�\1c����E��2�\ e��iC;�iwN1���C���\11�59��\"�~��O]����O�[��^T�f�1��\ 4!���\e�q�2y\17q��W�\12��K�Q�ө��\1d\ f\19y����\0\0\0\0\a��U��K\1e�r�X�2@��?bp�L�r+��d�057x������[S#Y���{m�̣4.��+�o5u�S8���F�\19\11�M2���\a\1d�h�/m2^��*+j2L�L���3,�}D\0���F�>�-:�i)t�\15\7f�Y��.�\18Ϻ�f��bV���Z�:Z��\12`W%\12T���3�>I��>Fd���F�-$�j#;*O$��)R�])\11}����[��d�\0\fz���~B�\1eпgG 4�L��=\ 4c��&n��3κu�6��[\12�8\12�e��T�Ҕ\e�.GUF�(�G��$^J�ڑ\ 2�\r��ſ���q��خ\1c��wZ���\r\18���n�����\e\ 5��Ù\1dL5>wv$Rb2{UB�?H\f���LAF�Li%`\ 5��\e�Tjѫ�Q��\0>�������\0\0\0\0\15��������SG\f�M%�B\15�I�y�[�뽊G?t/\1cǘ���P����\114�%    YT*���\">�a&}b��pij��\ 4a־x�[W�n��\16\ e��\a�b\'\f+�\1eH�%���L��3Ȭ�NC+RW��\nb��L�+�`\0\0\0\ f\ e\1f�!�MWp�᭭gk�&�4q��SG\1ee:O�-]1�Iw�#27������7�Q��%!�T2�C���\1f\ e0Ҵ>�\aMY�V8�#ch�V(��vv��\11����TN-��\1c\1c����\14~=I[��W�M5\7f\ e㿀�\1crn�u\ 5��e0�[\1d�Ν�\1d��X�$��!\ 4D��B�\ f��;0z>S%&Fxʗ1+cRղ�GB���)�r�]/q\fÏz\vύ����9��U/%,��/S�\1crC��j(�\\�d��$D���eQ\1c�ȵ��}B��j\15�+�n-�-��ܧem����3���뷐� \0\ 1�����q65�YRGX���:a:�\\�\'{V(�C�Ӫ���\Z����.�7p����\18�4�2��cZQ\ fz���_j6��{s}�A�Rrҋ������ӗx�\ 1^_է�$�R�#�N��+j}�\Z4hQ>�[����E�\0���\f�\0\0\0\0\ 1��\1dR�t�wؾ~�{�|�\0��0���        ��\"8\"M��/\ f�j��\19��9E��-�`អ\r-�[�,�&��oo��L�\13�)&��\r1E���E)<���q�d�\16ᛨYE���\ 1\19p�i�G#�Z��\ f��/{�ۢ99�1��$\11%,֪q�H\"˨T�q���R����\19\0\09_Ʀ]u\ f�1�\"@�Z��徕�M�ͿS#�F��k-��\'c�^�����bg\aYшk�Rw�_��$ؿ     E�\fϚѹ���c/nA+����\11=�b/\n#܋a=@\0\0\0\0\0\ 1�_��\0���uq�+p��Rb��if�H�F�^\ fʱ����\e\ 3�j}٩�#55�S����)�l\ 5�\"yP���������!�\0\ 1ͮ/1s�p���q4����\a?�\ 2۩�4�^��_2���De�\13\"�\1c?�k�͛��F�ԠGZa���uB�^w-��\fB�G���:l_��zK�\0\0\0\0\0\0\ 4\ 1�AX�/���\11����,�zO���n�{��i���l��O���q?\14~������\0�]]Ľ�Ҟ��        �B���?�(��\\levo\10\'��߮�l�������}�ؙG82����{��䏯��O]����������\e���\0\0\0\0\0\0D��~4�\'���!���FQ��{sW\\D�͒7-�s���^�{y�m����\ 3\ 68�\1f�J�(?�$m\15h{E\17v\'6����w⍪G/�Df[m�c��8�\0��ǿ�n\10Z@�Դ�o^ٯ(9��ܙ\Z��|�]����TG���fFC��\0\0\0\0\0\08s�|kBQś��ޭ*\eA�Z����\7f�:3�N�ߦ��e鷡$�w\18\0\0z*R�z����\ f����\Z���gW\r�S\f�\Z�U�kE��\16�ks����Cÿ���h[\1f�M��߀\0\0\0\0\0\0��׎JO��\ZO;�\'�0�g\v���yn\1cwd��OM�\f���n\0\0\0\ftQ*E�ב�\7f\7f��ˡ\f�\0\0\0\0\0\0\18\15-hթJ�Z4N��[S=�#2�#��[}O�g�\0\0\0\0\0\0\0\0\0\0\0\ f��',4,0,'','','',''),(47,0,12,'75859b10bb58e506','777ac66400f3fef5ff42189840387ede','2017-09-07 09:13:05','2017-09-07 09:13:05','','','Contact Photos','15048d33e71544a25a6dd13bb081c78f-4.jpg?ts=1504775545','image/jpeg',80,80,2703,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0P\0P\ 1\ 1\11\0��\0\1f\0\ 1\0\ 1\ 4\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\ 1 \n\v\ 2\ 4\a\ 3\ 5\ 6��\04\10\0\0\ 6\ 1\ 3\ 1\ 6\ 6\0\ 5\ 5\0\0\0\0\0\ 1\ 2\ 3\ 4\ 5\ 6\a\0\b\11  \12\13\14!1Q\n\15\16\"Aq\17#���3Sa����\0\b\ 1\ 1\0\0?\0��M5A\10\ fQ\0��j�����ǯ<��\1e��_�T\ 4\a�@\7fZ��i����\149\11\ 3��\7f׾�*��)��{ڥ����J�Y�[6h��e�\v�,u��$�\1c1����t�KvD3%�\7f��g\11[I�\17\16\15_:\15kƵ�J�u��B��7��\'vX3i�Rj:�G���*�e�\0\ 6��<C\19S��ש\14�kGH8�Z���!�ܶ;\18HiQM�\f�pN\13���\1e��Z��$�b�\b\1d������~� ��]��vG�X��e�\0P̚�k\12�C�\18G3H�޽��O�/l��x\0�\a���\ e?>a�\a�M|�i������:{Lٞ�w,dRt� aK�B�f����\f\ 4\ 3�5���Ô��\ 25��\ 2\ 2b�%\ 1\ 1\10֡��\eZ�uZꅊqNL�����\192Õ�\ 5oY↚}L�VB�\0��\15�0���ւ7s\0�D�{I��N\n_�J;�)Tʮ>��)���UR�U���V�PlЏ����`�lD4S\16�M�8��\r�fѲ\ 4*H��i�P)CP���O\f3�{\ 5�a��%y��V�\ e)��yn��Yi\16E�\ 23�I�\19\ 6�Vh��\a��;  8�\ 6ݴʛG]��5�b~�=I~\1f}��vݐr��(��C����/m��X�H�r\1e\ eN*ߎ��\\==\1eZ�Q�ed���\ 4{��\\�����n��X�^¹Z���\ e2�T\aƓ�e�%W\"�\1f��\"��w\18FV\be�L�8$���@\17K�aM`9\ 4G�zv�i�e���s���^�q�Y���9���9(h��9�H��F�`�kd�)���\ 6��I$B��\1dr�\n\"n5�����}.��    9�l2�m\1f&\12�\n�b����\14+$V�`\ 3\n�\0++�\1c\13��9W�\ 4�0�h�q�q�\1c\a\1f�����\11\ 4G�\0G��Z�~.      ��׬c��\ 1\ 4���8\e\a�o\r�\12�O\17��5�b61T\Z\15EW�%B�NnTJU\172gfܤ�\b�lu遅-�r�߲�\e}M�{�2۞,�[�:�\0^2�֫\1e��A��DH.�a<��h_/���4�]W�R|��\'\b�ỴN��\ e\13*�.��\14�Ed�����\18�Q3�C��S\0�D\aYV�vÑ>\e~�X\7f{\18��\'?�\1c��,\135C�\ 2f�K�W�2�\ 5}ߝ$���+�O��\1f0T�\'cX����X��l���f��q�\v0�#\v�8�U(+�*�\18e\f�r�a`��[�J�\12p���rw휢���\ 1V��E�+$�z�!�\ 5�]�=�j33\18W\ fۮUȇb����7f\fj,�\13���׳>�NPH�G,y�\18\10�Q�\r�\v���u\11\1e�:��%Ü�hƙi����\ 1\'�l;��\"WI܅4�R+E\7f��n��Q�*?&a%:��6�\rU�M-��(\14\0\08\0�\ e?�\\��^\ 5���ᝠ�+�����>����*�\16)��1�P�P���a�$\ 2�b�:�V�p0�\b��97M��LN�!a-��\ f�oX�\0���y�L���\ f\17\1dY#*\15���\15_n�T~\7f\13%{����]NI${L�quI7i�0�\ 6��\1cq�iw\e\'M-��\Z�^���<��\19�]/)\10�u�\vNxU    �m���\ 3X{Ԭ�F\12Y�c(��Vk0M\10l��Y�l��Df]\16�O�u:�\ e�Y��R�0�+�Z�Z!�\rv�\ 3\16�[F���G&�(��-�D\e4j�h��\nR\10\05�۾ۍSw{a�\ee�;q\1dZ�\18��_ʴD�\1d��d�r�6�ͺ�T�=�J\v)�H(r&��   &���\1c\a\10��n�k�\ 3��      �\7f\fbXBٓ��\19GmY>�\vE�l�\'�x�|�5\12�\"F�r�O���&��\f�y%^\Zn�(�:ԓH\15�*�1{@b���\ 1\ f^\ 3��\7f\1e�\\k�!令#�\b�\0���#�X�3]Rz�l��\f��\0��    �#�\r�D1t�[gfZB*�Q���\"q*�у�j�j$�V�ZbE\13\ 3��\f�YP\10Q\15�8��~1�$\14\fs8�Xh���FD�G7M�|ls\ 6��ѓ\ 6-QI�6mRI�V�$�       �$�P�}4��.����!�^�5\n�⾪���\r��\ ff�YT�}ګEM�|�U\13\ 3\bs�c\13�=�\ eG�m������K;Lcw��O�0Q�=�{h��c):Ě       \ 1c\ 2r�\\����\1e���n\ f귺��{�i��U���_7�\1d&��L��7)ӷ~\r�K�\1d���^f�X�,%_q8Z�)\16��+���\16�_��#�v,��d���S�ѓդ�\e�y��y���\r�\17�?�\ f�^Rv��Y��vS\17\10�b�L�>����E�e\f^\ 1\17/q:\ eV!\a�Y���d7\17��M4�V }��+�J��ض��\vWH\v�K*��$ y*���Q����1J��#��M\ 3\1c�P��H�`!C��\a�~�T��7<\b��\1e��_�]CL\7f�~I����o\ fݒ���U��\14\0\15uE������}�       �V֘~��\f �$\ 2R�����M4�P�C\19�����/\ ea3-�dLn.���\ 4�c��dۛώЌb�\148�0�b鮸4n\ eN�WJ��uW\ 4�ި�c�Q\ 4��\1d\11\13�rd�\" ��TJ\0*\18G���i���͸�+�E1vF�hG\1d�敲�MU\10\ 3\7f�uQIC\0qɓ/!�\ 3�ֿ��',5,0,'','','',''),(48,0,12,'75859b10bb58e506','777ac66400f3fef5ff42189840387ede','2017-09-07 09:13:05','2017-09-07 09:13:05','','','Contact Photos','15048d33e71544a25a6dd13bb081c78f-4.jpg?ts=1504775545','image/jpeg',48,48,1755,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\00\00\ 1\ 1\11\0��\0\e\0\0\ 2\ 2\ 3\ 1\0\0\0\0\0\0\0\0\0\0\0\b  \0\ 6\ 1\ 4\a\n��\0.\10\0\ 1\ 4\ 2\ 1\ 3\ 3\ 3\ 3\ 4\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0      \11\12\13\14\n\16!\151A\"#$23Qa��\0\b\ 1\ 1\0\0?\0���3�c\19�s�\18ǜ�?�1���{�p\ fK����]�_�\1f�r��\0BsK�]�n\v4d�\7f\ 6fZ%\ 2ӣ�\v³+\1e�r0�m�&��i��-��<u��\v`��Xh�K\ 2ɤU-y�͎\roc��e�ښ�B$���.�>jA�g>���%hM����%�C\1c¿p��O!����6���x�i�e�5�\ 5��H�)LW�l�e����!k��:\14�T���h\12�q\ f2ڰ���NݴM\15�j�6�\10A��7�?qY��ˌ�g�Z�[D�En�\17&Z]-�mnB��a!�[v\\�h��2Ba\ 3RI?�\16��\1f�<~/�\17\ay=d�G����\e��3�JM�[ݨ��\10`   ��ԭy���N�\ 5�\0ɚȥ֐Y�ʈ���O`=�y��|\vҼ�&�-F�m\12f��+`<�\11q{\ 2�*En՘g\b���$��Y��`��P��#\ 6I%�;�<�z�+��<\e��#ۣ��g��dl9�\10n��&���\7fek�ٵ���)X�C\16�dz�D���\ 1�0�N%HiI�m���R/hvߠ��)5>B�~N��M�X�}��\']�؜�\Zlcޒ�\12Z��FQ.6��?\11`       �/����>�>J[X㦣�`�3���l8m%X<�=�j�2.�L2�1\"�\10���D�7�0�Ĉ2�+�I1��Kw����n^\16i>%T%�cƺ�x�]�l�_�/�C\1e��X�\11JR�\ 6B�y��\ 5Ÿ�Q-�+μ�+ug�\\�y�J7\1et���{2U0�\1dOH��m�YF]q�Z�a\12�$f\13�d�B\a����2�F<��c.:�e`��Z�_���|������)�n|\7f\ e��KQi\Z�WK�\12�y��#Y,\v6��6\18\17c&,\10S�MP�Δ�3\14ę��;F�imE�M�I�MiF��܎L��N�W����J!O�\12Vi\b��2zA\n(�$�G�#\n%�{�^s*]���p��\\�2n�Et��ܬ�fݏ�Z\Z�m\0�:\1c��2%�.�؁D�3)�[F�\ 5�����a\f\1d��\1c�],2   ]�ˆ�ۮ��\v�Z�ϯ*kj4=���N1�����-c��;l�:\ 1\ 1@�Ϋ+�������O�WW��!א^EJGNFG�Ü$�L�B�FI\0CE�x\ 6��C42�Z�$R�u��}����Z\1cB��c=/>�z����\1d��XK�3x�q�,�8�+�\1c��-�#��?*\ZF���\ 5��V)/%xR3�e�\ 60�\b(b0�\8a;#\f;\bKl��\r%�Ye�c\bCM6���\'\18JP�%8�1��z�Wm�J��e�Z⁜�[�&+\16\18i!�.>V\ ez8��X�E}+d�\r\0�\ 6!�P��eաi�U�t\12v��O�;}qj�e0åi��\15?~A�\1d-\11��٘H �q�-�b>\f\18�\Z�+9�#7�x�1�\Z�\Z�e�\ 1��=`�t,���\n�\0\"\nn:x%zs�Ϥ����?�z|��գ\18�c���u��S?�\7f���K��R+1Uh�a���hTc\1e�%\ 4\16A��1�>?�B�\0����',6,0,'','','',''),(49,6,13,'75859b10bc4f03c7','f958f83dd2af4c30b30045dfc6ff0718','2017-09-07 09:17:49','2017-09-07 09:17:49','','','Contact Photos','4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575','image/jpeg',175,175,5493,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0�\0�\ 1\ 1\11\0��\0\1e\0\ 1\0\ 2\ 3\0\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\n\v\ 4\b     \ 2\ 3\a\ 5\ 6��\0B\10\0\0\ 5\ 3\ 2\ 3\ 5\ 6\ 2\ 5\v\ 5\0\0\0\0\0\ 1\ 2\ 5\ 6\ 3\ 4\a\b\11        \12!\n\13\151A\14\16\"Qa�q�\17%23�\18#$&5BR����Es�����\0\b\ 1\ 1\0\0?\0��\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն����X\Z\'���p|L�sN��\1e�}�Y%ZR|�\11(�J*I&+�rJ\18#�yI)%l�Z�,:��i�(��ϥ�)���J�����*hχ\18o�мI����$�\16Dj-� (�C\"�cI(s���_�L�:g��\v`w�I\ 5����9�s.w�Y���a\7f���C\"3:I��e�~��g,�\1dڮ�Ϩ�6�&�t\ 1�t�\ 3�/iK��xv<�v   #=�\13{�$�ѹ\16�Idу=��#�}�G���!�\0\0\0\0\0\0\0\ 2*|z�B��\1c6�Zp�]�s\"�A�ڝ\r�E\7f\r��{�b�\1d�Z�HI��j��>Eq�E�\14˒S.:t�7\19�Vg�5\15�u;��Ys=�YFZ�Rk��}����j��ʮHnl�Ifh���M6&\ 4\";M\15\13�DD�]��¿S\1cR��\1cc�\eh�B�\14�{��t��Ƥ\ f\16G��V�Mʽ4$�&2\ 4��\"����%���{̈}9$����489hۆ\ 4\1d��    @�e��崭�\Z��ط<��m�(v&�Ne{�ȵ\1dE�\ 4q\14QM\ 6I��\Z�uO�h���D<�\0\0\0\0\0\0\0qۍG\12fn\19\Z\18��\7fb��R���\18\ 69~�2w�\12��o\nstMT�x\1e=d��>��H��l�\16MT\1c���:�\ f!M2��a��L��c��/�Ri��Cr���\1c����\1d��T�\Z�u\15Υ$�F�\10IN��춆�q�5��S�,-B��c�^�op�}AW�\108�Y)�c?��T��2F\18i��դkI��$b�Փ�鐸�A�\e�\\<��\ 1�F\ 2��h�ŭ�ܿIk�\17)�3\17^�N�ٓ�wu]��k�U4�J�\17��8�W�*�F�7�`^U:V��ң�\15I%�\1c̷?��|����C{�Oh�[�:r�qğ���  ����0\\���\Ze0\\�ޅ\Z��.���\1f�RvZ�\13�NOI\n#��\15���O\fv���-ik�\1d\ eF\a���\1c\ e�o�;�E�I�\14���ձ�\14�5�\Z�Rv!,�\1e�\\4;����MyE\1e�3��t�a9��B��:̌�[�X�T���h_\"��r\194k��*�F\\��U:��M�z�\0�u#�\0�C�\0\0\0\0\0\ 2�>�f�\1cr���Z\\kp�q\ 5Ҿ.oU�u������q-S\a�CJK��PSǬf�2JJ��G�D\fYm���+>!҄�^�\16\n\'��/{}\f�W7\16��-\18K\1f;�K���kI��\v(�;T�F��\r��H̖J�\10\0��J�s\ 4j�\vK��\0��m\1f���p֫WV\'�\"Iٹ\12jTlx�;ҤO,R\ 6\15��Ԑǖ�\fedK����:�8���<)5h�\17y Ó�w        ��r*-�\ 50��\7f�����Bf��J&  u:fIV�r�\15:rjh.p�甴���9�\fM\1e��H���>���듲pg�BҲ4\1d:{-��RT�P�MHZ��Rw+|�)�D�qKєW2W��e�\10���j\ 6\1c�O{F|��aM)xh��\1c�ʴH��-�IF�\163捩Gِ\0\0\0\0\0\14�q���d\ e-�B\1f\\*�u���D�Z��nǮ~�4\19��gfG�y�N��-m�ݯ�\em(ָ����m����WW���IoԺ������w2I\18��HX%�Lza�֞X��Y��;\ 1�$�D�Q{}\12�54;9�)k3S��\1d\1f\16�2%-|Ĕ��\b��\0\11��E�ɧT|+2�B��B�H�U�y���������K>Yk�[\ZYN\f��\"ZyTGV\ZĢ5\12MGR�OO��&7���\v�;_��Ou��\1c[7���O��?�0�Rv�Vg\13#۔��+���E�1\16�[\11ٲ\0\0\0\0\0\ 2��;X��\Zqz�\ 4�qJ����2c:�#��\evIK^Fk4�B/�X���﹑\19\19\1e�E4�eh�M8�8(�:�\0<b\e[�M�=eMB3�\0    �\7f��\a���\0\0h�\13��4xrkꬓ��\"�Ƥ�O�?g�����_×�����Q�S��� o�9�3�ˉ��&[\15\7fw���g�n�<�VF�\1db\11\ 6f�\12����N�:\19�ɠ��\11\11Z*\0\0\0\0\0\ 2���\ 6�\\��.�\19۷��C\1c���\ e6����yC\11��2t2$��\183�K���\e\e��\1fX~B�7��tZ_`j�8��?&n2.�x��Iڙ\7f���\17��,�Ø�f6�1{�7�����\19\16=snd�;�\19|e��en��T�Ri-�$���2\"/�\0\0��j�\\�:Z�0�\rNԨf\1de8�\13�٭�\12\eLz�����$�A%\n�T��\\    \\�[*l��;\ZJ�jt�UeJ�\19������ק����a{1�1��\1d�\Z�\e.�VdϚ����Y�#���\1e�����J�p\'\"����gw�\1c��&�T��R�Xڌ��\0\0\0\0\0\ 3��c�{0q0оS��h�����<���7h������]I��UJ���D����:�g�\e{]BA�(���8�i����m��]b��;�be\ez�]��n@���.�.�Qs\11�{�G���2؍$j]�]��\7f6ꏇ{&�$��+e�\18^�\1c�X]ܤ�\1d���%�\15>s2ia���{�\b��C\19T��\0XR�J��������\adz�]���\ ed��݉�      � �,�1r�~�\1e�6���DdG��OB�g��&f)��e�+/�4�T�Q�j�����Ѱ�~w��c�8���ڤF\b�gT�ճ�G�[�M\')��?J\14�UDR)6v[�#E3��\1c�$n��=�J��K�\'�D��q1�8��򄭴��7�(��U\1f����ueL�����t�v2ҤT�K�[o���\0>}FH\0\0\0\0\0\ f\ eB��\0��\bLv�x(Ʋ�9�<K��ig\1c˘�(��E��m\15dߕ1�L��>3O\"\no�\18H�P��Q\15iJU�;G�\13\\/��e>\19����o\eQ�{hnW�\19^\0�S���8��{�\"Λ\16��JK\\�*��G\18��1)|��\'s6\ f��\1d@��M���o+@�\ 6:�e\buw;uY�*9���r�O\13l4��YL��Բ3Q#�\"5\19�E}�\ 4q�SS��G\ 5�HRb]{\1f~&�B\n�q@�wg\1ev�Q\ag_��=\16�rcW6�EP�j\"؊��v�ׇv�{\13:׎�V\r��}L��dD[u��_^�\v\7f?!y֑p<[L�^�Z}�ӵ�\e���\ 5\ 2k;[cJ.ɖ6���鲔��$/D��Y[�kwR��\12D���\0\0\0\0\ 1�.n���\17Nn��v\rv\16�sv�upVV6�;o̥��\11\11\11��\1fM���\'\18�x��8x�-��\1fa��\16���ES������l13K�\12\7f\v�Yx%���rJ��rR�Y�5B$�e�=4�_��ć�&��N\Z_�����k�\1c��H��Q;wdW/+�^&�����)5\13���i\17�(��\12�-�Z�<9sN���\15�.��\16j�M�   �#�p�9��h���ԥ\13�i�ʼn�Q=&\15�U\12�O�Qn�Q�Ԕl�a��\\�.��\e\\�\0�㴒�Mʮ�%y�2=�ޟ�\12]Z��B\1d˩�J$��\0-�\1d�F��X�\fR2�b�\19��X�01�[�#s;\e=�\Z\19\e\e\r&��QiOwM    Z�<�dJ2�\1fڀ��\e\1d#��o�\ 6�p\ 4M�Nӷ�w��8m�2��i�$��d��m�$E��jD�\1c����E��2�\ e��iC;�iwN1���C���\11�59��\"�~��O]����O�[��^T�f�1��\ 4!���\e�q�2y\17q��W�\12��K�Q�ө��\1d\ f\19y����\0\0\0\0\a��U��K\1e�r�X�2@��?bp�L�r+��d�057x������[S#Y���{m�̣4.��+�o5u�S8���F�\19\11�M2���\a\1d�h�/m2^��*+j2L�L���3,�}D\0���F�>�-:�i)t�\15\7f�Y��.�\18Ϻ�f��bV���Z�:Z��\12`W%\12T���3�>I��>Fd���F�-$�j#;*O$��)R�])\11}����[��d�\0\fz���~B�\1eпgG 4�L��=\ 4c��&n��3κu�6��[\12�8\12�e��T�Ҕ\e�.GUF�(�G��$^J�ڑ\ 2�\r��ſ���q��خ\1c��wZ���\r\18���n�����\e\ 5��Ù\1dL5>wv$Rb2{UB�?H\f���LAF�Li%`\ 5��\e�Tjѫ�Q��\0>�������\0\0\0\0\15��������SG\f�M%�B\15�I�y�[�뽊G?t/\1cǘ���P����\114�%    YT*���\">�a&}b��pij��\ 4a־x�[W�n��\16\ e��\a�b\'\f+�\1eH�%���L��3Ȭ�NC+RW��\nb��L�+�`\0\0\0\ f\ e\1f�!�MWp�᭭gk�&�4q��SG\1ee:O�-]1�Iw�#27������7�Q��%!�T2�C���\1f\ e0Ҵ>�\aMY�V8�#ch�V(��vv��\11����TN-��\1c\1c����\14~=I[��W�M5\7f\ e㿀�\1crn�u\ 5��e0�[\1d�Ν�\1d��X�$��!\ 4D��B�\ f��;0z>S%&Fxʗ1+cRղ�GB���)�r�]/q\fÏz\vύ����9��U/%,��/S�\1crC��j(�\\�d��$D���eQ\1c�ȵ��}B��j\15�+�n-�-��ܧem����3���뷐� \0\ 1�����q65�YRGX���:a:�\\�\'{V(�C�Ӫ���\Z����.�7p����\18�4�2��cZQ\ fz���_j6��{s}�A�Rrҋ������ӗx�\ 1^_է�$�R�#�N��+j}�\Z4hQ>�[����E�\0���\f�\0\0\0\0\ 1��\1dR�t�wؾ~�{�|�\0��0���        ��\"8\"M��/\ f�j��\19��9E��-�`អ\r-�[�,�&��oo��L�\13�)&��\r1E���E)<���q�d�\16ᛨYE���\ 1\19p�i�G#�Z��\ f��/{�ۢ99�1��$\11%,֪q�H\"˨T�q���R����\19\0\09_Ʀ]u\ f�1�\"@�Z��徕�M�ͿS#�F��k-��\'c�^�����bg\aYшk�Rw�_��$ؿ     E�\fϚѹ���c/nA+����\11=�b/\n#܋a=@\0\0\0\0\0\ 1�_��\0���uq�+p��Rb��if�H�F�^\ fʱ����\e\ 3�j}٩�#55�S����)�l\ 5�\"yP���������!�\0\ 1ͮ/1s�p���q4����\a?�\ 2۩�4�^��_2���De�\13\"�\1c?�k�͛��F�ԠGZa���uB�^w-��\fB�G���:l_��zK�\0\0\0\0\0\0\ 4\ 1�AX�/���\11����,�zO���n�{��i���l��O���q?\14~������\0�]]Ľ�Ҟ��        �B���?�(��\\levo\10\'��߮�l�������}�ؙG82����{��䏯��O]����������\e���\0\0\0\0\0\0D��~4�\'���!���FQ��{sW\\D�͒7-�s���^�{y�m����\ 3\ 68�\1f�J�(?�$m\15h{E\17v\'6����w⍪G/�Df[m�c��8�\0��ǿ�n\10Z@�Դ�o^ٯ(9��ܙ\Z��|�]����TG���fFC��\0\0\0\0\0\08s�|kBQś��ޭ*\eA�Z����\7f�:3�N�ߦ��e鷡$�w\18\0\0z*R�z����\ f����\Z���gW\r�S\f�\Z�U�kE��\16�ks����Cÿ���h[\1f�M��߀\0\0\0\0\0\0��׎JO��\ZO;�\'�0�g\v���yn\1cwd��OM�\f���n\0\0\0\ftQ*E�ב�\7f\7f��ˡ\f�\0\0\0\0\0\0\18\15-hթJ�Z4N��[S=�#2�#��[}O�g�\0\0\0\0\0\0\0\0\0\0\0\ f��',4,0,'','','',''),(50,6,13,'75859b10bc4f03c7','f958f83dd2af4c30b30045dfc6ff0718','2017-09-07 09:17:49','2017-09-07 09:17:49','','','Contact Photos','4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575','image/jpeg',80,80,2703,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0P\0P\ 1\ 1\11\0��\0\1f\0\ 1\0\ 1\ 4\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\ 1 \n\v\ 2\ 4\a\ 3\ 5\ 6��\04\10\0\0\ 6\ 1\ 3\ 1\ 6\ 6\0\ 5\ 5\0\0\0\0\0\ 1\ 2\ 3\ 4\ 5\ 6\a\0\b\11  \12\13\14!1Q\n\15\16\"Aq\17#���3Sa����\0\b\ 1\ 1\0\0?\0��M5A\10\ fQ\0��j�����ǯ<��\1e��_�T\ 4\a�@\7fZ��i����\149\11\ 3��\7f׾�*��)��{ڥ����J�Y�[6h��e�\v�,u��$�\1c1����t�KvD3%�\7f��g\11[I�\17\16\15_:\15kƵ�J�u��B��7��\'vX3i�Rj:�G���*�e�\0\ 6��<C\19S��ש\14�kGH8�Z���!�ܶ;\18HiQM�\f�pN\13���\1e��Z��$�b�\b\1d������~� ��]��vG�X��e�\0P̚�k\12�C�\18G3H�޽��O�/l��x\0�\a���\ e?>a�\a�M|�i������:{Lٞ�w,dRt� aK�B�f����\f\ 4\ 3�5���Ô��\ 25��\ 2\ 2b�%\ 1\ 1\10֡��\eZ�uZꅊqNL�����\192Õ�\ 5oY↚}L�VB�\0��\15�0���ւ7s\0�D�{I��N\n_�J;�)Tʮ>��)���UR�U���V�PlЏ����`�lD4S\16�M�8��\r�fѲ\ 4*H��i�P)CP���O\f3�{\ 5�a��%y��V�\ e)��yn��Yi\16E�\ 23�I�\19\ 6�Vh��\a��;  8�\ 6ݴʛG]��5�b~�=I~\1f}��vݐr��(��C����/m��X�H�r\1e\ eN*ߎ��\\==\1eZ�Q�ed���\ 4{��\\�����n��X�^¹Z���\ e2�T\aƓ�e�%W\"�\1f��\"��w\18FV\be�L�8$���@\17K�aM`9\ 4G�zv�i�e���s���^�q�Y���9���9(h��9�H��F�`�kd�)���\ 6��I$B��\1dr�\n\"n5�����}.��    9�l2�m\1f&\12�\n�b����\14+$V�`\ 3\n�\0++�\1c\13��9W�\ 4�0�h�q�q�\1c\a\1f�����\11\ 4G�\0G��Z�~.      ��׬c��\ 1\ 4���8\e\a�o\r�\12�O\17��5�b61T\Z\15EW�%B�NnTJU\172gfܤ�\b�lu遅-�r�߲�\e}M�{�2۞,�[�:�\0^2�֫\1e��A��DH.�a<��h_/���4�]W�R|��\'\b�ỴN��\ e\13*�.��\14�Ed�����\18�Q3�C��S\0�D\aYV�vÑ>\e~�X\7f{\18��\'?�\1c��,\135C�\ 2f�K�W�2�\ 5}ߝ$���+�O��\1f0T�\'cX����X��l���f��q�\v0�#\v�8�U(+�*�\18e\f�r�a`��[�J�\12p���rw휢���\ 1V��E�+$�z�!�\ 5�]�=�j33\18W\ fۮUȇb����7f\fj,�\13���׳>�NPH�G,y�\18\10�Q�\r�\v���u\11\1e�:��%Ü�hƙi����\ 1\'�l;��\"WI܅4�R+E\7f��n��Q�*?&a%:��6�\rU�M-��(\14\0\08\0�\ e?�\\��^\ 5���ᝠ�+�����>����*�\16)��1�P�P���a�$\ 2�b�:�V�p0�\b��97M��LN�!a-��\ f�oX�\0���y�L���\ f\17\1dY#*\15���\15_n�T~\7f\13%{����]NI${L�quI7i�0�\ 6��\1cq�iw\e\'M-��\Z�^���<��\19�]/)\10�u�\vNxU    �m���\ 3X{Ԭ�F\12Y�c(��Vk0M\10l��Y�l��Df]\16�O�u:�\ e�Y��R�0�+�Z�Z!�\rv�\ 3\16�[F���G&�(��-�D\e4j�h��\nR\10\05�۾ۍSw{a�\ee�;q\1dZ�\18��_ʴD�\1d��d�r�6�ͺ�T�=�J\v)�H(r&��   &���\1c\a\10��n�k�\ 3��      �\7f\fbXBٓ��\19GmY>�\vE�l�\'�x�|�5\12�\"F�r�O���&��\f�y%^\Zn�(�:ԓH\15�*�1{@b���\ 1\ f^\ 3��\7f\1e�\\k�!令#�\b�\0���#�X�3]Rz�l��\f��\0��    �#�\r�D1t�[gfZB*�Q���\"q*�у�j�j$�V�ZbE\13\ 3��\f�YP\10Q\15�8��~1�$\14\fs8�Xh���FD�G7M�|ls\ 6��ѓ\ 6-QI�6mRI�V�$�       �$�P�}4��.����!�^�5\n�⾪���\r��\ ff�YT�}ګEM�|�U\13\ 3\bs�c\13�=�\ eG�m������K;Lcw��O�0Q�=�{h��c):Ě       \ 1c\ 2r�\\����\1e���n\ f귺��{�i��U���_7�\1d&��L��7)ӷ~\r�K�\1d���^f�X�,%_q8Z�)\16��+���\16�_��#�v,��d���S�ѓդ�\e�y��y���\r�\17�?�\ f�^Rv��Y��vS\17\10�b�L�>����E�e\f^\ 1\17/q:\ eV!\a�Y���d7\17��M4�V }��+�J��ض��\vWH\v�K*��$ y*���Q����1J��#��M\ 3\1c�P��H�`!C��\a�~�T��7<\b��\1e��_�]CL\7f�~I����o\ fݒ���U��\14\0\15uE������}�       �V֘~��\f �$\ 2R�����M4�P�C\19�����/\ ea3-�dLn.���\ 4�c��dۛώЌb�\148�0�b鮸4n\ eN�WJ��uW\ 4�ި�c�Q\ 4��\1d\11\13�rd�\" ��TJ\0*\18G���i���͸�+�E1vF�hG\1d�敲�MU\10\ 3\7f�uQIC\0qɓ/!�\ 3�ֿ��',5,0,'','','',''),(51,6,13,'75859b10bc4f03c7','f958f83dd2af4c30b30045dfc6ff0718','2017-09-07 09:17:49','2017-09-07 09:17:49','','','Contact Photos','4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575','image/jpeg',48,48,1755,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\00\00\ 1\ 1\11\0��\0\e\0\0\ 2\ 2\ 3\ 1\0\0\0\0\0\0\0\0\0\0\0\b  \0\ 6\ 1\ 4\a\n��\0.\10\0\ 1\ 4\ 2\ 1\ 3\ 3\ 3\ 3\ 4\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0      \11\12\13\14\n\16!\151A\"#$23Qa��\0\b\ 1\ 1\0\0?\0���3�c\19�s�\18ǜ�?�1���{�p\ fK����]�_�\1f�r��\0BsK�]�n\v4d�\7f\ 6fZ%\ 2ӣ�\v³+\1e�r0�m�&��i��-��<u��\v`��Xh�K\ 2ɤU-y�͎\roc��e�ښ�B$���.�>jA�g>���%hM����%�C\1c¿p��O!����6���x�i�e�5�\ 5��H�)LW�l�e����!k��:\14�T���h\12�q\ f2ڰ���NݴM\15�j�6�\10A��7�?qY��ˌ�g�Z�[D�En�\17&Z]-�mnB��a!�[v\\�h��2Ba\ 3RI?�\16��\1f�<~/�\17\ay=d�G����\e��3�JM�[ݨ��\10`   ��ԭy���N�\ 5�\0ɚȥ֐Y�ʈ���O`=�y��|\vҼ�&�-F�m\12f��+`<�\11q{\ 2�*En՘g\b���$��Y��`��P��#\ 6I%�;�<�z�+��<\e��#ۣ��g��dl9�\10n��&���\7fek�ٵ���)X�C\16�dz�D���\ 1�0�N%HiI�m���R/hvߠ��)5>B�~N��M�X�}��\']�؜�\Zlcޒ�\12Z��FQ.6��?\11`       �/����>�>J[X㦣�`�3���l8m%X<�=�j�2.�L2�1\"�\10���D�7�0�Ĉ2�+�I1��Kw����n^\16i>%T%�cƺ�x�]�l�_�/�C\1e��X�\11JR�\ 6B�y��\ 5Ÿ�Q-�+μ�+ug�\\�y�J7\1et���{2U0�\1dOH��m�YF]q�Z�a\12�$f\13�d�B\a����2�F<��c.:�e`��Z�_���|������)�n|\7f\ e��KQi\Z�WK�\12�y��#Y,\v6��6\18\17c&,\10S�MP�Δ�3\14ę��;F�imE�M�I�MiF��܎L��N�W����J!O�\12Vi\b��2zA\n(�$�G�#\n%�{�^s*]���p��\\�2n�Et��ܬ�fݏ�Z\Z�m\0�:\1c��2%�.�؁D�3)�[F�\ 5�����a\f\1d��\1c�],2   ]�ˆ�ۮ��\v�Z�ϯ*kj4=���N1�����-c��;l�:\ 1\ 1@�Ϋ+�������O�WW��!א^EJGNFG�Ü$�L�B�FI\0CE�x\ 6��C42�Z�$R�u��}����Z\1cB��c=/>�z����\1d��XK�3x�q�,�8�+�\1c��-�#��?*\ZF���\ 5��V)/%xR3�e�\ 60�\b(b0�\8a;#\f;\bKl��\r%�Ye�c\bCM6���\'\18JP�%8�1��z�Wm�J��e�Z⁜�[�&+\16\18i!�.>V\ ez8��X�E}+d�\r\0�\ 6!�P��eաi�U�t\12v��O�;}qj�e0åi��\15?~A�\1d-\11��٘H �q�-�b>\f\18�\Z�+9�#7�x�1�\Z�\Z�e�\ 1��=`�t,���\n�\0\"\nn:x%zs�Ϥ����?�z|��գ\18�c���u��S?�\7f���K��R+1Uh�a���hTc\1e�%\ 4\16A��1�>?�B�\0����',6,0,'','','',''),(52,2,14,'75859b10bc511276','ed2cf7a93daffb15532a78b261ac4685','2017-09-07 09:16:08','2017-09-07 09:16:08','','','Contact Photos','6.jpg','image/jpeg',175,175,5486,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0�\0�\ 1\ 1\11\0��\0\1e\0\ 1\0\ 2\ 3\0\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\n\v\ 4\b    \ 2\ 3\a\ 5\ 6��\0B\10\0\0\ 5\ 3\ 2\ 3\ 5\ 5\ 3      \a\ 5\0\0\0\0\0\ 1\ 2\ 5\ 6\ 3\ 4\a\b\11   \12!\n\13\151A\14\16\"Q�aq�\17%23R����\18#$&5B�Es�����\0\b\ 1\ 1\0\0?\0��\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն����X\Zg���p|L�sN��\1e�}�Y%ZR|�\11(�J*I&+�rJ\18#�yI)%l�Z�,:��i�(��ϥ�)���J�����*hχ\18o��>$���Œd\v\"5\16ɐ\14b��o���9���/צF�3�qN��;뤂��������9�;߬�Kka0���Z��\19�$�Բ��Ob3�g\ e�Wqg�U�l�W�\0ĺQ��\17����<;\1eJ;\ 4��剽ŒTh܋}��h�����>�#���\10�\0\0\0\0\0\0\0\ 1\15>=]�Xw\ e\eg-8i��9�u����N�梿���ݱ^\ e�-l$$��5Rt�\"�����e�)�\1d:G\e��+3Ϛ�ͺ���,���-d�5�ܾ��n~5\7fSeW$76sS$�4SME��\13\ 2\11\1d����\"\"O.����_��)Y\8e1�\r�X!M\nm��y�Kl�R\a�#�k�M&�^�\12o\13\19\ 2|M\11L}Ij���O��D>��OJ��\Z\1c\1c�m�\ 2\ e�i��v2��r�VӍB�l[�rd��D�;\13k�2��dZ���\ 28�(��$���h:�״y}\7f\ 2\1e`\0\0\0\0\0\0\08�ƣ�37\f}\fNsſ�]�\19E�c\f\ 3\1cpJL�򄩵�\9c\11U<�\a�Y)�O�&�$.�!E�Q\a%��N�C�SL�8�d��#z��9�㔚g,�ܮ��G w�7GggU)F�]Es�I-��D\12S�:{-��\1ce�|jw\14�K\vP���䗴[�<�PU�\ 4\ e&�Jw���iU4�L��\Zno5i\Z�j��\18�ud�:d.-�n��\ f=9�tр��Z!�kj�/�Z��rL�׹S��d�]�Wg�\Z��M(R���%�#\15劰Q���\18\17�N��j���ERI\7f�3-���_=�\7f#\10���=��\ e���q\'�u\7f\ 2c���L\17-e�ƙL\17#��F�t�����G�����\ 4䓓�B��eEk2=\13\1d��\7f�ZZ�\aC���������3\ 3\e���xdRh�#\'�5ldE(�nF�ԝ�K/��\17\r\ e�9c���^QG���4�&\18N\7fjP��\ e�#=��\16:�)<2�\17ȧ�܆M\Z�3J���\"z�N�{�n���]H�\0�!�\0\0\0\0\0\ 1X\1fl3W\ e9\7f_�.5�W���_\177����v��츖��㡥%�k()��3Q�%%MJ#�\"\ 6,��|h\15\10�B{�i�\ 5\13������c+��r�\16�%��ɥ�Mj5���Z��V#Isӆ��$fK%M\b\0j�t��5s���\7f�n6���e8kU��\13ݑ$�܉5*6<F\1d�R\'�)\ 3\n�^�Hc�D�2�%�Ys�F�g�W�\1e\14��x�N���a�ջ��O�\15\16Ƃ�c��mn��!3\\|�&      u:fIV�r�\15:rjh.p�甴���9�\fM\1e��H���>���듲pg�BҲ�:t�[I줩��*���\17¤�V�pS�\18◣(�d�Bŗ4B.� �\18su=�\19\v=�4�ᢙ�K\ eAeZ$qu\16餣}�\19�Fԣ��\0\0\0\0\0\nY��No�\a\16�!\ f\15N��j{\"F-zy�c�?s\Z\f��I3�#̼˧Q�\16�����\r��k\\]���6��Pꫫ�Ur$��]MIN�^|��$�^u�,\12ݦ=0��O,Vt,�p�\1d��]�I(���F\Z�\1d�̔�����\ e��Q\19\12��bJID�l�\0\b����dӪ>\15�o!Sg�[$i*��<�\\Qng|Q�u��,�,�\ 6tu�-<�#�\rbQ\Z�&��v����\13\e�c�\ 5\1d��٧��u�-����\'��\1f�B�b);C�3����ha��Kr\"ۘ�r-���\0\0\0\0\0\ 1K�\1d\7fy�8�q\ 2a��^���\191�[\11�؍�$��#5�K�\17�,JL���Ȍ��a��L��s�&�[\1c\14d�\7f�1\r�צ�K����\19�ɧ\7f��=��\0\ 3Dx��a�Ó_Ud�ǁ\16�5%�~��<��&\ 4��ܾ^�G�⏚��_�K\7f�ω�f\\O�2ث�����=�t��2�7\f��\10�36��FffJw���&M\ 4^DDV��\0\0\0\0\0���A��<g�|K�\ 6v�����60�C���+}�P�\7f\f\f�%��\f\12�>�����-G�\1f��M�:]\16��\Z�N/&�ɛ����3:Rv�_��?]����%0�<Y���^��k(㸆E�\\ۙ*��_\19k|l�[��U7T�K}�$d�̈���\0\"�ګ�#\ e��g�0CS�*\19�YN)��vk{����\1e�9�=e�:�IB�\15,~\17\ 2W9\16ʛ1�Nƒ�Z�%UYR�Fu==72�����>��^�w\fg�\ah��F˭\15�3橯c�\16`��j�G�f=h�R�\1c     Ȫn������G)#I�\15&e\14��6�96\0\0\0\0\0\0�\18\1e\1cL4/���6v91��!�\r�)�,�~*�Rg#UR�ij�\"��rN������P�kJ;�m�\ e>�b���\ed&\17X��\ e��\18�Fޭ�b�\e�48�K�K�T\\�h^�Q̶#I\Z�hWe+_ͺ���ɧI;�\n�\7fF\17��.V\17w)7\a|<�f�d�O�̚Xi��\1e�>�\10�U-\7f\14�R��/��\7f1�\ 3���.�t��2fs�n��\ 4\10i\16E��u?b�D�V��2#�Ca��u3��3\14�q2�\15���j�w���\7fZ�����qN?;�^��X���R#\ 4g3�Dj�֣��&����\1f�\nI*�)\14�;-�\11����x�j�7A�\1e�%Gi��\13ŢV�8��\1cTN�BV�ER��\14e�*��������W�ZMQ�i;\19iR*h��-����\0�>�$\0\0\0\0\0\a�!}���\bLv�x(Ʋ�9�<K��ig\1c˘�(��E��m\15dߕ1�L��>3O\"\no�\18H�P��Q\15iJU�;G�\13\\/��e>\19����o\eQ�{hnW�\19^\0�S���8��{�\"Λ\16��JK\\�*��G\18��1)|��\'s6\ f��\1d@��M���o+@�\ 6:�e\buw;uY�*9���r�O\13l4��YL��Բ3Q#�\"5\19�E}�\ 4q�SS��G\ 5�HRb]{\1f~&�B\n�q@�wg\1ev�Q\ag_��=\16�rcW6�EP�j\"؊��v�ׇv�{\13:׎�V\r��}L��dD[u��_^�\v\7f?!y֑p<[L�^�Z}�ӵ�\e���\ 5\ 2k;[cJ.ɖ6���鲔��$/D��Y[�kwR��\12D���\0\0\0\0\ 1�.n���\17Nn��v\rv\16�sv�upVV6�;o̥��\11\11\11��\1fM���\'\18�x��8x�-��\1fa��\16���ES������l13K�\12\7f\v�Yx%���rJ��rR�Y�5B$�e�=4�_��ć�&��N\Z_�����k�\1c��H��Q;wdW/+�^&�����)5\13���i\17�(��\11�[���xr�I�W�+�]}f,�\n��\13^G��,s���\13���J\'8ӫ�\13\ 4�zL+Z�%l����$�Y�(�:�\19��]��6��\0e�i%v��]�J�\16d{o�?�$��{�;�SؔI-�[l;�\16�Ǣ��\18�e�Ŏ3\17l�b`cn��F�v6{\nm\f퍍��JZ�������\\��dJ2�\1fڀ��\e\1d#��o�\ 6�p\ 4M�Nӷ�w��8m�2��i�$��d��m�$E��jD�\1c�M�r\"�b�v\aKȴ���4��\18��s���܈�\Z��S�E�NU\'����|�{u��\ 5�H�n�\18�0B\1c��a�G\1c�\'�w\e~�x�-���5\1e�:�\1d���\11�����@\0\0\0\0|�(�\\\7f����-e�s$\v\1cc�\'        4�W\"�+\16H�\ 3Sw��:�\19�%�25�Ȉ׶ܜ�3B�\r���W\\e3���4hё\19��/�Z�q�&����%�-¢��$ʄʺiS2�g�@      +��m��RӭV��NQ\\\17�5�[B챌���h�x�%kk9\ 5�����1&\ 5rQ%Hj��<S����fJ�o�iB�H��3���IY��*Eґ\17\7fO����c$\0\0c��\0w��\15����:9\ 1�\"d=y�#\1e_M�3wg\19�uӬ1�N\12ؔ����.��6���ar:�7�D\12?��\"�U�Ԉ\15Xmn�-��f[��>�p�\ e\e�՗��h����tזf�\14��,��\1c��a��\"�\11�ڪ\14A�@d�&�b\n4�cI+\0-��R�V�^��\7f��_g��G�<\0\0\0\0Wc����3�M\1c214��\bV9&\19�n���)\1c�мs\1ec73MB/\aǬD�<�%eP�J\1fX���������\ 1���G�\11�Z��!m_U���X:�,\1fm��0�\10y#𖦳U2SD�\"�\1d9\f�I^��)�#�\r2��]�\0\0\0<;�~�\ ebj��\ f\rmk;^I5\19��]2�8�)�~�j�2K�!\19��d\fd�\17����FI)\f���]�\1f_���8q�����:j�:�ű\e\eEڱF����n`���=Z�qmL����}��$����J��J�Zi��w\1d\ 5h�tK�->�)�����t��%\Z�y&��\b\"$�r\160~Ʊك��)23�T��[\Z����:\15�L�L��*�{�f\1c{�^|m|D5��Wt�R�y)d��z�X�\1c.�QD��&G\19\"$����#�Y\16�T/�R���B��rMŵź�\e�쭶�}�>�{���v�\1f�\0\0>_��;.&ƹ\v*H�\15\18�6�L\'R\v�$�j�\12huzuQ\1e�vCQ���EҦ�\12:y}�\1dƚ�U�,kJ!�Y>}��Fк/no��3�NZQw35\19\1c�r�\12�+����d�JRDv�е�mO��F�\n\'�k~�|�H��3�\ 38\0\0\0\0\0c�GT��/]�/����_?��F\17�9�2\11�G\ 4I�\11���MZ��1�\'(����l\1c3�A��KuŒ��RM��4��w�$ԙ!�(��RH�\'���~.3,���3u\v(�s�@#.\12m1H�wK[���:��v\etG\'9&2�D�$���N0�\ 4Yu\n�n4�:J_���# \0\a+��ˮ��&8�H\Z�W���ҾSi����dr��؍e��d�}K���\11{�L��:1\rqjN���ě\17�(����Z735<Le��%u2R�\"\'��E�D{�l\'�\0\0\0\0\0\0=\v�W��1Wή1�n\ZݪLV��,��\15�ګ��V0��^�`q-O�52df��Jy|\18�e9\r���O*\15\10\19\1f���$=�\09���.s�\18\Z�\0�&�V�� ��[u;�\vۺK�_\13Q(��dȽG\ f�\Z�3f�k��u(\11֘j�\0\']P�W��s<\ 3\10����\0u\ e\17�{n���\0\0\0\0\0\0\ 1\0~�V-K�h�eb*�K \1e�������dj��)���{t�O�\1f���$=�\05�Wq/\7f4��hBhи��O��.v�\e\19]��    ����+�~i?�q\ f�{\13(�\ 6\\1\7f\1d\ f|r~q�\\����I�?s>��T��_�s��\0\0\0\0\0\0\b��Ɣd�~�\ 4?T�\0��2}��nj눝\19�F��\7f��\v��o1-�\7f���y��\19\ 3�    ]�\a�č��\ fh�����v�9n�Q�H��Ȍ�m��{��\1f�>\18��m�\vH\11:�����5�\a;�{�#RT��K��y~���2����v�\0\0\0\0\0\0\a\ eu�hJ8��=�U�Ch<�^;������F\7f     �[���L�6�$�\ e�\0\0\ fEJ]�]�z\7f��2��ƣ�s\19��zT�8ƭ�{\Z�x������*P���}��\vc�鷐��\0\0\0\0\0\0\Z\7f���I�7�I�wD�\0&\12\f�q���-Î�>�鿡���\r�\0\0\ 1��%H���?�����yt!�\0\0\0\0\0\0\ 3\ 2��\Z�)V�F�ַ�jg��f^D{�\vo���x\0\0\0\0\0\0\0\0\0\0\0\0��',4,0,'','','',''),(53,2,14,'75859b10bc511276','ed2cf7a93daffb15532a78b261ac4685','2017-09-07 09:16:08','2017-09-07 09:16:08','','','Contact Photos','6.jpg','image/jpeg',80,80,2703,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0P\0P\ 1\ 1\11\0��\0\1f\0\ 1\0\ 1\ 4\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\ 1    \n\v\ 2\ 4\a\ 3\ 5\ 6��\04\10\0\0\ 6\ 1\ 3\ 1\ 6\ 6\0\ 5\ 5\0\0\0\0\0\ 1\ 2\ 3\ 4\ 5\ 6\a\0\b\11  \12\13\14!1Q\n\15\16\"Aq\17#���3Sa����\0\b\ 1\ 1\0\0?\0��M5A\10\ fQ\0��j�����ǯ<��\1e��_�T\ 4\a�@\7fZ��i����\149\11\ 3��\7f׾�*��)��{ڥ����J�Y�[6h��e�\v�,u��$�\1c1����t�KvD3%�\7f��g\11[I�\17\16\15_:\15kƵ�J�u��B��7��\'vX3i�Rj:�G���*�e�\0\ 6��<C\19S��ש\14�kGH8�Z���!�ܶ;\18HiQM�\f�pN\13���\1e��Z��$�b�\b\1d������~� ��]��vG�X��e�\0P̚�k\12�C�\18G3H�޽��O�/l��x\0�\a���\ e?>a�\a�M|�i������:{Kٞ�w,dRt� aK�B�f����\f\ 5}��z�a�o�\1f-fr�����@@D5�\7f\ 6֮\1dV��b�S�&��-�\ 6L��m�[�x���S!�����\ 5d�\"ἵ����1�/��n}����\12��U2�����e&�\15T��`a�U��\e4#�``�!\e\11\r\14ũ\13l�>5�t\19�l�\n�(\"�i�\nP�)�\'��\f\1e�r�c-�^j�\15���e�\1e[��\16ZE�t\0���l�A�-��\'!\ 1�~��N.A�m2���p�\rjX��OR_��\7f�]�d\1c�r�8�\10�$+�\'\v۬�<m�1܇������G/OG��Td\19Y+s��\1e黗-�쭤��}\16;W��V��lC��U\ 1���b�Uȴ��)H����\11��\19e�!�\ 4\16/�\ 5��SX\ eA\1f-zv�i�e���s���^�q�Y���9���9(h��9�H��F�`�kd�)���\ 6��I$B��\1dr�\n\"n5�����}.��  9�l2�m\1f&\12�\n�b����\14+$V�`\ 3\n�\0++�\1c\13��9W�\ 4�0�h�q�q�\1c\a\1f�����\11\ 4G�\0G��Z�>.      ��Ӭ[��\ 1\ 4���8\e\a�o\rb\12�O\17��5�b61T\Z�EW�%B�NnTJS�d�͸\13�\"a�ۦ\ 6\14��˧~��m�7\r���nx��nd��x�\eZ�z�1\ 6��\11 ���\ f��|�#;��Mu_5I�7,�\"����;w\b8L���\v\14SY\15�7ڪJ�c\11D��\ eS        L\ 2Q\10\1de[��\ eD�m��a��c�ܜ��r\16L�L�\ f\b        ���/m_�˘\15�~t�F�P��?��|�R0��c[�\17�w\1dco\19�W\ f\ 6u�4,Ê�.8�%T����La�3\19�兂21o�*�I�B�e�߶r�\ e�8\ 5Z;A\17H��q먆�\17�v��;�61���a\\?n�W\"\1d��\ 6J�ݘ1���\ 4N��+^��%9A\"�\1c��tb(C�GX7|.{\13m�Gt{�ꧼ�\ es\r�\Ze�jR��\ 4�5��\16|�]\'r\14�1H�\15\1fŻ��F\f������gl�45V%4�/\14�P\0\0�\ 3�8�\0�r�Mx\16�73�v���ۃ��(�\1e+�0�LX�ߘ�QC\19B����`�\v��\14��[���0\"�d��6j�1:������>��c�\ 33c��2:sH>p\\ud��V.���U}��Q��L��>�C�u9$��2���$ݦ�\94\e��q�i��l�4���j5z��h���gQt��C���-9�T\']�\16�l\ra�R�5\18IgM��s)Y��4A��5fѳS�\11�tZ%?\19���:\ 5f\ 2�J�ð�Ujuh�P5��\fZ\ 5m\e\ f\v\11\1c�,����!\10lѪ)��d)H@\0׏n�n5M��;����uk8bێ9\7f*�\128w\b��\1d�8�\v6�\18��{^�\16Sl�P�MgL\12ISwg8\ e!\1f\ e����\a9�\13��\0P\18İ��\'e\ 42�ڲ}�\16����O�����j%�D�`�V����M��\19f�J�4�jQ�}�\16�N3�*�1{@b���\ 1\ f^\ 3��\7f\1e�\\k�!令#�\b�\0���#�X�3]Rz�l��\f��\0��        �#�\r�D1t�[gfZB*�Q���\"q*�у�j�j$�V�ZbE\13\ 3��\f�YP\10Q\15�8��~1�$\14\fs8�Xh���FD�G7M�|ls\ 6��ѓ\ 6-QI�6mRI�V�$�       �$�P�}4��.����!�^�5\n�⾪���\r��\ ff�YT�}ګEM�|�U\13\ 3\bs�c\13�=�\ eG�m������K;Lcw��O�0Q�=�{h��c):Ě       \ 1c\ 2r�\\����\1e���n\ f귺��{�i��U���_7�\1d&��L��7)ӷ~\r�K�\1d���^f�X�,%_q8Z�)\16��+���\16�_��#�v,��d���S�ѓդ�\e�y��y���\r�\17�?�\ f�^Rv��Y��vS\17\10�b�L�>����E�e\f^\ 1\17/q:\ eV!\a�Y���d7\17��M4�V }��+�J��ض��\vWH\v�K*��$ y*���Q����1J��#��M\ 3\1c�P��H�`!C��\a�~�T��7<\b��\1e��_�]CL\7f�~I����o\ fݒ���U��\14\0\15uE������}�       �V֘~��\f �$\ 2R�����M4�P�C\19�����/\ ea3-�dLn.���\ 4�c��dۛώЌb�\148�0�b鮸4n\ eN�WJ��uW\ 4�ި�c�Q\ 4��\1d\11\13�rd�\" ��TJ\0*\18G���i���͸�+�E1vF�hG\1d�敲�MU\10\ 3\7f�uQIC\0qɓ/!�\ 3�ֿ��',5,0,'','','',''),(54,2,14,'75859b10bc511276','ed2cf7a93daffb15532a78b261ac4685','2017-09-07 09:16:08','2017-09-07 09:16:08','','','Contact Photos','6.jpg','image/jpeg',48,48,1755,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\00\00\ 1\ 1\11\0��\0\e\0\0\ 2\ 2\ 3\ 1\0\0\0\0\0\0\0\0\0\0\0\b \0\ 6\ 1\ 4\a\n��\0.\10\0\ 1\ 4\ 2\ 1\ 3\ 3\ 3\ 3\ 4\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0      \11\12\13\14\n\16!\151A\"#$23Qa��\0\b\ 1\ 1\0\0?\0���3�c\19�s�\18ǜ�?�1���{�p\ fK����]�_�\1f�r��\0BsK�]�n\v4d�\7f\ 6fZ%\ 2ӣ�\v³+\1e�r0�m�&��i��-��<u��\v`��Xh�K\ 2ɤU-y�͎\roc��e�ښ�B$���.�>jA�g>���%hM����%�C\1c¿p��O!����6���x�i�e�5�\ 5��H�)LW�l�e����!k��:\14�T���h\12�q\ f2ڰ���NݴM\15�j�6�\10A��7�?qY��ˌ�g�Z�[D�En�\17&Z]-�mnB��a!�[v\\�h��2Ba\ 3RI?�\16��\1f�<~/�\17\ay=d�G����\e��3�JM�[ݨ��\10`   ��ԭy���N�\ 5�\0ɚȥ֐Y�ʈ���O`=�y��|\vҼ�&�-F�m\12f��+`<�\11q{\ 2�*En՘g\b���$��Y��`��P��#\ 6I%�;�<�z�+��<\e��#ۣ��g��dl9�\10n��&���\7fek�ٵ���)X�C\16�dz�D���\ 1�0�N%HiI�m���R/hvߠ��)5>B�~N��M�X�}��\']�؜�\Zlcޒ�\12Z��FQ.6��?\11`       �/����>�>I�X㞣�`�3���lHm%X8�=�j�2.�K2�1$�\10�����7�\ e\ 5�2�)�I1��Cw����n^\16i>%T%�cƺ�x�]�l�_�/�C\1e��X�\11JR�\ 6B�y��\ 5Ÿ�Q-�+μ�+ug�\\�y�J7\1et���{2U0�\1dOH��m�YF]q�Z�a\12�$f\13�d�B\a����2�F<��c.:�e`��Z�_���|������%�n|\7f\ e��KQi\Z�WK�\12�y��#X0\v6��6\18\17�&,\10S�MP��\14�;\14ę��;F�imE�M�I�MiF��܎L��N�W����J!O�\12Vi\b��2zA\n(�$�G�#\n%�{�^s*]���p��\\�2n�Et��ܬ�fݏ�Z\Z�m\0�:\1c��2%�.�؁D�3)�[F�\ 5�����a\f\1d��\1c�],2  ]�ˆ�ۮ��\v�Z�ϯ*kj4=���N1�����-c��;l�:\ 1\ 1@�Ϋ+�������O�WW��!א^EJGNFG�Ü$�L�B�FI\0CE�x\ 6��C42�Z�$R�u��}����Z\1cB��c=/>�z����\1d��XK�3x�q�,�8�+�\1c��-�#��?*\ZF���\ 5��V)/%xR3�e�\ 60�\b(b0�\8a;#\f;\bKl��\r%�Ye�c\bCM6���\'\18JP�%8�1��z�Wm�J��e�Z⁜�[�&+\16\18i!�.>V\ ez8��X�E}+d�\r\0�\ 6!�P��eաi�U�t\12v��O�;}qj�e0åi��\15?~A�\1d-\11��٘H �q�-�b>\f\18�\Z�+9�#7�x�1�\Z�\Z�e�\ 1��=`�t,���\n�\0\"\nn:x%zs�Ϥ����?�z|��գ\18�c���u��S?�\7f���K��R+1Uh�a���hTc\1e�%\ 4\16A��1�>?�B�\0����',6,0,'','','',''),(55,0,14,'75859b10bc51688d','1eaeb44ce16c9a8548707cafe998e6dc','2017-09-07 09:13:05','2017-09-07 09:13:05','','','Contact Photos','d74f209bfcd190b3864fa678e5068a16-4.jpg?ts=1504775545','image/jpeg',175,175,5493,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0�\0�\ 1\ 1\11\0��\0\1e\0\ 1\0\ 2\ 3\0\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\n\v\ 4\b     \ 2\ 3\a\ 5\ 6��\0B\10\0\0\ 5\ 3\ 2\ 3\ 5\ 6\ 2\ 5\v\ 5\0\0\0\0\0\ 1\ 2\ 5\ 6\ 3\ 4\a\b\11        \12!\n\13\151A\14\16\"Qa�q�\17%23�\18#$&5BR����Es�����\0\b\ 1\ 1\0\0?\0��\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն����X\Z\'���p|L�sN��\1e�}�Y%ZR|�\11(�J*I&+�rJ\18#�yI)%l�Z�,:��i�(��ϥ�)���J�����*hχ\18o�мI����$�\16Dj-� (�C\"�cI(s���_�L�:g��\v`w�I\ 5����9�s.w�Y���a\7f���C\"3:I��e�~��g,�\1dڮ�Ϩ�6�&�t\ 1�t�\ 3�/iK��xv<�v   #=�\13{�$�ѹ\16�Idу=��#�}�G���!�\0\0\0\0\0\0\0\ 2*|z�B��\1c6�Zp�]�s\"�A�ڝ\r�E\7f\r��{�b�\1d�Z�HI��j��>Eq�E�\14˒S.:t�7\19�Vg�5\15�u;��Ys=�YFZ�Rk��}����j��ʮHnl�Ifh���M6&\ 4\";M\15\13�DD�]��¿S\1cR��\1cc�\eh�B�\14�{��t��Ƥ\ f\16G��V�Mʽ4$�&2\ 4��\"����%���{̈}9$����489hۆ\ 4\1d��    @�e��崭�\Z��ط<��m�(v&�Ne{�ȵ\1dE�\ 4q\14QM\ 6I��\Z�uO�h���D<�\0\0\0\0\0\0\0qۍG\12fn\19\Z\18��\7fb��R���\18\ 69~�2w�\12��o\nstET�x\1e<d��>��H��l�\16MT\1c���:�\ f!M2��a��L��c��/�Ri��Cr���\1c����\1d��T�\Z�u\15Υ$�F�\10IN��춆�q�5��S�,-B��c�^�op�}AW�\108�Y)�c?��T��2F\18i��դkI��$b�Փ�鐸�A�\e�\\<��\ 1�F\ 2��h�ŭ�ܿIk�\17)�3\17^�N�ٓ�wu]��k�U4�J�\17��8�W�*�F�7�`^U:V��ң�\15I%�\1c̷?��|����C{�Oh�[�:r�qğ���  ����0\\���\Ze0\\�ޅ\Z��.���\1f�RvZ�\13�NOI\n#��\15���O\fv���-ik�\1d\ eF\a���\1c\ e�o�;�E�I�\14���ձ�\14�5�\Z�Rv!,�\1e�\\4;����MyE\1e�3��t�a9��B��:̌�[�X�T���h_\"��r\194k��*�F\\��U:��M�z�\0�u#�\0�C�\0\0\0\0\0\ 2�>�f�\1cr���Z\\kp�q\ 5Ҿ.oU�u������q-S\a�CJK��PSǬf�2JJ��G�D\fYm���+>!҄�^�\16\n\'��/{}\f�W7\16��-\18K\1f;�K���kI��\v(�;T�F��\r��H̖J�\10\0��J�s\ 4j�\vK��\0��m\1f���p֫WV\'�\"Iٹ\12jTlx�;ҤO,R\ 6\15��Ԑǖ�\fedK����:�8���<)5h�\17y Ó�w        ��r*-�\ 50��\7f�����Bf��J&  u:fIV�r�\15:rjh.p�甴���9�\fM\1e��H���>���듲pg�BҲ4\1d:{-��RT�P�MHZ��Rw+|�)�D�qKєW2W��e�\10���j\ 6\1c�O{F|��aM)xh��\1c�ʴH��-�IF�\163捩Gِ\0\0\0\0\0\14�q���d\ e-�B\1f\\*�u���D�Z��nǮ~�4\19��gfG�y�N��-m�ݯ�\em(ָ����m����WW���IoԺ������w2I\18��HX%�Lza�֞X��Y��;\ 1�$�D�Q{}\12�54;9�)k3S��\1d\1f\16�2%-|Ĕ��\b��\0\11��E�ɧT|+2�B��B�H�U�y���������K>Yk�[\ZYN\f��\"ZyTGV\ZĢ5\12MGR�OO��&7���\v�;_��Ou��\1c[7���O��?�0�Rv�Vg\13#۔��+���E�1\16�[\11ٲ\0\0\0\0\0\ 2��;X��\Zqz�\ 4�qJ����2c:�#��\evIK^Fk4�B/�X���﹑\19\19\1e�E4�eh�M8�8(�:�\0<b\e[�M�=eMB3�\0    �\7f��\a���\0\0h�\13��4xrkꬓ��\"�Ƥ�O�?g�����_×�����Q�S��� o�9�3�ˉ��&[\15\7fw���g�n�<�VF�\1db\11\ 6f�\12����N�:\19�ɠ��\11\11Z*\0\0\0\0\0\ 2���\ 6�\\��.�\19۷��C\1c���\ e6����yC\11��2t2$��\183�K���\e\e��\1fX~B�7��tZ_`j�8��?&n2.�x��Iڙ\7f���\17��,�Ø�f6�1{�7�����\19\16=snd�;�\19|e��en��T�Ri-�$���2\"/�\0\0��j�\\�:Z�0�\rNԨf\1de8�\13�٭�\12\eLz�����$�A%\n�T��\\    \\�[*l��;\ZJ�jt�UeJ�\19������ק����a{1�1��\1d�\Z�\e.�VdϚ����Y�#���\1e�����J�p\'\"����gw�\1c��&�T��R�Xڌ��\0\0\0\0\0\ 3��c�{0q0оS��h�����<���7h������]I��UJ���D����:�g�\e{]BA�(���8�i����m��]b��;�be\ez�]��n@���.�.�Qs\11�{�G���2؍$j]�]��\7f6ꏇ{&�$��+e�\18^�\1c�X]ܤ�\1d���%�\15>s2ia���{�\b��C\19T��\0XR�J��������\adz�]���\ ed��݉�      � �,�1r�~�\1e�6���DdG��OB�g��&f)��e�+/�4�T�Q�j�����Ѱ�~w��c�8���ڤF\b�gT�ճ�G�[�M\')��?J\14�UDR)6v[�#E3��\1c�$n��=�J��K�\'�D��q1�8��򄭴��7�(��U\1f����ueL�����t�v2ҤT�K�[o���\0>}FH\0\0\0\0\0\ f\ eB��\0��\bLv�x(Ʋ�9�<K��ig\1c˘�(��E��m\15dߕ1�L��>3O\"\no�\18H�P��Q\15iJU�;G�\13\\/��e>\19����o\eQ�{hnW�\19^\0�S���8��{�\"Λ\16��JK\\�*��G\18��1)|��\'s6\ f��\1d@��M���o+@�\ 6:�e\buw;uY�*9���r�O\13l4��YL��Բ3Q#�\"5\19�E}�\ 4q�SS��G\ 5�HRb]{\1f~&�B\n�q@�wg\1ev�Q\ag_��=\16�rcW6�EP�j\"؊��v�ׇv�{\13:׎�V\r��}L��dD[u��_^�\v\7f?!y֑p<[L�^�Z}�ӵ�\e���\ 5\ 2k;[cJ.ɖ6���鲔��$/D��Y[�kwR��\12D���\0\0\0\0\ 1�.n���\17Nn��v\rv\16�sv�upVV6�;o̥��\11\11\11��\1fM���\'\18�x��8x�-��\1fa��\16���ES������l13K�\12\7f\v�Yx%���rJ��rR�Y�5B$�e�=4�_��ć�&��N\Z_�����k�\1c��H��Q;wdW/+�^&�����)5\13���i\17�(��\12�-�Z�<9sN���\15�.��\16j�M�   �#�p�9��h���ԥ\13�i�ʼn�Q=&\15�U\12�O�Qn�Q�Ԕl�a��\\�.��\e\\�\0�㴒�Mʮ�%y�2=�ޟ�\12]Z��B\1d˩�J$��\0-�\1d�F��X�\fR2�b�\19��X�01�[�#s;\e=�\Z\19\e\e\r&��QiOwM    Z�<�dJ2�\1fڀ��\e\1d#��o�\ 6�p\ 4M�Nӷ�w��8m�2��i�$��d��m�$E��jD�\1c����E��2�\ e��iC;�iwN1���C���\11�59��\"�~��O]����O�[��^T�f�1��\ 4!���\e�q�2y\17q��W�\12��K�Q�ө��\1d\ f\19y����\0\0\0\0\a��U��K\1e�r�X�2@��?bp�L�r+��d�057x������[S#Y���{m�̣4.��+�o5u�S8���F�\19\11�M2���\a\1d�h�/m2^��*+j2L�L���3,�}D\0���F�>�-:�i)t�\15\7f�Y��.�\18Ϻ�f��bV���Z�:Z��\12`W%\12T���3�>I��>Fd���F�-$�j#;*O$��)R�])\11}����[��d�\0\fz���~B�\1eпgG 4�L��=\ 4c��&n��3κu�6��[\12�8\12�e��T�Ҕ\e�.GUF�(�G��$^J�ڑ\ 2�\r��ſ���q��خ\1c��wZ���\r\18���n�����\e\ 5��Ù\1dL5>wv$Rb2{UB�?H\f���LAF�Li%`\ 5��\e�Tjѫ�Q��\0>�������\0\0\0\0\15��������SG\f�M%�B\15�I�y�[�뽊G?t/\1cǘ���P����\114�%    YT*���\">�a&}b��pij��\ 4a־x�[W�n��\16\ e��\a�b\'\f+�\1eH�%���L��3Ȭ�NC+RW��\nb��L�+�`\0\0\0\ f\ e\1f�!�MWp�᭭gk�&�4q��SG\1ee:O�-]1�Iw�#27������7�Q��%!�T2�C���\1f\ e0Ҵ>�\aMY�V8�#ch�V(��vv��\11����TN-��\1c\1c����\14~=I[��W�M5\7f\ e㿀�\1crn�u\ 5��e0�[\1d�Ν�\1d��X�$��!\ 4D��B�\ f��;0z>S%&Fxʗ1+cRղ�GB���)�r�]/q\fÏz\vύ����9��U/%,��/S�\1crC��j(�\\�d��$D���eQ\1c�ȵ��}B��j\15�+�n-�-��ܧem����3���뷐� \0\ 1�����q65�YRGX���:a:�\\�\'{V(�C�Ӫ���\Z����.�7p����\18�4�2��cZQ\ fz���_j6��{s}�A�Rrҋ������ӗx�\ 1^_է�$�R�#�N��+j}�\Z4hQ>�[����E�\0���\f�\0\0\0\0\ 1��\1dR�t�wؾ~�{�|�\0��0���        ��\"8\"M��/\ f�j��\19��9E��-�`អ\r-�[�,�&��oo��L�\13�)&��\r1E���E)<���q�d�\16ᛨYE���\ 1\19p�i�G#�Z��\ f��/{�ۢ99�1��$\11%,֪q�H\"˨T�q���R����\19\0\09_Ʀ]u\ f�1�\"@�Z��徕�M�ͿS#�F��k-��\'c�^�����bg\aYшk�Rw�_��$ؿ     E�\fϚѹ���c/nA+����\11=�b/\n#܋a=@\0\0\0\0\0\ 1�_��\0���uq�+p��Rb��if�H�F�^\ fʱ����\e\ 3�j}٩�#55�S����)�l\ 5�\"yP���������!�\0\ 1ͮ/1s�p���q4����\a?�\ 2۩�4�^��_2���De�\13\"�\1c?�k�͛��F�ԠGZa���uB�^w-��\fB�G���:l_��zK�\0\0\0\0\0\0\ 4\ 1�AX�/���\11����,�zO���n�{��i���l��O���q?\14~������\0�]]Ľ�Ҟ��        �B���?�(��\\levo\10\'��߮�l�������}�ؙG82����{��䏯��O]����������\e���\0\0\0\0\0\0D��~4�\'���!���FQ��{sW\\D�͒7-�s���^�{y�m����\ 3\ 68�\1f�J�(?�$m\15h{E\17v\'6����w⍪G/�Df[m�c��8�\0��ǿ�n\10Z@�Դ�o^ٯ(9��ܙ\Z��|�]����TG���fFC��\0\0\0\0\0\08s�|kBQś��ޭ*\eA�Z����\7f�:3�N�ߦ��e鷡$�w\18\0\0z*R�z����\ f����\Z���gW\r�S\f�\Z�U�kE��\16�ks����Cÿ���h[\1f�M��߀\0\0\0\0\0\0��׎JO��\ZO;�\'�0�g\v���yn\1cwd��OM�\f���n\0\0\0\ftQ*E�ב�\7f\7f��ˡ\f�\0\0\0\0\0\0\18\15-hթJ�Z4N��[S=�#2�#��[}O�g�\0\0\0\0\0\0\0\0\0\0\0\ f��',4,0,'','','',''),(56,0,14,'75859b10bc51688d','1eaeb44ce16c9a8548707cafe998e6dc','2017-09-07 09:13:05','2017-09-07 09:13:05','','','Contact Photos','d74f209bfcd190b3864fa678e5068a16-4.jpg?ts=1504775545','image/jpeg',80,80,2703,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0P\0P\ 1\ 1\11\0��\0\1f\0\ 1\0\ 1\ 4\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\ 1 \n\v\ 2\ 4\a\ 3\ 5\ 6��\04\10\0\0\ 6\ 1\ 3\ 1\ 6\ 6\0\ 5\ 5\0\0\0\0\0\ 1\ 2\ 3\ 4\ 5\ 6\a\0\b\11  \12\13\14!1Q\n\15\16\"Aq\17#���3Sa����\0\b\ 1\ 1\0\0?\0��M5A\10\ fQ\0��j�����ǯ<��\1e��_�T\ 4\a�@\7fZ��i����\149\11\ 3��\7f׾�*��)��{ڥ����J�Y�[6h��e�\v�,u��$�\1c1����t�KvD3%�\7f��g\11[I�\17\16\15_:\15kƵ�J�u��B��7��\'vX3i�Rj:�G���*�e�\0\ 6��<C\19S��ש\14�kGH8�Z���!�ܶ;\18HiQM�\f�pN\13���\1e��Z��$�b�\b\1d������~� ��]��vG�X��e�\0P̚�k\12�C�\18G3H�޽��O�/l��x\0�\a���\ e?>a�\a�M|�i������:{Lٞ�w,dRt� aK�B�f����\f\ 4\ 3�5���Ô��\ 25��\ 2\ 2b�%\ 1\ 1\10֡��\eZ�uZꅊqNL�����\192Õ�\ 5oY↚}L�VB�\0��\15�0���ւ7s\0�D�{I��N\n_�J;�)Tʮ>��)���UR�U���V�PlЏ����`�lD4S\16�M�8��\r�fѲ\ 4*H��i�P)CP���O\f3�{\ 5�a��%y��V�\ e)��yn��Yi\16E�\ 23�I�\19\ 6�Vh��\a��;  8�\ 6ݴʛG]��5�b~�=I~\1f}��vݐr��(��C����/m��X�H�r\1e\ eN*ߎ��\\==\1eZ�Q�ed���\ 4{��\\�����n��X�^¹Z���\ e2�T\aƓ�e�%W\"�\1f��\"��w\18FV\be�L�8$���@\17K�aM`9\ 4G�zv�i�e���s���^�q�Y���9���9(h��9�H��F�`�kd�)���\ 6��I$B��\1dr�\n\"n5�����}.��    9�l2�m\1f&\12�\n�b����\14+$V�`\ 3\n�\0++�\1c\13��9W�\ 4�0�h�q�q�\1c\a\1f�����\11\ 4G�\0G��Z�~.      ��׬c��\ 1\ 4���8\e\a�o\r�\12�O\17��5�b61T\Z\15EW�%B�NnTJU\172gfܤ�\b�lu遅-�r�߲�\e}M�{�2۞,�[�:�\0^2�֫\1e��A��DH.�a<��h_/���4�]W�R|��\'\b�ỴN��\ e\13*�.��\14�Ed�����\18�Q3�C��S\0�D\aYV�vÑ>\e~�X\7f{\18��\'?�\1c��,\135C�\ 2f�K�W�2�\ 5}ߝ$���+�O��\1f0T�\'cX����X��l���f��q�\v0�#\v�8�U(+�*�\18e\f�r�a`��[�J�\12p���rw휢���\ 1V��E�+$�z�!�\ 5�]�=�j33\18W\ fۮUȇb����7f\fj,�\13���׳>�NPH�G,y�\18\10�Q�\r�\v���u\11\1e�:��%Ü�hƙi����\ 1\'�l;��\"WI܅4�R+E\7f��n��Q�*?&a%:��6�\rU�M-��(\14\0\08\0�\ e?�\\��^\ 5���ᝠ�+�����>����*�\16)��1�P�P���a�$\ 2�b�:�V�p0�\b��97M��LN�!a-��\ f�oX�\0���y�L���\ f\17\1dY#*\15���\15_n�T~\7f\13%{����]NI${L�quI7i�0�\ 6��\1cq�iw\e\'M-��\Z�^���<��\19�]/)\10�u�\vNxU    �m���\ 3X{Ԭ�F\12Y�c(��Vk0M\10l��Y�l��Df]\16�O�u:�\ e�Y��R�0�+�Z�Z!�\rv�\ 3\16�[F���G&�(��-�D\e4j�h��\nR\10\05�۾ۍSw{a�\ee�;q\1dZ�\18��_ʴD�\1d��d�r�6�ͺ�T�=�J\v)�H(r&��   &���\1c\a\10��n�k�\ 3��      �\7f\fbXBٓ��\19GmY>�\vE�l�\'�x�|�5\12�\"F�r�O���&��\f�y%^\Zn�(�:ԓH\15�*�1{@b���\ 1\ f^\ 3��\7f\1e�\\k�!令#�\b�\0���#�X�3]Rz�l��\f��\0��    �#�\r�D1t�[gfZB*�Q���\"q*�у�j�j$�V�ZbE\13\ 3��\f�YP\10Q\15�8��~1�$\14\fs8�Xh���FD�G7M�|ls\ 6��ѓ\ 6-QI�6mRI�V�$�       �$�P�}4��.����!�^�5\n�⾪���\r��\ ff�YT�}ګEM�|�U\13\ 3\bs�c\13�=�\ eG�m������K;Lcw��O�0Q�=�{h��c):Ě       \ 1c\ 2r�\\����\1e���n\ f귺��{�i��U���_7�\1d&��L��7)ӷ~\r�K�\1d���^f�X�,%_q8Z�)\16��+���\16�_��#�v,��d���S�ѓդ�\e�y��y���\r�\17�?�\ f�^Rv��Y��vS\17\10�b�L�>����E�e\f^\ 1\17/q:\ eV!\a�Y���d7\17��M4�V }��+�J��ض��\vWH\v�K*��$ y*���Q����1J��#��M\ 3\1c�P��H�`!C��\a�~�T��7<\b��\1e��_�]CL\7f�~I����o\ fݒ���U��\14\0\15uE������}�       �V֘~��\f �$\ 2R�����M4�P�C\19�����/\ ea3-�dLn.���\ 4�c��dۛώЌb�\148�0�b鮸4n\ eN�WJ��uW\ 4�ި�c�Q\ 4��\1d\11\13�rd�\" ��TJ\0*\18G���i���͸�+�E1vF�hG\1d�敲�MU\10\ 3\7f�uQIC\0qɓ/!�\ 3�ֿ��',5,0,'','','',''),(57,0,14,'75859b10bc51688d','1eaeb44ce16c9a8548707cafe998e6dc','2017-09-07 09:13:05','2017-09-07 09:13:05','','','Contact Photos','d74f209bfcd190b3864fa678e5068a16-4.jpg?ts=1504775545','image/jpeg',48,48,1755,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\00\00\ 1\ 1\11\0��\0\e\0\0\ 2\ 2\ 3\ 1\0\0\0\0\0\0\0\0\0\0\0\b  \0\ 6\ 1\ 4\a\n��\0.\10\0\ 1\ 4\ 2\ 1\ 3\ 3\ 3\ 3\ 4\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0      \11\12\13\14\n\16!\151A\"#$23Qa��\0\b\ 1\ 1\0\0?\0���3�c\19�s�\18ǜ�?�1���{�p\ fK����]�_�\1f�r��\0BsK�]�n\v4d�\7f\ 6fZ%\ 2ӣ�\v³+\1e�r0�m�&��i��-��<u��\v`��Xh�K\ 2ɤU-y�͎\roc��e�ښ�B$���.�>jA�g>���%hM����%�C\1c¿p��O!����6���x�i�e�5�\ 5��H�)LW�l�e����!k��:\14�T���h\12�q\ f2ڰ���NݴM\15�j�6�\10A��7�?qY��ˌ�g�Z�[D�En�\17&Z]-�mnB��a!�[v\\�h��2Ba\ 3RI?�\16��\1f�<~/�\17\ay=d�G����\e��3�JM�[ݨ��\10`   ��ԭy���N�\ 5�\0ɚȥ֐Y�ʈ���O`=�y��|\vҼ�&�-F�m\12f��+`<�\11q{\ 2�*En՘g\b���$��Y��`��P��#\ 6I%�;�<�z�+��<\e��#ۣ��g��dl9�\10n��&���\7fek�ٵ���)X�C\16�dz�D���\ 1�0�N%HiI�m���R/hvߠ��)5>B�~N��M�X�}��\']�؜�\Zlcޒ�\12Z��FQ.6��?\11`       �/����>�>J[X㦣�`�3���l8m%X<�=�j�2.�L2�1\"�\10���D�7�0�Ĉ2�+�I1��Kw����n^\16i>%T%�cƺ�x�]�l�_�/�C\1e��X�\11JR�\ 6B�y��\ 5Ÿ�Q-�+μ�+ug�\\�y�J7\1et���{2U0�\1dOH��m�YF]q�Z�a\12�$f\13�d�B\a����2�F<��c.:�e`��Z�_���|������)�n|\7f\ e��KQi\Z�WK�\12�y��#Y,\v6��6\18\17c&,\10S�MP�Δ�3\14ę��;F�imE�M�I�MiF��܎L��N�W����J!O�\12Vi\b��2zA\n(�$�G�#\n%�{�^s*]���p��\\�2n�Et��ܬ�fݏ�Z\Z�m\0�:\1c��2%�.�؁D�3)�[F�\ 5�����a\f\1d��\1c�],2   ]�ˆ�ۮ��\v�Z�ϯ*kj4=���N1�����-c��;l�:\ 1\ 1@�Ϋ+�������O�WW��!א^EJGNFG�Ü$�L�B�FI\0CE�x\ 6��C42�Z�$R�u��}����Z\1cB��c=/>�z����\1d��XK�3x�q�,�8�+�\1c��-�#��?*\ZF���\ 5��V)/%xR3�e�\ 60�\b(b0�\8a;#\f;\bKl��\r%�Ye�c\bCM6���\'\18JP�%8�1��z�Wm�J��e�Z⁜�[�&+\16\18i!�.>V\ ez8��X�E}+d�\r\0�\ 6!�P��eաi�U�t\12v��O�;}qj�e0åi��\15?~A�\1d-\11��٘H �q�-�b>\f\18�\Z�+9�#7�x�1�\Z�\Z�e�\ 1��=`�t,���\n�\0\"\nn:x%zs�Ϥ����?�z|��գ\18�c���u��S?�\7f���K��R+1Uh�a���hTc\1e�%\ 4\16A��1�>?�B�\0����',6,0,'','','',''),(58,4,15,'75859b10c420acd6','22875ea1ab42e09a2f1d3869cd6edfe7','2017-09-07 09:16:42','2017-09-07 09:16:42','','','Contact Photos','3.jpg','image/jpeg',175,175,5486,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0�\0�\ 1\ 1\11\0��\0\1e\0\ 1\0\ 2\ 3\0\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\n\v\ 4\b    \ 2\ 3\a\ 5\ 6��\0B\10\0\0\ 5\ 3\ 2\ 3\ 5\ 5\ 3      \a\ 5\0\0\0\0\0\ 1\ 2\ 5\ 6\ 3\ 4\a\b\11   \12!\n\13\151A\14\16\"Q�aq�\17%23R����\18#$&5B�Es�����\0\b\ 1\ 1\0\0?\0��\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն����X\Zg���p|L�sN��\1e�}�Y%ZR|�\11(�J*I&+�rJ\18#�yI)%l�Z�,:��i�(��ϥ�)���J�����*hχ\18o��>$���Œd\v\"5\16ɐ\14b��o���9���/צF�3�qN��;뤂��������9�;߬�Kka0���Z��\19�$�Բ��Ob3�g\ e�Wqg�U�l�W�\0ĺQ��\17����<;\1eJ;\ 4��剽ŒTh܋}��h�����>�#���\10�\0\0\0\0\0\0\0\ 1\15>=]�Xw\ e\eg-8i��9�u����N�梿���ݱ^\ e�-l$$��5Rt�\"�����e�)�\1d:G\e��+3Ϛ�ͺ���,���-d�5�ܾ��n~5\7fSeW$76sS$�4SME��\13\ 2\11\1d����\"\"O.����_��)Y\8e1�\r�X!M\nm��y�Kl�R\a�#�k�M&�^�\12o\13\19\ 2|M\11L}Ij���O��D>��OJ��\Z\1c\1c�m�\ 2\ e�i��v2��r�VӍB�l[�rd��D�;\13k�2��dZ���\ 28�(��$���h:�״y}\7f\ 2\1e`\0\0\0\0\0\0\08�ƣ�37\f}\fNsſ�]�\19E�c\f\ 3\1cpJL�򄩵�\9c\11U<�\a�Y)�O�&�$.�!E�Q\a%��N�C�SL�8�d��#z��9�㔚g,�ܮ��G w�7GggU)F�]Es�I-��D\12S�:{-��\1ce�|jw\14�K\vP���䗴[�<�PU�\ 4\ e&�Jw���iU4�L��\Zno5i\Z�j��\18�ud�:d.-�n��\ f=9�tр��Z!�kj�/�Z��rL�׹S��d�]�Wg�\Z��M(R���%�#\15劰Q���\18\17�N��j���ERI\7f�3-���_=�\7f#\10���=��\ e���q\'�u\7f\ 2c���L\17-e�ƙL\17#��F�t�����G�����\ 4䓓�B��eEk2=\13\1d��\7f�ZZ�\aC���������3\ 3\e���xdRh�#\'�5ldE(�nF�ԝ�K/��\17\r\ e�9c���^QG���4�&\18N\7fjP��\ e�#=��\16:�)<2�\17ȧ�܆M\Z�3J���\"z�N�{�n���]H�\0�!�\0\0\0\0\0\ 1X\1fl3W\ e9\7f_�.5�W���_\177����v��츖��㡥%�k()��3Q�%%MJ#�\"\ 6,��|h\15\10�B{�i�\ 5\13������c+��r�\16�%��ɥ�Mj5���Z��V#Isӆ��$fK%M\b\0j�t��5s���\7f�n6���e8kU��\13ݑ$�܉5*6<F\1d�R\'�)\ 3\n�^�Hc�D�2�%�Ys�F�g�W�\1e\14��x�N���a�ջ��O�\15\16Ƃ�c��mn��!3\\|�&      u:fIV�r�\15:rjh.p�甴���9�\fM\1e��H���>���듲pg�BҲ�:t�[I줩��*���\17¤�V�pS�\18◣(�d�Bŗ4B.� �\18su=�\19\v=�4�ᢙ�K\ eAeZ$qu\16餣}�\19�Fԣ��\0\0\0\0\0\nY��No�\a\16�!\ f\15N��j{\"F-zy�c�?s\Z\f��I3�#̼˧Q�\16�����\r��k\\]���6��Pꫫ�Ur$��]MIN�^|��$�^u�,\12ݦ=0��O,Vt,�p�\1d��]�I(���F\Z�\1d�̔�����\ e��Q\19\12��bJID�l�\0\b����dӪ>\15�o!Sg�[$i*��<�\\Qng|Q�u��,�,�\ 6tu�-<�#�\rbQ\Z�&��v����\13\e�c�\ 5\1d��٧��u�-����\'��\1f�B�b);C�3����ha��Kr\"ۘ�r-���\0\0\0\0\0\ 1K�\1d\7fy�8�q\ 2a��^���\191�[\11�؍�$��#5�K�\17�,JL���Ȍ��a��L��s�&�[\1c\14d�\7f�1\r�צ�K����\19�ɧ\7f��=��\0\ 3Dx��a�Ó_Ud�ǁ\16�5%�~��<��&\ 4��ܾ^�G�⏚��_�K\7f�ω�f\\O�2ث�����=�t��2�7\f��\10�36��FffJw���&M\ 4^DDV��\0\0\0\0\0���A��<g�|K�\ 6v�����60�C���+}�P�\7f\f\f�%��\f\12�>�����-G�\1f��M�:]\16��\Z�N/&�ɛ����3:Rv�_��?]����%0�<Y���^��k(㸆E�\\ۙ*��_\19k|l�[��U7T�K}�$d�̈���\0\"�ګ�#\ e��g�0CS�*\19�YN)��vk{����\1e�9�=e�:�IB�\15,~\17\ 2W9\16ʛ1�Nƒ�Z�%UYR�Fu==72�����>��^�w\fg�\ah��F˭\15�3橯c�\16`��j�G�f=h�R�\1c     Ȫn������G)#I�\15&e\14��6�96\0\0\0\0\0\0�\18\1e\1cL4/���6v91��!�\r�)�,�~*�Rg#UR�ij�\"��rN������P�kJ;�m�\ e>�b���\ed&\17X��\ e��\18�Fޭ�b�\e�48�K�K�T\\�h^�Q̶#I\Z�hWe+_ͺ���ɧI;�\n�\7fF\17��.V\17w)7\a|<�f�d�O�̚Xi��\1e�>�\10�U-\7f\14�R��/��\7f1�\ 3���.�t��2fs�n��\ 4\10i\16E��u?b�D�V��2#�Ca��u3��3\14�q2�\15���j�w���\7fZ�����qN?;�^��X���R#\ 4g3�Dj�֣��&����\1f�\nI*�)\14�;-�\11����x�j�7A�\1e�%Gi��\13ŢV�8��\1cTN�BV�ER��\14e�*��������W�ZMQ�i;\19iR*h��-����\0�>�$\0\0\0\0\0\a�!}���\bLv�x(Ʋ�9�<K��ig\1c˘�(��E��m\15dߕ1�L��>3O\"\no�\18H�P��Q\15iJU�;G�\13\\/��e>\19����o\eQ�{hnW�\19^\0�S���8��{�\"Λ\16��JK\\�*��G\18��1)|��\'s6\ f��\1d@��M���o+@�\ 6:�e\buw;uY�*9���r�O\13l4��YL��Բ3Q#�\"5\19�E}�\ 4q�SS��G\ 5�HRb]{\1f~&�B\n�q@�wg\1ev�Q\ag_��=\16�rcW6�EP�j\"؊��v�ׇv�{\13:׎�V\r��}L��dD[u��_^�\v\7f?!y֑p<[L�^�Z}�ӵ�\e���\ 5\ 2k;[cJ.ɖ6���鲔��$/D��Y[�kwR��\12D���\0\0\0\0\ 1�.n���\17Nn��v\rv\16�sv�upVV6�;o̥��\11\11\11��\1fM���\'\18�x��8x�-��\1fa��\16���ES������l13K�\12\7f\v�Yx%���rJ��rR�Y�5B$�e�=4�_��ć�&��N\Z_�����k�\1c��H��Q;wdW/+�^&�����)5\13���i\17�(��\11�[���xr�I�W�+�]}f,�\n��\13^G��,s���\13���J\'8ӫ�\13\ 4�zL+Z�%l����$�Y�(�:�\19��]��6��\0e�i%v��]�J�\16d{o�?�$��{�;�SؔI-�[l;�\16�Ǣ��\18�e�Ŏ3\17l�b`cn��F�v6{\nm\f퍍��JZ�������\\��dJ2�\1fڀ��\e\1d#��o�\ 6�p\ 4M�Nӷ�w��8m�2��i�$��d��m�$E��jD�\1c�M�r\"�b�v\aKȴ���4��\18��s���܈�\Z��S�E�NU\'����|�{u��\ 5�H�n�\18�0B\1c��a�G\1c�\'�w\e~�x�-���5\1e�:�\1d���\11�����@\0\0\0\0|�(�\\\7f����-e�s$\v\1cc�\'        4�W\"�+\16H�\ 3Sw��:�\19�%�25�Ȉ׶ܜ�3B�\r���W\\e3���4hё\19��/�Z�q�&����%�-¢��$ʄʺiS2�g�@      +��m��RӭV��NQ\\\17�5�[B챌���h�x�%kk9\ 5�����1&\ 5rQ%Hj��<S����fJ�o�iB�H��3���IY��*Eґ\17\7fO����c$\0\0c��\0w��\15����:9\ 1�\"d=y�#\1e_M�3wg\19�uӬ1�N\12ؔ����.��6���ar:�7�D\12?��\"�U�Ԉ\15Xmn�-��f[��>�p�\ e\e�՗��h����tזf�\14��,��\1c��a��\"�\11�ڪ\14A�@d�&�b\n4�cI+\0-��R�V�^��\7f��_g��G�<\0\0\0\0Wc����3�M\1c214��\bV9&\19�n���)\1c�мs\1ec73MB/\aǬD�<�%eP�J\1fX���������\ 1���G�\11�Z��!m_U���X:�,\1fm��0�\10y#𖦳U2SD�\"�\1d9\f�I^��)�#�\r2��]�\0\0\0<;�~�\ ebj��\ f\rmk;^I5\19��]2�8�)�~�j�2K�!\19��d\fd�\17����FI)\f���]�\1f_���8q�����:j�:�ű\e\eEڱF����n`���=Z�qmL����}��$����J��J�Zi��w\1d\ 5h�tK�->�)�����t��%\Z�y&��\b\"$�r\160~Ʊك��)23�T��[\Z����:\15�L�L��*�{�f\1c{�^|m|D5��Wt�R�y)d��z�X�\1c.�QD��&G\19\"$����#�Y\16�T/�R���B��rMŵź�\e�쭶�}�>�{���v�\1f�\0\0>_��;.&ƹ\v*H�\15\18�6�L\'R\v�$�j�\12huzuQ\1e�vCQ���EҦ�\12:y}�\1dƚ�U�,kJ!�Y>}��Fк/no��3�NZQw35\19\1c�r�\12�+����d�JRDv�е�mO��F�\n\'�k~�|�H��3�\ 38\0\0\0\0\0c�GT��/]�/����_?��F\17�9�2\11�G\ 4I�\11���MZ��1�\'(����l\1c3�A��KuŒ��RM��4��w�$ԙ!�(��RH�\'���~.3,���3u\v(�s�@#.\12m1H�wK[���:��v\etG\'9&2�D�$���N0�\ 4Yu\n�n4�:J_���# \0\a+��ˮ��&8�H\Z�W���ҾSi����dr��؍e��d�}K���\11{�L��:1\rqjN���ě\17�(����Z735<Le��%u2R�\"\'��E�D{�l\'�\0\0\0\0\0\0=\v�W��1Wή1�n\ZݪLV��,��\15�ګ��V0��^�`q-O�52df��Jy|\18�e9\r���O*\15\10\19\1f���$=�\09���.s�\18\Z�\0�&�V�� ��[u;�\vۺK�_\13Q(��dȽG\ f�\Z�3f�k��u(\11֘j�\0\']P�W��s<\ 3\10����\0u\ e\17�{n���\0\0\0\0\0\0\ 1\0~�V-K�h�eb*�K \1e�������dj��)���{t�O�\1f���$=�\05�Wq/\7f4��hBhи��O��.v�\e\19]��    ����+�~i?�q\ f�{\13(�\ 6\\1\7f\1d\ f|r~q�\\����I�?s>��T��_�s��\0\0\0\0\0\0\b��Ɣd�~�\ 4?T�\0��2}��nj눝\19�F��\7f��\v��o1-�\7f���y��\19\ 3�    ]�\a�č��\ fh�����v�9n�Q�H��Ȍ�m��{��\1f�>\18��m�\vH\11:�����5�\a;�{�#RT��K��y~���2����v�\0\0\0\0\0\0\a\ eu�hJ8��=�U�Ch<�^;������F\7f     �[���L�6�$�\ e�\0\0\ fEJ]�]�z\7f��2��ƣ�s\19��zT�8ƭ�{\Z�x������*P���}��\vc�鷐��\0\0\0\0\0\0\Z\7f���I�7�I�wD�\0&\12\f�q���-Î�>�鿡���\r�\0\0\ 1��%H���?�����yt!�\0\0\0\0\0\0\ 3\ 2��\Z�)V�F�ַ�jg��f^D{�\vo���x\0\0\0\0\0\0\0\0\0\0\0\0��',4,0,'','','',''),(59,4,15,'75859b10c420acd6','22875ea1ab42e09a2f1d3869cd6edfe7','2017-09-07 09:16:42','2017-09-07 09:16:42','','','Contact Photos','3.jpg','image/jpeg',80,80,2703,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0P\0P\ 1\ 1\11\0��\0\1f\0\ 1\0\ 1\ 4\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\ 1    \n\v\ 2\ 4\a\ 3\ 5\ 6��\04\10\0\0\ 6\ 1\ 3\ 1\ 6\ 6\0\ 5\ 5\0\0\0\0\0\ 1\ 2\ 3\ 4\ 5\ 6\a\0\b\11  \12\13\14!1Q\n\15\16\"Aq\17#���3Sa����\0\b\ 1\ 1\0\0?\0��M5A\10\ fQ\0��j�����ǯ<��\1e��_�T\ 4\a�@\7fZ��i����\149\11\ 3��\7f׾�*��)��{ڥ����J�Y�[6h��e�\v�,u��$�\1c1����t�KvD3%�\7f��g\11[I�\17\16\15_:\15kƵ�J�u��B��7��\'vX3i�Rj:�G���*�e�\0\ 6��<C\19S��ש\14�kGH8�Z���!�ܶ;\18HiQM�\f�pN\13���\1e��Z��$�b�\b\1d������~� ��]��vG�X��e�\0P̚�k\12�C�\18G3H�޽��O�/l��x\0�\a���\ e?>a�\a�M|�i������:{Kٞ�w,dRt� aK�B�f����\f\ 5}��z�a�o�\1f-fr�����@@D5�\7f\ 6֮\1dV��b�S�&��-�\ 6L��m�[�x���S!�����\ 5d�\"ἵ����1�/��n}����\12��U2�����e&�\15T��`a�U��\e4#�``�!\e\11\r\14ũ\13l�>5�t\19�l�\n�(\"�i�\nP�)�\'��\f\1e�r�c-�^j�\15���e�\1e[��\16ZE�t\0���l�A�-��\'!\ 1�~��N.A�m2���p�\rjX��OR_��\7f�]�d\1c�r�8�\10�$+�\'\v۬�<m�1܇������G/OG��Td\19Y+s��\1e黗-�쭤��}\16;W��V��lC��U\ 1���b�Uȴ��)H����\11��\19e�!�\ 4\16/�\ 5��SX\ eA\1f-zv�i�e���s���^�q�Y���9���9(h��9�H��F�`�kd�)���\ 6��I$B��\1dr�\n\"n5�����}.��  9�l2�m\1f&\12�\n�b����\14+$V�`\ 3\n�\0++�\1c\13��9W�\ 4�0�h�q�q�\1c\a\1f�����\11\ 4G�\0G��Z�>.      ��Ӭ[��\ 1\ 4���8\e\a�o\rb\12�O\17��5�b61T\Z�EW�%B�NnTJS�d�͸\13�\"a�ۦ\ 6\14��˧~��m�7\r���nx��nd��x�\eZ�z�1\ 6��\11 ���\ f��|�#;��Mu_5I�7,�\"����;w\b8L���\v\14SY\15�7ڪJ�c\11D��\ eS        L\ 2Q\10\1de[��\ eD�m��a��c�ܜ��r\16L�L�\ f\b        ���/m_�˘\15�~t�F�P��?��|�R0��c[�\17�w\1dco\19�W\ f\ 6u�4,Ê�.8�%T����La�3\19�兂21o�*�I�B�e�߶r�\ e�8\ 5Z;A\17H��q먆�\17�v��;�61���a\\?n�W\"\1d��\ 6J�ݘ1���\ 4N��+^��%9A\"�\1c��tb(C�GX7|.{\13m�Gt{�ꧼ�\ es\r�\Ze�jR��\ 4�5��\16|�]\'r\14�1H�\15\1fŻ��F\f������gl�45V%4�/\14�P\0\0�\ 3�8�\0�r�Mx\16�73�v���ۃ��(�\1e+�0�LX�ߘ�QC\19B����`�\v��\14��[���0\"�d��6j�1:������>��c�\ 33c��2:sH>p\\ud��V.���U}��Q��L��>�C�u9$��2���$ݦ�\94\e��q�i��l�4���j5z��h���gQt��C���-9�T\']�\16�l\ra�R�5\18IgM��s)Y��4A��5fѳS�\11�tZ%?\19���:\ 5f\ 2�J�ð�Ujuh�P5��\fZ\ 5m\e\ f\v\11\1c�,����!\10lѪ)��d)H@\0׏n�n5M��;����uk8bێ9\7f*�\128w\b��\1d�8�\v6�\18��{^�\16Sl�P�MgL\12ISwg8\ e!\1f\ e����\a9�\13��\0P\18İ��\'e\ 42�ڲ}�\16����O�����j%�D�`�V����M��\19f�J�4�jQ�}�\16�N3�*�1{@b���\ 1\ f^\ 3��\7f\1e�\\k�!令#�\b�\0���#�X�3]Rz�l��\f��\0��        �#�\r�D1t�[gfZB*�Q���\"q*�у�j�j$�V�ZbE\13\ 3��\f�YP\10Q\15�8��~1�$\14\fs8�Xh���FD�G7M�|ls\ 6��ѓ\ 6-QI�6mRI�V�$�       �$�P�}4��.����!�^�5\n�⾪���\r��\ ff�YT�}ګEM�|�U\13\ 3\bs�c\13�=�\ eG�m������K;Lcw��O�0Q�=�{h��c):Ě       \ 1c\ 2r�\\����\1e���n\ f귺��{�i��U���_7�\1d&��L��7)ӷ~\r�K�\1d���^f�X�,%_q8Z�)\16��+���\16�_��#�v,��d���S�ѓդ�\e�y��y���\r�\17�?�\ f�^Rv��Y��vS\17\10�b�L�>����E�e\f^\ 1\17/q:\ eV!\a�Y���d7\17��M4�V }��+�J��ض��\vWH\v�K*��$ y*���Q����1J��#��M\ 3\1c�P��H�`!C��\a�~�T��7<\b��\1e��_�]CL\7f�~I����o\ fݒ���U��\14\0\15uE������}�       �V֘~��\f �$\ 2R�����M4�P�C\19�����/\ ea3-�dLn.���\ 4�c��dۛώЌb�\148�0�b鮸4n\ eN�WJ��uW\ 4�ި�c�Q\ 4��\1d\11\13�rd�\" ��TJ\0*\18G���i���͸�+�E1vF�hG\1d�敲�MU\10\ 3\7f�uQIC\0qɓ/!�\ 3�ֿ��',5,0,'','','',''),(60,4,15,'75859b10c420acd6','22875ea1ab42e09a2f1d3869cd6edfe7','2017-09-07 09:16:42','2017-09-07 09:16:42','','','Contact Photos','3.jpg','image/jpeg',48,48,1755,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\00\00\ 1\ 1\11\0��\0\e\0\0\ 2\ 2\ 3\ 1\0\0\0\0\0\0\0\0\0\0\0\b \0\ 6\ 1\ 4\a\n��\0.\10\0\ 1\ 4\ 2\ 1\ 3\ 3\ 3\ 3\ 4\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0      \11\12\13\14\n\16!\151A\"#$23Qa��\0\b\ 1\ 1\0\0?\0���3�c\19�s�\18ǜ�?�1���{�p\ fK����]�_�\1f�r��\0BsK�]�n\v4d�\7f\ 6fZ%\ 2ӣ�\v³+\1e�r0�m�&��i��-��<u��\v`��Xh�K\ 2ɤU-y�͎\roc��e�ښ�B$���.�>jA�g>���%hM����%�C\1c¿p��O!����6���x�i�e�5�\ 5��H�)LW�l�e����!k��:\14�T���h\12�q\ f2ڰ���NݴM\15�j�6�\10A��7�?qY��ˌ�g�Z�[D�En�\17&Z]-�mnB��a!�[v\\�h��2Ba\ 3RI?�\16��\1f�<~/�\17\ay=d�G����\e��3�JM�[ݨ��\10`   ��ԭy���N�\ 5�\0ɚȥ֐Y�ʈ���O`=�y��|\vҼ�&�-F�m\12f��+`<�\11q{\ 2�*En՘g\b���$��Y��`��P��#\ 6I%�;�<�z�+��<\e��#ۣ��g��dl9�\10n��&���\7fek�ٵ���)X�C\16�dz�D���\ 1�0�N%HiI�m���R/hvߠ��)5>B�~N��M�X�}��\']�؜�\Zlcޒ�\12Z��FQ.6��?\11`       �/����>�>I�X㞣�`�3���lHm%X8�=�j�2.�K2�1$�\10�����7�\ e\ 5�2�)�I1��Cw����n^\16i>%T%�cƺ�x�]�l�_�/�C\1e��X�\11JR�\ 6B�y��\ 5Ÿ�Q-�+μ�+ug�\\�y�J7\1et���{2U0�\1dOH��m�YF]q�Z�a\12�$f\13�d�B\a����2�F<��c.:�e`��Z�_���|������%�n|\7f\ e��KQi\Z�WK�\12�y��#X0\v6��6\18\17�&,\10S�MP��\14�;\14ę��;F�imE�M�I�MiF��܎L��N�W����J!O�\12Vi\b��2zA\n(�$�G�#\n%�{�^s*]���p��\\�2n�Et��ܬ�fݏ�Z\Z�m\0�:\1c��2%�.�؁D�3)�[F�\ 5�����a\f\1d��\1c�],2  ]�ˆ�ۮ��\v�Z�ϯ*kj4=���N1�����-c��;l�:\ 1\ 1@�Ϋ+�������O�WW��!א^EJGNFG�Ü$�L�B�FI\0CE�x\ 6��C42�Z�$R�u��}����Z\1cB��c=/>�z����\1d��XK�3x�q�,�8�+�\1c��-�#��?*\ZF���\ 5��V)/%xR3�e�\ 60�\b(b0�\8a;#\f;\bKl��\r%�Ye�c\bCM6���\'\18JP�%8�1��z�Wm�J��e�Z⁜�[�&+\16\18i!�.>V\ ez8��X�E}+d�\r\0�\ 6!�P��eաi�U�t\12v��O�;}qj�e0åi��\15?~A�\1d-\11��٘H �q�-�b>\f\18�\Z�+9�#7�x�1�\Z�\Z�e�\ 1��=`�t,���\n�\0\"\nn:x%zs�Ϥ����?�z|��գ\18�c���u��S?�\7f���K��R+1Uh�a���hTc\1e�%\ 4\16A��1�>?�B�\0����',6,0,'','','',''),(61,3,16,'75859b10c4223968','9c78857b3d725c1c6d1227a7b8cbe6b2','2017-09-07 09:09:29','2017-09-07 09:09:29','','','Contact Photos','9c78857b3d725c1c6d1227a7b8cbe6b2-4.jpg?ts=1504775234','image/jpeg',175,175,5493,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0�\0�\ 1\ 1\11\0��\0\1e\0\ 1\0\ 2\ 3\0\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\n\v\ 4\b     \ 2\ 3\a\ 5\ 6��\0B\10\0\0\ 5\ 3\ 2\ 3\ 5\ 6\ 2\ 5\v\ 5\0\0\0\0\0\ 1\ 2\ 5\ 6\ 3\ 4\a\b\11        \12!\n\13\151A\14\16\"Qa�q�\17%23�\18#$&5BR����Es�����\0\b\ 1\ 1\0\0?\0��\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն����X\Z\'���p|L�sN��\1e�}�Y%ZR|�\11(�J*I&+�rJ\18#�yI)%l�Z�,:��i�(��ϥ�)���J�����*hχ\18o�мI����$�\16Dj-� (�C\"�cI(s���_�L�:g��\v`w�I\ 5����9�s.w�Y���a\7f���C\"3:I��e�~��g,�\1dڮ�Ϩ�6�&�t\ 1�t�\ 3�/iK��xv<�v   #=�\13{�$�ѹ\16�Idу=��#�}�G���!�\0\0\0\0\0\0\0\ 2*|z�B��\1c6�Zp�]�s\"�A�ڝ\r�E\7f\r��{�b�\1d�Z�HI��j��>Eq�E�\14˒S.:t�7\19�Vg�5\15�u;��Ys=�YFZ�Rk��}����j��ʮHnl�Ifh���M6&\ 4\";M\15\13�DD�]��¿S\1cR��\1cc�\eh�B�\14�{��t��Ƥ\ f\16G��V�Mʽ4$�&2\ 4��\"����%���{̈}9$����489hۆ\ 4\1d��    @�e��崭�\Z��ط<��m�(v&�Ne{�ȵ\1dE�\ 4q\14QM\ 6I��\Z�uO�h���D<�\0\0\0\0\0\0\0qۍG\12fn\18\18��\7fb��R���\18\ 68��2w�\12��o\nstET�x\1e=d��>��H��l�\16MD\1c���:�\ f!M2��a��L��c��/�Ri��Cr���\1c����\1d��T�\Z�u\15Υ$�F�\10IN��춆�q�5��S�,-B��c�^�op�}AW�\108�Y)�c?��T��2F\18i��դkI��$b�Փ�鐸�A�\e�\\<��\ 1�F\ 2��h�ŭ�ܿIk�\17)�3\17^�N�ٓ�wu]��k�U4�J�\17��8�W�*�F�7�`^U:V��ң�\15I%�\1c̷?��|����C{�Oh�[�:r�qğ���       ����0\\���\Ze0\\�ޅ\Z��.���\1f�RvZ�\13�NOI\n#��\15���O\fv���-ik�\1d\ eF\a���\1c\ e�o�;�E�I�\14���ձ�\14�5�\Z�Rv!,�\1e�\\4;����MyE\1e�3��t�a9��B��:̌�[�X�T���h_\"��r\194k��*�F\\��U:��M�z�\0�u#�\0�C�\0\0\0\0\0\ 2�>�f�\1cr���Z\\kp�q\ 5Ҿ.oU�u������q-S\a�CJK��PSǬf�2JJ��G�D\fYm���+>!҄�^�\16\n\'��/{}\f�W7\16��-\18K\1f;�K���kI��\v(�;T�F��\r��H̖J�\10\0��J�s\ 4j�\vK��\0��m\1f���p֫WV\'�\"Iٹ\12jTlx�;ҤO,R\ 6\15��Ԑǖ�\fedK����:�8���<)5h�\17y Ó�w        ��r*-�\ 50��\7f�����Bf��J&  u:fIV�r�\15:rjh.p�甴���9�\fM\1e��H���>���듲pg�BҲ4\1d:{-��RT�P�MHZ��Rw+|�)�D�qKєW2W��e�\10���j\ 6\1c�O{F|��aM)xh��\1c�ʴH��-�IF�\163捩Gِ\0\0\0\0\0\14�q���d\ e-�B\1f\\*�u���D�Z��nǮ~�4\19��gfG�y�N��-m�ݯ�\em(ָ����m����WW���IoԺ������w2I\18��HX%�Lza�֞X��Y��;\ 1�$�D�Q{}\12�54;9�)k3S��\1d\1f\16�2%-|Ĕ��\b��\0\11��E�ɧT|+2�B��B�H�U�y���������K>Yk�[\ZYN\f��\"ZyTGV\ZĢ5\12MGR�OO��&7���\v�;_��Ou��\1c[7���O��?�0�Rv�Vg\13#۔��+���E�1\16�[\11ٲ\0\0\0\0\0\ 2��;X��\Zqz�\ 4�qJ����2c:�#��\evIK^Fk4�B/�X���﹑\19\19\1e�E4�eh�M8�8(�:�\0<b\e[�M�=eMB3�\0    �\7f��\a���\0\0h�\13��4xrkꬓ��\"�Ƥ�O�?g�����_×�����Q�S��� o�9�3�ˉ��&[\15\7fw���g�n�<�VF�\1db\11\ 6f�\12����N�:\19�ɠ��\11\11Z*\0\0\0\0\0\ 2���\ 6�\\��.�\19۷��C\1c���\ e6����yC\11��2t2$��\183�K���\e\e��\1fX~B�7��tZ_`j�8��?&n2.�x��Iڙ\7f���\17��,�Ø�f6�1{�7�����\19\16=snd�;�\19|e��en��T�Ri-�$���2\"/�\0\0��j�\\�:Z�0�\rNԨf\1de8�\13�٭�\12\eLz�����$�A%\n�T��\\    \\�[*l��;\ZJ�jt�UeJ�\19������ק����a{1�1��\1d�\Z�\e.�VdϚ����Y�#���\1e�����J�p\'\"����gw�\1c��&�T��R�Xڌ��\0\0\0\0\0\ 3��c�{0q0оS��h�����<���7h������]I��UJ���D����:�g�\e{]BA�(���8�i����m��]b��;�be\ez�]��n@���.�.�Qs\11�{�G���2؍$j]�]��\7f6ꏇ{&�$��+e�\18^�\1c�X]ܤ�\1d���%�\15>s2ia���{�\b��C\19T��\0XR�J��������\adz�]���\ ed��݉�      � �,�1r�~�\1e�6���DdG��OB�g��&f)��e�+/�4�T�Q�j�����Ѱ�~w��c�8���ڤF\b�gT�ճ�G�[�M\')��?J\14�UDR)6v[�#E3��\1c�$n��=�J��K�\'�D��q1�8��򄭴��7�(��U\1f����ueL�����t�v2ҤT�K�[o���\0>}FH\0\0\0\0\0\ f\ eB��\0��\bLv�x(Ʋ�9�<K��ig\1c˘�(��E��m\15dߕ1�L��>3O\"\no�\18H�P��Q\15iJU�;G�\13\\/��e>\19����o\eQ�{hnW�\19^\0�S���8��{�\"Λ\16��JK\\�*��G\18��1)|��\'s6\ f��\1d@��M���o+@�\ 6:�e\buw;uY�*9���r�O\13l4��YL��Բ3Q#�\"5\19�E}�\ 4q�SS��G\ 5�HRb]{\1f~&�B\n�q@�wg\1ev�Q\ag_��=\16�rcW6�EP�j\"؊��v�ׇv�{\13:׎�V\r��}L��dD[u��_^�\v\7f?!y֑p<[L�^�Z}�ӵ�\e���\ 5\ 2k;[cJ.ɖ6���鲔��$/D��Y[�kwR��\12D���\0\0\0\0\ 1�.n���\17Nn��v\rv\16�sv�upVV6�;o̥��\11\11\11��\1fM���\'\18�x��8x�-��\1fa��\16���ES������l13K�\12\7f\v�Yx%���rJ��rR�Y�5B$�e�=4�_��ć�&��N\Z_�����k�\1c��H��Q;wdW/+�^&�����)5\13���i\17�(��\12�-�Z�<9sN���\15�.��\16j�M�   �#�p�9��h���ԥ\13�i�ʼn�Q=&\15�U\12�O�Qn�Q�Ԕl�a��\\�.��\e\\�\0�㴒�Mʮ�%y�2=�ޟ�\12]Z��B\1d˩�J$��\0-�\1d�F��X�\fR2�b�\19��X�01�[�#s;\e=�\Z\19\e\e\r&��QiOwM    Z�<�dJ2�\1fڀ��\e\1d#��o�\ 6�p\ 4M�Nӷ�w��8m�2��i�$��d��m�$E��jD�\1c����E��2�\ e��iC;�iwN1���C���\11�59��\"�~��O]����O�[��^T�f�1��\ 4!���\e�q�2y\17q��W�\12��K�Q�ө��\1d\ f\19y����\0\0\0\0\a��U��K\1e�r�X�2@��?bp�L�r+��d�057x������[S#Y���{m�̣4.��+�o5u�S8���F�\19\11�M2���\a\1d�h�/m2^��*+j2L�L���3,�}D\0���F�>�-:�i)t�\15\7f�Y��.�\18Ϻ�f��bV���Z�:Z��\12`W%\12T���3�>I��>Fd���F�-$�j#;*O$��)R�])\11}����[��d�\0\fz���~B�\1eпgG 4�L��=\ 4c��&n��3κu�6��[\12�8\12�e��T�Ҕ\e�.GUF�(�G��$^J�ڑ\ 2�\r��ſ���q��خ\1c��wZ���\r\18���n�����\e\ 5��Ù\1dL5>wv$Rb2{UB�?H\f���LAF�Li%`\ 5��\e�Tjѫ�Q��\0>�������\0\0\0\0\15��������SG\f�M%�B\15�I�y�[�뽊G?t/\1cǘ���P����\114�%    YT*���\">�a&}b��pij��\ 4a־x�[W�n��\16\ e��\a�b\'\f+�\1eH�%���L��3Ȭ�NC+RW��\nb��L�+�`\0\0\0\ f\ e\1f�!�MWp�᭭gk�&�4q��SG\1ee:O�-]1�Iw�#27������7�Q��%!�T2�C���\1f\ e0Ҵ>�\aMY�V8�#ch�V(��vv��\11����TN-��\1c\1c����\14~=I[��W�M5\7f\ e㿀�\1crn�u\ 5��e0�[\1d�Ν�\1d��X�$��!\ 4D��B�\ f��;0z>S%&Fxʗ1+cRղ�GB���)�r�]/q\fÏz\vύ����9��U/%,��/S�\1crC��j(�\\�d��$D���eQ\1c�ȵ��}B��j\15�+�n-�-��ܧem����3���뷐� \0\ 1�����q65�YRGX���:a:�\\�\'{V(�C�Ӫ���\Z����.�7p����\18�4�2��cZQ\ fz���_j6��{s}�A�Rrҋ������ӗx�\ 1^_է�$�R�#�N��+j}�\Z4hQ>�[����E�\0���\f�\0\0\0\0\ 1��\1dR�t�wؾ~�{�|�\0��0���        ��\"8\"M��/\ f�j��\19��9E��-�`អ\r-�[�,�&��oo��L�\13�)&��\r1E���E)<���q�d�\16ᛨYE���\ 1\19p�i�G#�Z��\ f��/{�ۢ99�1��$\11%,֪q�H\"˨T�q���R����\19\0\09_Ʀ]u\ f�1�\"@�Z��徕�M�ͿS#�F��k-��\'c�^�����bg\aYшk�Rw�_��$ؿ     E�\fϚѹ���c/nA+����\11=�b/\n#܋a=@\0\0\0\0\0\ 1�_��\0���uq�+p��Rb��if�H�F�^\ fʱ����\e\ 3�j}٩�#55�S����)�l\ 5�\"yP���������!�\0\ 1ͮ/1s�p���q4����\a?�\ 2۩�4�^��_2���De�\13\"�\1c?�k�͛��F�ԠGZa���uB�^w-��\fB�G���:l_��zK�\0\0\0\0\0\0\ 4\ 1�AX�/���\11����,�zO���n�{��i���l��O���q?\14~������\0�]]Ľ�Ҟ��        �B���?�(��\\levo\10\'��߮�l�������}�ؙG82����{��䏯��O]����������\e���\0\0\0\0\0\0D��~4�\'���!���FQ��{sW\\D�͒7-�s���^�{y�m����\ 3\ 68�\1f�J�(?�$m\15h{E\17v\'6����w⍪G/�Df[m�c��8�\0��ǿ�n\10Z@�Դ�o^ٯ(9��ܙ\Z��|�]����TG���fFC��\0\0\0\0\0\08s�|kBQś��ޭ*\eA�Z����\7f�:3�N�ߦ��e鷡$�w\18\0\0z*R�z����\ f����\Z���gW\r�S\f�\Z�U�kE��\16�ks����Cÿ���h[\1f�M��߀\0\0\0\0\0\0��׎JO��\ZO;�\'�0�g\v���yn\1cwd��OM�\f���n\0\0\0\ftQ*E�ב�\7f\7f��ˡ\f�\0\0\0\0\0\0\18\15-hթJ�Z4N��[S=�#2�#��[}O�g�\0\0\0\0\0\0\0\0\0\0\0\ f��',4,0,'','','',''),(62,3,16,'75859b10c4223968','9c78857b3d725c1c6d1227a7b8cbe6b2','2017-09-07 09:09:29','2017-09-07 09:09:29','','','Contact Photos','9c78857b3d725c1c6d1227a7b8cbe6b2-4.jpg?ts=1504775234','image/jpeg',80,80,2703,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0P\0P\ 1\ 1\11\0��\0\1f\0\ 1\0\ 1\ 4\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\ 1 \n\v\ 2\ 4\a\ 3\ 5\ 6��\04\10\0\0\ 6\ 1\ 3\ 1\ 6\ 6\0\ 5\ 5\0\0\0\0\0\ 1\ 2\ 3\ 4\ 5\ 6\a\0\b\11  \12\13\14!1Q\n\15\16\"Aq\17#���3Sa����\0\b\ 1\ 1\0\0?\0��M5A\10\ fQ\0��j�����ǯ<��\1e��_�T\ 4\a�@\7fZ��i����\149\11\ 3��\7f׾�*��)��{ڥ����J�Y�[6h��e�\v�,u��$�\1c1����t�KvD3%�\7f��g\11[I�\17\16\15_:\15kƵ�J�u��B��7��\'vX3i�Rj:�G���*�e�\0\ 6��<C\19S��ש\14�kGH8�Z���!�ܶ;\18HiQM�\f�pN\13���\1e��Z��$�b�\b\1d������~� ��]��vG�X��e�\0P̚�k\12�C�\18G3H�޽��O�/l��x\0�\a���\ e?>a�\a�M|�i������:{Lٞ�w,dRt� aK�B�f����\f\ 4\ 3�5���Ô��\ 25��\ 2\ 2b�%\ 1\ 1\10֡��\eZ�uZꅊqNL�����\192Õ�\ 5oY↚}L�VB�\0��\15�0���ւ7s\0�D�{I��N\n_�J;�)Tʮ>��)���UR�U���V�PlЏ����`�lD4S\16�M�8��\r�fѲ\ 4*H��i�P)CP���O\f3�{\ 5�a��%y��V�\ e)��yn��Yi\16E�\ 23�I�\19\ 6�Vh��\a��;  8�\ 6ݴʛG]��5�b��=I~\1f}��vݐr��(��C����/n��X�H�r\1e\ eN*ߎ�Y\1c�=\1eZ�Q�ed���\ 4{��\\�����n��X�^¹Z���\ e2�T\aƓ�e�%W\"�\1f��\"��w\18FV\be�L�8$���@\17K�aM`9\ 4G�zv�i�e���s���^�q�Y���9���9(h��9�H��F�`�kd�)���\ 6��I$B��\1dr�\n\"n5�����}.��   9�l2�m\1f&\12�\n�b����\14+$V�`\ 3\n�\0++�\1c\13��9W�\ 4�0�h�q�q�\1c\a\1f�����\11\ 4G�\0G��Z�~.      ��׬c��\ 1\ 4���8\e\a�o\r�\12�O\17��5�b61T\Z\15EW�%B�NnTJU\172gfܤ�\b�lu遅-�r�߲�\e}M�{�2۞,�[�:�\0^2�֫\1e��A��DH.�a<��h_/���4�]W�R|��\'\b�ỴN��\ e\13*�.��\14�Ed�����\18�Q3�C��S\0�D\aYV�vÑ>\e~�X\7f{\18��\'?�\1c��,\135C�\ 2f�K�W�2�\ 5}ߝ$���+�O��\1f0T�\'cX����X��l���f��q�\v0�#\v�8�U(+�*�\18e\f�r�a`��[�J�\12p���rw휢���\ 1V��E�+$�z�!�\ 5�]�=�j33\18W\ fۮUȇb����7f\fj,�\13���׳>�NPH�G,y�\18\10�Q�\r�\v���u\11\1e�:��%Ü�hƙi����\ 1\'�l;��\"WI܅4�R+E\7f��n��Q�*?&a%:��6�\rU�M-��(\14\0\08\0�\ e?�\\��^\ 5���ᝠ�+�����>����*�\16)��1�P�P���a�$\ 2�b�:�V�p0�\b��97M��LN�!a-��\ f�oX�\0���y�L���\ f\17\1dY#*\15���\15_n�T~\7f\13%{����]NI${L�quI7i�0�\ 6��\1cq�iw\e\'M-��\Z�^���<��\19�]/)\10�u�\vNxU    �m���\ 3X{Ԭ�F\12Y�c(��Vk0M\10l��Y�l��Df]\16�O�u:�\ e�Y��R�0�+�Z�Z!�\rv�\ 3\16�[F���G&�(��-�D\e4j�h��\nR\10\05�۾ۍSw{a�\ee�;q\1dZ�\18��_ʴD�\1d��d�r�6�ͺ�T�=�J\v)�H(r&��   &���\1c\a\10��n�k�\ 3��      �\7f\fbXBٓ��\19GmY>�\vE�l�\'�x�|�5\12�\"F�r�O���&��\f�y%^\Zn�(�:ԓH\15�*�1{@b���\ 1\ f^\ 3��\7f\1e�\\k�!令#�\b�\0���#�X�3]Rz�l��\f��\0��    �#�\r�D1t�[gfZB*�Q���\"q*�у�j�j$�V�ZbE\13\ 3��\f�YP\10Q\15�8��~1�$\14\fs8�Xh���FD�G7M�|ls\ 6��ѓ\ 6-QI�6mRI�V�$�       �$�P�}4��.����!�^�5\n�⾪���\r��\ ff�YT�}ګEM�|�U\13\ 3\bs�c\13�=�\ eG�m������K;Lcw��O�0Q�=�{h��c):Ě       \ 1c\ 2r�\\����\1e���n\ f귺��{�i��U���_7�\1d&��L��7)ӷ~\r�K�\1d���^f�X�,%_q8Z�)\16��+���\16�_��#�v,��d���S�ѓդ�\e�y��y���\r�\17�?�\ f�^Rv��Y��vS\17\10�b�L�>����E�e\f^\ 1\17/q:\ eV!\a�Y���d7\17��M4�V }��+�J��ض��\vWH\v�K*��$ y*���Q����1J��#��M\ 3\1c�P��H�`!C��\a�~�T��7<\b��\1e��_�]CL\7f�~I����o\ fݒ���U��\14\0\15uE������}�       �V֘~��\f �$\ 2R�����M4�P�C\19�����/\ ea3-�dLn.���\ 4�c��dۛώЌb�\148�0�b鮸4n\ eN�WJ��uW\ 4�ި�c�Q\ 4��\1d\11\13�rd�\" ��TJ\0*\18G���i���͸�+�E1vF�hG\1d�敲�MU\10\ 3\7f�uQIC\0qɓ/!�\ 3�ֿ��',5,0,'','','',''),(63,3,16,'75859b10c4223968','9c78857b3d725c1c6d1227a7b8cbe6b2','2017-09-07 09:09:29','2017-09-07 09:09:29','','','Contact Photos','9c78857b3d725c1c6d1227a7b8cbe6b2-4.jpg?ts=1504775234','image/jpeg',48,48,1755,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\00\00\ 1\ 1\11\0��\0\e\0\0\ 2\ 2\ 3\ 1\0\0\0\0\0\0\0\0\0\0\0\b  \0\ 6\ 1\ 4\a\n��\0.\10\0\ 1\ 4\ 2\ 1\ 3\ 3\ 3\ 3\ 4\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0      \11\12\13\14\n\16!\151A\"#$23Qa��\0\b\ 1\ 1\0\0?\0���3�c\19�s�\18ǜ�?�1���{�p\ fK����]�_�\1f�r��\0BsK�]�n\v4d�\7f\ 6fZ%\ 2ӣ�\v³+\1e�r0�m�&��i��-��<u��\v`��Xh�K\ 2ɤU-y�͎\roc��e�ښ�B$���.�>jA�g>���%hM����%�C\1c¿p��O!����6���x�i�e�5�\ 5��H�)LW�l�e����!k��:\14�T���h\12�q\ f2ڰ���NݴM\15�j�6�\10A��7�?qY��ˌ�g�Z�[D�En�\17&Z]-�mnB��a!�[v\\�h��2Ba\ 3RI?�\16��\1f�<~/�\17\ay=d�G����\e��3�JM�[ݨ��\10`   ��ԭy���N�\ 5�\0ɚȥ֐Y�ʈ���O`=�y��|\vҼ�&�-F�m\12f��+`<�\11q{\ 2�*En՘g\b���$��Y��`��P��#\ 6I%�;�<�z�+��<\e��#ۣ��g��dl9�\10n��&���\7fek�ٵ���)X�C\16�dz�D���\ 1�0�N%HiI�m���R/hvߠ��)5>B�~N��M�X�}��\']�؜�\Zlcޒ�\12Z��FQ.6��?\11`       �/����>�>J[X㦣�`�3���l8m%X<�=�j�2.�L2�1\"�\10���D�7�0�Ĉ2�+�I1��Kw����n^\16i>%T%�cƺ�x�]�l�_�/�C\1e��X�\11JR�\ 6B�y��\ 5Ÿ�Q-�+μ�+ug�\\�y�J7\1et���{2U0�\1dOH��m�YF]q�Z�a\12�$f\13�d�B\a����2�F<��c.:�e`��Z�_���|������)�n|\7f\ e��KQi\Z�WK�\12�y��#Y,\v6��6\18\17c&,\10S�MP�Δ�3\14ę��;F�imE�M�I�MiF��܎L��N�W����J!O�\12Vi\b��2zA\n(�$�G�#\n%�{�^s*]���p��\\�2n�Et��ܬ�fݏ�Z\Z�m\0�:\1c��2%�.�؁D�3)�[F�\ 5�����a\f\1d��\1c�],2   ]�ˆ�ۮ��\v�Z�ϯ*kj4=���N1�����-c��;l�:\ 1\ 1@�Ϋ+�������O�WW��!א^EJGNFG�Ü$�L�B�FI\0CE�x\ 6��C42�Z�$R�u��}����Z\1cB��c=/>�z����\1d��XK�3x�q�,�8�+�\1c��-�#��?*\ZF���\ 5��V)/%xR3�e�\ 60�\b(b0�\8a;#\f;\bKl��\r%�Ye�c\bCM6���\'\18JP�%8�1��z�Wm�J��e�Z⁜�[�&+\16\18i!�.>V\ ez8��X�E}+d�\r\0�\ 6!�P��eաi�U�t\12v��O�;}qj�e0åi��\15?~A�\1d-\11��٘H �q�-�b>\f\18�\Z�+9�#7�x�1�\Z�\Z�e�\ 1��=`�t,���\n�\0\"\nn:x%zs�Ϥ����?�z|��գ\18�c���u��S?�\7f���K��R+1Uh�a���hTc\1e�%\ 4\16A��1�>?�B�\0����',6,0,'','','',''),(64,6,17,'75859b10d79196fc','15048d33e71544a25a6dd13bb081c78f','2017-09-07 09:13:05','2017-09-07 09:13:05','','','Contact Photos','15048d33e71544a25a6dd13bb081c78f-4.jpg?ts=1504775545','image/jpeg',175,175,5493,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0�\0�\ 1\ 1\11\0��\0\1e\0\ 1\0\ 2\ 3\0\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\n\v\ 4\b     \ 2\ 3\a\ 5\ 6��\0B\10\0\0\ 5\ 3\ 2\ 3\ 5\ 6\ 2\ 5\v\ 5\0\0\0\0\0\ 1\ 2\ 5\ 6\ 3\ 4\a\b\11        \12!\n\13\151A\14\16\"Qa�q�\17%23�\18#$&5BR����Es�����\0\b\ 1\ 1\0\0?\0��\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն����X\Z\'���p|L�sN��\1e�}�Y%ZR|�\11(�J*I&+�rJ\18#�yI)%l�Z�,:��i�(��ϥ�)���J�����*hχ\18o�мI����$�\16Dj-� (�C\"�cI(s���_�L�:g��\v`w�I\ 5����9�s.w�Y���a\7f���C\"3:I��e�~��g,�\1dڮ�Ϩ�6�&�t\ 1�t�\ 3�/iK��xv<�v   #=�\13{�$�ѹ\16�Idу=��#�}�G���!�\0\0\0\0\0\0\0\ 2*|z�B��\1c6�Zp�]�s\"�A�ڝ\r�E\7f\r��{�b�\1d�Z�HI��j��>Eq�E�\14˒S.:t�7\19�Vg�5\15�u;��Ys=�YFZ�Rk��}����j��ʮHnl�Ifh���M6&\ 4\";M\15\13�DD�]��¿S\1cR��\1cc�\eh�B�\14�{��t��Ƥ\ f\16G��V�Mʽ4$�&2\ 4��\"����%���{̈}9$����489hۆ\ 4\1d��    @�e��崭�\Z��ط<��m�(v&�Ne{�ȵ\1dE�\ 4q\14QM\ 6I��\Z�uO�h���D<�\0\0\0\0\0\0\0qۍG\12fn\18\18��\7fb��R���\18\ 68��2w�\12��o\nstET�x\1e=d��>��H��l�\16MD\1c���:�\ f!M2��a��L��c��/�Ri��Cr���\1c����\1d��T�\Z�u\15Υ$�F�\10IN��춆�q�5��S�,-B��c�^�op�}AW�\108�Y)�c?��T��2F\18i��դkI��$b�Փ�鐸�A�\e�\\<��\ 1�F\ 2��h�ŭ�ܿIk�\17)�3\17^�N�ٓ�wu]��k�U4�J�\17��8�W�*�F�7�`^U:V��ң�\15I%�\1c̷?��|����C{�Oh�[�:r�qğ���       ����0\\���\Ze0\\�ޅ\Z��.���\1f�RvZ�\13�NOI\n#��\15���O\fv���-ik�\1d\ eF\a���\1c\ e�o�;�E�I�\14���ձ�\14�5�\Z�Rv!,�\1e�\\4;����MyE\1e�3��t�a9��B��:̌�[�X�T���h_\"��r\194k��*�F\\��U:��M�z�\0�u#�\0�C�\0\0\0\0\0\ 2�>�f�\1cr���Z\\kp�q\ 5Ҿ.oU�u������q-S\a�CJK��PSǬf�2JJ��G�D\fYm���+>!҄�^�\16\n\'��/{}\f�W7\16��-\18K\1f;�K���kI��\v(�;T�F��\r��H̖J�\10\0��J�s\ 4j�\vK��\0��m\1f���p֫WV\'�\"Iٹ\12jTlx�;ҤO,R\ 6\15��Ԑǖ�\fedK����:�8���<)5h�\17y Ó�w        ��r*-�\ 50��\7f�����Bf��J&  u:fIV�r�\15:rjh.p�甴���9�\fM\1e��H���>���듲pg�BҲ4\1d:{-��RT�P�MHZ��Rw+|�)�D�qKєW2W��e�\10���j\ 6\1c�O{F|��aM)xh��\1c�ʴH��-�IF�\163捩Gِ\0\0\0\0\0\14�q���d\ e-�B\1f\\*�u���D�Z��nǮ~�4\19��gfG�y�N��-m�ݯ�\em(ָ����m����WW���IoԺ������w2I\18��HX%�Lza�֞X��Y��;\ 1�$�D�Q{}\12�54;9�)k3S��\1d\1f\16�2%-|Ĕ��\b��\0\11��E�ɧT|+2�B��B�H�U�y���������K>Yk�[\ZYN\f��\"ZyTGV\ZĢ5\12MGR�OO��&7���\v�;_��Ou��\1c[7���O��?�0�Rv�Vg\13#۔��+���E�1\16�[\11ٲ\0\0\0\0\0\ 2��;X��\Zqz�\ 4�qJ����2c:�#��\evIK^Fk4�B/�X���﹑\19\19\1e�E4�eh�M8�8(�:�\0<b\e[�M�=eMB3�\0    �\7f��\a���\0\0h�\13��4xrkꬓ��\"�Ƥ�O�?g�����_×�����Q�S��� o�9�3�ˉ��&[\15\7fw���g�n�<�VF�\1db\11\ 6f�\12����N�:\19�ɠ��\11\11Z*\0\0\0\0\0\ 2���\ 6�\\��.�\19۷��C\1c���\ e6����yC\11��2t2$��\183�K���\e\e��\1fX~B�7��tZ_`j�8��?&n2.�x��Iڙ\7f���\17��,�Ø�f6�1{�7�����\19\16=snd�;�\19|e��en��T�Ri-�$���2\"/�\0\0��j�\\�:Z�0�\rNԨf\1de8�\13�٭�\12\eLz�����$�A%\n�T��\\    \\�[*l��;\ZJ�jt�UeJ�\19������ק����a{1�1��\1d�\Z�\e.�VdϚ����Y�#���\1e�����J�p\'\"����gw�\1c��&�T��R�Xڌ��\0\0\0\0\0\ 3��c�{0q0оS��h�����<���7h������]I��UJ���D����:�g�\e{]BA�(���8�i����m��]b��;�be\ez�]��n@���.�.�Qs\11�{�G���2؍$j]�]��\7f6ꏇ{&�$��+e�\18^�\1c�X]ܤ�\1d���%�\15>s2ia���{�\b��C\19T��\0XR�J��������\adz�]���\ ed��݉�      � �,�1r�~�\1e�6���DdG��OB�g��&f)��e�+/�4�T�Q�j�����Ѱ�~w��c�8���ڤF\b�gT�ճ�G�[�M\')��?J\14�UDR)6v[�#E3��\1c�$n��=�J��K�\'�D��q1�8��򄭴��7�(��U\1f����ueL�����t�v2ҤT�K�[o���\0>}FH\0\0\0\0\0\ f\ eB��\0��\bLv�x(Ʋ�9�<K��ig\1c˘�(��E��m\15dߕ1�L��>3O\"\no�\18H�P��Q\15iJU�;G�\13\\/��e>\19����o\eQ�{hnW�\19^\0�S���8��{�\"Λ\16��JK\\�*��G\18��1)|��\'s6\ f��\1d@��M���o+@�\ 6:�e\buw;uY�*9���r�O\13l4��YL��Բ3Q#�\"5\19�E}�\ 4q�SS��G\ 5�HRb]{\1f~&�B\n�q@�wg\1ev�Q\ag_��=\16�rcW6�EP�j\"؊��v�ׇv�{\13:׎�V\r��}L��dD[u��_^�\v\7f?!y֑p<[L�^�Z}�ӵ�\e���\ 5\ 2k;[cJ.ɖ6���鲔��$/D��Y[�kwR��\12D���\0\0\0\0\ 1�.n���\17Nn��v\rv\16�sv�upVV6�;o̥��\11\11\11��\1fM���\'\18�x��8x�-��\1fa��\16���ES������l13K�\12\7f\v�Yx%���rJ��rR�Y�5B$�e�=4�_��ć�&��N\Z_�����k�\1c��H��Q;wdW/+�^&�����)5\13���i\17�(��\12�-�Z�<9sN���\15�.��\16j�M�   �#�p�9��h���ԥ\13�i�ʼn�Q=&\15�U\12�O�Qn�Q�Ԕl�a��\\�.��\e\\�\0�㴒�Mʮ�%y�2=�ޟ�\12]Z��B\1d˩�J$��\0-�\1d�F��X�\fR2�b�\19��X�01�[�#s;\e=�\Z\19\e\e\r&��QiOwM    Z�<�dJ2�\1fڀ��\e\1d#��o�\ 6�p\ 4M�Nӷ�w��8m�2��i�$��d��m�$E��jD�\1c����E��2�\ e��iC;�iwN1���C���\11�59��\"�~��O]����O�[��^T�f�1��\ 4!���\e�q�2y\17q��W�\12��K�Q�ө��\1d\ f\19y����\0\0\0\0\a��U��K\1e�r�X�2@��?bp�L�r+��d�057x������[S#Y���{m�̣4.��+�o5u�S8���F�\19\11�M2���\a\1d�h�/m2^��*+j2L�L���3,�}D\0���F�>�-:�i)t�\15\7f�Y��.�\18Ϻ�f��bV���Z�:Z��\12`W%\12T���3�>I��>Fd���F�-$�j#;*O$��)R�])\11}����[��d�\0\fz���~B�\1eпgG 4�L��=\ 4c��&n��3κu�6��[\12�8\12�e��T�Ҕ\e�.GUF�(�G��$^J�ڑ\ 2�\r��ſ���q��خ\1c��wZ���\r\18���n�����\e\ 5��Ù\1dL5>wv$Rb2{UB�?H\f���LAF�Li%`\ 5��\e�Tjѫ�Q��\0>�������\0\0\0\0\15��������SG\f�M%�B\15�I�y�[�뽊G?t/\1cǘ���P����\114�%    YT*���\">�a&}b��pij��\ 4a־x�[W�n��\16\ e��\a�b\'\f+�\1eH�%���L��3Ȭ�NC+RW��\nb��L�+�`\0\0\0\ f\ e\1f�!�MWp�᭭gk�&�4q��SG\1ee:O�-]1�Iw�#27������7�Q��%!�T2�C���\1f\ e0Ҵ>�\aMY�V8�#ch�V(��vv��\11����TN-��\1c\1c����\14~=I[��W�M5\7f\ e㿀�\1crn�u\ 5��e0�[\1d�Ν�\1d��X�$��!\ 4D��B�\ f��;0z>S%&Fxʗ1+cRղ�GB���)�r�]/q\fÏz\vύ����9��U/%,��/S�\1crC��j(�\\�d��$D���eQ\1c�ȵ��}B��j\15�+�n-�-��ܧem����3���뷐� \0\ 1�����q65�YRGX���:a:�\\�\'{V(�C�Ӫ���\Z����.�7p����\18�4�2��cZQ\ fz���_j6��{s}�A�Rrҋ������ӗx�\ 1^_է�$�R�#�N��+j}�\Z4hQ>�[����E�\0���\f�\0\0\0\0\ 1��\1dR�t�wؾ~�{�|�\0��0���        ��\"8\"M��/\ f�j��\19��9E��-�`អ\r-�[�,�&��oo��L�\13�)&��\r1E���E)<���q�d�\16ᛨYE���\ 1\19p�i�G#�Z��\ f��/{�ۢ99�1��$\11%,֪q�H\"˨T�q���R����\19\0\09_Ʀ]u\ f�1�\"@�Z��徕�M�ͿS#�F��k-��\'c�^�����bg\aYшk�Rw�_��$ؿ     E�\fϚѹ���c/nA+����\11=�b/\n#܋a=@\0\0\0\0\0\ 1�_��\0���uq�+p��Rb��if�H�F�^\ fʱ����\e\ 3�j}٩�#55�S����)�l\ 5�\"yP���������!�\0\ 1ͮ/1s�p���q4����\a?�\ 2۩�4�^��_2���De�\13\"�\1c?�k�͛��F�ԠGZa���uB�^w-��\fB�G���:l_��zK�\0\0\0\0\0\0\ 4\ 1�AX�/���\11����,�zO���n�{��i���l��O���q?\14~������\0�]]Ľ�Ҟ��        �B���?�(��\\levo\10\'��߮�l�������}�ؙG82����{��䏯��O]����������\e���\0\0\0\0\0\0D��~4�\'���!���FQ��{sW\\D�͒7-�s���^�{y�m����\ 3\ 68�\1f�J�(?�$m\15h{E\17v\'6����w⍪G/�Df[m�c��8�\0��ǿ�n\10Z@�Դ�o^ٯ(9��ܙ\Z��|�]����TG���fFC��\0\0\0\0\0\08s�|kBQś��ޭ*\eA�Z����\7f�:3�N�ߦ��e鷡$�w\18\0\0z*R�z����\ f����\Z���gW\r�S\f�\Z�U�kE��\16�ks����Cÿ���h[\1f�M��߀\0\0\0\0\0\0��׎JO��\ZO;�\'�0�g\v���yn\1cwd��OM�\f���n\0\0\0\ftQ*E�ב�\7f\7f��ˡ\f�\0\0\0\0\0\0\18\15-hթJ�Z4N��[S=�#2�#��[}O�g�\0\0\0\0\0\0\0\0\0\0\0\ f��',4,0,'','','',''),(65,6,17,'75859b10d79196fc','15048d33e71544a25a6dd13bb081c78f','2017-09-07 09:13:05','2017-09-07 09:13:05','','','Contact Photos','15048d33e71544a25a6dd13bb081c78f-4.jpg?ts=1504775545','image/jpeg',80,80,2703,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0P\0P\ 1\ 1\11\0��\0\1f\0\ 1\0\ 1\ 4\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\ 1 \n\v\ 2\ 4\a\ 3\ 5\ 6��\04\10\0\0\ 6\ 1\ 3\ 1\ 6\ 6\0\ 5\ 5\0\0\0\0\0\ 1\ 2\ 3\ 4\ 5\ 6\a\0\b\11  \12\13\14!1Q\n\15\16\"Aq\17#���3Sa����\0\b\ 1\ 1\0\0?\0��M5A\10\ fQ\0��j�����ǯ<��\1e��_�T\ 4\a�@\7fZ��i����\149\11\ 3��\7f׾�*��)��{ڥ����J�Y�[6h��e�\v�,u��$�\1c1����t�KvD3%�\7f��g\11[I�\17\16\15_:\15kƵ�J�u��B��7��\'vX3i�Rj:�G���*�e�\0\ 6��<C\19S��ש\14�kGH8�Z���!�ܶ;\18HiQM�\f�pN\13���\1e��Z��$�b�\b\1d������~� ��]��vG�X��e�\0P̚�k\12�C�\18G3H�޽��O�/l��x\0�\a���\ e?>a�\a�M|�i������:{Lٞ�w,dRt� aK�B�f����\f\ 4\ 3�5���Ô��\ 25��\ 2\ 2b�%\ 1\ 1\10֡��\eZ�uZꅊqNL�����\192Õ�\ 5oY↚}L�VB�\0��\15�0���ւ7s\0�D�{I��N\n_�J;�)Tʮ>��)���UR�U���V�PlЏ����`�lD4S\16�M�8��\r�fѲ\ 4*H��i�P)CP���O\f3�{\ 5�a��%y��V�\ e)��yn��Yi\16E�\ 23�I�\19\ 6�Vh��\a��;  8�\ 6ݴʛG]��5�b��=I~\1f}��vݐr��(��C����/n��X�H�r\1e\ eN*ߎ�Y\1c�=\1eZ�Q�ed���\ 4{��\\�����n��X�^¹Z���\ e2�T\aƓ�e�%W\"�\1f��\"��w\18FV\be�L�8$���@\17K�aM`9\ 4G�zv�i�e���s���^�q�Y���9���9(h��9�H��F�`�kd�)���\ 6��I$B��\1dr�\n\"n5�����}.��   9�l2�m\1f&\12�\n�b����\14+$V�`\ 3\n�\0++�\1c\13��9W�\ 4�0�h�q�q�\1c\a\1f�����\11\ 4G�\0G��Z�~.      ��׬c��\ 1\ 4���8\e\a�o\r�\12�O\17��5�b61T\Z\15EW�%B�NnTJU\172gfܤ�\b�lu遅-�r�߲�\e}M�{�2۞,�[�:�\0^2�֫\1e��A��DH.�a<��h_/���4�]W�R|��\'\b�ỴN��\ e\13*�.��\14�Ed�����\18�Q3�C��S\0�D\aYV�vÑ>\e~�X\7f{\18��\'?�\1c��,\135C�\ 2f�K�W�2�\ 5}ߝ$���+�O��\1f0T�\'cX����X��l���f��q�\v0�#\v�8�U(+�*�\18e\f�r�a`��[�J�\12p���rw휢���\ 1V��E�+$�z�!�\ 5�]�=�j33\18W\ fۮUȇb����7f\fj,�\13���׳>�NPH�G,y�\18\10�Q�\r�\v���u\11\1e�:��%Ü�hƙi����\ 1\'�l;��\"WI܅4�R+E\7f��n��Q�*?&a%:��6�\rU�M-��(\14\0\08\0�\ e?�\\��^\ 5���ᝠ�+�����>����*�\16)��1�P�P���a�$\ 2�b�:�V�p0�\b��97M��LN�!a-��\ f�oX�\0���y�L���\ f\17\1dY#*\15���\15_n�T~\7f\13%{����]NI${L�quI7i�0�\ 6��\1cq�iw\e\'M-��\Z�^���<��\19�]/)\10�u�\vNxU    �m���\ 3X{Ԭ�F\12Y�c(��Vk0M\10l��Y�l��Df]\16�O�u:�\ e�Y��R�0�+�Z�Z!�\rv�\ 3\16�[F���G&�(��-�D\e4j�h��\nR\10\05�۾ۍSw{a�\ee�;q\1dZ�\18��_ʴD�\1d��d�r�6�ͺ�T�=�J\v)�H(r&��   &���\1c\a\10��n�k�\ 3��      �\7f\fbXBٓ��\19GmY>�\vE�l�\'�x�|�5\12�\"F�r�O���&��\f�y%^\Zn�(�:ԓH\15�*�1{@b���\ 1\ f^\ 3��\7f\1e�\\k�!令#�\b�\0���#�X�3]Rz�l��\f��\0��    �#�\r�D1t�[gfZB*�Q���\"q*�у�j�j$�V�ZbE\13\ 3��\f�YP\10Q\15�8��~1�$\14\fs8�Xh���FD�G7M�|ls\ 6��ѓ\ 6-QI�6mRI�V�$�       �$�P�}4��.����!�^�5\n�⾪���\r��\ ff�YT�}ګEM�|�U\13\ 3\bs�c\13�=�\ eG�m������K;Lcw��O�0Q�=�{h��c):Ě       \ 1c\ 2r�\\����\1e���n\ f귺��{�i��U���_7�\1d&��L��7)ӷ~\r�K�\1d���^f�X�,%_q8Z�)\16��+���\16�_��#�v,��d���S�ѓդ�\e�y��y���\r�\17�?�\ f�^Rv��Y��vS\17\10�b�L�>����E�e\f^\ 1\17/q:\ eV!\a�Y���d7\17��M4�V }��+�J��ض��\vWH\v�K*��$ y*���Q����1J��#��M\ 3\1c�P��H�`!C��\a�~�T��7<\b��\1e��_�]CL\7f�~I����o\ fݒ���U��\14\0\15uE������}�       �V֘~��\f �$\ 2R�����M4�P�C\19�����/\ ea3-�dLn.���\ 4�c��dۛώЌb�\148�0�b鮸4n\ eN�WJ��uW\ 4�ި�c�Q\ 4��\1d\11\13�rd�\" ��TJ\0*\18G���i���͸�+�E1vF�hG\1d�敲�MU\10\ 3\7f�uQIC\0qɓ/!�\ 3�ֿ��',5,0,'','','',''),(66,6,17,'75859b10d79196fc','15048d33e71544a25a6dd13bb081c78f','2017-09-07 09:13:05','2017-09-07 09:13:05','','','Contact Photos','15048d33e71544a25a6dd13bb081c78f-4.jpg?ts=1504775545','image/jpeg',48,48,1755,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\00\00\ 1\ 1\11\0��\0\e\0\0\ 2\ 2\ 3\ 1\0\0\0\0\0\0\0\0\0\0\0\b  \0\ 6\ 1\ 4\a\n��\0.\10\0\ 1\ 4\ 2\ 1\ 3\ 3\ 3\ 3\ 4\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0      \11\12\13\14\n\16!\151A\"#$23Qa��\0\b\ 1\ 1\0\0?\0���3�c\19�s�\18ǜ�?�1���{�p\ fK����]�_�\1f�r��\0BsK�]�n\v4d�\7f\ 6fZ%\ 2ӣ�\v³+\1e�r0�m�&��i��-��<u��\v`��Xh�K\ 2ɤU-y�͎\roc��e�ښ�B$���.�>jA�g>���%hM����%�C\1c¿p��O!����6���x�i�e�5�\ 5��H�)LW�l�e����!k��:\14�T���h\12�q\ f2ڰ���NݴM\15�j�6�\10A��7�?qY��ˌ�g�Z�[D�En�\17&Z]-�mnB��a!�[v\\�h��2Ba\ 3RI?�\16��\1f�<~/�\17\ay=d�G����\e��3�JM�[ݨ��\10`   ��ԭy���N�\ 5�\0ɚȥ֐Y�ʈ���O`=�y��|\vҼ�&�-F�m\12f��+`<�\11q{\ 2�*En՘g\b���$��Y��`��P��#\ 6I%�;�<�z�+��<\e��#ۣ��g��dl9�\10n��&���\7fek�ٵ���)X�C\16�dz�D���\ 1�0�N%HiI�m���R/hvߠ��)5>B�~N��M�X�}��\']�؜�\Zlcޒ�\12Z��FQ.6��?\11`       �/����>�>J[X㦣�`�3���l8m%X<�=�j�2.�L2�1\"�\10���D�7�0�Ĉ2�+�I1��Kw����n^\16i>%T%�cƺ�x�]�l�_�/�C\1e��X�\11JR�\ 6B�y��\ 5Ÿ�Q-�+μ�+ug�\\�y�J7\1et���{2U0�\1dOH��m�YF]q�Z�a\12�$f\13�d�B\a����2�F<��c.:�e`��Z�_���|������)�n|\7f\ e��KQi\Z�WK�\12�y��#Y,\v6��6\18\17c&,\10S�MP�Δ�3\14ę��;F�imE�M�I�MiF��܎L��N�W����J!O�\12Vi\b��2zA\n(�$�G�#\n%�{�^s*]���p��\\�2n�Et��ܬ�fݏ�Z\Z�m\0�:\1c��2%�.�؁D�3)�[F�\ 5�����a\f\1d��\1c�],2   ]�ˆ�ۮ��\v�Z�ϯ*kj4=���N1�����-c��;l�:\ 1\ 1@�Ϋ+�������O�WW��!א^EJGNFG�Ü$�L�B�FI\0CE�x\ 6��C42�Z�$R�u��}����Z\1cB��c=/>�z����\1d��XK�3x�q�,�8�+�\1c��-�#��?*\ZF���\ 5��V)/%xR3�e�\ 60�\b(b0�\8a;#\f;\bKl��\r%�Ye�c\bCM6���\'\18JP�%8�1��z�Wm�J��e�Z⁜�[�&+\16\18i!�.>V\ ez8��X�E}+d�\r\0�\ 6!�P��eաi�U�t\12v��O�;}qj�e0åi��\15?~A�\1d-\11��٘H �q�-�b>\f\18�\Z�+9�#7�x�1�\Z�\Z�e�\ 1��=`�t,���\n�\0\"\nn:x%zs�Ϥ����?�z|��գ\18�c���u��S?�\7f���K��R+1Uh�a���hTc\1e�%\ 4\16A��1�>?�B�\0����',6,0,'','','',''),(67,5,18,'75859b10d792d9a0','d74f209bfcd190b3864fa678e5068a16','2017-09-07 09:16:08','2017-09-07 09:16:08','','','Contact Photos','6.jpg','image/jpeg',175,175,5486,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0�\0�\ 1\ 1\11\0��\0\1e\0\ 1\0\ 2\ 3\0\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\n\v\ 4\b    \ 2\ 3\a\ 5\ 6��\0B\10\0\0\ 5\ 3\ 2\ 3\ 5\ 5\ 3      \a\ 5\0\0\0\0\0\ 1\ 2\ 5\ 6\ 3\ 4\a\b\11   \12!\n\13\151A\14\16\"Q�aq�\17%23R����\18#$&5B�Es�����\0\b\ 1\ 1\0\0?\0��\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն����X\Zg���p|L�sN��\1e�}�Y%ZR|�\11(�J*I&+�rJ\18#�yI)%l�Z�,:��i�(��ϥ�)���J�����*hχ\18o��>$���Œd\v\"5\16ɐ\14b��o���9���/צF�3�qN��;뤂��������9�;߬�Kka0���Z��\19�$�Բ��Ob3�g\ e�Wqg�U�l�W�\0ĺQ��\17����<;\1eJ;\ 4��剽ŒTh܋}��h�����>�#���\10�\0\0\0\0\0\0\0\ 1\15>=]�Xw\ e\eg-8i��9�u����N�梿���ݱ^\ e�-l$$��5Rt�\"�����e�)�\1d:G\e��+3Ϛ�ͺ���,���-d�5�ܾ��n~5\7fSeW$76sS$�4SME��\13\ 2\11\1d����\"\"O.����_��)Y\8e1�\r�X!M\nm��y�Kl�R\a�#�k�M&�^�\12o\13\19\ 2|M\11L}Ij���O��D>��OJ��\Z\1c\1c�m�\ 2\ e�i��v2��r�VӍB�l[�rd��D�;\13k�2��dZ���\ 28�(��$���h:�״y}\7f\ 2\1e`\0\0\0\0\0\0\08�ƣ�37\f}\fNsſ�]�\19E�c\f\ 3\1cpJL�򄩵�\9c\11U<�\a�Y)�O�&�$.�!E�Q\a%��N�C�SL�8�d��#z��9�㔚g,�ܮ��G w�7GggU)F�]Es�I-��D\12S�:{-��\1ce�|jw\14�K\vP���䗴[�<�PU�\ 4\ e&�Jw���iU4�L��\Zno5i\Z�j��\18�ud�:d.-�n��\ f=9�tр��Z!�kj�/�Z��rL�׹S��d�]�Wg�\Z��M(R���%�#\15劰Q���\18\17�N��j���ERI\7f�3-���_=�\7f#\10���=��\ e���q\'�u\7f\ 2c���L\17-e�ƙL\17#��F�t�����G�����\ 4䓓�B��eEk2=\13\1d��\7f�ZZ�\aC���������3\ 3\e���xdRh�#\'�5ldE(�nF�ԝ�K/��\17\r\ e�9c���^QG���4�&\18N\7fjP��\ e�#=��\16:�)<2�\17ȧ�܆M\Z�3J���\"z�N�{�n���]H�\0�!�\0\0\0\0\0\ 1X\1fl3W\ e9\7f_�.5�W���_\177����v��츖��㡥%�k()��3Q�%%MJ#�\"\ 6,��|h\15\10�B{�i�\ 5\13������c+��r�\16�%��ɥ�Mj5���Z��V#Isӆ��$fK%M\b\0j�t��5s���\7f�n6���e8kU��\13ݑ$�܉5*6<F\1d�R\'�)\ 3\n�^�Hc�D�2�%�Ys�F�g�W�\1e\14��x�N���a�ջ��O�\15\16Ƃ�c��mn��!3\\|�&      u:fIV�r�\15:rjh.p�甴���9�\fM\1e��H���>���듲pg�BҲ�:t�[I줩��*���\17¤�V�pS�\18◣(�d�Bŗ4B.� �\18su=�\19\v=�4�ᢙ�K\ eAeZ$qu\16餣}�\19�Fԣ��\0\0\0\0\0\nY��No�\a\16�!\ f\15N��j{\"F-zy�c�?s\Z\f��I3�#̼˧Q�\16�����\r��k\\]���6��Pꫫ�Ur$��]MIN�^|��$�^u�,\12ݦ=0��O,Vt,�p�\1d��]�I(���F\Z�\1d�̔�����\ e��Q\19\12��bJID�l�\0\b����dӪ>\15�o!Sg�[$i*��<�\\Qng|Q�u��,�,�\ 6tu�-<�#�\rbQ\Z�&��v����\13\e�c�\ 5\1d��٧��u�-����\'��\1f�B�b);C�3����ha��Kr\"ۘ�r-���\0\0\0\0\0\ 1K�\1d\7fy�8�q\ 2a��^���\191�[\11�؍�$��#5�K�\17�,JL���Ȍ��a��L��s�&�[\1c\14d�\7f�1\r�צ�K����\19�ɧ\7f��=��\0\ 3Dx��a�Ó_Ud�ǁ\16�5%�~��<��&\ 4��ܾ^�G�⏚��_�K\7f�ω�f\\O�2ث�����=�t��2�7\f��\10�36��FffJw���&M\ 4^DDV��\0\0\0\0\0���A��<g�|K�\ 6v�����60�C���+}�P�\7f\f\f�%��\f\12�>�����-G�\1f��M�:]\16��\Z�N/&�ɛ����3:Rv�_��?]����%0�<Y���^��k(㸆E�\\ۙ*��_\19k|l�[��U7T�K}�$d�̈���\0\"�ګ�#\ e��g�0CS�*\19�YN)��vk{����\1e�9�=e�:�IB�\15,~\17\ 2W9\16ʛ1�Nƒ�Z�%UYR�Fu==72�����>��^�w\fg�\ah��F˭\15�3橯c�\16`��j�G�f=h�R�\1c     Ȫn������G)#I�\15&e\14��6�96\0\0\0\0\0\0�\18\1e\1cL4/���6v91��!�\r�)�,�~*�Rg#UR�ij�\"��rN������P�kJ;�m�\ e>�b���\ed&\17X��\ e��\18�Fޭ�b�\e�48�K�K�T\\�h^�Q̶#I\Z�hWe+_ͺ���ɧI;�\n�\7fF\17��.V\17w)7\a|<�f�d�O�̚Xi��\1e�>�\10�U-\7f\14�R��/��\7f1�\ 3���.�t��2fs�n��\ 4\10i\16E��u?b�D�V��2#�Ca��u3��3\14�q2�\15���j�w���\7fZ�����qN?;�^��X���R#\ 4g3�Dj�֣��&����\1f�\nI*�)\14�;-�\11����x�j�7A�\1e�%Gi��\13ŢV�8��\1cTN�BV�ER��\14e�*��������W�ZMQ�i;\19iR*h��-����\0�>�$\0\0\0\0\0\a�!}���\bLv�x(Ʋ�9�<K��ig\1c˘�(��E��m\15dߕ1�L��>3O\"\no�\18H�P��Q\15iJU�;G�\13\\/��e>\19����o\eQ�{hnW�\19^\0�S���8��{�\"Λ\16��JK\\�*��G\18��1)|��\'s6\ f��\1d@��M���o+@�\ 6:�e\buw;uY�*9���r�O\13l4��YL��Բ3Q#�\"5\19�E}�\ 4q�SS��G\ 5�HRb]{\1f~&�B\n�q@�wg\1ev�Q\ag_��=\16�rcW6�EP�j\"؊��v�ׇv�{\13:׎�V\r��}L��dD[u��_^�\v\7f?!y֑p<[L�^�Z}�ӵ�\e���\ 5\ 2k;[cJ.ɖ6���鲔��$/D��Y[�kwR��\12D���\0\0\0\0\ 1�.n���\17Nn��v\rv\16�sv�upVV6�;o̥��\11\11\11��\1fM���\'\18�x��8x�-��\1fa��\16���ES������l13K�\12\7f\v�Yx%���rJ��rR�Y�5B$�e�=4�_��ć�&��N\Z_�����k�\1c��H��Q;wdW/+�^&�����)5\13���i\17�(��\11�[���xr�I�W�+�]}f,�\n��\13^G��,s���\13���J\'8ӫ�\13\ 4�zL+Z�%l����$�Y�(�:�\19��]��6��\0e�i%v��]�J�\16d{o�?�$��{�;�SؔI-�[l;�\16�Ǣ��\18�e�Ŏ3\17l�b`cn��F�v6{\nm\f퍍��JZ�������\\��dJ2�\1fڀ��\e\1d#��o�\ 6�p\ 4M�Nӷ�w��8m�2��i�$��d��m�$E��jD�\1c�M�r\"�b�v\aKȴ���4��\18��s���܈�\Z��S�E�NU\'����|�{u��\ 5�H�n�\18�0B\1c��a�G\1c�\'�w\e~�x�-���5\1e�:�\1d���\11�����@\0\0\0\0|�(�\\\7f����-e�s$\v\1cc�\'        4�W\"�+\16H�\ 3Sw��:�\19�%�25�Ȉ׶ܜ�3B�\r���W\\e3���4hё\19��/�Z�q�&����%�-¢��$ʄʺiS2�g�@      +��m��RӭV��NQ\\\17�5�[B챌���h�x�%kk9\ 5�����1&\ 5rQ%Hj��<S����fJ�o�iB�H��3���IY��*Eґ\17\7fO����c$\0\0c��\0w��\15����:9\ 1�\"d=y�#\1e_M�3wg\19�uӬ1�N\12ؔ����.��6���ar:�7�D\12?��\"�U�Ԉ\15Xmn�-��f[��>�p�\ e\e�՗��h����tזf�\14��,��\1c��a��\"�\11�ڪ\14A�@d�&�b\n4�cI+\0-��R�V�^��\7f��_g��G�<\0\0\0\0Wc����3�M\1c214��\bV9&\19�n���)\1c�мs\1ec73MB/\aǬD�<�%eP�J\1fX���������\ 1���G�\11�Z��!m_U���X:�,\1fm��0�\10y#𖦳U2SD�\"�\1d9\f�I^��)�#�\r2��]�\0\0\0<;�~�\ ebj��\ f\rmk;^I5\19��]2�8�)�~�j�2K�!\19��d\fd�\17����FI)\f���]�\1f_���8q�����:j�:�ű\e\eEڱF����n`���=Z�qmL����}��$����J��J�Zi��w\1d\ 5h�tK�->�)�����t��%\Z�y&��\b\"$�r\160~Ʊك��)23�T��[\Z����:\15�L�L��*�{�f\1c{�^|m|D5��Wt�R�y)d��z�X�\1c.�QD��&G\19\"$����#�Y\16�T/�R���B��rMŵź�\e�쭶�}�>�{���v�\1f�\0\0>_��;.&ƹ\v*H�\15\18�6�L\'R\v�$�j�\12huzuQ\1e�vCQ���EҦ�\12:y}�\1dƚ�U�,kJ!�Y>}��Fк/no��3�NZQw35\19\1c�r�\12�+����d�JRDv�е�mO��F�\n\'�k~�|�H��3�\ 38\0\0\0\0\0c�GT��/]�/����_?��F\17�9�2\11�G\ 4I�\11���MZ��1�\'(����l\1c3�A��KuŒ��RM��4��w�$ԙ!�(��RH�\'���~.3,���3u\v(�s�@#.\12m1H�wK[���:��v\etG\'9&2�D�$���N0�\ 4Yu\n�n4�:J_���# \0\a+��ˮ��&8�H\Z�W���ҾSi����dr��؍e��d�}K���\11{�L��:1\rqjN���ě\17�(����Z735<Le��%u2R�\"\'��E�D{�l\'�\0\0\0\0\0\0=\v�W��1Wή1�n\ZݪLV��,��\15�ګ��V0��^�`q-O�52df��Jy|\18�e9\r���O*\15\10\19\1f���$=�\09���.s�\18\Z�\0�&�V�� ��[u;�\vۺK�_\13Q(��dȽG\ f�\Z�3f�k��u(\11֘j�\0\']P�W��s<\ 3\10����\0u\ e\17�{n���\0\0\0\0\0\0\ 1\0~�V-K�h�eb*�K \1e�������dj��)���{t�O�\1f���$=�\05�Wq/\7f4��hBhи��O��.v�\e\19]��    ����+�~i?�q\ f�{\13(�\ 6\\1\7f\1d\ f|r~q�\\����I�?s>��T��_�s��\0\0\0\0\0\0\b��Ɣd�~�\ 4?T�\0��2}��nj눝\19�F��\7f��\v��o1-�\7f���y��\19\ 3�    ]�\a�č��\ fh�����v�9n�Q�H��Ȍ�m��{��\1f�>\18��m�\vH\11:�����5�\a;�{�#RT��K��y~���2����v�\0\0\0\0\0\0\a\ eu�hJ8��=�U�Ch<�^;������F\7f     �[���L�6�$�\ e�\0\0\ fEJ]�]�z\7f��2��ƣ�s\19��zT�8ƭ�{\Z�x������*P���}��\vc�鷐��\0\0\0\0\0\0\Z\7f���I�7�I�wD�\0&\12\f�q���-Î�>�鿡���\r�\0\0\ 1��%H���?�����yt!�\0\0\0\0\0\0\ 3\ 2��\Z�)V�F�ַ�jg��f^D{�\vo���x\0\0\0\0\0\0\0\0\0\0\0\0��',4,0,'','','',''),(68,5,18,'75859b10d792d9a0','d74f209bfcd190b3864fa678e5068a16','2017-09-07 09:16:08','2017-09-07 09:16:08','','','Contact Photos','6.jpg','image/jpeg',80,80,2703,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0P\0P\ 1\ 1\11\0��\0\1f\0\ 1\0\ 1\ 4\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\ 1    \n\v\ 2\ 4\a\ 3\ 5\ 6��\04\10\0\0\ 6\ 1\ 3\ 1\ 6\ 6\0\ 5\ 5\0\0\0\0\0\ 1\ 2\ 3\ 4\ 5\ 6\a\0\b\11  \12\13\14!1Q\n\15\16\"Aq\17#���3Sa����\0\b\ 1\ 1\0\0?\0��M5A\10\ fQ\0��j�����ǯ<��\1e��_�T\ 4\a�@\7fZ��i����\149\11\ 3��\7f׾�*��)��{ڥ����J�Y�[6h��e�\v�,u��$�\1c1����t�KvD3%�\7f��g\11[I�\17\16\15_:\15kƵ�J�u��B��7��\'vX3i�Rj:�G���*�e�\0\ 6��<C\19S��ש\14�kGH8�Z���!�ܶ;\18HiQM�\f�pN\13���\1e��Z��$�b�\b\1d������~� ��]��vG�X��e�\0P̚�k\12�C�\18G3H�޽��O�/l��x\0�\a���\ e?>a�\a�M|�i������:{Kٞ�w,dRt� aK�B�f����\f\ 5}��z�a�o�\1f-fr�����@@D5�\7f\ 6֮\1dV��b�S�&��-�\ 6L��m�[�x���S!�����\ 5d�\"ἵ����1�/��n}����\12��U2�����e&�\15T��`a�U��\e4#�``�!\e\11\r\14ũ\13l�>5�t\19�l�\n�(\"�i�\nP�)�\'��\f\1e�r�c-�^j�\15���e�\1e[��\16ZE�t\0���l�A�-��\'!\ 1�~��N.A�m2���p�\rjX��OR_��\7f�]�d\1c�r�8�\10�$+�\'\v۬�<m�1܇������G/OG��Td\19Y+s��\1e黗-�쭤��}\16;W��V��lC��U\ 1���b�Uȴ��)H����\11��\19e�!�\ 4\16/�\ 5��SX\ eA\1f-zv�i�e���s���^�q�Y���9���9(h��9�H��F�`�kd�)���\ 6��I$B��\1dr�\n\"n5�����}.��  9�l2�m\1f&\12�\n�b����\14+$V�`\ 3\n�\0++�\1c\13��9W�\ 4�0�h�q�q�\1c\a\1f�����\11\ 4G�\0G��Z�>.      ��Ӭ[��\ 1\ 4���8\e\a�o\rb\12�O\17��5�b61T\Z�EW�%B�NnTJS�d�͸\13�\"a�ۦ\ 6\14��˧~��m�7\r���nx��nd��x�\eZ�z�1\ 6��\11 ���\ f��|�#;��Mu_5I�7,�\"����;w\b8L���\v\14SY\15�7ڪJ�c\11D��\ eS        L\ 2Q\10\1de[��\ eD�m��a��c�ܜ��r\16L�L�\ f\b        ���/m_�˘\15�~t�F�P��?��|�R0��c[�\17�w\1dco\19�W\ f\ 6u�4,Ê�.8�%T����La�3\19�兂21o�*�I�B�e�߶r�\ e�8\ 5Z;A\17H��q먆�\17�v��;�61���a\\?n�W\"\1d��\ 6J�ݘ1���\ 4N��+^��%9A\"�\1c��tb(C�GX7|.{\13m�Gt{�ꧼ�\ es\r�\Ze�jR��\ 4�5��\16|�]\'r\14�1H�\15\1fŻ��F\f������gl�45V%4�/\14�P\0\0�\ 3�8�\0�r�Mx\16�73�v���ۃ��(�\1e+�0�LX�ߘ�QC\19B����`�\v��\14��[���0\"�d��6j�1:������>��c�\ 33c��2:sH>p\\ud��V.���U}��Q��L��>�C�u9$��2���$ݦ�\94\e��q�i��l�4���j5z��h���gQt��C���-9�T\']�\16�l\ra�R�5\18IgM��s)Y��4A��5fѳS�\11�tZ%?\19���:\ 5f\ 2�J�ð�Ujuh�P5��\fZ\ 5m\e\ f\v\11\1c�,����!\10lѪ)��d)H@\0׏n�n5M��;����uk8bێ9\7f*�\128w\b��\1d�8�\v6�\18��{^�\16Sl�P�MgL\12ISwg8\ e!\1f\ e����\a9�\13��\0P\18İ��\'e\ 42�ڲ}�\16����O�����j%�D�`�V����M��\19f�J�4�jQ�}�\16�N3�*�1{@b���\ 1\ f^\ 3��\7f\1e�\\k�!令#�\b�\0���#�X�3]Rz�l��\f��\0��        �#�\r�D1t�[gfZB*�Q���\"q*�у�j�j$�V�ZbE\13\ 3��\f�YP\10Q\15�8��~1�$\14\fs8�Xh���FD�G7M�|ls\ 6��ѓ\ 6-QI�6mRI�V�$�       �$�P�}4��.����!�^�5\n�⾪���\r��\ ff�YT�}ګEM�|�U\13\ 3\bs�c\13�=�\ eG�m������K;Lcw��O�0Q�=�{h��c):Ě       \ 1c\ 2r�\\����\1e���n\ f귺��{�i��U���_7�\1d&��L��7)ӷ~\r�K�\1d���^f�X�,%_q8Z�)\16��+���\16�_��#�v,��d���S�ѓդ�\e�y��y���\r�\17�?�\ f�^Rv��Y��vS\17\10�b�L�>����E�e\f^\ 1\17/q:\ eV!\a�Y���d7\17��M4�V }��+�J��ض��\vWH\v�K*��$ y*���Q����1J��#��M\ 3\1c�P��H�`!C��\a�~�T��7<\b��\1e��_�]CL\7f�~I����o\ fݒ���U��\14\0\15uE������}�       �V֘~��\f �$\ 2R�����M4�P�C\19�����/\ ea3-�dLn.���\ 4�c��dۛώЌb�\148�0�b鮸4n\ eN�WJ��uW\ 4�ި�c�Q\ 4��\1d\11\13�rd�\" ��TJ\0*\18G���i���͸�+�E1vF�hG\1d�敲�MU\10\ 3\7f�uQIC\0qɓ/!�\ 3�ֿ��',5,0,'','','',''),(69,5,18,'75859b10d792d9a0','d74f209bfcd190b3864fa678e5068a16','2017-09-07 09:16:09','2017-09-07 09:16:09','','','Contact Photos','6.jpg','image/jpeg',48,48,1755,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\00\00\ 1\ 1\11\0��\0\e\0\0\ 2\ 2\ 3\ 1\0\0\0\0\0\0\0\0\0\0\0\b \0\ 6\ 1\ 4\a\n��\0.\10\0\ 1\ 4\ 2\ 1\ 3\ 3\ 3\ 3\ 4\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0      \11\12\13\14\n\16!\151A\"#$23Qa��\0\b\ 1\ 1\0\0?\0���3�c\19�s�\18ǜ�?�1���{�p\ fK����]�_�\1f�r��\0BsK�]�n\v4d�\7f\ 6fZ%\ 2ӣ�\v³+\1e�r0�m�&��i��-��<u��\v`��Xh�K\ 2ɤU-y�͎\roc��e�ښ�B$���.�>jA�g>���%hM����%�C\1c¿p��O!����6���x�i�e�5�\ 5��H�)LW�l�e����!k��:\14�T���h\12�q\ f2ڰ���NݴM\15�j�6�\10A��7�?qY��ˌ�g�Z�[D�En�\17&Z]-�mnB��a!�[v\\�h��2Ba\ 3RI?�\16��\1f�<~/�\17\ay=d�G����\e��3�JM�[ݨ��\10`   ��ԭy���N�\ 5�\0ɚȥ֐Y�ʈ���O`=�y��|\vҼ�&�-F�m\12f��+`<�\11q{\ 2�*En՘g\b���$��Y��`��P��#\ 6I%�;�<�z�+��<\e��#ۣ��g��dl9�\10n��&���\7fek�ٵ���)X�C\16�dz�D���\ 1�0�N%HiI�m���R/hvߠ��)5>B�~N��M�X�}��\']�؜�\Zlcޒ�\12Z��FQ.6��?\11`       �/����>�>I�X㞣�`�3���lHm%X8�=�j�2.�K2�1$�\10�����7�\ e\ 5�2�)�I1��Cw����n^\16i>%T%�cƺ�x�]�l�_�/�C\1e��X�\11JR�\ 6B�y��\ 5Ÿ�Q-�+μ�+ug�\\�y�J7\1et���{2U0�\1dOH��m�YF]q�Z�a\12�$f\13�d�B\a����2�F<��c.:�e`��Z�_���|������%�n|\7f\ e��KQi\Z�WK�\12�y��#X0\v6��6\18\17�&,\10S�MP��\14�;\14ę��;F�imE�M�I�MiF��܎L��N�W����J!O�\12Vi\b��2zA\n(�$�G�#\n%�{�^s*]���p��\\�2n�Et��ܬ�fݏ�Z\Z�m\0�:\1c��2%�.�؁D�3)�[F�\ 5�����a\f\1d��\1c�],2  ]�ˆ�ۮ��\v�Z�ϯ*kj4=���N1�����-c��;l�:\ 1\ 1@�Ϋ+�������O�WW��!א^EJGNFG�Ü$�L�B�FI\0CE�x\ 6��C42�Z�$R�u��}����Z\1cB��c=/>�z����\1d��XK�3x�q�,�8�+�\1c��-�#��?*\ZF���\ 5��V)/%xR3�e�\ 60�\b(b0�\8a;#\f;\bKl��\r%�Ye�c\bCM6���\'\18JP�%8�1��z�Wm�J��e�Z⁜�[�&+\16\18i!�.>V\ ez8��X�E}+d�\r\0�\ 6!�P��eաi�U�t\12v��O�;}qj�e0åi��\15?~A�\1d-\11��٘H �q�-�b>\f\18�\Z�+9�#7�x�1�\Z�\Z�e�\ 1��=`�t,���\n�\0\"\nn:x%zs�Ϥ����?�z|��գ\18�c���u��S?�\7f���K��R+1Uh�a���hTc\1e�%\ 4\16A��1�>?�B�\0����',6,0,'','','',''),(70,0,19,'75859b10e58a60ae','2b902d193517f74d2c14e163cff8c10e','2017-09-07 09:16:08','2017-09-07 09:16:08','','','Contact Photos','6.jpg','image/jpeg',175,175,5486,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0�\0�\ 1\ 1\11\0��\0\1e\0\ 1\0\ 2\ 3\0\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\n\v\ 4\b    \ 2\ 3\a\ 5\ 6��\0B\10\0\0\ 5\ 3\ 2\ 3\ 5\ 5\ 3      \a\ 5\0\0\0\0\0\ 1\ 2\ 5\ 6\ 3\ 4\a\b\11   \12!\n\13\151A\14\16\"Q�aq�\17%23R����\18#$&5B�Es�����\0\b\ 1\ 1\0\0?\0��\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն����X\Zg���p|L�sN��\1e�}�Y%ZR|�\11(�J*I&+�rJ\18#�yI)%l�Z�,:��i�(��ϥ�)���J�����*hχ\18o��>$���Œd\v\"5\16ɐ\14b��o���9���/צF�3�qN��;뤂��������9�;߬�Kka0���Z��\19�$�Բ��Ob3�g\ e�Wqg�U�l�W�\0ĺQ��\17����<;\1eJ;\ 4��剽ŒTh܋}��h�����>�#���\10�\0\0\0\0\0\0\0\ 1\15>=]�Xw\ e\eg-8i��9�u����N�梿���ݱ^\ e�-l$$��5Rt�\"�����e�)�\1d:G\e��+3Ϛ�ͺ���,���-d�5�ܾ��n~5\7fSeW$76sS$�4SME��\13\ 2\11\1d����\"\"O.����_��)Y\8e1�\r�X!M\nm��y�Kl�R\a�#�k�M&�^�\12o\13\19\ 2|M\11L}Ij���O��D>��OJ��\Z\1c\1c�m�\ 2\ e�i��v2��r�VӍB�l[�rd��D�;\13k�2��dZ���\ 28�(��$���h:�״y}\7f\ 2\1e`\0\0\0\0\0\0\08�ƣ�37\f}\fNsſ�]�\19E�c\f\ 3\1cpJL�򄩵�\9c\11U<�\a�Y)�O�&�$.�!E�Q\a%��N�C�SL�8�d��#z��9�㔚g,�ܮ��G w�7GggU)F�]Es�I-��D\12S�:{-��\1ce�|jw\14�K\vP���䗴[�<�PU�\ 4\ e&�Jw���iU4�L��\Zno5i\Z�j��\18�ud�:d.-�n��\ f=9�tр��Z!�kj�/�Z��rL�׹S��d�]�Wg�\Z��M(R���%�#\15劰Q���\18\17�N��j���ERI\7f�3-���_=�\7f#\10���=��\ e���q\'�u\7f\ 2c���L\17-e�ƙL\17#��F�t�����G�����\ 4䓓�B��eEk2=\13\1d��\7f�ZZ�\aC���������3\ 3\e���xdRh�#\'�5ldE(�nF�ԝ�K/��\17\r\ e�9c���^QG���4�&\18N\7fjP��\ e�#=��\16:�)<2�\17ȧ�܆M\Z�3J���\"z�N�{�n���]H�\0�!�\0\0\0\0\0\ 1X\1fl3W\ e9\7f_�.5�W���_\177����v��츖��㡥%�k()��3Q�%%MJ#�\"\ 6,��|h\15\10�B{�i�\ 5\13������c+��r�\16�%��ɥ�Mj5���Z��V#Isӆ��$fK%M\b\0j�t��5s���\7f�n6���e8kU��\13ݑ$�܉5*6<F\1d�R\'�)\ 3\n�^�Hc�D�2�%�Ys�F�g�W�\1e\14��x�N���a�ջ��O�\15\16Ƃ�c��mn��!3\\|�&      u:fIV�r�\15:rjh.p�甴���9�\fM\1e��H���>���듲pg�BҲ�:t�[I줩��*���\17¤�V�pS�\18◣(�d�Bŗ4B.� �\18su=�\19\v=�4�ᢙ�K\ eAeZ$qu\16餣}�\19�Fԣ��\0\0\0\0\0\nY��No�\a\16�!\ f\15N��j{\"F-zy�c�?s\Z\f��I3�#̼˧Q�\16�����\r��k\\]���6��Pꫫ�Ur$��]MIN�^|��$�^u�,\12ݦ=0��O,Vt,�p�\1d��]�I(���F\Z�\1d�̔�����\ e��Q\19\12��bJID�l�\0\b����dӪ>\15�o!Sg�[$i*��<�\\Qng|Q�u��,�,�\ 6tu�-<�#�\rbQ\Z�&��v����\13\e�c�\ 5\1d��٧��u�-����\'��\1f�B�b);C�3����ha��Kr\"ۘ�r-���\0\0\0\0\0\ 1K�\1d\7fy�8�q\ 2a��^���\191�[\11�؍�$��#5�K�\17�,JL���Ȍ��a��L��s�&�[\1c\14d�\7f�1\r�צ�K����\19�ɧ\7f��=��\0\ 3Dx��a�Ó_Ud�ǁ\16�5%�~��<��&\ 4��ܾ^�G�⏚��_�K\7f�ω�f\\O�2ث�����=�t��2�7\f��\10�36��FffJw���&M\ 4^DDV��\0\0\0\0\0���A��<g�|K�\ 6v�����60�C���+}�P�\7f\f\f�%��\f\12�>�����-G�\1f��M�:]\16��\Z�N/&�ɛ����3:Rv�_��?]����%0�<Y���^��k(㸆E�\\ۙ*��_\19k|l�[��U7T�K}�$d�̈���\0\"�ګ�#\ e��g�0CS�*\19�YN)��vk{����\1e�9�=e�:�IB�\15,~\17\ 2W9\16ʛ1�Nƒ�Z�%UYR�Fu==72�����>��^�w\fg�\ah��F˭\15�3橯c�\16`��j�G�f=h�R�\1c     Ȫn������G)#I�\15&e\14��6�96\0\0\0\0\0\0�\18\1e\1cL4/���6v91��!�\r�)�,�~*�Rg#UR�ij�\"��rN������P�kJ;�m�\ e>�b���\ed&\17X��\ e��\18�Fޭ�b�\e�48�K�K�T\\�h^�Q̶#I\Z�hWe+_ͺ���ɧI;�\n�\7fF\17��.V\17w)7\a|<�f�d�O�̚Xi��\1e�>�\10�U-\7f\14�R��/��\7f1�\ 3���.�t��2fs�n��\ 4\10i\16E��u?b�D�V��2#�Ca��u3��3\14�q2�\15���j�w���\7fZ�����qN?;�^��X���R#\ 4g3�Dj�֣��&����\1f�\nI*�)\14�;-�\11����x�j�7A�\1e�%Gi��\13ŢV�8��\1cTN�BV�ER��\14e�*��������W�ZMQ�i;\19iR*h��-����\0�>�$\0\0\0\0\0\a�!}���\bLv�x(Ʋ�9�<K��ig\1c˘�(��E��m\15dߕ1�L��>3O\"\no�\18H�P��Q\15iJU�;G�\13\\/��e>\19����o\eQ�{hnW�\19^\0�S���8��{�\"Λ\16��JK\\�*��G\18��1)|��\'s6\ f��\1d@��M���o+@�\ 6:�e\buw;uY�*9���r�O\13l4��YL��Բ3Q#�\"5\19�E}�\ 4q�SS��G\ 5�HRb]{\1f~&�B\n�q@�wg\1ev�Q\ag_��=\16�rcW6�EP�j\"؊��v�ׇv�{\13:׎�V\r��}L��dD[u��_^�\v\7f?!y֑p<[L�^�Z}�ӵ�\e���\ 5\ 2k;[cJ.ɖ6���鲔��$/D��Y[�kwR��\12D���\0\0\0\0\ 1�.n���\17Nn��v\rv\16�sv�upVV6�;o̥��\11\11\11��\1fM���\'\18�x��8x�-��\1fa��\16���ES������l13K�\12\7f\v�Yx%���rJ��rR�Y�5B$�e�=4�_��ć�&��N\Z_�����k�\1c��H��Q;wdW/+�^&�����)5\13���i\17�(��\11�[���xr�I�W�+�]}f,�\n��\13^G��,s���\13���J\'8ӫ�\13\ 4�zL+Z�%l����$�Y�(�:�\19��]��6��\0e�i%v��]�J�\16d{o�?�$��{�;�SؔI-�[l;�\16�Ǣ��\18�e�Ŏ3\17l�b`cn��F�v6{\nm\f퍍��JZ�������\\��dJ2�\1fڀ��\e\1d#��o�\ 6�p\ 4M�Nӷ�w��8m�2��i�$��d��m�$E��jD�\1c�M�r\"�b�v\aKȴ���4��\18��s���܈�\Z��S�E�NU\'����|�{u��\ 5�H�n�\18�0B\1c��a�G\1c�\'�w\e~�x�-���5\1e�:�\1d���\11�����@\0\0\0\0|�(�\\\7f����-e�s$\v\1cc�\'        4�W\"�+\16H�\ 3Sw��:�\19�%�25�Ȉ׶ܜ�3B�\r���W\\e3���4hё\19��/�Z�q�&����%�-¢��$ʄʺiS2�g�@      +��m��RӭV��NQ\\\17�5�[B챌���h�x�%kk9\ 5�����1&\ 5rQ%Hj��<S����fJ�o�iB�H��3���IY��*Eґ\17\7fO����c$\0\0c��\0w��\15����:9\ 1�\"d=y�#\1e_M�3wg\19�uӬ1�N\12ؔ����.��6���ar:�7�D\12?��\"�U�Ԉ\15Xmn�-��f[��>�p�\ e\e�՗��h����tזf�\14��,��\1c��a��\"�\11�ڪ\14A�@d�&�b\n4�cI+\0-��R�V�^��\7f��_g��G�<\0\0\0\0Wc����3�M\1c214��\bV9&\19�n���)\1c�мs\1ec73MB/\aǬD�<�%eP�J\1fX���������\ 1���G�\11�Z��!m_U���X:�,\1fm��0�\10y#𖦳U2SD�\"�\1d9\f�I^��)�#�\r2��]�\0\0\0<;�~�\ ebj��\ f\rmk;^I5\19��]2�8�)�~�j�2K�!\19��d\fd�\17����FI)\f���]�\1f_���8q�����:j�:�ű\e\eEڱF����n`���=Z�qmL����}��$����J��J�Zi��w\1d\ 5h�tK�->�)�����t��%\Z�y&��\b\"$�r\160~Ʊك��)23�T��[\Z����:\15�L�L��*�{�f\1c{�^|m|D5��Wt�R�y)d��z�X�\1c.�QD��&G\19\"$����#�Y\16�T/�R���B��rMŵź�\e�쭶�}�>�{���v�\1f�\0\0>_��;.&ƹ\v*H�\15\18�6�L\'R\v�$�j�\12huzuQ\1e�vCQ���EҦ�\12:y}�\1dƚ�U�,kJ!�Y>}��Fк/no��3�NZQw35\19\1c�r�\12�+����d�JRDv�е�mO��F�\n\'�k~�|�H��3�\ 38\0\0\0\0\0c�GT��/]�/����_?��F\17�9�2\11�G\ 4I�\11���MZ��1�\'(����l\1c3�A��KuŒ��RM��4��w�$ԙ!�(��RH�\'���~.3,���3u\v(�s�@#.\12m1H�wK[���:��v\etG\'9&2�D�$���N0�\ 4Yu\n�n4�:J_���# \0\a+��ˮ��&8�H\Z�W���ҾSi����dr��؍e��d�}K���\11{�L��:1\rqjN���ě\17�(����Z735<Le��%u2R�\"\'��E�D{�l\'�\0\0\0\0\0\0=\v�W��1Wή1�n\ZݪLV��,��\15�ګ��V0��^�`q-O�52df��Jy|\18�e9\r���O*\15\10\19\1f���$=�\09���.s�\18\Z�\0�&�V�� ��[u;�\vۺK�_\13Q(��dȽG\ f�\Z�3f�k��u(\11֘j�\0\']P�W��s<\ 3\10����\0u\ e\17�{n���\0\0\0\0\0\0\ 1\0~�V-K�h�eb*�K \1e�������dj��)���{t�O�\1f���$=�\05�Wq/\7f4��hBhи��O��.v�\e\19]��    ����+�~i?�q\ f�{\13(�\ 6\\1\7f\1d\ f|r~q�\\����I�?s>��T��_�s��\0\0\0\0\0\0\b��Ɣd�~�\ 4?T�\0��2}��nj눝\19�F��\7f��\v��o1-�\7f���y��\19\ 3�    ]�\a�č��\ fh�����v�9n�Q�H��Ȍ�m��{��\1f�>\18��m�\vH\11:�����5�\a;�{�#RT��K��y~���2����v�\0\0\0\0\0\0\a\ eu�hJ8��=�U�Ch<�^;������F\7f     �[���L�6�$�\ e�\0\0\ fEJ]�]�z\7f��2��ƣ�s\19��zT�8ƭ�{\Z�x������*P���}��\vc�鷐��\0\0\0\0\0\0\Z\7f���I�7�I�wD�\0&\12\f�q���-Î�>�鿡���\r�\0\0\ 1��%H���?�����yt!�\0\0\0\0\0\0\ 3\ 2��\Z�)V�F�ַ�jg��f^D{�\vo���x\0\0\0\0\0\0\0\0\0\0\0\0��',4,0,'','','',''),(71,0,19,'75859b10e58a60ae','2b902d193517f74d2c14e163cff8c10e','2017-09-07 09:16:08','2017-09-07 09:16:08','','','Contact Photos','6.jpg','image/jpeg',80,80,2703,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0P\0P\ 1\ 1\11\0��\0\1f\0\ 1\0\ 1\ 4\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\ 1    \n\v\ 2\ 4\a\ 3\ 5\ 6��\04\10\0\0\ 6\ 1\ 3\ 1\ 6\ 6\0\ 5\ 5\0\0\0\0\0\ 1\ 2\ 3\ 4\ 5\ 6\a\0\b\11  \12\13\14!1Q\n\15\16\"Aq\17#���3Sa����\0\b\ 1\ 1\0\0?\0��M5A\10\ fQ\0��j�����ǯ<��\1e��_�T\ 4\a�@\7fZ��i����\149\11\ 3��\7f׾�*��)��{ڥ����J�Y�[6h��e�\v�,u��$�\1c1����t�KvD3%�\7f��g\11[I�\17\16\15_:\15kƵ�J�u��B��7��\'vX3i�Rj:�G���*�e�\0\ 6��<C\19S��ש\14�kGH8�Z���!�ܶ;\18HiQM�\f�pN\13���\1e��Z��$�b�\b\1d������~� ��]��vG�X��e�\0P̚�k\12�C�\18G3H�޽��O�/l��x\0�\a���\ e?>a�\a�M|�i������:{Kٞ�w,dRt� aK�B�f����\f\ 5}��z�a�o�\1f-fr�����@@D5�\7f\ 6֮\1dV��b�S�&��-�\ 6L��m�[�x���S!�����\ 5d�\"ἵ����1�/��n}����\12��U2�����e&�\15T��`a�U��\e4#�``�!\e\11\r\14ũ\13l�>5�t\19�l�\n�(\"�i�\nP�)�\'��\f\1e�r�c-�^j�\15���e�\1e[��\16ZE�t\0���l�A�-��\'!\ 1�~��N.A�m2���p�\rjX��OR_��\7f�]�d\1c�r�8�\10�$+�\'\v۬�<m�1܇������G/OG��Td\19Y+s��\1e黗-�쭤��}\16;W��V��lC��U\ 1���b�Uȴ��)H����\11��\19e�!�\ 4\16/�\ 5��SX\ eA\1f-zv�i�e���s���^�q�Y���9���9(h��9�H��F�`�kd�)���\ 6��I$B��\1dr�\n\"n5�����}.��  9�l2�m\1f&\12�\n�b����\14+$V�`\ 3\n�\0++�\1c\13��9W�\ 4�0�h�q�q�\1c\a\1f�����\11\ 4G�\0G��Z�>.      ��Ӭ[��\ 1\ 4���8\e\a�o\rb\12�O\17��5�b61T\Z�EW�%B�NnTJS�d�͸\13�\"a�ۦ\ 6\14��˧~��m�7\r���nx��nd��x�\eZ�z�1\ 6��\11 ���\ f��|�#;��Mu_5I�7,�\"����;w\b8L���\v\14SY\15�7ڪJ�c\11D��\ eS        L\ 2Q\10\1de[��\ eD�m��a��c�ܜ��r\16L�L�\ f\b        ���/m_�˘\15�~t�F�P��?��|�R0��c[�\17�w\1dco\19�W\ f\ 6u�4,Ê�.8�%T����La�3\19�兂21o�*�I�B�e�߶r�\ e�8\ 5Z;A\17H��q먆�\17�v��;�61���a\\?n�W\"\1d��\ 6J�ݘ1���\ 4N��+^��%9A\"�\1c��tb(C�GX7|.{\13m�Gt{�ꧼ�\ es\r�\Ze�jR��\ 4�5��\16|�]\'r\14�1H�\15\1fŻ��F\f������gl�45V%4�/\14�P\0\0�\ 3�8�\0�r�Mx\16�73�v���ۃ��(�\1e+�0�LX�ߘ�QC\19B����`�\v��\14��[���0\"�d��6j�1:������>��c�\ 33c��2:sH>p\\ud��V.���U}��Q��L��>�C�u9$��2���$ݦ�\94\e��q�i��l�4���j5z��h���gQt��C���-9�T\']�\16�l\ra�R�5\18IgM��s)Y��4A��5fѳS�\11�tZ%?\19���:\ 5f\ 2�J�ð�Ujuh�P5��\fZ\ 5m\e\ f\v\11\1c�,����!\10lѪ)��d)H@\0׏n�n5M��;����uk8bێ9\7f*�\128w\b��\1d�8�\v6�\18��{^�\16Sl�P�MgL\12ISwg8\ e!\1f\ e����\a9�\13��\0P\18İ��\'e\ 42�ڲ}�\16����O�����j%�D�`�V����M��\19f�J�4�jQ�}�\16�N3�*�1{@b���\ 1\ f^\ 3��\7f\1e�\\k�!令#�\b�\0���#�X�3]Rz�l��\f��\0��        �#�\r�D1t�[gfZB*�Q���\"q*�у�j�j$�V�ZbE\13\ 3��\f�YP\10Q\15�8��~1�$\14\fs8�Xh���FD�G7M�|ls\ 6��ѓ\ 6-QI�6mRI�V�$�       �$�P�}4��.����!�^�5\n�⾪���\r��\ ff�YT�}ګEM�|�U\13\ 3\bs�c\13�=�\ eG�m������K;Lcw��O�0Q�=�{h��c):Ě       \ 1c\ 2r�\\����\1e���n\ f귺��{�i��U���_7�\1d&��L��7)ӷ~\r�K�\1d���^f�X�,%_q8Z�)\16��+���\16�_��#�v,��d���S�ѓդ�\e�y��y���\r�\17�?�\ f�^Rv��Y��vS\17\10�b�L�>����E�e\f^\ 1\17/q:\ eV!\a�Y���d7\17��M4�V }��+�J��ض��\vWH\v�K*��$ y*���Q����1J��#��M\ 3\1c�P��H�`!C��\a�~�T��7<\b��\1e��_�]CL\7f�~I����o\ fݒ���U��\14\0\15uE������}�       �V֘~��\f �$\ 2R�����M4�P�C\19�����/\ ea3-�dLn.���\ 4�c��dۛώЌb�\148�0�b鮸4n\ eN�WJ��uW\ 4�ި�c�Q\ 4��\1d\11\13�rd�\" ��TJ\0*\18G���i���͸�+�E1vF�hG\1d�敲�MU\10\ 3\7f�uQIC\0qɓ/!�\ 3�ֿ��',5,0,'','','',''),(72,0,19,'75859b10e58a60ae','2b902d193517f74d2c14e163cff8c10e','2017-09-07 09:16:08','2017-09-07 09:16:08','','','Contact Photos','6.jpg','image/jpeg',48,48,1755,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\00\00\ 1\ 1\11\0��\0\e\0\0\ 2\ 2\ 3\ 1\0\0\0\0\0\0\0\0\0\0\0\b \0\ 6\ 1\ 4\a\n��\0.\10\0\ 1\ 4\ 2\ 1\ 3\ 3\ 3\ 3\ 4\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0      \11\12\13\14\n\16!\151A\"#$23Qa��\0\b\ 1\ 1\0\0?\0���3�c\19�s�\18ǜ�?�1���{�p\ fK����]�_�\1f�r��\0BsK�]�n\v4d�\7f\ 6fZ%\ 2ӣ�\v³+\1e�r0�m�&��i��-��<u��\v`��Xh�K\ 2ɤU-y�͎\roc��e�ښ�B$���.�>jA�g>���%hM����%�C\1c¿p��O!����6���x�i�e�5�\ 5��H�)LW�l�e����!k��:\14�T���h\12�q\ f2ڰ���NݴM\15�j�6�\10A��7�?qY��ˌ�g�Z�[D�En�\17&Z]-�mnB��a!�[v\\�h��2Ba\ 3RI?�\16��\1f�<~/�\17\ay=d�G����\e��3�JM�[ݨ��\10`   ��ԭy���N�\ 5�\0ɚȥ֐Y�ʈ���O`=�y��|\vҼ�&�-F�m\12f��+`<�\11q{\ 2�*En՘g\b���$��Y��`��P��#\ 6I%�;�<�z�+��<\e��#ۣ��g��dl9�\10n��&���\7fek�ٵ���)X�C\16�dz�D���\ 1�0�N%HiI�m���R/hvߠ��)5>B�~N��M�X�}��\']�؜�\Zlcޒ�\12Z��FQ.6��?\11`       �/����>�>I�X㞣�`�3���lHm%X8�=�j�2.�K2�1$�\10�����7�\ e\ 5�2�)�I1��Cw����n^\16i>%T%�cƺ�x�]�l�_�/�C\1e��X�\11JR�\ 6B�y��\ 5Ÿ�Q-�+μ�+ug�\\�y�J7\1et���{2U0�\1dOH��m�YF]q�Z�a\12�$f\13�d�B\a����2�F<��c.:�e`��Z�_���|������%�n|\7f\ e��KQi\Z�WK�\12�y��#X0\v6��6\18\17�&,\10S�MP��\14�;\14ę��;F�imE�M�I�MiF��܎L��N�W����J!O�\12Vi\b��2zA\n(�$�G�#\n%�{�^s*]���p��\\�2n�Et��ܬ�fݏ�Z\Z�m\0�:\1c��2%�.�؁D�3)�[F�\ 5�����a\f\1d��\1c�],2  ]�ˆ�ۮ��\v�Z�ϯ*kj4=���N1�����-c��;l�:\ 1\ 1@�Ϋ+�������O�WW��!א^EJGNFG�Ü$�L�B�FI\0CE�x\ 6��C42�Z�$R�u��}����Z\1cB��c=/>�z����\1d��XK�3x�q�,�8�+�\1c��-�#��?*\ZF���\ 5��V)/%xR3�e�\ 60�\b(b0�\8a;#\f;\bKl��\r%�Ye�c\bCM6���\'\18JP�%8�1��z�Wm�J��e�Z⁜�[�&+\16\18i!�.>V\ ez8��X�E}+d�\r\0�\ 6!�P��eաi�U�t\12v��O�;}qj�e0åi��\15?~A�\1d-\11��٘H �q�-�b>\f\18�\Z�+9�#7�x�1�\Z�\Z�e�\ 1��=`�t,���\n�\0\"\nn:x%zs�Ϥ����?�z|��գ\18�c���u��S?�\7f���K��R+1Uh�a���hTc\1e�%\ 4\16A��1�>?�B�\0����',6,0,'','','',''),(73,0,20,'75859b10e79de61b','01f62fe9af5d22dfb7664e78e64acd43','2017-09-07 09:16:41','2017-09-07 09:16:41','','','Contact Photos','3.jpg','image/jpeg',175,175,5486,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0�\0�\ 1\ 1\11\0��\0\1e\0\ 1\0\ 2\ 3\0\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\n\v\ 4\b    \ 2\ 3\a\ 5\ 6��\0B\10\0\0\ 5\ 3\ 2\ 3\ 5\ 5\ 3      \a\ 5\0\0\0\0\0\ 1\ 2\ 5\ 6\ 3\ 4\a\b\11   \12!\n\13\151A\14\16\"Q�aq�\17%23R����\18#$&5B�Es�����\0\b\ 1\ 1\0\0?\0��\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն����X\Zg���p|L�sN��\1e�}�Y%ZR|�\11(�J*I&+�rJ\18#�yI)%l�Z�,:��i�(��ϥ�)���J�����*hχ\18o��>$���Œd\v\"5\16ɐ\14b��o���9���/צF�3�qN��;뤂��������9�;߬�Kka0���Z��\19�$�Բ��Ob3�g\ e�Wqg�U�l�W�\0ĺQ��\17����<;\1eJ;\ 4��剽ŒTh܋}��h�����>�#���\10�\0\0\0\0\0\0\0\ 1\15>=]�Xw\ e\eg-8i��9�u����N�梿���ݱ^\ e�-l$$��5Rt�\"�����e�)�\1d:G\e��+3Ϛ�ͺ���,���-d�5�ܾ��n~5\7fSeW$76sS$�4SME��\13\ 2\11\1d����\"\"O.����_��)Y\8e1�\r�X!M\nm��y�Kl�R\a�#�k�M&�^�\12o\13\19\ 2|M\11L}Ij���O��D>��OJ��\Z\1c\1c�m�\ 2\ e�i��v2��r�VӍB�l[�rd��D�;\13k�2��dZ���\ 28�(��$���h:�״y}\7f\ 2\1e`\0\0\0\0\0\0\08�ƣ�37\f}\fNsſ�]�\19E�c\f\ 3\1cpJL�򄩵�\9c\11U<�\a�Y)�O�&�$.�!E�Q\a%��N�C�SL�8�d��#z��9�㔚g,�ܮ��G w�7GggU)F�]Es�I-��D\12S�:{-��\1ce�|jw\14�K\vP���䗴[�<�PU�\ 4\ e&�Jw���iU4�L��\Zno5i\Z�j��\18�ud�:d.-�n��\ f=9�tр��Z!�kj�/�Z��rL�׹S��d�]�Wg�\Z��M(R���%�#\15劰Q���\18\17�N��j���ERI\7f�3-���_=�\7f#\10���=��\ e���q\'�u\7f\ 2c���L\17-e�ƙL\17#��F�t�����G�����\ 4䓓�B��eEk2=\13\1d��\7f�ZZ�\aC���������3\ 3\e���xdRh�#\'�5ldE(�nF�ԝ�K/��\17\r\ e�9c���^QG���4�&\18N\7fjP��\ e�#=��\16:�)<2�\17ȧ�܆M\Z�3J���\"z�N�{�n���]H�\0�!�\0\0\0\0\0\ 1X\1fl3W\ e9\7f_�.5�W���_\177����v��츖��㡥%�k()��3Q�%%MJ#�\"\ 6,��|h\15\10�B{�i�\ 5\13������c+��r�\16�%��ɥ�Mj5���Z��V#Isӆ��$fK%M\b\0j�t��5s���\7f�n6���e8kU��\13ݑ$�܉5*6<F\1d�R\'�)\ 3\n�^�Hc�D�2�%�Ys�F�g�W�\1e\14��x�N���a�ջ��O�\15\16Ƃ�c��mn��!3\\|�&      u:fIV�r�\15:rjh.p�甴���9�\fM\1e��H���>���듲pg�BҲ�:t�[I줩��*���\17¤�V�pS�\18◣(�d�Bŗ4B.� �\18su=�\19\v=�4�ᢙ�K\ eAeZ$qu\16餣}�\19�Fԣ��\0\0\0\0\0\nY��No�\a\16�!\ f\15N��j{\"F-zy�c�?s\Z\f��I3�#̼˧Q�\16�����\r��k\\]���6��Pꫫ�Ur$��]MIN�^|��$�^u�,\12ݦ=0��O,Vt,�p�\1d��]�I(���F\Z�\1d�̔�����\ e��Q\19\12��bJID�l�\0\b����dӪ>\15�o!Sg�[$i*��<�\\Qng|Q�u��,�,�\ 6tu�-<�#�\rbQ\Z�&��v����\13\e�c�\ 5\1d��٧��u�-����\'��\1f�B�b);C�3����ha��Kr\"ۘ�r-���\0\0\0\0\0\ 1K�\1d\7fy�8�q\ 2a��^���\191�[\11�؍�$��#5�K�\17�,JL���Ȍ��a��L��s�&�[\1c\14d�\7f�1\r�צ�K����\19�ɧ\7f��=��\0\ 3Dx��a�Ó_Ud�ǁ\16�5%�~��<��&\ 4��ܾ^�G�⏚��_�K\7f�ω�f\\O�2ث�����=�t��2�7\f��\10�36��FffJw���&M\ 4^DDV��\0\0\0\0\0���A��<g�|K�\ 6v�����60�C���+}�P�\7f\f\f�%��\f\12�>�����-G�\1f��M�:]\16��\Z�N/&�ɛ����3:Rv�_��?]����%0�<Y���^��k(㸆E�\\ۙ*��_\19k|l�[��U7T�K}�$d�̈���\0\"�ګ�#\ e��g�0CS�*\19�YN)��vk{����\1e�9�=e�:�IB�\15,~\17\ 2W9\16ʛ1�Nƒ�Z�%UYR�Fu==72�����>��^�w\fg�\ah��F˭\15�3橯c�\16`��j�G�f=h�R�\1c     Ȫn������G)#I�\15&e\14��6�96\0\0\0\0\0\0�\18\1e\1cL4/���6v91��!�\r�)�,�~*�Rg#UR�ij�\"��rN������P�kJ;�m�\ e>�b���\ed&\17X��\ e��\18�Fޭ�b�\e�48�K�K�T\\�h^�Q̶#I\Z�hWe+_ͺ���ɧI;�\n�\7fF\17��.V\17w)7\a|<�f�d�O�̚Xi��\1e�>�\10�U-\7f\14�R��/��\7f1�\ 3���.�t��2fs�n��\ 4\10i\16E��u?b�D�V��2#�Ca��u3��3\14�q2�\15���j�w���\7fZ�����qN?;�^��X���R#\ 4g3�Dj�֣��&����\1f�\nI*�)\14�;-�\11����x�j�7A�\1e�%Gi��\13ŢV�8��\1cTN�BV�ER��\14e�*��������W�ZMQ�i;\19iR*h��-����\0�>�$\0\0\0\0\0\a�!}���\bLv�x(Ʋ�9�<K��ig\1c˘�(��E��m\15dߕ1�L��>3O\"\no�\18H�P��Q\15iJU�;G�\13\\/��e>\19����o\eQ�{hnW�\19^\0�S���8��{�\"Λ\16��JK\\�*��G\18��1)|��\'s6\ f��\1d@��M���o+@�\ 6:�e\buw;uY�*9���r�O\13l4��YL��Բ3Q#�\"5\19�E}�\ 4q�SS��G\ 5�HRb]{\1f~&�B\n�q@�wg\1ev�Q\ag_��=\16�rcW6�EP�j\"؊��v�ׇv�{\13:׎�V\r��}L��dD[u��_^�\v\7f?!y֑p<[L�^�Z}�ӵ�\e���\ 5\ 2k;[cJ.ɖ6���鲔��$/D��Y[�kwR��\12D���\0\0\0\0\ 1�.n���\17Nn��v\rv\16�sv�upVV6�;o̥��\11\11\11��\1fM���\'\18�x��8x�-��\1fa��\16���ES������l13K�\12\7f\v�Yx%���rJ��rR�Y�5B$�e�=4�_��ć�&��N\Z_�����k�\1c��H��Q;wdW/+�^&�����)5\13���i\17�(��\11�[���xr�I�W�+�]}f,�\n��\13^G��,s���\13���J\'8ӫ�\13\ 4�zL+Z�%l����$�Y�(�:�\19��]��6��\0e�i%v��]�J�\16d{o�?�$��{�;�SؔI-�[l;�\16�Ǣ��\18�e�Ŏ3\17l�b`cn��F�v6{\nm\f퍍��JZ�������\\��dJ2�\1fڀ��\e\1d#��o�\ 6�p\ 4M�Nӷ�w��8m�2��i�$��d��m�$E��jD�\1c�M�r\"�b�v\aKȴ���4��\18��s���܈�\Z��S�E�NU\'����|�{u��\ 5�H�n�\18�0B\1c��a�G\1c�\'�w\e~�x�-���5\1e�:�\1d���\11�����@\0\0\0\0|�(�\\\7f����-e�s$\v\1cc�\'        4�W\"�+\16H�\ 3Sw��:�\19�%�25�Ȉ׶ܜ�3B�\r���W\\e3���4hё\19��/�Z�q�&����%�-¢��$ʄʺiS2�g�@      +��m��RӭV��NQ\\\17�5�[B챌���h�x�%kk9\ 5�����1&\ 5rQ%Hj��<S����fJ�o�iB�H��3���IY��*Eґ\17\7fO����c$\0\0c��\0w��\15����:9\ 1�\"d=y�#\1e_M�3wg\19�uӬ1�N\12ؔ����.��6���ar:�7�D\12?��\"�U�Ԉ\15Xmn�-��f[��>�p�\ e\e�՗��h����tזf�\14��,��\1c��a��\"�\11�ڪ\14A�@d�&�b\n4�cI+\0-��R�V�^��\7f��_g��G�<\0\0\0\0Wc����3�M\1c214��\bV9&\19�n���)\1c�мs\1ec73MB/\aǬD�<�%eP�J\1fX���������\ 1���G�\11�Z��!m_U���X:�,\1fm��0�\10y#𖦳U2SD�\"�\1d9\f�I^��)�#�\r2��]�\0\0\0<;�~�\ ebj��\ f\rmk;^I5\19��]2�8�)�~�j�2K�!\19��d\fd�\17����FI)\f���]�\1f_���8q�����:j�:�ű\e\eEڱF����n`���=Z�qmL����}��$����J��J�Zi��w\1d\ 5h�tK�->�)�����t��%\Z�y&��\b\"$�r\160~Ʊك��)23�T��[\Z����:\15�L�L��*�{�f\1c{�^|m|D5��Wt�R�y)d��z�X�\1c.�QD��&G\19\"$����#�Y\16�T/�R���B��rMŵź�\e�쭶�}�>�{���v�\1f�\0\0>_��;.&ƹ\v*H�\15\18�6�L\'R\v�$�j�\12huzuQ\1e�vCQ���EҦ�\12:y}�\1dƚ�U�,kJ!�Y>}��Fк/no��3�NZQw35\19\1c�r�\12�+����d�JRDv�е�mO��F�\n\'�k~�|�H��3�\ 38\0\0\0\0\0c�GT��/]�/����_?��F\17�9�2\11�G\ 4I�\11���MZ��1�\'(����l\1c3�A��KuŒ��RM��4��w�$ԙ!�(��RH�\'���~.3,���3u\v(�s�@#.\12m1H�wK[���:��v\etG\'9&2�D�$���N0�\ 4Yu\n�n4�:J_���# \0\a+��ˮ��&8�H\Z�W���ҾSi����dr��؍e��d�}K���\11{�L��:1\rqjN���ě\17�(����Z735<Le��%u2R�\"\'��E�D{�l\'�\0\0\0\0\0\0=\v�W��1Wή1�n\ZݪLV��,��\15�ګ��V0��^�`q-O�52df��Jy|\18�e9\r���O*\15\10\19\1f���$=�\09���.s�\18\Z�\0�&�V�� ��[u;�\vۺK�_\13Q(��dȽG\ f�\Z�3f�k��u(\11֘j�\0\']P�W��s<\ 3\10����\0u\ e\17�{n���\0\0\0\0\0\0\ 1\0~�V-K�h�eb*�K \1e�������dj��)���{t�O�\1f���$=�\05�Wq/\7f4��hBhи��O��.v�\e\19]��    ����+�~i?�q\ f�{\13(�\ 6\\1\7f\1d\ f|r~q�\\����I�?s>��T��_�s��\0\0\0\0\0\0\b��Ɣd�~�\ 4?T�\0��2}��nj눝\19�F��\7f��\v��o1-�\7f���y��\19\ 3�    ]�\a�č��\ fh�����v�9n�Q�H��Ȍ�m��{��\1f�>\18��m�\vH\11:�����5�\a;�{�#RT��K��y~���2����v�\0\0\0\0\0\0\a\ eu�hJ8��=�U�Ch<�^;������F\7f     �[���L�6�$�\ e�\0\0\ fEJ]�]�z\7f��2��ƣ�s\19��zT�8ƭ�{\Z�x������*P���}��\vc�鷐��\0\0\0\0\0\0\Z\7f���I�7�I�wD�\0&\12\f�q���-Î�>�鿡���\r�\0\0\ 1��%H���?�����yt!�\0\0\0\0\0\0\ 3\ 2��\Z�)V�F�ַ�jg��f^D{�\vo���x\0\0\0\0\0\0\0\0\0\0\0\0��',4,0,'','','',''),(74,0,20,'75859b10e79de61b','01f62fe9af5d22dfb7664e78e64acd43','2017-09-07 09:16:41','2017-09-07 09:16:41','','','Contact Photos','3.jpg','image/jpeg',80,80,2703,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0P\0P\ 1\ 1\11\0��\0\1f\0\ 1\0\ 1\ 4\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\ 1    \n\v\ 2\ 4\a\ 3\ 5\ 6��\04\10\0\0\ 6\ 1\ 3\ 1\ 6\ 6\0\ 5\ 5\0\0\0\0\0\ 1\ 2\ 3\ 4\ 5\ 6\a\0\b\11  \12\13\14!1Q\n\15\16\"Aq\17#���3Sa����\0\b\ 1\ 1\0\0?\0��M5A\10\ fQ\0��j�����ǯ<��\1e��_�T\ 4\a�@\7fZ��i����\149\11\ 3��\7f׾�*��)��{ڥ����J�Y�[6h��e�\v�,u��$�\1c1����t�KvD3%�\7f��g\11[I�\17\16\15_:\15kƵ�J�u��B��7��\'vX3i�Rj:�G���*�e�\0\ 6��<C\19S��ש\14�kGH8�Z���!�ܶ;\18HiQM�\f�pN\13���\1e��Z��$�b�\b\1d������~� ��]��vG�X��e�\0P̚�k\12�C�\18G3H�޽��O�/l��x\0�\a���\ e?>a�\a�M|�i������:{Kٞ�w,dRt� aK�B�f����\f\ 5}��z�a�o�\1f-fr�����@@D5�\7f\ 6֮\1dV��b�S�&��-�\ 6L��m�[�x���S!�����\ 5d�\"ἵ����1�/��n}����\12��U2�����e&�\15T��`a�U��\e4#�``�!\e\11\r\14ũ\13l�>5�t\19�l�\n�(\"�i�\nP�)�\'��\f\1e�r�c-�^j�\15���e�\1e[��\16ZE�t\0���l�A�-��\'!\ 1�~��N.A�m2���p�\rjX��OR_��\7f�]�d\1c�r�8�\10�$+�\'\v۬�<m�1܇������G/OG��Td\19Y+s��\1e黗-�쭤��}\16;W��V��lC��U\ 1���b�Uȴ��)H����\11��\19e�!�\ 4\16/�\ 5��SX\ eA\1f-zv�i�e���s���^�q�Y���9���9(h��9�H��F�`�kd�)���\ 6��I$B��\1dr�\n\"n5�����}.��  9�l2�m\1f&\12�\n�b����\14+$V�`\ 3\n�\0++�\1c\13��9W�\ 4�0�h�q�q�\1c\a\1f�����\11\ 4G�\0G��Z�>.      ��Ӭ[��\ 1\ 4���8\e\a�o\rb\12�O\17��5�b61T\Z�EW�%B�NnTJS�d�͸\13�\"a�ۦ\ 6\14��˧~��m�7\r���nx��nd��x�\eZ�z�1\ 6��\11 ���\ f��|�#;��Mu_5I�7,�\"����;w\b8L���\v\14SY\15�7ڪJ�c\11D��\ eS        L\ 2Q\10\1de[��\ eD�m��a��c�ܜ��r\16L�L�\ f\b        ���/m_�˘\15�~t�F�P��?��|�R0��c[�\17�w\1dco\19�W\ f\ 6u�4,Ê�.8�%T����La�3\19�兂21o�*�I�B�e�߶r�\ e�8\ 5Z;A\17H��q먆�\17�v��;�61���a\\?n�W\"\1d��\ 6J�ݘ1���\ 4N��+^��%9A\"�\1c��tb(C�GX7|.{\13m�Gt{�ꧼ�\ es\r�\Ze�jR��\ 4�5��\16|�]\'r\14�1H�\15\1fŻ��F\f������gl�45V%4�/\14�P\0\0�\ 3�8�\0�r�Mx\16�73�v���ۃ��(�\1e+�0�LX�ߘ�QC\19B����`�\v��\14��[���0\"�d��6j�1:������>��c�\ 33c��2:sH>p\\ud��V.���U}��Q��L��>�C�u9$��2���$ݦ�\94\e��q�i��l�4���j5z��h���gQt��C���-9�T\']�\16�l\ra�R�5\18IgM��s)Y��4A��5fѳS�\11�tZ%?\19���:\ 5f\ 2�J�ð�Ujuh�P5��\fZ\ 5m\e\ f\v\11\1c�,����!\10lѪ)��d)H@\0׏n�n5M��;����uk8bێ9\7f*�\128w\b��\1d�8�\v6�\18��{^�\16Sl�P�MgL\12ISwg8\ e!\1f\ e����\a9�\13��\0P\18İ��\'e\ 42�ڲ}�\16����O�����j%�D�`�V����M��\19f�J�4�jQ�}�\16�N3�*�1{@b���\ 1\ f^\ 3��\7f\1e�\\k�!令#�\b�\0���#�X�3]Rz�l��\f��\0��        �#�\r�D1t�[gfZB*�Q���\"q*�у�j�j$�V�ZbE\13\ 3��\f�YP\10Q\15�8��~1�$\14\fs8�Xh���FD�G7M�|ls\ 6��ѓ\ 6-QI�6mRI�V�$�       �$�P�}4��.����!�^�5\n�⾪���\r��\ ff�YT�}ګEM�|�U\13\ 3\bs�c\13�=�\ eG�m������K;Lcw��O�0Q�=�{h��c):Ě       \ 1c\ 2r�\\����\1e���n\ f귺��{�i��U���_7�\1d&��L��7)ӷ~\r�K�\1d���^f�X�,%_q8Z�)\16��+���\16�_��#�v,��d���S�ѓդ�\e�y��y���\r�\17�?�\ f�^Rv��Y��vS\17\10�b�L�>����E�e\f^\ 1\17/q:\ eV!\a�Y���d7\17��M4�V }��+�J��ض��\vWH\v�K*��$ y*���Q����1J��#��M\ 3\1c�P��H�`!C��\a�~�T��7<\b��\1e��_�]CL\7f�~I����o\ fݒ���U��\14\0\15uE������}�       �V֘~��\f �$\ 2R�����M4�P�C\19�����/\ ea3-�dLn.���\ 4�c��dۛώЌb�\148�0�b鮸4n\ eN�WJ��uW\ 4�ި�c�Q\ 4��\1d\11\13�rd�\" ��TJ\0*\18G���i���͸�+�E1vF�hG\1d�敲�MU\10\ 3\7f�uQIC\0qɓ/!�\ 3�ֿ��',5,0,'','','',''),(75,0,20,'75859b10e79de61b','01f62fe9af5d22dfb7664e78e64acd43','2017-09-07 09:16:41','2017-09-07 09:16:41','','','Contact Photos','3.jpg','image/jpeg',48,48,1755,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\00\00\ 1\ 1\11\0��\0\e\0\0\ 2\ 2\ 3\ 1\0\0\0\0\0\0\0\0\0\0\0\b \0\ 6\ 1\ 4\a\n��\0.\10\0\ 1\ 4\ 2\ 1\ 3\ 3\ 3\ 3\ 4\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0      \11\12\13\14\n\16!\151A\"#$23Qa��\0\b\ 1\ 1\0\0?\0���3�c\19�s�\18ǜ�?�1���{�p\ fK����]�_�\1f�r��\0BsK�]�n\v4d�\7f\ 6fZ%\ 2ӣ�\v³+\1e�r0�m�&��i��-��<u��\v`��Xh�K\ 2ɤU-y�͎\roc��e�ښ�B$���.�>jA�g>���%hM����%�C\1c¿p��O!����6���x�i�e�5�\ 5��H�)LW�l�e����!k��:\14�T���h\12�q\ f2ڰ���NݴM\15�j�6�\10A��7�?qY��ˌ�g�Z�[D�En�\17&Z]-�mnB��a!�[v\\�h��2Ba\ 3RI?�\16��\1f�<~/�\17\ay=d�G����\e��3�JM�[ݨ��\10`   ��ԭy���N�\ 5�\0ɚȥ֐Y�ʈ���O`=�y��|\vҼ�&�-F�m\12f��+`<�\11q{\ 2�*En՘g\b���$��Y��`��P��#\ 6I%�;�<�z�+��<\e��#ۣ��g��dl9�\10n��&���\7fek�ٵ���)X�C\16�dz�D���\ 1�0�N%HiI�m���R/hvߠ��)5>B�~N��M�X�}��\']�؜�\Zlcޒ�\12Z��FQ.6��?\11`       �/����>�>I�X㞣�`�3���lHm%X8�=�j�2.�K2�1$�\10�����7�\ e\ 5�2�)�I1��Cw����n^\16i>%T%�cƺ�x�]�l�_�/�C\1e��X�\11JR�\ 6B�y��\ 5Ÿ�Q-�+μ�+ug�\\�y�J7\1et���{2U0�\1dOH��m�YF]q�Z�a\12�$f\13�d�B\a����2�F<��c.:�e`��Z�_���|������%�n|\7f\ e��KQi\Z�WK�\12�y��#X0\v6��6\18\17�&,\10S�MP��\14�;\14ę��;F�imE�M�I�MiF��܎L��N�W����J!O�\12Vi\b��2zA\n(�$�G�#\n%�{�^s*]���p��\\�2n�Et��ܬ�fݏ�Z\Z�m\0�:\1c��2%�.�؁D�3)�[F�\ 5�����a\f\1d��\1c�],2  ]�ˆ�ۮ��\v�Z�ϯ*kj4=���N1�����-c��;l�:\ 1\ 1@�Ϋ+�������O�WW��!א^EJGNFG�Ü$�L�B�FI\0CE�x\ 6��C42�Z�$R�u��}����Z\1cB��c=/>�z����\1d��XK�3x�q�,�8�+�\1c��-�#��?*\ZF���\ 5��V)/%xR3�e�\ 60�\b(b0�\8a;#\f;\bKl��\r%�Ye�c\bCM6���\'\18JP�%8�1��z�Wm�J��e�Z⁜�[�&+\16\18i!�.>V\ ez8��X�E}+d�\r\0�\ 6!�P��eաi�U�t\12v��O�;}qj�e0åi��\15?~A�\1d-\11��٘H �q�-�b>\f\18�\Z�+9�#7�x�1�\Z�\Z�e�\ 1��=`�t,���\n�\0\"\nn:x%zs�Ϥ����?�z|��գ\18�c���u��S?�\7f���K��R+1Uh�a���hTc\1e�%\ 4\16A��1�>?�B�\0����',6,0,'','','',''),(76,0,21,'75859b10ebd73888','39e7b822c093a22f70de8782c7d652d4','2017-09-07 09:19:08','2017-09-07 09:19:08','','','Contact Photos','4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575','image/jpeg',175,175,5493,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0�\0�\ 1\ 1\11\0��\0\1e\0\ 1\0\ 2\ 3\0\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\n\v\ 4\b     \ 2\ 3\a\ 5\ 6��\0B\10\0\0\ 5\ 3\ 2\ 3\ 5\ 6\ 2\ 5\v\ 5\0\0\0\0\0\ 1\ 2\ 5\ 6\ 3\ 4\a\b\11        \12!\n\13\151A\14\16\"Qa�q�\17%23�\18#$&5BR����Es�����\0\b\ 1\ 1\0\0?\0��\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն����X\Z\'���p|L�sN��\1e�}�Y%ZR|�\11(�J*I&+�rJ\18#�yI)%l�Z�,:��i�(��ϥ�)���J�����*hχ\18o�мI����$�\16Dj-� (�C\"�cI(s���_�L�:g��\v`w�I\ 5����9�s.w�Y���a\7f���C\"3:I��e�~��g,�\1dڮ�Ϩ�6�&�t\ 1�t�\ 3�/iK��xv<�v   #=�\13{�$�ѹ\16�Idу=��#�}�G���!�\0\0\0\0\0\0\0\ 2*|z�B��\1c6�Zp�]�s\"�A�ڝ\r�E\7f\r��{�b�\1d�Z�HI��j��>Eq�E�\14˒S.:t�7\19�Vg�5\15�u;��Ys=�YFZ�Rk��}����j��ʮHnl�Ifh���M6&\ 4\";M\15\13�DD�]��¿S\1cR��\1cc�\eh�B�\14�{��t��Ƥ\ f\16G��V�Mʽ4$�&2\ 4��\"����%���{̈}9$����489hۆ\ 4\1d��    @�e��崭�\Z��ط<��m�(v&�Ne{�ȵ\1dE�\ 4q\14QM\ 6I��\Z�uO�h���D<�\0\0\0\0\0\0\0qۍG\12fn\19\Z\18��\7fb��R���\18\ 69~�2w�\12��o\nstMT�x\1e=d��>��H��l�\16MT\1c���:�\ f!M2��a��L��c��/�Ri��Cr���\1c����\1d��T�\Z�u\15Υ$�F�\10IN��춆�q�5��S�,-B��c�^�op�}AW�\108�Y)�c?��T��2F\18i��դkI��$b�Փ�鐸�A�\e�\\<��\ 1�F\ 2��h�ŭ�ܿIk�\17)�3\17^�N�ٓ�wu]��k�U4�J�\17��8�W�*�F�7�`^U:V��ң�\15I%�\1c̷?��|����C{�Oh�[�:r�qğ���  ����0\\���\Ze0\\�ޅ\Z��.���\1f�RvZ�\13�NOI\n#��\15���O\fv���-ik�\1d\ eF\a���\1c\ e�o�;�E�I�\14���ձ�\14�5�\Z�Rv!,�\1e�\\4;����MyE\1e�3��t�a9��B��:̌�[�X�T���h_\"��r\194k��*�F\\��U:��M�z�\0�u#�\0�C�\0\0\0\0\0\ 2�>�f�\1cr���Z\\kp�q\ 5Ҿ.oU�u������q-S\a�CJK��PSǬf�2JJ��G�D\fYm���+>!҄�^�\16\n\'��/{}\f�W7\16��-\18K\1f;�K���kI��\v(�;T�F��\r��H̖J�\10\0��J�s\ 4j�\vK��\0��m\1f���p֫WV\'�\"Iٹ\12jTlx�;ҤO,R\ 6\15��Ԑǖ�\fedK����:�8���<)5h�\17y Ó�w        ��r*-�\ 50��\7f�����Bf��J&  u:fIV�r�\15:rjh.p�甴���9�\fM\1e��H���>���듲pg�BҲ4\1d:{-��RT�P�MHZ��Rw+|�)�D�qKєW2W��e�\10���j\ 6\1c�O{F|��aM)xh��\1c�ʴH��-�IF�\163捩Gِ\0\0\0\0\0\14�q���d\ e-�B\1f\\*�u���D�Z��nǮ~�4\19��gfG�y�N��-m�ݯ�\em(ָ����m����WW���IoԺ������w2I\18��HX%�Lza�֞X��Y��;\ 1�$�D�Q{}\12�54;9�)k3S��\1d\1f\16�2%-|Ĕ��\b��\0\11��E�ɧT|+2�B��B�H�U�y���������K>Yk�[\ZYN\f��\"ZyTGV\ZĢ5\12MGR�OO��&7���\v�;_��Ou��\1c[7���O��?�0�Rv�Vg\13#۔��+���E�1\16�[\11ٲ\0\0\0\0\0\ 2��;X��\Zqz�\ 4�qJ����2c:�#��\evIK^Fk4�B/�X���﹑\19\19\1e�E4�eh�M8�8(�:�\0<b\e[�M�=eMB3�\0    �\7f��\a���\0\0h�\13��4xrkꬓ��\"�Ƥ�O�?g�����_×�����Q�S��� o�9�3�ˉ��&[\15\7fw���g�n�<�VF�\1db\11\ 6f�\12����N�:\19�ɠ��\11\11Z*\0\0\0\0\0\ 2���\ 6�\\��.�\19۷��C\1c���\ e6����yC\11��2t2$��\183�K���\e\e��\1fX~B�7��tZ_`j�8��?&n2.�x��Iڙ\7f���\17��,�Ø�f6�1{�7�����\19\16=snd�;�\19|e��en��T�Ri-�$���2\"/�\0\0��j�\\�:Z�0�\rNԨf\1de8�\13�٭�\12\eLz�����$�A%\n�T��\\    \\�[*l��;\ZJ�jt�UeJ�\19������ק����a{1�1��\1d�\Z�\e.�VdϚ����Y�#���\1e�����J�p\'\"����gw�\1c��&�T��R�Xڌ��\0\0\0\0\0\ 3��c�{0q0оS��h�����<���7h������]I��UJ���D����:�g�\e{]BA�(���8�i����m��]b��;�be\ez�]��n@���.�.�Qs\11�{�G���2؍$j]�]��\7f6ꏇ{&�$��+e�\18^�\1c�X]ܤ�\1d���%�\15>s2ia���{�\b��C\19T��\0XR�J��������\adz�]���\ ed��݉�      � �,�1r�~�\1e�6���DdG��OB�g��&f)��e�+/�4�T�Q�j�����Ѱ�~w��c�8���ڤF\b�gT�ճ�G�[�M\')��?J\14�UDR)6v[�#E3��\1c�$n��=�J��K�\'�D��q1�8��򄭴��7�(��U\1f����ueL�����t�v2ҤT�K�[o���\0>}FH\0\0\0\0\0\ f\ eB��\0��\bLv�x(Ʋ�9�<K��ig\1c˘�(��E��m\15dߕ1�L��>3O\"\no�\18H�P��Q\15iJU�;G�\13\\/��e>\19����o\eQ�{hnW�\19^\0�S���8��{�\"Λ\16��JK\\�*��G\18��1)|��\'s6\ f��\1d@��M���o+@�\ 6:�e\buw;uY�*9���r�O\13l4��YL��Բ3Q#�\"5\19�E}�\ 4q�SS��G\ 5�HRb]{\1f~&�B\n�q@�wg\1ev�Q\ag_��=\16�rcW6�EP�j\"؊��v�ׇv�{\13:׎�V\r��}L��dD[u��_^�\v\7f?!y֑p<[L�^�Z}�ӵ�\e���\ 5\ 2k;[cJ.ɖ6���鲔��$/D��Y[�kwR��\12D���\0\0\0\0\ 1�.n���\17Nn��v\rv\16�sv�upVV6�;o̥��\11\11\11��\1fM���\'\18�x��8x�-��\1fa��\16���ES������l13K�\12\7f\v�Yx%���rJ��rR�Y�5B$�e�=4�_��ć�&��N\Z_�����k�\1c��H��Q;wdW/+�^&�����)5\13���i\17�(��\12�-�Z�<9sN���\15�.��\16j�M�   �#�p�9��h���ԥ\13�i�ʼn�Q=&\15�U\12�O�Qn�Q�Ԕl�a��\\�.��\e\\�\0�㴒�Mʮ�%y�2=�ޟ�\12]Z��B\1d˩�J$��\0-�\1d�F��X�\fR2�b�\19��X�01�[�#s;\e=�\Z\19\e\e\r&��QiOwM    Z�<�dJ2�\1fڀ��\e\1d#��o�\ 6�p\ 4M�Nӷ�w��8m�2��i�$��d��m�$E��jD�\1c����E��2�\ e��iC;�iwN1���C���\11�59��\"�~��O]����O�[��^T�f�1��\ 4!���\e�q�2y\17q��W�\12��K�Q�ө��\1d\ f\19y����\0\0\0\0\a��U��K\1e�r�X�2@��?bp�L�r+��d�057x������[S#Y���{m�̣4.��+�o5u�S8���F�\19\11�M2���\a\1d�h�/m2^��*+j2L�L���3,�}D\0���F�>�-:�i)t�\15\7f�Y��.�\18Ϻ�f��bV���Z�:Z��\12`W%\12T���3�>I��>Fd���F�-$�j#;*O$��)R�])\11}����[��d�\0\fz���~B�\1eпgG 4�L��=\ 4c��&n��3κu�6��[\12�8\12�e��T�Ҕ\e�.GUF�(�G��$^J�ڑ\ 2�\r��ſ���q��خ\1c��wZ���\r\18���n�����\e\ 5��Ù\1dL5>wv$Rb2{UB�?H\f���LAF�Li%`\ 5��\e�Tjѫ�Q��\0>�������\0\0\0\0\15��������SG\f�M%�B\15�I�y�[�뽊G?t/\1cǘ���P����\114�%    YT*���\">�a&}b��pij��\ 4a־x�[W�n��\16\ e��\a�b\'\f+�\1eH�%���L��3Ȭ�NC+RW��\nb��L�+�`\0\0\0\ f\ e\1f�!�MWp�᭭gk�&�4q��SG\1ee:O�-]1�Iw�#27������7�Q��%!�T2�C���\1f\ e0Ҵ>�\aMY�V8�#ch�V(��vv��\11����TN-��\1c\1c����\14~=I[��W�M5\7f\ e㿀�\1crn�u\ 5��e0�[\1d�Ν�\1d��X�$��!\ 4D��B�\ f��;0z>S%&Fxʗ1+cRղ�GB���)�r�]/q\fÏz\vύ����9��U/%,��/S�\1crC��j(�\\�d��$D���eQ\1c�ȵ��}B��j\15�+�n-�-��ܧem����3���뷐� \0\ 1�����q65�YRGX���:a:�\\�\'{V(�C�Ӫ���\Z����.�7p����\18�4�2��cZQ\ fz���_j6��{s}�A�Rrҋ������ӗx�\ 1^_է�$�R�#�N��+j}�\Z4hQ>�[����E�\0���\f�\0\0\0\0\ 1��\1dR�t�wؾ~�{�|�\0��0���        ��\"8\"M��/\ f�j��\19��9E��-�`អ\r-�[�,�&��oo��L�\13�)&��\r1E���E)<���q�d�\16ᛨYE���\ 1\19p�i�G#�Z��\ f��/{�ۢ99�1��$\11%,֪q�H\"˨T�q���R����\19\0\09_Ʀ]u\ f�1�\"@�Z��徕�M�ͿS#�F��k-��\'c�^�����bg\aYшk�Rw�_��$ؿ     E�\fϚѹ���c/nA+����\11=�b/\n#܋a=@\0\0\0\0\0\ 1�_��\0���uq�+p��Rb��if�H�F�^\ fʱ����\e\ 3�j}٩�#55�S����)�l\ 5�\"yP���������!�\0\ 1ͮ/1s�p���q4����\a?�\ 2۩�4�^��_2���De�\13\"�\1c?�k�͛��F�ԠGZa���uB�^w-��\fB�G���:l_��zK�\0\0\0\0\0\0\ 4\ 1�AX�/���\11����,�zO���n�{��i���l��O���q?\14~������\0�]]Ľ�Ҟ��        �B���?�(��\\levo\10\'��߮�l�������}�ؙG82����{��䏯��O]����������\e���\0\0\0\0\0\0D��~4�\'���!���FQ��{sW\\D�͒7-�s���^�{y�m����\ 3\ 68�\1f�J�(?�$m\15h{E\17v\'6����w⍪G/�Df[m�c��8�\0��ǿ�n\10Z@�Դ�o^ٯ(9��ܙ\Z��|�]����TG���fFC��\0\0\0\0\0\08s�|kBQś��ޭ*\eA�Z����\7f�:3�N�ߦ��e鷡$�w\18\0\0z*R�z����\ f����\Z���gW\r�S\f�\Z�U�kE��\16�ks����Cÿ���h[\1f�M��߀\0\0\0\0\0\0��׎JO��\ZO;�\'�0�g\v���yn\1cwd��OM�\f���n\0\0\0\ftQ*E�ב�\7f\7f��ˡ\f�\0\0\0\0\0\0\18\15-hթJ�Z4N��[S=�#2�#��[}O�g�\0\0\0\0\0\0\0\0\0\0\0\ f��',4,0,'','','',''),(77,0,21,'75859b10ebd73888','39e7b822c093a22f70de8782c7d652d4','2017-09-07 09:19:08','2017-09-07 09:19:08','','','Contact Photos','4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575','image/jpeg',80,80,2703,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0P\0P\ 1\ 1\11\0��\0\1f\0\ 1\0\ 1\ 4\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\ 1 \n\v\ 2\ 4\a\ 3\ 5\ 6��\04\10\0\0\ 6\ 1\ 3\ 1\ 6\ 6\0\ 5\ 5\0\0\0\0\0\ 1\ 2\ 3\ 4\ 5\ 6\a\0\b\11  \12\13\14!1Q\n\15\16\"Aq\17#���3Sa����\0\b\ 1\ 1\0\0?\0��M5A\10\ fQ\0��j�����ǯ<��\1e��_�T\ 4\a�@\7fZ��i����\149\11\ 3��\7f׾�*��)��{ڥ����J�Y�[6h��e�\v�,u��$�\1c1����t�KvD3%�\7f��g\11[I�\17\16\15_:\15kƵ�J�u��B��7��\'vX3i�Rj:�G���*�e�\0\ 6��<C\19S��ש\14�kGH8�Z���!�ܶ;\18HiQM�\f�pN\13���\1e��Z��$�b�\b\1d������~� ��]��vG�X��e�\0P̚�k\12�C�\18G3H�޽��O�/l��x\0�\a���\ e?>a�\a�M|�i������:{Lٞ�w,dRt� aK�B�f����\f\ 4\ 3�5���Ô��\ 25��\ 2\ 2b�%\ 1\ 1\10֡��\eZ�uZꅊqNL�����\192Õ�\ 5oY↚}L�VB�\0��\15�0���ւ7s\0�D�{I��N\n_�J;�)Tʮ>��)���UR�U���V�PlЏ����`�lD4S\16�M�8��\r�fѲ\ 4*H��i�P)CP���O\f3�{\ 5�a��%y��V�\ e)��yn��Yi\16E�\ 23�I�\19\ 6�Vh��\a��;  8�\ 6ݴʛG]��5�b~�=I~\1f}��vݐr��(��C����/m��X�H�r\1e\ eN*ߎ��\\==\1eZ�Q�ed���\ 4{��\\�����n��X�^¹Z���\ e2�T\aƓ�e�%W\"�\1f��\"��w\18FV\be�L�8$���@\17K�aM`9\ 4G�zv�i�e���s���^�q�Y���9���9(h��9�H��F�`�kd�)���\ 6��I$B��\1dr�\n\"n5�����}.��    9�l2�m\1f&\12�\n�b����\14+$V�`\ 3\n�\0++�\1c\13��9W�\ 4�0�h�q�q�\1c\a\1f�����\11\ 4G�\0G��Z�~.      ��׬c��\ 1\ 4���8\e\a�o\r�\12�O\17��5�b61T\Z\15EW�%B�NnTJU\172gfܤ�\b�lu遅-�r�߲�\e}M�{�2۞,�[�:�\0^2�֫\1e��A��DH.�a<��h_/���4�]W�R|��\'\b�ỴN��\ e\13*�.��\14�Ed�����\18�Q3�C��S\0�D\aYV�vÑ>\e~�X\7f{\18��\'?�\1c��,\135C�\ 2f�K�W�2�\ 5}ߝ$���+�O��\1f0T�\'cX����X��l���f��q�\v0�#\v�8�U(+�*�\18e\f�r�a`��[�J�\12p���rw휢���\ 1V��E�+$�z�!�\ 5�]�=�j33\18W\ fۮUȇb����7f\fj,�\13���׳>�NPH�G,y�\18\10�Q�\r�\v���u\11\1e�:��%Ü�hƙi����\ 1\'�l;��\"WI܅4�R+E\7f��n��Q�*?&a%:��6�\rU�M-��(\14\0\08\0�\ e?�\\��^\ 5���ᝠ�+�����>����*�\16)��1�P�P���a�$\ 2�b�:�V�p0�\b��97M��LN�!a-��\ f�oX�\0���y�L���\ f\17\1dY#*\15���\15_n�T~\7f\13%{����]NI${L�quI7i�0�\ 6��\1cq�iw\e\'M-��\Z�^���<��\19�]/)\10�u�\vNxU    �m���\ 3X{Ԭ�F\12Y�c(��Vk0M\10l��Y�l��Df]\16�O�u:�\ e�Y��R�0�+�Z�Z!�\rv�\ 3\16�[F���G&�(��-�D\e4j�h��\nR\10\05�۾ۍSw{a�\ee�;q\1dZ�\18��_ʴD�\1d��d�r�6�ͺ�T�=�J\v)�H(r&��   &���\1c\a\10��n�k�\ 3��      �\7f\fbXBٓ��\19GmY>�\vE�l�\'�x�|�5\12�\"F�r�O���&��\f�y%^\Zn�(�:ԓH\15�*�1{@b���\ 1\ f^\ 3��\7f\1e�\\k�!令#�\b�\0���#�X�3]Rz�l��\f��\0��    �#�\r�D1t�[gfZB*�Q���\"q*�у�j�j$�V�ZbE\13\ 3��\f�YP\10Q\15�8��~1�$\14\fs8�Xh���FD�G7M�|ls\ 6��ѓ\ 6-QI�6mRI�V�$�       �$�P�}4��.����!�^�5\n�⾪���\r��\ ff�YT�}ګEM�|�U\13\ 3\bs�c\13�=�\ eG�m������K;Lcw��O�0Q�=�{h��c):Ě       \ 1c\ 2r�\\����\1e���n\ f귺��{�i��U���_7�\1d&��L��7)ӷ~\r�K�\1d���^f�X�,%_q8Z�)\16��+���\16�_��#�v,��d���S�ѓդ�\e�y��y���\r�\17�?�\ f�^Rv��Y��vS\17\10�b�L�>����E�e\f^\ 1\17/q:\ eV!\a�Y���d7\17��M4�V }��+�J��ض��\vWH\v�K*��$ y*���Q����1J��#��M\ 3\1c�P��H�`!C��\a�~�T��7<\b��\1e��_�]CL\7f�~I����o\ fݒ���U��\14\0\15uE������}�       �V֘~��\f �$\ 2R�����M4�P�C\19�����/\ ea3-�dLn.���\ 4�c��dۛώЌb�\148�0�b鮸4n\ eN�WJ��uW\ 4�ި�c�Q\ 4��\1d\11\13�rd�\" ��TJ\0*\18G���i���͸�+�E1vF�hG\1d�敲�MU\10\ 3\7f�uQIC\0qɓ/!�\ 3�ֿ��',5,0,'','','',''),(78,0,21,'75859b10ebd73888','39e7b822c093a22f70de8782c7d652d4','2017-09-07 09:19:08','2017-09-07 09:19:08','','','Contact Photos','4b7db531ad1920a7cb8fb76aed46ddd9-4.jpg?ts=1504775575','image/jpeg',48,48,1755,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\00\00\ 1\ 1\11\0��\0\e\0\0\ 2\ 2\ 3\ 1\0\0\0\0\0\0\0\0\0\0\0\b  \0\ 6\ 1\ 4\a\n��\0.\10\0\ 1\ 4\ 2\ 1\ 3\ 3\ 3\ 3\ 4\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0      \11\12\13\14\n\16!\151A\"#$23Qa��\0\b\ 1\ 1\0\0?\0���3�c\19�s�\18ǜ�?�1���{�p\ fK����]�_�\1f�r��\0BsK�]�n\v4d�\7f\ 6fZ%\ 2ӣ�\v³+\1e�r0�m�&��i��-��<u��\v`��Xh�K\ 2ɤU-y�͎\roc��e�ښ�B$���.�>jA�g>���%hM����%�C\1c¿p��O!����6���x�i�e�5�\ 5��H�)LW�l�e����!k��:\14�T���h\12�q\ f2ڰ���NݴM\15�j�6�\10A��7�?qY��ˌ�g�Z�[D�En�\17&Z]-�mnB��a!�[v\\�h��2Ba\ 3RI?�\16��\1f�<~/�\17\ay=d�G����\e��3�JM�[ݨ��\10`   ��ԭy���N�\ 5�\0ɚȥ֐Y�ʈ���O`=�y��|\vҼ�&�-F�m\12f��+`<�\11q{\ 2�*En՘g\b���$��Y��`��P��#\ 6I%�;�<�z�+��<\e��#ۣ��g��dl9�\10n��&���\7fek�ٵ���)X�C\16�dz�D���\ 1�0�N%HiI�m���R/hvߠ��)5>B�~N��M�X�}��\']�؜�\Zlcޒ�\12Z��FQ.6��?\11`       �/����>�>J[X㦣�`�3���l8m%X<�=�j�2.�L2�1\"�\10���D�7�0�Ĉ2�+�I1��Kw����n^\16i>%T%�cƺ�x�]�l�_�/�C\1e��X�\11JR�\ 6B�y��\ 5Ÿ�Q-�+μ�+ug�\\�y�J7\1et���{2U0�\1dOH��m�YF]q�Z�a\12�$f\13�d�B\a����2�F<��c.:�e`��Z�_���|������)�n|\7f\ e��KQi\Z�WK�\12�y��#Y,\v6��6\18\17c&,\10S�MP�Δ�3\14ę��;F�imE�M�I�MiF��܎L��N�W����J!O�\12Vi\b��2zA\n(�$�G�#\n%�{�^s*]���p��\\�2n�Et��ܬ�fݏ�Z\Z�m\0�:\1c��2%�.�؁D�3)�[F�\ 5�����a\f\1d��\1c�],2   ]�ˆ�ۮ��\v�Z�ϯ*kj4=���N1�����-c��;l�:\ 1\ 1@�Ϋ+�������O�WW��!א^EJGNFG�Ü$�L�B�FI\0CE�x\ 6��C42�Z�$R�u��}����Z\1cB��c=/>�z����\1d��XK�3x�q�,�8�+�\1c��-�#��?*\ZF���\ 5��V)/%xR3�e�\ 60�\b(b0�\8a;#\f;\bKl��\r%�Ye�c\bCM6���\'\18JP�%8�1��z�Wm�J��e�Z⁜�[�&+\16\18i!�.>V\ ez8��X�E}+d�\r\0�\ 6!�P��eաi�U�t\12v��O�;}qj�e0åi��\15?~A�\1d-\11��٘H �q�-�b>\f\18�\Z�+9�#7�x�1�\Z�\Z�e�\ 1��=`�t,���\n�\0\"\nn:x%zs�Ϥ����?�z|��գ\18�c���u��S?�\7f���K��R+1Uh�a���hTc\1e�%\ 4\16A��1�>?�B�\0����',6,0,'','','',''),(79,0,22,'75859b10ee09e3cc','19065c444ea257e137e46e890d2c7001','2017-09-07 09:18:24','2017-09-07 09:18:24','','','Contact Photos','4.jpg','image/jpeg',175,175,5486,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0�\0�\ 1\ 1\11\0��\0\1e\0\ 1\0\ 2\ 3\0\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\n\v\ 4\b    \ 2\ 3\a\ 5\ 6��\0B\10\0\0\ 5\ 3\ 2\ 3\ 5\ 5\ 3      \a\ 5\0\0\0\0\0\ 1\ 2\ 5\ 6\ 3\ 4\a\b\11   \12!\n\13\151A\14\16\"Q�aq�\17%23R����\18#$&5B�Es�����\0\b\ 1\ 1\0\0?\0��\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r*Ն����X\Zg���p|L�sN��\1e�}�Y%ZR|�\11(�J*I&+�rJ\18#�yI)%l�Z�,:��i�(��ϥ�)���J�����*hχ\18o��>$���Œd\v\"5\16ɐ\14b��o���9���/צF�3�qN��;뤂��������9�;߬�Kka0���Z��\19�$�Բ��Ob3�g\ e�Wqg�U�l�W�\0ĺQ��\17����<;\1eJ;\ 4��剽ŒTh܋}��h�����>�#���\10�\0\0\0\0\0\0\0\ 1\15>=]�Xw\ e\eg-8i��9�u����N�梿���ݱ^\ e�-l$$��5Rt�\"�����e�)�\1d:G\e��+3Ϛ�ͺ���,���-d�5�ܾ��n~5\7fSeW$76sS$�4SME��\13\ 2\11\1d����\"\"O.����_��)Y\8e1�\r�X!M\nm��y�Kl�R\a�#�k�M&�^�\12o\13\19\ 2|M\11L}Ij���O��D>��OJ��\Z\1c\1c�m�\ 2\ e�i��v2��r�VӍB�l[�rd��D�;\13k�2��dZ���\ 28�(��$���h:�״y}\7f\ 2\1e`\0\0\0\0\0\0\08�ƣ�37\f}\fNsſ�]�\19E�c\f\ 3\1cpJL�򄩵�\9c\11U<�\a�Y)�O�&�$.�!E�Q\a%��N�C�SL�8�d��#z��9�㔚g,�ܮ��G w�7GggU)F�]Es�I-��D\12S�:{-��\1ce�|jw\14�K\vP���䗴[�<�PU�\ 4\ e&�Jw���iU4�L��\Zno5i\Z�j��\18�ud�:d.-�n��\ f=9�tр��Z!�kj�/�Z��rL�׹S��d�]�Wg�\Z��M(R���%�#\15劰Q���\18\17�N��j���ERI\7f�3-���_=�\7f#\10���=��\ e���q\'�u\7f\ 2c���L\17-e�ƙL\17#��F�t�����G�����\ 4䓓�B��eEk2=\13\1d��\7f�ZZ�\aC���������3\ 3\e���xdRh�#\'�5ldE(�nF�ԝ�K/��\17\r\ e�9c���^QG���4�&\18N\7fjP��\ e�#=��\16:�)<2�\17ȧ�܆M\Z�3J���\"z�N�{�n���]H�\0�!�\0\0\0\0\0\ 1X\1fl3W\ e9\7f_�.5�W���_\177����v��츖��㡥%�k()��3Q�%%MJ#�\"\ 6,��|h\15\10�B{�i�\ 5\13������c+��r�\16�%��ɥ�Mj5���Z��V#Isӆ��$fK%M\b\0j�t��5s���\7f�n6���e8kU��\13ݑ$�܉5*6<F\1d�R\'�)\ 3\n�^�Hc�D�2�%�Ys�F�g�W�\1e\14��x�N���a�ջ��O�\15\16Ƃ�c��mn��!3\\|�&      u:fIV�r�\15:rjh.p�甴���9�\fM\1e��H���>���듲pg�BҲ�:t�[I줩��*���\17¤�V�pS�\18◣(�d�Bŗ4B.� �\18su=�\19\v=�4�ᢙ�K\ eAeZ$qu\16餣}�\19�Fԣ��\0\0\0\0\0\nY��No�\a\16�!\ f\15N��j{\"F-zy�c�?s\Z\f��I3�#̼˧Q�\16�����\r��k\\]���6��Pꫫ�Ur$��]MIN�^|��$�^u�,\12ݦ=0��O,Vt,�p�\1d��]�I(���F\Z�\1d�̔�����\ e��Q\19\12��bJID�l�\0\b����dӪ>\15�o!Sg�[$i*��<�\\Qng|Q�u��,�,�\ 6tu�-<�#�\rbQ\Z�&��v����\13\e�c�\ 5\1d��٧��u�-����\'��\1f�B�b);C�3����ha��Kr\"ۘ�r-���\0\0\0\0\0\ 1K�\1d\7fy�8�q\ 2a��^���\191�[\11�؍�$��#5�K�\17�,JL���Ȍ��a��L��s�&�[\1c\14d�\7f�1\r�צ�K����\19�ɧ\7f��=��\0\ 3Dx��a�Ó_Ud�ǁ\16�5%�~��<��&\ 4��ܾ^�G�⏚��_�K\7f�ω�f\\O�2ث�����=�t��2�7\f��\10�36��FffJw���&M\ 4^DDV��\0\0\0\0\0���A��<g�|K�\ 6v�����60�C���+}�P�\7f\f\f�%��\f\12�>�����-G�\1f��M�:]\16��\Z�N/&�ɛ����3:Rv�_��?]����%0�<Y���^��k(㸆E�\\ۙ*��_\19k|l�[��U7T�K}�$d�̈���\0\"�ګ�#\ e��g�0CS�*\19�YN)��vk{����\1e�9�=e�:�IB�\15,~\17\ 2W9\16ʛ1�Nƒ�Z�%UYR�Fu==72�����>��^�w\fg�\ah��F˭\15�3橯c�\16`��j�G�f=h�R�\1c     Ȫn������G)#I�\15&e\14��6�96\0\0\0\0\0\0�\18\1e\1cL4/���6v91��!�\r�)�,�~*�Rg#UR�ij�\"��rN������P�kJ;�m�\ e>�b���\ed&\17X��\ e��\18�Fޭ�b�\e�48�K�K�T\\�h^�Q̶#I\Z�hWe+_ͺ���ɧI;�\n�\7fF\17��.V\17w)7\a|<�f�d�O�̚Xi��\1e�>�\10�U-\7f\14�R��/��\7f1�\ 3���.�t��2fs�n��\ 4\10i\16E��u?b�D�V��2#�Ca��u3��3\14�q2�\15���j�w���\7fZ�����qN?;�^��X���R#\ 4g3�Dj�֣��&����\1f�\nI*�)\14�;-�\11����x�j�7A�\1e�%Gi��\13ŢV�8��\1cTN�BV�ER��\14e�*��������W�ZMQ�i;\19iR*h��-����\0�>�$\0\0\0\0\0\a�!}���\bLv�x(Ʋ�9�<K��ig\1c˘�(��E��m\15dߕ1�L��>3O\"\no�\18H�P��Q\15iJU�;G�\13\\/��e>\19����o\eQ�{hnW�\19^\0�S���8��{�\"Λ\16��JK\\�*��G\18��1)|��\'s6\ f��\1d@��M���o+@�\ 6:�e\buw;uY�*9���r�O\13l4��YL��Բ3Q#�\"5\19�E}�\ 4q�SS��G\ 5�HRb]{\1f~&�B\n�q@�wg\1ev�Q\ag_��=\16�rcW6�EP�j\"؊��v�ׇv�{\13:׎�V\r��}L��dD[u��_^�\v\7f?!y֑p<[L�^�Z}�ӵ�\e���\ 5\ 2k;[cJ.ɖ6���鲔��$/D��Y[�kwR��\12D���\0\0\0\0\ 1�.n���\17Nn��v\rv\16�sv�upVV6�;o̥��\11\11\11��\1fM���\'\18�x��8x�-��\1fa��\16���ES������l13K�\12\7f\v�Yx%���rJ��rR�Y�5B$�e�=4�_��ć�&��N\Z_�����k�\1c��H��Q;wdW/+�^&�����)5\13���i\17�(��\11�[���xr�I�W�+�]}f,�\n��\13^G��,s���\13���J\'8ӫ�\13\ 4�zL+Z�%l����$�Y�(�:�\19��]��6��\0e�i%v��]�J�\16d{o�?�$��{�;�SؔI-�[l;�\16�Ǣ��\18�e�Ŏ3\17l�b`cn��F�v6{\nm\f퍍��JZ�������\\��dJ2�\1fڀ��\e\1d#��o�\ 6�p\ 4M�Nӷ�w��8m�2��i�$��d��m�$E��jD�\1c�M�r\"�b�v\aKȴ���4��\18��s���܈�\Z��S�E�NU\'����|�{u��\ 5�H�n�\18�0B\1c��a�G\1c�\'�w\e~�x�-���5\1e�:�\1d���\11�����@\0\0\0\0|�(�\\\7f����-e�s$\v\1cc�\'        4�W\"�+\16H�\ 3Sw��:�\19�%�25�Ȉ׶ܜ�3B�\r���W\\e3���4hё\19��/�Z�q�&����%�-¢��$ʄʺiS2�g�@      +��m��RӭV��NQ\\\17�5�[B챌���h�x�%kk9\ 5�����1&\ 5rQ%Hj��<S����fJ�o�iB�H��3���IY��*Eґ\17\7fO����c$\0\0c��\0w��\15����:9\ 1�\"d=y�#\1e_M�3wg\19�uӬ1�N\12ؔ����.��6���ar:�7�D\12?��\"�U�Ԉ\15Xmn�-��f[��>�p�\ e\e�՗��h����tזf�\14��,��\1c��a��\"�\11�ڪ\14A�@d�&�b\n4�cI+\0-��R�V�^��\7f��_g��G�<\0\0\0\0Wc����3�M\1c214��\bV9&\19�n���)\1c�мs\1ec73MB/\aǬD�<�%eP�J\1fX���������\ 1���G�\11�Z��!m_U���X:�,\1fm��0�\10y#𖦳U2SD�\"�\1d9\f�I^��)�#�\r2��]�\0\0\0<;�~�\ ebj��\ f\rmk;^I5\19��]2�8�)�~�j�2K�!\19��d\fd�\17����FI)\f���]�\1f_���8q�����:j�:�ű\e\eEڱF����n`���=Z�qmL����}��$����J��J�Zi��w\1d\ 5h�tK�->�)�����t��%\Z�y&��\b\"$�r\160~Ʊك��)23�T��[\Z����:\15�L�L��*�{�f\1c{�^|m|D5��Wt�R�y)d��z�X�\1c.�QD��&G\19\"$����#�Y\16�T/�R���B��rMŵź�\e�쭶�}�>�{���v�\1f�\0\0>_��;.&ƹ\v*H�\15\18�6�L\'R\v�$�j�\12huzuQ\1e�vCQ���EҦ�\12:y}�\1dƚ�U�,kJ!�Y>}��Fк/no��3�NZQw35\19\1c�r�\12�+����d�JRDv�е�mO��F�\n\'�k~�|�H��3�\ 38\0\0\0\0\0c�GT��/]�/����_?��F\17�9�2\11�G\ 4I�\11���MZ��1�\'(����l\1c3�A��KuŒ��RM��4��w�$ԙ!�(��RH�\'���~.3,���3u\v(�s�@#.\12m1H�wK[���:��v\etG\'9&2�D�$���N0�\ 4Yu\n�n4�:J_���# \0\a+��ˮ��&8�H\Z�W���ҾSi����dr��؍e��d�}K���\11{�L��:1\rqjN���ě\17�(����Z735<Le��%u2R�\"\'��E�D{�l\'�\0\0\0\0\0\0=\v�W��1Wή1�n\ZݪLV��,��\15�ګ��V0��^�`q-O�52df��Jy|\18�e9\r���O*\15\10\19\1f���$=�\09���.s�\18\Z�\0�&�V�� ��[u;�\vۺK�_\13Q(��dȽG\ f�\Z�3f�k��u(\11֘j�\0\']P�W��s<\ 3\10����\0u\ e\17�{n���\0\0\0\0\0\0\ 1\0~�V-K�h�eb*�K \1e�������dj��)���{t�O�\1f���$=�\05�Wq/\7f4��hBhи��O��.v�\e\19]��    ����+�~i?�q\ f�{\13(�\ 6\\1\7f\1d\ f|r~q�\\����I�?s>��T��_�s��\0\0\0\0\0\0\b��Ɣd�~�\ 4?T�\0��2}��nj눝\19�F��\7f��\v��o1-�\7f���y��\19\ 3�    ]�\a�č��\ fh�����v�9n�Q�H��Ȍ�m��{��\1f�>\18��m�\vH\11:�����5�\a;�{�#RT��K��y~���2����v�\0\0\0\0\0\0\a\ eu�hJ8��=�U�Ch<�^;������F\7f     �[���L�6�$�\ e�\0\0\ fEJ]�]�z\7f��2��ƣ�s\19��zT�8ƭ�{\Z�x������*P���}��\vc�鷐��\0\0\0\0\0\0\Z\7f���I�7�I�wD�\0&\12\f�q���-Î�>�鿡���\r�\0\0\ 1��%H���?�����yt!�\0\0\0\0\0\0\ 3\ 2��\Z�)V�F�ַ�jg��f^D{�\vo���x\0\0\0\0\0\0\0\0\0\0\0\0��',4,0,'','','',''),(80,0,22,'75859b10ee09e3cc','19065c444ea257e137e46e890d2c7001','2017-09-07 09:18:24','2017-09-07 09:18:24','','','Contact Photos','4.jpg','image/jpeg',80,80,2703,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\0P\0P\ 1\ 1\11\0��\0\1f\0\ 1\0\ 1\ 4\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\ 1    \n\v\ 2\ 4\a\ 3\ 5\ 6��\04\10\0\0\ 6\ 1\ 3\ 1\ 6\ 6\0\ 5\ 5\0\0\0\0\0\ 1\ 2\ 3\ 4\ 5\ 6\a\0\b\11  \12\13\14!1Q\n\15\16\"Aq\17#���3Sa����\0\b\ 1\ 1\0\0?\0��M5A\10\ fQ\0��j�����ǯ<��\1e��_�T\ 4\a�@\7fZ��i����\149\11\ 3��\7f׾�*��)��{ڥ����J�Y�[6h��e�\v�,u��$�\1c1����t�KvD3%�\7f��g\11[I�\17\16\15_:\15kƵ�J�u��B��7��\'vX3i�Rj:�G���*�e�\0\ 6��<C\19S��ש\14�kGH8�Z���!�ܶ;\18HiQM�\f�pN\13���\1e��Z��$�b�\b\1d������~� ��]��vG�X��e�\0P̚�k\12�C�\18G3H�޽��O�/l��x\0�\a���\ e?>a�\a�M|�i������:{Kٞ�w,dRt� aK�B�f����\f\ 5}��z�a�o�\1f-fr�����@@D5�\7f\ 6֮\1dV��b�S�&��-�\ 6L��m�[�x���S!�����\ 5d�\"ἵ����1�/��n}����\12��U2�����e&�\15T��`a�U��\e4#�``�!\e\11\r\14ũ\13l�>5�t\19�l�\n�(\"�i�\nP�)�\'��\f\1e�r�c-�^j�\15���e�\1e[��\16ZE�t\0���l�A�-��\'!\ 1�~��N.A�m2���p�\rjX��OR_��\7f�]�d\1c�r�8�\10�$+�\'\v۬�<m�1܇������G/OG��Td\19Y+s��\1e黗-�쭤��}\16;W��V��lC��U\ 1���b�Uȴ��)H����\11��\19e�!�\ 4\16/�\ 5��SX\ eA\1f-zv�i�e���s���^�q�Y���9���9(h��9�H��F�`�kd�)���\ 6��I$B��\1dr�\n\"n5�����}.��  9�l2�m\1f&\12�\n�b����\14+$V�`\ 3\n�\0++�\1c\13��9W�\ 4�0�h�q�q�\1c\a\1f�����\11\ 4G�\0G��Z�>.      ��Ӭ[��\ 1\ 4���8\e\a�o\rb\12�O\17��5�b61T\Z�EW�%B�NnTJS�d�͸\13�\"a�ۦ\ 6\14��˧~��m�7\r���nx��nd��x�\eZ�z�1\ 6��\11 ���\ f��|�#;��Mu_5I�7,�\"����;w\b8L���\v\14SY\15�7ڪJ�c\11D��\ eS        L\ 2Q\10\1de[��\ eD�m��a��c�ܜ��r\16L�L�\ f\b        ���/m_�˘\15�~t�F�P��?��|�R0��c[�\17�w\1dco\19�W\ f\ 6u�4,Ê�.8�%T����La�3\19�兂21o�*�I�B�e�߶r�\ e�8\ 5Z;A\17H��q먆�\17�v��;�61���a\\?n�W\"\1d��\ 6J�ݘ1���\ 4N��+^��%9A\"�\1c��tb(C�GX7|.{\13m�Gt{�ꧼ�\ es\r�\Ze�jR��\ 4�5��\16|�]\'r\14�1H�\15\1fŻ��F\f������gl�45V%4�/\14�P\0\0�\ 3�8�\0�r�Mx\16�73�v���ۃ��(�\1e+�0�LX�ߘ�QC\19B����`�\v��\14��[���0\"�d��6j�1:������>��c�\ 33c��2:sH>p\\ud��V.���U}��Q��L��>�C�u9$��2���$ݦ�\94\e��q�i��l�4���j5z��h���gQt��C���-9�T\']�\16�l\ra�R�5\18IgM��s)Y��4A��5fѳS�\11�tZ%?\19���:\ 5f\ 2�J�ð�Ujuh�P5��\fZ\ 5m\e\ f\v\11\1c�,����!\10lѪ)��d)H@\0׏n�n5M��;����uk8bێ9\7f*�\128w\b��\1d�8�\v6�\18��{^�\16Sl�P�MgL\12ISwg8\ e!\1f\ e����\a9�\13��\0P\18İ��\'e\ 42�ڲ}�\16����O�����j%�D�`�V����M��\19f�J�4�jQ�}�\16�N3�*�1{@b���\ 1\ f^\ 3��\7f\1e�\\k�!令#�\b�\0���#�X�3]Rz�l��\f��\0��        �#�\r�D1t�[gfZB*�Q���\"q*�у�j�j$�V�ZbE\13\ 3��\f�YP\10Q\15�8��~1�$\14\fs8�Xh���FD�G7M�|ls\ 6��ѓ\ 6-QI�6mRI�V�$�       �$�P�}4��.����!�^�5\n�⾪���\r��\ ff�YT�}ګEM�|�U\13\ 3\bs�c\13�=�\ eG�m������K;Lcw��O�0Q�=�{h��c):Ě       \ 1c\ 2r�\\����\1e���n\ f귺��{�i��U���_7�\1d&��L��7)ӷ~\r�K�\1d���^f�X�,%_q8Z�)\16��+���\16�_��#�v,��d���S�ѓդ�\e�y��y���\r�\17�?�\ f�^Rv��Y��vS\17\10�b�L�>����E�e\f^\ 1\17/q:\ eV!\a�Y���d7\17��M4�V }��+�J��ض��\vWH\v�K*��$ y*���Q����1J��#��M\ 3\1c�P��H�`!C��\a�~�T��7<\b��\1e��_�]CL\7f�~I����o\ fݒ���U��\14\0\15uE������}�       �V֘~��\f �$\ 2R�����M4�P�C\19�����/\ ea3-�dLn.���\ 4�c��dۛώЌb�\148�0�b鮸4n\ eN�WJ��uW\ 4�ި�c�Q\ 4��\1d\11\13�rd�\" ��TJ\0*\18G���i���͸�+�E1vF�hG\1d�敲�MU\10\ 3\7f�uQIC\0qɓ/!�\ 3�ֿ��',5,0,'','','',''),(81,0,22,'75859b10ee09e3cc','19065c444ea257e137e46e890d2c7001','2017-09-07 09:18:24','2017-09-07 09:18:24','','','Contact Photos','4.jpg','image/jpeg',48,48,1755,'����\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0��\ 1\ 4Created by Andi Stadler (https://snarl.de/profile/andi)\nThis work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.\n��\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1��\0\v\b\00\00\ 1\ 1\11\0��\0\e\0\0\ 2\ 2\ 3\ 1\0\0\0\0\0\0\0\0\0\0\0\b \0\ 6\ 1\ 4\a\n��\0.\10\0\ 1\ 4\ 2\ 1\ 3\ 3\ 3\ 3\ 4\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0      \11\12\13\14\n\16!\151A\"#$23Qa��\0\b\ 1\ 1\0\0?\0���3�c\19�s�\18ǜ�?�1���{�p\ fK����]�_�\1f�r��\0BsK�]�n\v4d�\7f\ 6fZ%\ 2ӣ�\v³+\1e�r0�m�&��i��-��<u��\v`��Xh�K\ 2ɤU-y�͎\roc��e�ښ�B$���.�>jA�g>���%hM����%�C\1c¿p��O!����6���x�i�e�5�\ 5��H�)LW�l�e����!k��:\14�T���h\12�q\ f2ڰ���NݴM\15�j�6�\10A��7�?qY��ˌ�g�Z�[D�En�\17&Z]-�mnB��a!�[v\\�h��2Ba\ 3RI?�\16��\1f�<~/�\17\ay=d�G����\e��3�JM�[ݨ��\10`   ��ԭy���N�\ 5�\0ɚȥ֐Y�ʈ���O`=�y��|\vҼ�&�-F�m\12f��+`<�\11q{\ 2�*En՘g\b���$��Y��`��P��#\ 6I%�;�<�z�+��<\e��#ۣ��g��dl9�\10n��&���\7fek�ٵ���)X�C\16�dz�D���\ 1�0�N%HiI�m���R/hvߠ��)5>B�~N��M�X�}��\']�؜�\Zlcޒ�\12Z��FQ.6��?\11`       �/����>�>I�X㞣�`�3���lHm%X8�=�j�2.�K2�1$�\10�����7�\ e\ 5�2�)�I1��Cw����n^\16i>%T%�cƺ�x�]�l�_�/�C\1e��X�\11JR�\ 6B�y��\ 5Ÿ�Q-�+μ�+ug�\\�y�J7\1et���{2U0�\1dOH��m�YF]q�Z�a\12�$f\13�d�B\a����2�F<��c.:�e`��Z�_���|������%�n|\7f\ e��KQi\Z�WK�\12�y��#X0\v6��6\18\17�&,\10S�MP��\14�;\14ę��;F�imE�M�I�MiF��܎L��N�W����J!O�\12Vi\b��2zA\n(�$�G�#\n%�{�^s*]���p��\\�2n�Et��ܬ�fݏ�Z\Z�m\0�:\1c��2%�.�؁D�3)�[F�\ 5�����a\f\1d��\1c�],2  ]�ˆ�ۮ��\v�Z�ϯ*kj4=���N1�����-c��;l�:\ 1\ 1@�Ϋ+�������O�WW��!א^EJGNFG�Ü$�L�B�FI\0CE�x\ 6��C42�Z�$R�u��}����Z\1cB��c=/>�z����\1d��XK�3x�q�,�8�+�\1c��-�#��?*\ZF���\ 5��V)/%xR3�e�\ 60�\b(b0�\8a;#\f;\bKl��\r%�Ye�c\bCM6���\'\18JP�%8�1��z�Wm�J��e�Z⁜�[�&+\16\18i!�.>V\ ez8��X�E}+d�\r\0�\ 6!�P��eաi�U�t\12v��O�;}qj�e0åi��\15?~A�\1d-\11��٘H �q�-�b>\f\18�\Z�+9�#7�x�1�\Z�\Z�e�\ 1��=`�t,���\n�\0\"\nn:x%zs�Ϥ����?�z|��գ\18�c���u��S?�\7f���K��R+1Uh�a���hTc\1e�%\ 4\16A��1�>?�B�\0����',6,0,'','','','');
+INSERT INTO `photo` VALUES (1,1,0,'9305bf00a1f6a976','59483894715bf00a1f6a24a891914929','2018-11-17 12:31:27','2018-11-17 12:31:27','','','Profilbilder','person-300.jpg','image/jpeg',300,300,11007,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b        \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 1\ 2\ 4\ 4\ 3     \0\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b        \n\11\12\13\14\15!\16\"1A#3BQ\17\81\82\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/ñ\1c\Ü3\19\Î\"u\ÝOX\ßGøX³õ®¦q\æ\çÚ­²/\ê\91\1f\7f+òxß\8c\â[VJ$<Fuݼ  \17W\95\93\9e\ÖÈ\81}¬\Ô\Ú\ÖË\8c3\18$xI\bò£{\Ì>°\1f+\\\81c|\1e>o\ 6ðö©b_j\8a\Êm\0»&\ÑQ\17\â<\àE\Ü-­A\89²Zv½\í\97\12\82£\19\v\99\1c\91É\8c\18\87Ô\8f.y\9fò¡\Í\ÒM+z\ïGa\ 6ò\Êü¦\ãJ\Þ&ñ£\83\9c\àQ\87\'\8eÛ«\Í|0³\â&G\91(\ìp\Æ<\e\ís0\å\æz\87y|\9br\16\ËS§h]\Â\ïnñ¸\ßH|j=[P\ì\17`vm\96\æPÀYE\8fSGM·M´±\90\Ø\Ñ\Ï$\82\87\14\Äh\0S9¸\18\Þ\ìJ\ëÇ\87L}X\1c¥IQ´C\í¯$õk\8d®gDÌ\9b\ eÁ\í:öÕ¼J¦t\\\1cWU¼u}A¶\ÚL\ÈJsC\ÍV\Ñm©Ø\82P¦b@£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8d\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)AT\É2\Þ1>CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ð\ê9\ï¶WPKúg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ekþº\ê8­5½\84\ç7\ã\11ð`\Ý\12\rf\9d\ëòa\Ü\ß#\9b\Îw^\Õs\15\Þ\é\16\1d\8c\8b\1dc\8f\9ej^2\Ñ\Ü|\Êö\ e¥¦\82AaB\ÄvN\9c\18\Óg\16\Ê\Ü1¦Ê\8b\8b,\Æ3Å\9c\vE!_\11\1e\9d¾\Úù=\97U\É;\0\'uûª\Ù,)E\åý¢£%´\ß\"6@M:«\8c\fQH\94Y\15\8f¶Y\Æ}\14b\Ù\ÓÏ\85\af\83ú\88\á\Ù_\ãÿ\0\ÄOEüm\ê1):\í\Ãt\ 1\Ü^\b¸\Øy{l\85\ fc\å\1d\96d|¸ø4Í®|r\ØÅ\86\19Ç\9d&ª²\19\87\Z\98s\8d\n\ e[\17\â\Ìl\Ñ\11\11\11\11\11\11\11\11\11\11\11\11\11\11\11DGÔ\83\ 4\'B\èlzu\Ô\ÛJùý±\Þ(Iü]¾\bµöu\Ü\a¬\Ù\a\ 3l\ç@~d\82Ç\90­BR7[¦\9c\ 2VÕ¼\12®6`\1e,\18z\Þ\×X®×µ\ì\Û\Þ\Í}¹\îwÖ»FÙ´Zͼض+ɧ²·º·²;\äα±\9d%\ä<\99RNG\90¥#ó\9c\ç>\Øön1\8c|\ flþß·õýñÿ\0¾=ó\8f\Ûþx\Î?ù\ÂüSÁôóúg\83¿À\Ó{½\äKI˵\19\8f\7f\Ã=k\Ùa\98\8dó\Ë\à\î\1c³S(#x£\ËkY&\9bN\91\ìø\Ñ\1e97\83m\Éñ\ 3\86\8e\8a\9bY§®\×õÚ¨\14\94u\11E\ 6²¦²(¡@\81\10\8c\11b\81\8c\10\86\Ü{\çÙ­\Ç\É\ÙsÝ\9c¹\Îv~²\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\Ô\ f\9b\9f&\Z\ï\8bÎ\8do\\\Ì9A/0\î\9f\7f\1dp\ e¸ö4¤º\ä\9bxF|i\ç\ 3\äC\Ã\éuXm.Á°¼S\ 34Uq\nú\ÑÊ\9føñ\rM\ï%rVû\Ì[ö\Ù\Ê<¡µ\Üo\1c\83½]\ÌضͮþVe\Ú\Ý[\Ï\'\Ìòd\13Ù\83\10\Ø\Ü2<8QF\b\83\Z¾¾4X1£\Ç\17G_¹\Îsýsý½¿\å\854OKW\83¦v_x¯ò\aÚ\8d3\ï\à~9¹\11¸\ f\89\97\Ç\ä\îB¥\962¿r²¯\96\1c\0º\86©!£ý\b¹t·\Ù\ß\ 2D\ÌE®\1du\1d¼\ë+@\0E\0cF\b£F\8c\11\82<p\r\81\ 4p\ 5\98\18\82\11\r­\18\84!µ¬\18\ØÖ±\8cn\Z\Ö\á¸\Æ\172\"\Ã\î\é÷Ç«\Þ>8²72ö·\91\99\Ç\Z\14Û\81\ÐÁ±e%\Þ\Å>\ÂÔ\81q\Û\ 6\97^\83cog/\ëo\Ë\11+\áÉ\98\æe\Ædw\80\12J\18ýów¬OÅ·\1eGi¸\9a¯\9b{\ 4oq°\915\í\16Ï\8f\8b\87¼\8ec\9e\"rL:\b\8e!ü\n÷\90À\91\9ce\ì\14B9\8dû1f\'­Ó¨/\95\86O\égdcBù{fDM»\8c&\Ê\Ã=ñüØ\86k*ñe\Þ\Þùø~v1\ï\8cc\çûû\ãi\Ü\a\8eð\é\Íó)¨\ìû\e#\86¶[H®<\98|½£nÚ\96¹VV\ç\18üi{\ì½}º\83I\9c¼L\ÆKf\f9\Î#\Ùò\8b\1cò\99¿\8dKrÔ·\Ú8\9b6\91³P\í\Úôö1ð\îµ\ËXW5\87\Ã\Â#á¬\99\0\Ç\aÙ\80\9cDx\\ü\14m#>\Æ7.\Æ\17eDDDDDDDDDDD\\d \Â2\18\Ä`\84&<\85)\1f\86\fcf2ç\90\8fvp\Ö1\8d\Æ\\÷»8k\e\8c\ç9\Æ1\9cª\8dýM~C\ì»\Å\ä\7f\7fÒµ\8d\91\96|\13Õ¢\É\á¾9\8dUg\99´\17{\1d\\\92\97\90·v\83\965\9c\Ûò¿U,SH°\f\9b&B|\"\\X\Ä\Ät\Ñl{\Å\17\8f\í\Ã\É_vø\8f¬\Ô\f°\85ª[\Ú;då\8d®$RH\ e£\Æz\ë\7f?a\9f!\ã8\v\1c\Öùdmf²D\7f\É<+\e¨ön\85&\15|\Ü2\é>!\âm\ 3\828\ÃD\á¾*\Ö\ëõ\ e9\ã]f¯P\Óuª¨\à\89_OEO\1d±¡Ã\8d\Z0\Ã\1c,k[\97¹\80\bC\82=ÿ\0PDÏ\8b1\èè\88¼G\9fz\×À=§\Ñ$q\8fcx\7f\8fù«@\93 3\v©ò&·]²\Ó\âdr\f\Ñ\æ\ 6\931¥\Ç8A&<\98\11Á*<i\"#\ f\18\ 4\1c\12<¾zE\e§\Ómý\81ñ\8fasm[Z\ 3]\Þukn´e¥ À8\Ã|\çqf\áa\98§x\0\èÒ¦c^Ú¥Ø\9cųdxW\15\95µ\7f\ 2Àú\æ\9a\ã\\¸µ×¶\Z«*+ú+)\Ô×\94w0eU\ÜS\\U\Ê,\e:«Z\É\Â\ 4\Ú\ë*\é <9\Ðf\02¢J      c\È\10\Ê7³\1f5lw \ÞW{Á\ãsl\87\9ed½¨\Ô]g\1e\Ãb\â\1d\8eD\8d\83\8aö¶\ 4\92\nX\ÖZ¬£\àu¯\96i\19\912~ºzk  \Ò#\ÃýJLè±\9b\15Ö\88ømó¡\×?-Z1ªj\Ã\e\89»5©\ÔÇ\9f\È<\19oi\1cò\n&\84X±\ØxöqH\É;V§\Z[\9c<\ÊtpYÅ\8c\èç²\83\f¯\95\Z\ eò\91\11\11\11\11\11\11\11\11\11\11k«\Ë\'nkú9\ã׳ý\8e\96\18²¬5\1e7µ¨\Õ`L\99\9a\è\Ö{®\å\86\êz\8dc\ç·\ 4$2X^\ÛÂ\89\14\8f1\ì\9ah\Þ\Ð\ä·\ä\'RI.\\©ò¤Î\9d&D\Ù\Ód\Z\\É\92\ÌI2¥Ê\92G\ZD\992\f\98ò\ eg¼¦1^ò\14\8fs\Þ\ç9\Ù\Î\7f\9d\15\9f>\8fÿ\0\1f\8f\ë\ÇKv\Î\ã\î\95s\àr?o¬\"g]\14øò\"~\1f    \é²d3N$a\92L\98\93#\ìöò®6\90[\Âd\12J\85>\rm\84s\12\9a1\9b/ôDDE\n\1f\81º®x\Ñ6¿!]M\Ó\7f\1f\9c¸ò\8f\16\1c\Û\Ç:\9df^^Z\Ò\êþ86\ËUI\ 1¸|\í\ëW\86\19¿¦\Æ5\Åõ@3NøÖ¿\8dE\8a\n\ÙQ{\ÏY{+\Ì\1dB\ç\ e>\ì/\ 4\í2u.I\ã{\ØwtÓ\86ù\19\81`8\ç\19&P\ßD\8d&!,µû\90\ f0\í`¶Lc<\ fû\áJ\85`\bs£\\÷\ã\13¿\Ük䣧\9c]\Ù\Î<>#\Ë\Ø*\85Q\ÈZ¹³\81\Ø\éü\8dJ6AÛ¨¥\ÆpÀV\Ç\r\Èff²cA\886P°\ÉUr\'@pf\9b`\88\88\88\88\88\88\88\88\88\88\8a\">²¾r\9d\Ç~6xó\88\"·\ì\8d\ØNv\×\é,\9b\8f¯\ e\f^8\bù\14R²\ç7$È\99\1cW\fn\Æ\1cI\81#ð\ì\a\19m^¨½s\808®W:ó\Ç       ð\8c\19\99®\9b\Ì|¹\ÆüW\ e\fis\ 2W!nTÚ\8cy\98\e²Ö\931Kn\Ã\á\8e\Î\Zü³\ã\9c\19W¡p\'\10\ë\\\ 1\Â<GÁúu|\n­_\898\çN\ã\Ê8\15`\Äj\è\Õú\9d\f\ZP¶\14v°m\ 4\1eH0´c`\Úü5£\eq\86\91\11\11\17\ 4¨±§F\91\nlpK\87,\ 6\8b.$ \8eDiQ¤\r\Â<y\0+^#\0\Â{\Ä`\95\8e\19F\ç1\í\Ës\9cf oQ\ç\8eAøóò+º\ÇÓª\Û_\Â=\8d\ 5\877q;\07²\rC\î.$\83y\ÓÀC\Ë)\8eú\r\8dØ´÷\f\98\10vj\êJ\98Ù\8dS\97-\ 3¢\98ߣ\83º¬\â\ e\êò\'P6\8b\93\aY\ìþ¤[\8d\Z\ 4\É\ÙmdnL\ã\Êù\Öó\85W_òù\16÷h\Ôã¹²J\11\13\19«\ÔpI_Xa´Ã³u\11\11\11\11\11\11\11\11\11\11A/\Öÿ\0±7\1cC\Ð\ÝK\f~\1f\9eH\åÝ\8b$ùg##Y¬k5\8df[ñökÃ\97½\Øv_\9c½§v0\Öü3\97\×v\8a\96\8e\0Ô¹÷\Ì\1f\v3p\16d\Â\á\Ý7}\ç*¨\8e\10\äD\97°\é «¯¦\14ø\Æ\ÆFx¬\93±þKZ\ïò¥\82,\8f\89>\9f¨\96\è¢\"\"\"(\90ú\Äú»cÌ\9e94\Þm\Öi\"J¾\ë_0\Ó\í{\r\88kA\"\è\9c{²\Ó\ÜjwUÌ\9b\87\8aX*\àZ[\Õm\133\9fÉ\8a\10\Ò\É÷\8e\Â\Él\81\ÕÊ\8bcþ ¹²W^<\9ct\9b\95aG$©5\\ó©k#\10¾¯\93q\ÉN\93\ÆD\90\e8\e\83\10[\83\åHc¾_`\ 2F5\84s°\Ç]²\88\88\88\88\88\88\88\88\88\88 \Ë\ë}×\82N¿ôOkll~D^b\åMxòÿ\0\9b9úg\éT\96Qcg÷\ÈÛ\8c¾¶aqí\86½þ\Ùùe\Ø\ep\Ê\èQKOÑ­­Í\9f\åKs\Ú\18\Ñ\æ·]\ê\Ç%V\Êv]\9fµ³ö-£B}~\18Ï\8e[\91º5%§\Úÿ\0\9b\\\×4-k\1f\82=ô\95\11\11\11\11jK\Ï\r\\K_\ f~BE,\"/\âu»w´\8e\â1\8fp%\Ö\n<À\189~3\91\97\19\16G\87³-~XB\ f\19ö#±\9a]\11f_\8e½#f\äNút\ãS\Ô+Mk{3²\9c7b(\80pZF\×k\9b\Ý&\É{;ür    \8e\1d]\rE\95¡\86\×8\Å\f7\8a0\8f!\â  /-DDDDDDDDDDQHõ\85p\94\ eDñV>V\92,\96g_¹§\8f¶Z\×0\87\97\83Æ\92d\11\82ö\19\ãb\1e\Æx\ä\14\9c¸m\91&)\Ø<\98# ª¾E.OF\86\Ð:ÿ\0\'Ü\87©<Y\Ëö^±\ï6\Â?³>#v±²\êBp³\9c\ç\ç\87\18{\ 3\È\Ü5¹nq\1d\ß<·8g\Ê\ÑDDDDE¤/Q\8f/jüE\á׺\ f\Ùl\ 5\ 4\9c\8d\19\9d}¯~rY[\ 6õg\ 6¦º0@\Æ\10¦Á\ÊüG#\9aÖ\8a3O\89\12\n0\8d\Ù\Í8\88¤½\éE\ê¾\ÕÏ\9eXøÓ\95\àÀ;ô®ªkû/*í¶¸|lÃ\8dm{¯]\é\ZuTÁ;\ 5\99\97\Ù˹µ°\82x\àh\ 52\84C\9726dF\14»f\91\11\11\11\11\11\11\11\11\11\16\1fwû¬Ô\9d\Å\é\87dz\Õ|\É?\8b\1cSµk\90\8f\ 20$\ÚCº\Íy&\ÑK¨l\81\1c\15´X\98\84|\80ÿ\0I]\87f<\86\96\8e\8d·U\Øt]«f\Ò6Ú¹\14{V\9d°\\\ê»5,¼\89Ò©ö\1d~\ÆME\Õ\\\9c\80\86\ 6dW\ÙC\93\10\Ù    J,\90.\È\Èö{;=}I\ 3Ò\9b\ÍZ\Ï\ry\87\âHû<¦D\1f/q¿&ð\í1\vó`]}°Á«\Ø\à0\Ò07\86+>½JI0YN\bJA\8e\eL\Ù\12\80\×\Ûp\88\88\88\88 /\ëUî\8e°Z\ e·t+]\9f(\9b\8c}\81\9d\88\ä|@²È£B\×ñS±\ê:f½{\\\Ç\b\87ýVtÙ»$\ f·\12¡<\94¡>q\1el\09õ÷¢¶O\Òý\âògAz<\1eV\å-i´ý\8c\íg\é\\\81¹2K[\9b-g\8e¿\15\928\ÛG)3\ 6¾P³\ e²[\ïí«§6~+ö{»\ÌU\Ù˪<b\92\88\88\88\88\88\88\88\88\88\88ª\86õVxõ\9f\Ô?!\97\1c\ëªT\Ìo\ ev\æ#ù\12¶h¢\ã\15:ÿ\0%D\Îk÷MQ\8f\89\r±`2X¢Á\Øk\ 3c>E½Ä\99;,\æ\fpa±£\8c\ 2÷n¯s!ú\ï\Ù.\ 4\80f\Û8\á\îa\ã\9eH\97\1e\88ø\8fkaW§\íµ7\97\15\11\1e\éP\84÷\\\ÕB\99RX\Òe\ 2\1cÀM,I¤\ÄC\99^\85\1c\8f®ó\ f\18q\ç+\êR\813X\ä\9d+X\ÞhdF\94)¡}V\ÓM\ e\eq(8À\Ì\á\ 6cDW5¬\Î\f7µ\Ìc\9a\æc\Ð\11\11\11\16\17wó½|\e㳬ûÿ\0eù\Þ÷\15ô\Z¥iY®ë°\9a9[\1eõ·\Ê\Ãckú\96·Zù\11s.u¥\99\âG9\Þxð\ë£\15ó\'J\8e\16aΦ\ 3»=·\ä\8eôv\8b\98{MÊ\99d}¯\96v\É\×Ø£\8d2L\Ú\ÍV\97.úhõj\82Hh±\88\14µ\Ã\ 4|¾<Jøó&\æe\93+¡>q#³\15\ÔÁ}2þ     ö^\Úr¾\9fÞ\9e\Ë\ë3j:\Í\Ä\Û\1c\1d\83\8d5KºòGÿ\0\8d»µS\Ù2®À\8c\92&\95\Ú.½\'\11\86hN     \îm\a\ 2SfÇ©\8a(\Û5\9d±\ãÇ\89\1c\11b\801¢F\b£Æ\8d\1cL\fxñ\ÂÆ\8c \0FÖ\8cA\10\ÚÑ\88CkX\Æ5¬cp\Üc\v\99\11\11\11\11\11\11\11\11\11\11\16¥ü\Òx\Þ\Ö|\9ct{\90¸@\Õ\Õ\î\å\1dxF\Þx;c\96\ f´ú\Ï#\Õ\Ä(\á\Z91\9c\141í¢¼µ6Ì\8b\í*}T\89Uc#\198¿*i9\e\8ew\9e\"\ß6\Î1\ä\Íb\ÛKß´k\É\Ú\æ׫\Ý\Çü{:k\9a\â\ä2b\9d\98s\ÄVg8i¢Ì\8a\9f\10 \9d\ 2L\98r\0rt¥h\87¤o\È\ÕOcºN~\9an\Û\14ù¼\ÍÔ\87\8e\9cv\Ù\10\Ùi\ÂWg\91\8e>\ 5\1eE\Z4c\aQ\1c\e\r`\Ñ#\92U\88b\ÖG±¶\18±:4\Û9t\"\"\"\â1\85\1cE\91 £\0\07\98\ç3\Ú \84\"n^B\94\8f\ËX1\8d\8ds\Þ÷»\rcq\97;8\Æ3\95Qw©\a\Êv\Û\ä/¼;\87\1e\13£u»¬\e6\Å\Æ\Üc­±\ç\87\ eóg§\98Z\9d\×~»®ø\8c2n\ fo\1eÂ\8a\9aL\82Z6\154Y\12)g\86\ 6\Ã&.#º·\ë\é\íñ-c\å\a¸õ\99ß©§c«\9c\14J\íç\9a­I\1f\ 3­\Û   \Z\Â\17\è¼U\ 6t\8c\ä$±\Ù\1eo̸\14x\96¹\8b¯\Å(,cB\15\Ü+\ 1\ÛǪj\9aÖ\8b­\Òi\Úu%n·«\ëu±ª(¨ª\"\8e\1dm]t1\àq\âÅ\8e,a¬c\e\8fw;?\"\14\8ey\8a÷\94\8f\ 2\"\"\"\"\"\"\"\"\"\"\"(Jú¦¼\eç\9eµ\e\Ï\"\9dY\Ó\çYs\86\93[\15\9c\å\Çz­s\åXò\86\99\10¯\É7*ú\á\11¸\9f¶\êQHi\12\e\fO½¿©\1ei£G¿\9a=n¾¦·\15\9d^7{\Ûɾ8{}\Å}§\ã\13d¦Ô¬¿GÞµÜ\8b\ e\é\Æ7\Ò\"\83w\Õ\b?̯\Ç\äέ\vfS\14\93C\166\Ã]Q*Às+\83.\ 4«£ºµÙ\8e\'\î\17\ 1ñ\9fc¸Ka\8f²ñ\Ï)k5\Û%\1c±;-\97\ fóc\8c²*.!\15\81\9bUsZW\æ=\85]\94XVQ    \8c6\\(\ÄwÕ\8c\80DDZøò¹\ÏV\1dgñ\Ç\Ü\Þg£°\15nÕ¨u\ë\94\ f¦H.3\ì\í¾N£k\Z\80m\Î\Z\ï\83ó8\8c#_\î\Ç7\ë\ÎDü\e\ë÷¤^lÙ\96S%\Ø\ØË\93>\Â|\93Í\9d:i\Ë*dÙ\92\8aóÊ\97.Q\ÞóÈ\93 \ïy\8es=\å1^ò\11\î{³\9cÿ\02¸\17\Ó]Ó\8a>¡ø§\àS2­\Ðw¾\ÂÕ\83°\1c\91&ma*¯\1dq¼A\8aZ\8aKȦ\18M\89Z¥\0`Ð\8bò\ 4\ÉL\8f\15\82\91\ìñýcß\9a\"\"\"\"\"\"\"\"\"\"\"\"\á0C(&\8d$\"\91\Z@\88\13\80\ÃaB`\95\99\19Ba\13\ ea\ 6F9\Ì \Þܱ\ì\ÎZ\ìg\19\15Uþ¬n\83pwM{Ë£ò\'\ 6\82\9fZ«\íF¯¶r\16\á\ÇT\Ùcck;\Å\r\ÅL{\Ëö\Ä\e°\Ê\Ön\å\Ø\eb\èb\0\86i\90\98\92¬ml$\92+ªk~\8cN\Ós\ÜN\ßr\×P\99±Ï´\ë¥\ç    \íü¿+Z\9e)3!ê¼\89®\ì\ÚM=t\ê\19\99\'\ÑPÍ\8e¿a·Í­c\86ö\ØI®\14ø\1f\86V\Þ:\Ò\É\ÔDE¡?S\r5\å\ç\86þ\Ö\ 2\81ò\a&\15n½s=ñð\ì\ç\14t¶ã²½a~9Ç´sUF\95\1c\ÙÏ»p\Â\ç.\Æp©ó^\81\ÄôU\ÛG)ñ¦µq\14\93ªv.@\Óh­!\b¤    fW[\ìuµób\8cÁx\Ì\"H\8d ¢a\ 4A\94n~\1e7µ\Øñ|\'\1cUWQñö\8fOQ\b\95\9a\8e»\n\f\10        \80\14X\Ñ\êb\fah\99\8c5\99kqü\Ø\Æ=òÿ\0\96]\9c»9\Î{¢\"\"\"\"\"\"\"\"\"\",h\ì\9fqº¿\Ô\1d*\×\7f\8f8q\ß\12ku\ 3\e\8e]³e­\81br\Èoý\Ê$\nw\1f6s%\Ø\15Â\8d\ 4@\8a\ìH\95\"0\Zü>@°\èÀög\Öm\Ðn2\94zηñ\ f.vlä­\90h[\ 1XN\1dÕ\81f\Öe±\âY3v¢.\Ñô¼ùÁ\1eX\Zì\96º+s\9c\902\1d\80·T\ïõ]ùt\î\1e\Ì\ÍK¡}\Z\Ôc]\nª%­v¿§\ïÝ\8e=@¯\nh4ä·±­­\Ò\ë5Xò\æG9\1f{³`t\Ì\fI\ä\'\âÆ\8as\Æܧ\ 2\a\Õ\Ë\Ì\ï\×%r®\Ï\Ñþ³j\eH3úÜ­\97F¤Ú·ý*,\98\Ç\ÃJ\Í7Q¸²\8f*\Î<\9c\ 4F\8c]\Â6@\'\92dcJ(C\ZO\9eXúL¿\í1\Ë3ùÿ\0\É\1f\91>i\íg/\\}\ 1¹° \Óhøö\82}dF\Êe}\1cxN²¹\95®\Ò\Ö\æK\å\ 6³R>¿\0¶r\'X\â$bO\9c9Y\ f\a\17\âN<`\8av±\Ê\Ö\12\a\9cd²ó\Ê[\ÔWH\Æ=½ðð\87\99\ïûû\äXgõý½½\96\Ýú\ f\âo¢^4!m\82\ê7\f\8fGºÞ\8b\1dûv\å}³\ì\Û\Î\éy\Z\18\86(5gض»K9q)`¹§\93\ e\9e·\10«£Ì°´\948ø5\94Ç\9b\88\8b\r|\88p\\\8e\ÍtO·\\\ 1     ù\15\87,õó\94´Ú²µ¸{\Ãoi©\Ù6 ÁfXL>@l\99\14\91\9a\æ\å\8e;G\87û79v(\é\Øh.uKû\Í[c®\93O°kW\16T\17\Õ3\19\81Ì«¹¦\9aj\ëJ\éL\Æ]\86I\85:1\ã\1d\98s°Ò\89ø\Æs\8c{®\Ñ\Ä\Û$\1d7\94ø\Óo³~E[ªò\ 6\9b²X\15£!\9c84{\1dm\9c·\à!aJ\\°\11H\ì\fB!\1f\9c|XÇ»8no\89\ã\ëh\97ú\16\91{\0Ã\91\ 2\ëPÖ­¡H\13°\á\1e%\8d4)\91\8c7·9Ã\86P\99\8f\9c\á\Ív3\8c\19\11\11\11\11\11\11\11\11\11\17\9fò\97*ñ·\b\è[/(ò\îñ­q\Ï\1d\éµr®¶\9d\Ënµ\8bK¯\ÑUB       $K\9dca-\ã\b\8e\"\9c¯\Îs\96\ 4D&qð\eó\88    ùjõx\í¶\16\ 5\89\Z\8aª\14û­jó\Û\15p§M°\8e\8c;®#¦4\87\ 1\85\1d\8b\Ìjý\93b\82ú\ìb¿?\8fG³\Ô\ÚÅ´\f:õú\ e\æy+\ìlZ:\86ò\Çk;\1fȲ$f;lm¥\ì\Û\f\88Î\9eioc\ì\ï&\86£T\Õ X[8q\ 2y\94\9a¥)lA\ 2\13!bTh\ï\9d\17\8c¯GW\18\é\"Ö¹_\ÈöòþO\Ú~\8a\ëpõû\8f\äI¨\Ð\è\ì\Zð\Êü-\Ïi÷m¶\â\è\92c1¤\83\fUTVP&J¯·¬>Z¦w½y\à\9e·\éõ\Ú\a\ 1ñ\ f\1d\9bU\eñ \ë\Üy©R\ê\Õ\â\8fö8\ß\ 22ª$g\É\ÎJ\ì¿$\94ó\95\ÎöË\9f\9fl{{\Z\"\"\"\"*¢}Qþ-lú?Ý\8b~\ÆñÞ±*\1f[{o}o·\Ô\Ø\ 3.5f³\Ì\Ó2{®B\Ô\1c\838\82;\82\18\9bm \æÏ\97\86Ù\8a\ÑÆ\81_\14y\8b\ê·W\Ó#\Þ\Ú.\äø\È\â\ÍJM\85\84\9eP\ê\ìh\9c\17ȸº\9ayö¶\85\×\àE\97¯ì¤\9f8\9f\99mú\Í\ 4ú\ÙR\ç5\85\b$\9dµ\ç\9d*\Ê<\ì²Dh\88\88\88\88\88\88\88\88\8b\Æ{\ 3\ e$\ê\ç\10o<\ë\Î;\95^\89Æ\9c{G:ûb¾´3\19\86Ç\83\14\Òq\n¾;\9e\Ò\Ø\ÛMÀ^(\15ѽ\Ï$¿¶0Á°¥eK^m<\çó\9f\95\8eU¸Ö¨\ìnø\ã¨:¥Á\ 3\ÆüA\ZkÁüJ\ZÙ¤}~\íÈ\9fCC\9bk\ë\17\n5\98ª$\äÕ´\87\f/¤O\99_\10ñ±KÅ\97\8a\ e\Èù[\çAqO\v\Äf±¤\Ñ8\12ùK\9a/\ë%\Í\Óxæ\98\99\Æ~\Ù\ 2\8eX\8e»½\92\Ìÿ\0\áº\ìY\ÑO1\î\1e\r.\e\ f\1d\å¶W\Æ\ï\8aþ§øÀ\á\ê\Î0\ëö\99\ eF\Èø±ÿ\0\8ey\87a®¯?%ò5°\9a|\16\Ûaº\10~q\ÚgI\91õTV:5D\0\11\90+\âF­\89\ 6\1c]\91¢\"\"\"\"\"ž\åtû\84{\××¾@\ëo?j\Ðöm\ f}©,7¸Ák¬uûqe²)öZ)Xp\ä@¹£²\f[(\12\âH\8d$2b\88 \91\1e@\àU\ eùmð÷\Øÿ\0\13¼Ë\9dS\92`H\Üx[m°\92\Þ$\ç\Zx\12q¬\ì\à\Æ$\É\ e»xo¡\80£\Ý\â@\8eYF©3\98+hq¥\ØÓ¸\99\81y_GÖ¼DùI\å\7f\14]©ª\ç=\1c\136n=Ù¢F\Ôy»\8c\878\91¢\ïz.g2W\Î8\9eqW»hÖ\8f\93X\ë\12¬1\81\8c¦°®lʶ\Û\Z\Ò%À}9\î_\0w·\835.Àõ\Ïz«Ý´}¦\ 4s\95±\ f\8c[k\96o\1e\7f3_\Ø\ë\n\ÑN¨¸®\92\10\åÂ\9f\Z,\90Ê\8b&9\Â\19Q¥F\ 6T\"\"\"\"\"\"\"\".\19\12\ 1\14\ 6\95\8d\Z0\89\"D\89\ 4`@\0\ 5\8e!\8cc\11\18\84!µ\Ï!\1eæ±\8ck\9c\ça¸\ÎUR¾¥\Ï2·=ý\ì¥\Ï[¸gf´\8d\1e¾lvZ\ëcF!¢C\å.J¤\97\9aû\í¢Ày`_:\86\8a\14\88\9c\ßÀ\99$&»in\"\83\8d¦\ï\1c\1e;y\ãɧfu>¸pt\16C|ò\nÓ\909\n\Î)¤k\1c\80\Íý[iºh\89\1d\Ó\æ4-(5ýp\12\â\Ë\Ø-~¸Î\97WT\v\9b\8fz/Ѿ\ 3ñ\ï×\9d/®½}Õ¡\Ñ\ëz\Íl&^ߺ$q\ì[\æ\È8\íe¦ÝµM\162I¶Ö²ó\"[\9aò\90Q3 \83\ e\\\ç\98\Æ\ÌDDDDDDD^a\Ëü+Ľ\80\Ð\ï¸Ã\9aø\ïR\äþ?\Ù\ë\åU_j{\954K\9a\8b\Zù£úfF %\r\Î\ed\v\ÜEx\1e\"<Y\Èòÿ\0\83³\85\r®ùú38\17\93mî·¾\89óTþ¾\ØIi\ç7\88y\ 2²\Ç\7f\ãù\12\99\ZQ\Ý\n\8bc%\Ô]\9fZ}\9d\91D\Ñ:Y.iª!\ 4P¢Ô\8d\8et¡jc®~\ZýJ¾#÷\Öó\ fQuýco;\Ìh÷ú\1f\ZòÖ«»è»¬B²;     #h\ã\9d\Úv\95\ e\ÉÁlh­\8bh Á\Ú@\ 6\96\15|¬A\93g\10òo\êG\98ÿ\0$\825\16©\ä7\Äÿ\0.q\ 6)j\ë\àn\9c\ÇÄ\93\ 3»\Ó[]Â\8c(\×v`\â\ØE³\Ù5÷L\9d\87Í\89I_s¶\Ç\ 32xF¸\89ô\84\Å\É^Xõ\19x\Í\ày\91\âsmÿ\0dø\94S$f\14;Mû¨=\8d\×igNÀ]#0«-¦ñ\ëa[\Èh\18B¹µE\9aÆ°Fù?\19\110\ßO\ë?\9f_\12}²½f¯\Å\1d\Ç\ãø;<\9b\ 6\Õ\Ök¼¥\vcá«\9b¹\99\8b\99¥m\1c.P§\ÕIl\18ñ[\92È\97\ f\886°øÁ\Ü\èsq\elZ¶\ë¦\ï\10]g¤\íº\Î\áX\Ç5\8f°Õ¯ª¶\b,{ñ\9c±\8e\97S.\\v¹\Øk²\Ö\ä\98\Îp\Ü\ç\18϶WfDDDDDDQ\94õGy/\ÏFz\ea\Ãü{°¾«\9f»j\Ûn7\Ô Srê­\9bQп\11\ß\ÇÜ\85\\øv\15×\90\Ý[\f\81£©¾¥)\ fO´\ÝPº@\Ú\19\1fcj\83¨¨µ¿µ¬¡¡¬°»¼»°\85QMMQ\nM\95­½­\94\91C®¬¬®\86#L\9fa>a\83\16\14(¡,\99RJ \0O+\Ú\Ü\Ü\a\éöñEA\ã\v¥\9a\ì}¦¶¦_f¹\Î\rv÷\Ï;TH¾\ä\8ey/\993S\Ðj\æ\É,\99­¤Ó¨gÃ\83!\83ulK[\ÖX^\9a\8a®|\É\0nù\11\11\11\11\11\11\11\11\11\17\98r\×  ð÷=jSô.m\â\í\a\96´«Hò\"XjÜ\89©\ÒmôR£Kk\19,\ 5­½\8566E,c`¥3\ 3\Ãd     ¸\11°ñû·1dò?\é\18\éGeb\Þ\ïý6\9f#¨<\Ç(\8f\98\Íj\9c\f¸\à\e§cô¶~\eøó\ë\8d/Q+ \×I\89\\M2ú\8a¥\96\16¦¸º©¸0\9c\Ã\ÂSw\ f\97_O\97`\ì8\Î?$rg\\\ïo1\"\Ö!´\8d\92u\ç\ 5s-\\Ytâ°»¨\81i\13\Z\96\Ø\á:²\9e\ 5\84©ô\107\Z\8a\Ò\×0̬®¸­,\é\9døZõQq·poõ^µw\9a¿Y\àþ~º4\r{Fä\9a¢\Ë\ f\17rµ\Ù\Â\11\95\89Å\93#J\Û.,\1cX\15µ3eM®\9e\82%\Ô\ë;3Æ\831a\14R\ 4#\80£0\f6\18&\v\ÚA\14Dn\1e2\f\8cË\98A\91\8eÃ\98ö\ç-ss\8779\Æq\95È\88\88\88\88\88ª)õ@w\ eçµ\9eW9w\\l\Ç\13B\ë\1dm_\ 2\èq£[I\9dQ\'\159.˵lQ \19\8c\rE\8d¶Á°\9e®\Ô É\9d\'\Z\ä   \ 6\96A\85\93þ\92¿\1d\82\íOzfv\83\90)d\É\â^¢Àf\ËJ\ã\Æk\ê6>h´\È\"\ë\14\Åt\98²\à\Î\16·Q6f\ÇiZf\f¸q¨\ä\88\â~\19ó´\Ý\11\11\11\11\11\11\11\11\11\11\16\1c÷\93¢}rò\19Á\e\a\0vOG¯\Û5{&\1e^¿q\90\r\9b.\8b²:)cD\Úu\ev\á³*m¢´\99k\Ý\14\ál°{\84\Ù÷ÀJ\Z\7f|­x\É\æ\7f\15ݩظ\ 3\93\âO¶\Ô,\Äm£\85ùGðH\Z.N\ã\ãIpc\ÙW\Í`\99   ÷\94G\Î*6Ú\91\ä2\ê\ì\98\19\12 B\85kW÷M#Òµ\ç\ 3b\ç\Úø~;;Y»\92ó\95µ\n)2úÿ\0\È;4·>\ë\90u:¬}³4½\82\îl\8cb\ßo\Öã½­­\90w>\ïh«ú\ ea\Ú\\@Ø®eN\ 1\11\11\11\11\17\9có\ 6\Èm;\89yKn\8cwF\91ªñ\Öï±\82K\1d\96:9¨õ\9b;1\19¯\Æq\968O\8c\Ò5\Ø\Î2Ü·\ß\19Ç·º¡÷\90·­\87\947ý\ã\92ö\é#\99¶r\1e\á³o[<Á\r\Â\14½\87\9b\7fu$bs\Ê\á\8cöV\12JÁ¸\84s\Zü7/~qòͶ~\98\9ak\1dKñQ\Â\Û%i&\È\ÛûQ\16\1fd7ó\ÍÄ\81<v\9b}=|\n\Z¡Ã\90Bb\13)5ZºzÌ\8e?\Ñ\1eI#¾Ä\91Ca2y\r!TDDDDDDDDDDE¤\ï=\1e3u¿%}\ e\äm6ºª°|\ë\Åu\96\\\9dÁ\9b\8d\93õ\ëu\93¥\93R5\8f\ÖsF¢\Û\ã}µV¹\1cK        \ 2\11\9cJè¸\9cö\11T)\Å\\\97ɽe\æ\Ý\'\94ô³\Ù\é|¯Â¼\81Y²U\ eÀ6Usª6\9d\85\91K\7f\\\ÃV\Ù29dD\91I³Q\È,W˯5\8d<\æ´g8\Õ\Ü\Ý\ f\ 5/sú{\×~\ÏR´q\Ù\Ì\\U¨n6µ\8d<2È£\Ø,\é\â\9aú\9ax\à\94\Ñ\áÎ\81f\é\ 3<&\14\8d\8f\8c±£)\83\91\9c¹l\88\88\88\88µ»\æ\v\90\çñ?\8b\îôr-[½¬µN¹ò\r\95~>Ü\87\9búo\ãE\ eJÖ½\Ãi\Îv\ 5\Ï\Ã\1f\96\99\Ï\Å\ßùsK\ß\ 6\è \å\ ek\áþ4\94\ f\8dÈ\9c¥\Çú,\86D~G)\à\ÛvÊ\8a\ 3610\×\å\92\1c;\a`/\Ã\1d\96\93-w\Å\Þ\ÞÙ½\çC\Ó(ø\ëI\Ôô-j\1ch\14\Zv½Q­\ÔÄ\89\18Q\0(U\10A\b9lpÿ\0\867\15¡û\8b\97e\å#\Þ÷½\îs\Ý\ÛQ\11\11\11\11\11\11\11\11\11\11\11S¡\ê/\é\å7L<¯v\1fM\Ö\ e\9c»&\1fcu\ÈlÌ\92\1c¿:\â\Ú\î´Ç\92÷d\Äf\Ý\vc\94\Ö\Ç\14X0\83,5\90#2\1c\10¼\93Zônó&7\ï\17;o\17\æ9\Æþ\b\ìV÷¯}\Ç\Ër\Ù\"Þ \Óò+\1d\13\âW\ã\10\ÄKó\v\âA\84ß\9c\Ù\î\Ë^\17\0\8e\96ª\"\"\"\"\ÕO\9c=2^û\âS¿:\ílSM·\'\\÷¹\Ôñc\ç\ØDz­\83\89 \8e<e\ì\e³)¡$\\\à\ÙúÛ\83\åù\Ë\1cÆ\91\95_ø0\ã¸\1c­å³£\Z=\948³¢\Ùs\16\89\82ûc6N¯©\ì\Û\\\19DoÀ\99\Æ`Τ\8d8ek\1cð\12;\f<|\Æ\Õt²\"\"\"\"\"\"\"\"\"\"\"\"®\a\Ö\ßÆ\9a\ag:W\ÊUõ`\ 6\Ñ\É\1cC\Ê\Zö\Ëq\81\v\12¬ ñ\Öͧ;^\82\8d)#U7rµ,`\95\ÄÀ\ri0\83\Ëq%\Í\Æ\É=\11\í.:W\ÜW\å¹À\1d\Ú*V\8dþß³\8a\Þ\'Õ²f\ã>ß¾XÇ\839Ǿ}¾xý±\ïû\Íi\11\11\11\11coqµPn\ÝNì\8e­\'\ã\90\Ûp\97%       \ÍxðV\93 Ô­e\8cN\1er\Üg\ 6$v\8b.ýþ\1f?\9fÁÿ\0\1f\83ªmô\ÒÀ5\87\9b¾\89\à@!\99\ fk\åyò\\Á¸\8c\8e\18¼\ 1\Ê\ïi\Ì\æ\ã8\10ÿ\0# \vHLµ¿yB<g$#\Z\ë\89\11\11\11\11\11\11\11\11\11\11\11\11\14\13}p:\Í{¸{¡;\8f\Ó\ïj\1eJ\æMg\ï\Î\e\9f\85|\9d_Q´úX\ï\87É¿d\98\9f2c$ø¿\ê\16p\ÌdyvsGÑ«­Á©ñ\83¾]Æ\84\18òö®\Énó¬d\8cM\19,\rYK¯R\0ò\b\Ö\á\Æ b@\ 4F=ùs\9a\18\16\1d\861­l¸Q\11\11\11\17\96ó\94\\N\áNa\82ì¹­\99ż\83\15\Îo¿\Ë\18\91©[\879o·\ïò\Æ\1f\8fl{ûû{~\êª_I\æ\96M¿Ì·\ e\16F\×i\1cc\Ì;£\9eO\97ò\8e&°\ÊB\á\99k]\9c\10£¿p\19ûa®\É~\ esX\ç;\16\Ö\"\"\"\"\"\"\"\"\"\"\"\"(Lz\Ü\ëp^\9eô¾\ã\ë÷\Ì\1e\Ê\íU¿w·ù\7fªñ}´¯¯\åýqöþ\8b\87{\7f\7f§\ßý8Y\á\é\12¯\Ä?\r:\14\8c\ f\9bny\ç\8b\f»ÿ\0[#\Ùa\Õý\9f\1f\15¸\17÷ÿ\0+úÿ\0lI\Ý\11\11\11\11um\â\b¬ô­Â´ÿ\0\äXj\Û\ 4\13\7fõK©\97\1c\9fþ     \95\\G¥+\82\ë5\8f4\9d\Ç-?\Ø\n~\ 4Ò¹Ã\8e*!·ù\82\Êû>Y\ 6¿\ 1\Ïq2\ãý\91ai\í\0½ß\9fv\È7\Ûò~\19\9cY@\88\88\88\88\88\88\88\88\88\88\88\88¢¯\ë\ 3Ñ\83±x\9d\9b·\9a\e$;\8f\8c§F\92\ f/\81\'c\Ø!\ë\9fhð\ìý\8d\É\âL\97\19\es\ì\Ò\äosp\\a\Ù3\éu\Ñgh\1e\18z\Å\ 2Àoa¶\e\1e\82\ç³\á\93A\Ý÷«\8d\96¼\98\Çú\98\ØV\0\v\1fþ¶        ¹R\ fDDDD_\à\83\19\86A\14l(\8a\f¢#Zñ\90onZñ\91\8e\ÆZö=¹\Ë\\\×c-ss\9cg\19\Æs\85\ 4\ßL]\ 4z\ß2~q±\1f\18\18¨9\1f\92(#   ¾\Økc\9b´ü\8fñ\Æ1\8f\7fÙ\8d¥\13[\í\9flc9þ¾øSµDDDDDDDDDDDDQÁõ`\ 3\ 6ð\95\Ø\Òe¸\Ï\âò\a\8c\1f»r\îp\Ò#|±þ\Ùö\91\96ûÿ\0³³\8fî³\9bÁ½Xj¼Bø\ï\b\841fWVx²\Ð\Ù\e\ZÜ\98Ö\94 \9d\92\978n2Be\86\e2÷{»\à\Æ3\ e\ËX\ßm¬\"\"\"\"\"\87G\81m\ e\9b\8f\11¦¤\ 1\ãÀ¯\æ\Zia\1c\92<\Æ\Éw.Xå\9d²\È\Î!=\Ýñ\91c(\Ò\ 6\Ö|\01\11\8c\0\Æ\ 6\bl\98º\"\"\"\"\"\"\"\"\"\"\"\"\8f\17ª~\8e\Æÿ\0\Âgi\ãV\ 32\ f\ 2ÿ\0\83/\ e<9­ö®¢\æ\Í\12\Ö\Ôù\Ë\Ü\ÖûE­\8b*V[\ï\97?\éø\r®#\98\Ü\ç\1f\85\88Ä\89\âK\Ç\18\88ï\93\9dÓ¾\b\93\8cÿ\0°\æhTó\ 4\ßú\ 4v3þ\95³¤DDDDZ\1cñ­\Ö\âqO\92\8f.¼\É*¥±\äs\×6RZC³ül      ò(õ\Úz¸q`\äøn>ñ\n\æ^\Ãd<e\Ù\ÃMk+-n>Ns÷Æ\88\88\88\88\88\88\88\88\88\88\88\88µ\7f\æc\83\ìû\19\ãc´\9c?PfF\9f¸h\12\ë\â\Í [(p%\91\1c       \ï\8a\ãGt¦Ä±$3¸\ 20\Èü3?\12\87\18É\87\93\1d\1c\Ñ_\Æ=8\ë\ f\1f<,\8f\8d?\83¸Ú\84A\1f\×õ\8e,\r^¸Q0\Ü\ f?\ 6710\17`xöȱ\9f­\Ík\Ú\æ\ã*\11\11\11\11\11|*\9df\86\8e\95Mdx3¶)\8d\9fw$?g\Ùc1\98&\Zsü\ÞöüÛ\82\93\ 3\eü\îþ_\Ý}\ÔDDDDDDDDDDDE\Ö7=F\9b|\Õ\îu\r\80e55\ì\\C°\18\1eÑ\95\áÁ\84|a\8fx\Ê\Ö\ç\ì\v\91»\1e\Ø\Î=\97Ñ¡¦\83®Q\ÓkÕ\8d{+hjk©«\ØGa\äd\Z¸a\83\11¤{Z\Ì9\í\0\a\87;\fn\1c\ìg8kqûc\ë\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/ÿ\Ù',4,1,'','','',''),(2,1,0,'9305bf00a1f6a976','59483894715bf00a1f6a24a891914929','2018-11-17 12:31:27','2018-11-17 12:31:27','','','Profilbilder','person-300.jpg','image/jpeg',80,80,2354,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v        \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0+\10\0\ 1\ 4\ 2\ 3\0\ 1\ 3\ 4\ 1\ 5\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b        \11\n\12\13\14\16!#\15\17\18\"ABÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91û\Éõ1Vü\î´\Ìõ7¨\10\95M±\ÛPCm;\n\Ûf˲\9a\ÏA¹\"&\b\n(ø\È\â\Åz\é³r+\ã\È*¶£Á\83«´øN\Ù\1d\941dVq\8a¿+:}\íw¶N\ 5\1e\êz/Û\9d      \Ó\ÙI§Ì®\85¬¶\14Ö©´\îu\ 6J\877\Z¦\8bIý³A¥\Ò\ 5y§\ãó°d«2m\12`\ï\a^¯N|HKFow\×n½RºÉ­c5m\ eö­0±\Î~¡S\9b£r\ì\í\át<Å\8e8\Ï\10M·i\Ú-2\â°ö\ 6\85\86z*¸\e\ë}\È\Ø`²C\Ø_ºñ\Ç\1c\9b\ e\È\'¨\1d0\í\17g\92\9d£´v\Å\ØpQ¦aY\12V\Ó\ 3[=ú\94AXFR¯\Ó\ËY³\13\Zöp¤|6R³÷£\18û±Po\97½S¶zÁ\ê\1e\9d\ÓûBÁ9d\Æ\é\ÚV\1d­Ø\9b¡\86º©ùjl.e6NÚ\94\"S\1f\Ú\Äõ¼pÏ\83\8f\92\ÂUú{\r\8e<\8c·øÑ\94\â\è*\8dF±@ªV¨Ô\98\b\9a­:\9d\ 3\13WªV`\82b6\12½]\81\ 1\88¸hX\98ñ\90\Ø\áF\ÆG\8a8a\n\Â\10\ 3²\ÛhN\12\9cc\90sÑ¿7´?¦\Z*GLn\83\89\ 1\ 4\96{^\ìm}k\9e®Y(\16I\16F\Ãs(\8f\8e\92\12\ 6\1dú\90#\×#Y·\ 1+\10{\ 3|2\98ù\ 4\8b&%hZ\8f\ÐOL¾\9e~ÿ\0\Þ:\ÙvÚ\97-\99¯ô\Æ\Ä\ e·³ôE¾\Í;=ª¶\8e¶!\0\ÉDZõ\ÐvW\Ï^¾\93¶Q\ä\"\ì\94û5y\0\Z\ 3\ÅG\ÇÙ\84\97\8f\12J     û]ô\ÆÙ¥\ï½C«·\86¸\90T®¿\Ü\Zú\9d³iR.!-:eZó_\8f²Á>û(qÔ°J\ãd\87ýHøqyaÿ\0\È\ÎT¬£9\ç¥ñ\Ç\1c\Æ/´Z¶Å¹¼¢\ï潩\bD\8d\92O¬\Û\"f\1e4D¸\ár\86R\â³wDPm5\9c-\â\ä\Ó]P\ 2±\8f\9c>A\r´¤©+\Ês \9fÑ\9aôK^±_\Ðz\ÛA\ät\Çn3\ 6\97V\Â\7f)\ÉÙ\9a@\82\9b\1d.g\ e¬¬E0{©Hÿ\0.`F\8dZñøP\æqi7\1cªk\êñ\9f¦\\=\90\94\82 4Ä\85¢±×\9d\1dL\Øc\Ä\ e\97\Í+c\14\åª\Ã\1e\19\b\13\ e<l·\ì;F¿\r\b\ÊrV\Z@`\á\1f\Ð\Úyc\97\97\Z.\ã\Ö\7f9úS¡ö#d\8f~\Ö}oÕ\95\ë¬yk\Êß\85µ\â®   \Ö\nò\95\9c\'\å\15\ÉS\n\82g\1f\18ûY\8em?õ\É\ç\Ç\1cs\89ö\19%\97\86!¦\ß\1c\86\9c\1eB]e\æ]F[u§Z^\14\87\eq\nR\1c\94­9\ÊU\8c\ã9\Ç+\10\î7Vö7\ÓC\í\ 6\95\îκªJXúIy\Ùö9\Ú2\á\11ýa\ë«È\921\e\7f¯\12\vy\ÏÀ5¾\93W°È\9b¯\17$òD°E\81W\9aI.\1d\17f\16\"\Ê\íA¶µ\ÞúÕºÿ\0t\êKDu\×Y\í\Z\9c\8dj\8aR\Ô\f\ån\Â\v2\11\874\87\90\ 3¸±\ÞJ    \f¦\990\12\90ðf0ÁL<\Ò#·¢\9d¤#¥\1d\Z\í/j£\ã\ 4\99\9b\Òzv\Ùo«D\È!\Õ\Æ\É\\\Ò&\"\éAJ¡\87\19}Q$\Û$a\9a\95\Ã/4÷øõ\13ø\9cmϵXÑ\9b\ég\è`þ\8cv\9f±^¯wP²÷E\9bV\í\Øò(\9f»\12\93A´vNÀ\8c_\'ö4ð©\ÃA;\9da\14]]\Êd\ 2\ 5\Ì \12\96@\ e\10@¿gñ\9b\Z8\ã\8ex/g;3¥:y£v\ fc;\vw\8e\×ú£ZC.b\É>\7f\Ü\ëΩN h\ØHH\æ¾\ã&\ì\93òO\r\11^\82\8fm\Ó\å¥K\181\9bR\Üù\Æ\0z¿\Ø?Wý¤\'ým\Ö\Örü°ó`ó\ÞƵ±D\Ô*\97¾\éöZºÁ.\ f\9b\ 44µö.\ÃD\Õ\15)&\9a\ËÁZ\"ª\ç\901yÈ\90\ 5_\ã2\ìø¹e\94òǧ\e\ 2·X®v:\99r\î^*d\e!\13!Ü­£°;\1e\81¦¤\99@\Ò3±\Õ=\89?\'®kR\Æ\f\ÚFq\êu*¸\Ã\"ýÂ\880\ã-m*tQh\94\9d_M¬k­oR­Ð¨4¨Xú\ÝB\97O\85\8f®\Õ\ë\15ø¡\Ð,l,\f\14H\â\Æ\ÅF\ 23hdP\82\19\91\Ùm8J\11\8csÇ»y\×\n·oú»¿:½t1ø\Ê\Þö\ÕW-jtȬ\à\82\1e²\Ã\12\fe\8c1\Ô\ã( \Ê\ìªÁ\9c\10w\1dm·É\8f\15\86Ö¬óO¯§caYür\ß]\91òC\Ñ(±ô%¯g\íF6·XöÍ\9f+\8a\Ó\Û\Òa0QÔ«$]#cJ4\f\f§\îHZý&f\90:\Édפ3b¨\Í\r\ fs`*ñ\9b\È%IZp¤«\nJ±\85%I\Î2\95c8ù\Æq\9c|\ã8\Î?\9cg\1f\ÆqÏ\9e8\æ¢~¶S&½Sö\9f¤\ÞII\99(\8e©\è\rn÷w»s\11\ZQ\ 13q\Â$L\87¬\Ö%r\87\ZS\8c¨4\×j\0\16\e\88*8}\Íe\92\1f92(w\ 6\Ûf\12\12\1eµ\r\13\\®\ÅGAW\à#\0\85\83\84\87\b\98xx±Z\ 62*.86\Ù\10\b\èð\98d@\83\15¦\87\14f[a\96\Ð\Ú\12\9c}\9f\1c\17m}BÙ\90n\Ö6=\"¡°+o¯ò¿^»V¡­po9\86\Ük\ e;\13:\11\à8¼4\ë­ý\ë\1f*ün8\8f\9fµj\Æ`·d|\ÑÒ»\9a±÷i\ë.\Å\évâ\80\86l\rsºú\9bn\9c\12µ2#Ò\97!E°\Ñ*2Pú\ëgS\Ç!\91Z\92¦^ë\92 \e\14\Ò\ãÀ*\19\Õ2p\Ñ\a\ eþv#f\í~\Ïù½\ßÖ«\ßï·¤\86B\91/°j\91­\ÂU»)£¬©\13ö^ñ\82\84\1d\91Ä\89\92,y\18\a-`\0$|kk´×\9d\16:4÷¦¡¡ó­\Ç0\1f\ÖMj8\9fPߨ\e)\Ö\Ý(·ºY\Ò\0\ 4-yVQ\14\1d±Û\90&Eµóÿ\0\14¢@\8d>,\8f\Æ>\7fµ\87³\8fý\ã\99ð\ã\8e8\ã\98\15\90\Öc\ÆýKõ\8d\95\14\9c\ 4»?\8d\96\ám       a\nm3\ 5\×;sR\8b\8d$\Õ%Ô¶û\ã\83*\bÍ­L©Ô°\b\È\Êò\ÛM\á¼õq\È\1f«uúa= \î^ÁLr\19E\çª}\f\8fÄ\9aXRra\95]\87Þ±M\19d~4¡\çD\10\Øe-¼8\ê\ÙeᲬ6\97[§\87\1cq\Ç\1c\81²ôt¯\Ó\Ê\ 6\ÈTB³\96:\1f·)M\Ïa¼ý\88ýG`t¤\ã\91+w\1f\14¼0Ù\8d¶¯\åXCªoøK\9f\13Ë\8ep$Q\90K\Æ v\12Y\f\8e3\å%¦\ÒKã\88²\\\15\87\9f\Âpã\8c\8cá\85¸;KVP\Ê\Ê!M¥*yÌ«\9f\8e8\ã\8e\18ª-³ò;99¡\9d\r²ò\ÚrB\ 5}\Ö^xt;ñ÷¥\97^\1d\87\1co\19ûV¶ZR±\9c¡9\Çg\9fÿ\Ù',5,1,'','','',''),(3,1,0,'9305bf00a1f6a976','59483894715bf00a1f6a24a891914929','2018-11-17 12:31:27','2018-11-17 12:31:27','','','Profilbilder','person-300.jpg','image/jpeg',48,48,1488,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b   \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0   \11\12\n\13\16\"\151\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿ø\17t\8f,\ëiý\Çh\8c\98Nq\87\ã%\å\â\Ò\15,\19\10?¾e\ã³grF        ,¼¹Á#\90Ú\95\8a\ÉH±\ÈÛªpVYjm\9f_HL\80Ù¤\Ónj®ª\Ñ\0·r¯¨3_\Ä\ì\16\9aúM\Â0\97\1cn:zE\raĶë\8d\90\97YoU\á\á\äGü\87»\17`q\1fªN\89Ú\9a\9eL\È\r\99oMgKSm\11ϸ$\9dLÝ«*\9aìµ\9e$ƾ\1e\ 6n\12°©\ã`\8faH| ¦\ã\Ìa\Æ\Þaµ¦{~\'>»(:\v\84+½»j\82\ 6o£û\ f6;+\×Ya\9a>\ÃU\ÔaZ\ä\á«\15H\99b\7fqc1oz\vùý\95\á\ÝiÙ\82%a\86\93\19\81\ f\7f\90]\93\Øo)s\é^\Âx[©-4й\é\Ú\Ñ;\9f\9c\çjT[\8e³ºP\ålQ\Õ\â- \ f-\\v\Â$´\19\Ó ½g\133N\86]c\a\ÉF¹\ 6|J\9c\90 ^¢»ñ¿f<\13¥:Ī\àu\vm¬Yª¾È¬Æ¼óñ1[\Z\8d,EnÖ¨E\93òSpRÆ\86\99\èAKp\82Á\8a\95\10\"K5ñ\Öcô³\Ã\Ék\î{\85\å=\8bz\ä\è\8eeª¬Vö<\Ä\b\17}O\93^À¡\91³µÔ\8b\16Ê\9c9E\ç\å!\rf*9ʱ\'9\854\13\13n\14òT\Ó+NS?Æ\87¥!ö\87­j\a5X\Ä&¡\Ñ<1)d\ç-ù«¦\Ø\\u\9a£)_¶\Ù]¨\1clQ9Á\8d\891Y\ȸK\8d!¬\Ø\á¬`5öÀ\18R¹_\ä\Ï\Ó\16ñy\ËPú\ÍÒ°     \9c\1fh{\ e\17G\Õ\Ï1Ô\8f        P¤\Å\Ü\é\ 4Û¦%\1dú<\îU0ü\84]y?¨gp\1c)vI\7fº\v\8c\ 1\92«Ï¬þ\17§ú\à\â­\'\È\ÔùuY\7f\88\"I·Û\94Â\85þa°\ì\ç\91a½YX\11j[\81G\Èؤ\r\Ä0\ e¸\ë B³\1c\13\Ï<\è\ëuo\8f\9c«y\îj\1f:é½\9f½ö\84¶!5\Ù6\ 5¾O\è§\\\1e\ e³\16\88\15\84|¬£\8a\12<Fñ\97K9ñ\Æi9q\Ô\ã2Û\8eµgKw\14\14\'c÷-\Ç`k\ÊF\Ï\1c[§=ð®»·Mkú\1e´\ÔóHÄ\9d\1e[ \äjf\ÆZööß²WÞ\89\99±ÁX\'X U\1d)øF©87&$Z\99®4\86\9b\Ó\äX\Ì\Õz²\81®Î¸\98Ü\8d¾F\9dS\84¯\É\Û$Zp§Z\90³\ÉF\ 49\Ó\ç6\é¦8\93%\880\9c8Y+Ã\9fg\Ýʧ\7f³ÿ\0[ò½´W0\îý=x\82\Ö}g\ÄÛ\827sh\vU\Â8\Ù]}<ú\ f\86&Ñ®6HQ8ÿ\08\9a\9d¼h0YT¼\12\95/\ 4c\b0Q\Ìe\Ò\Ä}\89\Ù}\88÷6P«[\a«5%·ZR\Ô\Ìx»;i\ÑJ\ 3ljmO*Sì\82©;\81\Ðj\acFk\Õ\18\ï\ís`\99­\19¯W#s\89\v\ÉUa[yô9q\92q\ÓQ±ó0\ç\89)\13,\b\92qrq\ä4X\121Ç°\ÙA\1c\11l-l\12!c:\Ñ\ 3\10\Ê\Ö\Ó̸\87\eR\90¬g3§Û\86»\7fmð.\Þ\Ö- \97\99½\Üù¯((­\å\Ç\ f¯\Ëôö\9a\12\Ë\Z\âq\8cÿ\0Õ\92¯¹&\ 1\Ê\Î2\86\Ã!õ¯\19BU\8c\Ñ\á\86\1c1\Ø\10FZ\18QYha\87a   i\91\Ça   i\96Ym\18\ei¦Ò\946\84\ã        B\13\84§\18\Æ1\8f=¼<\Ï\Ûj\Ð\17\9a­\96\93k\8b\ er­p¯\Ì\Õì\90²#¶T|¼\füq\11S\11g\nòV\É\ 1\9f\1eY\ 2\92éSn²\ê\ÛZr\95g\1e#\1e©«S´¿]ü¥K±\99 t¥7Y·QýÒ¹w\'·\eX\9e\9b\83\82   ü¾¥»ÿ\0\9b\ 6\ 4tsXR³õ`VÒ\9f\84ø\êl\n<VÅ«\91T\9a[­Ç\93)Z\96Z\Ø\Âr\æ     «Y¡\íQÿ\0\18^2\9f\8c\ÈB\8b\85ü\ã\ç\bʲ\9f\íñ\æ\Ï\Ã\Ã\Ã\ÌVº£E\ëjd%\"\15\×Þ\8b\81h¶Cp\9c\ã/e²¤\v\90RW\9c\7f¿£\85­       \Ïû\Ê\12\9f\9c\ç?9óÿ\Ù',6,1,'','','',''),(4,0,2,'9305bf00acda37f7','52226322615bf00acd9acbf086558812','2018-11-17 12:50:03','2018-11-17 12:50:03','','','Contact Photos','1.jpg','image/jpeg',300,300,11005,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b        \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 1\ 2\ 4\ 4\ 3     \0\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b        \n\11\12\13\14\15!\16\"1A#3BQ\17\81\82\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/r9¸f3\9cDëº\9e±¾\8fð±g\ë]L\ã\Íϵ[d_\Õ\"¾þW\äñ¿\19Ķ¬\94Hx\8c\ë«x\12.¯+\'=­\91\ 2ûY©´­\97\18f0Hð\92\11\åF÷\98}`>V¹\ 2\Æø<|\Þ\r\á\íRľ\Õ\15\94\ 1vM¢¢/\ÄyÀ\8b¸\ÛZ\83\13d´\í{\Û.%\ 5F2\1c²9#\93\181\ f©\1e\\ó?\åC\9b¤\96VõÞ\8e\Â\r\å\95ùMÆ\95¼M\ãG\a\Û9À£\ eO\1d·W\9aøag\Ä,\8f\"Q\Ø\á\8cx7\Ú\æa\Ë\Ìõ\ eòù6\ä-\96§Nл\85\Þ\Ý\ãq¾\90ø\Ôz¶¡\Ø.À\ì\Û-Ì¡\80²\8b\1e¦\8e\9bn\9bic!±£\9eI\ 5\ e)\88\Ð\0¦sp1½Ø\95×\8f\ e\98ú°9J\92£h\87\Û^I\ê\×\e\\Î\89\996\1d\83\Úu\í«x\95L\è¸8®«x\êú\83\99\90\94\87úV\Ñm©Ø\82P¦bH£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8b\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)AT\É2\Þ1\12CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ø\êy\ï¶WPKúg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ek¾º\ê8­5¼ù\Îo\Æ#\àÁº$\Z\Í;\Õ\äù\9eG7\9c\æ+½\Ò,;\19\16:\Ç\1f\×<Ô¼e£¸ù\95\1dKM\ 4\82Â\85\88\9d81f\Î-\95¸cM\95\17\16Y\8cg\8b8\16\8aB¾\"=;}µò{.«\92v\0N\ë÷U²XR\8b\ËûEFKi¾Dl\80\9auW\19\18¢\91(²*ó\ï\1f\8cú(¥²§\9f\n\ e\aõ\11ò¿\Çÿ\0\88®\8bø\Û\ÔbRuÛ\86\ 3¸¼\11q°òö\Ù\n\1e\Ç\Ê;,\Èùqði\9b\\øå±\8b\f3\8f:MUd3\ e50\ç\Z\14\1c¶/Å\98Ù¢\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\88\8f©\a\bN\85\Ð\Øô멶\95óûc¼P\93ø·|\11k\ì\ë¸\ f\ e\ 6\ÙÎ\80ü\É\ 5\8f!Z\84¤n·M8\ 4­«x%\\lÀ<X0õ½®±]¯kÙ·½\9aûs\Ü\ï­v\8d³hµ\9by±lW\93OeouodwÉ\9dcc:K\Èy2¤\9c\8f!JG\ç9\Î}±\ì\Üc\18ø\1e\Ùý¿o\ëû\ãÿ\0|{\ç\1f·üñ\9c\7fó\85ø§\83\é\çô\Ï\a\7f\81¦÷{È\96\93\97j3\Ç\1eÿ\0\86zײ\Ã0Mq\e\97Á\Ü9f¦PFñG\96Ö²M6\9d#\Ùñ¢<ro\ 6Û\93\ 6µa\r\1d\156³O]¯\ëµP)(\ê\"\8a\reMdQB\81\ 2 qñ\18\"\Å\ 3\18!\r¿¾}\9a\Ü|\9d\97=\ÙË\9c\çg\ë\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"-@ù¹òa®ø¼\è\Öõ\ÌÃ\94\12ó\ e\é÷ñ\×\0\ë\8fcJK®I·\84\9ep>D<>\97U\86\Ò\ì\e\v\Å03EW\10¯­\1c©ÿ\0\8f\10\Ô\ÞòW%o¼Å¿m\9c£\Ê\e]\Æñ\È;\Õ\ÜÍ\8bl\Ú\ï\åf]­Õ¼ò|\Ï&A=\981\r\8d\Ã#Ã\85\14`\83]\ 41«\ë\ãE\83\16<qtuû\9c\ç?\×?\Û\ÛþXSDôµx:ge÷\8aÿ\0 }¨\Ó>þ\aã\9b\91\e\80ô\ëØ\99|~N\ä*Yc+÷+*ùaÀ\v¨j\92\Z?Ð\8b\97K}\9dð$L\ÄZ\á\×Q\Ûβ´\0\ 4P\ 64`\8a4hÁ\18#\Ç\0\Ø\10G\0Y\81\88!\10\ÚÑ\88B\e\8d\8dk\18\Æ\á­n\e\8cas\",=\î\9f|z¿\ã\ã\8b#s/ky\19\9cq¡M¸\1d\f\e\16R]\ìS\ì-H\17\1d°kiu\è66\Ör¾¶ü±\12¾\1c\99\8ef\\fGx\ 1\8f\ç7z\Äü[ñ\äv\9b\89ªù·°F÷\e      \13^\Ñløø¸{\È\æ¹\â\'$à\8eH\â\1fÀ¯y\f  \19\Æ^ÁD#\98\13\16bz\Ý:\82ùXdþ\96vF4/\97¶dDÛ¸\Âl¬3\ß\1fÍ\88f²¯\16]\íï\9f\87\çc\1eø\Æ>\7f¿¾6\9dÀ~¨\ï\ e\9c\ß2\9a\8eϱ²8ke´\8a\ãÉ\87\Ë\Ú6\í©k\95enq\8fÆ\97¾Ë n \Òg/\131\92Ù\83\ es\ÈF|¢\Ç<¦o\ãRܵ-ö\8e&ͤl\Ô;v½=¬|;­r\Ö\r\Íaðð\88øk&@1Áö`\'\11\1e\17?\ 5\e\9b\e\97c\v²¢\"\"\"\"\"\"\"\"\"\".2\10a\19\fb0B\13\1eB\94\8f\ 6\19s\ÈG»8k\18\Æ\ã.{Ý\9c5\8d\Æs\9c\18\ÎUFÞ¦¿!ö]\âò?¿\éZ\Æ\È\Ë>        \ê\Ñdð\ß\1cƪ³\Ì\Ú\v½\8e®IK\È[»@\èQK\Z\Îmù_ª\96)¤X\ 6<}M\93!>\11.,bb:\88¶=\â\8b\Çö\á䯻|G\Öj\ 6O\85ª[Z;då\8d®$W\È\ e£\Æz\ë\7f?a\9f!\ã8\v\1c\Öùdmf²L\7f\É<++¨ön\85&\15|\Ü6\é>!\âm\ 3\828\ÃD\á¾*\Ö\ëõ\ e9\ã]f¯P\Óuª¨\à\89_OEO\1d±¡Ã\8d\Z0\Ã\1c,k[\97¹\80\bC\82=ÿ\0PDÏ\8b1\èè\88¼G\9fz\×À=§\Ñ$q\8fcx\7f\8fù«@\93 3\v©ò&·]²S\âdr\f\Ñ\æ\ 6\971¥\Ç8A&<\98\11Á*<i\"#\ f\18\ 4\1c\12<¾zE\e§\Ómý\81ñ\8fasm[Z\ 3]\Þukn´e¥ À8\Ã|\çqf\áa\98§x\0\èÒ¦c^Ú¥Ø\9cųdxW\15\95µ\7f\ 2Àú\æ\9a\ã\\¸µ×¶\Z«*+ú+)\Ô×\94w0eU\ÜS\\U\Ê,\e:«Z\É\Â\ 4\Ú\ë*\é <9\Ðf\02¢J  c\È\10\Ê7³\1f5lw \ÞW{Á\ãsl\87\9ed½¨\Ô]g\1e\Ãb\â\1d\8eD\8d\83\8aö¶\ 4\92\nX\ÖZ¬£\àu¯\96i\19\912~ºzk  \Ò#\ÃýJLè±\9b\15Ö\88ømó¡\×?-Z1ªj\Ã\e\89»5©\ÔÇ\9f\È<\19oi\1cò\n&\84X±\ØxöqH\É;V§\Z[\9c<\ÊtpYÅ\8c\èç²\83\f¯\95\Z\ eò\91\11\11\11\11\11\11\11\11\11\11k«\Ë\'nkú9\ã׳ý\8e\96\18²¬5\1e7µ©\Õ`L\99\9a\è\Ö{®\ã\86\êz\8dc\ç·\ 4$2X^\ÛÂ\89\14\8d1\ì\9ah\Þ\Ð\ä·\ä\'RI.\\©ò¤Î\9d&D\Ù\Ód\Z\\É\92\ÌI2¥Ê\92G\ZD\992\f\98ò\ eg¼¦1^ò\14\8fs\Þ\ç9\Ù\Î\7f\9d\15\9f>\8fÿ\0\1f\8f\ë\ÇKv\Î\ã\î\95s\àr?o¬\"g]\14øò\"~\1f    \é²d3N$a\92L\98\93#\ìöò®6\90[\Â\1c\12J\85>\rm\84s>\9a)\9b/ôDDE\n\1f\81º®x\Ñ6¿!]M\Ó\7f\1f\9c¸ò\8f\16\1c\Û\Ç:\9df^^Z\Ò\êþ86\ËUI\ 1¸|\í\ëW\86\19¿¦\Æ5\Åõ@3NøÖ¿\8dE\8a\n\ÙQ{\ÏY{+\Ì\1dB\ç\ e>\ì/\ 4\í2u.I\ã{\ØwtÓ\86ù\19\81`8\ç\19&P\ßD\8d&!,µû\90\ f0\í`¶Lc<\ fû\áJ\85`\bs£\\õ\ã\13¿\Ük䣧\9c]\Ù\Î<>#\Ë\Ø*\85Q\ÈZ¹³\86X\éÜ\8dJ6AÛ¨¥\ÆpÀV\Ç\r\Èff²cA\886P°\ÉUr\'@pf\e\88\88\88\88\88\88\88\88\88\8a\">²¾r\9d\Ç~6xó\88\"·\ì\8d\ØNv\×\é,\9b\8f¯\ e\f^8\v9\14R²\ç7\ìÈ\99\1cW\8cn\Æ\1cI\81#\Ú\ì\a\19m^¨½s\808®W:ó\Ç      ð\8c\19\99®\9b\Ì|¹\ÆüW\ e\fis\ 2W!nTÚ\8cy\98\e²Ö\931Kn\Ã\á\8e\Î\Zü³\ã\9c\19W ð\'\10\ë\\\ 1\Â<GÁúu|\n­_\898\çN\ã\Ê8\15`\Äj\è\Õú\9d\f\ZP¶\14|0m\ 4\1eH0´ch\Úü5£\eq\867\Ö\Ñ\11\11\17\ 4¨±§F\91\nlpK\87,\ 6\8b.$ \8eDiQ¤\r\Â<y\0+^#\0\Â{\Ä`\95\8e\19F\ç1\í\Ës\9cf oQ\ç\8eAøóò+º\ÇÓª\9b_\Â=\8d\ 5\877q;\07²\rC\î.$\83y\ÓÀC\Ë)\8eú\r\8dØ´÷\f\98\10vj\êJ\98Ù\8dS\97-\ 3¢\98ç£\83º¬\â\ e\êò\'P6\8b\93\aY\ìþ¤[\8d\Z\ 4\É\ÙmdnL\ã\Êù\Öó\85W_òù\16÷h\Ôã¹²J\11\93\19«\ÔpI_Xa´Ã³q\11\11\11\11\11\11\11\11\11\11A/\Öÿ\0±7\1cC\Ð\ÝK\f~\1f\9eH\åÝ\8b$ùg##Y¬k5\8df[ñökÃ\97½\Øv_\9c½§v0\Öü3\97\×v\8a\96\8e\0Ô¹÷\Ì\17\v3p\16d\Â\á\Ý7}\ç*¨\8f\10\äD\97°\é «¯¦\14ø\Æ\ÆFx¬\93±þKZ\ïò¥\82,\8f\89>\9f¨\96\è¢\"\"\"(\90ú\Äú»cÌ\9e94\Þm\Öi!ʾ\ë_0\Ó\í{\r\88kA\"\è\9cy²\Ó\ÜjwUÌ\9b\87\8aX*\àZ[\Õló3\9fÉ\8a\10\Ò\È÷\8e\ÃIl\81\ÕÊ\8bcþ ¹²W^<\9ct\9b\95aG$©5\\ó©k#\10¾¯\93q\ÉN\93\ÆD\90\e8\e\83\10[\83\åHc¾Yx\ 2F5\84s\9a\Ç]²\88\88\88\88\88\88\88\88\88\88 \Ë\ë}×\82N¿ôOkll~D^b\åMxòÿ\0\9b9úg\éT\96Qcg÷\ÈÛ\8c¾¶aqí\86½þ\Ùùe\Ø\ep\Ê\èQKOÑ­­Í\9f\åKs\Ú\18\Ñ\æ·]\ê\Ç%V\Êv]\9fµ³ö-£B}~\18Ï\8e[\91º5%§\Úÿ\0\9b\\\×4-k\1f\82=ô\95\11\11\11\11jK\Ï\r\\K_\ f~BE,\".\"u»w´\8e\â1\8ep%\Ö\n<À\189~3õ\97\19\13\87ófZü°\84\1e3\ìGc4º\"Ì¿\1dzF\ÍÈ\9dô\éƧ¨V\9a\Ööge8n\ÄQ\0à´\8d®\×wºM\96öwø\ä\13\1c:º\Z\8b+C\r®q\8a\18o\14a\1eC\Ä\12^Z\88\88\88\88\88\88\88\88\88\88¢\91\ë\n\á(\1c\89\â¬|­$Y,οsO\1flµ®a\ e\ÇG.ûw\a\8d$\È#\ 5\ì3\Æ\Ä=\8cñ\È)9p\Û\"LS°y0FAU|\8a\\\9e\8d\r uþO¹\ fRx³\97\ì½c\Þm\84\7ff|F\íceÔ\84\à\ç9\Ï\Ï\ e\a\91¸kr\Ü\â;¾ynpÏ\95¢\88\88\88\88\8bH^£\1e^\Õø\8bït_²\Ø\n  9\e\8e3\Å:û^÷d²¶\r\ê\Î\rMt`\81\8c!M\83\95ø\8eG5­\14f\9f\12$\14a\e³\9aq\11I{Ò\8b\Õ}«\9f<±q§+Á\80w\é]T\×ö^U\ÛmpøÙ\87\Z\Ú÷^»\Ò4ê¹\82v\v3/³\97ska\ 4ñÀ\Ð\ne\b\87.dlÈ\8c)v\Í\"\"\"\"\"\"\"\"\"\",>\ï÷Y©;\8b\ e\Èõªù\92\7f\17\968§j\×!\1e\ 4`I´\87u\9aòM¢\97P\Ù\ 28\Åh\eh±1\bù\ 1þ\92»\ e\Ìy,ùG-\1d\en«°\è»Vͤmµr(ö­7`¹\ÕvjYy\16eS\ì:õ\8c\9a\8bª¹9\ 1\f\fȯ²\87&!²\12\94Y ]\91\91\ìövzú\92\a¥7\9aµ\9e\Zó\ fÄ\91öyL\88>^\ã~M\á\Úb\17\æÀºûa\83W±Àa¤`o\fV}z\94\92\9c\10\94\83\1c6\99²%\ 1¯¶\á\11\11\11\11@_Ö«\Ý\1d\1dn\èV»>Q7\18û\ 3;\11\Èø\81e\91F\85¯\â§c\Ôt\Ízö¹\99\11\ fú¬\é³vH\1fn%By)B\7fhó`\ 1ϯ½\15²~\97ÿ\0\17\93:\v\Ñ\àò·)\ëM§\ìgk?J\ä\rÅ\92Z\Ü\Ùk<uø¬\91\Æ\Ú9I\98\85\98u\92\7fm]9³±_³\Ý\Þb®\Î]Qã\94\92eDDDDDDDDDDET7ª³Ç¬þ¡ù\f¸\ç]R¦cxs·1\1fÈ\95³E\17\18©\×ù*&s_ºj\8c|Hm\8b\ 1\92\16\ e\ÃX\e\19ò-\î$\É\Ùg0c\83\r\8d\1c`\17»u{\99\ f\×~\Èð\'<\ 36\Ù\Ç\ fs\ f\1còD¸ôG\Ä{[\n½?m©¼¸¨\88÷J\84\'º\æª\14Ê\92Æ\93(\10\ 2ibM&\"\1c\Êô.(\ä}w\98\8f9_R\95\1ef±\É:V±¼\ÐÈ\8b(SBú­¦\9a\1d\Ì&\âPq\81\99\fÆ\88®kY\9c\18ok\98\Ç5\ÌÇ \"\"\",.\ï\çzø7\ÇgY÷þ\Ëó½\î+\è5:\Ó3]\×a4r¶=\ëo\95\86\Æ\×õ-nµò\"\æ\\\ëK3Ä\8es¼ñ\á\×F+\æN\95\1c\9dL\ fv{o\É\1d\è\í\17\9b\952\Èû_,\í\93o±G\Zd\99µ\9a­.]ô\Ñ\ê\Õ\ 4\90\Ñc\10)k\86\bù|x\95ñ\æM\Ì\Ë&WB|\Ò\ 1\98¬¦\v\97ðO²öÓ\95ôþôö_Y\9bQ\Ön&\Ø\à\ì\1ciª]×\92?ümݪ\9eÉ\95v\ 4d\914®\Ñu\é8\8fd3BpOsh8\12\996=LQFÙ¬\í\8f\1e<H\à\8b\14\ 1\8d\120E\1e4h\â`cÇ\8e\164A\0\ 2&´b\b\86Ö\8cB\eZ\Æ1­c\e\86\18\\È\88\88\88\88\88\88\88\88\88\88µ/\æ\93\Æö³\ä\ã£Ü\85\ 6®¯w(\ë\Â6óÁ\Û\1c°}§\Öy\1e®!G\b\ÑÉ\8cà¡\8fm\15婶d_iS\ê¤J«\19\18\É\ÅùSI\È\Üs¼ñ\16ùµñ\8f&k\16\Ú^ý£^N\×6½^\î?\ã\Ù\Ó\\\×\17!\93\14\ìk\9e\"³9\ÃM\16dR\9e\14ø\85\ 4\12\90\ 3\93¥+D=#~Fª{\1d\Òsô\×vا\Í\æn¤<u´\ã¶È\86\ËN\12»<\8cqð(ò(Ñ£\18:\88\à\Øk\ 6\89\1c\92¬C\16²=\8d°Å\89Ѧ\ÙK¡\11\11\17\11\8c(\â,\89\ 5\18\0\ 1¼\Ç9\9e\ 4!\13\14¤~ZÁ\8clk\9e÷½\Øk\e\8c¹\Ù\Æ1\9cª\8b½H>Sv\Ï!}\á\Ûøó]¸\9d\e­\Ý`Ù¶.6\ã\1dm\8f<8w\9b=<\Â\Ô\î»õ\Ýw\Äa\93p{xö\14T\ÒN[F¦\8b\"E,ðÀ\Ød\Å\ÄwVý}=¾%\ì| w\1e³;õ4\ìus\82\89]¼óU©#\àu»a#XBý\17\8a Î\91\9c\84\96;#\Íù\97\ 2\8f\12\×1uø¥\ 5\8chB»\85`;xõMSZ\ÑuºM;N¤­\Öõ}nº5E\15\15Daî«®\86<\ e<X±Å\8c5\8ccq\î\çgÜ\85#\9eb½\å#\Þ\îÀ\88\88\88\88\88\88\88\88\88\88\88\8a\12¾©¯\ 6ù\ç­FóȧVtù\Ö\\\á¤\Ö\Åg9qÞ«\\ùV<¡¦D+òMʾ¸Dn\'íº\94R\ZD\86\13\ïo\êG\9ah\Ñ\ï\æ\8f[¯©­\ÅgW\8d\Þöòo\8e\1e\ßq_iø\Ä\Ù)µ+/\Ñ÷­w\"û\83ºq\8dô\88 \ÝõB\ fó+ñù3«BÙ\94\Å$\ÐÅ\8d°\×TJ°\1c\Ê\àË\81*\è\î­vc\89û\85À|g\Ø\î\12\Øc\ì¼u\Ê:\Ív\ÉG,N\Ëe\Ãü\Ø\ã,\8a\8b\88E`f\Õ\\Ö\95ù\8faWe\16\15\94Bc\r\97\n1\1dõc \11\11\16¾<®sÕ\87Yüq÷7\99\è\ì\ 5[µj\1dz\å\ 3\92\v\8cû;o\93¨\ÚÆ \es\86»\àü\Î#\b\×û±\Íúó\91?\ 6úý\é\17\9b6e\94\Év62\äÏ°\9f$ógN\9a\996d¢¼ò¥Ë\94w¼ò$\È;\Þc\9c\ÏyLW¼\84{\9e\ì\ç?Ì®\ 5ô\×tâ\8f¨~)ø\14Ì«t\1dó°µ`\ì\a\9bXJ«\Ç\\o\10b\96¢\92ò)\86\13bV©@\184\"ü\812S#\Å`¤{<\7fX÷æ\88\88\88\88\88\88\88\88\88\88\88\88¸L\10\Ê £I\b¤F\90\"\ 4\à0\ØP\98%fFP\98\98A\91\8es\b7·,{3\96»\19\Æs\85U\7f«\e \Ü\1d\Ó^ò\èü\89Á §ÖªûQ«í\9c\87¸q\Õ6X\Ø\Ú\ÎñCqS\1eòý±\ 6\ì2¹\9b¹v\ 6غ\18\80!\9ad        ¶\æ$«\e[ $\8a\9aߣ\13´\Ü÷\13·Üµ\Ô&ls\í:\éy\Â{\7f/\ÊÖ§\8aL\Èz¯\"k\Û6\93O]:\86fIôT3c¯\ØmókXὶ\12k\85>\aá\95·\8e´²u\11\11hO\Ô\ÃMyy῵\80 |\81É\85[¯\\\Ï||;9\Å\1d-¸\ì¯X_\8eq\í\1c\ÕQ¥G6s\î\Ü0¹Ë±\9c*|× q=\15v\Ñ\Ê|i­\\E$ê\9d\8b\904\Ú+HB)\ 2Y\95\Öû\1dm|Ø£0^3\b\92#H(\98A\10e\e\9f\87\8d\ív0\ì_  \Ç\15U\Ô|}£\Ó\ÔB\ruef£®Â\83\ 4\ 2`\ 5\164z\98\83\18Z&c\rfZ\Ü\7f61\8f\Ýÿ\0,»9vs\9c÷DDDDDDDDDDDX\Ñ\Ù>\ãu\7f¨:U®ÿ\0\Ù\1ep\ã¾$\Ö\ê\ 67\1c»^\Ë[\ 2\Ä\å\90\ßû\94H\14\î>l\æK°+\85\Z\b\81\15Ø\91*D`5ø|\81\81\ìϬ۠\Üe(õ\9do\â\1e\\\ì\Ù\É[ Ð¶\ 2°\9c\ 2ͬ\ËcIJf\íD]£\éyó\82<°5\Ù-tV\ç9 d;\ 1n©\ß\ê»ò\é\Ü=\9d\9a\97Bú5¨Æº\15\85TKZ\í\7fOß»\1cz\81^\14\Ði\Éoc[[¥\Öj±\å\Ë\ 1\ÈûÝ\9b\ 3¥`bO)?\164S\9e6\å8\10>®^g~¹+\95v~\8fõ\9bP\ÚA\9f\Ö\ålº5&Õ¿\éQd\Æ>\ZViº\8dÅ\94yVq\ä\à\"4b\î\11²\ 1<\93#\ZQB\18\Ò|ò\Ç\Òeÿ\0i\8eY\9f\ÏþHü\89óOk9z\ã\è\rÍ\85\ 6\9bGÇ´\13\ë\"6S+\è\ã\Âu\95Ì­v\96·2_(5\9a\91õø\ 5³\91:\Ç\11#\12|\á\Ê\Èx>\90\12q\ã\ 4\8e\90<\ã%\97\9eRÞ¢ºF1\íï\87\84;&D\Ï\7f\ß\ß\"\Ã?¯\í\8c{-»ô\1f\Ä\ßD¼hB\Û\ 5\Ôn\19\1e\8fu½\Z;ö\í\ÊûgÙ·\9d\Òò40\8cPjϱmv\96r\âRÁsO&\1d=n!WG\99ai(qðk)\8f\91\11\16\Zù\10\à¹\1d\9a\9f\ 2\13ò+\ eY\ë\ç)iµekp÷\86\Þ\ÓS²mA\82Ì°\98|\80\Ù2)#5\Ì\Ë\1cv\8f\ fönr\ìQÕ°\Ð\\\ê\97÷\9a¶\Ç]&\9f`Ö®,¨/ªf3\ 3\99WsO4\ÕÖ\95Ò\99\8c»\f\93\nlc\Æ;0\ça¥\13ñ\8c\18÷]\9f\89¶H:o)ñ¦\ßfü\8a·U\ä\r7d°+FC8phö:\Û9oÀBÂ\94¹`\"\91\18\84B?8ø±\8fvp\Ü\ß\13\Ç\Ö\Ñ/ô-\"ö\ 1\87\"\ 5Ö¡­[B\90\'a\Â<K\ZhS#\18o\Æs\87\f¡3\1e\Çc9Ã\9a\ìg\ß8\Ê\íè\88\88\88\88\88\88\88\88\88¼ÿ\0\94¹W\8d¸GB\ÙyG\97w\8dk\8ex\ïM«\95u´\î[u¬Z]~\8aª\10I&\\\ë\e  o\18A\1e4q\14\å~s\9c°\"!3\8f\83\1f\9c@O\ËW«\Çm°³\Ýx+\ÆtH\ÔUP\ç\ÝkSû=±W\nt\Û\b\8a\Èú\â:cHp\18QؼƯ\Ù6(/®\Æ+óøô{=M¬[@ï_ \îg\92¾\ÆÅ£¨o,v³±ü\8b\"Fc¶\Æ\Ú^Í°È\8c\é\æ\96ö>\Îòhj5MR\ 5\85³\87\10\'\99IªR\96\10!2\16%F\8eù\Ñx\Êôuq\8e\92-k\95ü\8e\ï/\äý§è¯·\ f_¸þD\9a\8d\ e\8eÁ¯\f¯\Â\Üö\9fv\Ûn.\89&3\ZH0\ÅUCe\ 2dªûz\Ã\åªg\\+×\9e  \ë~\9f] p\1f\10ñ\×\ fi\95Qÿ\0\12\ e½Ç\9a\95.­^(ÿ\0c\8dð#*¢F|\9c\ä®\ËòIO9\\\ïl¹ùö\Æqì\88\88\88\88\88ª\89õGx¶²\èÿ\0v-û\eÇ\9aĨ\9dm\í½õ¾\ßS`\f¸Õ\9a\Ï3L\É\î¹\vPs\9a\f\b\bbm´\83\9b>dû\12\ef+G\Z\ 5|Q\æ/ª\Ý_L\8f{h»\93\ã#\8bu)6\16\12yC«±¢p_\"\â\êi\ç\Ú\Ú\17_\81\Z^¿²\92|\â~e·\ë4\13\ëeK\9c\14\9dµ\ç\9d*\Ê<\ì²Dh\88\88\88\88\88\88\88\88\8b\Æ{\ 3\ e$\ê\ç\10o<\ë\Î;\95^\8bÆ\9c{G:ûb¾´3\19\86Ç\83\14²q\n¾;\9e\Ò\Ø\ÛMÀ\1e(\15ñ½\Ï$¿\Ó\f\e\nVTµ\æ\Ó\Î\7f9ùX\å[\8dj\8e\Æ\ï\8e:\83ª\\\10<o\Ä\11¦¼\1fÄ¡­\9a÷\×\îÜ\89ô49¶¾±È£Y\8a¢NM[Hp\ÂúDù\95ð\Ï\e\14üYx ì\8f\95¾t\17\14ð¼Fk\ZM\13\81/\94¹¢þ²\\\Ý7\8ei\89\9cg\í\90(\å\88\ë»\Ù,\Ïþ\e®Å\9d\14ó\1e\á\à\Ò\á°ñ\Þ[e<nø¯\ê\7f\8c\ e\1e¬\ã\ e¿i\90\äl\8f\8b\1fø\ç\98v\Z\êóò_#[        §Ám¶\e¡\a\1d¦t\99?UEc£T@\ 1\19\ 2¾$jØ\90a\Å\Ù\Z\"\"\"\"\",[\îWO¸G½}{\ä\ e¶óö­\ ff\Ð÷Ú\92\Ãs\8c\16º\Ç_·\16[\"\9f\95\87\ eD\v\9a; Å²\81.!\ãI\f\98¢($G8\àU\ eùmð÷\Øÿ\0\13¼Ë\9dS\92`H\Üx[m°\92\Þ$\ç\Zx2q¬\ì\à\Æ$\É\ e»xo¡\80£\Ý\â@\8eYF©3\98+hq¥\ØÓ¸\99\81y_GÖ¼DùI\å\7f\14]©ª\ç=\1c\136n=Ù¢F\Ôy»\8c\878\91¢\ïz.g2W\Î8\9eqW»hÖ\8f\93X\ë\12¬1\81\8c¦°®lʶ\Û\Z\Ò%À}9\î_\0w·\835.Àõ\Ïz«Ý´}¦\ 4s\95±\ f\8c[k\96o\1e\7f3_\Ø\ë\n\ÑN¨¸®\92\ÃÃ\97\n|h²C*,\98\beF\95\18\19P\88\88\88\88\88\88\88\88¸dH\ 4P\ZT£\n4h\Â$\89\12$\10a\0\0\11¸\861\8cG4b\10\86\×<\84{\9a\Æ1®s\9d\86\ã9UJú\97<\Ê\Ýw÷²w=ná\9d\9a\Ò7Tzù±\Ùk¸\8d\18\86\89\ f\94¹*\92^kï¶\8b\ 1\81|\ê\Z+8R \ëBs\7f\ 2d\90\9aí¥¸\8a\r^\Î6\9b¼px\î\ç\8f&\9d\99\Ôú\áÁ\ÐY\ró\È;N@\ä+8¦\91¬q\86\8e\ 37õm¦\é¢$wO\98д \×õÀK\8b/`µøFtʺ [\ÞT\Ü{\Ñ~\8dð\1f\8f~¼\é}u\ë\î­\ e\8f[\Öka2öý\Ñ#\8fb\ß6A\Çk-6\íªh±\92M¶µ\97\99\12\Ü×\94\82\89\99\ 4\18r\ç<\Æ6b\"\"\"\"\"\"\"òþ_\á^%\ì\ 6\87}\Æ\1c\×\Çz\97\'ñþ\Ï_*ªûSÜ©¢]TX\×\Í\1f\Ó21\ 1(np\Û ^\â+Àñ\11\â\ÎG\97ü\1d\9c(m÷\ÏÑ\99À¼\9bou½ôO\9agõö\ÂKO9¼C\È\15\96;ÿ\0\1fÈ\94\ÈÒ\8c\èT[\19.¢\ìú\Ó\ì\ì\8a&\89\Ò\ÉsMQ\b\"\85\16¤ls¥\vS\1dsð\×\êUñ\1f¾·\98z\8b¯\ë\ey\ÞcG¿\Ðø×\96µ]\ßE\Ýb\15\91\ØI\eG\1c\îÓ´¨vN\vcEl[A\ 2\ e\Ò\04°«\åb\f\9b8\87\93\7fR<\Çù$\11¨µO!¾\'ùs\881KW_\ 3t\æN%\98\1dÞ\9a\Ú\î\14aF»³\a\16\Â-\9eɯºd\ì>lJJû\9d¶8\19\93\Â5\ÄO¤&.JòǨ\Ë\Æo\ 3Ì\8f\13\9boû\'Ä¢\99#0¡\Úo\ÝA\ìn»K:v\ 2\19\85Ym7\8f[\n\ÞC@\Â\15ͪ,\Ö5\827\ÉøÈ\89\86ú\7fYüúø\93\95\ë5~(\î?\1fÁ\Ù\ä\Ø6®³]\å([\1f\r\\\Ý\Ì\Ì\\\Í+h\ár\85>ªK`Ç\8aÜ\96\7flF5\87\ e\çC\9b\88\ÛaÕ·]7x\82\ë=\'m\Öw\n\Æ9¬}\86­}U°Acß\8c\8c\99r\ãµ\Î\Ã]\96·$\Æs\86»8\Æ}²»:\"\"\"\"\"\"\8c\9fª;\É~z3\Ð\Û\ e\1f\ãÝ\85õ\\ÿ\0\ÛV\Ûq¾ J\9b\9c\ÕlÚ\8e\85ø\8eþ>\ä*\çð®¼\86\ê\Ød\r\1dMõ)Hz}¦\ê\85\ 6\Ð\Èû\eT%EE­ý­e\r\re\85\Ý\åÝ\84*\8ajj\88Rl­m\íl¤\8a\1dueet1\Zdû     ó\f\18°¡E  dÊ\92Q\0\ 2y^\Ö\æ\à?O¿\8a*\ f\18],\×c\í5µ2û5\Îpk·¾yÚ¢E÷$s\É|É\9a\9e\83W6Id\Ím&\9dC>\1c\19\f\e«bZÞ²\Âô\ÔUs\æH\ 3\88\88\88\88\88\88\88\88\88¼Ã\96¸O\87¹\ëR\9f¡so\17h<µ¥ZG\91\12\ÃV\äMN\8f\95\Z[X\É`-m\ì)±²)c\10\Å)\98\1e\e MÀ\8d\87\8fݹ\8b\'\91ÿ\0H\ÇJ;+\16÷\7f\é´ù\1dA\æ9D|\ÆkT\àe\Ç\0\Ý;\1f¥³ð\ßÇ\9f\\iz\89Y\ 6ºLJ\ç\é\97\ÔU,°µ5\Å\ÕMÁ\84ö\Z\12\9b¸|ºú|»\aa\Æqù\1f\93:\ç{y\89\16±\r¤l\93¯8+\99j\â˧\15\85\ÝD\vH\98Ô¶\Ç    Õ\94ð,%O \81¸\ÔV\96¹\86eeu\ÅigL\ï\Âת\8b\8d»\83\7fªõ«¼\Õú\Ï\aóõÑ k\Ú7$\Õ\16Xx»\95®\Î\10\8a%l¬N,\99\ZV\Ùq`\âÀ­©\9b*mtó\æ¬\11.§YÙ\9e4\19\8b\b¢\90!\1c\ 5\19\80a°Á0^\Ò\b¢#pñ\90df\\\Â\f\8cv\1cÇ·9k\9b\9c9¹\Î3\8c®DDDDDEQOª\ 3¸w=¬ò¹Ëº\ãf8\9a\17Y+jø\17C\8d\Z\ÚL\ê\898©\Év]«b\8d^f05\166\Û\ 6\Âz»P\83&t\9ck\90$\18£\ÎY\ 6\16OúJüv\vµ=\é\99\ e\93\'\89z\8b\ 1\9b-+\8f\19¯©\Øù¢\Ó \8b¬S\15\ÒbË\838Z\ÝDÉ»\1d¥i\982\áÆ£\92#\89øg\Î\ÓtDDDDDDDDDDXs\ÞN\89õ\Ë\Èg\ 4l\1c\ 1\Ù=\1e¿l\Õ\ì\98yzý\Æ@6lº.\È\èÅ\8d\13i\ÔmÛ\86Ì©¶\8a\Òe¯tS\89²Á\î\13g\ß\ 1(iýòµ\ã\'\99üWv§b\à\ eO\89am¨Y\88\ÛG\vò\87\904\\\9d\ÇÆ\92\àDz\815\82d\'\ÞQ\1f8¨\ÛjG\90Ë«²`dH\81\n\15­_\Ý4\8f\9c\r\8b\9fk\áø\ì\íf\îK\ÎV\Ô(¤\Ì\ëÿ\0 \ì\Òòû®A\Ô\ê±ö\Ì\Ó6\v¹²1\8b}¿[\8eö¶¶A\Üû½¢¯\è9\87iq\ 3\958\ 4DDDD^s\Ì\e!´\î%\å-º1\Ý\ZF«\Ç[¾\È  ,vX\è\æ£\Öl\ì\Äf¿\19\ÆX\á>3H\×c8\Ër\ß|g\1eÊ\87\ÞBÞ¶\1eP\ß÷\8eKÛ¤\8ef\Ù\È{\86ͽló\ 47\b\1d¶\êmýÔ\91\89\Ï+\863\ÙXI+\ 6\11\Ìkðܽù\Ç\Ë6\Ùúcºi¬u/\ÅG\vl\95¤\9b#n\íDX}\90\ß\Ï7ò\ 4ñ\Úmôõð(j\87\ eA  \88L¤\Õj\é\ë28ÿ\0Dy$\8eû\12E\r\84\É\Ä4\85Q\11\11\11\11\11\11\11\11\11\11\16\93¼ôx\Í\Öü\95ô;\91´\Ú\êªÁó¯\15\ÖYrw\ 6l\æ\8e6O\ e×­\ÖN\96MH\Ö?Y\Í\Z\8bo\8dö\ÕZ\äq,$\bFq+¢\âs\ØEP§\15r_&õ\97\9bt\9eS\Ò\Ïg¥ò·\nò\ 5f\ÉT;\0\ÙUΨ\Úu\v\86\16E-ýs\r[d\È\å\91\12E&\ÍG ±_.¼\Ö4ó\9aÑ\9c\ãWst?´\14½\Ï\é\ï]û=J\Ñ\Çg1qV¡¸\Ú\Ö`ð\Ë\"\8f`³§\8ak\êi\ã\82SG\87:\ 5\9b¤\fð\98R6>2Æ\8c¦\ eFr\å²\"\"\"\"\Ö\ï\98.C\9f\Äþ/»\ÑÈ\95nö²\Õ:\ç\È6Uøûr\1f²oé¿\8d\1493Z÷\r§9\Ø\17?\f~[\82g?\17\7f\å\Í/|\e¢\83\94\87ø\ÒS$>7\"r\97\1f\è²\19\11ù\1c§\83m\Û*(\f\Ø\Ä\Ã\1f\96H\È\ì\1d\80¿\fvXLµ\ß\17{{f÷\9d\vL£\ã­\'Sе¨q Pi\Ú\íF·S\12$aD\0¡TA\ 4 \å±\Ãþ\18\ÜV\87\î/·\Ë/)\1e÷½\ïs\9e\îÚ\88\88\88\88\88\88\88\88\88\88\88\8a\9d\ fQ\7fO)ºa\å{°ún°q¿T\å\Ù0û\e®Cfd\91õ \åù\×\16\×u¦<\97»&#6\è[\1c¦¶8¢Á\84  a¬\81\19\90\85\9a×£w\991¿x¹\Ûx¿1\Î7ðGb·½{\î>[\96\16õ\ 6\9f\91X\è\9f\12¿\18\86\"_\98_\12\f&ü\æ\ÎvZð¸\ 4tµQ\11\11\11\16ª|\á\ér÷\ß\12\9dù\×kb\9am¹:\ç½Ï§\8b\1f>\Æ=\95l\1cM\ 4q\ã.`Ý\99M     \"\ç\ 6\Ï\Ö\Ü\1f/\ÎX\æ4\8cªÿ\0Á\87\1dÀ\åo-\9d\18\Ñ\ì¡Å\9d\16Ë\98±eôL\17\19²u}Of\Ú\à\Ê#~\ 4\Î3\ 6u$i\Ã+Xç\80±\Øa\ã\æ6«¥\91\11\11\11\11\11\11\11\11\11\11\11\15p>¶þ4Ö¨;9Ò¾R¯«\06\8eH\â\1eP׶[\8c\bX\95e\a\8e¶m9\Ú\ì\12\9d¬iI\Z©»\95©c\ 4®#@kI\84\1e[\89.n6I\è\90iqÒ¾\â¿-\Î\0\î\ÑR´oöý\9cVñ>­\937\19öýò\Æ<\19\Î=ó\íó\Ç\í\8f\7f\ÞkH\88\88\88\8b\e{\8dª\83v\êwdui?\1c\86Û\84¹(NkÇ\82´\99\ 6¥k,bpó\96\ã81#´Yw\ïðùüþ\ føü\1dSo¦\96\ 1¬<\ÝôO\ 2\ 1\fÈ\9b_+Ï\92\æ\r\Ädp\Å\à\ eW{Ng7\19À\87ù\19\0ZBe­û\Ê\11\ã9!\18\×\\H\88\88\88\88\88\88\88\88\88\88\88\88 \9b\81\Ök\Ý\Ã\Ý       \Ü~\9f{PòW2k?~p\Üü+\ä\êú\8d§\Ò\Ç|>Mû$\Äù\93\19\'\Åÿ\0P³\86c#˳\9a>\8d]n\rO\8c\1dò\î4 Ç\97µvGw\9dc$bh\É`j\Ú]z\90\a\90\ e1\ 3\12\0\"1\ïË\9c\Ð\Ç\10°\ì1\8dkeÂ\88\88\88\88¼·\9c¢\âw\ns\f\17e\Íl\Î-\ä\18®s}þXÄ\8dJ\Ü9\Ë}¿\7f\960ÿ\0|{c\ß\ß\Û\Û÷URúO4²mþe¸vX²6»H\ã\1ea\Ý\1cò|¿\94q5\86R\17\f\ËZ\ì\à\85\1dû\80\Ï\Û\rvKðs\9a\Ç9ض±\11\11\11\11\11\11\11\11\11\11\11\11Bc\Ö\ç[\82ô÷¥÷\1f_¾`öWj­û½¿\ËýW\8b\í¥}\7f\8f·ô\\;\Ûûý>ÿ\0\é\Â\Ï\ fH\95~!øiФ`\7f\f\Ûs\Ï<Xe\ßú\Ù\1e\ e¯\ìþ\98þ\98­À¿¿ù_\×ûbNè\88\88\88\8b«o0Eg¥n\15§ÿ\0\"\ÇV\Ø \9bÿ\0ª]L¸\äÿ\0ðLª\â=)\\\17Y¬y¤\î9iþÀSð&\95\1cqQ\r¿\Ì\16W\Ùò\È5ø\ e{\89\97\1f\8b\ fOh\ 5\îüû¶A¾ß\93ð\Ì\â\Ê\ 4DDDDDDDDDDDE\15\7fX\1e\8c\1d\8b\Ä\ìݼ\Ð\Ù!\Ü{\Í\\e:4\97`y|       ;\1eÁ\ f\\ûG\87g\ìnO\16d¸\ΠÛ\9ff\97#{\9b\82\ eÉ\9f\8b;@ð\Ã\Ö(\16\ 3{\r°\Øòfô\17=\9f\f\9a\ e\ï½\\lµ\ä\Æ?\Ô\Æ°\0Xÿ\0õ°MÊ\90z\"\"\"\"ÿ\0\ 4\18\Ì2\b£aDV8e\11\Z×\8c\83{r×\8c\8cv2×±\í\ÎZ\æ»\19k\9b\9c\ã8\Î3\9c(&úb\è#\Öù\93ó\8d\88øÀ\ÅA\Èü\91A\18Mö\Ã[\1cݧ\ä\7f\8e1\8c{þ\Ìm(\9a\ßlûc\19\Ïõ÷Â\9dª\"\"\"\"\"\"\"\"\"\"\"\"\8e\ f«\0\187\84®Æ\93-\Æ\7f\e\90:\î|g8ýÛ\97s\86\91\e\8föÏ´\8c·\ßý\9d\9c\7fu\9c\Þ\r\ê\ÃU\â\e\ÇxD!\8b2º³Å\96\86\È\Ø\Ö\äÆ´¡\ 4ì\94¹\Ãq\92\13,0\Ùów»¾\fc0ìµ\8dö\Ú\Â\"\"\"\"(tx\16\Ð\é´?8þ¡\Zj@\1e<\nþa¦\96\11\É#\Ìl\97r\å\8eY\Û,\8c\13\Ý\Ùl\8b\19F\906³\à\ 1\88\8c`\ 600Cd\Å\Ñ\11\11\11\11\11\11\11\11\11\11\11\14x½Sôv7þ\13;O\Z°\19\90x\17ü\19xq\á\Íoµu\176h¶¶§\Î^\æ·\Ú-lYR²\ß|¹ÿ\0GÀmq\1c\Æ\ç8ü,F$O\12^8\ÄG|\9c\9dðD\9c\873B§\98&ÿ\0\Ð#±\9fô­\9d\"\"\"\"\"\Ð\ç\8d\13\8a|\94yu\æIU-\8f#\9e¹²\92\1d\9f\ã`O\91G®\Ó\ÕÃ\8b\ 5\Ç\Ãq÷\88W2ö\e!\ã.\Î\18kYYkqòs\9f¾4DDDDDDDDDDDE«ÿ\03\1c\1fg\Ø\Ï\e\1d¤\áú\82²5\86\á K¯\8b0\81l¡À\94G´p\'¾+\8d\1dÒ\9b\12Ä\90\Î\à\b\Ã#ð\ÌüJ\1cc&\1eLtsE\7f\18ô\ã¬<|ð²>4þ\ e\ãj\11\ 4\7f_\Ö8°5z\áD\Ãp<ü\18\Ü\ÄÀ]\81\ã\Û\"\Æ~·5¯k\9b\8c¨DDDDEðªu\9a\Z9\×VU5\91\à\Îئ6\Â\îH~ϲ\Æc0L4\çù½\Íù7\ 5\'¶\a\867ù\Ýü«\î¢\"\"\"\"\"\"\"\"\"\"\".±¹\ê4\Û\æ¯s¨l\ 3)©¯b\â\1d\80\80ö\8c¯\ e\f#\ã\f{\ÆV·?`Y\9f|\8d\Øö\Æq\íýñôhi \ë\94t\Úõc^\Ê\Ú\Z\9a\êjö\11\Øy\19\ 6®\18`\Äk\ÞÖ±®~\0\ 1\á\Î\Ã[\87;\19\e\8c~\ØúÈ\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\8bÿ\Ù',4,0,'','','',''),(5,0,2,'9305bf00acda37f7','52226322615bf00acd9acbf086558812','2018-11-17 12:50:03','2018-11-17 12:50:03','','','Contact Photos','1.jpg','image/jpeg',80,80,2355,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v       \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0+\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 2\ 1\ 5\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b \n\11\12\13\14\16!#\"\15\17\18BCÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91ù\ãõ1VüwZfº\9b\bJ®\Ø\í¨!¶\9d\85m³e\ÙMg Ü\91\13\ 4\a\14|\\qb½tÙ\99\11ö$\15[Q\àÁ\Õ\Û|\'¬\8fJ\18¢+\18\Å_\8aÎ\9fy®ód\à]±î§\91~\Ü\èN\9e\ÊM>et-e°¦µM§s¨2T9¸\Õ4ZO\ë4\Z] W\9a~?;\ 6J³&\Ñ&\ eðu\êôç´\84´f÷}v\ë\Õ+¬\9a\Ö3V\Ð\ì;j\Ó\v\1c\ç\ä*stn]\9d¼.\87\98±\Ç\19\â      ¶\í;E¦\\V\1eÀ\Èu0°\ÏEW\ 3}o¹\e\f\16H{\v÷^8\ã\8e9\13{\á\Ù\ 4õ\ 3¦\1d¢\ìòE\1có´v\8eØ»\ e\n4\Ì+\"J\Ú`kg¿R\88+\b\ÊUøò\Öl\Äƽ\9c)\1eÍ\94¬üÑ\8c|±Po\8bÞ©\Û<°yCÓº\7fhX\',\98\Ý;Jõ»\13t0\×U?-M\85̦\É\ÛR\84JcûX\9e·\8e\19ðqòXJ¿\1e\Ãc\8f#-ýh\Êqt\15F£X U+TjL\ 4MV\9dN\81\89«\Õ+0A1\e        ^®À\80\Ä\\4,Lx\Èlp£c#\Å\1c0\85a\bi\81\Ùm´\'      N1\È9\äo\Æö\87òa¢¤t\Æ\è2\ëX\90\10Igµ\î\Æ\×Ö¹\êå\92\81d\91dl72\88ø\é! m\Ñß\92\ 4z\äk6\à%b\ f`ofS\1f \91dÄ­\v\ 4òe\é\ç\ïýã­\97m©rÙ\9aÿ\0Ll@\ë{?D[\ìÓ³Ú«h\ëb\10\f\94E¯]\ae|õ\ë\é;e\1eB.\ÉO³W\90\ 1 <T|}\98Ixñ$ \9fµ\ßLm\9a^û\Ô:»xk\89\ 5J\ëýÁ¯©\Û6\95\"\â\12Ó¦U¯5øû,\13ï²\87\1dK\ 4®6H\7f\1f\ e/,?ö3\95+(\Îy\é|q\Ç1\8b\8bVØ·7\8a.þkÚ\90\84H\Ù$úͲ&a\ãDK\8e\17(e.+7tE\ 6\ÓY\Â\Þ.M5\Õ\0+\18÷\Ã\ä\10\ÛJJ\92¼§: ú3^\89k\Ë\15ý\a­´\1eGLv\ã0iul\'\í9;3H\10Sc¥\Ì\áÕ\95\88¦\ fu)\1f\Ý\Ì\bÑ«^>\949\9cZM\Ç*\9aõx\Ï\Ó.\1ed% ¨\r1!h¬u\çGS6\18ñ\ 3¥óJ\Ø\Å9j°Ç\86B\ 4Ã\8f\e\1d£_\86\84e9+\r 0p\8f\èm<±\Ç\ÅÆ\8b¸õ\9f\Ç?Jt>\Äl\91\ï\ÚÏ­ú²½u\8f1y[ð¶¼UÁ:Á^R³\84ÿ\0\85rT \99Ƕ>,G6\9c\7f\18\äô\ã\8e9\Äû\f\92\Ë\Ã\10\Óo\8eCN0û\ f!.²ó.£-ºÓ­/\nC\8d¸\85)\ e!i\ÊV\9c\å*\Æq\9cã\95\88w\e«{\e\ÓC\æ\83J÷g]U%,}$¼\ìû\1c\19p\88þ°õ\Õ\äI\18\8d¿×\89\ 5¼\ç\Ð5¾\93W°È\9b¯\17$òD°E\81W\9aI.\1d\17f\16\"\Ê\íA¶µ\ÞúÕºÿ\0t\êKDu\×Y\í\Z\9c\8dj\8aR\Ô\f\ån\Â\v2\11\874\87\90\ 3¸±\ÞJ        \f¦\990\12\90ðf0ÁL<\Ò#·\91N\Ò\11Ò\8e\8dv\93µ@F\v37¤ô\í²\ßW\89\90\8d\92¹¤LEÒ\82\95C\ e2ú¢I¶H\Ã5)\86]i\ïôõ\13õ8\87>*Æ\8cÞ\96~\86\ f\äc´ý\8aò½\ÝB\Ë\Ý\16m]·cÈ¢~Ú\94\98\r£²v\ 4bù?±§\85N\Z  \Ü\ë\b¢\ê\îS \106a\0\94²\0p\82\ 5ú|;\19±£\8e8\ç\82ös³:S§\9a7`ö3°·x\í\7fª5¤2\æ,\93\çü\9dy\Õ)\Ä\r\e               \1c\×\ÈÉ»$ü\93\ÃDW £\ÛtùiR\Æ\ffÔ·=ñ\80\1e¯ö\ f\Êÿ\0\9aB\7f\Þ\Ýmg/Å\87\8d\83\Ï{\Z\Ö\Å\13Pª^û§\ÙZ\ë\ 4¬|\Ø!¥¯±v\Z&¨©I´\Þ^\n\Ñ\15X<\81\8b÷\12\0«üf\\\9f\17\9e,zq°+u\8a\çc©\97.\å\â¦A²\112\1d\Ê\Ú;\ 3±\è\ZjI\94\r#;\1d\93òz\æµ,`ͤg\1e§R«\8c2/\ÈQ\ 6\1ce­¥N\8a-\12\93«éµ\8du­\êUº\15\ 6\95\v\1f[¨R\éð±õÚ½b¿\14:\ 5\8d\85\81\82\89\1cXبÀFm\f\8a\10C2;-§      B1\8ex÷o:\áV\íÿ\0Ww\çW®\86?\19[\ÞÚª\å­N\99\15\9c\10\\\ 3\ÖXbA\8c±\86:\9ce\ 4\19]\95X3\82\ eã­¶ù1\í4\â°\ÚÕ\9eiõ\é\Ø\ØV\7f\ e[\ë²>$<\89E\8f¡-{?j1µºÇ¶lù\\V\9eÞ\93       \82\8e¥Y\"\é\e\ZQ `e?d\85¯\Òfi\ 3¬\96MzC6*\8c\Ð\Ð÷6\ 2¯\19¼\82T\95§\nJ°¤«\18RT\9c\ã)V3\8f|g\19Ǿ3\8c\ãù\Æqüg\1cù\ã\8ej\'å²\995\åO\Í?I¼II\99(\8e©\è\rn÷w»s\11\ZQ\ 13q\Â$L\87¬\Ö%r\87\ZS\8c¨4\×j\0\16\e\88*8}\Íe\92\1f92(w\ 6\Ûf\12\12\1eµ\r\13\\®\ÅGAW\à#\0\85\83\84\87\b\98xx±Z\ 62*.86\Ù\10\b\èð\98d@\83\15¦\87\14f[a\96\Ð\Ú\12\9c}\9f\1c\17m}BÙ\90n\Ö6=\"¡°+o¯\í~½v­CZ\à\Þs\r¸\Ö\1cv&t#Àqxi\×[ù¬|«\ëq\Ä{üV¬f\vvGÆ\8e\95\ÜÕ\8f\96\9e²\ì^\97n(\bvÀ\×;¯©¶\é\Í?+S\"=)r\14[\r\12£%\ f®¶u<r\18\15©\Z]\î¹+\1elSK\8f\0¨gT\É\ÃD\1f\12\1dü\ìF\Í\Úý\9fñ½\ßÖ«\ßó·¤\86B\91/°j\91­\ÂU»)£¬©\13ô½\ã\ 5\b;#\89\13$Xò0\ eZÀ\0Hø\Ö\×i¯:,ti\ïMCC\ç[\8e`?¬\9a\Ôq=C~P6S­ºQ\8eô³¤\0\bZþYDPv\Çn@\19\16׿ø\á\12\ 4j\ 1d}±ÿ\0«/\ç\1f÷\Ç3\á\Ç\1cq\Ç0+!¬Ç\8dõ/\Ö6TRp\12\ìþ\e-\Â\Ú\12\14\Úf\v®v\æ¥\17\ZIªK©m÷\Ç\ 6T\11\9bZ\99S©`\11\91\95å¶\9b\Ãy\ê\ã\90;V\ëô\Ây \îfÁLr\19E\çª}\f\8fÄ\9aXRrau]\87Þ±M\19oýIC®\88!°\Ê[xuÕ²\Ë\ÃeXm.·\85O\1e8\ã\8e9\ 3e\è\é_\93\ 6\ÈTB³\96:\1f·iM\Ïa¼ü\11ù\1d\81\Òs\8eD­\Ü\7f\18S\98a\ 66\Úñ\î¬!\Õ7\ïñw\Úyq\Î\ 4\8a2    x\Ä\ e\ÂK!\91\Æ|¤´\ÚI|q\16K\82°óøN\1cq\91\9c\aij\Ê\19YD)´¥O9\95sñ\Ç\1cqζC\15E¶~Gg\'43¡¶^[NH@¯º\Ë\Ï\ e\87}¾ie×\87a\Ç\e\Æ~+[-)X\ÎP\9c\ã³\Ïÿ\Ù',5,0,'','','',''),(6,0,2,'9305bf00acda37f7','52226322615bf00acd9acbf086558812','2018-11-17 12:50:03','2018-11-17 12:50:03','','','Contact Photos','1.jpg','image/jpeg',48,48,1489,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b  \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0   \11\12\n\13\16\"\151\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿ø\17t\8f,\ëiý\Çh\8c\98Nq\87\ã%\å\â\Ò\15,\19\10?¾e\ã³grF        ,¼¹Á#\90Ú\95\8a\ÉH±\ÈÛªpVYZm\9f_HL\80Ù¤\Ónj®ª\Ñ\0·r¯¨3_\Ä\ì\16\9aú\r\Â0\97\16\Ütô\8a\ZÃ\89m\×\e!.²Þ«\Ã\ÃÈ\8fù\ fv.À\â?T\9d\13µ5<\99\90\e\9aÎ\96¦\Ú#\9fpI:\99»VU5\Ùk<I\8d|<\f\Ü%aS\ÆÁ\1eÂ\90ø\13\98Ã\8d¼\ÃkLöüN=vPt\1f\bW{v\Õ\ 4\f\ßGö\1elvW®²\ã4}\86«¨Âµ\É\ÃV*±2\Ä~\â\86\1e\Þ\ì\17óû#\Ì:Ó³\ 4J\Ã\r\'\923\ 2\1e[dÿ\0 »\'°\ÞR\çÒ½\84ð·RZi¡sÓµ¢w?9\ÎÔ¨·\1dgt¡\ÊØ£«\Ä[@\1eZ¸\í\84Ih3¦Az\Î&f\9d\fº\Æ\ f\92\8dr\fø\959!@½Ew\ã~\Ìx\'Ju\89UÀ\ê\16\ÛX³U}\91Y\8dy\ç\âb¶5\ZX\8aÝ­P\8b\'\ä¦à¥\8d\r3Ð\82\96\ 5\83\15* D\96k\ã¬\Ç\ég\87\92\×\Ü÷\v\Ê{\16õ\É\Ñ\1c\ËUX­\ìy\88\10\9f\81C#gk©\16-\958r\8b\Ï\ÊB\Z\ÌTs\95bNs\nh&&\Ü)䩦V\9c¦\7f\8d\ fJC\í\ fZ\Ô\ e\88MC¢xbR\É\Î[óWM°¸\ë5FR¿m²»P8Ø¢s\83\e\12\91\85p\97\ZCY±\ÃXÀk\í\800¥r¿É\9f¦-\Âó\96¡õ\9b¥`\139\Ð>\Ðö\1c.\8f«\9e\1e\16¡I\8c¹\Ò      ·LÉ»ôyܪaù\bºò\7fP\Î\à8R\ì\92ÿ\0t\17\18\v%W\9fYü/OõÁ\ÅZO\91©ò\ê²ÿ\0\Ç\10D\93o·-\85\vü\Ãa\Ù\ä ±^¬\8c\bµ-À£\ä,R\ 6\18\a\\u\à!Y\8e      \ç\9etuº·\Ç\ÎU¼÷5\ f\9dt\Þ\Ï\ÞûB[\10\9a÷Q\Ñ\ì\9b\ 2\ß\'ôS®\ f\aY\8b\"P\Ä\n\Â>VQ\Å |        \1e#xË¥\9cø\ã4\9c¸\êq\99m\ÇZ³¥»\8a\n\13±û\96\ã°5\å#g\8e\9eøW]Û¦µý\ fZjy¤bN\8f-\Ðr53c-{{o\Ù+\ïD\Ì\Ø\à¬\13¬P*\8e\94ü#T\9c\e\93\12-L\×\ZCM\éò,fj½Y@\×g\\LnF\ß#N©\ÂW\ä\í\92-8S­HY\ä£\ 2\1c\éó\9bt\Ó\1cI\92\18N\1c,\95\áϳ\î\åS¿\Ú\a­ù^\Ú+\98w~\9e¼Ak>³\âmÁ\e¹´\ 5ª\á\1cl®¾\9e}\a\13h\×\e (\9c\7f\9cMN\Þ4\18,ª^     J\97\811\84\18(\æ2\éb>\Ä\ì¾\Ä{\9b(U­\83Õ\9a\92Û­)jd\ 1vvÓ¢\94\ 6\Ø\ÔÚ\9eT§\Ù\ 5Rw\ 3\à\Ô\ eÆ\8cת1\Ï\Ú\æÁ3Z³^®F\ç\12\17\92ªÂ¶ó\èr\ã$㦣c\æa\Ï\12R&X\11$\â\ä\ã\Èh°$c\8f\828\"\ØZ\Ø$B\Æu¢\ 6!\95­§\99q\ e6¥!X\ÎgO·\rvþ\Û\à]½¬ZA/3{¹ó\85^PQ[Ë\8e\1f_\97\é\í4%\965\Ä\ã\19ÿ\0«%_rL\ 3\95\9ce\r\86C\ë^2\84«\19£\Ã\f8c° \8c´0¢²\Ð\Ã\ e\12\Ó#\8e\12\Ó,²\Ú1\846\ÓM¥(m \Æ\12\84\'  N1\8cc\1e{xy\9f¶Õ /5[-&\×\16\1c\åZ\á_\99«\Ù!dGl¨ùx\19ø\â\"¦\"\Î\15ä­\92\ 3><²\ 5%\87R¦\ÝeÕ¶´\å*\Î<F=SV§i~»ùJ\97c2@\éJn³n£û¥r\îOn6±=7\a\ 4\13ù}Kwÿ\06\f\b\èæ°¥g\êÀ­¥?\×   ñ\Ô\Ø\14\8bW\"©4·[\8f&Rµ,µ±\84\å\Ì\13V³CÚ£þ0¼e?\19\90\85\17\vù\Ç\Î\11\95e?\Û\ãÍ\9f\87\87\87\98­uF\8b\Ö\Ô\ÈJD+¯½\17\ 2\Ñl\86\á9\Æ^\ËeH\17 ¤¯8ÿ\0\7fG\vZ\13\9f÷\94%?9\Î~s\çÿ\Ù',6,0,'','','',''),(7,2,0,'9305bf00c122b3bd','90913473615bf00c122ac78338492980','2018-11-17 12:39:46','2018-11-17 12:39:46','','','Profile Photos','person-300.jpg','image/jpeg',300,300,11007,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b     \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 1\ 2\ 4\ 4\ 3     \0\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b        \n\11\12\13\14\15!\16\"1A#3BQ\17\81\82\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/ñ\1c\Ü3\19\Î\"u\ÝOX\ßGøX³õ®¦q\æ\çÚ­²/\ê\91\1f\7f+òxß\8c\â[VJ$<Fuݼ  \17W\95\93\9e\ÖÈ\81}¬\Ô\Ú\ÖË\8c3\18$xI\bò£{\Ì>°\1f+\\\81c|\1e>o\ 6ðö©b_j\8a\Êm\0»&\ÑQ\17\â<\àE\Ü-­A\89²Zv½\í\97\12\82£\19\v\99\1c\91É\8c\18\87Ô\8f.y\9fò¡\Í\ÒM+z\ïGa\ 6ò\Êü¦\ãJ\Þ&ñ£\83\9c\àQ\87\'\8eÛ«\Í|0³\â&G\91(\ìp\Æ<\e\ís0\å\æz\87y|\9br\16\ËS§h]\Â\ïnñ¸\ßH|j=[P\ì\17`vm\96\æPÀYE\8fSGM·M´±\90\Ø\Ñ\Ï$\82\87\14\Äh\0S9¸\18\Þ\ìJ\ëÇ\87L}X\1c¥IQ´C\í¯$õk\8d®gDÌ\9b\ eÁ\í:öÕ¼J¦t\\\1cWU¼u}A¶\ÚL\ÈJsC\ÍV\Ñm©Ø\82P¦b@£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8d\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)AT\É2\Þ1>CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ð\ê9\ï¶WPKúg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ekþº\ê8­5½\84\ç7\ã\11ð`\Ý\12\rf\9d\ëòa\Ü\ß#\9b\Îw^\Õs\15\Þ\é\16\1d\8c\8b\1dc\8f\9ej^2\Ñ\Ü|\Êö\ e¥¦\82AaB\ÄvN\9c\18\Óg\16\Ê\Ü1¦Ê\8b\8b,\Æ3Å\9c\vE!_\11\1e\9d¾\Úù=\97U\É;\0\'uûª\Ù,)E\åý¢£%´\ß\"6@M:«\8c\fQH\94Y\15\8f¶Y\Æ}\14b\Ù\ÓÏ\85\af\83ú\88\á\Ù_\ãÿ\0\ÄOEüm\ê1):\í\Ãt\ 1\Ü^\b¸\Øy{l\85\ fc\å\1d\96d|¸ø4Í®|r\ØÅ\86\19Ç\9d&ª²\19\87\Z\98s\8d\n\ e[\17\â\Ìl\Ñ\11\11\11\11\11\11\11\11\11\11\11\11\11\11\11DGÔ\83\ 4\'B\èlzu\Ô\ÛJùý±\Þ(Iü]¾\bµöu\Ü\a¬\Ù\a\ 3l\ç@~d\82Ç\90­BR7[¦\9c\ 2VÕ¼\12®6`\1e,\18z\Þ\×X®×µ\ì\Û\Þ\Í}¹\îwÖ»FÙ´Zͼض+ɧ²·º·²;\äα±\9d%\ä<\99RNG\90¥#ó\9c\ç>\Øön1\8c|\ flþß·õýñÿ\0¾=ó\8f\Ûþx\Î?ù\ÂüSÁôóúg\83¿À\Ó{½\äKI˵\19\8f\7f\Ã=k\Ùa\98\8dó\Ë\à\î\1c³S(#x£\ËkY&\9bN\91\ìø\Ñ\1e97\83m\Éñ\ 3\86\8e\8a\9bY§®\×õÚ¨\14\94u\11E\ 6²¦²(¡@\81\10\8c\11b\81\8c\10\86\Ü{\çÙ­\Ç\É\ÙsÝ\9c¹\Îv~²\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\Ô\ f\9b\9f&\Z\ï\8bÎ\8do\\\Ì9A/0\î\9f\7f\1dp\ e¸ö4¤º\ä\9bxF|i\ç\ 3\äC\Ã\éuXm.Á°¼S\ 34Uq\nú\ÑÊ\9føñ\rM\ï%rVû\Ì[ö\Ù\Ê<¡µ\Üo\1c\83½]\ÌضͮþVe\Ú\Ý[\Ï\'\Ìòd\13Ù\83\10\Ø\Ü2<8QF\b\83\Z¾¾4X1£\Ç\17G_¹\Îsýsý½¿\å\854OKW\83¦v_x¯ò\aÚ\8d3\ï\à~9¹\11¸\ f\89\97\Ç\ä\îB¥\962¿r²¯\96\1c\0º\86©!£ý\b¹t·\Ù\ß\ 2D\ÌE®\1du\1d¼\ë+@\0E\0cF\b£F\8c\11\82<p\r\81\ 4p\ 5\98\18\82\11\r­\18\84!µ¬\18\ØÖ±\8cn\Z\Ö\á¸\Æ\172\"\Ã\î\é÷Ç«\Þ>8²72ö·\91\99\Ç\Z\14Û\81\ÐÁ±e%\Þ\Å>\ÂÔ\81q\Û\ 6\97^\83cog/\ëo\Ë\11+\áÉ\98\æe\Ædw\80\12J\18ýów¬OÅ·\1eGi¸\9a¯\9b{\ 4oq°\915\í\16Ï\8f\8b\87¼\8ec\9e\"rL:\b\8e!ü\n÷\90À\91\9ce\ì\14B9\8dû1f\'­Ó¨/\95\86O\égdcBù{fDM»\8c&\Ê\Ã=ñüØ\86k*ñe\Þ\Þùø~v1\ï\8cc\çûû\ãi\Ü\a\8eð\é\Íó)¨\ìû\e#\86¶[H®<\98|½£nÚ\96¹VV\ç\18üi{\ì½}º\83I\9c¼L\ÆKf\f9\Î#\Ùò\8b\1cò\99¿\8dKrÔ·\Ú8\9b6\91³P\í\Úôö1ð\îµ\ËXW5\87\Ã\Â#á¬\99\0\Ç\aÙ\80\9cDx\\ü\14m#>\Æ7.\Æ\17eDDDDDDDDDDD\\d \Â2\18\Ä`\84&<\85)\1f\86\fcf2ç\90\8fvp\Ö1\8d\Æ\\÷»8k\e\8c\ç9\Æ1\9cª\8dýM~C\ì»\Å\ä\7f\7fÒµ\8d\91\96|\13Õ¢\É\á¾9\8dUg\99´\17{\1d\\\92\97\90·v\83\965\9c\Ûò¿U,SH°\f\9b&B|\"\\X\Ä\Ät\Ñl{\Å\17\8f\í\Ã\É_vø\8f¬\Ô\f°\85ª[\Ú;då\8d®$RH\ e£\Æz\ë\7f?a\9f!\ã8\v\1c\Öùdmf²D\7f\É<+\e¨ön\85&\15|\Ü2\é>!\âm\ 3\828\ÃD\á¾*\Ö\ëõ\ e9\ã]f¯P\Óuª¨\à\89_OEO\1d±¡Ã\8d\Z0\Ã\1c,k[\97¹\80\bC\82=ÿ\0PDÏ\8b1\èè\88¼G\9fz\×À=§\Ñ$q\8fcx\7f\8fù«@\93 3\v©ò&·]²\Ó\âdr\f\Ñ\æ\ 6\931¥\Ç8A&<\98\11Á*<i\"#\ f\18\ 4\1c\12<¾zE\e§\Ómý\81ñ\8fasm[Z\ 3]\Þukn´e¥ À8\Ã|\çqf\áa\98§x\0\èÒ¦c^Ú¥Ø\9cųdxW\15\95µ\7f\ 2Àú\æ\9a\ã\\¸µ×¶\Z«*+ú+)\Ô×\94w0eU\ÜS\\U\Ê,\e:«Z\É\Â\ 4\Ú\ë*\é <9\Ðf\02¢J      c\È\10\Ê7³\1f5lw \ÞW{Á\ãsl\87\9ed½¨\Ô]g\1e\Ãb\â\1d\8eD\8d\83\8aö¶\ 4\92\nX\ÖZ¬£\àu¯\96i\19\912~ºzk  \Ò#\ÃýJLè±\9b\15Ö\88ømó¡\×?-Z1ªj\Ã\e\89»5©\ÔÇ\9f\È<\19oi\1cò\n&\84X±\ØxöqH\É;V§\Z[\9c<\ÊtpYÅ\8c\èç²\83\f¯\95\Z\ eò\91\11\11\11\11\11\11\11\11\11\11k«\Ë\'nkú9\ã׳ý\8e\96\18²¬5\1e7µ¨\Õ`L\99\9a\è\Ö{®\å\86\êz\8dc\ç·\ 4$2X^\ÛÂ\89\14\8f1\ì\9ah\Þ\Ð\ä·\ä\'RI.\\©ò¤Î\9d&D\Ù\Ód\Z\\É\92\ÌI2¥Ê\92G\ZD\992\f\98ò\ eg¼¦1^ò\14\8fs\Þ\ç9\Ù\Î\7f\9d\15\9f>\8fÿ\0\1f\8f\ë\ÇKv\Î\ã\î\95s\àr?o¬\"g]\14øò\"~\1f    \é²d3N$a\92L\98\93#\ìöò®6\90[\Âd\12J\85>\rm\84s\12\9a1\9b/ôDDE\n\1f\81º®x\Ñ6¿!]M\Ó\7f\1f\9c¸ò\8f\16\1c\Û\Ç:\9df^^Z\Ò\êþ86\ËUI\ 1¸|\í\ëW\86\19¿¦\Æ5\Åõ@3NøÖ¿\8dE\8a\n\ÙQ{\ÏY{+\Ì\1dB\ç\ e>\ì/\ 4\í2u.I\ã{\ØwtÓ\86ù\19\81`8\ç\19&P\ßD\8d&!,µû\90\ f0\í`¶Lc<\ fû\áJ\85`\bs£\\÷\ã\13¿\Ük䣧\9c]\Ù\Î<>#\Ë\Ø*\85Q\ÈZ¹³\81\Ø\éü\8dJ6AÛ¨¥\ÆpÀV\Ç\r\Èff²cA\886P°\ÉUr\'@pf\9b`\88\88\88\88\88\88\88\88\88\88\8a\">²¾r\9d\Ç~6xó\88\"·\ì\8d\ØNv\×\é,\9b\8f¯\ e\f^8\bù\14R²\ç7$È\99\1cW\fn\Æ\1cI\81#ð\ì\a\19m^¨½s\808®W:ó\Ç       ð\8c\19\99®\9b\Ì|¹\ÆüW\ e\fis\ 2W!nTÚ\8cy\98\e²Ö\931Kn\Ã\á\8e\Î\Zü³\ã\9c\19W¡p\'\10\ë\\\ 1\Â<GÁúu|\n­_\898\çN\ã\Ê8\15`\Äj\è\Õú\9d\f\ZP¶\14v°m\ 4\1eH0´c`\Úü5£\eq\86\91\11\11\17\ 4¨±§F\91\nlpK\87,\ 6\8b.$ \8eDiQ¤\r\Â<y\0+^#\0\Â{\Ä`\95\8e\19F\ç1\í\Ës\9cf oQ\ç\8eAøóò+º\ÇÓª\Û_\Â=\8d\ 5\877q;\07²\rC\î.$\83y\ÓÀC\Ë)\8eú\r\8dØ´÷\f\98\10vj\êJ\98Ù\8dS\97-\ 3¢\98ߣ\83º¬\â\ e\êò\'P6\8b\93\aY\ìþ¤[\8d\Z\ 4\É\ÙmdnL\ã\Êù\Öó\85W_òù\16÷h\Ôã¹²J\11\13\19«\ÔpI_Xa´Ã³u\11\11\11\11\11\11\11\11\11\11A/\Öÿ\0±7\1cC\Ð\ÝK\f~\1f\9eH\åÝ\8b$ùg##Y¬k5\8df[ñökÃ\97½\Øv_\9c½§v0\Öü3\97\×v\8a\96\8e\0Ô¹÷\Ì\1f\v3p\16d\Â\á\Ý7}\ç*¨\8e\10\äD\97°\é «¯¦\14ø\Æ\ÆFx¬\93±þKZ\ïò¥\82,\8f\89>\9f¨\96\è¢\"\"\"(\90ú\Äú»cÌ\9e94\Þm\Öi\"J¾\ë_0\Ó\í{\r\88kA\"\è\9c{²\Ó\ÜjwUÌ\9b\87\8aX*\àZ[\Õm\133\9fÉ\8a\10\Ò\É÷\8e\Â\Él\81\ÕÊ\8bcþ ¹²W^<\9ct\9b\95aG$©5\\ó©k#\10¾¯\93q\ÉN\93\ÆD\90\e8\e\83\10[\83\åHc¾_`\ 2F5\84s°\Ç]²\88\88\88\88\88\88\88\88\88\88 \Ë\ë}×\82N¿ôOkll~D^b\åMxòÿ\0\9b9úg\éT\96Qcg÷\ÈÛ\8c¾¶aqí\86½þ\Ùùe\Ø\ep\Ê\èQKOÑ­­Í\9f\åKs\Ú\18\Ñ\æ·]\ê\Ç%V\Êv]\9fµ³ö-£B}~\18Ï\8e[\91º5%§\Úÿ\0\9b\\\×4-k\1f\82=ô\95\11\11\11\11jK\Ï\r\\K_\ f~BE,\"/\âu»w´\8e\â1\8fp%\Ö\n<À\189~3\91\97\19\16G\87³-~XB\ f\19ö#±\9a]\11f_\8e½#f\äNút\ãS\Ô+Mk{3²\9c7b(\80pZF\×k\9b\Ý&\É{;ür    \8e\1d]\rE\95¡\86\×8\Å\f7\8a0\8f!\â  /-DDDDDDDDDDQHõ\85p\94\ eDñV>V\92,\96g_¹§\8f¶Z\×0\87\97\83Æ\92d\11\82ö\19\ãb\1e\Æx\ä\14\9c¸m\91&)\Ø<\98# ª¾E.OF\86\Ð:ÿ\0\'Ü\87©<Y\Ëö^±\ï6\Â?³>#v±²\êBp³\9c\ç\ç\87\18{\ 3\È\Ü5¹nq\1d\ß<·8g\Ê\ÑDDDDE¤/Q\8f/jüE\á׺\ f\Ùl\ 5\ 4\9c\8d\19\9d}¯~rY[\ 6õg\ 6¦º0@\Æ\10¦Á\ÊüG#\9aÖ\8a3O\89\12\n0\8d\Ù\Í8\88¤½\éE\ê¾\ÕÏ\9eXøÓ\95\àÀ;ô®ªkû/*í¶¸|lÃ\8dm{¯]\é\ZuTÁ;\ 5\99\97\Ù˹µ°\82x\àh\ 52\84C\9726dF\14»f\91\11\11\11\11\11\11\11\11\11\16\1fwû¬Ô\9d\Å\é\87dz\Õ|\É?\8b\1cSµk\90\8f\ 20$\ÚCº\Íy&\ÑK¨l\81\1c\15´X\98\84|\80ÿ\0I]\87f<\86\96\8e\8d·U\Øt]«f\Ò6Ú¹\14{V\9d°\\\ê»5,¼\89Ò©ö\1d~\ÆME\Õ\\\9c\80\86\ 6dW\ÙC\93\10\Ù    J,\90.\È\Èö{;=}I\ 3Ò\9b\ÍZ\Ï\ry\87\âHû<¦D\1f/q¿&ð\í1\vó`]}°Á«\Ø\à0\Ò07\86+>½JI0YN\bJA\8e\eL\Ù\12\80\×\Ûp\88\88\88\88 /\ëUî\8e°Z\ e·t+]\9f(\9b\8c}\81\9d\88\ä|@²È£B\×ñS±\ê:f½{\\\Ç\b\87ýVtÙ»$\ f·\12¡<\94¡>q\1el\09õ÷¢¶O\Òý\âògAz<\1eV\å-i´ý\8c\íg\é\\\81¹2K[\9b-g\8e¿\15\928\ÛG)3\ 6¾P³\ e²[\ïí«§6~+ö{»\ÌU\Ù˪<b\92\88\88\88\88\88\88\88\88\88\88ª\86õVxõ\9f\Ô?!\97\1c\ëªT\Ìo\ ev\æ#ù\12¶h¢\ã\15:ÿ\0%D\Îk÷MQ\8f\89\r±`2X¢Á\Øk\ 3c>E½Ä\99;,\æ\fpa±£\8c\ 2÷n¯s!ú\ï\Ù.\ 4\80f\Û8\á\îa\ã\9eH\97\1e\88ø\8fkaW§\íµ7\97\15\11\1e\éP\84÷\\\ÕB\99RX\Òe\ 2\1cÀM,I¤\ÄC\99^\85\1c\8f®ó\ f\18q\ç+\êR\813X\ä\9d+X\ÞhdF\94)¡}V\ÓM\ e\eq(8À\Ì\á\ 6cDW5¬\Î\f7µ\Ìc\9a\æc\Ð\11\11\11\16\17wó½|\e㳬ûÿ\0eù\Þ÷\15ô\Z¥iY®ë°\9a9[\1eõ·\Ê\Ãckú\96·Zù\11s.u¥\99\âG9\Þxð\ë£\15ó\'J\8e\16aΦ\ 3»=·\ä\8eôv\8b\98{MÊ\99d}¯\96v\É\×Ø£\8d2L\Ú\ÍV\97.úhõj\82Hh±\88\14µ\Ã\ 4|¾<Jøó&\æe\93+¡>q#³\15\ÔÁ}2þ     ö^\Úr¾\9fÞ\9e\Ë\ë3j:\Í\Ä\Û\1c\1d\83\8d5KºòGÿ\0\8d»µS\Ù2®À\8c\92&\95\Ú.½\'\11\86hN     \îm\a\ 2SfÇ©\8a(\Û5\9d±\ãÇ\89\1c\11b\801¢F\b£Æ\8d\1cL\fxñ\ÂÆ\8c \0FÖ\8cA\10\ÚÑ\88CkX\Æ5¬cp\Üc\v\99\11\11\11\11\11\11\11\11\11\11\16¥ü\Òx\Þ\Ö|\9ct{\90¸@\Õ\Õ\î\å\1dxF\Þx;c\96\ f´ú\Ï#\Õ\Ä(\á\Z91\9c\141í¢¼µ6Ì\8b\í*}T\89Uc#\198¿*i9\e\8ew\9e\"\ß6\Î1\ä\Íb\ÛKß´k\É\Ú\æ׫\Ý\Çü{:k\9a\â\ä2b\9d\98s\ÄVg8i¢Ì\8a\9f\10 \9d\ 2L\98r\0rt¥h\87¤o\È\ÕOcºN~\9an\Û\14ù¼\ÍÔ\87\8e\9cv\Ù\10\Ùi\ÂWg\91\8e>\ 5\1eE\Z4c\aQ\1c\e\r`\Ñ#\92U\88b\ÖG±¶\18±:4\Û9t\"\"\"\â1\85\1cE\91 £\0\07\98\ç3\Ú \84\"n^B\94\8f\ËX1\8d\8ds\Þ÷»\rcq\97;8\Æ3\95Qw©\a\Êv\Û\ä/¼;\87\1e\13£u»¬\e6\Å\Æ\Üc­±\ç\87\ eóg§\98Z\9d\×~»®ø\8c2n\ fo\1eÂ\8a\9aL\82Z6\154Y\12)g\86\ 6\Ã&.#º·\ë\é\íñ-c\å\a¸õ\99ß©§c«\9c\14J\íç\9a­I\1f\ 3­\Û   \Z\Â\17\è¼U\ 6t\8c\ä$±\Ù\1eo̸\14x\96¹\8b¯\Å(,cB\15\Ü+\ 1\ÛǪj\9aÖ\8b­\Òi\Úu%n·«\ëu±ª(¨ª\"\8e\1dm]t1\àq\âÅ\8e,a¬c\e\8fw;?\"\14\8ey\8a÷\94\8f\ 2\"\"\"\"\"\"\"\"\"\"\"(Jú¦¼\eç\9eµ\e\Ï\"\9dY\Ó\çYs\86\93[\15\9c\å\Çz­s\åXò\86\99\10¯\É7*ú\á\11¸\9f¶\êQHi\12\e\fO½¿©\1ei£G¿\9a=n¾¦·\15\9d^7{\Ûɾ8{}\Å}§\ã\13d¦Ô¬¿GÞµÜ\8b\ e\é\Æ7\Ò\"\83w\Õ\b?̯\Ç\äέ\vfS\14\93C\166\Ã]Q*Às+\83.\ 4«£ºµÙ\8e\'\î\17\ 1ñ\9fc¸Ka\8f²ñ\Ï)k5\Û%\1c±;-\97\ fóc\8c²*.!\15\81\9bUsZW\æ=\85]\94XVQ    \8c6\\(\ÄwÕ\8c\80DDZøò¹\ÏV\1dgñ\Ç\Ü\Þg£°\15nÕ¨u\ë\94\ f¦H.3\ì\í¾N£k\Z\80m\Î\Z\ï\83ó8\8c#_\î\Ç7\ë\ÎDü\e\ë÷¤^lÙ\96S%\Ø\ØË\93>\Â|\93Í\9d:i\Ë*dÙ\92\8aóÊ\97.Q\ÞóÈ\93 \ïy\8es=\å1^ò\11\î{³\9cÿ\02¸\17\Ó]Ó\8a>¡ø§\àS2­\Ðw¾\ÂÕ\83°\1c\91&ma*¯\1dq¼A\8aZ\8aKȦ\18M\89Z¥\0`Ð\8bò\ 4\ÉL\8f\15\82\91\ìñýcß\9a\"\"\"\"\"\"\"\"\"\"\"\"\á0C(&\8d$\"\91\Z@\88\13\80\ÃaB`\95\99\19Ba\13\ ea\ 6F9\Ì \Þܱ\ì\ÎZ\ìg\19\15Uþ¬n\83pwM{Ë£ò\'\ 6\82\9fZ«\íF¯¶r\16\á\ÇT\Ùcck;\Å\r\ÅL{\Ëö\Ä\e°\Ê\Ön\å\Ø\eb\èb\0\86i\90\98\92¬ml$\92+ªk~\8cN\Ós\ÜN\ßr\×P\99±Ï´\ë¥\ç    \íü¿+Z\9e)3!ê¼\89®\ì\ÚM=t\ê\19\99\'\ÑPÍ\8e¿a·Í­c\86ö\ØI®\14ø\1f\86V\Þ:\Ò\É\ÔDE¡?S\r5\å\ç\86þ\Ö\ 2\81ò\a&\15n½s=ñð\ì\ç\14t¶ã²½a~9Ç´sUF\95\1c\ÙÏ»p\Â\ç.\Æp©ó^\81\ÄôU\ÛG)ñ¦µq\14\93ªv.@\Óh­!\b¤    fW[\ìuµób\8cÁx\Ì\"H\8d ¢a\ 4A\94n~\1e7µ\Øñ|\'\1cUWQñö\8fOQ\b\95\9a\8e»\n\f\10        \80\14X\Ñ\êb\fah\99\8c5\99kqü\Ø\Æ=òÿ\0\96]\9c»9\Î{¢\"\"\"\"\"\"\"\"\"\",h\ì\9fqº¿\Ô\1d*\×\7f\8f8q\ß\12ku\ 3\e\8e]³e­\81br\Èoý\Ê$\nw\1f6s%\Ø\15Â\8d\ 4@\8a\ìH\95\"0\Zü>@°\èÀög\Öm\Ðn2\94zηñ\ f.vlä­\90h[\ 1XN\1dÕ\81f\Öe±\âY3v¢.\Ñô¼ùÁ\1eX\Zì\96º+s\9c\902\1d\80·T\ïõ]ùt\î\1e\Ì\ÍK¡}\Z\Ôc]\nª%­v¿§\ïÝ\8e=@¯\nh4ä·±­­\Ò\ë5Xò\æG9\1f{³`t\Ì\fI\ä\'\âÆ\8as\Æܧ\ 2\a\Õ\Ë\Ì\ï\×%r®\Ï\Ñþ³j\eH3úÜ­\97F¤Ú·ý*,\98\Ç\ÃJ\Í7Q¸²\8f*\Î<\9c\ 4F\8c]\Â6@\'\92dcJ(C\ZO\9eXúL¿\í1\Ë3ùÿ\0\É\1f\91>i\íg/\\}\ 1¹° \Óhøö\82}dF\Êe}\1cxN²¹\95®\Ò\Ö\æK\å\ 6³R>¿\0¶r\'X\â$bO\9c9Y\ f\a\17\âN<`\8av±\Ê\Ö\12\a\9cd²ó\Ê[\ÔWH\Æ=½ðð\87\99\ïûû\äXgõý½½\96\Ýú\ f\âo¢^4!m\82\ê7\f\8fGºÞ\8b\1dûv\å}³\ì\Û\Î\éy\Z\18\86(5gض»K9q)`¹§\93\ e\9e·\10«£Ì°´\948ø5\94Ç\9b\88\8b\r|\88p\\\8e\ÍtO·\\\ 1     ù\15\87,õó\94´Ú²µ¸{\Ãoi©\Ù6 ÁfXL>@l\99\14\91\9a\æ\å\8e;G\87û79v(\é\Øh.uKû\Í[c®\93O°kW\16T\17\Õ3\19\81Ì«¹¦\9aj\ëJ\éL\Æ]\86I\85:1\ã\1d\98s°Ò\89ø\Æs\8c{®\Ñ\Ä\Û$\1d7\94ø\Óo³~E[ªò\ 6\9b²X\15£!\9c84{\1dm\9c·\à!aJ\\°\11H\ì\fB!\1f\9c|XÇ»8no\89\ã\ëh\97ú\16\91{\0Ã\91\ 2\ëPÖ­¡H\13°\á\1e%\8d4)\91\8c7·9Ã\86P\99\8f\9c\á\Ív3\8c\19\11\11\11\11\11\11\11\11\11\17\9fò\97*ñ·\b\è[/(ò\îñ­q\Ï\1d\éµr®¶\9d\Ënµ\8bK¯\ÑUB       $K\9dca-\ã\b\8e\"\9c¯\Îs\96\ 4D&qð\eó\88    ùjõx\í¶\16\ 5\89\Z\8aª\14û­jó\Û\15p§M°\8e\8c;®#¦4\87\ 1\85\1d\8b\Ìjý\93b\82ú\ìb¿?\8fG³\Ô\ÚÅ´\f:õú\ e\æy+\ìlZ:\86ò\Çk;\1fȲ$f;lm¥\ì\Û\f\88Î\9eioc\ì\ï&\86£T\Õ X[8q\ 2y\94\9a¥)lA\ 2\13!bTh\ï\9d\17\8c¯GW\18\é\"Ö¹_\ÈöòþO\Ú~\8a\ëpõû\8f\äI¨\Ð\è\ì\Zð\Êü-\Ïi÷m¶\â\è\92c1¤\83\fUTVP&J¯·¬>Z¦w½y\à\9e·\éõ\Ú\a\ 1ñ\ f\1d\9bU\eñ \ë\Üy©R\ê\Õ\â\8fö8\ß\ 22ª$g\É\ÎJ\ì¿$\94ó\95\ÎöË\9f\9fl{{\Z\"\"\"\"*¢}Qþ-lú?Ý\8b~\ÆñÞ±*\1f[{o}o·\Ô\Ø\ 3.5f³\Ì\Ó2{®B\Ô\1c\838\82;\82\18\9bm \æÏ\97\86Ù\8a\ÑÆ\81_\14y\8b\ê·W\Ó#\Þ\Ú.\äø\È\â\ÍJM\85\84\9eP\ê\ìh\9c\17ȸº\9ayö¶\85\×\àE\97¯ì¤\9f8\9f\99mú\Í\ 4ú\ÙR\ç5\85\b$\9dµ\ç\9d*\Ê<\ì²Dh\88\88\88\88\88\88\88\88\8b\Æ{\ 3\ e$\ê\ç\10o<\ë\Î;\95^\89Æ\9c{G:ûb¾´3\19\86Ç\83\14\Òq\n¾;\9e\Ò\Ø\ÛMÀ^(\15ѽ\Ï$¿¶0Á°¥eK^m<\çó\9f\95\8eU¸Ö¨\ìnø\ã¨:¥Á\ 3\ÆüA\ZkÁüJ\ZÙ¤}~\íÈ\9fCC\9bk\ë\17\n5\98ª$\äÕ´\87\f/¤O\99_\10ñ±KÅ\97\8a\ e\Èù[\çAqO\v\Äf±¤\Ñ8\12ùK\9a/\ë%\Í\Óxæ\98\99\Æ~\Ù\ 2\8eX\8e»½\92\Ìÿ\0\áº\ìY\ÑO1\î\1e\r.\e\ f\1d\å¶W\Æ\ï\8aþ§øÀ\á\ê\Î0\ëö\99\ eF\Èø±ÿ\0\8ey\87a®¯?%ò5°\9a|\16\Ûaº\10~q\ÚgI\91õTV:5D\0\11\90+\âF­\89\ 6\1c]\91¢\"\"\"\"\"ž\åtû\84{\××¾@\ëo?j\Ðöm\ f}©,7¸Ák¬uûqe²)öZ)Xp\ä@¹£²\f[(\12\âH\8d$2b\88 \91\1e@\àU\ eùmð÷\Øÿ\0\13¼Ë\9dS\92`H\Üx[m°\92\Þ$\ç\Zx\12q¬\ì\à\Æ$\É\ e»xo¡\80£\Ý\â@\8eYF©3\98+hq¥\ØÓ¸\99\81y_GÖ¼DùI\å\7f\14]©ª\ç=\1c\136n=Ù¢F\Ôy»\8c\878\91¢\ïz.g2W\Î8\9eqW»hÖ\8f\93X\ë\12¬1\81\8c¦°®lʶ\Û\Z\Ò%À}9\î_\0w·\835.Àõ\Ïz«Ý´}¦\ 4s\95±\ f\8c[k\96o\1e\7f3_\Ø\ë\n\ÑN¨¸®\92\10\åÂ\9f\Z,\90Ê\8b&9\Â\19Q¥F\ 6T\"\"\"\"\"\"\"\".\19\12\ 1\14\ 6\95\8d\Z0\89\"D\89\ 4`@\0\ 5\8e!\8cc\11\18\84!µ\Ï!\1eæ±\8ck\9c\ça¸\ÎUR¾¥\Ï2·=ý\ì¥\Ï[¸gf´\8d\1e¾lvZ\ëcF!¢C\å.J¤\97\9aû\í¢Ày`_:\86\8a\14\88\9c\ßÀ\99$&»in\"\83\8d¦\ï\1c\1e;y\ãɧfu>¸pt\16C|ò\nÓ\909\n\Î)¤k\1c\80\Íý[iºh\89\1d\Ó\æ4-(5ýp\12\â\Ë\Ø-~¸Î\97WT\v\9b\8fz/Ѿ\ 3ñ\ï×\9d/®½}Õ¡\Ñ\ëz\Íl&^ߺ$q\ì[\æ\È8\íe¦ÝµM\162I¶Ö²ó\"[\9aò\90Q3 \83\ e\\\ç\98\Æ\ÌDDDDDDD^a\Ëü+Ľ\80\Ð\ï¸Ã\9aø\ïR\äþ?\Ù\ë\åU_j{\954K\9a\8b\Zù£úfF %\r\Î\ed\v\ÜEx\1e\"<Y\Èòÿ\0\83³\85\r®ùú38\17\93mî·¾\89óTþ¾\ØIi\ç7\88y\ 2²\Ç\7f\ãù\12\99\ZQ\Ý\n\8bc%\Ô]\9fZ}\9d\91D\Ñ:Y.iª!\ 4P¢Ô\8d\8et¡jc®~\ZýJ¾#÷\Öó\ fQuýco;\Ìh÷ú\1f\ZòÖ«»è»¬B²;     #h\ã\9d\Úv\95\ e\ÉÁlh­\8bh Á\Ú@\ 6\96\15|¬A\93g\10òo\êG\98ÿ\0$\825\16©\ä7\Äÿ\0.q\ 6)j\ë\àn\9c\ÇÄ\93\ 3»\Ó[]Â\8c(\×v`\â\ØE³\Ù5÷L\9d\87Í\89I_s¶\Ç\ 32xF¸\89ô\84\Å\É^Xõ\19x\Í\ày\91\âsmÿ\0dø\94S$f\14;Mû¨=\8d\×igNÀ]#0«-¦ñ\ëa[\Èh\18B¹µE\9aÆ°Fù?\19\110\ßO\ë?\9f_\12}²½f¯\Å\1d\Ç\ãø;<\9b\ 6\Õ\Ök¼¥\vcá«\9b¹\99\8b\99¥m\1c.P§\ÕIl\18ñ[\92È\97\ f\886°øÁ\Ü\èsq\elZ¶\ë¦\ï\10]g¤\íº\Î\áX\Ç5\8f°Õ¯ª¶\b,{ñ\9c±\8e\97S.\\v¹\Øk²\Ö\ä\98\Îp\Ü\ç\18϶WfDDDDDDQ\94õGy/\ÏFz\ea\Ãü{°¾«\9f»j\Ûn7\Ô Srê­\9bQп\11\ß\ÇÜ\85\\øv\15×\90\Ý[\f\81£©¾¥)\ fO´\ÝPº@\Ú\19\1fcj\83¨¨µ¿µ¬¡¡¬°»¼»°\85QMMQ\nM\95­½­\94\91C®¬¬®\86#L\9fa>a\83\16\14(¡,\99RJ \0O+\Ú\Ü\Ü\a\éöñEA\ã\v¥\9a\ì}¦¶¦_f¹\Î\rv÷\Ï;TH¾\ä\8ey/\993S\Ðj\æ\É,\99­¤Ó¨gÃ\83!\83ulK[\ÖX^\9a\8a®|\É\0nù\11\11\11\11\11\11\11\11\11\17\98r\×  ð÷=jSô.m\â\í\a\96´«Hò\"XjÜ\89©\ÒmôR£Kk\19,\ 5­½\8566E,c`¥3\ 3\Ãd     ¸\11°ñû·1dò?\é\18\éGeb\Þ\ïý6\9f#¨<\Ç(\8f\98\Íj\9c\f¸\à\e§cô¶~\eøó\ë\8d/Q+ \×I\89\\M2ú\8a¥\96\16¦¸º©¸0\9c\Ã\ÂSw\ f\97_O\97`\ì8\Î?$rg\\\ïo1\"\Ö!´\8d\92u\ç\ 5s-\\Ytâ°»¨\81i\13\Z\96\Ø\á:²\9e\ 5\84©ô\107\Z\8a\Ò\×0̬®¸­,\é\9døZõQq·poõ^µw\9a¿Y\àþ~º4\r{Fä\9a¢\Ë\ f\17rµ\Ù\Â\11\95\89Å\93#J\Û.,\1cX\15µ3eM®\9e\82%\Ô\ë;3Æ\831a\14R\ 4#\80£0\f6\18&\v\ÚA\14Dn\1e2\f\8cË\98A\91\8eÃ\98ö\ç-ss\8779\Æq\95È\88\88\88\88\88ª)õ@w\ eçµ\9eW9w\\l\Ç\13B\ë\1dm_\ 2\èq£[I\9dQ\'\159.˵lQ \19\8c\rE\8d¶Á°\9e®\Ô É\9d\'\Z\ä   \ 6\96A\85\93þ\92¿\1d\82\íOzfv\83\90)d\É\â^¢Àf\ËJ\ã\Æk\ê6>h´\È\"\ë\14\Åt\98²\à\Î\16·Q6f\ÇiZf\f¸q¨\ä\88\â~\19ó´\Ý\11\11\11\11\11\11\11\11\11\11\16\1c÷\93¢}rò\19Á\e\a\0vOG¯\Û5{&\1e^¿q\90\r\9b.\8b²:)cD\Úu\ev\á³*m¢´\99k\Ý\14\ál°{\84\Ù÷ÀJ\Z\7f|­x\É\æ\7f\15ݩظ\ 3\93\âO¶\Ô,\Äm£\85ùGðH\Z.N\ã\ãIpc\ÙW\Í`\99   ÷\94G\Î*6Ú\91\ä2\ê\ì\98\19\12 B\85kW÷M#Òµ\ç\ 3b\ç\Úø~;;Y»\92ó\95µ\n)2úÿ\0\È;4·>\ë\90u:¬}³4½\82\îl\8cb\ßo\Öã½­­\90w>\ïh«ú\ ea\Ú\\@Ø®eN\ 1\11\11\11\11\17\9có\ 6\Èm;\89yKn\8cwF\91ªñ\Öï±\82K\1d\96:9¨õ\9b;1\19¯\Æq\968O\8c\Ò5\Ø\Î2Ü·\ß\19Ç·º¡÷\90·­\87\947ý\ã\92ö\é#\99¶r\1e\á³o[<Á\r\Â\14½\87\9b\7fu$bs\Ê\á\8cöV\12JÁ¸\84s\Zü7/~qòͶ~\98\9ak\1dKñQ\Â\Û%i&\È\ÛûQ\16\1fd7ó\ÍÄ\81<v\9b}=|\n\Z¡Ã\90Bb\13)5ZºzÌ\8e?\Ñ\1eI#¾Ä\91Ca2y\r!TDDDDDDDDDDE¤\ï=\1e3u¿%}\ e\äm6ºª°|\ë\Åu\96\\\9dÁ\9b\8d\93õ\ëu\93¥\93R5\8f\ÖsF¢\Û\ã}µV¹\1cK        \ 2\11\9cJè¸\9cö\11T)\Å\\\97ɽe\æ\Ý\'\94ô³\Ù\é|¯Â¼\81Y²U\ eÀ6Usª6\9d\85\91K\7f\\\ÃV\Ù29dD\91I³Q\È,W˯5\8d<\æ´g8\Õ\Ü\Ý\ f\ 5/sú{\×~\ÏR´q\Ù\Ì\\U¨n6µ\8d<2È£\Ø,\é\â\9aú\9ax\à\94\Ñ\áÎ\81f\é\ 3<&\14\8d\8f\8c±£)\83\91\9c¹l\88\88\88\88µ»\æ\v\90\çñ?\8b\îôr-[½¬µN¹ò\r\95~>Ü\87\9búo\ãE\ eJÖ½\Ãi\Îv\ 5\Ï\Ã\1f\96\99\Ï\Å\ßùsK\ß\ 6\è \å\ ek\áþ4\94\ f\8dÈ\9c¥\Çú,\86D~G)\à\ÛvÊ\8a\ 3610\×\å\92\1c;\a`/\Ã\1d\96\93-w\Å\Þ\ÞÙ½\çC\Ó(ø\ëI\Ôô-j\1ch\14\Zv½Q­\ÔÄ\89\18Q\0(U\10A\b9lpÿ\0\867\15¡û\8b\97e\å#\Þ÷½\îs\Ý\ÛQ\11\11\11\11\11\11\11\11\11\11\11S¡\ê/\é\å7L<¯v\1fM\Ö\ e\9c»&\1fcu\ÈlÌ\92\1c¿:\â\Ú\î´Ç\92÷d\Äf\Ý\vc\94\Ö\Ç\14X0\83,5\90#2\1c\10¼\93Zônó&7\ï\17;o\17\æ9\Æþ\b\ìV÷¯}\Ç\Ër\Ù\"Þ \Óò+\1d\13\âW\ã\10\ÄKó\v\âA\84ß\9c\Ù\î\Ë^\17\0\8e\96ª\"\"\"\"\ÕO\9c=2^û\âS¿:\ílSM·\'\\÷¹\Ôñc\ç\ØDz­\83\89 \8e<e\ì\e³)¡$\\\à\ÙúÛ\83\åù\Ë\1cÆ\91\95_ø0\ã¸\1c­å³£\Z=\948³¢\Ùs\16\89\82ûc6N¯©\ì\Û\\\19DoÀ\99\Æ`Τ\8d8ek\1cð\12;\f<|\Æ\Õt²\"\"\"\"\"\"\"\"\"\"\"\"®\a\Ö\ßÆ\9a\ag:W\ÊUõ`\ 6\Ñ\É\1cC\Ê\Zö\Ëq\81\v\12¬ ñ\Öͧ;^\82\8d)#U7rµ,`\95\ÄÀ\ri0\83\Ëq%\Í\Æ\É=\11\í.:W\ÜW\å¹À\1d\Ú*V\8dþß³\8a\Þ\'Õ²f\ã>ß¾XÇ\839Ǿ}¾xý±\ïû\Íi\11\11\11\11coqµPn\ÝNì\8e­\'\ã\90\Ûp\97%       \ÍxðV\93 Ô­e\8cN\1er\Üg\ 6$v\8b.ýþ\1f?\9fÁÿ\0\1f\83ªmô\ÒÀ5\87\9b¾\89\à@!\99\ fk\åyò\\Á¸\8c\8e\18¼\ 1\Ê\ïi\Ì\æ\ã8\10ÿ\0# \vHLµ¿yB<g$#\Z\ë\89\11\11\11\11\11\11\11\11\11\11\11\11\14\13}p:\Í{¸{¡;\8f\Ó\ïj\1eJ\æMg\ï\Î\e\9f\85|\9d_Q´úX\ï\87É¿d\98\9f2c$ø¿\ê\16p\ÌdyvsGÑ«­Á©ñ\83¾]Æ\84\18òö®\Énó¬d\8cM\19,\rYK¯R\0ò\b\Ö\á\Æ b@\ 4F=ùs\9a\18\16\1d\861­l¸Q\11\11\11\17\96ó\94\\N\áNa\82ì¹­\99ż\83\15\Îo¿\Ë\18\91©[\879o·\ïò\Æ\1f\8fl{ûû{~\êª_I\æ\96M¿Ì·\ e\16F\×i\1cc\Ì;£\9eO\97ò\8e&°\ÊB\á\99k]\9c\10£¿p\19ûa®\É~\ esX\ç;\16\Ö\"\"\"\"\"\"\"\"\"\"\"\"(Lz\Ü\ëp^\9eô¾\ã\ë÷\Ì\1e\Ê\íU¿w·ù\7fªñ}´¯¯\åýqöþ\8b\87{\7f\7f§\ßý8Y\á\é\12¯\Ä?\r:\14\8c\ f\9bny\ç\8b\f»ÿ\0[#\Ùa\Õý\9f\1f\15¸\17÷ÿ\0+úÿ\0lI\Ý\11\11\11\11um\â\b¬ô­Â´ÿ\0\äXj\Û\ 4\13\7fõK©\97\1c\9fþ     \95\\G¥+\82\ë5\8f4\9d\Ç-?\Ø\n~\ 4Ò¹Ã\8e*!·ù\82\Êû>Y\ 6¿\ 1\Ïq2\ãý\91ai\í\0½ß\9fv\È7\Ûò~\19\9cY@\88\88\88\88\88\88\88\88\88\88\88\88¢¯\ë\ 3Ñ\83±x\9d\9b·\9a\e$;\8f\8c§F\92\ f/\81\'c\Ø!\ë\9fhð\ìý\8d\É\âL\97\19\es\ì\Ò\äosp\\a\Ù3\éu\Ñgh\1e\18z\Å\ 2Àoa¶\e\1e\82\ç³\á\93A\Ý÷«\8d\96¼\98\Çú\98\ØV\0\v\1fþ¶        ¹R\ fDDDD_\à\83\19\86A\14l(\8a\f¢#Zñ\90onZñ\91\8e\ÆZö=¹\Ë\\\×c-ss\9cg\19\Æs\85\ 4\ßL]\ 4z\ß2~q±\1f\18\18¨9\1f\92(#   ¾\Økc\9b´ü\8fñ\Æ1\8f\7fÙ\8d¥\13[\í\9flc9þ¾øSµDDDDDDDDDDDDQÁõ`\ 3\ 6ð\95\Ø\Òe¸\Ï\âò\a\8c\1f»r\îp\Ò#|±þ\Ùö\91\96ûÿ\0³³\8fî³\9bÁ½Xj¼Bø\ï\b\841fWVx²\Ð\Ù\e\ZÜ\98Ö\94 \9d\92\978n2Be\86\e2÷{»\à\Æ3\ e\ËX\ßm¬\"\"\"\"\"\87G\81m\ e\9b\8f\11¦¤\ 1\ãÀ¯\æ\Zia\1c\92<\Æ\Éw.Xå\9d²\È\Î!=\Ýñ\91c(\Ò\ 6\Ö|\01\11\8c\0\Æ\ 6\bl\98º\"\"\"\"\"\"\"\"\"\"\"\"\8f\17ª~\8e\Æÿ\0\Âgi\ãV\ 32\ f\ 2ÿ\0\83/\ e<9­ö®¢\æ\Í\12\Ö\Ôù\Ë\Ü\ÖûE­\8b*V[\ï\97?\éø\r®#\98\Ü\ç\1f\85\88Ä\89\âK\Ç\18\88ï\93\9dÓ¾\b\93\8cÿ\0°\æhTó\ 4\ßú\ 4v3þ\95³¤DDDDZ\1cñ­\Ö\âqO\92\8f.¼\É*¥±\äs\×6RZC³ül      ò(õ\Úz¸q`\äøn>ñ\n\æ^\Ãd<e\Ù\ÃMk+-n>Ns÷Æ\88\88\88\88\88\88\88\88\88\88\88\88µ\7f\æc\83\ìû\19\ãc´\9c?PfF\9f¸h\12\ë\â\Í [(p%\91\1c       \ï\8a\ãGt¦Ä±$3¸\ 20\Èü3?\12\87\18É\87\93\1d\1c\Ñ_\Æ=8\ë\ f\1f<,\8f\8d?\83¸Ú\84A\1f\×õ\8e,\r^¸Q0\Ü\ f?\ 6710\17`xöȱ\9f­\Ík\Ú\æ\ã*\11\11\11\11\11|*\9df\86\8e\95Mdx3¶)\8d\9fw$?g\Ùc1\98&\Zsü\ÞöüÛ\82\93\ 3\eü\îþ_\Ý}\ÔDDDDDDDDDDDE\Ö7=F\9b|\Õ\îu\r\80e55\ì\\C°\18\1eÑ\95\áÁ\84|a\8fx\Ê\Ö\ç\ì\v\91»\1e\Ø\Î=\97Ñ¡¦\83®Q\ÓkÕ\8d{+hjk©«\ØGa\äd\Z¸a\83\11¤{Z\Ì9\í\0\a\87;\fn\1c\ìg8kqûc\ë\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/ÿ\Ù',4,1,'','','',''),(8,2,0,'9305bf00c122b3bd','90913473615bf00c122ac78338492980','2018-11-17 12:39:46','2018-11-17 12:39:46','','','Profile Photos','person-300.jpg','image/jpeg',80,80,2354,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v      \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0+\10\0\ 1\ 4\ 2\ 3\0\ 1\ 3\ 4\ 1\ 5\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b        \11\n\12\13\14\16!#\15\17\18\"ABÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91û\Éõ1Vü\î´\Ìõ7¨\10\95M±\ÛPCm;\n\Ûf˲\9a\ÏA¹\"&\b\n(ø\È\â\Åz\é³r+\ã\È*¶£Á\83«´øN\Ù\1d\941dVq\8a¿+:}\íw¶N\ 5\1e\êz/Û\9d      \Ó\ÙI§Ì®\85¬¶\14Ö©´\îu\ 6J\877\Z¦\8bIý³A¥\Ò\ 5y§\ãó°d«2m\12`\ï\a^¯N|HKFow\×n½RºÉ­c5m\ eö­0±\Î~¡S\9b£r\ì\í\át<Å\8e8\Ï\10M·i\Ú-2\â°ö\ 6\85\86z*¸\e\ë}\È\Ø`²C\Ø_ºñ\Ç\1c\9b\ e\È\'¨\1d0\í\17g\92\9d£´v\Å\ØpQ¦aY\12V\Ó\ 3[=ú\94AXFR¯\Ó\ËY³\13\Zöp¤|6R³÷£\18û±Po\97½S¶zÁ\ê\1e\9d\ÓûBÁ9d\Æ\é\ÚV\1d­Ø\9b¡\86º©ùjl.e6NÚ\94\"S\1f\Ú\Äõ¼pÏ\83\8f\92\ÂUú{\r\8e<\8c·øÑ\94\â\è*\8dF±@ªV¨Ô\98\b\9a­:\9d\ 3\13WªV`\82b6\12½]\81\ 1\88¸hX\98ñ\90\Ø\áF\ÆG\8a8a\n\Â\10\ 3²\ÛhN\12\9cc\90sÑ¿7´?¦\Z*GLn\83\89\ 1\ 4\96{^\ìm}k\9e®Y(\16I\16F\Ãs(\8f\8e\92\12\ 6\1dú\90#\×#Y·\ 1+\10{\ 3|2\98ù\ 4\8b&%hZ\8f\ÐOL¾\9e~ÿ\0\Þ:\ÙvÚ\97-\99¯ô\Æ\Ä\ e·³ôE¾\Í;=ª¶\8e¶!\0\ÉDZõ\ÐvW\Ï^¾\93¶Q\ä\"\ì\94û5y\0\Z\ 3\ÅG\ÇÙ\84\97\8f\12J     û]ô\ÆÙ¥\ï½C«·\86¸\90T®¿\Ü\Zú\9d³iR.!-:eZó_\8f²Á>û(qÔ°J\ãd\87ýHøqyaÿ\0\È\ÎT¬£9\ç¥ñ\Ç\1c\Æ/´Z¶Å¹¼¢\ï潩\bD\8d\92O¬\Û\"f\1e4D¸\ár\86R\â³wDPm5\9c-\â\ä\Ó]P\ 2±\8f\9c>A\r´¤©+\Ês \9fÑ\9aôK^±_\Ðz\ÛA\ät\Çn3\ 6\97V\Â\7f)\ÉÙ\9a@\82\9b\1d.g\ e¬¬E0{©Hÿ\0.`F\8dZñøP\æqi7\1cªk\êñ\9f¦\\=\90\94\82 4Ä\85¢±×\9d\1dL\Øc\Ä\ e\97\Í+c\14\åª\Ã\1e\19\b\13\ e<l·\ì;F¿\r\b\ÊrV\Z@`\á\1f\Ð\Úyc\97\97\Z.\ã\Ö\7f9úS¡ö#d\8f~\Ö}oÕ\95\ë¬yk\Êß\85µ\â®   \Ö\nò\95\9c\'\å\15\ÉS\n\82g\1f\18ûY\8em?õ\É\ç\Ç\1cs\89ö\19%\97\86!¦\ß\1c\86\9c\1eB]e\æ]F[u§Z^\14\87\eq\nR\1c\94­9\ÊU\8c\ã9\Ç+\10\î7Vö7\ÓC\í\ 6\95\îκªJXúIy\Ùö9\Ú2\á\11ýa\ë«È\921\e\7f¯\12\vy\ÏÀ5¾\93W°È\9b¯\17$òD°E\81W\9aI.\1d\17f\16\"\Ê\íA¶µ\ÞúÕºÿ\0t\êKDu\×Y\í\Z\9c\8dj\8aR\Ô\f\ån\Â\v2\11\874\87\90\ 3¸±\ÞJ    \f¦\990\12\90ðf0ÁL<\Ò#·¢\9d¤#¥\1d\Z\í/j£\ã\ 4\99\9b\Òzv\Ùo«D\È!\Õ\Æ\É\\\Ò&\"\éAJ¡\87\19}Q$\Û$a\9a\95\Ã/4÷øõ\13ø\9cmϵXÑ\9b\ég\è`þ\8cv\9f±^¯wP²÷E\9bV\í\Øò(\9f»\12\93A´vNÀ\8c_\'ö4ð©\ÃA;\9da\14]]\Êd\ 2\ 5\Ì \12\96@\ e\10@¿gñ\9b\Z8\ã\8ex/g;3¥:y£v\ fc;\vw\8e\×ú£ZC.b\É>\7f\Ü\ëΩN h\ØHH\æ¾\ã&\ì\93òO\r\11^\82\8fm\Ó\å¥K\181\9bR\Üù\Æ\0z¿\Ø?Wý¤\'ým\Ö\Örü°ó`ó\ÞƵ±D\Ô*\97¾\éöZºÁ.\ f\9b\ 44µö.\ÃD\Õ\15)&\9a\ËÁZ\"ª\ç\901yÈ\90\ 5_\ã2\ìø¹e\94òǧ\e\ 2·X®v:\99r\î^*d\e!\13!Ü­£°;\1e\81¦¤\99@\Ò3±\Õ=\89?\'®kR\Æ\f\ÚFq\êu*¸\Ã\"ýÂ\880\ã-m*tQh\94\9d_M¬k­oR­Ð¨4¨Xú\ÝB\97O\85\8f®\Õ\ë\15ø¡\Ð,l,\f\14H\â\Æ\ÅF\ 23hdP\82\19\91\Ùm8J\11\8csÇ»y\×\n·oú»¿:½t1ø\Ê\Þö\ÕW-jtȬ\à\82\1e²\Ã\12\fe\8c1\Ô\ã( \Ê\ìªÁ\9c\10w\1dm·É\8f\15\86Ö¬óO¯§caYür\ß]\91òC\Ñ(±ô%¯g\íF6·XöÍ\9f+\8a\Ó\Û\Òa0QÔ«$]#cJ4\f\f§\îHZý&f\90:\Édפ3b¨\Í\r\ fs`*ñ\9b\È%IZp¤«\nJ±\85%I\Î2\95c8ù\Æq\9c|\ã8\Î?\9cg\1f\ÆqÏ\9e8\æ¢~¶S&½Sö\9f¤\ÞII\99(\8e©\è\rn÷w»s\11\ZQ\ 13q\Â$L\87¬\Ö%r\87\ZS\8c¨4\×j\0\16\e\88*8}\Íe\92\1f92(w\ 6\Ûf\12\12\1eµ\r\13\\®\ÅGAW\à#\0\85\83\84\87\b\98xx±Z\ 62*.86\Ù\10\b\èð\98d@\83\15¦\87\14f[a\96\Ð\Ú\12\9c}\9f\1c\17m}BÙ\90n\Ö6=\"¡°+o¯ò¿^»V¡­po9\86\Ük\ e;\13:\11\à8¼4\ë­ý\ë\1f*ün8\8f\9fµj\Æ`·d|\ÑÒ»\9a±÷i\ë.\Å\évâ\80\86l\rsºú\9bn\9c\12µ2#Ò\97!E°\Ñ*2Pú\ëgS\Ç!\91Z\92¦^ë\92 \e\14\Ò\ãÀ*\19\Õ2p\Ñ\a\ eþv#f\í~\Ïù½\ßÖ«\ßï·¤\86B\91/°j\91­\ÂU»)£¬©\13ö^ñ\82\84\1d\91Ä\89\92,y\18\a-`\0$|kk´×\9d\16:4÷¦¡¡ó­\Ç0\1f\ÖMj8\9fPߨ\e)\Ö\Ý(·ºY\Ò\0\ 4-yVQ\14\1d±Û\90&Eµóÿ\0\14¢@\8d>,\8f\Æ>\7fµ\87³\8fý\ã\99ð\ã\8e8\ã\98\15\90\Öc\ÆýKõ\8d\95\14\9c\ 4»?\8d\96\ám       a\nm3\ 5\×;sR\8b\8d$\Õ%Ô¶û\ã\83*\bÍ­L©Ô°\b\È\Êò\ÛM\á¼õq\È\1f«uúa= \î^ÁLr\19E\çª}\f\8fÄ\9aXRra\95]\87Þ±M\19d~4¡\çD\10\Øe-¼8\ê\ÙeᲬ6\97[§\87\1cq\Ç\1c\81²ôt¯\Ó\Ê\ 6\ÈTB³\96:\1f·)M\Ïa¼ý\88ýG`t¤\ã\91+w\1f\14¼0Ù\8d¶¯\åXCªoøK\9f\13Ë\8ep$Q\90K\Æ v\12Y\f\8e3\å%¦\ÒKã\88²\\\15\87\9f\Âpã\8c\8cá\85¸;KVP\Ê\Ê!M¥*yÌ«\9f\8e8\ã\8e\18ª-³ò;99¡\9d\r²ò\ÚrB\ 5}\Ö^xt;ñ÷¥\97^\1d\87\1co\19ûV¶ZR±\9c¡9\Çg\9fÿ\Ù',5,1,'','','',''),(9,2,0,'9305bf00c122b3bd','90913473615bf00c122ac78338492980','2018-11-17 12:39:46','2018-11-17 12:39:46','','','Profile Photos','person-300.jpg','image/jpeg',48,48,1488,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0   \11\12\n\13\16\"\151\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿ø\17t\8f,\ëiý\Çh\8c\98Nq\87\ã%\å\â\Ò\15,\19\10?¾e\ã³grF        ,¼¹Á#\90Ú\95\8a\ÉH±\ÈÛªpVYjm\9f_HL\80Ù¤\Ónj®ª\Ñ\0·r¯¨3_\Ä\ì\16\9aúM\Â0\97\1cn:zE\raĶë\8d\90\97YoU\á\á\äGü\87»\17`q\1fªN\89Ú\9a\9eL\È\r\99oMgKSm\11ϸ$\9dLÝ«*\9aìµ\9e$ƾ\1e\ 6n\12°©\ã`\8faH| ¦\ã\Ìa\Æ\Þaµ¦{~\'>»(:\v\84+½»j\82\ 6o£û\ f6;+\×Ya\9a>\ÃU\ÔaZ\ä\á«\15H\99b\7fqc1oz\vùý\95\á\ÝiÙ\82%a\86\93\19\81\ f\7f\90]\93\Øo)s\é^\Âx[©-4й\é\Ú\Ñ;\9f\9c\çjT[\8e³ºP\ålQ\Õ\â- \ f-\\v\Â$´\19\Ó ½g\133N\86]c\a\ÉF¹\ 6|J\9c\90 ^¢»ñ¿f<\13¥:Ī\àu\vm¬Yª¾È¬Æ¼óñ1[\Z\8d,EnÖ¨E\93òSpRÆ\86\99\èAKp\82Á\8a\95\10\"K5ñ\Öcô³\Ã\Ék\î{\85\å=\8bz\ä\è\8eeª¬Vö<\Ä\b\17}O\93^À¡\91³µÔ\8b\16Ê\9c9E\ç\å!\rf*9ʱ\'9\854\13\13n\14òT\Ó+NS?Æ\87¥!ö\87­j\a5X\Ä&¡\Ñ<1)d\ç-ù«¦\Ø\\u\9a£)_¶\Ù]¨\1clQ9Á\8d\891Y\ȸK\8d!¬\Ø\á¬`5öÀ\18R¹_\ä\Ï\Ó\16ñy\ËPú\ÍÒ°     \9c\1fh{\ e\17G\Õ\Ï1Ô\8f        P¤\Å\Ü\é\ 4Û¦%\1dú<\îU0ü\84]y?¨gp\1c)vI\7fº\v\8c\ 1\92«Ï¬þ\17§ú\à\â­\'\È\ÔùuY\7f\88\"I·Û\94Â\85þa°\ì\ç\91a½YX\11j[\81G\Èؤ\r\Ä0\ e¸\ë B³\1c\13\Ï<\è\ëuo\8f\9c«y\îj\1f:é½\9f½ö\84¶!5\Ù6\ 5¾O\è§\\\1e\ e³\16\88\15\84|¬£\8a\12<Fñ\97K9ñ\Æi9q\Ô\ã2Û\8eµgKw\14\14\'c÷-\Ç`k\ÊF\Ï\1c[§=ð®»·Mkú\1e´\ÔóHÄ\9d\1e[ \äjf\ÆZööß²WÞ\89\99±ÁX\'X U\1d)øF©87&$Z\99®4\86\9b\Ó\äX\Ì\Õz²\81®Î¸\98Ü\8d¾F\9dS\84¯\É\Û$Zp§Z\90³\ÉF\ 49\Ó\ç6\é¦8\93%\880\9c8Y+Ã\9fg\Ýʧ\7f³ÿ\0[ò½´W0\îý=x\82\Ö}g\ÄÛ\827sh\vU\Â8\Ù]}<ú\ f\86&Ñ®6HQ8ÿ\08\9a\9d¼h0YT¼\12\95/\ 4c\b0Q\Ìe\Ò\Ä}\89\Ù}\88÷6P«[\a«5%·ZR\Ô\Ìx»;i\ÑJ\ 3ljmO*Sì\82©;\81\Ðj\acFk\Õ\18\ï\ís`\99­\19¯W#s\89\v\ÉUa[yô9q\92q\ÓQ±ó0\ç\89)\13,\b\92qrq\ä4X\121Ç°\ÙA\1c\11l-l\12!c:\Ñ\ 3\10\Ê\Ö\Ó̸\87\eR\90¬g3§Û\86»\7fmð.\Þ\Ö- \97\99½\Üù¯((­\å\Ç\ f¯\Ëôö\9a\12\Ë\Z\âq\8cÿ\0Õ\92¯¹&\ 1\Ê\Î2\86\Ã!õ¯\19BU\8c\Ñ\á\86\1c1\Ø\10FZ\18QYha\87a   i\91\Ça   i\96Ym\18\ei¦Ò\946\84\ã        B\13\84§\18\Æ1\8f=¼<\Ï\Ûj\Ð\17\9a­\96\93k\8b\ er­p¯\Ì\Õì\90²#¶T|¼\füq\11S\11g\nòV\É\ 1\9f\1eY\ 2\92éSn²\ê\ÛZr\95g\1e#\1e©«S´¿]ü¥K±\99 t¥7Y·QýÒ¹w\'·\eX\9e\9b\83\82   ü¾¥»ÿ\0\9b\ 6\ 4tsXR³õ`VÒ\9f\84ø\êl\n<VÅ«\91T\9a[­Ç\93)Z\96Z\Ø\Âr\æ     «Y¡\íQÿ\0\18^2\9f\8c\ÈB\8b\85ü\ã\ç\bʲ\9f\íñ\æ\Ï\Ã\Ã\Ã\ÌVº£E\ëjd%\"\15\×Þ\8b\81h¶Cp\9c\ã/e²¤\v\90RW\9c\7f¿£\85­       \Ïû\Ê\12\9f\9c\ç?9óÿ\Ù',6,1,'','','',''),(10,3,0,'9305bf00c27303da','17543934065bf00c273021a183499779','2018-11-17 12:40:07','2018-11-17 12:40:07','','','Profile Photos','person-300.jpg','image/jpeg',300,300,11007,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b      \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 1\ 2\ 4\ 4\ 3     \0\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b        \n\11\12\13\14\15!\16\"1A#3BQ\17\81\82\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/ñ\1c\Ü3\19\Î\"u\ÝOX\ßGøX³õ®¦q\æ\çÚ­²/\ê\91\1f\7f+òxß\8c\â[VJ$<Fuݼ  \17W\95\93\9e\ÖÈ\81}¬\Ô\Ú\ÖË\8c3\18$xI\bò£{\Ì>°\1f+\\\81c|\1e>o\ 6ðö©b_j\8a\Êm\0»&\ÑQ\17\â<\àE\Ü-­A\89²Zv½\í\97\12\82£\19\v\99\1c\91É\8c\18\87Ô\8f.y\9fò¡\Í\ÒM+z\ïGa\ 6ò\Êü¦\ãJ\Þ&ñ£\83\9c\àQ\87\'\8eÛ«\Í|0³\â&G\91(\ìp\Æ<\e\ís0\å\æz\87y|\9br\16\ËS§h]\Â\ïnñ¸\ßH|j=[P\ì\17`vm\96\æPÀYE\8fSGM·M´±\90\Ø\Ñ\Ï$\82\87\14\Äh\0S9¸\18\Þ\ìJ\ëÇ\87L}X\1c¥IQ´C\í¯$õk\8d®gDÌ\9b\ eÁ\í:öÕ¼J¦t\\\1cWU¼u}A¶\ÚL\ÈJsC\ÍV\Ñm©Ø\82P¦b@£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8d\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)AT\É2\Þ1>CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ð\ê9\ï¶WPKúg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ekþº\ê8­5½\84\ç7\ã\11ð`\Ý\12\rf\9d\ëòa\Ü\ß#\9b\Îw^\Õs\15\Þ\é\16\1d\8c\8b\1dc\8f\9ej^2\Ñ\Ü|\Êö\ e¥¦\82AaB\ÄvN\9c\18\Óg\16\Ê\Ü1¦Ê\8b\8b,\Æ3Å\9c\vE!_\11\1e\9d¾\Úù=\97U\É;\0\'uûª\Ù,)E\åý¢£%´\ß\"6@M:«\8c\fQH\94Y\15\8f¶Y\Æ}\14b\Ù\ÓÏ\85\af\83ú\88\á\Ù_\ãÿ\0\ÄOEüm\ê1):\í\Ãt\ 1\Ü^\b¸\Øy{l\85\ fc\å\1d\96d|¸ø4Í®|r\ØÅ\86\19Ç\9d&ª²\19\87\Z\98s\8d\n\ e[\17\â\Ìl\Ñ\11\11\11\11\11\11\11\11\11\11\11\11\11\11\11DGÔ\83\ 4\'B\èlzu\Ô\ÛJùý±\Þ(Iü]¾\bµöu\Ü\a¬\Ù\a\ 3l\ç@~d\82Ç\90­BR7[¦\9c\ 2VÕ¼\12®6`\1e,\18z\Þ\×X®×µ\ì\Û\Þ\Í}¹\îwÖ»FÙ´Zͼض+ɧ²·º·²;\äα±\9d%\ä<\99RNG\90¥#ó\9c\ç>\Øön1\8c|\ flþß·õýñÿ\0¾=ó\8f\Ûþx\Î?ù\ÂüSÁôóúg\83¿À\Ó{½\äKI˵\19\8f\7f\Ã=k\Ùa\98\8dó\Ë\à\î\1c³S(#x£\ËkY&\9bN\91\ìø\Ñ\1e97\83m\Éñ\ 3\86\8e\8a\9bY§®\×õÚ¨\14\94u\11E\ 6²¦²(¡@\81\10\8c\11b\81\8c\10\86\Ü{\çÙ­\Ç\É\ÙsÝ\9c¹\Îv~²\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\Ô\ f\9b\9f&\Z\ï\8bÎ\8do\\\Ì9A/0\î\9f\7f\1dp\ e¸ö4¤º\ä\9bxF|i\ç\ 3\äC\Ã\éuXm.Á°¼S\ 34Uq\nú\ÑÊ\9føñ\rM\ï%rVû\Ì[ö\Ù\Ê<¡µ\Üo\1c\83½]\ÌضͮþVe\Ú\Ý[\Ï\'\Ìòd\13Ù\83\10\Ø\Ü2<8QF\b\83\Z¾¾4X1£\Ç\17G_¹\Îsýsý½¿\å\854OKW\83¦v_x¯ò\aÚ\8d3\ï\à~9¹\11¸\ f\89\97\Ç\ä\îB¥\962¿r²¯\96\1c\0º\86©!£ý\b¹t·\Ù\ß\ 2D\ÌE®\1du\1d¼\ë+@\0E\0cF\b£F\8c\11\82<p\r\81\ 4p\ 5\98\18\82\11\r­\18\84!µ¬\18\ØÖ±\8cn\Z\Ö\á¸\Æ\172\"\Ã\î\é÷Ç«\Þ>8²72ö·\91\99\Ç\Z\14Û\81\ÐÁ±e%\Þ\Å>\ÂÔ\81q\Û\ 6\97^\83cog/\ëo\Ë\11+\áÉ\98\æe\Ædw\80\12J\18ýów¬OÅ·\1eGi¸\9a¯\9b{\ 4oq°\915\í\16Ï\8f\8b\87¼\8ec\9e\"rL:\b\8e!ü\n÷\90À\91\9ce\ì\14B9\8dû1f\'­Ó¨/\95\86O\égdcBù{fDM»\8c&\Ê\Ã=ñüØ\86k*ñe\Þ\Þùø~v1\ï\8cc\çûû\ãi\Ü\a\8eð\é\Íó)¨\ìû\e#\86¶[H®<\98|½£nÚ\96¹VV\ç\18üi{\ì½}º\83I\9c¼L\ÆKf\f9\Î#\Ùò\8b\1cò\99¿\8dKrÔ·\Ú8\9b6\91³P\í\Úôö1ð\îµ\ËXW5\87\Ã\Â#á¬\99\0\Ç\aÙ\80\9cDx\\ü\14m#>\Æ7.\Æ\17eDDDDDDDDDDD\\d \Â2\18\Ä`\84&<\85)\1f\86\fcf2ç\90\8fvp\Ö1\8d\Æ\\÷»8k\e\8c\ç9\Æ1\9cª\8dýM~C\ì»\Å\ä\7f\7fÒµ\8d\91\96|\13Õ¢\É\á¾9\8dUg\99´\17{\1d\\\92\97\90·v\83\965\9c\Ûò¿U,SH°\f\9b&B|\"\\X\Ä\Ät\Ñl{\Å\17\8f\í\Ã\É_vø\8f¬\Ô\f°\85ª[\Ú;då\8d®$RH\ e£\Æz\ë\7f?a\9f!\ã8\v\1c\Öùdmf²D\7f\É<+\e¨ön\85&\15|\Ü2\é>!\âm\ 3\828\ÃD\á¾*\Ö\ëõ\ e9\ã]f¯P\Óuª¨\à\89_OEO\1d±¡Ã\8d\Z0\Ã\1c,k[\97¹\80\bC\82=ÿ\0PDÏ\8b1\èè\88¼G\9fz\×À=§\Ñ$q\8fcx\7f\8fù«@\93 3\v©ò&·]²\Ó\âdr\f\Ñ\æ\ 6\931¥\Ç8A&<\98\11Á*<i\"#\ f\18\ 4\1c\12<¾zE\e§\Ómý\81ñ\8fasm[Z\ 3]\Þukn´e¥ À8\Ã|\çqf\áa\98§x\0\èÒ¦c^Ú¥Ø\9cųdxW\15\95µ\7f\ 2Àú\æ\9a\ã\\¸µ×¶\Z«*+ú+)\Ô×\94w0eU\ÜS\\U\Ê,\e:«Z\É\Â\ 4\Ú\ë*\é <9\Ðf\02¢J      c\È\10\Ê7³\1f5lw \ÞW{Á\ãsl\87\9ed½¨\Ô]g\1e\Ãb\â\1d\8eD\8d\83\8aö¶\ 4\92\nX\ÖZ¬£\àu¯\96i\19\912~ºzk  \Ò#\ÃýJLè±\9b\15Ö\88ømó¡\×?-Z1ªj\Ã\e\89»5©\ÔÇ\9f\È<\19oi\1cò\n&\84X±\ØxöqH\É;V§\Z[\9c<\ÊtpYÅ\8c\èç²\83\f¯\95\Z\ eò\91\11\11\11\11\11\11\11\11\11\11k«\Ë\'nkú9\ã׳ý\8e\96\18²¬5\1e7µ¨\Õ`L\99\9a\è\Ö{®\å\86\êz\8dc\ç·\ 4$2X^\ÛÂ\89\14\8f1\ì\9ah\Þ\Ð\ä·\ä\'RI.\\©ò¤Î\9d&D\Ù\Ód\Z\\É\92\ÌI2¥Ê\92G\ZD\992\f\98ò\ eg¼¦1^ò\14\8fs\Þ\ç9\Ù\Î\7f\9d\15\9f>\8fÿ\0\1f\8f\ë\ÇKv\Î\ã\î\95s\àr?o¬\"g]\14øò\"~\1f    \é²d3N$a\92L\98\93#\ìöò®6\90[\Âd\12J\85>\rm\84s\12\9a1\9b/ôDDE\n\1f\81º®x\Ñ6¿!]M\Ó\7f\1f\9c¸ò\8f\16\1c\Û\Ç:\9df^^Z\Ò\êþ86\ËUI\ 1¸|\í\ëW\86\19¿¦\Æ5\Åõ@3NøÖ¿\8dE\8a\n\ÙQ{\ÏY{+\Ì\1dB\ç\ e>\ì/\ 4\í2u.I\ã{\ØwtÓ\86ù\19\81`8\ç\19&P\ßD\8d&!,µû\90\ f0\í`¶Lc<\ fû\áJ\85`\bs£\\÷\ã\13¿\Ük䣧\9c]\Ù\Î<>#\Ë\Ø*\85Q\ÈZ¹³\81\Ø\éü\8dJ6AÛ¨¥\ÆpÀV\Ç\r\Èff²cA\886P°\ÉUr\'@pf\9b`\88\88\88\88\88\88\88\88\88\88\8a\">²¾r\9d\Ç~6xó\88\"·\ì\8d\ØNv\×\é,\9b\8f¯\ e\f^8\bù\14R²\ç7$È\99\1cW\fn\Æ\1cI\81#ð\ì\a\19m^¨½s\808®W:ó\Ç       ð\8c\19\99®\9b\Ì|¹\ÆüW\ e\fis\ 2W!nTÚ\8cy\98\e²Ö\931Kn\Ã\á\8e\Î\Zü³\ã\9c\19W¡p\'\10\ë\\\ 1\Â<GÁúu|\n­_\898\çN\ã\Ê8\15`\Äj\è\Õú\9d\f\ZP¶\14v°m\ 4\1eH0´c`\Úü5£\eq\86\91\11\11\17\ 4¨±§F\91\nlpK\87,\ 6\8b.$ \8eDiQ¤\r\Â<y\0+^#\0\Â{\Ä`\95\8e\19F\ç1\í\Ës\9cf oQ\ç\8eAøóò+º\ÇÓª\Û_\Â=\8d\ 5\877q;\07²\rC\î.$\83y\ÓÀC\Ë)\8eú\r\8dØ´÷\f\98\10vj\êJ\98Ù\8dS\97-\ 3¢\98ߣ\83º¬\â\ e\êò\'P6\8b\93\aY\ìþ¤[\8d\Z\ 4\É\ÙmdnL\ã\Êù\Öó\85W_òù\16÷h\Ôã¹²J\11\13\19«\ÔpI_Xa´Ã³u\11\11\11\11\11\11\11\11\11\11A/\Öÿ\0±7\1cC\Ð\ÝK\f~\1f\9eH\åÝ\8b$ùg##Y¬k5\8df[ñökÃ\97½\Øv_\9c½§v0\Öü3\97\×v\8a\96\8e\0Ô¹÷\Ì\1f\v3p\16d\Â\á\Ý7}\ç*¨\8e\10\äD\97°\é «¯¦\14ø\Æ\ÆFx¬\93±þKZ\ïò¥\82,\8f\89>\9f¨\96\è¢\"\"\"(\90ú\Äú»cÌ\9e94\Þm\Öi\"J¾\ë_0\Ó\í{\r\88kA\"\è\9c{²\Ó\ÜjwUÌ\9b\87\8aX*\àZ[\Õm\133\9fÉ\8a\10\Ò\É÷\8e\Â\Él\81\ÕÊ\8bcþ ¹²W^<\9ct\9b\95aG$©5\\ó©k#\10¾¯\93q\ÉN\93\ÆD\90\e8\e\83\10[\83\åHc¾_`\ 2F5\84s°\Ç]²\88\88\88\88\88\88\88\88\88\88 \Ë\ë}×\82N¿ôOkll~D^b\åMxòÿ\0\9b9úg\éT\96Qcg÷\ÈÛ\8c¾¶aqí\86½þ\Ùùe\Ø\ep\Ê\èQKOÑ­­Í\9f\åKs\Ú\18\Ñ\æ·]\ê\Ç%V\Êv]\9fµ³ö-£B}~\18Ï\8e[\91º5%§\Úÿ\0\9b\\\×4-k\1f\82=ô\95\11\11\11\11jK\Ï\r\\K_\ f~BE,\"/\âu»w´\8e\â1\8fp%\Ö\n<À\189~3\91\97\19\16G\87³-~XB\ f\19ö#±\9a]\11f_\8e½#f\äNút\ãS\Ô+Mk{3²\9c7b(\80pZF\×k\9b\Ý&\É{;ür    \8e\1d]\rE\95¡\86\×8\Å\f7\8a0\8f!\â  /-DDDDDDDDDDQHõ\85p\94\ eDñV>V\92,\96g_¹§\8f¶Z\×0\87\97\83Æ\92d\11\82ö\19\ãb\1e\Æx\ä\14\9c¸m\91&)\Ø<\98# ª¾E.OF\86\Ð:ÿ\0\'Ü\87©<Y\Ëö^±\ï6\Â?³>#v±²\êBp³\9c\ç\ç\87\18{\ 3\È\Ü5¹nq\1d\ß<·8g\Ê\ÑDDDDE¤/Q\8f/jüE\á׺\ f\Ùl\ 5\ 4\9c\8d\19\9d}¯~rY[\ 6õg\ 6¦º0@\Æ\10¦Á\ÊüG#\9aÖ\8a3O\89\12\n0\8d\Ù\Í8\88¤½\éE\ê¾\ÕÏ\9eXøÓ\95\àÀ;ô®ªkû/*í¶¸|lÃ\8dm{¯]\é\ZuTÁ;\ 5\99\97\Ù˹µ°\82x\àh\ 52\84C\9726dF\14»f\91\11\11\11\11\11\11\11\11\11\16\1fwû¬Ô\9d\Å\é\87dz\Õ|\É?\8b\1cSµk\90\8f\ 20$\ÚCº\Íy&\ÑK¨l\81\1c\15´X\98\84|\80ÿ\0I]\87f<\86\96\8e\8d·U\Øt]«f\Ò6Ú¹\14{V\9d°\\\ê»5,¼\89Ò©ö\1d~\ÆME\Õ\\\9c\80\86\ 6dW\ÙC\93\10\Ù    J,\90.\È\Èö{;=}I\ 3Ò\9b\ÍZ\Ï\ry\87\âHû<¦D\1f/q¿&ð\í1\vó`]}°Á«\Ø\à0\Ò07\86+>½JI0YN\bJA\8e\eL\Ù\12\80\×\Ûp\88\88\88\88 /\ëUî\8e°Z\ e·t+]\9f(\9b\8c}\81\9d\88\ä|@²È£B\×ñS±\ê:f½{\\\Ç\b\87ýVtÙ»$\ f·\12¡<\94¡>q\1el\09õ÷¢¶O\Òý\âògAz<\1eV\å-i´ý\8c\íg\é\\\81¹2K[\9b-g\8e¿\15\928\ÛG)3\ 6¾P³\ e²[\ïí«§6~+ö{»\ÌU\Ù˪<b\92\88\88\88\88\88\88\88\88\88\88ª\86õVxõ\9f\Ô?!\97\1c\ëªT\Ìo\ ev\æ#ù\12¶h¢\ã\15:ÿ\0%D\Îk÷MQ\8f\89\r±`2X¢Á\Øk\ 3c>E½Ä\99;,\æ\fpa±£\8c\ 2÷n¯s!ú\ï\Ù.\ 4\80f\Û8\á\îa\ã\9eH\97\1e\88ø\8fkaW§\íµ7\97\15\11\1e\éP\84÷\\\ÕB\99RX\Òe\ 2\1cÀM,I¤\ÄC\99^\85\1c\8f®ó\ f\18q\ç+\êR\813X\ä\9d+X\ÞhdF\94)¡}V\ÓM\ e\eq(8À\Ì\á\ 6cDW5¬\Î\f7µ\Ìc\9a\æc\Ð\11\11\11\16\17wó½|\e㳬ûÿ\0eù\Þ÷\15ô\Z¥iY®ë°\9a9[\1eõ·\Ê\Ãckú\96·Zù\11s.u¥\99\âG9\Þxð\ë£\15ó\'J\8e\16aΦ\ 3»=·\ä\8eôv\8b\98{MÊ\99d}¯\96v\É\×Ø£\8d2L\Ú\ÍV\97.úhõj\82Hh±\88\14µ\Ã\ 4|¾<Jøó&\æe\93+¡>q#³\15\ÔÁ}2þ     ö^\Úr¾\9fÞ\9e\Ë\ë3j:\Í\Ä\Û\1c\1d\83\8d5KºòGÿ\0\8d»µS\Ù2®À\8c\92&\95\Ú.½\'\11\86hN     \îm\a\ 2SfÇ©\8a(\Û5\9d±\ãÇ\89\1c\11b\801¢F\b£Æ\8d\1cL\fxñ\ÂÆ\8c \0FÖ\8cA\10\ÚÑ\88CkX\Æ5¬cp\Üc\v\99\11\11\11\11\11\11\11\11\11\11\16¥ü\Òx\Þ\Ö|\9ct{\90¸@\Õ\Õ\î\å\1dxF\Þx;c\96\ f´ú\Ï#\Õ\Ä(\á\Z91\9c\141í¢¼µ6Ì\8b\í*}T\89Uc#\198¿*i9\e\8ew\9e\"\ß6\Î1\ä\Íb\ÛKß´k\É\Ú\æ׫\Ý\Çü{:k\9a\â\ä2b\9d\98s\ÄVg8i¢Ì\8a\9f\10 \9d\ 2L\98r\0rt¥h\87¤o\È\ÕOcºN~\9an\Û\14ù¼\ÍÔ\87\8e\9cv\Ù\10\Ùi\ÂWg\91\8e>\ 5\1eE\Z4c\aQ\1c\e\r`\Ñ#\92U\88b\ÖG±¶\18±:4\Û9t\"\"\"\â1\85\1cE\91 £\0\07\98\ç3\Ú \84\"n^B\94\8f\ËX1\8d\8ds\Þ÷»\rcq\97;8\Æ3\95Qw©\a\Êv\Û\ä/¼;\87\1e\13£u»¬\e6\Å\Æ\Üc­±\ç\87\ eóg§\98Z\9d\×~»®ø\8c2n\ fo\1eÂ\8a\9aL\82Z6\154Y\12)g\86\ 6\Ã&.#º·\ë\é\íñ-c\å\a¸õ\99ß©§c«\9c\14J\íç\9a­I\1f\ 3­\Û   \Z\Â\17\è¼U\ 6t\8c\ä$±\Ù\1eo̸\14x\96¹\8b¯\Å(,cB\15\Ü+\ 1\ÛǪj\9aÖ\8b­\Òi\Úu%n·«\ëu±ª(¨ª\"\8e\1dm]t1\àq\âÅ\8e,a¬c\e\8fw;?\"\14\8ey\8a÷\94\8f\ 2\"\"\"\"\"\"\"\"\"\"\"(Jú¦¼\eç\9eµ\e\Ï\"\9dY\Ó\çYs\86\93[\15\9c\å\Çz­s\åXò\86\99\10¯\É7*ú\á\11¸\9f¶\êQHi\12\e\fO½¿©\1ei£G¿\9a=n¾¦·\15\9d^7{\Ûɾ8{}\Å}§\ã\13d¦Ô¬¿GÞµÜ\8b\ e\é\Æ7\Ò\"\83w\Õ\b?̯\Ç\äέ\vfS\14\93C\166\Ã]Q*Às+\83.\ 4«£ºµÙ\8e\'\î\17\ 1ñ\9fc¸Ka\8f²ñ\Ï)k5\Û%\1c±;-\97\ fóc\8c²*.!\15\81\9bUsZW\æ=\85]\94XVQ    \8c6\\(\ÄwÕ\8c\80DDZøò¹\ÏV\1dgñ\Ç\Ü\Þg£°\15nÕ¨u\ë\94\ f¦H.3\ì\í¾N£k\Z\80m\Î\Z\ï\83ó8\8c#_\î\Ç7\ë\ÎDü\e\ë÷¤^lÙ\96S%\Ø\ØË\93>\Â|\93Í\9d:i\Ë*dÙ\92\8aóÊ\97.Q\ÞóÈ\93 \ïy\8es=\å1^ò\11\î{³\9cÿ\02¸\17\Ó]Ó\8a>¡ø§\àS2­\Ðw¾\ÂÕ\83°\1c\91&ma*¯\1dq¼A\8aZ\8aKȦ\18M\89Z¥\0`Ð\8bò\ 4\ÉL\8f\15\82\91\ìñýcß\9a\"\"\"\"\"\"\"\"\"\"\"\"\á0C(&\8d$\"\91\Z@\88\13\80\ÃaB`\95\99\19Ba\13\ ea\ 6F9\Ì \Þܱ\ì\ÎZ\ìg\19\15Uþ¬n\83pwM{Ë£ò\'\ 6\82\9fZ«\íF¯¶r\16\á\ÇT\Ùcck;\Å\r\ÅL{\Ëö\Ä\e°\Ê\Ön\å\Ø\eb\èb\0\86i\90\98\92¬ml$\92+ªk~\8cN\Ós\ÜN\ßr\×P\99±Ï´\ë¥\ç    \íü¿+Z\9e)3!ê¼\89®\ì\ÚM=t\ê\19\99\'\ÑPÍ\8e¿a·Í­c\86ö\ØI®\14ø\1f\86V\Þ:\Ò\É\ÔDE¡?S\r5\å\ç\86þ\Ö\ 2\81ò\a&\15n½s=ñð\ì\ç\14t¶ã²½a~9Ç´sUF\95\1c\ÙÏ»p\Â\ç.\Æp©ó^\81\ÄôU\ÛG)ñ¦µq\14\93ªv.@\Óh­!\b¤    fW[\ìuµób\8cÁx\Ì\"H\8d ¢a\ 4A\94n~\1e7µ\Øñ|\'\1cUWQñö\8fOQ\b\95\9a\8e»\n\f\10        \80\14X\Ñ\êb\fah\99\8c5\99kqü\Ø\Æ=òÿ\0\96]\9c»9\Î{¢\"\"\"\"\"\"\"\"\"\",h\ì\9fqº¿\Ô\1d*\×\7f\8f8q\ß\12ku\ 3\e\8e]³e­\81br\Èoý\Ê$\nw\1f6s%\Ø\15Â\8d\ 4@\8a\ìH\95\"0\Zü>@°\èÀög\Öm\Ðn2\94zηñ\ f.vlä­\90h[\ 1XN\1dÕ\81f\Öe±\âY3v¢.\Ñô¼ùÁ\1eX\Zì\96º+s\9c\902\1d\80·T\ïõ]ùt\î\1e\Ì\ÍK¡}\Z\Ôc]\nª%­v¿§\ïÝ\8e=@¯\nh4ä·±­­\Ò\ë5Xò\æG9\1f{³`t\Ì\fI\ä\'\âÆ\8as\Æܧ\ 2\a\Õ\Ë\Ì\ï\×%r®\Ï\Ñþ³j\eH3úÜ­\97F¤Ú·ý*,\98\Ç\ÃJ\Í7Q¸²\8f*\Î<\9c\ 4F\8c]\Â6@\'\92dcJ(C\ZO\9eXúL¿\í1\Ë3ùÿ\0\É\1f\91>i\íg/\\}\ 1¹° \Óhøö\82}dF\Êe}\1cxN²¹\95®\Ò\Ö\æK\å\ 6³R>¿\0¶r\'X\â$bO\9c9Y\ f\a\17\âN<`\8av±\Ê\Ö\12\a\9cd²ó\Ê[\ÔWH\Æ=½ðð\87\99\ïûû\äXgõý½½\96\Ýú\ f\âo¢^4!m\82\ê7\f\8fGºÞ\8b\1dûv\å}³\ì\Û\Î\éy\Z\18\86(5gض»K9q)`¹§\93\ e\9e·\10«£Ì°´\948ø5\94Ç\9b\88\8b\r|\88p\\\8e\ÍtO·\\\ 1     ù\15\87,õó\94´Ú²µ¸{\Ãoi©\Ù6 ÁfXL>@l\99\14\91\9a\æ\å\8e;G\87û79v(\é\Øh.uKû\Í[c®\93O°kW\16T\17\Õ3\19\81Ì«¹¦\9aj\ëJ\éL\Æ]\86I\85:1\ã\1d\98s°Ò\89ø\Æs\8c{®\Ñ\Ä\Û$\1d7\94ø\Óo³~E[ªò\ 6\9b²X\15£!\9c84{\1dm\9c·\à!aJ\\°\11H\ì\fB!\1f\9c|XÇ»8no\89\ã\ëh\97ú\16\91{\0Ã\91\ 2\ëPÖ­¡H\13°\á\1e%\8d4)\91\8c7·9Ã\86P\99\8f\9c\á\Ív3\8c\19\11\11\11\11\11\11\11\11\11\17\9fò\97*ñ·\b\è[/(ò\îñ­q\Ï\1d\éµr®¶\9d\Ënµ\8bK¯\ÑUB       $K\9dca-\ã\b\8e\"\9c¯\Îs\96\ 4D&qð\eó\88    ùjõx\í¶\16\ 5\89\Z\8aª\14û­jó\Û\15p§M°\8e\8c;®#¦4\87\ 1\85\1d\8b\Ìjý\93b\82ú\ìb¿?\8fG³\Ô\ÚÅ´\f:õú\ e\æy+\ìlZ:\86ò\Çk;\1fȲ$f;lm¥\ì\Û\f\88Î\9eioc\ì\ï&\86£T\Õ X[8q\ 2y\94\9a¥)lA\ 2\13!bTh\ï\9d\17\8c¯GW\18\é\"Ö¹_\ÈöòþO\Ú~\8a\ëpõû\8f\äI¨\Ð\è\ì\Zð\Êü-\Ïi÷m¶\â\è\92c1¤\83\fUTVP&J¯·¬>Z¦w½y\à\9e·\éõ\Ú\a\ 1ñ\ f\1d\9bU\eñ \ë\Üy©R\ê\Õ\â\8fö8\ß\ 22ª$g\É\ÎJ\ì¿$\94ó\95\ÎöË\9f\9fl{{\Z\"\"\"\"*¢}Qþ-lú?Ý\8b~\ÆñÞ±*\1f[{o}o·\Ô\Ø\ 3.5f³\Ì\Ó2{®B\Ô\1c\838\82;\82\18\9bm \æÏ\97\86Ù\8a\ÑÆ\81_\14y\8b\ê·W\Ó#\Þ\Ú.\äø\È\â\ÍJM\85\84\9eP\ê\ìh\9c\17ȸº\9ayö¶\85\×\àE\97¯ì¤\9f8\9f\99mú\Í\ 4ú\ÙR\ç5\85\b$\9dµ\ç\9d*\Ê<\ì²Dh\88\88\88\88\88\88\88\88\8b\Æ{\ 3\ e$\ê\ç\10o<\ë\Î;\95^\89Æ\9c{G:ûb¾´3\19\86Ç\83\14\Òq\n¾;\9e\Ò\Ø\ÛMÀ^(\15ѽ\Ï$¿¶0Á°¥eK^m<\çó\9f\95\8eU¸Ö¨\ìnø\ã¨:¥Á\ 3\ÆüA\ZkÁüJ\ZÙ¤}~\íÈ\9fCC\9bk\ë\17\n5\98ª$\äÕ´\87\f/¤O\99_\10ñ±KÅ\97\8a\ e\Èù[\çAqO\v\Äf±¤\Ñ8\12ùK\9a/\ë%\Í\Óxæ\98\99\Æ~\Ù\ 2\8eX\8e»½\92\Ìÿ\0\áº\ìY\ÑO1\î\1e\r.\e\ f\1d\å¶W\Æ\ï\8aþ§øÀ\á\ê\Î0\ëö\99\ eF\Èø±ÿ\0\8ey\87a®¯?%ò5°\9a|\16\Ûaº\10~q\ÚgI\91õTV:5D\0\11\90+\âF­\89\ 6\1c]\91¢\"\"\"\"\"ž\åtû\84{\××¾@\ëo?j\Ðöm\ f}©,7¸Ák¬uûqe²)öZ)Xp\ä@¹£²\f[(\12\âH\8d$2b\88 \91\1e@\àU\ eùmð÷\Øÿ\0\13¼Ë\9dS\92`H\Üx[m°\92\Þ$\ç\Zx\12q¬\ì\à\Æ$\É\ e»xo¡\80£\Ý\â@\8eYF©3\98+hq¥\ØÓ¸\99\81y_GÖ¼DùI\å\7f\14]©ª\ç=\1c\136n=Ù¢F\Ôy»\8c\878\91¢\ïz.g2W\Î8\9eqW»hÖ\8f\93X\ë\12¬1\81\8c¦°®lʶ\Û\Z\Ò%À}9\î_\0w·\835.Àõ\Ïz«Ý´}¦\ 4s\95±\ f\8c[k\96o\1e\7f3_\Ø\ë\n\ÑN¨¸®\92\10\åÂ\9f\Z,\90Ê\8b&9\Â\19Q¥F\ 6T\"\"\"\"\"\"\"\".\19\12\ 1\14\ 6\95\8d\Z0\89\"D\89\ 4`@\0\ 5\8e!\8cc\11\18\84!µ\Ï!\1eæ±\8ck\9c\ça¸\ÎUR¾¥\Ï2·=ý\ì¥\Ï[¸gf´\8d\1e¾lvZ\ëcF!¢C\å.J¤\97\9aû\í¢Ày`_:\86\8a\14\88\9c\ßÀ\99$&»in\"\83\8d¦\ï\1c\1e;y\ãɧfu>¸pt\16C|ò\nÓ\909\n\Î)¤k\1c\80\Íý[iºh\89\1d\Ó\æ4-(5ýp\12\â\Ë\Ø-~¸Î\97WT\v\9b\8fz/Ѿ\ 3ñ\ï×\9d/®½}Õ¡\Ñ\ëz\Íl&^ߺ$q\ì[\æ\È8\íe¦ÝµM\162I¶Ö²ó\"[\9aò\90Q3 \83\ e\\\ç\98\Æ\ÌDDDDDDD^a\Ëü+Ľ\80\Ð\ï¸Ã\9aø\ïR\äþ?\Ù\ë\åU_j{\954K\9a\8b\Zù£úfF %\r\Î\ed\v\ÜEx\1e\"<Y\Èòÿ\0\83³\85\r®ùú38\17\93mî·¾\89óTþ¾\ØIi\ç7\88y\ 2²\Ç\7f\ãù\12\99\ZQ\Ý\n\8bc%\Ô]\9fZ}\9d\91D\Ñ:Y.iª!\ 4P¢Ô\8d\8et¡jc®~\ZýJ¾#÷\Öó\ fQuýco;\Ìh÷ú\1f\ZòÖ«»è»¬B²;     #h\ã\9d\Úv\95\ e\ÉÁlh­\8bh Á\Ú@\ 6\96\15|¬A\93g\10òo\êG\98ÿ\0$\825\16©\ä7\Äÿ\0.q\ 6)j\ë\àn\9c\ÇÄ\93\ 3»\Ó[]Â\8c(\×v`\â\ØE³\Ù5÷L\9d\87Í\89I_s¶\Ç\ 32xF¸\89ô\84\Å\É^Xõ\19x\Í\ày\91\âsmÿ\0dø\94S$f\14;Mû¨=\8d\×igNÀ]#0«-¦ñ\ëa[\Èh\18B¹µE\9aÆ°Fù?\19\110\ßO\ë?\9f_\12}²½f¯\Å\1d\Ç\ãø;<\9b\ 6\Õ\Ök¼¥\vcá«\9b¹\99\8b\99¥m\1c.P§\ÕIl\18ñ[\92È\97\ f\886°øÁ\Ü\èsq\elZ¶\ë¦\ï\10]g¤\íº\Î\áX\Ç5\8f°Õ¯ª¶\b,{ñ\9c±\8e\97S.\\v¹\Øk²\Ö\ä\98\Îp\Ü\ç\18϶WfDDDDDDQ\94õGy/\ÏFz\ea\Ãü{°¾«\9f»j\Ûn7\Ô Srê­\9bQп\11\ß\ÇÜ\85\\øv\15×\90\Ý[\f\81£©¾¥)\ fO´\ÝPº@\Ú\19\1fcj\83¨¨µ¿µ¬¡¡¬°»¼»°\85QMMQ\nM\95­½­\94\91C®¬¬®\86#L\9fa>a\83\16\14(¡,\99RJ \0O+\Ú\Ü\Ü\a\éöñEA\ã\v¥\9a\ì}¦¶¦_f¹\Î\rv÷\Ï;TH¾\ä\8ey/\993S\Ðj\æ\É,\99­¤Ó¨gÃ\83!\83ulK[\ÖX^\9a\8a®|\É\0nù\11\11\11\11\11\11\11\11\11\17\98r\×  ð÷=jSô.m\â\í\a\96´«Hò\"XjÜ\89©\ÒmôR£Kk\19,\ 5­½\8566E,c`¥3\ 3\Ãd     ¸\11°ñû·1dò?\é\18\éGeb\Þ\ïý6\9f#¨<\Ç(\8f\98\Íj\9c\f¸\à\e§cô¶~\eøó\ë\8d/Q+ \×I\89\\M2ú\8a¥\96\16¦¸º©¸0\9c\Ã\ÂSw\ f\97_O\97`\ì8\Î?$rg\\\ïo1\"\Ö!´\8d\92u\ç\ 5s-\\Ytâ°»¨\81i\13\Z\96\Ø\á:²\9e\ 5\84©ô\107\Z\8a\Ò\×0̬®¸­,\é\9døZõQq·poõ^µw\9a¿Y\àþ~º4\r{Fä\9a¢\Ë\ f\17rµ\Ù\Â\11\95\89Å\93#J\Û.,\1cX\15µ3eM®\9e\82%\Ô\ë;3Æ\831a\14R\ 4#\80£0\f6\18&\v\ÚA\14Dn\1e2\f\8cË\98A\91\8eÃ\98ö\ç-ss\8779\Æq\95È\88\88\88\88\88ª)õ@w\ eçµ\9eW9w\\l\Ç\13B\ë\1dm_\ 2\èq£[I\9dQ\'\159.˵lQ \19\8c\rE\8d¶Á°\9e®\Ô É\9d\'\Z\ä   \ 6\96A\85\93þ\92¿\1d\82\íOzfv\83\90)d\É\â^¢Àf\ËJ\ã\Æk\ê6>h´\È\"\ë\14\Åt\98²\à\Î\16·Q6f\ÇiZf\f¸q¨\ä\88\â~\19ó´\Ý\11\11\11\11\11\11\11\11\11\11\16\1c÷\93¢}rò\19Á\e\a\0vOG¯\Û5{&\1e^¿q\90\r\9b.\8b²:)cD\Úu\ev\á³*m¢´\99k\Ý\14\ál°{\84\Ù÷ÀJ\Z\7f|­x\É\æ\7f\15ݩظ\ 3\93\âO¶\Ô,\Äm£\85ùGðH\Z.N\ã\ãIpc\ÙW\Í`\99   ÷\94G\Î*6Ú\91\ä2\ê\ì\98\19\12 B\85kW÷M#Òµ\ç\ 3b\ç\Úø~;;Y»\92ó\95µ\n)2úÿ\0\È;4·>\ë\90u:¬}³4½\82\îl\8cb\ßo\Öã½­­\90w>\ïh«ú\ ea\Ú\\@Ø®eN\ 1\11\11\11\11\17\9có\ 6\Èm;\89yKn\8cwF\91ªñ\Öï±\82K\1d\96:9¨õ\9b;1\19¯\Æq\968O\8c\Ò5\Ø\Î2Ü·\ß\19Ç·º¡÷\90·­\87\947ý\ã\92ö\é#\99¶r\1e\á³o[<Á\r\Â\14½\87\9b\7fu$bs\Ê\á\8cöV\12JÁ¸\84s\Zü7/~qòͶ~\98\9ak\1dKñQ\Â\Û%i&\È\ÛûQ\16\1fd7ó\ÍÄ\81<v\9b}=|\n\Z¡Ã\90Bb\13)5ZºzÌ\8e?\Ñ\1eI#¾Ä\91Ca2y\r!TDDDDDDDDDDE¤\ï=\1e3u¿%}\ e\äm6ºª°|\ë\Åu\96\\\9dÁ\9b\8d\93õ\ëu\93¥\93R5\8f\ÖsF¢\Û\ã}µV¹\1cK        \ 2\11\9cJè¸\9cö\11T)\Å\\\97ɽe\æ\Ý\'\94ô³\Ù\é|¯Â¼\81Y²U\ eÀ6Usª6\9d\85\91K\7f\\\ÃV\Ù29dD\91I³Q\È,W˯5\8d<\æ´g8\Õ\Ü\Ý\ f\ 5/sú{\×~\ÏR´q\Ù\Ì\\U¨n6µ\8d<2È£\Ø,\é\â\9aú\9ax\à\94\Ñ\áÎ\81f\é\ 3<&\14\8d\8f\8c±£)\83\91\9c¹l\88\88\88\88µ»\æ\v\90\çñ?\8b\îôr-[½¬µN¹ò\r\95~>Ü\87\9búo\ãE\ eJÖ½\Ãi\Îv\ 5\Ï\Ã\1f\96\99\Ï\Å\ßùsK\ß\ 6\è \å\ ek\áþ4\94\ f\8dÈ\9c¥\Çú,\86D~G)\à\ÛvÊ\8a\ 3610\×\å\92\1c;\a`/\Ã\1d\96\93-w\Å\Þ\ÞÙ½\çC\Ó(ø\ëI\Ôô-j\1ch\14\Zv½Q­\ÔÄ\89\18Q\0(U\10A\b9lpÿ\0\867\15¡û\8b\97e\å#\Þ÷½\îs\Ý\ÛQ\11\11\11\11\11\11\11\11\11\11\11S¡\ê/\é\å7L<¯v\1fM\Ö\ e\9c»&\1fcu\ÈlÌ\92\1c¿:\â\Ú\î´Ç\92÷d\Äf\Ý\vc\94\Ö\Ç\14X0\83,5\90#2\1c\10¼\93Zônó&7\ï\17;o\17\æ9\Æþ\b\ìV÷¯}\Ç\Ër\Ù\"Þ \Óò+\1d\13\âW\ã\10\ÄKó\v\âA\84ß\9c\Ù\î\Ë^\17\0\8e\96ª\"\"\"\"\ÕO\9c=2^û\âS¿:\ílSM·\'\\÷¹\Ôñc\ç\ØDz­\83\89 \8e<e\ì\e³)¡$\\\à\ÙúÛ\83\åù\Ë\1cÆ\91\95_ø0\ã¸\1c­å³£\Z=\948³¢\Ùs\16\89\82ûc6N¯©\ì\Û\\\19DoÀ\99\Æ`Τ\8d8ek\1cð\12;\f<|\Æ\Õt²\"\"\"\"\"\"\"\"\"\"\"\"®\a\Ö\ßÆ\9a\ag:W\ÊUõ`\ 6\Ñ\É\1cC\Ê\Zö\Ëq\81\v\12¬ ñ\Öͧ;^\82\8d)#U7rµ,`\95\ÄÀ\ri0\83\Ëq%\Í\Æ\É=\11\í.:W\ÜW\å¹À\1d\Ú*V\8dþß³\8a\Þ\'Õ²f\ã>ß¾XÇ\839Ǿ}¾xý±\ïû\Íi\11\11\11\11coqµPn\ÝNì\8e­\'\ã\90\Ûp\97%       \ÍxðV\93 Ô­e\8cN\1er\Üg\ 6$v\8b.ýþ\1f?\9fÁÿ\0\1f\83ªmô\ÒÀ5\87\9b¾\89\à@!\99\ fk\åyò\\Á¸\8c\8e\18¼\ 1\Ê\ïi\Ì\æ\ã8\10ÿ\0# \vHLµ¿yB<g$#\Z\ë\89\11\11\11\11\11\11\11\11\11\11\11\11\14\13}p:\Í{¸{¡;\8f\Ó\ïj\1eJ\æMg\ï\Î\e\9f\85|\9d_Q´úX\ï\87É¿d\98\9f2c$ø¿\ê\16p\ÌdyvsGÑ«­Á©ñ\83¾]Æ\84\18òö®\Énó¬d\8cM\19,\rYK¯R\0ò\b\Ö\á\Æ b@\ 4F=ùs\9a\18\16\1d\861­l¸Q\11\11\11\17\96ó\94\\N\áNa\82ì¹­\99ż\83\15\Îo¿\Ë\18\91©[\879o·\ïò\Æ\1f\8fl{ûû{~\êª_I\æ\96M¿Ì·\ e\16F\×i\1cc\Ì;£\9eO\97ò\8e&°\ÊB\á\99k]\9c\10£¿p\19ûa®\É~\ esX\ç;\16\Ö\"\"\"\"\"\"\"\"\"\"\"\"(Lz\Ü\ëp^\9eô¾\ã\ë÷\Ì\1e\Ê\íU¿w·ù\7fªñ}´¯¯\åýqöþ\8b\87{\7f\7f§\ßý8Y\á\é\12¯\Ä?\r:\14\8c\ f\9bny\ç\8b\f»ÿ\0[#\Ùa\Õý\9f\1f\15¸\17÷ÿ\0+úÿ\0lI\Ý\11\11\11\11um\â\b¬ô­Â´ÿ\0\äXj\Û\ 4\13\7fõK©\97\1c\9fþ     \95\\G¥+\82\ë5\8f4\9d\Ç-?\Ø\n~\ 4Ò¹Ã\8e*!·ù\82\Êû>Y\ 6¿\ 1\Ïq2\ãý\91ai\í\0½ß\9fv\È7\Ûò~\19\9cY@\88\88\88\88\88\88\88\88\88\88\88\88¢¯\ë\ 3Ñ\83±x\9d\9b·\9a\e$;\8f\8c§F\92\ f/\81\'c\Ø!\ë\9fhð\ìý\8d\É\âL\97\19\es\ì\Ò\äosp\\a\Ù3\éu\Ñgh\1e\18z\Å\ 2Àoa¶\e\1e\82\ç³\á\93A\Ý÷«\8d\96¼\98\Çú\98\ØV\0\v\1fþ¶        ¹R\ fDDDD_\à\83\19\86A\14l(\8a\f¢#Zñ\90onZñ\91\8e\ÆZö=¹\Ë\\\×c-ss\9cg\19\Æs\85\ 4\ßL]\ 4z\ß2~q±\1f\18\18¨9\1f\92(#   ¾\Økc\9b´ü\8fñ\Æ1\8f\7fÙ\8d¥\13[\í\9flc9þ¾øSµDDDDDDDDDDDDQÁõ`\ 3\ 6ð\95\Ø\Òe¸\Ï\âò\a\8c\1f»r\îp\Ò#|±þ\Ùö\91\96ûÿ\0³³\8fî³\9bÁ½Xj¼Bø\ï\b\841fWVx²\Ð\Ù\e\ZÜ\98Ö\94 \9d\92\978n2Be\86\e2÷{»\à\Æ3\ e\ËX\ßm¬\"\"\"\"\"\87G\81m\ e\9b\8f\11¦¤\ 1\ãÀ¯\æ\Zia\1c\92<\Æ\Éw.Xå\9d²\È\Î!=\Ýñ\91c(\Ò\ 6\Ö|\01\11\8c\0\Æ\ 6\bl\98º\"\"\"\"\"\"\"\"\"\"\"\"\8f\17ª~\8e\Æÿ\0\Âgi\ãV\ 32\ f\ 2ÿ\0\83/\ e<9­ö®¢\æ\Í\12\Ö\Ôù\Ë\Ü\ÖûE­\8b*V[\ï\97?\éø\r®#\98\Ü\ç\1f\85\88Ä\89\âK\Ç\18\88ï\93\9dÓ¾\b\93\8cÿ\0°\æhTó\ 4\ßú\ 4v3þ\95³¤DDDDZ\1cñ­\Ö\âqO\92\8f.¼\É*¥±\äs\×6RZC³ül      ò(õ\Úz¸q`\äøn>ñ\n\æ^\Ãd<e\Ù\ÃMk+-n>Ns÷Æ\88\88\88\88\88\88\88\88\88\88\88\88µ\7f\æc\83\ìû\19\ãc´\9c?PfF\9f¸h\12\ë\â\Í [(p%\91\1c       \ï\8a\ãGt¦Ä±$3¸\ 20\Èü3?\12\87\18É\87\93\1d\1c\Ñ_\Æ=8\ë\ f\1f<,\8f\8d?\83¸Ú\84A\1f\×õ\8e,\r^¸Q0\Ü\ f?\ 6710\17`xöȱ\9f­\Ík\Ú\æ\ã*\11\11\11\11\11|*\9df\86\8e\95Mdx3¶)\8d\9fw$?g\Ùc1\98&\Zsü\ÞöüÛ\82\93\ 3\eü\îþ_\Ý}\ÔDDDDDDDDDDDE\Ö7=F\9b|\Õ\îu\r\80e55\ì\\C°\18\1eÑ\95\áÁ\84|a\8fx\Ê\Ö\ç\ì\v\91»\1e\Ø\Î=\97Ñ¡¦\83®Q\ÓkÕ\8d{+hjk©«\ØGa\äd\Z¸a\83\11¤{Z\Ì9\í\0\a\87;\fn\1c\ìg8kqûc\ë\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/ÿ\Ù',4,1,'','','',''),(11,3,0,'9305bf00c27303da','17543934065bf00c273021a183499779','2018-11-17 12:40:07','2018-11-17 12:40:07','','','Profile Photos','person-300.jpg','image/jpeg',80,80,2354,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v     \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0+\10\0\ 1\ 4\ 2\ 3\0\ 1\ 3\ 4\ 1\ 5\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b        \11\n\12\13\14\16!#\15\17\18\"ABÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91û\Éõ1Vü\î´\Ìõ7¨\10\95M±\ÛPCm;\n\Ûf˲\9a\ÏA¹\"&\b\n(ø\È\â\Åz\é³r+\ã\È*¶£Á\83«´øN\Ù\1d\941dVq\8a¿+:}\íw¶N\ 5\1e\êz/Û\9d      \Ó\ÙI§Ì®\85¬¶\14Ö©´\îu\ 6J\877\Z¦\8bIý³A¥\Ò\ 5y§\ãó°d«2m\12`\ï\a^¯N|HKFow\×n½RºÉ­c5m\ eö­0±\Î~¡S\9b£r\ì\í\át<Å\8e8\Ï\10M·i\Ú-2\â°ö\ 6\85\86z*¸\e\ë}\È\Ø`²C\Ø_ºñ\Ç\1c\9b\ e\È\'¨\1d0\í\17g\92\9d£´v\Å\ØpQ¦aY\12V\Ó\ 3[=ú\94AXFR¯\Ó\ËY³\13\Zöp¤|6R³÷£\18û±Po\97½S¶zÁ\ê\1e\9d\ÓûBÁ9d\Æ\é\ÚV\1d­Ø\9b¡\86º©ùjl.e6NÚ\94\"S\1f\Ú\Äõ¼pÏ\83\8f\92\ÂUú{\r\8e<\8c·øÑ\94\â\è*\8dF±@ªV¨Ô\98\b\9a­:\9d\ 3\13WªV`\82b6\12½]\81\ 1\88¸hX\98ñ\90\Ø\áF\ÆG\8a8a\n\Â\10\ 3²\ÛhN\12\9cc\90sÑ¿7´?¦\Z*GLn\83\89\ 1\ 4\96{^\ìm}k\9e®Y(\16I\16F\Ãs(\8f\8e\92\12\ 6\1dú\90#\×#Y·\ 1+\10{\ 3|2\98ù\ 4\8b&%hZ\8f\ÐOL¾\9e~ÿ\0\Þ:\ÙvÚ\97-\99¯ô\Æ\Ä\ e·³ôE¾\Í;=ª¶\8e¶!\0\ÉDZõ\ÐvW\Ï^¾\93¶Q\ä\"\ì\94û5y\0\Z\ 3\ÅG\ÇÙ\84\97\8f\12J     û]ô\ÆÙ¥\ï½C«·\86¸\90T®¿\Ü\Zú\9d³iR.!-:eZó_\8f²Á>û(qÔ°J\ãd\87ýHøqyaÿ\0\È\ÎT¬£9\ç¥ñ\Ç\1c\Æ/´Z¶Å¹¼¢\ï潩\bD\8d\92O¬\Û\"f\1e4D¸\ár\86R\â³wDPm5\9c-\â\ä\Ó]P\ 2±\8f\9c>A\r´¤©+\Ês \9fÑ\9aôK^±_\Ðz\ÛA\ät\Çn3\ 6\97V\Â\7f)\ÉÙ\9a@\82\9b\1d.g\ e¬¬E0{©Hÿ\0.`F\8dZñøP\æqi7\1cªk\êñ\9f¦\\=\90\94\82 4Ä\85¢±×\9d\1dL\Øc\Ä\ e\97\Í+c\14\åª\Ã\1e\19\b\13\ e<l·\ì;F¿\r\b\ÊrV\Z@`\á\1f\Ð\Úyc\97\97\Z.\ã\Ö\7f9úS¡ö#d\8f~\Ö}oÕ\95\ë¬yk\Êß\85µ\â®   \Ö\nò\95\9c\'\å\15\ÉS\n\82g\1f\18ûY\8em?õ\É\ç\Ç\1cs\89ö\19%\97\86!¦\ß\1c\86\9c\1eB]e\æ]F[u§Z^\14\87\eq\nR\1c\94­9\ÊU\8c\ã9\Ç+\10\î7Vö7\ÓC\í\ 6\95\îκªJXúIy\Ùö9\Ú2\á\11ýa\ë«È\921\e\7f¯\12\vy\ÏÀ5¾\93W°È\9b¯\17$òD°E\81W\9aI.\1d\17f\16\"\Ê\íA¶µ\ÞúÕºÿ\0t\êKDu\×Y\í\Z\9c\8dj\8aR\Ô\f\ån\Â\v2\11\874\87\90\ 3¸±\ÞJ    \f¦\990\12\90ðf0ÁL<\Ò#·¢\9d¤#¥\1d\Z\í/j£\ã\ 4\99\9b\Òzv\Ùo«D\È!\Õ\Æ\É\\\Ò&\"\éAJ¡\87\19}Q$\Û$a\9a\95\Ã/4÷øõ\13ø\9cmϵXÑ\9b\ég\è`þ\8cv\9f±^¯wP²÷E\9bV\í\Øò(\9f»\12\93A´vNÀ\8c_\'ö4ð©\ÃA;\9da\14]]\Êd\ 2\ 5\Ì \12\96@\ e\10@¿gñ\9b\Z8\ã\8ex/g;3¥:y£v\ fc;\vw\8e\×ú£ZC.b\É>\7f\Ü\ëΩN h\ØHH\æ¾\ã&\ì\93òO\r\11^\82\8fm\Ó\å¥K\181\9bR\Üù\Æ\0z¿\Ø?Wý¤\'ým\Ö\Örü°ó`ó\ÞƵ±D\Ô*\97¾\éöZºÁ.\ f\9b\ 44µö.\ÃD\Õ\15)&\9a\ËÁZ\"ª\ç\901yÈ\90\ 5_\ã2\ìø¹e\94òǧ\e\ 2·X®v:\99r\î^*d\e!\13!Ü­£°;\1e\81¦¤\99@\Ò3±\Õ=\89?\'®kR\Æ\f\ÚFq\êu*¸\Ã\"ýÂ\880\ã-m*tQh\94\9d_M¬k­oR­Ð¨4¨Xú\ÝB\97O\85\8f®\Õ\ë\15ø¡\Ð,l,\f\14H\â\Æ\ÅF\ 23hdP\82\19\91\Ùm8J\11\8csÇ»y\×\n·oú»¿:½t1ø\Ê\Þö\ÕW-jtȬ\à\82\1e²\Ã\12\fe\8c1\Ô\ã( \Ê\ìªÁ\9c\10w\1dm·É\8f\15\86Ö¬óO¯§caYür\ß]\91òC\Ñ(±ô%¯g\íF6·XöÍ\9f+\8a\Ó\Û\Òa0QÔ«$]#cJ4\f\f§\îHZý&f\90:\Édפ3b¨\Í\r\ fs`*ñ\9b\È%IZp¤«\nJ±\85%I\Î2\95c8ù\Æq\9c|\ã8\Î?\9cg\1f\ÆqÏ\9e8\æ¢~¶S&½Sö\9f¤\ÞII\99(\8e©\è\rn÷w»s\11\ZQ\ 13q\Â$L\87¬\Ö%r\87\ZS\8c¨4\×j\0\16\e\88*8}\Íe\92\1f92(w\ 6\Ûf\12\12\1eµ\r\13\\®\ÅGAW\à#\0\85\83\84\87\b\98xx±Z\ 62*.86\Ù\10\b\èð\98d@\83\15¦\87\14f[a\96\Ð\Ú\12\9c}\9f\1c\17m}BÙ\90n\Ö6=\"¡°+o¯ò¿^»V¡­po9\86\Ük\ e;\13:\11\à8¼4\ë­ý\ë\1f*ün8\8f\9fµj\Æ`·d|\ÑÒ»\9a±÷i\ë.\Å\évâ\80\86l\rsºú\9bn\9c\12µ2#Ò\97!E°\Ñ*2Pú\ëgS\Ç!\91Z\92¦^ë\92 \e\14\Ò\ãÀ*\19\Õ2p\Ñ\a\ eþv#f\í~\Ïù½\ßÖ«\ßï·¤\86B\91/°j\91­\ÂU»)£¬©\13ö^ñ\82\84\1d\91Ä\89\92,y\18\a-`\0$|kk´×\9d\16:4÷¦¡¡ó­\Ç0\1f\ÖMj8\9fPߨ\e)\Ö\Ý(·ºY\Ò\0\ 4-yVQ\14\1d±Û\90&Eµóÿ\0\14¢@\8d>,\8f\Æ>\7fµ\87³\8fý\ã\99ð\ã\8e8\ã\98\15\90\Öc\ÆýKõ\8d\95\14\9c\ 4»?\8d\96\ám       a\nm3\ 5\×;sR\8b\8d$\Õ%Ô¶û\ã\83*\bÍ­L©Ô°\b\È\Êò\ÛM\á¼õq\È\1f«uúa= \î^ÁLr\19E\çª}\f\8fÄ\9aXRra\95]\87Þ±M\19d~4¡\çD\10\Øe-¼8\ê\ÙeᲬ6\97[§\87\1cq\Ç\1c\81²ôt¯\Ó\Ê\ 6\ÈTB³\96:\1f·)M\Ïa¼ý\88ýG`t¤\ã\91+w\1f\14¼0Ù\8d¶¯\åXCªoøK\9f\13Ë\8ep$Q\90K\Æ v\12Y\f\8e3\å%¦\ÒKã\88²\\\15\87\9f\Âpã\8c\8cá\85¸;KVP\Ê\Ê!M¥*yÌ«\9f\8e8\ã\8e\18ª-³ò;99¡\9d\r²ò\ÚrB\ 5}\Ö^xt;ñ÷¥\97^\1d\87\1co\19ûV¶ZR±\9c¡9\Çg\9fÿ\Ù',5,1,'','','',''),(12,3,0,'9305bf00c27303da','17543934065bf00c273021a183499779','2018-11-17 12:40:07','2018-11-17 12:40:07','','','Profile Photos','person-300.jpg','image/jpeg',48,48,1488,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b        \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0   \11\12\n\13\16\"\151\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿ø\17t\8f,\ëiý\Çh\8c\98Nq\87\ã%\å\â\Ò\15,\19\10?¾e\ã³grF        ,¼¹Á#\90Ú\95\8a\ÉH±\ÈÛªpVYjm\9f_HL\80Ù¤\Ónj®ª\Ñ\0·r¯¨3_\Ä\ì\16\9aúM\Â0\97\1cn:zE\raĶë\8d\90\97YoU\á\á\äGü\87»\17`q\1fªN\89Ú\9a\9eL\È\r\99oMgKSm\11ϸ$\9dLÝ«*\9aìµ\9e$ƾ\1e\ 6n\12°©\ã`\8faH| ¦\ã\Ìa\Æ\Þaµ¦{~\'>»(:\v\84+½»j\82\ 6o£û\ f6;+\×Ya\9a>\ÃU\ÔaZ\ä\á«\15H\99b\7fqc1oz\vùý\95\á\ÝiÙ\82%a\86\93\19\81\ f\7f\90]\93\Øo)s\é^\Âx[©-4й\é\Ú\Ñ;\9f\9c\çjT[\8e³ºP\ålQ\Õ\â- \ f-\\v\Â$´\19\Ó ½g\133N\86]c\a\ÉF¹\ 6|J\9c\90 ^¢»ñ¿f<\13¥:Ī\àu\vm¬Yª¾È¬Æ¼óñ1[\Z\8d,EnÖ¨E\93òSpRÆ\86\99\èAKp\82Á\8a\95\10\"K5ñ\Öcô³\Ã\Ék\î{\85\å=\8bz\ä\è\8eeª¬Vö<\Ä\b\17}O\93^À¡\91³µÔ\8b\16Ê\9c9E\ç\å!\rf*9ʱ\'9\854\13\13n\14òT\Ó+NS?Æ\87¥!ö\87­j\a5X\Ä&¡\Ñ<1)d\ç-ù«¦\Ø\\u\9a£)_¶\Ù]¨\1clQ9Á\8d\891Y\ȸK\8d!¬\Ø\á¬`5öÀ\18R¹_\ä\Ï\Ó\16ñy\ËPú\ÍÒ°     \9c\1fh{\ e\17G\Õ\Ï1Ô\8f        P¤\Å\Ü\é\ 4Û¦%\1dú<\îU0ü\84]y?¨gp\1c)vI\7fº\v\8c\ 1\92«Ï¬þ\17§ú\à\â­\'\È\ÔùuY\7f\88\"I·Û\94Â\85þa°\ì\ç\91a½YX\11j[\81G\Èؤ\r\Ä0\ e¸\ë B³\1c\13\Ï<\è\ëuo\8f\9c«y\îj\1f:é½\9f½ö\84¶!5\Ù6\ 5¾O\è§\\\1e\ e³\16\88\15\84|¬£\8a\12<Fñ\97K9ñ\Æi9q\Ô\ã2Û\8eµgKw\14\14\'c÷-\Ç`k\ÊF\Ï\1c[§=ð®»·Mkú\1e´\ÔóHÄ\9d\1e[ \äjf\ÆZööß²WÞ\89\99±ÁX\'X U\1d)øF©87&$Z\99®4\86\9b\Ó\äX\Ì\Õz²\81®Î¸\98Ü\8d¾F\9dS\84¯\É\Û$Zp§Z\90³\ÉF\ 49\Ó\ç6\é¦8\93%\880\9c8Y+Ã\9fg\Ýʧ\7f³ÿ\0[ò½´W0\îý=x\82\Ö}g\ÄÛ\827sh\vU\Â8\Ù]}<ú\ f\86&Ñ®6HQ8ÿ\08\9a\9d¼h0YT¼\12\95/\ 4c\b0Q\Ìe\Ò\Ä}\89\Ù}\88÷6P«[\a«5%·ZR\Ô\Ìx»;i\ÑJ\ 3ljmO*Sì\82©;\81\Ðj\acFk\Õ\18\ï\ís`\99­\19¯W#s\89\v\ÉUa[yô9q\92q\ÓQ±ó0\ç\89)\13,\b\92qrq\ä4X\121Ç°\ÙA\1c\11l-l\12!c:\Ñ\ 3\10\Ê\Ö\Ó̸\87\eR\90¬g3§Û\86»\7fmð.\Þ\Ö- \97\99½\Üù¯((­\å\Ç\ f¯\Ëôö\9a\12\Ë\Z\âq\8cÿ\0Õ\92¯¹&\ 1\Ê\Î2\86\Ã!õ¯\19BU\8c\Ñ\á\86\1c1\Ø\10FZ\18QYha\87a   i\91\Ça   i\96Ym\18\ei¦Ò\946\84\ã        B\13\84§\18\Æ1\8f=¼<\Ï\Ûj\Ð\17\9a­\96\93k\8b\ er­p¯\Ì\Õì\90²#¶T|¼\füq\11S\11g\nòV\É\ 1\9f\1eY\ 2\92éSn²\ê\ÛZr\95g\1e#\1e©«S´¿]ü¥K±\99 t¥7Y·QýÒ¹w\'·\eX\9e\9b\83\82   ü¾¥»ÿ\0\9b\ 6\ 4tsXR³õ`VÒ\9f\84ø\êl\n<VÅ«\91T\9a[­Ç\93)Z\96Z\Ø\Âr\æ     «Y¡\íQÿ\0\18^2\9f\8c\ÈB\8b\85ü\ã\ç\bʲ\9f\íñ\æ\Ï\Ã\Ã\Ã\ÌVº£E\ëjd%\"\15\×Þ\8b\81h¶Cp\9c\ã/e²¤\v\90RW\9c\7f¿£\85­       \Ïû\Ê\12\9f\9c\ç?9óÿ\Ù',6,1,'','','',''),(13,4,0,'9305bf00c3cedc12','24803714715bf00c3ced9f6942163975','2018-11-17 12:40:28','2018-11-17 12:40:28','','','Profile Photos','person-300.jpg','image/jpeg',300,300,11007,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b      \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 1\ 2\ 4\ 4\ 3     \0\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b        \n\11\12\13\14\15!\16\"1A#3BQ\17\81\82\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/ñ\1c\Ü3\19\Î\"u\ÝOX\ßGøX³õ®¦q\æ\çÚ­²/\ê\91\1f\7f+òxß\8c\â[VJ$<Fuݼ  \17W\95\93\9e\ÖÈ\81}¬\Ô\Ú\ÖË\8c3\18$xI\bò£{\Ì>°\1f+\\\81c|\1e>o\ 6ðö©b_j\8a\Êm\0»&\ÑQ\17\â<\àE\Ü-­A\89²Zv½\í\97\12\82£\19\v\99\1c\91É\8c\18\87Ô\8f.y\9fò¡\Í\ÒM+z\ïGa\ 6ò\Êü¦\ãJ\Þ&ñ£\83\9c\àQ\87\'\8eÛ«\Í|0³\â&G\91(\ìp\Æ<\e\ís0\å\æz\87y|\9br\16\ËS§h]\Â\ïnñ¸\ßH|j=[P\ì\17`vm\96\æPÀYE\8fSGM·M´±\90\Ø\Ñ\Ï$\82\87\14\Äh\0S9¸\18\Þ\ìJ\ëÇ\87L}X\1c¥IQ´C\í¯$õk\8d®gDÌ\9b\ eÁ\í:öÕ¼J¦t\\\1cWU¼u}A¶\ÚL\ÈJsC\ÍV\Ñm©Ø\82P¦b@£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8d\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)AT\É2\Þ1>CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ð\ê9\ï¶WPKúg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ekþº\ê8­5½\84\ç7\ã\11ð`\Ý\12\rf\9d\ëòa\Ü\ß#\9b\Îw^\Õs\15\Þ\é\16\1d\8c\8b\1dc\8f\9ej^2\Ñ\Ü|\Êö\ e¥¦\82AaB\ÄvN\9c\18\Óg\16\Ê\Ü1¦Ê\8b\8b,\Æ3Å\9c\vE!_\11\1e\9d¾\Úù=\97U\É;\0\'uûª\Ù,)E\åý¢£%´\ß\"6@M:«\8c\fQH\94Y\15\8f¶Y\Æ}\14b\Ù\ÓÏ\85\af\83ú\88\á\Ù_\ãÿ\0\ÄOEüm\ê1):\í\Ãt\ 1\Ü^\b¸\Øy{l\85\ fc\å\1d\96d|¸ø4Í®|r\ØÅ\86\19Ç\9d&ª²\19\87\Z\98s\8d\n\ e[\17\â\Ìl\Ñ\11\11\11\11\11\11\11\11\11\11\11\11\11\11\11DGÔ\83\ 4\'B\èlzu\Ô\ÛJùý±\Þ(Iü]¾\bµöu\Ü\a¬\Ù\a\ 3l\ç@~d\82Ç\90­BR7[¦\9c\ 2VÕ¼\12®6`\1e,\18z\Þ\×X®×µ\ì\Û\Þ\Í}¹\îwÖ»FÙ´Zͼض+ɧ²·º·²;\äα±\9d%\ä<\99RNG\90¥#ó\9c\ç>\Øön1\8c|\ flþß·õýñÿ\0¾=ó\8f\Ûþx\Î?ù\ÂüSÁôóúg\83¿À\Ó{½\äKI˵\19\8f\7f\Ã=k\Ùa\98\8dó\Ë\à\î\1c³S(#x£\ËkY&\9bN\91\ìø\Ñ\1e97\83m\Éñ\ 3\86\8e\8a\9bY§®\×õÚ¨\14\94u\11E\ 6²¦²(¡@\81\10\8c\11b\81\8c\10\86\Ü{\çÙ­\Ç\É\ÙsÝ\9c¹\Îv~²\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\Ô\ f\9b\9f&\Z\ï\8bÎ\8do\\\Ì9A/0\î\9f\7f\1dp\ e¸ö4¤º\ä\9bxF|i\ç\ 3\äC\Ã\éuXm.Á°¼S\ 34Uq\nú\ÑÊ\9føñ\rM\ï%rVû\Ì[ö\Ù\Ê<¡µ\Üo\1c\83½]\ÌضͮþVe\Ú\Ý[\Ï\'\Ìòd\13Ù\83\10\Ø\Ü2<8QF\b\83\Z¾¾4X1£\Ç\17G_¹\Îsýsý½¿\å\854OKW\83¦v_x¯ò\aÚ\8d3\ï\à~9¹\11¸\ f\89\97\Ç\ä\îB¥\962¿r²¯\96\1c\0º\86©!£ý\b¹t·\Ù\ß\ 2D\ÌE®\1du\1d¼\ë+@\0E\0cF\b£F\8c\11\82<p\r\81\ 4p\ 5\98\18\82\11\r­\18\84!µ¬\18\ØÖ±\8cn\Z\Ö\á¸\Æ\172\"\Ã\î\é÷Ç«\Þ>8²72ö·\91\99\Ç\Z\14Û\81\ÐÁ±e%\Þ\Å>\ÂÔ\81q\Û\ 6\97^\83cog/\ëo\Ë\11+\áÉ\98\æe\Ædw\80\12J\18ýów¬OÅ·\1eGi¸\9a¯\9b{\ 4oq°\915\í\16Ï\8f\8b\87¼\8ec\9e\"rL:\b\8e!ü\n÷\90À\91\9ce\ì\14B9\8dû1f\'­Ó¨/\95\86O\égdcBù{fDM»\8c&\Ê\Ã=ñüØ\86k*ñe\Þ\Þùø~v1\ï\8cc\çûû\ãi\Ü\a\8eð\é\Íó)¨\ìû\e#\86¶[H®<\98|½£nÚ\96¹VV\ç\18üi{\ì½}º\83I\9c¼L\ÆKf\f9\Î#\Ùò\8b\1cò\99¿\8dKrÔ·\Ú8\9b6\91³P\í\Úôö1ð\îµ\ËXW5\87\Ã\Â#á¬\99\0\Ç\aÙ\80\9cDx\\ü\14m#>\Æ7.\Æ\17eDDDDDDDDDDD\\d \Â2\18\Ä`\84&<\85)\1f\86\fcf2ç\90\8fvp\Ö1\8d\Æ\\÷»8k\e\8c\ç9\Æ1\9cª\8dýM~C\ì»\Å\ä\7f\7fÒµ\8d\91\96|\13Õ¢\É\á¾9\8dUg\99´\17{\1d\\\92\97\90·v\83\965\9c\Ûò¿U,SH°\f\9b&B|\"\\X\Ä\Ät\Ñl{\Å\17\8f\í\Ã\É_vø\8f¬\Ô\f°\85ª[\Ú;då\8d®$RH\ e£\Æz\ë\7f?a\9f!\ã8\v\1c\Öùdmf²D\7f\É<+\e¨ön\85&\15|\Ü2\é>!\âm\ 3\828\ÃD\á¾*\Ö\ëõ\ e9\ã]f¯P\Óuª¨\à\89_OEO\1d±¡Ã\8d\Z0\Ã\1c,k[\97¹\80\bC\82=ÿ\0PDÏ\8b1\èè\88¼G\9fz\×À=§\Ñ$q\8fcx\7f\8fù«@\93 3\v©ò&·]²\Ó\âdr\f\Ñ\æ\ 6\931¥\Ç8A&<\98\11Á*<i\"#\ f\18\ 4\1c\12<¾zE\e§\Ómý\81ñ\8fasm[Z\ 3]\Þukn´e¥ À8\Ã|\çqf\áa\98§x\0\èÒ¦c^Ú¥Ø\9cųdxW\15\95µ\7f\ 2Àú\æ\9a\ã\\¸µ×¶\Z«*+ú+)\Ô×\94w0eU\ÜS\\U\Ê,\e:«Z\É\Â\ 4\Ú\ë*\é <9\Ðf\02¢J      c\È\10\Ê7³\1f5lw \ÞW{Á\ãsl\87\9ed½¨\Ô]g\1e\Ãb\â\1d\8eD\8d\83\8aö¶\ 4\92\nX\ÖZ¬£\àu¯\96i\19\912~ºzk  \Ò#\ÃýJLè±\9b\15Ö\88ømó¡\×?-Z1ªj\Ã\e\89»5©\ÔÇ\9f\È<\19oi\1cò\n&\84X±\ØxöqH\É;V§\Z[\9c<\ÊtpYÅ\8c\èç²\83\f¯\95\Z\ eò\91\11\11\11\11\11\11\11\11\11\11k«\Ë\'nkú9\ã׳ý\8e\96\18²¬5\1e7µ¨\Õ`L\99\9a\è\Ö{®\å\86\êz\8dc\ç·\ 4$2X^\ÛÂ\89\14\8f1\ì\9ah\Þ\Ð\ä·\ä\'RI.\\©ò¤Î\9d&D\Ù\Ód\Z\\É\92\ÌI2¥Ê\92G\ZD\992\f\98ò\ eg¼¦1^ò\14\8fs\Þ\ç9\Ù\Î\7f\9d\15\9f>\8fÿ\0\1f\8f\ë\ÇKv\Î\ã\î\95s\àr?o¬\"g]\14øò\"~\1f    \é²d3N$a\92L\98\93#\ìöò®6\90[\Âd\12J\85>\rm\84s\12\9a1\9b/ôDDE\n\1f\81º®x\Ñ6¿!]M\Ó\7f\1f\9c¸ò\8f\16\1c\Û\Ç:\9df^^Z\Ò\êþ86\ËUI\ 1¸|\í\ëW\86\19¿¦\Æ5\Åõ@3NøÖ¿\8dE\8a\n\ÙQ{\ÏY{+\Ì\1dB\ç\ e>\ì/\ 4\í2u.I\ã{\ØwtÓ\86ù\19\81`8\ç\19&P\ßD\8d&!,µû\90\ f0\í`¶Lc<\ fû\áJ\85`\bs£\\÷\ã\13¿\Ük䣧\9c]\Ù\Î<>#\Ë\Ø*\85Q\ÈZ¹³\81\Ø\éü\8dJ6AÛ¨¥\ÆpÀV\Ç\r\Èff²cA\886P°\ÉUr\'@pf\9b`\88\88\88\88\88\88\88\88\88\88\8a\">²¾r\9d\Ç~6xó\88\"·\ì\8d\ØNv\×\é,\9b\8f¯\ e\f^8\bù\14R²\ç7$È\99\1cW\fn\Æ\1cI\81#ð\ì\a\19m^¨½s\808®W:ó\Ç       ð\8c\19\99®\9b\Ì|¹\ÆüW\ e\fis\ 2W!nTÚ\8cy\98\e²Ö\931Kn\Ã\á\8e\Î\Zü³\ã\9c\19W¡p\'\10\ë\\\ 1\Â<GÁúu|\n­_\898\çN\ã\Ê8\15`\Äj\è\Õú\9d\f\ZP¶\14v°m\ 4\1eH0´c`\Úü5£\eq\86\91\11\11\17\ 4¨±§F\91\nlpK\87,\ 6\8b.$ \8eDiQ¤\r\Â<y\0+^#\0\Â{\Ä`\95\8e\19F\ç1\í\Ës\9cf oQ\ç\8eAøóò+º\ÇÓª\Û_\Â=\8d\ 5\877q;\07²\rC\î.$\83y\ÓÀC\Ë)\8eú\r\8dØ´÷\f\98\10vj\êJ\98Ù\8dS\97-\ 3¢\98ߣ\83º¬\â\ e\êò\'P6\8b\93\aY\ìþ¤[\8d\Z\ 4\É\ÙmdnL\ã\Êù\Öó\85W_òù\16÷h\Ôã¹²J\11\13\19«\ÔpI_Xa´Ã³u\11\11\11\11\11\11\11\11\11\11A/\Öÿ\0±7\1cC\Ð\ÝK\f~\1f\9eH\åÝ\8b$ùg##Y¬k5\8df[ñökÃ\97½\Øv_\9c½§v0\Öü3\97\×v\8a\96\8e\0Ô¹÷\Ì\1f\v3p\16d\Â\á\Ý7}\ç*¨\8e\10\äD\97°\é «¯¦\14ø\Æ\ÆFx¬\93±þKZ\ïò¥\82,\8f\89>\9f¨\96\è¢\"\"\"(\90ú\Äú»cÌ\9e94\Þm\Öi\"J¾\ë_0\Ó\í{\r\88kA\"\è\9c{²\Ó\ÜjwUÌ\9b\87\8aX*\àZ[\Õm\133\9fÉ\8a\10\Ò\É÷\8e\Â\Él\81\ÕÊ\8bcþ ¹²W^<\9ct\9b\95aG$©5\\ó©k#\10¾¯\93q\ÉN\93\ÆD\90\e8\e\83\10[\83\åHc¾_`\ 2F5\84s°\Ç]²\88\88\88\88\88\88\88\88\88\88 \Ë\ë}×\82N¿ôOkll~D^b\åMxòÿ\0\9b9úg\éT\96Qcg÷\ÈÛ\8c¾¶aqí\86½þ\Ùùe\Ø\ep\Ê\èQKOÑ­­Í\9f\åKs\Ú\18\Ñ\æ·]\ê\Ç%V\Êv]\9fµ³ö-£B}~\18Ï\8e[\91º5%§\Úÿ\0\9b\\\×4-k\1f\82=ô\95\11\11\11\11jK\Ï\r\\K_\ f~BE,\"/\âu»w´\8e\â1\8fp%\Ö\n<À\189~3\91\97\19\16G\87³-~XB\ f\19ö#±\9a]\11f_\8e½#f\äNút\ãS\Ô+Mk{3²\9c7b(\80pZF\×k\9b\Ý&\É{;ür    \8e\1d]\rE\95¡\86\×8\Å\f7\8a0\8f!\â  /-DDDDDDDDDDQHõ\85p\94\ eDñV>V\92,\96g_¹§\8f¶Z\×0\87\97\83Æ\92d\11\82ö\19\ãb\1e\Æx\ä\14\9c¸m\91&)\Ø<\98# ª¾E.OF\86\Ð:ÿ\0\'Ü\87©<Y\Ëö^±\ï6\Â?³>#v±²\êBp³\9c\ç\ç\87\18{\ 3\È\Ü5¹nq\1d\ß<·8g\Ê\ÑDDDDE¤/Q\8f/jüE\á׺\ f\Ùl\ 5\ 4\9c\8d\19\9d}¯~rY[\ 6õg\ 6¦º0@\Æ\10¦Á\ÊüG#\9aÖ\8a3O\89\12\n0\8d\Ù\Í8\88¤½\éE\ê¾\ÕÏ\9eXøÓ\95\àÀ;ô®ªkû/*í¶¸|lÃ\8dm{¯]\é\ZuTÁ;\ 5\99\97\Ù˹µ°\82x\àh\ 52\84C\9726dF\14»f\91\11\11\11\11\11\11\11\11\11\16\1fwû¬Ô\9d\Å\é\87dz\Õ|\É?\8b\1cSµk\90\8f\ 20$\ÚCº\Íy&\ÑK¨l\81\1c\15´X\98\84|\80ÿ\0I]\87f<\86\96\8e\8d·U\Øt]«f\Ò6Ú¹\14{V\9d°\\\ê»5,¼\89Ò©ö\1d~\ÆME\Õ\\\9c\80\86\ 6dW\ÙC\93\10\Ù    J,\90.\È\Èö{;=}I\ 3Ò\9b\ÍZ\Ï\ry\87\âHû<¦D\1f/q¿&ð\í1\vó`]}°Á«\Ø\à0\Ò07\86+>½JI0YN\bJA\8e\eL\Ù\12\80\×\Ûp\88\88\88\88 /\ëUî\8e°Z\ e·t+]\9f(\9b\8c}\81\9d\88\ä|@²È£B\×ñS±\ê:f½{\\\Ç\b\87ýVtÙ»$\ f·\12¡<\94¡>q\1el\09õ÷¢¶O\Òý\âògAz<\1eV\å-i´ý\8c\íg\é\\\81¹2K[\9b-g\8e¿\15\928\ÛG)3\ 6¾P³\ e²[\ïí«§6~+ö{»\ÌU\Ù˪<b\92\88\88\88\88\88\88\88\88\88\88ª\86õVxõ\9f\Ô?!\97\1c\ëªT\Ìo\ ev\æ#ù\12¶h¢\ã\15:ÿ\0%D\Îk÷MQ\8f\89\r±`2X¢Á\Øk\ 3c>E½Ä\99;,\æ\fpa±£\8c\ 2÷n¯s!ú\ï\Ù.\ 4\80f\Û8\á\îa\ã\9eH\97\1e\88ø\8fkaW§\íµ7\97\15\11\1e\éP\84÷\\\ÕB\99RX\Òe\ 2\1cÀM,I¤\ÄC\99^\85\1c\8f®ó\ f\18q\ç+\êR\813X\ä\9d+X\ÞhdF\94)¡}V\ÓM\ e\eq(8À\Ì\á\ 6cDW5¬\Î\f7µ\Ìc\9a\æc\Ð\11\11\11\16\17wó½|\e㳬ûÿ\0eù\Þ÷\15ô\Z¥iY®ë°\9a9[\1eõ·\Ê\Ãckú\96·Zù\11s.u¥\99\âG9\Þxð\ë£\15ó\'J\8e\16aΦ\ 3»=·\ä\8eôv\8b\98{MÊ\99d}¯\96v\É\×Ø£\8d2L\Ú\ÍV\97.úhõj\82Hh±\88\14µ\Ã\ 4|¾<Jøó&\æe\93+¡>q#³\15\ÔÁ}2þ     ö^\Úr¾\9fÞ\9e\Ë\ë3j:\Í\Ä\Û\1c\1d\83\8d5KºòGÿ\0\8d»µS\Ù2®À\8c\92&\95\Ú.½\'\11\86hN     \îm\a\ 2SfÇ©\8a(\Û5\9d±\ãÇ\89\1c\11b\801¢F\b£Æ\8d\1cL\fxñ\ÂÆ\8c \0FÖ\8cA\10\ÚÑ\88CkX\Æ5¬cp\Üc\v\99\11\11\11\11\11\11\11\11\11\11\16¥ü\Òx\Þ\Ö|\9ct{\90¸@\Õ\Õ\î\å\1dxF\Þx;c\96\ f´ú\Ï#\Õ\Ä(\á\Z91\9c\141í¢¼µ6Ì\8b\í*}T\89Uc#\198¿*i9\e\8ew\9e\"\ß6\Î1\ä\Íb\ÛKß´k\É\Ú\æ׫\Ý\Çü{:k\9a\â\ä2b\9d\98s\ÄVg8i¢Ì\8a\9f\10 \9d\ 2L\98r\0rt¥h\87¤o\È\ÕOcºN~\9an\Û\14ù¼\ÍÔ\87\8e\9cv\Ù\10\Ùi\ÂWg\91\8e>\ 5\1eE\Z4c\aQ\1c\e\r`\Ñ#\92U\88b\ÖG±¶\18±:4\Û9t\"\"\"\â1\85\1cE\91 £\0\07\98\ç3\Ú \84\"n^B\94\8f\ËX1\8d\8ds\Þ÷»\rcq\97;8\Æ3\95Qw©\a\Êv\Û\ä/¼;\87\1e\13£u»¬\e6\Å\Æ\Üc­±\ç\87\ eóg§\98Z\9d\×~»®ø\8c2n\ fo\1eÂ\8a\9aL\82Z6\154Y\12)g\86\ 6\Ã&.#º·\ë\é\íñ-c\å\a¸õ\99ß©§c«\9c\14J\íç\9a­I\1f\ 3­\Û   \Z\Â\17\è¼U\ 6t\8c\ä$±\Ù\1eo̸\14x\96¹\8b¯\Å(,cB\15\Ü+\ 1\ÛǪj\9aÖ\8b­\Òi\Úu%n·«\ëu±ª(¨ª\"\8e\1dm]t1\àq\âÅ\8e,a¬c\e\8fw;?\"\14\8ey\8a÷\94\8f\ 2\"\"\"\"\"\"\"\"\"\"\"(Jú¦¼\eç\9eµ\e\Ï\"\9dY\Ó\çYs\86\93[\15\9c\å\Çz­s\åXò\86\99\10¯\É7*ú\á\11¸\9f¶\êQHi\12\e\fO½¿©\1ei£G¿\9a=n¾¦·\15\9d^7{\Ûɾ8{}\Å}§\ã\13d¦Ô¬¿GÞµÜ\8b\ e\é\Æ7\Ò\"\83w\Õ\b?̯\Ç\äέ\vfS\14\93C\166\Ã]Q*Às+\83.\ 4«£ºµÙ\8e\'\î\17\ 1ñ\9fc¸Ka\8f²ñ\Ï)k5\Û%\1c±;-\97\ fóc\8c²*.!\15\81\9bUsZW\æ=\85]\94XVQ    \8c6\\(\ÄwÕ\8c\80DDZøò¹\ÏV\1dgñ\Ç\Ü\Þg£°\15nÕ¨u\ë\94\ f¦H.3\ì\í¾N£k\Z\80m\Î\Z\ï\83ó8\8c#_\î\Ç7\ë\ÎDü\e\ë÷¤^lÙ\96S%\Ø\ØË\93>\Â|\93Í\9d:i\Ë*dÙ\92\8aóÊ\97.Q\ÞóÈ\93 \ïy\8es=\å1^ò\11\î{³\9cÿ\02¸\17\Ó]Ó\8a>¡ø§\àS2­\Ðw¾\ÂÕ\83°\1c\91&ma*¯\1dq¼A\8aZ\8aKȦ\18M\89Z¥\0`Ð\8bò\ 4\ÉL\8f\15\82\91\ìñýcß\9a\"\"\"\"\"\"\"\"\"\"\"\"\á0C(&\8d$\"\91\Z@\88\13\80\ÃaB`\95\99\19Ba\13\ ea\ 6F9\Ì \Þܱ\ì\ÎZ\ìg\19\15Uþ¬n\83pwM{Ë£ò\'\ 6\82\9fZ«\íF¯¶r\16\á\ÇT\Ùcck;\Å\r\ÅL{\Ëö\Ä\e°\Ê\Ön\å\Ø\eb\èb\0\86i\90\98\92¬ml$\92+ªk~\8cN\Ós\ÜN\ßr\×P\99±Ï´\ë¥\ç    \íü¿+Z\9e)3!ê¼\89®\ì\ÚM=t\ê\19\99\'\ÑPÍ\8e¿a·Í­c\86ö\ØI®\14ø\1f\86V\Þ:\Ò\É\ÔDE¡?S\r5\å\ç\86þ\Ö\ 2\81ò\a&\15n½s=ñð\ì\ç\14t¶ã²½a~9Ç´sUF\95\1c\ÙÏ»p\Â\ç.\Æp©ó^\81\ÄôU\ÛG)ñ¦µq\14\93ªv.@\Óh­!\b¤    fW[\ìuµób\8cÁx\Ì\"H\8d ¢a\ 4A\94n~\1e7µ\Øñ|\'\1cUWQñö\8fOQ\b\95\9a\8e»\n\f\10        \80\14X\Ñ\êb\fah\99\8c5\99kqü\Ø\Æ=òÿ\0\96]\9c»9\Î{¢\"\"\"\"\"\"\"\"\"\",h\ì\9fqº¿\Ô\1d*\×\7f\8f8q\ß\12ku\ 3\e\8e]³e­\81br\Èoý\Ê$\nw\1f6s%\Ø\15Â\8d\ 4@\8a\ìH\95\"0\Zü>@°\èÀög\Öm\Ðn2\94zηñ\ f.vlä­\90h[\ 1XN\1dÕ\81f\Öe±\âY3v¢.\Ñô¼ùÁ\1eX\Zì\96º+s\9c\902\1d\80·T\ïõ]ùt\î\1e\Ì\ÍK¡}\Z\Ôc]\nª%­v¿§\ïÝ\8e=@¯\nh4ä·±­­\Ò\ë5Xò\æG9\1f{³`t\Ì\fI\ä\'\âÆ\8as\Æܧ\ 2\a\Õ\Ë\Ì\ï\×%r®\Ï\Ñþ³j\eH3úÜ­\97F¤Ú·ý*,\98\Ç\ÃJ\Í7Q¸²\8f*\Î<\9c\ 4F\8c]\Â6@\'\92dcJ(C\ZO\9eXúL¿\í1\Ë3ùÿ\0\É\1f\91>i\íg/\\}\ 1¹° \Óhøö\82}dF\Êe}\1cxN²¹\95®\Ò\Ö\æK\å\ 6³R>¿\0¶r\'X\â$bO\9c9Y\ f\a\17\âN<`\8av±\Ê\Ö\12\a\9cd²ó\Ê[\ÔWH\Æ=½ðð\87\99\ïûû\äXgõý½½\96\Ýú\ f\âo¢^4!m\82\ê7\f\8fGºÞ\8b\1dûv\å}³\ì\Û\Î\éy\Z\18\86(5gض»K9q)`¹§\93\ e\9e·\10«£Ì°´\948ø5\94Ç\9b\88\8b\r|\88p\\\8e\ÍtO·\\\ 1     ù\15\87,õó\94´Ú²µ¸{\Ãoi©\Ù6 ÁfXL>@l\99\14\91\9a\æ\å\8e;G\87û79v(\é\Øh.uKû\Í[c®\93O°kW\16T\17\Õ3\19\81Ì«¹¦\9aj\ëJ\éL\Æ]\86I\85:1\ã\1d\98s°Ò\89ø\Æs\8c{®\Ñ\Ä\Û$\1d7\94ø\Óo³~E[ªò\ 6\9b²X\15£!\9c84{\1dm\9c·\à!aJ\\°\11H\ì\fB!\1f\9c|XÇ»8no\89\ã\ëh\97ú\16\91{\0Ã\91\ 2\ëPÖ­¡H\13°\á\1e%\8d4)\91\8c7·9Ã\86P\99\8f\9c\á\Ív3\8c\19\11\11\11\11\11\11\11\11\11\17\9fò\97*ñ·\b\è[/(ò\îñ­q\Ï\1d\éµr®¶\9d\Ënµ\8bK¯\ÑUB       $K\9dca-\ã\b\8e\"\9c¯\Îs\96\ 4D&qð\eó\88    ùjõx\í¶\16\ 5\89\Z\8aª\14û­jó\Û\15p§M°\8e\8c;®#¦4\87\ 1\85\1d\8b\Ìjý\93b\82ú\ìb¿?\8fG³\Ô\ÚÅ´\f:õú\ e\æy+\ìlZ:\86ò\Çk;\1fȲ$f;lm¥\ì\Û\f\88Î\9eioc\ì\ï&\86£T\Õ X[8q\ 2y\94\9a¥)lA\ 2\13!bTh\ï\9d\17\8c¯GW\18\é\"Ö¹_\ÈöòþO\Ú~\8a\ëpõû\8f\äI¨\Ð\è\ì\Zð\Êü-\Ïi÷m¶\â\è\92c1¤\83\fUTVP&J¯·¬>Z¦w½y\à\9e·\éõ\Ú\a\ 1ñ\ f\1d\9bU\eñ \ë\Üy©R\ê\Õ\â\8fö8\ß\ 22ª$g\É\ÎJ\ì¿$\94ó\95\ÎöË\9f\9fl{{\Z\"\"\"\"*¢}Qþ-lú?Ý\8b~\ÆñÞ±*\1f[{o}o·\Ô\Ø\ 3.5f³\Ì\Ó2{®B\Ô\1c\838\82;\82\18\9bm \æÏ\97\86Ù\8a\ÑÆ\81_\14y\8b\ê·W\Ó#\Þ\Ú.\äø\È\â\ÍJM\85\84\9eP\ê\ìh\9c\17ȸº\9ayö¶\85\×\àE\97¯ì¤\9f8\9f\99mú\Í\ 4ú\ÙR\ç5\85\b$\9dµ\ç\9d*\Ê<\ì²Dh\88\88\88\88\88\88\88\88\8b\Æ{\ 3\ e$\ê\ç\10o<\ë\Î;\95^\89Æ\9c{G:ûb¾´3\19\86Ç\83\14\Òq\n¾;\9e\Ò\Ø\ÛMÀ^(\15ѽ\Ï$¿¶0Á°¥eK^m<\çó\9f\95\8eU¸Ö¨\ìnø\ã¨:¥Á\ 3\ÆüA\ZkÁüJ\ZÙ¤}~\íÈ\9fCC\9bk\ë\17\n5\98ª$\äÕ´\87\f/¤O\99_\10ñ±KÅ\97\8a\ e\Èù[\çAqO\v\Äf±¤\Ñ8\12ùK\9a/\ë%\Í\Óxæ\98\99\Æ~\Ù\ 2\8eX\8e»½\92\Ìÿ\0\áº\ìY\ÑO1\î\1e\r.\e\ f\1d\å¶W\Æ\ï\8aþ§øÀ\á\ê\Î0\ëö\99\ eF\Èø±ÿ\0\8ey\87a®¯?%ò5°\9a|\16\Ûaº\10~q\ÚgI\91õTV:5D\0\11\90+\âF­\89\ 6\1c]\91¢\"\"\"\"\"ž\åtû\84{\××¾@\ëo?j\Ðöm\ f}©,7¸Ák¬uûqe²)öZ)Xp\ä@¹£²\f[(\12\âH\8d$2b\88 \91\1e@\àU\ eùmð÷\Øÿ\0\13¼Ë\9dS\92`H\Üx[m°\92\Þ$\ç\Zx\12q¬\ì\à\Æ$\É\ e»xo¡\80£\Ý\â@\8eYF©3\98+hq¥\ØÓ¸\99\81y_GÖ¼DùI\å\7f\14]©ª\ç=\1c\136n=Ù¢F\Ôy»\8c\878\91¢\ïz.g2W\Î8\9eqW»hÖ\8f\93X\ë\12¬1\81\8c¦°®lʶ\Û\Z\Ò%À}9\î_\0w·\835.Àõ\Ïz«Ý´}¦\ 4s\95±\ f\8c[k\96o\1e\7f3_\Ø\ë\n\ÑN¨¸®\92\10\åÂ\9f\Z,\90Ê\8b&9\Â\19Q¥F\ 6T\"\"\"\"\"\"\"\".\19\12\ 1\14\ 6\95\8d\Z0\89\"D\89\ 4`@\0\ 5\8e!\8cc\11\18\84!µ\Ï!\1eæ±\8ck\9c\ça¸\ÎUR¾¥\Ï2·=ý\ì¥\Ï[¸gf´\8d\1e¾lvZ\ëcF!¢C\å.J¤\97\9aû\í¢Ày`_:\86\8a\14\88\9c\ßÀ\99$&»in\"\83\8d¦\ï\1c\1e;y\ãɧfu>¸pt\16C|ò\nÓ\909\n\Î)¤k\1c\80\Íý[iºh\89\1d\Ó\æ4-(5ýp\12\â\Ë\Ø-~¸Î\97WT\v\9b\8fz/Ѿ\ 3ñ\ï×\9d/®½}Õ¡\Ñ\ëz\Íl&^ߺ$q\ì[\æ\È8\íe¦ÝµM\162I¶Ö²ó\"[\9aò\90Q3 \83\ e\\\ç\98\Æ\ÌDDDDDDD^a\Ëü+Ľ\80\Ð\ï¸Ã\9aø\ïR\äþ?\Ù\ë\åU_j{\954K\9a\8b\Zù£úfF %\r\Î\ed\v\ÜEx\1e\"<Y\Èòÿ\0\83³\85\r®ùú38\17\93mî·¾\89óTþ¾\ØIi\ç7\88y\ 2²\Ç\7f\ãù\12\99\ZQ\Ý\n\8bc%\Ô]\9fZ}\9d\91D\Ñ:Y.iª!\ 4P¢Ô\8d\8et¡jc®~\ZýJ¾#÷\Öó\ fQuýco;\Ìh÷ú\1f\ZòÖ«»è»¬B²;     #h\ã\9d\Úv\95\ e\ÉÁlh­\8bh Á\Ú@\ 6\96\15|¬A\93g\10òo\êG\98ÿ\0$\825\16©\ä7\Äÿ\0.q\ 6)j\ë\àn\9c\ÇÄ\93\ 3»\Ó[]Â\8c(\×v`\â\ØE³\Ù5÷L\9d\87Í\89I_s¶\Ç\ 32xF¸\89ô\84\Å\É^Xõ\19x\Í\ày\91\âsmÿ\0dø\94S$f\14;Mû¨=\8d\×igNÀ]#0«-¦ñ\ëa[\Èh\18B¹µE\9aÆ°Fù?\19\110\ßO\ë?\9f_\12}²½f¯\Å\1d\Ç\ãø;<\9b\ 6\Õ\Ök¼¥\vcá«\9b¹\99\8b\99¥m\1c.P§\ÕIl\18ñ[\92È\97\ f\886°øÁ\Ü\èsq\elZ¶\ë¦\ï\10]g¤\íº\Î\áX\Ç5\8f°Õ¯ª¶\b,{ñ\9c±\8e\97S.\\v¹\Øk²\Ö\ä\98\Îp\Ü\ç\18϶WfDDDDDDQ\94õGy/\ÏFz\ea\Ãü{°¾«\9f»j\Ûn7\Ô Srê­\9bQп\11\ß\ÇÜ\85\\øv\15×\90\Ý[\f\81£©¾¥)\ fO´\ÝPº@\Ú\19\1fcj\83¨¨µ¿µ¬¡¡¬°»¼»°\85QMMQ\nM\95­½­\94\91C®¬¬®\86#L\9fa>a\83\16\14(¡,\99RJ \0O+\Ú\Ü\Ü\a\éöñEA\ã\v¥\9a\ì}¦¶¦_f¹\Î\rv÷\Ï;TH¾\ä\8ey/\993S\Ðj\æ\É,\99­¤Ó¨gÃ\83!\83ulK[\ÖX^\9a\8a®|\É\0nù\11\11\11\11\11\11\11\11\11\17\98r\×  ð÷=jSô.m\â\í\a\96´«Hò\"XjÜ\89©\ÒmôR£Kk\19,\ 5­½\8566E,c`¥3\ 3\Ãd     ¸\11°ñû·1dò?\é\18\éGeb\Þ\ïý6\9f#¨<\Ç(\8f\98\Íj\9c\f¸\à\e§cô¶~\eøó\ë\8d/Q+ \×I\89\\M2ú\8a¥\96\16¦¸º©¸0\9c\Ã\ÂSw\ f\97_O\97`\ì8\Î?$rg\\\ïo1\"\Ö!´\8d\92u\ç\ 5s-\\Ytâ°»¨\81i\13\Z\96\Ø\á:²\9e\ 5\84©ô\107\Z\8a\Ò\×0̬®¸­,\é\9døZõQq·poõ^µw\9a¿Y\àþ~º4\r{Fä\9a¢\Ë\ f\17rµ\Ù\Â\11\95\89Å\93#J\Û.,\1cX\15µ3eM®\9e\82%\Ô\ë;3Æ\831a\14R\ 4#\80£0\f6\18&\v\ÚA\14Dn\1e2\f\8cË\98A\91\8eÃ\98ö\ç-ss\8779\Æq\95È\88\88\88\88\88ª)õ@w\ eçµ\9eW9w\\l\Ç\13B\ë\1dm_\ 2\èq£[I\9dQ\'\159.˵lQ \19\8c\rE\8d¶Á°\9e®\Ô É\9d\'\Z\ä   \ 6\96A\85\93þ\92¿\1d\82\íOzfv\83\90)d\É\â^¢Àf\ËJ\ã\Æk\ê6>h´\È\"\ë\14\Åt\98²\à\Î\16·Q6f\ÇiZf\f¸q¨\ä\88\â~\19ó´\Ý\11\11\11\11\11\11\11\11\11\11\16\1c÷\93¢}rò\19Á\e\a\0vOG¯\Û5{&\1e^¿q\90\r\9b.\8b²:)cD\Úu\ev\á³*m¢´\99k\Ý\14\ál°{\84\Ù÷ÀJ\Z\7f|­x\É\æ\7f\15ݩظ\ 3\93\âO¶\Ô,\Äm£\85ùGðH\Z.N\ã\ãIpc\ÙW\Í`\99   ÷\94G\Î*6Ú\91\ä2\ê\ì\98\19\12 B\85kW÷M#Òµ\ç\ 3b\ç\Úø~;;Y»\92ó\95µ\n)2úÿ\0\È;4·>\ë\90u:¬}³4½\82\îl\8cb\ßo\Öã½­­\90w>\ïh«ú\ ea\Ú\\@Ø®eN\ 1\11\11\11\11\17\9có\ 6\Èm;\89yKn\8cwF\91ªñ\Öï±\82K\1d\96:9¨õ\9b;1\19¯\Æq\968O\8c\Ò5\Ø\Î2Ü·\ß\19Ç·º¡÷\90·­\87\947ý\ã\92ö\é#\99¶r\1e\á³o[<Á\r\Â\14½\87\9b\7fu$bs\Ê\á\8cöV\12JÁ¸\84s\Zü7/~qòͶ~\98\9ak\1dKñQ\Â\Û%i&\È\ÛûQ\16\1fd7ó\ÍÄ\81<v\9b}=|\n\Z¡Ã\90Bb\13)5ZºzÌ\8e?\Ñ\1eI#¾Ä\91Ca2y\r!TDDDDDDDDDDE¤\ï=\1e3u¿%}\ e\äm6ºª°|\ë\Åu\96\\\9dÁ\9b\8d\93õ\ëu\93¥\93R5\8f\ÖsF¢\Û\ã}µV¹\1cK        \ 2\11\9cJè¸\9cö\11T)\Å\\\97ɽe\æ\Ý\'\94ô³\Ù\é|¯Â¼\81Y²U\ eÀ6Usª6\9d\85\91K\7f\\\ÃV\Ù29dD\91I³Q\È,W˯5\8d<\æ´g8\Õ\Ü\Ý\ f\ 5/sú{\×~\ÏR´q\Ù\Ì\\U¨n6µ\8d<2È£\Ø,\é\â\9aú\9ax\à\94\Ñ\áÎ\81f\é\ 3<&\14\8d\8f\8c±£)\83\91\9c¹l\88\88\88\88µ»\æ\v\90\çñ?\8b\îôr-[½¬µN¹ò\r\95~>Ü\87\9búo\ãE\ eJÖ½\Ãi\Îv\ 5\Ï\Ã\1f\96\99\Ï\Å\ßùsK\ß\ 6\è \å\ ek\áþ4\94\ f\8dÈ\9c¥\Çú,\86D~G)\à\ÛvÊ\8a\ 3610\×\å\92\1c;\a`/\Ã\1d\96\93-w\Å\Þ\ÞÙ½\çC\Ó(ø\ëI\Ôô-j\1ch\14\Zv½Q­\ÔÄ\89\18Q\0(U\10A\b9lpÿ\0\867\15¡û\8b\97e\å#\Þ÷½\îs\Ý\ÛQ\11\11\11\11\11\11\11\11\11\11\11S¡\ê/\é\å7L<¯v\1fM\Ö\ e\9c»&\1fcu\ÈlÌ\92\1c¿:\â\Ú\î´Ç\92÷d\Äf\Ý\vc\94\Ö\Ç\14X0\83,5\90#2\1c\10¼\93Zônó&7\ï\17;o\17\æ9\Æþ\b\ìV÷¯}\Ç\Ër\Ù\"Þ \Óò+\1d\13\âW\ã\10\ÄKó\v\âA\84ß\9c\Ù\î\Ë^\17\0\8e\96ª\"\"\"\"\ÕO\9c=2^û\âS¿:\ílSM·\'\\÷¹\Ôñc\ç\ØDz­\83\89 \8e<e\ì\e³)¡$\\\à\ÙúÛ\83\åù\Ë\1cÆ\91\95_ø0\ã¸\1c­å³£\Z=\948³¢\Ùs\16\89\82ûc6N¯©\ì\Û\\\19DoÀ\99\Æ`Τ\8d8ek\1cð\12;\f<|\Æ\Õt²\"\"\"\"\"\"\"\"\"\"\"\"®\a\Ö\ßÆ\9a\ag:W\ÊUõ`\ 6\Ñ\É\1cC\Ê\Zö\Ëq\81\v\12¬ ñ\Öͧ;^\82\8d)#U7rµ,`\95\ÄÀ\ri0\83\Ëq%\Í\Æ\É=\11\í.:W\ÜW\å¹À\1d\Ú*V\8dþß³\8a\Þ\'Õ²f\ã>ß¾XÇ\839Ǿ}¾xý±\ïû\Íi\11\11\11\11coqµPn\ÝNì\8e­\'\ã\90\Ûp\97%       \ÍxðV\93 Ô­e\8cN\1er\Üg\ 6$v\8b.ýþ\1f?\9fÁÿ\0\1f\83ªmô\ÒÀ5\87\9b¾\89\à@!\99\ fk\åyò\\Á¸\8c\8e\18¼\ 1\Ê\ïi\Ì\æ\ã8\10ÿ\0# \vHLµ¿yB<g$#\Z\ë\89\11\11\11\11\11\11\11\11\11\11\11\11\14\13}p:\Í{¸{¡;\8f\Ó\ïj\1eJ\æMg\ï\Î\e\9f\85|\9d_Q´úX\ï\87É¿d\98\9f2c$ø¿\ê\16p\ÌdyvsGÑ«­Á©ñ\83¾]Æ\84\18òö®\Énó¬d\8cM\19,\rYK¯R\0ò\b\Ö\á\Æ b@\ 4F=ùs\9a\18\16\1d\861­l¸Q\11\11\11\17\96ó\94\\N\áNa\82ì¹­\99ż\83\15\Îo¿\Ë\18\91©[\879o·\ïò\Æ\1f\8fl{ûû{~\êª_I\æ\96M¿Ì·\ e\16F\×i\1cc\Ì;£\9eO\97ò\8e&°\ÊB\á\99k]\9c\10£¿p\19ûa®\É~\ esX\ç;\16\Ö\"\"\"\"\"\"\"\"\"\"\"\"(Lz\Ü\ëp^\9eô¾\ã\ë÷\Ì\1e\Ê\íU¿w·ù\7fªñ}´¯¯\åýqöþ\8b\87{\7f\7f§\ßý8Y\á\é\12¯\Ä?\r:\14\8c\ f\9bny\ç\8b\f»ÿ\0[#\Ùa\Õý\9f\1f\15¸\17÷ÿ\0+úÿ\0lI\Ý\11\11\11\11um\â\b¬ô­Â´ÿ\0\äXj\Û\ 4\13\7fõK©\97\1c\9fþ     \95\\G¥+\82\ë5\8f4\9d\Ç-?\Ø\n~\ 4Ò¹Ã\8e*!·ù\82\Êû>Y\ 6¿\ 1\Ïq2\ãý\91ai\í\0½ß\9fv\È7\Ûò~\19\9cY@\88\88\88\88\88\88\88\88\88\88\88\88¢¯\ë\ 3Ñ\83±x\9d\9b·\9a\e$;\8f\8c§F\92\ f/\81\'c\Ø!\ë\9fhð\ìý\8d\É\âL\97\19\es\ì\Ò\äosp\\a\Ù3\éu\Ñgh\1e\18z\Å\ 2Àoa¶\e\1e\82\ç³\á\93A\Ý÷«\8d\96¼\98\Çú\98\ØV\0\v\1fþ¶        ¹R\ fDDDD_\à\83\19\86A\14l(\8a\f¢#Zñ\90onZñ\91\8e\ÆZö=¹\Ë\\\×c-ss\9cg\19\Æs\85\ 4\ßL]\ 4z\ß2~q±\1f\18\18¨9\1f\92(#   ¾\Økc\9b´ü\8fñ\Æ1\8f\7fÙ\8d¥\13[\í\9flc9þ¾øSµDDDDDDDDDDDDQÁõ`\ 3\ 6ð\95\Ø\Òe¸\Ï\âò\a\8c\1f»r\îp\Ò#|±þ\Ùö\91\96ûÿ\0³³\8fî³\9bÁ½Xj¼Bø\ï\b\841fWVx²\Ð\Ù\e\ZÜ\98Ö\94 \9d\92\978n2Be\86\e2÷{»\à\Æ3\ e\ËX\ßm¬\"\"\"\"\"\87G\81m\ e\9b\8f\11¦¤\ 1\ãÀ¯\æ\Zia\1c\92<\Æ\Éw.Xå\9d²\È\Î!=\Ýñ\91c(\Ò\ 6\Ö|\01\11\8c\0\Æ\ 6\bl\98º\"\"\"\"\"\"\"\"\"\"\"\"\8f\17ª~\8e\Æÿ\0\Âgi\ãV\ 32\ f\ 2ÿ\0\83/\ e<9­ö®¢\æ\Í\12\Ö\Ôù\Ë\Ü\ÖûE­\8b*V[\ï\97?\éø\r®#\98\Ü\ç\1f\85\88Ä\89\âK\Ç\18\88ï\93\9dÓ¾\b\93\8cÿ\0°\æhTó\ 4\ßú\ 4v3þ\95³¤DDDDZ\1cñ­\Ö\âqO\92\8f.¼\É*¥±\äs\×6RZC³ül      ò(õ\Úz¸q`\äøn>ñ\n\æ^\Ãd<e\Ù\ÃMk+-n>Ns÷Æ\88\88\88\88\88\88\88\88\88\88\88\88µ\7f\æc\83\ìû\19\ãc´\9c?PfF\9f¸h\12\ë\â\Í [(p%\91\1c       \ï\8a\ãGt¦Ä±$3¸\ 20\Èü3?\12\87\18É\87\93\1d\1c\Ñ_\Æ=8\ë\ f\1f<,\8f\8d?\83¸Ú\84A\1f\×õ\8e,\r^¸Q0\Ü\ f?\ 6710\17`xöȱ\9f­\Ík\Ú\æ\ã*\11\11\11\11\11|*\9df\86\8e\95Mdx3¶)\8d\9fw$?g\Ùc1\98&\Zsü\ÞöüÛ\82\93\ 3\eü\îþ_\Ý}\ÔDDDDDDDDDDDE\Ö7=F\9b|\Õ\îu\r\80e55\ì\\C°\18\1eÑ\95\áÁ\84|a\8fx\Ê\Ö\ç\ì\v\91»\1e\Ø\Î=\97Ñ¡¦\83®Q\ÓkÕ\8d{+hjk©«\ØGa\äd\Z¸a\83\11¤{Z\Ì9\í\0\a\87;\fn\1c\ìg8kqûc\ë\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/ÿ\Ù',4,1,'','','',''),(14,4,0,'9305bf00c3cedc12','24803714715bf00c3ced9f6942163975','2018-11-17 12:40:28','2018-11-17 12:40:28','','','Profile Photos','person-300.jpg','image/jpeg',80,80,2354,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v     \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0+\10\0\ 1\ 4\ 2\ 3\0\ 1\ 3\ 4\ 1\ 5\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b        \11\n\12\13\14\16!#\15\17\18\"ABÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91û\Éõ1Vü\î´\Ìõ7¨\10\95M±\ÛPCm;\n\Ûf˲\9a\ÏA¹\"&\b\n(ø\È\â\Åz\é³r+\ã\È*¶£Á\83«´øN\Ù\1d\941dVq\8a¿+:}\íw¶N\ 5\1e\êz/Û\9d      \Ó\ÙI§Ì®\85¬¶\14Ö©´\îu\ 6J\877\Z¦\8bIý³A¥\Ò\ 5y§\ãó°d«2m\12`\ï\a^¯N|HKFow\×n½RºÉ­c5m\ eö­0±\Î~¡S\9b£r\ì\í\át<Å\8e8\Ï\10M·i\Ú-2\â°ö\ 6\85\86z*¸\e\ë}\È\Ø`²C\Ø_ºñ\Ç\1c\9b\ e\È\'¨\1d0\í\17g\92\9d£´v\Å\ØpQ¦aY\12V\Ó\ 3[=ú\94AXFR¯\Ó\ËY³\13\Zöp¤|6R³÷£\18û±Po\97½S¶zÁ\ê\1e\9d\ÓûBÁ9d\Æ\é\ÚV\1d­Ø\9b¡\86º©ùjl.e6NÚ\94\"S\1f\Ú\Äõ¼pÏ\83\8f\92\ÂUú{\r\8e<\8c·øÑ\94\â\è*\8dF±@ªV¨Ô\98\b\9a­:\9d\ 3\13WªV`\82b6\12½]\81\ 1\88¸hX\98ñ\90\Ø\áF\ÆG\8a8a\n\Â\10\ 3²\ÛhN\12\9cc\90sÑ¿7´?¦\Z*GLn\83\89\ 1\ 4\96{^\ìm}k\9e®Y(\16I\16F\Ãs(\8f\8e\92\12\ 6\1dú\90#\×#Y·\ 1+\10{\ 3|2\98ù\ 4\8b&%hZ\8f\ÐOL¾\9e~ÿ\0\Þ:\ÙvÚ\97-\99¯ô\Æ\Ä\ e·³ôE¾\Í;=ª¶\8e¶!\0\ÉDZõ\ÐvW\Ï^¾\93¶Q\ä\"\ì\94û5y\0\Z\ 3\ÅG\ÇÙ\84\97\8f\12J     û]ô\ÆÙ¥\ï½C«·\86¸\90T®¿\Ü\Zú\9d³iR.!-:eZó_\8f²Á>û(qÔ°J\ãd\87ýHøqyaÿ\0\È\ÎT¬£9\ç¥ñ\Ç\1c\Æ/´Z¶Å¹¼¢\ï潩\bD\8d\92O¬\Û\"f\1e4D¸\ár\86R\â³wDPm5\9c-\â\ä\Ó]P\ 2±\8f\9c>A\r´¤©+\Ês \9fÑ\9aôK^±_\Ðz\ÛA\ät\Çn3\ 6\97V\Â\7f)\ÉÙ\9a@\82\9b\1d.g\ e¬¬E0{©Hÿ\0.`F\8dZñøP\æqi7\1cªk\êñ\9f¦\\=\90\94\82 4Ä\85¢±×\9d\1dL\Øc\Ä\ e\97\Í+c\14\åª\Ã\1e\19\b\13\ e<l·\ì;F¿\r\b\ÊrV\Z@`\á\1f\Ð\Úyc\97\97\Z.\ã\Ö\7f9úS¡ö#d\8f~\Ö}oÕ\95\ë¬yk\Êß\85µ\â®   \Ö\nò\95\9c\'\å\15\ÉS\n\82g\1f\18ûY\8em?õ\É\ç\Ç\1cs\89ö\19%\97\86!¦\ß\1c\86\9c\1eB]e\æ]F[u§Z^\14\87\eq\nR\1c\94­9\ÊU\8c\ã9\Ç+\10\î7Vö7\ÓC\í\ 6\95\îκªJXúIy\Ùö9\Ú2\á\11ýa\ë«È\921\e\7f¯\12\vy\ÏÀ5¾\93W°È\9b¯\17$òD°E\81W\9aI.\1d\17f\16\"\Ê\íA¶µ\ÞúÕºÿ\0t\êKDu\×Y\í\Z\9c\8dj\8aR\Ô\f\ån\Â\v2\11\874\87\90\ 3¸±\ÞJ    \f¦\990\12\90ðf0ÁL<\Ò#·¢\9d¤#¥\1d\Z\í/j£\ã\ 4\99\9b\Òzv\Ùo«D\È!\Õ\Æ\É\\\Ò&\"\éAJ¡\87\19}Q$\Û$a\9a\95\Ã/4÷øõ\13ø\9cmϵXÑ\9b\ég\è`þ\8cv\9f±^¯wP²÷E\9bV\í\Øò(\9f»\12\93A´vNÀ\8c_\'ö4ð©\ÃA;\9da\14]]\Êd\ 2\ 5\Ì \12\96@\ e\10@¿gñ\9b\Z8\ã\8ex/g;3¥:y£v\ fc;\vw\8e\×ú£ZC.b\É>\7f\Ü\ëΩN h\ØHH\æ¾\ã&\ì\93òO\r\11^\82\8fm\Ó\å¥K\181\9bR\Üù\Æ\0z¿\Ø?Wý¤\'ým\Ö\Örü°ó`ó\ÞƵ±D\Ô*\97¾\éöZºÁ.\ f\9b\ 44µö.\ÃD\Õ\15)&\9a\ËÁZ\"ª\ç\901yÈ\90\ 5_\ã2\ìø¹e\94òǧ\e\ 2·X®v:\99r\î^*d\e!\13!Ü­£°;\1e\81¦¤\99@\Ò3±\Õ=\89?\'®kR\Æ\f\ÚFq\êu*¸\Ã\"ýÂ\880\ã-m*tQh\94\9d_M¬k­oR­Ð¨4¨Xú\ÝB\97O\85\8f®\Õ\ë\15ø¡\Ð,l,\f\14H\â\Æ\ÅF\ 23hdP\82\19\91\Ùm8J\11\8csÇ»y\×\n·oú»¿:½t1ø\Ê\Þö\ÕW-jtȬ\à\82\1e²\Ã\12\fe\8c1\Ô\ã( \Ê\ìªÁ\9c\10w\1dm·É\8f\15\86Ö¬óO¯§caYür\ß]\91òC\Ñ(±ô%¯g\íF6·XöÍ\9f+\8a\Ó\Û\Òa0QÔ«$]#cJ4\f\f§\îHZý&f\90:\Édפ3b¨\Í\r\ fs`*ñ\9b\È%IZp¤«\nJ±\85%I\Î2\95c8ù\Æq\9c|\ã8\Î?\9cg\1f\ÆqÏ\9e8\æ¢~¶S&½Sö\9f¤\ÞII\99(\8e©\è\rn÷w»s\11\ZQ\ 13q\Â$L\87¬\Ö%r\87\ZS\8c¨4\×j\0\16\e\88*8}\Íe\92\1f92(w\ 6\Ûf\12\12\1eµ\r\13\\®\ÅGAW\à#\0\85\83\84\87\b\98xx±Z\ 62*.86\Ù\10\b\èð\98d@\83\15¦\87\14f[a\96\Ð\Ú\12\9c}\9f\1c\17m}BÙ\90n\Ö6=\"¡°+o¯ò¿^»V¡­po9\86\Ük\ e;\13:\11\à8¼4\ë­ý\ë\1f*ün8\8f\9fµj\Æ`·d|\ÑÒ»\9a±÷i\ë.\Å\évâ\80\86l\rsºú\9bn\9c\12µ2#Ò\97!E°\Ñ*2Pú\ëgS\Ç!\91Z\92¦^ë\92 \e\14\Ò\ãÀ*\19\Õ2p\Ñ\a\ eþv#f\í~\Ïù½\ßÖ«\ßï·¤\86B\91/°j\91­\ÂU»)£¬©\13ö^ñ\82\84\1d\91Ä\89\92,y\18\a-`\0$|kk´×\9d\16:4÷¦¡¡ó­\Ç0\1f\ÖMj8\9fPߨ\e)\Ö\Ý(·ºY\Ò\0\ 4-yVQ\14\1d±Û\90&Eµóÿ\0\14¢@\8d>,\8f\Æ>\7fµ\87³\8fý\ã\99ð\ã\8e8\ã\98\15\90\Öc\ÆýKõ\8d\95\14\9c\ 4»?\8d\96\ám       a\nm3\ 5\×;sR\8b\8d$\Õ%Ô¶û\ã\83*\bÍ­L©Ô°\b\È\Êò\ÛM\á¼õq\È\1f«uúa= \î^ÁLr\19E\çª}\f\8fÄ\9aXRra\95]\87Þ±M\19d~4¡\çD\10\Øe-¼8\ê\ÙeᲬ6\97[§\87\1cq\Ç\1c\81²ôt¯\Ó\Ê\ 6\ÈTB³\96:\1f·)M\Ïa¼ý\88ýG`t¤\ã\91+w\1f\14¼0Ù\8d¶¯\åXCªoøK\9f\13Ë\8ep$Q\90K\Æ v\12Y\f\8e3\å%¦\ÒKã\88²\\\15\87\9f\Âpã\8c\8cá\85¸;KVP\Ê\Ê!M¥*yÌ«\9f\8e8\ã\8e\18ª-³ò;99¡\9d\r²ò\ÚrB\ 5}\Ö^xt;ñ÷¥\97^\1d\87\1co\19ûV¶ZR±\9c¡9\Çg\9fÿ\Ù',5,1,'','','',''),(15,4,0,'9305bf00c3cedc12','24803714715bf00c3ced9f6942163975','2018-11-17 12:40:28','2018-11-17 12:40:28','','','Profile Photos','person-300.jpg','image/jpeg',48,48,1488,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b        \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0   \11\12\n\13\16\"\151\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿ø\17t\8f,\ëiý\Çh\8c\98Nq\87\ã%\å\â\Ò\15,\19\10?¾e\ã³grF        ,¼¹Á#\90Ú\95\8a\ÉH±\ÈÛªpVYjm\9f_HL\80Ù¤\Ónj®ª\Ñ\0·r¯¨3_\Ä\ì\16\9aúM\Â0\97\1cn:zE\raĶë\8d\90\97YoU\á\á\äGü\87»\17`q\1fªN\89Ú\9a\9eL\È\r\99oMgKSm\11ϸ$\9dLÝ«*\9aìµ\9e$ƾ\1e\ 6n\12°©\ã`\8faH| ¦\ã\Ìa\Æ\Þaµ¦{~\'>»(:\v\84+½»j\82\ 6o£û\ f6;+\×Ya\9a>\ÃU\ÔaZ\ä\á«\15H\99b\7fqc1oz\vùý\95\á\ÝiÙ\82%a\86\93\19\81\ f\7f\90]\93\Øo)s\é^\Âx[©-4й\é\Ú\Ñ;\9f\9c\çjT[\8e³ºP\ålQ\Õ\â- \ f-\\v\Â$´\19\Ó ½g\133N\86]c\a\ÉF¹\ 6|J\9c\90 ^¢»ñ¿f<\13¥:Ī\àu\vm¬Yª¾È¬Æ¼óñ1[\Z\8d,EnÖ¨E\93òSpRÆ\86\99\èAKp\82Á\8a\95\10\"K5ñ\Öcô³\Ã\Ék\î{\85\å=\8bz\ä\è\8eeª¬Vö<\Ä\b\17}O\93^À¡\91³µÔ\8b\16Ê\9c9E\ç\å!\rf*9ʱ\'9\854\13\13n\14òT\Ó+NS?Æ\87¥!ö\87­j\a5X\Ä&¡\Ñ<1)d\ç-ù«¦\Ø\\u\9a£)_¶\Ù]¨\1clQ9Á\8d\891Y\ȸK\8d!¬\Ø\á¬`5öÀ\18R¹_\ä\Ï\Ó\16ñy\ËPú\ÍÒ°     \9c\1fh{\ e\17G\Õ\Ï1Ô\8f        P¤\Å\Ü\é\ 4Û¦%\1dú<\îU0ü\84]y?¨gp\1c)vI\7fº\v\8c\ 1\92«Ï¬þ\17§ú\à\â­\'\È\ÔùuY\7f\88\"I·Û\94Â\85þa°\ì\ç\91a½YX\11j[\81G\Èؤ\r\Ä0\ e¸\ë B³\1c\13\Ï<\è\ëuo\8f\9c«y\îj\1f:é½\9f½ö\84¶!5\Ù6\ 5¾O\è§\\\1e\ e³\16\88\15\84|¬£\8a\12<Fñ\97K9ñ\Æi9q\Ô\ã2Û\8eµgKw\14\14\'c÷-\Ç`k\ÊF\Ï\1c[§=ð®»·Mkú\1e´\ÔóHÄ\9d\1e[ \äjf\ÆZööß²WÞ\89\99±ÁX\'X U\1d)øF©87&$Z\99®4\86\9b\Ó\äX\Ì\Õz²\81®Î¸\98Ü\8d¾F\9dS\84¯\É\Û$Zp§Z\90³\ÉF\ 49\Ó\ç6\é¦8\93%\880\9c8Y+Ã\9fg\Ýʧ\7f³ÿ\0[ò½´W0\îý=x\82\Ö}g\ÄÛ\827sh\vU\Â8\Ù]}<ú\ f\86&Ñ®6HQ8ÿ\08\9a\9d¼h0YT¼\12\95/\ 4c\b0Q\Ìe\Ò\Ä}\89\Ù}\88÷6P«[\a«5%·ZR\Ô\Ìx»;i\ÑJ\ 3ljmO*Sì\82©;\81\Ðj\acFk\Õ\18\ï\ís`\99­\19¯W#s\89\v\ÉUa[yô9q\92q\ÓQ±ó0\ç\89)\13,\b\92qrq\ä4X\121Ç°\ÙA\1c\11l-l\12!c:\Ñ\ 3\10\Ê\Ö\Ó̸\87\eR\90¬g3§Û\86»\7fmð.\Þ\Ö- \97\99½\Üù¯((­\å\Ç\ f¯\Ëôö\9a\12\Ë\Z\âq\8cÿ\0Õ\92¯¹&\ 1\Ê\Î2\86\Ã!õ¯\19BU\8c\Ñ\á\86\1c1\Ø\10FZ\18QYha\87a   i\91\Ça   i\96Ym\18\ei¦Ò\946\84\ã        B\13\84§\18\Æ1\8f=¼<\Ï\Ûj\Ð\17\9a­\96\93k\8b\ er­p¯\Ì\Õì\90²#¶T|¼\füq\11S\11g\nòV\É\ 1\9f\1eY\ 2\92éSn²\ê\ÛZr\95g\1e#\1e©«S´¿]ü¥K±\99 t¥7Y·QýÒ¹w\'·\eX\9e\9b\83\82   ü¾¥»ÿ\0\9b\ 6\ 4tsXR³õ`VÒ\9f\84ø\êl\n<VÅ«\91T\9a[­Ç\93)Z\96Z\Ø\Âr\æ     «Y¡\íQÿ\0\18^2\9f\8c\ÈB\8b\85ü\ã\ç\bʲ\9f\íñ\æ\Ï\Ã\Ã\Ã\ÌVº£E\ëjd%\"\15\×Þ\8b\81h¶Cp\9c\ã/e²¤\v\90RW\9c\7f¿£\85­       \Ïû\Ê\12\9f\9c\ç?9óÿ\Ù',6,1,'','','',''),(16,5,0,'9305bf00c9709025','12966450605bf00c9708ea1748285071','2018-11-17 12:41:59','2018-11-17 12:41:59','','','Profile Photos','person-300.jpg','image/jpeg',300,300,11007,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b      \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 1\ 2\ 4\ 4\ 3     \0\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b        \n\11\12\13\14\15!\16\"1A#3BQ\17\81\82\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/ñ\1c\Ü3\19\Î\"u\ÝOX\ßGøX³õ®¦q\æ\çÚ­²/\ê\91\1f\7f+òxß\8c\â[VJ$<Fuݼ  \17W\95\93\9e\ÖÈ\81}¬\Ô\Ú\ÖË\8c3\18$xI\bò£{\Ì>°\1f+\\\81c|\1e>o\ 6ðö©b_j\8a\Êm\0»&\ÑQ\17\â<\àE\Ü-­A\89²Zv½\í\97\12\82£\19\v\99\1c\91É\8c\18\87Ô\8f.y\9fò¡\Í\ÒM+z\ïGa\ 6ò\Êü¦\ãJ\Þ&ñ£\83\9c\àQ\87\'\8eÛ«\Í|0³\â&G\91(\ìp\Æ<\e\ís0\å\æz\87y|\9br\16\ËS§h]\Â\ïnñ¸\ßH|j=[P\ì\17`vm\96\æPÀYE\8fSGM·M´±\90\Ø\Ñ\Ï$\82\87\14\Äh\0S9¸\18\Þ\ìJ\ëÇ\87L}X\1c¥IQ´C\í¯$õk\8d®gDÌ\9b\ eÁ\í:öÕ¼J¦t\\\1cWU¼u}A¶\ÚL\ÈJsC\ÍV\Ñm©Ø\82P¦b@£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8d\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)AT\É2\Þ1>CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ð\ê9\ï¶WPKúg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ekþº\ê8­5½\84\ç7\ã\11ð`\Ý\12\rf\9d\ëòa\Ü\ß#\9b\Îw^\Õs\15\Þ\é\16\1d\8c\8b\1dc\8f\9ej^2\Ñ\Ü|\Êö\ e¥¦\82AaB\ÄvN\9c\18\Óg\16\Ê\Ü1¦Ê\8b\8b,\Æ3Å\9c\vE!_\11\1e\9d¾\Úù=\97U\É;\0\'uûª\Ù,)E\åý¢£%´\ß\"6@M:«\8c\fQH\94Y\15\8f¶Y\Æ}\14b\Ù\ÓÏ\85\af\83ú\88\á\Ù_\ãÿ\0\ÄOEüm\ê1):\í\Ãt\ 1\Ü^\b¸\Øy{l\85\ fc\å\1d\96d|¸ø4Í®|r\ØÅ\86\19Ç\9d&ª²\19\87\Z\98s\8d\n\ e[\17\â\Ìl\Ñ\11\11\11\11\11\11\11\11\11\11\11\11\11\11\11DGÔ\83\ 4\'B\èlzu\Ô\ÛJùý±\Þ(Iü]¾\bµöu\Ü\a¬\Ù\a\ 3l\ç@~d\82Ç\90­BR7[¦\9c\ 2VÕ¼\12®6`\1e,\18z\Þ\×X®×µ\ì\Û\Þ\Í}¹\îwÖ»FÙ´Zͼض+ɧ²·º·²;\äα±\9d%\ä<\99RNG\90¥#ó\9c\ç>\Øön1\8c|\ flþß·õýñÿ\0¾=ó\8f\Ûþx\Î?ù\ÂüSÁôóúg\83¿À\Ó{½\äKI˵\19\8f\7f\Ã=k\Ùa\98\8dó\Ë\à\î\1c³S(#x£\ËkY&\9bN\91\ìø\Ñ\1e97\83m\Éñ\ 3\86\8e\8a\9bY§®\×õÚ¨\14\94u\11E\ 6²¦²(¡@\81\10\8c\11b\81\8c\10\86\Ü{\çÙ­\Ç\É\ÙsÝ\9c¹\Îv~²\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\Ô\ f\9b\9f&\Z\ï\8bÎ\8do\\\Ì9A/0\î\9f\7f\1dp\ e¸ö4¤º\ä\9bxF|i\ç\ 3\äC\Ã\éuXm.Á°¼S\ 34Uq\nú\ÑÊ\9føñ\rM\ï%rVû\Ì[ö\Ù\Ê<¡µ\Üo\1c\83½]\ÌضͮþVe\Ú\Ý[\Ï\'\Ìòd\13Ù\83\10\Ø\Ü2<8QF\b\83\Z¾¾4X1£\Ç\17G_¹\Îsýsý½¿\å\854OKW\83¦v_x¯ò\aÚ\8d3\ï\à~9¹\11¸\ f\89\97\Ç\ä\îB¥\962¿r²¯\96\1c\0º\86©!£ý\b¹t·\Ù\ß\ 2D\ÌE®\1du\1d¼\ë+@\0E\0cF\b£F\8c\11\82<p\r\81\ 4p\ 5\98\18\82\11\r­\18\84!µ¬\18\ØÖ±\8cn\Z\Ö\á¸\Æ\172\"\Ã\î\é÷Ç«\Þ>8²72ö·\91\99\Ç\Z\14Û\81\ÐÁ±e%\Þ\Å>\ÂÔ\81q\Û\ 6\97^\83cog/\ëo\Ë\11+\áÉ\98\æe\Ædw\80\12J\18ýów¬OÅ·\1eGi¸\9a¯\9b{\ 4oq°\915\í\16Ï\8f\8b\87¼\8ec\9e\"rL:\b\8e!ü\n÷\90À\91\9ce\ì\14B9\8dû1f\'­Ó¨/\95\86O\égdcBù{fDM»\8c&\Ê\Ã=ñüØ\86k*ñe\Þ\Þùø~v1\ï\8cc\çûû\ãi\Ü\a\8eð\é\Íó)¨\ìû\e#\86¶[H®<\98|½£nÚ\96¹VV\ç\18üi{\ì½}º\83I\9c¼L\ÆKf\f9\Î#\Ùò\8b\1cò\99¿\8dKrÔ·\Ú8\9b6\91³P\í\Úôö1ð\îµ\ËXW5\87\Ã\Â#á¬\99\0\Ç\aÙ\80\9cDx\\ü\14m#>\Æ7.\Æ\17eDDDDDDDDDDD\\d \Â2\18\Ä`\84&<\85)\1f\86\fcf2ç\90\8fvp\Ö1\8d\Æ\\÷»8k\e\8c\ç9\Æ1\9cª\8dýM~C\ì»\Å\ä\7f\7fÒµ\8d\91\96|\13Õ¢\É\á¾9\8dUg\99´\17{\1d\\\92\97\90·v\83\965\9c\Ûò¿U,SH°\f\9b&B|\"\\X\Ä\Ät\Ñl{\Å\17\8f\í\Ã\É_vø\8f¬\Ô\f°\85ª[\Ú;då\8d®$RH\ e£\Æz\ë\7f?a\9f!\ã8\v\1c\Öùdmf²D\7f\É<+\e¨ön\85&\15|\Ü2\é>!\âm\ 3\828\ÃD\á¾*\Ö\ëõ\ e9\ã]f¯P\Óuª¨\à\89_OEO\1d±¡Ã\8d\Z0\Ã\1c,k[\97¹\80\bC\82=ÿ\0PDÏ\8b1\èè\88¼G\9fz\×À=§\Ñ$q\8fcx\7f\8fù«@\93 3\v©ò&·]²\Ó\âdr\f\Ñ\æ\ 6\931¥\Ç8A&<\98\11Á*<i\"#\ f\18\ 4\1c\12<¾zE\e§\Ómý\81ñ\8fasm[Z\ 3]\Þukn´e¥ À8\Ã|\çqf\áa\98§x\0\èÒ¦c^Ú¥Ø\9cųdxW\15\95µ\7f\ 2Àú\æ\9a\ã\\¸µ×¶\Z«*+ú+)\Ô×\94w0eU\ÜS\\U\Ê,\e:«Z\É\Â\ 4\Ú\ë*\é <9\Ðf\02¢J      c\È\10\Ê7³\1f5lw \ÞW{Á\ãsl\87\9ed½¨\Ô]g\1e\Ãb\â\1d\8eD\8d\83\8aö¶\ 4\92\nX\ÖZ¬£\àu¯\96i\19\912~ºzk  \Ò#\ÃýJLè±\9b\15Ö\88ømó¡\×?-Z1ªj\Ã\e\89»5©\ÔÇ\9f\È<\19oi\1cò\n&\84X±\ØxöqH\É;V§\Z[\9c<\ÊtpYÅ\8c\èç²\83\f¯\95\Z\ eò\91\11\11\11\11\11\11\11\11\11\11k«\Ë\'nkú9\ã׳ý\8e\96\18²¬5\1e7µ¨\Õ`L\99\9a\è\Ö{®\å\86\êz\8dc\ç·\ 4$2X^\ÛÂ\89\14\8f1\ì\9ah\Þ\Ð\ä·\ä\'RI.\\©ò¤Î\9d&D\Ù\Ód\Z\\É\92\ÌI2¥Ê\92G\ZD\992\f\98ò\ eg¼¦1^ò\14\8fs\Þ\ç9\Ù\Î\7f\9d\15\9f>\8fÿ\0\1f\8f\ë\ÇKv\Î\ã\î\95s\àr?o¬\"g]\14øò\"~\1f    \é²d3N$a\92L\98\93#\ìöò®6\90[\Âd\12J\85>\rm\84s\12\9a1\9b/ôDDE\n\1f\81º®x\Ñ6¿!]M\Ó\7f\1f\9c¸ò\8f\16\1c\Û\Ç:\9df^^Z\Ò\êþ86\ËUI\ 1¸|\í\ëW\86\19¿¦\Æ5\Åõ@3NøÖ¿\8dE\8a\n\ÙQ{\ÏY{+\Ì\1dB\ç\ e>\ì/\ 4\í2u.I\ã{\ØwtÓ\86ù\19\81`8\ç\19&P\ßD\8d&!,µû\90\ f0\í`¶Lc<\ fû\áJ\85`\bs£\\÷\ã\13¿\Ük䣧\9c]\Ù\Î<>#\Ë\Ø*\85Q\ÈZ¹³\81\Ø\éü\8dJ6AÛ¨¥\ÆpÀV\Ç\r\Èff²cA\886P°\ÉUr\'@pf\9b`\88\88\88\88\88\88\88\88\88\88\8a\">²¾r\9d\Ç~6xó\88\"·\ì\8d\ØNv\×\é,\9b\8f¯\ e\f^8\bù\14R²\ç7$È\99\1cW\fn\Æ\1cI\81#ð\ì\a\19m^¨½s\808®W:ó\Ç       ð\8c\19\99®\9b\Ì|¹\ÆüW\ e\fis\ 2W!nTÚ\8cy\98\e²Ö\931Kn\Ã\á\8e\Î\Zü³\ã\9c\19W¡p\'\10\ë\\\ 1\Â<GÁúu|\n­_\898\çN\ã\Ê8\15`\Äj\è\Õú\9d\f\ZP¶\14v°m\ 4\1eH0´c`\Úü5£\eq\86\91\11\11\17\ 4¨±§F\91\nlpK\87,\ 6\8b.$ \8eDiQ¤\r\Â<y\0+^#\0\Â{\Ä`\95\8e\19F\ç1\í\Ës\9cf oQ\ç\8eAøóò+º\ÇÓª\Û_\Â=\8d\ 5\877q;\07²\rC\î.$\83y\ÓÀC\Ë)\8eú\r\8dØ´÷\f\98\10vj\êJ\98Ù\8dS\97-\ 3¢\98ߣ\83º¬\â\ e\êò\'P6\8b\93\aY\ìþ¤[\8d\Z\ 4\É\ÙmdnL\ã\Êù\Öó\85W_òù\16÷h\Ôã¹²J\11\13\19«\ÔpI_Xa´Ã³u\11\11\11\11\11\11\11\11\11\11A/\Öÿ\0±7\1cC\Ð\ÝK\f~\1f\9eH\åÝ\8b$ùg##Y¬k5\8df[ñökÃ\97½\Øv_\9c½§v0\Öü3\97\×v\8a\96\8e\0Ô¹÷\Ì\1f\v3p\16d\Â\á\Ý7}\ç*¨\8e\10\äD\97°\é «¯¦\14ø\Æ\ÆFx¬\93±þKZ\ïò¥\82,\8f\89>\9f¨\96\è¢\"\"\"(\90ú\Äú»cÌ\9e94\Þm\Öi\"J¾\ë_0\Ó\í{\r\88kA\"\è\9c{²\Ó\ÜjwUÌ\9b\87\8aX*\àZ[\Õm\133\9fÉ\8a\10\Ò\É÷\8e\Â\Él\81\ÕÊ\8bcþ ¹²W^<\9ct\9b\95aG$©5\\ó©k#\10¾¯\93q\ÉN\93\ÆD\90\e8\e\83\10[\83\åHc¾_`\ 2F5\84s°\Ç]²\88\88\88\88\88\88\88\88\88\88 \Ë\ë}×\82N¿ôOkll~D^b\åMxòÿ\0\9b9úg\éT\96Qcg÷\ÈÛ\8c¾¶aqí\86½þ\Ùùe\Ø\ep\Ê\èQKOÑ­­Í\9f\åKs\Ú\18\Ñ\æ·]\ê\Ç%V\Êv]\9fµ³ö-£B}~\18Ï\8e[\91º5%§\Úÿ\0\9b\\\×4-k\1f\82=ô\95\11\11\11\11jK\Ï\r\\K_\ f~BE,\"/\âu»w´\8e\â1\8fp%\Ö\n<À\189~3\91\97\19\16G\87³-~XB\ f\19ö#±\9a]\11f_\8e½#f\äNút\ãS\Ô+Mk{3²\9c7b(\80pZF\×k\9b\Ý&\É{;ür    \8e\1d]\rE\95¡\86\×8\Å\f7\8a0\8f!\â  /-DDDDDDDDDDQHõ\85p\94\ eDñV>V\92,\96g_¹§\8f¶Z\×0\87\97\83Æ\92d\11\82ö\19\ãb\1e\Æx\ä\14\9c¸m\91&)\Ø<\98# ª¾E.OF\86\Ð:ÿ\0\'Ü\87©<Y\Ëö^±\ï6\Â?³>#v±²\êBp³\9c\ç\ç\87\18{\ 3\È\Ü5¹nq\1d\ß<·8g\Ê\ÑDDDDE¤/Q\8f/jüE\á׺\ f\Ùl\ 5\ 4\9c\8d\19\9d}¯~rY[\ 6õg\ 6¦º0@\Æ\10¦Á\ÊüG#\9aÖ\8a3O\89\12\n0\8d\Ù\Í8\88¤½\éE\ê¾\ÕÏ\9eXøÓ\95\àÀ;ô®ªkû/*í¶¸|lÃ\8dm{¯]\é\ZuTÁ;\ 5\99\97\Ù˹µ°\82x\àh\ 52\84C\9726dF\14»f\91\11\11\11\11\11\11\11\11\11\16\1fwû¬Ô\9d\Å\é\87dz\Õ|\É?\8b\1cSµk\90\8f\ 20$\ÚCº\Íy&\ÑK¨l\81\1c\15´X\98\84|\80ÿ\0I]\87f<\86\96\8e\8d·U\Øt]«f\Ò6Ú¹\14{V\9d°\\\ê»5,¼\89Ò©ö\1d~\ÆME\Õ\\\9c\80\86\ 6dW\ÙC\93\10\Ù    J,\90.\È\Èö{;=}I\ 3Ò\9b\ÍZ\Ï\ry\87\âHû<¦D\1f/q¿&ð\í1\vó`]}°Á«\Ø\à0\Ò07\86+>½JI0YN\bJA\8e\eL\Ù\12\80\×\Ûp\88\88\88\88 /\ëUî\8e°Z\ e·t+]\9f(\9b\8c}\81\9d\88\ä|@²È£B\×ñS±\ê:f½{\\\Ç\b\87ýVtÙ»$\ f·\12¡<\94¡>q\1el\09õ÷¢¶O\Òý\âògAz<\1eV\å-i´ý\8c\íg\é\\\81¹2K[\9b-g\8e¿\15\928\ÛG)3\ 6¾P³\ e²[\ïí«§6~+ö{»\ÌU\Ù˪<b\92\88\88\88\88\88\88\88\88\88\88ª\86õVxõ\9f\Ô?!\97\1c\ëªT\Ìo\ ev\æ#ù\12¶h¢\ã\15:ÿ\0%D\Îk÷MQ\8f\89\r±`2X¢Á\Øk\ 3c>E½Ä\99;,\æ\fpa±£\8c\ 2÷n¯s!ú\ï\Ù.\ 4\80f\Û8\á\îa\ã\9eH\97\1e\88ø\8fkaW§\íµ7\97\15\11\1e\éP\84÷\\\ÕB\99RX\Òe\ 2\1cÀM,I¤\ÄC\99^\85\1c\8f®ó\ f\18q\ç+\êR\813X\ä\9d+X\ÞhdF\94)¡}V\ÓM\ e\eq(8À\Ì\á\ 6cDW5¬\Î\f7µ\Ìc\9a\æc\Ð\11\11\11\16\17wó½|\e㳬ûÿ\0eù\Þ÷\15ô\Z¥iY®ë°\9a9[\1eõ·\Ê\Ãckú\96·Zù\11s.u¥\99\âG9\Þxð\ë£\15ó\'J\8e\16aΦ\ 3»=·\ä\8eôv\8b\98{MÊ\99d}¯\96v\É\×Ø£\8d2L\Ú\ÍV\97.úhõj\82Hh±\88\14µ\Ã\ 4|¾<Jøó&\æe\93+¡>q#³\15\ÔÁ}2þ     ö^\Úr¾\9fÞ\9e\Ë\ë3j:\Í\Ä\Û\1c\1d\83\8d5KºòGÿ\0\8d»µS\Ù2®À\8c\92&\95\Ú.½\'\11\86hN     \îm\a\ 2SfÇ©\8a(\Û5\9d±\ãÇ\89\1c\11b\801¢F\b£Æ\8d\1cL\fxñ\ÂÆ\8c \0FÖ\8cA\10\ÚÑ\88CkX\Æ5¬cp\Üc\v\99\11\11\11\11\11\11\11\11\11\11\16¥ü\Òx\Þ\Ö|\9ct{\90¸@\Õ\Õ\î\å\1dxF\Þx;c\96\ f´ú\Ï#\Õ\Ä(\á\Z91\9c\141í¢¼µ6Ì\8b\í*}T\89Uc#\198¿*i9\e\8ew\9e\"\ß6\Î1\ä\Íb\ÛKß´k\É\Ú\æ׫\Ý\Çü{:k\9a\â\ä2b\9d\98s\ÄVg8i¢Ì\8a\9f\10 \9d\ 2L\98r\0rt¥h\87¤o\È\ÕOcºN~\9an\Û\14ù¼\ÍÔ\87\8e\9cv\Ù\10\Ùi\ÂWg\91\8e>\ 5\1eE\Z4c\aQ\1c\e\r`\Ñ#\92U\88b\ÖG±¶\18±:4\Û9t\"\"\"\â1\85\1cE\91 £\0\07\98\ç3\Ú \84\"n^B\94\8f\ËX1\8d\8ds\Þ÷»\rcq\97;8\Æ3\95Qw©\a\Êv\Û\ä/¼;\87\1e\13£u»¬\e6\Å\Æ\Üc­±\ç\87\ eóg§\98Z\9d\×~»®ø\8c2n\ fo\1eÂ\8a\9aL\82Z6\154Y\12)g\86\ 6\Ã&.#º·\ë\é\íñ-c\å\a¸õ\99ß©§c«\9c\14J\íç\9a­I\1f\ 3­\Û   \Z\Â\17\è¼U\ 6t\8c\ä$±\Ù\1eo̸\14x\96¹\8b¯\Å(,cB\15\Ü+\ 1\ÛǪj\9aÖ\8b­\Òi\Úu%n·«\ëu±ª(¨ª\"\8e\1dm]t1\àq\âÅ\8e,a¬c\e\8fw;?\"\14\8ey\8a÷\94\8f\ 2\"\"\"\"\"\"\"\"\"\"\"(Jú¦¼\eç\9eµ\e\Ï\"\9dY\Ó\çYs\86\93[\15\9c\å\Çz­s\åXò\86\99\10¯\É7*ú\á\11¸\9f¶\êQHi\12\e\fO½¿©\1ei£G¿\9a=n¾¦·\15\9d^7{\Ûɾ8{}\Å}§\ã\13d¦Ô¬¿GÞµÜ\8b\ e\é\Æ7\Ò\"\83w\Õ\b?̯\Ç\äέ\vfS\14\93C\166\Ã]Q*Às+\83.\ 4«£ºµÙ\8e\'\î\17\ 1ñ\9fc¸Ka\8f²ñ\Ï)k5\Û%\1c±;-\97\ fóc\8c²*.!\15\81\9bUsZW\æ=\85]\94XVQ    \8c6\\(\ÄwÕ\8c\80DDZøò¹\ÏV\1dgñ\Ç\Ü\Þg£°\15nÕ¨u\ë\94\ f¦H.3\ì\í¾N£k\Z\80m\Î\Z\ï\83ó8\8c#_\î\Ç7\ë\ÎDü\e\ë÷¤^lÙ\96S%\Ø\ØË\93>\Â|\93Í\9d:i\Ë*dÙ\92\8aóÊ\97.Q\ÞóÈ\93 \ïy\8es=\å1^ò\11\î{³\9cÿ\02¸\17\Ó]Ó\8a>¡ø§\àS2­\Ðw¾\ÂÕ\83°\1c\91&ma*¯\1dq¼A\8aZ\8aKȦ\18M\89Z¥\0`Ð\8bò\ 4\ÉL\8f\15\82\91\ìñýcß\9a\"\"\"\"\"\"\"\"\"\"\"\"\á0C(&\8d$\"\91\Z@\88\13\80\ÃaB`\95\99\19Ba\13\ ea\ 6F9\Ì \Þܱ\ì\ÎZ\ìg\19\15Uþ¬n\83pwM{Ë£ò\'\ 6\82\9fZ«\íF¯¶r\16\á\ÇT\Ùcck;\Å\r\ÅL{\Ëö\Ä\e°\Ê\Ön\å\Ø\eb\èb\0\86i\90\98\92¬ml$\92+ªk~\8cN\Ós\ÜN\ßr\×P\99±Ï´\ë¥\ç    \íü¿+Z\9e)3!ê¼\89®\ì\ÚM=t\ê\19\99\'\ÑPÍ\8e¿a·Í­c\86ö\ØI®\14ø\1f\86V\Þ:\Ò\É\ÔDE¡?S\r5\å\ç\86þ\Ö\ 2\81ò\a&\15n½s=ñð\ì\ç\14t¶ã²½a~9Ç´sUF\95\1c\ÙÏ»p\Â\ç.\Æp©ó^\81\ÄôU\ÛG)ñ¦µq\14\93ªv.@\Óh­!\b¤    fW[\ìuµób\8cÁx\Ì\"H\8d ¢a\ 4A\94n~\1e7µ\Øñ|\'\1cUWQñö\8fOQ\b\95\9a\8e»\n\f\10        \80\14X\Ñ\êb\fah\99\8c5\99kqü\Ø\Æ=òÿ\0\96]\9c»9\Î{¢\"\"\"\"\"\"\"\"\"\",h\ì\9fqº¿\Ô\1d*\×\7f\8f8q\ß\12ku\ 3\e\8e]³e­\81br\Èoý\Ê$\nw\1f6s%\Ø\15Â\8d\ 4@\8a\ìH\95\"0\Zü>@°\èÀög\Öm\Ðn2\94zηñ\ f.vlä­\90h[\ 1XN\1dÕ\81f\Öe±\âY3v¢.\Ñô¼ùÁ\1eX\Zì\96º+s\9c\902\1d\80·T\ïõ]ùt\î\1e\Ì\ÍK¡}\Z\Ôc]\nª%­v¿§\ïÝ\8e=@¯\nh4ä·±­­\Ò\ë5Xò\æG9\1f{³`t\Ì\fI\ä\'\âÆ\8as\Æܧ\ 2\a\Õ\Ë\Ì\ï\×%r®\Ï\Ñþ³j\eH3úÜ­\97F¤Ú·ý*,\98\Ç\ÃJ\Í7Q¸²\8f*\Î<\9c\ 4F\8c]\Â6@\'\92dcJ(C\ZO\9eXúL¿\í1\Ë3ùÿ\0\É\1f\91>i\íg/\\}\ 1¹° \Óhøö\82}dF\Êe}\1cxN²¹\95®\Ò\Ö\æK\å\ 6³R>¿\0¶r\'X\â$bO\9c9Y\ f\a\17\âN<`\8av±\Ê\Ö\12\a\9cd²ó\Ê[\ÔWH\Æ=½ðð\87\99\ïûû\äXgõý½½\96\Ýú\ f\âo¢^4!m\82\ê7\f\8fGºÞ\8b\1dûv\å}³\ì\Û\Î\éy\Z\18\86(5gض»K9q)`¹§\93\ e\9e·\10«£Ì°´\948ø5\94Ç\9b\88\8b\r|\88p\\\8e\ÍtO·\\\ 1     ù\15\87,õó\94´Ú²µ¸{\Ãoi©\Ù6 ÁfXL>@l\99\14\91\9a\æ\å\8e;G\87û79v(\é\Øh.uKû\Í[c®\93O°kW\16T\17\Õ3\19\81Ì«¹¦\9aj\ëJ\éL\Æ]\86I\85:1\ã\1d\98s°Ò\89ø\Æs\8c{®\Ñ\Ä\Û$\1d7\94ø\Óo³~E[ªò\ 6\9b²X\15£!\9c84{\1dm\9c·\à!aJ\\°\11H\ì\fB!\1f\9c|XÇ»8no\89\ã\ëh\97ú\16\91{\0Ã\91\ 2\ëPÖ­¡H\13°\á\1e%\8d4)\91\8c7·9Ã\86P\99\8f\9c\á\Ív3\8c\19\11\11\11\11\11\11\11\11\11\17\9fò\97*ñ·\b\è[/(ò\îñ­q\Ï\1d\éµr®¶\9d\Ënµ\8bK¯\ÑUB       $K\9dca-\ã\b\8e\"\9c¯\Îs\96\ 4D&qð\eó\88    ùjõx\í¶\16\ 5\89\Z\8aª\14û­jó\Û\15p§M°\8e\8c;®#¦4\87\ 1\85\1d\8b\Ìjý\93b\82ú\ìb¿?\8fG³\Ô\ÚÅ´\f:õú\ e\æy+\ìlZ:\86ò\Çk;\1fȲ$f;lm¥\ì\Û\f\88Î\9eioc\ì\ï&\86£T\Õ X[8q\ 2y\94\9a¥)lA\ 2\13!bTh\ï\9d\17\8c¯GW\18\é\"Ö¹_\ÈöòþO\Ú~\8a\ëpõû\8f\äI¨\Ð\è\ì\Zð\Êü-\Ïi÷m¶\â\è\92c1¤\83\fUTVP&J¯·¬>Z¦w½y\à\9e·\éõ\Ú\a\ 1ñ\ f\1d\9bU\eñ \ë\Üy©R\ê\Õ\â\8fö8\ß\ 22ª$g\É\ÎJ\ì¿$\94ó\95\ÎöË\9f\9fl{{\Z\"\"\"\"*¢}Qþ-lú?Ý\8b~\ÆñÞ±*\1f[{o}o·\Ô\Ø\ 3.5f³\Ì\Ó2{®B\Ô\1c\838\82;\82\18\9bm \æÏ\97\86Ù\8a\ÑÆ\81_\14y\8b\ê·W\Ó#\Þ\Ú.\äø\È\â\ÍJM\85\84\9eP\ê\ìh\9c\17ȸº\9ayö¶\85\×\àE\97¯ì¤\9f8\9f\99mú\Í\ 4ú\ÙR\ç5\85\b$\9dµ\ç\9d*\Ê<\ì²Dh\88\88\88\88\88\88\88\88\8b\Æ{\ 3\ e$\ê\ç\10o<\ë\Î;\95^\89Æ\9c{G:ûb¾´3\19\86Ç\83\14\Òq\n¾;\9e\Ò\Ø\ÛMÀ^(\15ѽ\Ï$¿¶0Á°¥eK^m<\çó\9f\95\8eU¸Ö¨\ìnø\ã¨:¥Á\ 3\ÆüA\ZkÁüJ\ZÙ¤}~\íÈ\9fCC\9bk\ë\17\n5\98ª$\äÕ´\87\f/¤O\99_\10ñ±KÅ\97\8a\ e\Èù[\çAqO\v\Äf±¤\Ñ8\12ùK\9a/\ë%\Í\Óxæ\98\99\Æ~\Ù\ 2\8eX\8e»½\92\Ìÿ\0\áº\ìY\ÑO1\î\1e\r.\e\ f\1d\å¶W\Æ\ï\8aþ§øÀ\á\ê\Î0\ëö\99\ eF\Èø±ÿ\0\8ey\87a®¯?%ò5°\9a|\16\Ûaº\10~q\ÚgI\91õTV:5D\0\11\90+\âF­\89\ 6\1c]\91¢\"\"\"\"\"ž\åtû\84{\××¾@\ëo?j\Ðöm\ f}©,7¸Ák¬uûqe²)öZ)Xp\ä@¹£²\f[(\12\âH\8d$2b\88 \91\1e@\àU\ eùmð÷\Øÿ\0\13¼Ë\9dS\92`H\Üx[m°\92\Þ$\ç\Zx\12q¬\ì\à\Æ$\É\ e»xo¡\80£\Ý\â@\8eYF©3\98+hq¥\ØÓ¸\99\81y_GÖ¼DùI\å\7f\14]©ª\ç=\1c\136n=Ù¢F\Ôy»\8c\878\91¢\ïz.g2W\Î8\9eqW»hÖ\8f\93X\ë\12¬1\81\8c¦°®lʶ\Û\Z\Ò%À}9\î_\0w·\835.Àõ\Ïz«Ý´}¦\ 4s\95±\ f\8c[k\96o\1e\7f3_\Ø\ë\n\ÑN¨¸®\92\10\åÂ\9f\Z,\90Ê\8b&9\Â\19Q¥F\ 6T\"\"\"\"\"\"\"\".\19\12\ 1\14\ 6\95\8d\Z0\89\"D\89\ 4`@\0\ 5\8e!\8cc\11\18\84!µ\Ï!\1eæ±\8ck\9c\ça¸\ÎUR¾¥\Ï2·=ý\ì¥\Ï[¸gf´\8d\1e¾lvZ\ëcF!¢C\å.J¤\97\9aû\í¢Ày`_:\86\8a\14\88\9c\ßÀ\99$&»in\"\83\8d¦\ï\1c\1e;y\ãɧfu>¸pt\16C|ò\nÓ\909\n\Î)¤k\1c\80\Íý[iºh\89\1d\Ó\æ4-(5ýp\12\â\Ë\Ø-~¸Î\97WT\v\9b\8fz/Ѿ\ 3ñ\ï×\9d/®½}Õ¡\Ñ\ëz\Íl&^ߺ$q\ì[\æ\È8\íe¦ÝµM\162I¶Ö²ó\"[\9aò\90Q3 \83\ e\\\ç\98\Æ\ÌDDDDDDD^a\Ëü+Ľ\80\Ð\ï¸Ã\9aø\ïR\äþ?\Ù\ë\åU_j{\954K\9a\8b\Zù£úfF %\r\Î\ed\v\ÜEx\1e\"<Y\Èòÿ\0\83³\85\r®ùú38\17\93mî·¾\89óTþ¾\ØIi\ç7\88y\ 2²\Ç\7f\ãù\12\99\ZQ\Ý\n\8bc%\Ô]\9fZ}\9d\91D\Ñ:Y.iª!\ 4P¢Ô\8d\8et¡jc®~\ZýJ¾#÷\Öó\ fQuýco;\Ìh÷ú\1f\ZòÖ«»è»¬B²;     #h\ã\9d\Úv\95\ e\ÉÁlh­\8bh Á\Ú@\ 6\96\15|¬A\93g\10òo\êG\98ÿ\0$\825\16©\ä7\Äÿ\0.q\ 6)j\ë\àn\9c\ÇÄ\93\ 3»\Ó[]Â\8c(\×v`\â\ØE³\Ù5÷L\9d\87Í\89I_s¶\Ç\ 32xF¸\89ô\84\Å\É^Xõ\19x\Í\ày\91\âsmÿ\0dø\94S$f\14;Mû¨=\8d\×igNÀ]#0«-¦ñ\ëa[\Èh\18B¹µE\9aÆ°Fù?\19\110\ßO\ë?\9f_\12}²½f¯\Å\1d\Ç\ãø;<\9b\ 6\Õ\Ök¼¥\vcá«\9b¹\99\8b\99¥m\1c.P§\ÕIl\18ñ[\92È\97\ f\886°øÁ\Ü\èsq\elZ¶\ë¦\ï\10]g¤\íº\Î\áX\Ç5\8f°Õ¯ª¶\b,{ñ\9c±\8e\97S.\\v¹\Øk²\Ö\ä\98\Îp\Ü\ç\18϶WfDDDDDDQ\94õGy/\ÏFz\ea\Ãü{°¾«\9f»j\Ûn7\Ô Srê­\9bQп\11\ß\ÇÜ\85\\øv\15×\90\Ý[\f\81£©¾¥)\ fO´\ÝPº@\Ú\19\1fcj\83¨¨µ¿µ¬¡¡¬°»¼»°\85QMMQ\nM\95­½­\94\91C®¬¬®\86#L\9fa>a\83\16\14(¡,\99RJ \0O+\Ú\Ü\Ü\a\éöñEA\ã\v¥\9a\ì}¦¶¦_f¹\Î\rv÷\Ï;TH¾\ä\8ey/\993S\Ðj\æ\É,\99­¤Ó¨gÃ\83!\83ulK[\ÖX^\9a\8a®|\É\0nù\11\11\11\11\11\11\11\11\11\17\98r\×  ð÷=jSô.m\â\í\a\96´«Hò\"XjÜ\89©\ÒmôR£Kk\19,\ 5­½\8566E,c`¥3\ 3\Ãd     ¸\11°ñû·1dò?\é\18\éGeb\Þ\ïý6\9f#¨<\Ç(\8f\98\Íj\9c\f¸\à\e§cô¶~\eøó\ë\8d/Q+ \×I\89\\M2ú\8a¥\96\16¦¸º©¸0\9c\Ã\ÂSw\ f\97_O\97`\ì8\Î?$rg\\\ïo1\"\Ö!´\8d\92u\ç\ 5s-\\Ytâ°»¨\81i\13\Z\96\Ø\á:²\9e\ 5\84©ô\107\Z\8a\Ò\×0̬®¸­,\é\9døZõQq·poõ^µw\9a¿Y\àþ~º4\r{Fä\9a¢\Ë\ f\17rµ\Ù\Â\11\95\89Å\93#J\Û.,\1cX\15µ3eM®\9e\82%\Ô\ë;3Æ\831a\14R\ 4#\80£0\f6\18&\v\ÚA\14Dn\1e2\f\8cË\98A\91\8eÃ\98ö\ç-ss\8779\Æq\95È\88\88\88\88\88ª)õ@w\ eçµ\9eW9w\\l\Ç\13B\ë\1dm_\ 2\èq£[I\9dQ\'\159.˵lQ \19\8c\rE\8d¶Á°\9e®\Ô É\9d\'\Z\ä   \ 6\96A\85\93þ\92¿\1d\82\íOzfv\83\90)d\É\â^¢Àf\ËJ\ã\Æk\ê6>h´\È\"\ë\14\Åt\98²\à\Î\16·Q6f\ÇiZf\f¸q¨\ä\88\â~\19ó´\Ý\11\11\11\11\11\11\11\11\11\11\16\1c÷\93¢}rò\19Á\e\a\0vOG¯\Û5{&\1e^¿q\90\r\9b.\8b²:)cD\Úu\ev\á³*m¢´\99k\Ý\14\ál°{\84\Ù÷ÀJ\Z\7f|­x\É\æ\7f\15ݩظ\ 3\93\âO¶\Ô,\Äm£\85ùGðH\Z.N\ã\ãIpc\ÙW\Í`\99   ÷\94G\Î*6Ú\91\ä2\ê\ì\98\19\12 B\85kW÷M#Òµ\ç\ 3b\ç\Úø~;;Y»\92ó\95µ\n)2úÿ\0\È;4·>\ë\90u:¬}³4½\82\îl\8cb\ßo\Öã½­­\90w>\ïh«ú\ ea\Ú\\@Ø®eN\ 1\11\11\11\11\17\9có\ 6\Èm;\89yKn\8cwF\91ªñ\Öï±\82K\1d\96:9¨õ\9b;1\19¯\Æq\968O\8c\Ò5\Ø\Î2Ü·\ß\19Ç·º¡÷\90·­\87\947ý\ã\92ö\é#\99¶r\1e\á³o[<Á\r\Â\14½\87\9b\7fu$bs\Ê\á\8cöV\12JÁ¸\84s\Zü7/~qòͶ~\98\9ak\1dKñQ\Â\Û%i&\È\ÛûQ\16\1fd7ó\ÍÄ\81<v\9b}=|\n\Z¡Ã\90Bb\13)5ZºzÌ\8e?\Ñ\1eI#¾Ä\91Ca2y\r!TDDDDDDDDDDE¤\ï=\1e3u¿%}\ e\äm6ºª°|\ë\Åu\96\\\9dÁ\9b\8d\93õ\ëu\93¥\93R5\8f\ÖsF¢\Û\ã}µV¹\1cK        \ 2\11\9cJè¸\9cö\11T)\Å\\\97ɽe\æ\Ý\'\94ô³\Ù\é|¯Â¼\81Y²U\ eÀ6Usª6\9d\85\91K\7f\\\ÃV\Ù29dD\91I³Q\È,W˯5\8d<\æ´g8\Õ\Ü\Ý\ f\ 5/sú{\×~\ÏR´q\Ù\Ì\\U¨n6µ\8d<2È£\Ø,\é\â\9aú\9ax\à\94\Ñ\áÎ\81f\é\ 3<&\14\8d\8f\8c±£)\83\91\9c¹l\88\88\88\88µ»\æ\v\90\çñ?\8b\îôr-[½¬µN¹ò\r\95~>Ü\87\9búo\ãE\ eJÖ½\Ãi\Îv\ 5\Ï\Ã\1f\96\99\Ï\Å\ßùsK\ß\ 6\è \å\ ek\áþ4\94\ f\8dÈ\9c¥\Çú,\86D~G)\à\ÛvÊ\8a\ 3610\×\å\92\1c;\a`/\Ã\1d\96\93-w\Å\Þ\ÞÙ½\çC\Ó(ø\ëI\Ôô-j\1ch\14\Zv½Q­\ÔÄ\89\18Q\0(U\10A\b9lpÿ\0\867\15¡û\8b\97e\å#\Þ÷½\îs\Ý\ÛQ\11\11\11\11\11\11\11\11\11\11\11S¡\ê/\é\å7L<¯v\1fM\Ö\ e\9c»&\1fcu\ÈlÌ\92\1c¿:\â\Ú\î´Ç\92÷d\Äf\Ý\vc\94\Ö\Ç\14X0\83,5\90#2\1c\10¼\93Zônó&7\ï\17;o\17\æ9\Æþ\b\ìV÷¯}\Ç\Ër\Ù\"Þ \Óò+\1d\13\âW\ã\10\ÄKó\v\âA\84ß\9c\Ù\î\Ë^\17\0\8e\96ª\"\"\"\"\ÕO\9c=2^û\âS¿:\ílSM·\'\\÷¹\Ôñc\ç\ØDz­\83\89 \8e<e\ì\e³)¡$\\\à\ÙúÛ\83\åù\Ë\1cÆ\91\95_ø0\ã¸\1c­å³£\Z=\948³¢\Ùs\16\89\82ûc6N¯©\ì\Û\\\19DoÀ\99\Æ`Τ\8d8ek\1cð\12;\f<|\Æ\Õt²\"\"\"\"\"\"\"\"\"\"\"\"®\a\Ö\ßÆ\9a\ag:W\ÊUõ`\ 6\Ñ\É\1cC\Ê\Zö\Ëq\81\v\12¬ ñ\Öͧ;^\82\8d)#U7rµ,`\95\ÄÀ\ri0\83\Ëq%\Í\Æ\É=\11\í.:W\ÜW\å¹À\1d\Ú*V\8dþß³\8a\Þ\'Õ²f\ã>ß¾XÇ\839Ǿ}¾xý±\ïû\Íi\11\11\11\11coqµPn\ÝNì\8e­\'\ã\90\Ûp\97%       \ÍxðV\93 Ô­e\8cN\1er\Üg\ 6$v\8b.ýþ\1f?\9fÁÿ\0\1f\83ªmô\ÒÀ5\87\9b¾\89\à@!\99\ fk\åyò\\Á¸\8c\8e\18¼\ 1\Ê\ïi\Ì\æ\ã8\10ÿ\0# \vHLµ¿yB<g$#\Z\ë\89\11\11\11\11\11\11\11\11\11\11\11\11\14\13}p:\Í{¸{¡;\8f\Ó\ïj\1eJ\æMg\ï\Î\e\9f\85|\9d_Q´úX\ï\87É¿d\98\9f2c$ø¿\ê\16p\ÌdyvsGÑ«­Á©ñ\83¾]Æ\84\18òö®\Énó¬d\8cM\19,\rYK¯R\0ò\b\Ö\á\Æ b@\ 4F=ùs\9a\18\16\1d\861­l¸Q\11\11\11\17\96ó\94\\N\áNa\82ì¹­\99ż\83\15\Îo¿\Ë\18\91©[\879o·\ïò\Æ\1f\8fl{ûû{~\êª_I\æ\96M¿Ì·\ e\16F\×i\1cc\Ì;£\9eO\97ò\8e&°\ÊB\á\99k]\9c\10£¿p\19ûa®\É~\ esX\ç;\16\Ö\"\"\"\"\"\"\"\"\"\"\"\"(Lz\Ü\ëp^\9eô¾\ã\ë÷\Ì\1e\Ê\íU¿w·ù\7fªñ}´¯¯\åýqöþ\8b\87{\7f\7f§\ßý8Y\á\é\12¯\Ä?\r:\14\8c\ f\9bny\ç\8b\f»ÿ\0[#\Ùa\Õý\9f\1f\15¸\17÷ÿ\0+úÿ\0lI\Ý\11\11\11\11um\â\b¬ô­Â´ÿ\0\äXj\Û\ 4\13\7fõK©\97\1c\9fþ     \95\\G¥+\82\ë5\8f4\9d\Ç-?\Ø\n~\ 4Ò¹Ã\8e*!·ù\82\Êû>Y\ 6¿\ 1\Ïq2\ãý\91ai\í\0½ß\9fv\È7\Ûò~\19\9cY@\88\88\88\88\88\88\88\88\88\88\88\88¢¯\ë\ 3Ñ\83±x\9d\9b·\9a\e$;\8f\8c§F\92\ f/\81\'c\Ø!\ë\9fhð\ìý\8d\É\âL\97\19\es\ì\Ò\äosp\\a\Ù3\éu\Ñgh\1e\18z\Å\ 2Àoa¶\e\1e\82\ç³\á\93A\Ý÷«\8d\96¼\98\Çú\98\ØV\0\v\1fþ¶        ¹R\ fDDDD_\à\83\19\86A\14l(\8a\f¢#Zñ\90onZñ\91\8e\ÆZö=¹\Ë\\\×c-ss\9cg\19\Æs\85\ 4\ßL]\ 4z\ß2~q±\1f\18\18¨9\1f\92(#   ¾\Økc\9b´ü\8fñ\Æ1\8f\7fÙ\8d¥\13[\í\9flc9þ¾øSµDDDDDDDDDDDDQÁõ`\ 3\ 6ð\95\Ø\Òe¸\Ï\âò\a\8c\1f»r\îp\Ò#|±þ\Ùö\91\96ûÿ\0³³\8fî³\9bÁ½Xj¼Bø\ï\b\841fWVx²\Ð\Ù\e\ZÜ\98Ö\94 \9d\92\978n2Be\86\e2÷{»\à\Æ3\ e\ËX\ßm¬\"\"\"\"\"\87G\81m\ e\9b\8f\11¦¤\ 1\ãÀ¯\æ\Zia\1c\92<\Æ\Éw.Xå\9d²\È\Î!=\Ýñ\91c(\Ò\ 6\Ö|\01\11\8c\0\Æ\ 6\bl\98º\"\"\"\"\"\"\"\"\"\"\"\"\8f\17ª~\8e\Æÿ\0\Âgi\ãV\ 32\ f\ 2ÿ\0\83/\ e<9­ö®¢\æ\Í\12\Ö\Ôù\Ë\Ü\ÖûE­\8b*V[\ï\97?\éø\r®#\98\Ü\ç\1f\85\88Ä\89\âK\Ç\18\88ï\93\9dÓ¾\b\93\8cÿ\0°\æhTó\ 4\ßú\ 4v3þ\95³¤DDDDZ\1cñ­\Ö\âqO\92\8f.¼\É*¥±\äs\×6RZC³ül      ò(õ\Úz¸q`\äøn>ñ\n\æ^\Ãd<e\Ù\ÃMk+-n>Ns÷Æ\88\88\88\88\88\88\88\88\88\88\88\88µ\7f\æc\83\ìû\19\ãc´\9c?PfF\9f¸h\12\ë\â\Í [(p%\91\1c       \ï\8a\ãGt¦Ä±$3¸\ 20\Èü3?\12\87\18É\87\93\1d\1c\Ñ_\Æ=8\ë\ f\1f<,\8f\8d?\83¸Ú\84A\1f\×õ\8e,\r^¸Q0\Ü\ f?\ 6710\17`xöȱ\9f­\Ík\Ú\æ\ã*\11\11\11\11\11|*\9df\86\8e\95Mdx3¶)\8d\9fw$?g\Ùc1\98&\Zsü\ÞöüÛ\82\93\ 3\eü\îþ_\Ý}\ÔDDDDDDDDDDDE\Ö7=F\9b|\Õ\îu\r\80e55\ì\\C°\18\1eÑ\95\áÁ\84|a\8fx\Ê\Ö\ç\ì\v\91»\1e\Ø\Î=\97Ñ¡¦\83®Q\ÓkÕ\8d{+hjk©«\ØGa\äd\Z¸a\83\11¤{Z\Ì9\í\0\a\87;\fn\1c\ìg8kqûc\ë\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/ÿ\Ù',4,1,'','','',''),(17,5,0,'9305bf00c9709025','12966450605bf00c9708ea1748285071','2018-11-17 12:41:59','2018-11-17 12:41:59','','','Profile Photos','person-300.jpg','image/jpeg',80,80,2354,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v     \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0+\10\0\ 1\ 4\ 2\ 3\0\ 1\ 3\ 4\ 1\ 5\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b        \11\n\12\13\14\16!#\15\17\18\"ABÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91û\Éõ1Vü\î´\Ìõ7¨\10\95M±\ÛPCm;\n\Ûf˲\9a\ÏA¹\"&\b\n(ø\È\â\Åz\é³r+\ã\È*¶£Á\83«´øN\Ù\1d\941dVq\8a¿+:}\íw¶N\ 5\1e\êz/Û\9d      \Ó\ÙI§Ì®\85¬¶\14Ö©´\îu\ 6J\877\Z¦\8bIý³A¥\Ò\ 5y§\ãó°d«2m\12`\ï\a^¯N|HKFow\×n½RºÉ­c5m\ eö­0±\Î~¡S\9b£r\ì\í\át<Å\8e8\Ï\10M·i\Ú-2\â°ö\ 6\85\86z*¸\e\ë}\È\Ø`²C\Ø_ºñ\Ç\1c\9b\ e\È\'¨\1d0\í\17g\92\9d£´v\Å\ØpQ¦aY\12V\Ó\ 3[=ú\94AXFR¯\Ó\ËY³\13\Zöp¤|6R³÷£\18û±Po\97½S¶zÁ\ê\1e\9d\ÓûBÁ9d\Æ\é\ÚV\1d­Ø\9b¡\86º©ùjl.e6NÚ\94\"S\1f\Ú\Äõ¼pÏ\83\8f\92\ÂUú{\r\8e<\8c·øÑ\94\â\è*\8dF±@ªV¨Ô\98\b\9a­:\9d\ 3\13WªV`\82b6\12½]\81\ 1\88¸hX\98ñ\90\Ø\áF\ÆG\8a8a\n\Â\10\ 3²\ÛhN\12\9cc\90sÑ¿7´?¦\Z*GLn\83\89\ 1\ 4\96{^\ìm}k\9e®Y(\16I\16F\Ãs(\8f\8e\92\12\ 6\1dú\90#\×#Y·\ 1+\10{\ 3|2\98ù\ 4\8b&%hZ\8f\ÐOL¾\9e~ÿ\0\Þ:\ÙvÚ\97-\99¯ô\Æ\Ä\ e·³ôE¾\Í;=ª¶\8e¶!\0\ÉDZõ\ÐvW\Ï^¾\93¶Q\ä\"\ì\94û5y\0\Z\ 3\ÅG\ÇÙ\84\97\8f\12J     û]ô\ÆÙ¥\ï½C«·\86¸\90T®¿\Ü\Zú\9d³iR.!-:eZó_\8f²Á>û(qÔ°J\ãd\87ýHøqyaÿ\0\È\ÎT¬£9\ç¥ñ\Ç\1c\Æ/´Z¶Å¹¼¢\ï潩\bD\8d\92O¬\Û\"f\1e4D¸\ár\86R\â³wDPm5\9c-\â\ä\Ó]P\ 2±\8f\9c>A\r´¤©+\Ês \9fÑ\9aôK^±_\Ðz\ÛA\ät\Çn3\ 6\97V\Â\7f)\ÉÙ\9a@\82\9b\1d.g\ e¬¬E0{©Hÿ\0.`F\8dZñøP\æqi7\1cªk\êñ\9f¦\\=\90\94\82 4Ä\85¢±×\9d\1dL\Øc\Ä\ e\97\Í+c\14\åª\Ã\1e\19\b\13\ e<l·\ì;F¿\r\b\ÊrV\Z@`\á\1f\Ð\Úyc\97\97\Z.\ã\Ö\7f9úS¡ö#d\8f~\Ö}oÕ\95\ë¬yk\Êß\85µ\â®   \Ö\nò\95\9c\'\å\15\ÉS\n\82g\1f\18ûY\8em?õ\É\ç\Ç\1cs\89ö\19%\97\86!¦\ß\1c\86\9c\1eB]e\æ]F[u§Z^\14\87\eq\nR\1c\94­9\ÊU\8c\ã9\Ç+\10\î7Vö7\ÓC\í\ 6\95\îκªJXúIy\Ùö9\Ú2\á\11ýa\ë«È\921\e\7f¯\12\vy\ÏÀ5¾\93W°È\9b¯\17$òD°E\81W\9aI.\1d\17f\16\"\Ê\íA¶µ\ÞúÕºÿ\0t\êKDu\×Y\í\Z\9c\8dj\8aR\Ô\f\ån\Â\v2\11\874\87\90\ 3¸±\ÞJ    \f¦\990\12\90ðf0ÁL<\Ò#·¢\9d¤#¥\1d\Z\í/j£\ã\ 4\99\9b\Òzv\Ùo«D\È!\Õ\Æ\É\\\Ò&\"\éAJ¡\87\19}Q$\Û$a\9a\95\Ã/4÷øõ\13ø\9cmϵXÑ\9b\ég\è`þ\8cv\9f±^¯wP²÷E\9bV\í\Øò(\9f»\12\93A´vNÀ\8c_\'ö4ð©\ÃA;\9da\14]]\Êd\ 2\ 5\Ì \12\96@\ e\10@¿gñ\9b\Z8\ã\8ex/g;3¥:y£v\ fc;\vw\8e\×ú£ZC.b\É>\7f\Ü\ëΩN h\ØHH\æ¾\ã&\ì\93òO\r\11^\82\8fm\Ó\å¥K\181\9bR\Üù\Æ\0z¿\Ø?Wý¤\'ým\Ö\Örü°ó`ó\ÞƵ±D\Ô*\97¾\éöZºÁ.\ f\9b\ 44µö.\ÃD\Õ\15)&\9a\ËÁZ\"ª\ç\901yÈ\90\ 5_\ã2\ìø¹e\94òǧ\e\ 2·X®v:\99r\î^*d\e!\13!Ü­£°;\1e\81¦¤\99@\Ò3±\Õ=\89?\'®kR\Æ\f\ÚFq\êu*¸\Ã\"ýÂ\880\ã-m*tQh\94\9d_M¬k­oR­Ð¨4¨Xú\ÝB\97O\85\8f®\Õ\ë\15ø¡\Ð,l,\f\14H\â\Æ\ÅF\ 23hdP\82\19\91\Ùm8J\11\8csÇ»y\×\n·oú»¿:½t1ø\Ê\Þö\ÕW-jtȬ\à\82\1e²\Ã\12\fe\8c1\Ô\ã( \Ê\ìªÁ\9c\10w\1dm·É\8f\15\86Ö¬óO¯§caYür\ß]\91òC\Ñ(±ô%¯g\íF6·XöÍ\9f+\8a\Ó\Û\Òa0QÔ«$]#cJ4\f\f§\îHZý&f\90:\Édפ3b¨\Í\r\ fs`*ñ\9b\È%IZp¤«\nJ±\85%I\Î2\95c8ù\Æq\9c|\ã8\Î?\9cg\1f\ÆqÏ\9e8\æ¢~¶S&½Sö\9f¤\ÞII\99(\8e©\è\rn÷w»s\11\ZQ\ 13q\Â$L\87¬\Ö%r\87\ZS\8c¨4\×j\0\16\e\88*8}\Íe\92\1f92(w\ 6\Ûf\12\12\1eµ\r\13\\®\ÅGAW\à#\0\85\83\84\87\b\98xx±Z\ 62*.86\Ù\10\b\èð\98d@\83\15¦\87\14f[a\96\Ð\Ú\12\9c}\9f\1c\17m}BÙ\90n\Ö6=\"¡°+o¯ò¿^»V¡­po9\86\Ük\ e;\13:\11\à8¼4\ë­ý\ë\1f*ün8\8f\9fµj\Æ`·d|\ÑÒ»\9a±÷i\ë.\Å\évâ\80\86l\rsºú\9bn\9c\12µ2#Ò\97!E°\Ñ*2Pú\ëgS\Ç!\91Z\92¦^ë\92 \e\14\Ò\ãÀ*\19\Õ2p\Ñ\a\ eþv#f\í~\Ïù½\ßÖ«\ßï·¤\86B\91/°j\91­\ÂU»)£¬©\13ö^ñ\82\84\1d\91Ä\89\92,y\18\a-`\0$|kk´×\9d\16:4÷¦¡¡ó­\Ç0\1f\ÖMj8\9fPߨ\e)\Ö\Ý(·ºY\Ò\0\ 4-yVQ\14\1d±Û\90&Eµóÿ\0\14¢@\8d>,\8f\Æ>\7fµ\87³\8fý\ã\99ð\ã\8e8\ã\98\15\90\Öc\ÆýKõ\8d\95\14\9c\ 4»?\8d\96\ám       a\nm3\ 5\×;sR\8b\8d$\Õ%Ô¶û\ã\83*\bÍ­L©Ô°\b\È\Êò\ÛM\á¼õq\È\1f«uúa= \î^ÁLr\19E\çª}\f\8fÄ\9aXRra\95]\87Þ±M\19d~4¡\çD\10\Øe-¼8\ê\ÙeᲬ6\97[§\87\1cq\Ç\1c\81²ôt¯\Ó\Ê\ 6\ÈTB³\96:\1f·)M\Ïa¼ý\88ýG`t¤\ã\91+w\1f\14¼0Ù\8d¶¯\åXCªoøK\9f\13Ë\8ep$Q\90K\Æ v\12Y\f\8e3\å%¦\ÒKã\88²\\\15\87\9f\Âpã\8c\8cá\85¸;KVP\Ê\Ê!M¥*yÌ«\9f\8e8\ã\8e\18ª-³ò;99¡\9d\r²ò\ÚrB\ 5}\Ö^xt;ñ÷¥\97^\1d\87\1co\19ûV¶ZR±\9c¡9\Çg\9fÿ\Ù',5,1,'','','',''),(18,5,0,'9305bf00c9709025','12966450605bf00c9708ea1748285071','2018-11-17 12:41:59','2018-11-17 12:41:59','','','Profile Photos','person-300.jpg','image/jpeg',48,48,1488,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b        \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0   \11\12\n\13\16\"\151\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿ø\17t\8f,\ëiý\Çh\8c\98Nq\87\ã%\å\â\Ò\15,\19\10?¾e\ã³grF        ,¼¹Á#\90Ú\95\8a\ÉH±\ÈÛªpVYjm\9f_HL\80Ù¤\Ónj®ª\Ñ\0·r¯¨3_\Ä\ì\16\9aúM\Â0\97\1cn:zE\raĶë\8d\90\97YoU\á\á\äGü\87»\17`q\1fªN\89Ú\9a\9eL\È\r\99oMgKSm\11ϸ$\9dLÝ«*\9aìµ\9e$ƾ\1e\ 6n\12°©\ã`\8faH| ¦\ã\Ìa\Æ\Þaµ¦{~\'>»(:\v\84+½»j\82\ 6o£û\ f6;+\×Ya\9a>\ÃU\ÔaZ\ä\á«\15H\99b\7fqc1oz\vùý\95\á\ÝiÙ\82%a\86\93\19\81\ f\7f\90]\93\Øo)s\é^\Âx[©-4й\é\Ú\Ñ;\9f\9c\çjT[\8e³ºP\ålQ\Õ\â- \ f-\\v\Â$´\19\Ó ½g\133N\86]c\a\ÉF¹\ 6|J\9c\90 ^¢»ñ¿f<\13¥:Ī\àu\vm¬Yª¾È¬Æ¼óñ1[\Z\8d,EnÖ¨E\93òSpRÆ\86\99\èAKp\82Á\8a\95\10\"K5ñ\Öcô³\Ã\Ék\î{\85\å=\8bz\ä\è\8eeª¬Vö<\Ä\b\17}O\93^À¡\91³µÔ\8b\16Ê\9c9E\ç\å!\rf*9ʱ\'9\854\13\13n\14òT\Ó+NS?Æ\87¥!ö\87­j\a5X\Ä&¡\Ñ<1)d\ç-ù«¦\Ø\\u\9a£)_¶\Ù]¨\1clQ9Á\8d\891Y\ȸK\8d!¬\Ø\á¬`5öÀ\18R¹_\ä\Ï\Ó\16ñy\ËPú\ÍÒ°     \9c\1fh{\ e\17G\Õ\Ï1Ô\8f        P¤\Å\Ü\é\ 4Û¦%\1dú<\îU0ü\84]y?¨gp\1c)vI\7fº\v\8c\ 1\92«Ï¬þ\17§ú\à\â­\'\È\ÔùuY\7f\88\"I·Û\94Â\85þa°\ì\ç\91a½YX\11j[\81G\Èؤ\r\Ä0\ e¸\ë B³\1c\13\Ï<\è\ëuo\8f\9c«y\îj\1f:é½\9f½ö\84¶!5\Ù6\ 5¾O\è§\\\1e\ e³\16\88\15\84|¬£\8a\12<Fñ\97K9ñ\Æi9q\Ô\ã2Û\8eµgKw\14\14\'c÷-\Ç`k\ÊF\Ï\1c[§=ð®»·Mkú\1e´\ÔóHÄ\9d\1e[ \äjf\ÆZööß²WÞ\89\99±ÁX\'X U\1d)øF©87&$Z\99®4\86\9b\Ó\äX\Ì\Õz²\81®Î¸\98Ü\8d¾F\9dS\84¯\É\Û$Zp§Z\90³\ÉF\ 49\Ó\ç6\é¦8\93%\880\9c8Y+Ã\9fg\Ýʧ\7f³ÿ\0[ò½´W0\îý=x\82\Ö}g\ÄÛ\827sh\vU\Â8\Ù]}<ú\ f\86&Ñ®6HQ8ÿ\08\9a\9d¼h0YT¼\12\95/\ 4c\b0Q\Ìe\Ò\Ä}\89\Ù}\88÷6P«[\a«5%·ZR\Ô\Ìx»;i\ÑJ\ 3ljmO*Sì\82©;\81\Ðj\acFk\Õ\18\ï\ís`\99­\19¯W#s\89\v\ÉUa[yô9q\92q\ÓQ±ó0\ç\89)\13,\b\92qrq\ä4X\121Ç°\ÙA\1c\11l-l\12!c:\Ñ\ 3\10\Ê\Ö\Ó̸\87\eR\90¬g3§Û\86»\7fmð.\Þ\Ö- \97\99½\Üù¯((­\å\Ç\ f¯\Ëôö\9a\12\Ë\Z\âq\8cÿ\0Õ\92¯¹&\ 1\Ê\Î2\86\Ã!õ¯\19BU\8c\Ñ\á\86\1c1\Ø\10FZ\18QYha\87a   i\91\Ça   i\96Ym\18\ei¦Ò\946\84\ã        B\13\84§\18\Æ1\8f=¼<\Ï\Ûj\Ð\17\9a­\96\93k\8b\ er­p¯\Ì\Õì\90²#¶T|¼\füq\11S\11g\nòV\É\ 1\9f\1eY\ 2\92éSn²\ê\ÛZr\95g\1e#\1e©«S´¿]ü¥K±\99 t¥7Y·QýÒ¹w\'·\eX\9e\9b\83\82   ü¾¥»ÿ\0\9b\ 6\ 4tsXR³õ`VÒ\9f\84ø\êl\n<VÅ«\91T\9a[­Ç\93)Z\96Z\Ø\Âr\æ     «Y¡\íQÿ\0\18^2\9f\8c\ÈB\8b\85ü\ã\ç\bʲ\9f\íñ\æ\Ï\Ã\Ã\Ã\ÌVº£E\ëjd%\"\15\×Þ\8b\81h¶Cp\9c\ã/e²¤\v\90RW\9c\7f¿£\85­       \Ïû\Ê\12\9f\9c\ç?9óÿ\Ù',6,1,'','','',''),(19,6,0,'9305bf00cb1412b6','19504305895bf00cb14111f611783866','2018-11-17 12:42:25','2018-11-17 12:42:25','','','Profile Photos','person-300.jpg','image/jpeg',300,300,11007,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b      \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 1\ 2\ 4\ 4\ 3     \0\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b        \n\11\12\13\14\15!\16\"1A#3BQ\17\81\82\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/ñ\1c\Ü3\19\Î\"u\ÝOX\ßGøX³õ®¦q\æ\çÚ­²/\ê\91\1f\7f+òxß\8c\â[VJ$<Fuݼ  \17W\95\93\9e\ÖÈ\81}¬\Ô\Ú\ÖË\8c3\18$xI\bò£{\Ì>°\1f+\\\81c|\1e>o\ 6ðö©b_j\8a\Êm\0»&\ÑQ\17\â<\àE\Ü-­A\89²Zv½\í\97\12\82£\19\v\99\1c\91É\8c\18\87Ô\8f.y\9fò¡\Í\ÒM+z\ïGa\ 6ò\Êü¦\ãJ\Þ&ñ£\83\9c\àQ\87\'\8eÛ«\Í|0³\â&G\91(\ìp\Æ<\e\ís0\å\æz\87y|\9br\16\ËS§h]\Â\ïnñ¸\ßH|j=[P\ì\17`vm\96\æPÀYE\8fSGM·M´±\90\Ø\Ñ\Ï$\82\87\14\Äh\0S9¸\18\Þ\ìJ\ëÇ\87L}X\1c¥IQ´C\í¯$õk\8d®gDÌ\9b\ eÁ\í:öÕ¼J¦t\\\1cWU¼u}A¶\ÚL\ÈJsC\ÍV\Ñm©Ø\82P¦b@£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8d\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)AT\É2\Þ1>CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ð\ê9\ï¶WPKúg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ekþº\ê8­5½\84\ç7\ã\11ð`\Ý\12\rf\9d\ëòa\Ü\ß#\9b\Îw^\Õs\15\Þ\é\16\1d\8c\8b\1dc\8f\9ej^2\Ñ\Ü|\Êö\ e¥¦\82AaB\ÄvN\9c\18\Óg\16\Ê\Ü1¦Ê\8b\8b,\Æ3Å\9c\vE!_\11\1e\9d¾\Úù=\97U\É;\0\'uûª\Ù,)E\åý¢£%´\ß\"6@M:«\8c\fQH\94Y\15\8f¶Y\Æ}\14b\Ù\ÓÏ\85\af\83ú\88\á\Ù_\ãÿ\0\ÄOEüm\ê1):\í\Ãt\ 1\Ü^\b¸\Øy{l\85\ fc\å\1d\96d|¸ø4Í®|r\ØÅ\86\19Ç\9d&ª²\19\87\Z\98s\8d\n\ e[\17\â\Ìl\Ñ\11\11\11\11\11\11\11\11\11\11\11\11\11\11\11DGÔ\83\ 4\'B\èlzu\Ô\ÛJùý±\Þ(Iü]¾\bµöu\Ü\a¬\Ù\a\ 3l\ç@~d\82Ç\90­BR7[¦\9c\ 2VÕ¼\12®6`\1e,\18z\Þ\×X®×µ\ì\Û\Þ\Í}¹\îwÖ»FÙ´Zͼض+ɧ²·º·²;\äα±\9d%\ä<\99RNG\90¥#ó\9c\ç>\Øön1\8c|\ flþß·õýñÿ\0¾=ó\8f\Ûþx\Î?ù\ÂüSÁôóúg\83¿À\Ó{½\äKI˵\19\8f\7f\Ã=k\Ùa\98\8dó\Ë\à\î\1c³S(#x£\ËkY&\9bN\91\ìø\Ñ\1e97\83m\Éñ\ 3\86\8e\8a\9bY§®\×õÚ¨\14\94u\11E\ 6²¦²(¡@\81\10\8c\11b\81\8c\10\86\Ü{\çÙ­\Ç\É\ÙsÝ\9c¹\Îv~²\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\Ô\ f\9b\9f&\Z\ï\8bÎ\8do\\\Ì9A/0\î\9f\7f\1dp\ e¸ö4¤º\ä\9bxF|i\ç\ 3\äC\Ã\éuXm.Á°¼S\ 34Uq\nú\ÑÊ\9føñ\rM\ï%rVû\Ì[ö\Ù\Ê<¡µ\Üo\1c\83½]\ÌضͮþVe\Ú\Ý[\Ï\'\Ìòd\13Ù\83\10\Ø\Ü2<8QF\b\83\Z¾¾4X1£\Ç\17G_¹\Îsýsý½¿\å\854OKW\83¦v_x¯ò\aÚ\8d3\ï\à~9¹\11¸\ f\89\97\Ç\ä\îB¥\962¿r²¯\96\1c\0º\86©!£ý\b¹t·\Ù\ß\ 2D\ÌE®\1du\1d¼\ë+@\0E\0cF\b£F\8c\11\82<p\r\81\ 4p\ 5\98\18\82\11\r­\18\84!µ¬\18\ØÖ±\8cn\Z\Ö\á¸\Æ\172\"\Ã\î\é÷Ç«\Þ>8²72ö·\91\99\Ç\Z\14Û\81\ÐÁ±e%\Þ\Å>\ÂÔ\81q\Û\ 6\97^\83cog/\ëo\Ë\11+\áÉ\98\æe\Ædw\80\12J\18ýów¬OÅ·\1eGi¸\9a¯\9b{\ 4oq°\915\í\16Ï\8f\8b\87¼\8ec\9e\"rL:\b\8e!ü\n÷\90À\91\9ce\ì\14B9\8dû1f\'­Ó¨/\95\86O\égdcBù{fDM»\8c&\Ê\Ã=ñüØ\86k*ñe\Þ\Þùø~v1\ï\8cc\çûû\ãi\Ü\a\8eð\é\Íó)¨\ìû\e#\86¶[H®<\98|½£nÚ\96¹VV\ç\18üi{\ì½}º\83I\9c¼L\ÆKf\f9\Î#\Ùò\8b\1cò\99¿\8dKrÔ·\Ú8\9b6\91³P\í\Úôö1ð\îµ\ËXW5\87\Ã\Â#á¬\99\0\Ç\aÙ\80\9cDx\\ü\14m#>\Æ7.\Æ\17eDDDDDDDDDDD\\d \Â2\18\Ä`\84&<\85)\1f\86\fcf2ç\90\8fvp\Ö1\8d\Æ\\÷»8k\e\8c\ç9\Æ1\9cª\8dýM~C\ì»\Å\ä\7f\7fÒµ\8d\91\96|\13Õ¢\É\á¾9\8dUg\99´\17{\1d\\\92\97\90·v\83\965\9c\Ûò¿U,SH°\f\9b&B|\"\\X\Ä\Ät\Ñl{\Å\17\8f\í\Ã\É_vø\8f¬\Ô\f°\85ª[\Ú;då\8d®$RH\ e£\Æz\ë\7f?a\9f!\ã8\v\1c\Öùdmf²D\7f\É<+\e¨ön\85&\15|\Ü2\é>!\âm\ 3\828\ÃD\á¾*\Ö\ëõ\ e9\ã]f¯P\Óuª¨\à\89_OEO\1d±¡Ã\8d\Z0\Ã\1c,k[\97¹\80\bC\82=ÿ\0PDÏ\8b1\èè\88¼G\9fz\×À=§\Ñ$q\8fcx\7f\8fù«@\93 3\v©ò&·]²\Ó\âdr\f\Ñ\æ\ 6\931¥\Ç8A&<\98\11Á*<i\"#\ f\18\ 4\1c\12<¾zE\e§\Ómý\81ñ\8fasm[Z\ 3]\Þukn´e¥ À8\Ã|\çqf\áa\98§x\0\èÒ¦c^Ú¥Ø\9cųdxW\15\95µ\7f\ 2Àú\æ\9a\ã\\¸µ×¶\Z«*+ú+)\Ô×\94w0eU\ÜS\\U\Ê,\e:«Z\É\Â\ 4\Ú\ë*\é <9\Ðf\02¢J      c\È\10\Ê7³\1f5lw \ÞW{Á\ãsl\87\9ed½¨\Ô]g\1e\Ãb\â\1d\8eD\8d\83\8aö¶\ 4\92\nX\ÖZ¬£\àu¯\96i\19\912~ºzk  \Ò#\ÃýJLè±\9b\15Ö\88ømó¡\×?-Z1ªj\Ã\e\89»5©\ÔÇ\9f\È<\19oi\1cò\n&\84X±\ØxöqH\É;V§\Z[\9c<\ÊtpYÅ\8c\èç²\83\f¯\95\Z\ eò\91\11\11\11\11\11\11\11\11\11\11k«\Ë\'nkú9\ã׳ý\8e\96\18²¬5\1e7µ¨\Õ`L\99\9a\è\Ö{®\å\86\êz\8dc\ç·\ 4$2X^\ÛÂ\89\14\8f1\ì\9ah\Þ\Ð\ä·\ä\'RI.\\©ò¤Î\9d&D\Ù\Ód\Z\\É\92\ÌI2¥Ê\92G\ZD\992\f\98ò\ eg¼¦1^ò\14\8fs\Þ\ç9\Ù\Î\7f\9d\15\9f>\8fÿ\0\1f\8f\ë\ÇKv\Î\ã\î\95s\àr?o¬\"g]\14øò\"~\1f    \é²d3N$a\92L\98\93#\ìöò®6\90[\Âd\12J\85>\rm\84s\12\9a1\9b/ôDDE\n\1f\81º®x\Ñ6¿!]M\Ó\7f\1f\9c¸ò\8f\16\1c\Û\Ç:\9df^^Z\Ò\êþ86\ËUI\ 1¸|\í\ëW\86\19¿¦\Æ5\Åõ@3NøÖ¿\8dE\8a\n\ÙQ{\ÏY{+\Ì\1dB\ç\ e>\ì/\ 4\í2u.I\ã{\ØwtÓ\86ù\19\81`8\ç\19&P\ßD\8d&!,µû\90\ f0\í`¶Lc<\ fû\áJ\85`\bs£\\÷\ã\13¿\Ük䣧\9c]\Ù\Î<>#\Ë\Ø*\85Q\ÈZ¹³\81\Ø\éü\8dJ6AÛ¨¥\ÆpÀV\Ç\r\Èff²cA\886P°\ÉUr\'@pf\9b`\88\88\88\88\88\88\88\88\88\88\8a\">²¾r\9d\Ç~6xó\88\"·\ì\8d\ØNv\×\é,\9b\8f¯\ e\f^8\bù\14R²\ç7$È\99\1cW\fn\Æ\1cI\81#ð\ì\a\19m^¨½s\808®W:ó\Ç       ð\8c\19\99®\9b\Ì|¹\ÆüW\ e\fis\ 2W!nTÚ\8cy\98\e²Ö\931Kn\Ã\á\8e\Î\Zü³\ã\9c\19W¡p\'\10\ë\\\ 1\Â<GÁúu|\n­_\898\çN\ã\Ê8\15`\Äj\è\Õú\9d\f\ZP¶\14v°m\ 4\1eH0´c`\Úü5£\eq\86\91\11\11\17\ 4¨±§F\91\nlpK\87,\ 6\8b.$ \8eDiQ¤\r\Â<y\0+^#\0\Â{\Ä`\95\8e\19F\ç1\í\Ës\9cf oQ\ç\8eAøóò+º\ÇÓª\Û_\Â=\8d\ 5\877q;\07²\rC\î.$\83y\ÓÀC\Ë)\8eú\r\8dØ´÷\f\98\10vj\êJ\98Ù\8dS\97-\ 3¢\98ߣ\83º¬\â\ e\êò\'P6\8b\93\aY\ìþ¤[\8d\Z\ 4\É\ÙmdnL\ã\Êù\Öó\85W_òù\16÷h\Ôã¹²J\11\13\19«\ÔpI_Xa´Ã³u\11\11\11\11\11\11\11\11\11\11A/\Öÿ\0±7\1cC\Ð\ÝK\f~\1f\9eH\åÝ\8b$ùg##Y¬k5\8df[ñökÃ\97½\Øv_\9c½§v0\Öü3\97\×v\8a\96\8e\0Ô¹÷\Ì\1f\v3p\16d\Â\á\Ý7}\ç*¨\8e\10\äD\97°\é «¯¦\14ø\Æ\ÆFx¬\93±þKZ\ïò¥\82,\8f\89>\9f¨\96\è¢\"\"\"(\90ú\Äú»cÌ\9e94\Þm\Öi\"J¾\ë_0\Ó\í{\r\88kA\"\è\9c{²\Ó\ÜjwUÌ\9b\87\8aX*\àZ[\Õm\133\9fÉ\8a\10\Ò\É÷\8e\Â\Él\81\ÕÊ\8bcþ ¹²W^<\9ct\9b\95aG$©5\\ó©k#\10¾¯\93q\ÉN\93\ÆD\90\e8\e\83\10[\83\åHc¾_`\ 2F5\84s°\Ç]²\88\88\88\88\88\88\88\88\88\88 \Ë\ë}×\82N¿ôOkll~D^b\åMxòÿ\0\9b9úg\éT\96Qcg÷\ÈÛ\8c¾¶aqí\86½þ\Ùùe\Ø\ep\Ê\èQKOÑ­­Í\9f\åKs\Ú\18\Ñ\æ·]\ê\Ç%V\Êv]\9fµ³ö-£B}~\18Ï\8e[\91º5%§\Úÿ\0\9b\\\×4-k\1f\82=ô\95\11\11\11\11jK\Ï\r\\K_\ f~BE,\"/\âu»w´\8e\â1\8fp%\Ö\n<À\189~3\91\97\19\16G\87³-~XB\ f\19ö#±\9a]\11f_\8e½#f\äNút\ãS\Ô+Mk{3²\9c7b(\80pZF\×k\9b\Ý&\É{;ür    \8e\1d]\rE\95¡\86\×8\Å\f7\8a0\8f!\â  /-DDDDDDDDDDQHõ\85p\94\ eDñV>V\92,\96g_¹§\8f¶Z\×0\87\97\83Æ\92d\11\82ö\19\ãb\1e\Æx\ä\14\9c¸m\91&)\Ø<\98# ª¾E.OF\86\Ð:ÿ\0\'Ü\87©<Y\Ëö^±\ï6\Â?³>#v±²\êBp³\9c\ç\ç\87\18{\ 3\È\Ü5¹nq\1d\ß<·8g\Ê\ÑDDDDE¤/Q\8f/jüE\á׺\ f\Ùl\ 5\ 4\9c\8d\19\9d}¯~rY[\ 6õg\ 6¦º0@\Æ\10¦Á\ÊüG#\9aÖ\8a3O\89\12\n0\8d\Ù\Í8\88¤½\éE\ê¾\ÕÏ\9eXøÓ\95\àÀ;ô®ªkû/*í¶¸|lÃ\8dm{¯]\é\ZuTÁ;\ 5\99\97\Ù˹µ°\82x\àh\ 52\84C\9726dF\14»f\91\11\11\11\11\11\11\11\11\11\16\1fwû¬Ô\9d\Å\é\87dz\Õ|\É?\8b\1cSµk\90\8f\ 20$\ÚCº\Íy&\ÑK¨l\81\1c\15´X\98\84|\80ÿ\0I]\87f<\86\96\8e\8d·U\Øt]«f\Ò6Ú¹\14{V\9d°\\\ê»5,¼\89Ò©ö\1d~\ÆME\Õ\\\9c\80\86\ 6dW\ÙC\93\10\Ù    J,\90.\È\Èö{;=}I\ 3Ò\9b\ÍZ\Ï\ry\87\âHû<¦D\1f/q¿&ð\í1\vó`]}°Á«\Ø\à0\Ò07\86+>½JI0YN\bJA\8e\eL\Ù\12\80\×\Ûp\88\88\88\88 /\ëUî\8e°Z\ e·t+]\9f(\9b\8c}\81\9d\88\ä|@²È£B\×ñS±\ê:f½{\\\Ç\b\87ýVtÙ»$\ f·\12¡<\94¡>q\1el\09õ÷¢¶O\Òý\âògAz<\1eV\å-i´ý\8c\íg\é\\\81¹2K[\9b-g\8e¿\15\928\ÛG)3\ 6¾P³\ e²[\ïí«§6~+ö{»\ÌU\Ù˪<b\92\88\88\88\88\88\88\88\88\88\88ª\86õVxõ\9f\Ô?!\97\1c\ëªT\Ìo\ ev\æ#ù\12¶h¢\ã\15:ÿ\0%D\Îk÷MQ\8f\89\r±`2X¢Á\Øk\ 3c>E½Ä\99;,\æ\fpa±£\8c\ 2÷n¯s!ú\ï\Ù.\ 4\80f\Û8\á\îa\ã\9eH\97\1e\88ø\8fkaW§\íµ7\97\15\11\1e\éP\84÷\\\ÕB\99RX\Òe\ 2\1cÀM,I¤\ÄC\99^\85\1c\8f®ó\ f\18q\ç+\êR\813X\ä\9d+X\ÞhdF\94)¡}V\ÓM\ e\eq(8À\Ì\á\ 6cDW5¬\Î\f7µ\Ìc\9a\æc\Ð\11\11\11\16\17wó½|\e㳬ûÿ\0eù\Þ÷\15ô\Z¥iY®ë°\9a9[\1eõ·\Ê\Ãckú\96·Zù\11s.u¥\99\âG9\Þxð\ë£\15ó\'J\8e\16aΦ\ 3»=·\ä\8eôv\8b\98{MÊ\99d}¯\96v\É\×Ø£\8d2L\Ú\ÍV\97.úhõj\82Hh±\88\14µ\Ã\ 4|¾<Jøó&\æe\93+¡>q#³\15\ÔÁ}2þ     ö^\Úr¾\9fÞ\9e\Ë\ë3j:\Í\Ä\Û\1c\1d\83\8d5KºòGÿ\0\8d»µS\Ù2®À\8c\92&\95\Ú.½\'\11\86hN     \îm\a\ 2SfÇ©\8a(\Û5\9d±\ãÇ\89\1c\11b\801¢F\b£Æ\8d\1cL\fxñ\ÂÆ\8c \0FÖ\8cA\10\ÚÑ\88CkX\Æ5¬cp\Üc\v\99\11\11\11\11\11\11\11\11\11\11\16¥ü\Òx\Þ\Ö|\9ct{\90¸@\Õ\Õ\î\å\1dxF\Þx;c\96\ f´ú\Ï#\Õ\Ä(\á\Z91\9c\141í¢¼µ6Ì\8b\í*}T\89Uc#\198¿*i9\e\8ew\9e\"\ß6\Î1\ä\Íb\ÛKß´k\É\Ú\æ׫\Ý\Çü{:k\9a\â\ä2b\9d\98s\ÄVg8i¢Ì\8a\9f\10 \9d\ 2L\98r\0rt¥h\87¤o\È\ÕOcºN~\9an\Û\14ù¼\ÍÔ\87\8e\9cv\Ù\10\Ùi\ÂWg\91\8e>\ 5\1eE\Z4c\aQ\1c\e\r`\Ñ#\92U\88b\ÖG±¶\18±:4\Û9t\"\"\"\â1\85\1cE\91 £\0\07\98\ç3\Ú \84\"n^B\94\8f\ËX1\8d\8ds\Þ÷»\rcq\97;8\Æ3\95Qw©\a\Êv\Û\ä/¼;\87\1e\13£u»¬\e6\Å\Æ\Üc­±\ç\87\ eóg§\98Z\9d\×~»®ø\8c2n\ fo\1eÂ\8a\9aL\82Z6\154Y\12)g\86\ 6\Ã&.#º·\ë\é\íñ-c\å\a¸õ\99ß©§c«\9c\14J\íç\9a­I\1f\ 3­\Û   \Z\Â\17\è¼U\ 6t\8c\ä$±\Ù\1eo̸\14x\96¹\8b¯\Å(,cB\15\Ü+\ 1\ÛǪj\9aÖ\8b­\Òi\Úu%n·«\ëu±ª(¨ª\"\8e\1dm]t1\àq\âÅ\8e,a¬c\e\8fw;?\"\14\8ey\8a÷\94\8f\ 2\"\"\"\"\"\"\"\"\"\"\"(Jú¦¼\eç\9eµ\e\Ï\"\9dY\Ó\çYs\86\93[\15\9c\å\Çz­s\åXò\86\99\10¯\É7*ú\á\11¸\9f¶\êQHi\12\e\fO½¿©\1ei£G¿\9a=n¾¦·\15\9d^7{\Ûɾ8{}\Å}§\ã\13d¦Ô¬¿GÞµÜ\8b\ e\é\Æ7\Ò\"\83w\Õ\b?̯\Ç\äέ\vfS\14\93C\166\Ã]Q*Às+\83.\ 4«£ºµÙ\8e\'\î\17\ 1ñ\9fc¸Ka\8f²ñ\Ï)k5\Û%\1c±;-\97\ fóc\8c²*.!\15\81\9bUsZW\æ=\85]\94XVQ    \8c6\\(\ÄwÕ\8c\80DDZøò¹\ÏV\1dgñ\Ç\Ü\Þg£°\15nÕ¨u\ë\94\ f¦H.3\ì\í¾N£k\Z\80m\Î\Z\ï\83ó8\8c#_\î\Ç7\ë\ÎDü\e\ë÷¤^lÙ\96S%\Ø\ØË\93>\Â|\93Í\9d:i\Ë*dÙ\92\8aóÊ\97.Q\ÞóÈ\93 \ïy\8es=\å1^ò\11\î{³\9cÿ\02¸\17\Ó]Ó\8a>¡ø§\àS2­\Ðw¾\ÂÕ\83°\1c\91&ma*¯\1dq¼A\8aZ\8aKȦ\18M\89Z¥\0`Ð\8bò\ 4\ÉL\8f\15\82\91\ìñýcß\9a\"\"\"\"\"\"\"\"\"\"\"\"\á0C(&\8d$\"\91\Z@\88\13\80\ÃaB`\95\99\19Ba\13\ ea\ 6F9\Ì \Þܱ\ì\ÎZ\ìg\19\15Uþ¬n\83pwM{Ë£ò\'\ 6\82\9fZ«\íF¯¶r\16\á\ÇT\Ùcck;\Å\r\ÅL{\Ëö\Ä\e°\Ê\Ön\å\Ø\eb\èb\0\86i\90\98\92¬ml$\92+ªk~\8cN\Ós\ÜN\ßr\×P\99±Ï´\ë¥\ç    \íü¿+Z\9e)3!ê¼\89®\ì\ÚM=t\ê\19\99\'\ÑPÍ\8e¿a·Í­c\86ö\ØI®\14ø\1f\86V\Þ:\Ò\É\ÔDE¡?S\r5\å\ç\86þ\Ö\ 2\81ò\a&\15n½s=ñð\ì\ç\14t¶ã²½a~9Ç´sUF\95\1c\ÙÏ»p\Â\ç.\Æp©ó^\81\ÄôU\ÛG)ñ¦µq\14\93ªv.@\Óh­!\b¤    fW[\ìuµób\8cÁx\Ì\"H\8d ¢a\ 4A\94n~\1e7µ\Øñ|\'\1cUWQñö\8fOQ\b\95\9a\8e»\n\f\10        \80\14X\Ñ\êb\fah\99\8c5\99kqü\Ø\Æ=òÿ\0\96]\9c»9\Î{¢\"\"\"\"\"\"\"\"\"\",h\ì\9fqº¿\Ô\1d*\×\7f\8f8q\ß\12ku\ 3\e\8e]³e­\81br\Èoý\Ê$\nw\1f6s%\Ø\15Â\8d\ 4@\8a\ìH\95\"0\Zü>@°\èÀög\Öm\Ðn2\94zηñ\ f.vlä­\90h[\ 1XN\1dÕ\81f\Öe±\âY3v¢.\Ñô¼ùÁ\1eX\Zì\96º+s\9c\902\1d\80·T\ïõ]ùt\î\1e\Ì\ÍK¡}\Z\Ôc]\nª%­v¿§\ïÝ\8e=@¯\nh4ä·±­­\Ò\ë5Xò\æG9\1f{³`t\Ì\fI\ä\'\âÆ\8as\Æܧ\ 2\a\Õ\Ë\Ì\ï\×%r®\Ï\Ñþ³j\eH3úÜ­\97F¤Ú·ý*,\98\Ç\ÃJ\Í7Q¸²\8f*\Î<\9c\ 4F\8c]\Â6@\'\92dcJ(C\ZO\9eXúL¿\í1\Ë3ùÿ\0\É\1f\91>i\íg/\\}\ 1¹° \Óhøö\82}dF\Êe}\1cxN²¹\95®\Ò\Ö\æK\å\ 6³R>¿\0¶r\'X\â$bO\9c9Y\ f\a\17\âN<`\8av±\Ê\Ö\12\a\9cd²ó\Ê[\ÔWH\Æ=½ðð\87\99\ïûû\äXgõý½½\96\Ýú\ f\âo¢^4!m\82\ê7\f\8fGºÞ\8b\1dûv\å}³\ì\Û\Î\éy\Z\18\86(5gض»K9q)`¹§\93\ e\9e·\10«£Ì°´\948ø5\94Ç\9b\88\8b\r|\88p\\\8e\ÍtO·\\\ 1     ù\15\87,õó\94´Ú²µ¸{\Ãoi©\Ù6 ÁfXL>@l\99\14\91\9a\æ\å\8e;G\87û79v(\é\Øh.uKû\Í[c®\93O°kW\16T\17\Õ3\19\81Ì«¹¦\9aj\ëJ\éL\Æ]\86I\85:1\ã\1d\98s°Ò\89ø\Æs\8c{®\Ñ\Ä\Û$\1d7\94ø\Óo³~E[ªò\ 6\9b²X\15£!\9c84{\1dm\9c·\à!aJ\\°\11H\ì\fB!\1f\9c|XÇ»8no\89\ã\ëh\97ú\16\91{\0Ã\91\ 2\ëPÖ­¡H\13°\á\1e%\8d4)\91\8c7·9Ã\86P\99\8f\9c\á\Ív3\8c\19\11\11\11\11\11\11\11\11\11\17\9fò\97*ñ·\b\è[/(ò\îñ­q\Ï\1d\éµr®¶\9d\Ënµ\8bK¯\ÑUB       $K\9dca-\ã\b\8e\"\9c¯\Îs\96\ 4D&qð\eó\88    ùjõx\í¶\16\ 5\89\Z\8aª\14û­jó\Û\15p§M°\8e\8c;®#¦4\87\ 1\85\1d\8b\Ìjý\93b\82ú\ìb¿?\8fG³\Ô\ÚÅ´\f:õú\ e\æy+\ìlZ:\86ò\Çk;\1fȲ$f;lm¥\ì\Û\f\88Î\9eioc\ì\ï&\86£T\Õ X[8q\ 2y\94\9a¥)lA\ 2\13!bTh\ï\9d\17\8c¯GW\18\é\"Ö¹_\ÈöòþO\Ú~\8a\ëpõû\8f\äI¨\Ð\è\ì\Zð\Êü-\Ïi÷m¶\â\è\92c1¤\83\fUTVP&J¯·¬>Z¦w½y\à\9e·\éõ\Ú\a\ 1ñ\ f\1d\9bU\eñ \ë\Üy©R\ê\Õ\â\8fö8\ß\ 22ª$g\É\ÎJ\ì¿$\94ó\95\ÎöË\9f\9fl{{\Z\"\"\"\"*¢}Qþ-lú?Ý\8b~\ÆñÞ±*\1f[{o}o·\Ô\Ø\ 3.5f³\Ì\Ó2{®B\Ô\1c\838\82;\82\18\9bm \æÏ\97\86Ù\8a\ÑÆ\81_\14y\8b\ê·W\Ó#\Þ\Ú.\äø\È\â\ÍJM\85\84\9eP\ê\ìh\9c\17ȸº\9ayö¶\85\×\àE\97¯ì¤\9f8\9f\99mú\Í\ 4ú\ÙR\ç5\85\b$\9dµ\ç\9d*\Ê<\ì²Dh\88\88\88\88\88\88\88\88\8b\Æ{\ 3\ e$\ê\ç\10o<\ë\Î;\95^\89Æ\9c{G:ûb¾´3\19\86Ç\83\14\Òq\n¾;\9e\Ò\Ø\ÛMÀ^(\15ѽ\Ï$¿¶0Á°¥eK^m<\çó\9f\95\8eU¸Ö¨\ìnø\ã¨:¥Á\ 3\ÆüA\ZkÁüJ\ZÙ¤}~\íÈ\9fCC\9bk\ë\17\n5\98ª$\äÕ´\87\f/¤O\99_\10ñ±KÅ\97\8a\ e\Èù[\çAqO\v\Äf±¤\Ñ8\12ùK\9a/\ë%\Í\Óxæ\98\99\Æ~\Ù\ 2\8eX\8e»½\92\Ìÿ\0\áº\ìY\ÑO1\î\1e\r.\e\ f\1d\å¶W\Æ\ï\8aþ§øÀ\á\ê\Î0\ëö\99\ eF\Èø±ÿ\0\8ey\87a®¯?%ò5°\9a|\16\Ûaº\10~q\ÚgI\91õTV:5D\0\11\90+\âF­\89\ 6\1c]\91¢\"\"\"\"\"ž\åtû\84{\××¾@\ëo?j\Ðöm\ f}©,7¸Ák¬uûqe²)öZ)Xp\ä@¹£²\f[(\12\âH\8d$2b\88 \91\1e@\àU\ eùmð÷\Øÿ\0\13¼Ë\9dS\92`H\Üx[m°\92\Þ$\ç\Zx\12q¬\ì\à\Æ$\É\ e»xo¡\80£\Ý\â@\8eYF©3\98+hq¥\ØÓ¸\99\81y_GÖ¼DùI\å\7f\14]©ª\ç=\1c\136n=Ù¢F\Ôy»\8c\878\91¢\ïz.g2W\Î8\9eqW»hÖ\8f\93X\ë\12¬1\81\8c¦°®lʶ\Û\Z\Ò%À}9\î_\0w·\835.Àõ\Ïz«Ý´}¦\ 4s\95±\ f\8c[k\96o\1e\7f3_\Ø\ë\n\ÑN¨¸®\92\10\åÂ\9f\Z,\90Ê\8b&9\Â\19Q¥F\ 6T\"\"\"\"\"\"\"\".\19\12\ 1\14\ 6\95\8d\Z0\89\"D\89\ 4`@\0\ 5\8e!\8cc\11\18\84!µ\Ï!\1eæ±\8ck\9c\ça¸\ÎUR¾¥\Ï2·=ý\ì¥\Ï[¸gf´\8d\1e¾lvZ\ëcF!¢C\å.J¤\97\9aû\í¢Ày`_:\86\8a\14\88\9c\ßÀ\99$&»in\"\83\8d¦\ï\1c\1e;y\ãɧfu>¸pt\16C|ò\nÓ\909\n\Î)¤k\1c\80\Íý[iºh\89\1d\Ó\æ4-(5ýp\12\â\Ë\Ø-~¸Î\97WT\v\9b\8fz/Ѿ\ 3ñ\ï×\9d/®½}Õ¡\Ñ\ëz\Íl&^ߺ$q\ì[\æ\È8\íe¦ÝµM\162I¶Ö²ó\"[\9aò\90Q3 \83\ e\\\ç\98\Æ\ÌDDDDDDD^a\Ëü+Ľ\80\Ð\ï¸Ã\9aø\ïR\äþ?\Ù\ë\åU_j{\954K\9a\8b\Zù£úfF %\r\Î\ed\v\ÜEx\1e\"<Y\Èòÿ\0\83³\85\r®ùú38\17\93mî·¾\89óTþ¾\ØIi\ç7\88y\ 2²\Ç\7f\ãù\12\99\ZQ\Ý\n\8bc%\Ô]\9fZ}\9d\91D\Ñ:Y.iª!\ 4P¢Ô\8d\8et¡jc®~\ZýJ¾#÷\Öó\ fQuýco;\Ìh÷ú\1f\ZòÖ«»è»¬B²;     #h\ã\9d\Úv\95\ e\ÉÁlh­\8bh Á\Ú@\ 6\96\15|¬A\93g\10òo\êG\98ÿ\0$\825\16©\ä7\Äÿ\0.q\ 6)j\ë\àn\9c\ÇÄ\93\ 3»\Ó[]Â\8c(\×v`\â\ØE³\Ù5÷L\9d\87Í\89I_s¶\Ç\ 32xF¸\89ô\84\Å\É^Xõ\19x\Í\ày\91\âsmÿ\0dø\94S$f\14;Mû¨=\8d\×igNÀ]#0«-¦ñ\ëa[\Èh\18B¹µE\9aÆ°Fù?\19\110\ßO\ë?\9f_\12}²½f¯\Å\1d\Ç\ãø;<\9b\ 6\Õ\Ök¼¥\vcá«\9b¹\99\8b\99¥m\1c.P§\ÕIl\18ñ[\92È\97\ f\886°øÁ\Ü\èsq\elZ¶\ë¦\ï\10]g¤\íº\Î\áX\Ç5\8f°Õ¯ª¶\b,{ñ\9c±\8e\97S.\\v¹\Øk²\Ö\ä\98\Îp\Ü\ç\18϶WfDDDDDDQ\94õGy/\ÏFz\ea\Ãü{°¾«\9f»j\Ûn7\Ô Srê­\9bQп\11\ß\ÇÜ\85\\øv\15×\90\Ý[\f\81£©¾¥)\ fO´\ÝPº@\Ú\19\1fcj\83¨¨µ¿µ¬¡¡¬°»¼»°\85QMMQ\nM\95­½­\94\91C®¬¬®\86#L\9fa>a\83\16\14(¡,\99RJ \0O+\Ú\Ü\Ü\a\éöñEA\ã\v¥\9a\ì}¦¶¦_f¹\Î\rv÷\Ï;TH¾\ä\8ey/\993S\Ðj\æ\É,\99­¤Ó¨gÃ\83!\83ulK[\ÖX^\9a\8a®|\É\0nù\11\11\11\11\11\11\11\11\11\17\98r\×  ð÷=jSô.m\â\í\a\96´«Hò\"XjÜ\89©\ÒmôR£Kk\19,\ 5­½\8566E,c`¥3\ 3\Ãd     ¸\11°ñû·1dò?\é\18\éGeb\Þ\ïý6\9f#¨<\Ç(\8f\98\Íj\9c\f¸\à\e§cô¶~\eøó\ë\8d/Q+ \×I\89\\M2ú\8a¥\96\16¦¸º©¸0\9c\Ã\ÂSw\ f\97_O\97`\ì8\Î?$rg\\\ïo1\"\Ö!´\8d\92u\ç\ 5s-\\Ytâ°»¨\81i\13\Z\96\Ø\á:²\9e\ 5\84©ô\107\Z\8a\Ò\×0̬®¸­,\é\9døZõQq·poõ^µw\9a¿Y\àþ~º4\r{Fä\9a¢\Ë\ f\17rµ\Ù\Â\11\95\89Å\93#J\Û.,\1cX\15µ3eM®\9e\82%\Ô\ë;3Æ\831a\14R\ 4#\80£0\f6\18&\v\ÚA\14Dn\1e2\f\8cË\98A\91\8eÃ\98ö\ç-ss\8779\Æq\95È\88\88\88\88\88ª)õ@w\ eçµ\9eW9w\\l\Ç\13B\ë\1dm_\ 2\èq£[I\9dQ\'\159.˵lQ \19\8c\rE\8d¶Á°\9e®\Ô É\9d\'\Z\ä   \ 6\96A\85\93þ\92¿\1d\82\íOzfv\83\90)d\É\â^¢Àf\ËJ\ã\Æk\ê6>h´\È\"\ë\14\Åt\98²\à\Î\16·Q6f\ÇiZf\f¸q¨\ä\88\â~\19ó´\Ý\11\11\11\11\11\11\11\11\11\11\16\1c÷\93¢}rò\19Á\e\a\0vOG¯\Û5{&\1e^¿q\90\r\9b.\8b²:)cD\Úu\ev\á³*m¢´\99k\Ý\14\ál°{\84\Ù÷ÀJ\Z\7f|­x\É\æ\7f\15ݩظ\ 3\93\âO¶\Ô,\Äm£\85ùGðH\Z.N\ã\ãIpc\ÙW\Í`\99   ÷\94G\Î*6Ú\91\ä2\ê\ì\98\19\12 B\85kW÷M#Òµ\ç\ 3b\ç\Úø~;;Y»\92ó\95µ\n)2úÿ\0\È;4·>\ë\90u:¬}³4½\82\îl\8cb\ßo\Öã½­­\90w>\ïh«ú\ ea\Ú\\@Ø®eN\ 1\11\11\11\11\17\9có\ 6\Èm;\89yKn\8cwF\91ªñ\Öï±\82K\1d\96:9¨õ\9b;1\19¯\Æq\968O\8c\Ò5\Ø\Î2Ü·\ß\19Ç·º¡÷\90·­\87\947ý\ã\92ö\é#\99¶r\1e\á³o[<Á\r\Â\14½\87\9b\7fu$bs\Ê\á\8cöV\12JÁ¸\84s\Zü7/~qòͶ~\98\9ak\1dKñQ\Â\Û%i&\È\ÛûQ\16\1fd7ó\ÍÄ\81<v\9b}=|\n\Z¡Ã\90Bb\13)5ZºzÌ\8e?\Ñ\1eI#¾Ä\91Ca2y\r!TDDDDDDDDDDE¤\ï=\1e3u¿%}\ e\äm6ºª°|\ë\Åu\96\\\9dÁ\9b\8d\93õ\ëu\93¥\93R5\8f\ÖsF¢\Û\ã}µV¹\1cK        \ 2\11\9cJè¸\9cö\11T)\Å\\\97ɽe\æ\Ý\'\94ô³\Ù\é|¯Â¼\81Y²U\ eÀ6Usª6\9d\85\91K\7f\\\ÃV\Ù29dD\91I³Q\È,W˯5\8d<\æ´g8\Õ\Ü\Ý\ f\ 5/sú{\×~\ÏR´q\Ù\Ì\\U¨n6µ\8d<2È£\Ø,\é\â\9aú\9ax\à\94\Ñ\áÎ\81f\é\ 3<&\14\8d\8f\8c±£)\83\91\9c¹l\88\88\88\88µ»\æ\v\90\çñ?\8b\îôr-[½¬µN¹ò\r\95~>Ü\87\9búo\ãE\ eJÖ½\Ãi\Îv\ 5\Ï\Ã\1f\96\99\Ï\Å\ßùsK\ß\ 6\è \å\ ek\áþ4\94\ f\8dÈ\9c¥\Çú,\86D~G)\à\ÛvÊ\8a\ 3610\×\å\92\1c;\a`/\Ã\1d\96\93-w\Å\Þ\ÞÙ½\çC\Ó(ø\ëI\Ôô-j\1ch\14\Zv½Q­\ÔÄ\89\18Q\0(U\10A\b9lpÿ\0\867\15¡û\8b\97e\å#\Þ÷½\îs\Ý\ÛQ\11\11\11\11\11\11\11\11\11\11\11S¡\ê/\é\å7L<¯v\1fM\Ö\ e\9c»&\1fcu\ÈlÌ\92\1c¿:\â\Ú\î´Ç\92÷d\Äf\Ý\vc\94\Ö\Ç\14X0\83,5\90#2\1c\10¼\93Zônó&7\ï\17;o\17\æ9\Æþ\b\ìV÷¯}\Ç\Ër\Ù\"Þ \Óò+\1d\13\âW\ã\10\ÄKó\v\âA\84ß\9c\Ù\î\Ë^\17\0\8e\96ª\"\"\"\"\ÕO\9c=2^û\âS¿:\ílSM·\'\\÷¹\Ôñc\ç\ØDz­\83\89 \8e<e\ì\e³)¡$\\\à\ÙúÛ\83\åù\Ë\1cÆ\91\95_ø0\ã¸\1c­å³£\Z=\948³¢\Ùs\16\89\82ûc6N¯©\ì\Û\\\19DoÀ\99\Æ`Τ\8d8ek\1cð\12;\f<|\Æ\Õt²\"\"\"\"\"\"\"\"\"\"\"\"®\a\Ö\ßÆ\9a\ag:W\ÊUõ`\ 6\Ñ\É\1cC\Ê\Zö\Ëq\81\v\12¬ ñ\Öͧ;^\82\8d)#U7rµ,`\95\ÄÀ\ri0\83\Ëq%\Í\Æ\É=\11\í.:W\ÜW\å¹À\1d\Ú*V\8dþß³\8a\Þ\'Õ²f\ã>ß¾XÇ\839Ǿ}¾xý±\ïû\Íi\11\11\11\11coqµPn\ÝNì\8e­\'\ã\90\Ûp\97%       \ÍxðV\93 Ô­e\8cN\1er\Üg\ 6$v\8b.ýþ\1f?\9fÁÿ\0\1f\83ªmô\ÒÀ5\87\9b¾\89\à@!\99\ fk\åyò\\Á¸\8c\8e\18¼\ 1\Ê\ïi\Ì\æ\ã8\10ÿ\0# \vHLµ¿yB<g$#\Z\ë\89\11\11\11\11\11\11\11\11\11\11\11\11\14\13}p:\Í{¸{¡;\8f\Ó\ïj\1eJ\æMg\ï\Î\e\9f\85|\9d_Q´úX\ï\87É¿d\98\9f2c$ø¿\ê\16p\ÌdyvsGÑ«­Á©ñ\83¾]Æ\84\18òö®\Énó¬d\8cM\19,\rYK¯R\0ò\b\Ö\á\Æ b@\ 4F=ùs\9a\18\16\1d\861­l¸Q\11\11\11\17\96ó\94\\N\áNa\82ì¹­\99ż\83\15\Îo¿\Ë\18\91©[\879o·\ïò\Æ\1f\8fl{ûû{~\êª_I\æ\96M¿Ì·\ e\16F\×i\1cc\Ì;£\9eO\97ò\8e&°\ÊB\á\99k]\9c\10£¿p\19ûa®\É~\ esX\ç;\16\Ö\"\"\"\"\"\"\"\"\"\"\"\"(Lz\Ü\ëp^\9eô¾\ã\ë÷\Ì\1e\Ê\íU¿w·ù\7fªñ}´¯¯\åýqöþ\8b\87{\7f\7f§\ßý8Y\á\é\12¯\Ä?\r:\14\8c\ f\9bny\ç\8b\f»ÿ\0[#\Ùa\Õý\9f\1f\15¸\17÷ÿ\0+úÿ\0lI\Ý\11\11\11\11um\â\b¬ô­Â´ÿ\0\äXj\Û\ 4\13\7fõK©\97\1c\9fþ     \95\\G¥+\82\ë5\8f4\9d\Ç-?\Ø\n~\ 4Ò¹Ã\8e*!·ù\82\Êû>Y\ 6¿\ 1\Ïq2\ãý\91ai\í\0½ß\9fv\È7\Ûò~\19\9cY@\88\88\88\88\88\88\88\88\88\88\88\88¢¯\ë\ 3Ñ\83±x\9d\9b·\9a\e$;\8f\8c§F\92\ f/\81\'c\Ø!\ë\9fhð\ìý\8d\É\âL\97\19\es\ì\Ò\äosp\\a\Ù3\éu\Ñgh\1e\18z\Å\ 2Àoa¶\e\1e\82\ç³\á\93A\Ý÷«\8d\96¼\98\Çú\98\ØV\0\v\1fþ¶        ¹R\ fDDDD_\à\83\19\86A\14l(\8a\f¢#Zñ\90onZñ\91\8e\ÆZö=¹\Ë\\\×c-ss\9cg\19\Æs\85\ 4\ßL]\ 4z\ß2~q±\1f\18\18¨9\1f\92(#   ¾\Økc\9b´ü\8fñ\Æ1\8f\7fÙ\8d¥\13[\í\9flc9þ¾øSµDDDDDDDDDDDDQÁõ`\ 3\ 6ð\95\Ø\Òe¸\Ï\âò\a\8c\1f»r\îp\Ò#|±þ\Ùö\91\96ûÿ\0³³\8fî³\9bÁ½Xj¼Bø\ï\b\841fWVx²\Ð\Ù\e\ZÜ\98Ö\94 \9d\92\978n2Be\86\e2÷{»\à\Æ3\ e\ËX\ßm¬\"\"\"\"\"\87G\81m\ e\9b\8f\11¦¤\ 1\ãÀ¯\æ\Zia\1c\92<\Æ\Éw.Xå\9d²\È\Î!=\Ýñ\91c(\Ò\ 6\Ö|\01\11\8c\0\Æ\ 6\bl\98º\"\"\"\"\"\"\"\"\"\"\"\"\8f\17ª~\8e\Æÿ\0\Âgi\ãV\ 32\ f\ 2ÿ\0\83/\ e<9­ö®¢\æ\Í\12\Ö\Ôù\Ë\Ü\ÖûE­\8b*V[\ï\97?\éø\r®#\98\Ü\ç\1f\85\88Ä\89\âK\Ç\18\88ï\93\9dÓ¾\b\93\8cÿ\0°\æhTó\ 4\ßú\ 4v3þ\95³¤DDDDZ\1cñ­\Ö\âqO\92\8f.¼\É*¥±\äs\×6RZC³ül      ò(õ\Úz¸q`\äøn>ñ\n\æ^\Ãd<e\Ù\ÃMk+-n>Ns÷Æ\88\88\88\88\88\88\88\88\88\88\88\88µ\7f\æc\83\ìû\19\ãc´\9c?PfF\9f¸h\12\ë\â\Í [(p%\91\1c       \ï\8a\ãGt¦Ä±$3¸\ 20\Èü3?\12\87\18É\87\93\1d\1c\Ñ_\Æ=8\ë\ f\1f<,\8f\8d?\83¸Ú\84A\1f\×õ\8e,\r^¸Q0\Ü\ f?\ 6710\17`xöȱ\9f­\Ík\Ú\æ\ã*\11\11\11\11\11|*\9df\86\8e\95Mdx3¶)\8d\9fw$?g\Ùc1\98&\Zsü\ÞöüÛ\82\93\ 3\eü\îþ_\Ý}\ÔDDDDDDDDDDDE\Ö7=F\9b|\Õ\îu\r\80e55\ì\\C°\18\1eÑ\95\áÁ\84|a\8fx\Ê\Ö\ç\ì\v\91»\1e\Ø\Î=\97Ñ¡¦\83®Q\ÓkÕ\8d{+hjk©«\ØGa\äd\Z¸a\83\11¤{Z\Ì9\í\0\a\87;\fn\1c\ìg8kqûc\ë\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/ÿ\Ù',4,1,'','','',''),(20,6,0,'9305bf00cb1412b6','19504305895bf00cb14111f611783866','2018-11-17 12:42:25','2018-11-17 12:42:25','','','Profile Photos','person-300.jpg','image/jpeg',80,80,2354,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v     \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0+\10\0\ 1\ 4\ 2\ 3\0\ 1\ 3\ 4\ 1\ 5\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b        \11\n\12\13\14\16!#\15\17\18\"ABÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91û\Éõ1Vü\î´\Ìõ7¨\10\95M±\ÛPCm;\n\Ûf˲\9a\ÏA¹\"&\b\n(ø\È\â\Åz\é³r+\ã\È*¶£Á\83«´øN\Ù\1d\941dVq\8a¿+:}\íw¶N\ 5\1e\êz/Û\9d      \Ó\ÙI§Ì®\85¬¶\14Ö©´\îu\ 6J\877\Z¦\8bIý³A¥\Ò\ 5y§\ãó°d«2m\12`\ï\a^¯N|HKFow\×n½RºÉ­c5m\ eö­0±\Î~¡S\9b£r\ì\í\át<Å\8e8\Ï\10M·i\Ú-2\â°ö\ 6\85\86z*¸\e\ë}\È\Ø`²C\Ø_ºñ\Ç\1c\9b\ e\È\'¨\1d0\í\17g\92\9d£´v\Å\ØpQ¦aY\12V\Ó\ 3[=ú\94AXFR¯\Ó\ËY³\13\Zöp¤|6R³÷£\18û±Po\97½S¶zÁ\ê\1e\9d\ÓûBÁ9d\Æ\é\ÚV\1d­Ø\9b¡\86º©ùjl.e6NÚ\94\"S\1f\Ú\Äõ¼pÏ\83\8f\92\ÂUú{\r\8e<\8c·øÑ\94\â\è*\8dF±@ªV¨Ô\98\b\9a­:\9d\ 3\13WªV`\82b6\12½]\81\ 1\88¸hX\98ñ\90\Ø\áF\ÆG\8a8a\n\Â\10\ 3²\ÛhN\12\9cc\90sÑ¿7´?¦\Z*GLn\83\89\ 1\ 4\96{^\ìm}k\9e®Y(\16I\16F\Ãs(\8f\8e\92\12\ 6\1dú\90#\×#Y·\ 1+\10{\ 3|2\98ù\ 4\8b&%hZ\8f\ÐOL¾\9e~ÿ\0\Þ:\ÙvÚ\97-\99¯ô\Æ\Ä\ e·³ôE¾\Í;=ª¶\8e¶!\0\ÉDZõ\ÐvW\Ï^¾\93¶Q\ä\"\ì\94û5y\0\Z\ 3\ÅG\ÇÙ\84\97\8f\12J     û]ô\ÆÙ¥\ï½C«·\86¸\90T®¿\Ü\Zú\9d³iR.!-:eZó_\8f²Á>û(qÔ°J\ãd\87ýHøqyaÿ\0\È\ÎT¬£9\ç¥ñ\Ç\1c\Æ/´Z¶Å¹¼¢\ï潩\bD\8d\92O¬\Û\"f\1e4D¸\ár\86R\â³wDPm5\9c-\â\ä\Ó]P\ 2±\8f\9c>A\r´¤©+\Ês \9fÑ\9aôK^±_\Ðz\ÛA\ät\Çn3\ 6\97V\Â\7f)\ÉÙ\9a@\82\9b\1d.g\ e¬¬E0{©Hÿ\0.`F\8dZñøP\æqi7\1cªk\êñ\9f¦\\=\90\94\82 4Ä\85¢±×\9d\1dL\Øc\Ä\ e\97\Í+c\14\åª\Ã\1e\19\b\13\ e<l·\ì;F¿\r\b\ÊrV\Z@`\á\1f\Ð\Úyc\97\97\Z.\ã\Ö\7f9úS¡ö#d\8f~\Ö}oÕ\95\ë¬yk\Êß\85µ\â®   \Ö\nò\95\9c\'\å\15\ÉS\n\82g\1f\18ûY\8em?õ\É\ç\Ç\1cs\89ö\19%\97\86!¦\ß\1c\86\9c\1eB]e\æ]F[u§Z^\14\87\eq\nR\1c\94­9\ÊU\8c\ã9\Ç+\10\î7Vö7\ÓC\í\ 6\95\îκªJXúIy\Ùö9\Ú2\á\11ýa\ë«È\921\e\7f¯\12\vy\ÏÀ5¾\93W°È\9b¯\17$òD°E\81W\9aI.\1d\17f\16\"\Ê\íA¶µ\ÞúÕºÿ\0t\êKDu\×Y\í\Z\9c\8dj\8aR\Ô\f\ån\Â\v2\11\874\87\90\ 3¸±\ÞJ    \f¦\990\12\90ðf0ÁL<\Ò#·¢\9d¤#¥\1d\Z\í/j£\ã\ 4\99\9b\Òzv\Ùo«D\È!\Õ\Æ\É\\\Ò&\"\éAJ¡\87\19}Q$\Û$a\9a\95\Ã/4÷øõ\13ø\9cmϵXÑ\9b\ég\è`þ\8cv\9f±^¯wP²÷E\9bV\í\Øò(\9f»\12\93A´vNÀ\8c_\'ö4ð©\ÃA;\9da\14]]\Êd\ 2\ 5\Ì \12\96@\ e\10@¿gñ\9b\Z8\ã\8ex/g;3¥:y£v\ fc;\vw\8e\×ú£ZC.b\É>\7f\Ü\ëΩN h\ØHH\æ¾\ã&\ì\93òO\r\11^\82\8fm\Ó\å¥K\181\9bR\Üù\Æ\0z¿\Ø?Wý¤\'ým\Ö\Örü°ó`ó\ÞƵ±D\Ô*\97¾\éöZºÁ.\ f\9b\ 44µö.\ÃD\Õ\15)&\9a\ËÁZ\"ª\ç\901yÈ\90\ 5_\ã2\ìø¹e\94òǧ\e\ 2·X®v:\99r\î^*d\e!\13!Ü­£°;\1e\81¦¤\99@\Ò3±\Õ=\89?\'®kR\Æ\f\ÚFq\êu*¸\Ã\"ýÂ\880\ã-m*tQh\94\9d_M¬k­oR­Ð¨4¨Xú\ÝB\97O\85\8f®\Õ\ë\15ø¡\Ð,l,\f\14H\â\Æ\ÅF\ 23hdP\82\19\91\Ùm8J\11\8csÇ»y\×\n·oú»¿:½t1ø\Ê\Þö\ÕW-jtȬ\à\82\1e²\Ã\12\fe\8c1\Ô\ã( \Ê\ìªÁ\9c\10w\1dm·É\8f\15\86Ö¬óO¯§caYür\ß]\91òC\Ñ(±ô%¯g\íF6·XöÍ\9f+\8a\Ó\Û\Òa0QÔ«$]#cJ4\f\f§\îHZý&f\90:\Édפ3b¨\Í\r\ fs`*ñ\9b\È%IZp¤«\nJ±\85%I\Î2\95c8ù\Æq\9c|\ã8\Î?\9cg\1f\ÆqÏ\9e8\æ¢~¶S&½Sö\9f¤\ÞII\99(\8e©\è\rn÷w»s\11\ZQ\ 13q\Â$L\87¬\Ö%r\87\ZS\8c¨4\×j\0\16\e\88*8}\Íe\92\1f92(w\ 6\Ûf\12\12\1eµ\r\13\\®\ÅGAW\à#\0\85\83\84\87\b\98xx±Z\ 62*.86\Ù\10\b\èð\98d@\83\15¦\87\14f[a\96\Ð\Ú\12\9c}\9f\1c\17m}BÙ\90n\Ö6=\"¡°+o¯ò¿^»V¡­po9\86\Ük\ e;\13:\11\à8¼4\ë­ý\ë\1f*ün8\8f\9fµj\Æ`·d|\ÑÒ»\9a±÷i\ë.\Å\évâ\80\86l\rsºú\9bn\9c\12µ2#Ò\97!E°\Ñ*2Pú\ëgS\Ç!\91Z\92¦^ë\92 \e\14\Ò\ãÀ*\19\Õ2p\Ñ\a\ eþv#f\í~\Ïù½\ßÖ«\ßï·¤\86B\91/°j\91­\ÂU»)£¬©\13ö^ñ\82\84\1d\91Ä\89\92,y\18\a-`\0$|kk´×\9d\16:4÷¦¡¡ó­\Ç0\1f\ÖMj8\9fPߨ\e)\Ö\Ý(·ºY\Ò\0\ 4-yVQ\14\1d±Û\90&Eµóÿ\0\14¢@\8d>,\8f\Æ>\7fµ\87³\8fý\ã\99ð\ã\8e8\ã\98\15\90\Öc\ÆýKõ\8d\95\14\9c\ 4»?\8d\96\ám       a\nm3\ 5\×;sR\8b\8d$\Õ%Ô¶û\ã\83*\bÍ­L©Ô°\b\È\Êò\ÛM\á¼õq\È\1f«uúa= \î^ÁLr\19E\çª}\f\8fÄ\9aXRra\95]\87Þ±M\19d~4¡\çD\10\Øe-¼8\ê\ÙeᲬ6\97[§\87\1cq\Ç\1c\81²ôt¯\Ó\Ê\ 6\ÈTB³\96:\1f·)M\Ïa¼ý\88ýG`t¤\ã\91+w\1f\14¼0Ù\8d¶¯\åXCªoøK\9f\13Ë\8ep$Q\90K\Æ v\12Y\f\8e3\å%¦\ÒKã\88²\\\15\87\9f\Âpã\8c\8cá\85¸;KVP\Ê\Ê!M¥*yÌ«\9f\8e8\ã\8e\18ª-³ò;99¡\9d\r²ò\ÚrB\ 5}\Ö^xt;ñ÷¥\97^\1d\87\1co\19ûV¶ZR±\9c¡9\Çg\9fÿ\Ù',5,1,'','','',''),(21,6,0,'9305bf00cb1412b6','19504305895bf00cb14111f611783866','2018-11-17 12:42:25','2018-11-17 12:42:25','','','Profile Photos','person-300.jpg','image/jpeg',48,48,1488,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b        \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0   \11\12\n\13\16\"\151\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿ø\17t\8f,\ëiý\Çh\8c\98Nq\87\ã%\å\â\Ò\15,\19\10?¾e\ã³grF        ,¼¹Á#\90Ú\95\8a\ÉH±\ÈÛªpVYjm\9f_HL\80Ù¤\Ónj®ª\Ñ\0·r¯¨3_\Ä\ì\16\9aúM\Â0\97\1cn:zE\raĶë\8d\90\97YoU\á\á\äGü\87»\17`q\1fªN\89Ú\9a\9eL\È\r\99oMgKSm\11ϸ$\9dLÝ«*\9aìµ\9e$ƾ\1e\ 6n\12°©\ã`\8faH| ¦\ã\Ìa\Æ\Þaµ¦{~\'>»(:\v\84+½»j\82\ 6o£û\ f6;+\×Ya\9a>\ÃU\ÔaZ\ä\á«\15H\99b\7fqc1oz\vùý\95\á\ÝiÙ\82%a\86\93\19\81\ f\7f\90]\93\Øo)s\é^\Âx[©-4й\é\Ú\Ñ;\9f\9c\çjT[\8e³ºP\ålQ\Õ\â- \ f-\\v\Â$´\19\Ó ½g\133N\86]c\a\ÉF¹\ 6|J\9c\90 ^¢»ñ¿f<\13¥:Ī\àu\vm¬Yª¾È¬Æ¼óñ1[\Z\8d,EnÖ¨E\93òSpRÆ\86\99\èAKp\82Á\8a\95\10\"K5ñ\Öcô³\Ã\Ék\î{\85\å=\8bz\ä\è\8eeª¬Vö<\Ä\b\17}O\93^À¡\91³µÔ\8b\16Ê\9c9E\ç\å!\rf*9ʱ\'9\854\13\13n\14òT\Ó+NS?Æ\87¥!ö\87­j\a5X\Ä&¡\Ñ<1)d\ç-ù«¦\Ø\\u\9a£)_¶\Ù]¨\1clQ9Á\8d\891Y\ȸK\8d!¬\Ø\á¬`5öÀ\18R¹_\ä\Ï\Ó\16ñy\ËPú\ÍÒ°     \9c\1fh{\ e\17G\Õ\Ï1Ô\8f        P¤\Å\Ü\é\ 4Û¦%\1dú<\îU0ü\84]y?¨gp\1c)vI\7fº\v\8c\ 1\92«Ï¬þ\17§ú\à\â­\'\È\ÔùuY\7f\88\"I·Û\94Â\85þa°\ì\ç\91a½YX\11j[\81G\Èؤ\r\Ä0\ e¸\ë B³\1c\13\Ï<\è\ëuo\8f\9c«y\îj\1f:é½\9f½ö\84¶!5\Ù6\ 5¾O\è§\\\1e\ e³\16\88\15\84|¬£\8a\12<Fñ\97K9ñ\Æi9q\Ô\ã2Û\8eµgKw\14\14\'c÷-\Ç`k\ÊF\Ï\1c[§=ð®»·Mkú\1e´\ÔóHÄ\9d\1e[ \äjf\ÆZööß²WÞ\89\99±ÁX\'X U\1d)øF©87&$Z\99®4\86\9b\Ó\äX\Ì\Õz²\81®Î¸\98Ü\8d¾F\9dS\84¯\É\Û$Zp§Z\90³\ÉF\ 49\Ó\ç6\é¦8\93%\880\9c8Y+Ã\9fg\Ýʧ\7f³ÿ\0[ò½´W0\îý=x\82\Ö}g\ÄÛ\827sh\vU\Â8\Ù]}<ú\ f\86&Ñ®6HQ8ÿ\08\9a\9d¼h0YT¼\12\95/\ 4c\b0Q\Ìe\Ò\Ä}\89\Ù}\88÷6P«[\a«5%·ZR\Ô\Ìx»;i\ÑJ\ 3ljmO*Sì\82©;\81\Ðj\acFk\Õ\18\ï\ís`\99­\19¯W#s\89\v\ÉUa[yô9q\92q\ÓQ±ó0\ç\89)\13,\b\92qrq\ä4X\121Ç°\ÙA\1c\11l-l\12!c:\Ñ\ 3\10\Ê\Ö\Ó̸\87\eR\90¬g3§Û\86»\7fmð.\Þ\Ö- \97\99½\Üù¯((­\å\Ç\ f¯\Ëôö\9a\12\Ë\Z\âq\8cÿ\0Õ\92¯¹&\ 1\Ê\Î2\86\Ã!õ¯\19BU\8c\Ñ\á\86\1c1\Ø\10FZ\18QYha\87a   i\91\Ça   i\96Ym\18\ei¦Ò\946\84\ã        B\13\84§\18\Æ1\8f=¼<\Ï\Ûj\Ð\17\9a­\96\93k\8b\ er­p¯\Ì\Õì\90²#¶T|¼\füq\11S\11g\nòV\É\ 1\9f\1eY\ 2\92éSn²\ê\ÛZr\95g\1e#\1e©«S´¿]ü¥K±\99 t¥7Y·QýÒ¹w\'·\eX\9e\9b\83\82   ü¾¥»ÿ\0\9b\ 6\ 4tsXR³õ`VÒ\9f\84ø\êl\n<VÅ«\91T\9a[­Ç\93)Z\96Z\Ø\Âr\æ     «Y¡\íQÿ\0\18^2\9f\8c\ÈB\8b\85ü\ã\ç\bʲ\9f\íñ\æ\Ï\Ã\Ã\Ã\ÌVº£E\ëjd%\"\15\×Þ\8b\81h¶Cp\9c\ã/e²¤\v\90RW\9c\7f¿£\85­       \Ïû\Ê\12\9f\9c\ç?9óÿ\Ù',6,1,'','','',''),(22,0,9,'9305bf00e7f8a224','53312796025bf00e7f82e82896954942','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','15820583805bf00e7fd7909940374120-4.jpg?ts=1542459007','image/jpeg',300,300,11008,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b        \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 1\ 2\ 3\ 5     \ 1\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b \n\11\12\13\14!\15\"1\163A#BQ\81\82\17\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/r9¸f3\9cDëº\9e±®\8fð±g\ë]L\ã\Íϵ[d_\å\"¾þW\äñ¿\19Ķ¬\94Hx\8c\ë»x\12.¯+\'=­\91\ 2ûY©´­\97\18f0Hð\96\11\åF÷\98}`\1e\ 2\Æø<|\Þ\r\á\íRľ\Õ\15\94\ 1v=¢¢/\ÄyÀ\8b¸\ÛZ\83\13d´\í{\Û.%\ 5F2\1c²9#\93\181\ f©\1e\\ó?\åC\9b¤\96VõÞ\8e\Â\r\å\95ùMÆ\95¼M\ãG\a\Û9À£\ eO\1d·W\9aøag\Ä,\8f\"Q\Ø\á\8cx7\Ú\æa\Ë\Ìõ\ eòù6\ä-\96§Nл\85\Þ\Ý\ãq¾\90ø\Ôz¶¡\Ø.À\ì\Û-Ì¡\80²\8b\1e¦\8e\9bn\9bic!±£\9eI\ 5\ e)\88\Ð\0¦sp1½Ø\95×\8f\ e\98ú°9J\92£h\87\Û^I\ê\×\e\\Î\8b\996\1d\83\Úuý«x\95L\è¸8®«x\êú\83\99\90\94\87üV\Ñm©Ø\82P¦bH£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8b\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)\ 1T\É2\Þ1\12CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ø\êy\ë¶WPKüg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ek¾º\ê8­5¼ù\Îo\Æ#\àÁº$\Z\Í;\Õ\äù¾G7\9fñ¯j¹\8a\ïs\8b\ e\ÆE\8e±\Çõ\Ï5/\19h\î>e{\aR\ÓA °¡b;\'N\f\8ben\18\ÓeEÅ\96c\19\â\Î\ 5¢\90¯\88\8fN\ßm|\9e˪ä\9d\80\13ºý\Õl\96\14¢òþ\ÑQ\92Zo\91[ &\9dU\Æt\ 6(¤J,\8a¼û\Ç\Û,\ã>\8a1l©\çÂ\83²ÁþDp\ì¯ñÿ\0\â+¢þ6õ\18\94\9dv\áº\0\î/\ 4\\l<½¶B\87±ò\8e\Ë2>\\|\Zf\×>9lb\Ã\f\ãÎ\93UY\fÃ\8dL9Æ\85\a-\8bñf6h\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88¢#\êAõ\ 2\13¡t6=:\êm¥|þ\Ø\ï\14$ÿ\0\16\82-}\9dw\ 1\ë6AÀ\Û9\Ð\1f\99 ±\ä+P\94\8d\Ö\é§\0\95µo\ 4«\8d\98\a\8b\ 6\1e·µ\Ö+µ\í{6÷³_n{\9dõ®Ñ¶m\16³o6-\8aòi\ì­\î­\ì\8eù3¬lgIy\ f&T\93\91\ä)Hü\ç9϶=\9b\8cc\1f\ 3\Û?¯\×÷ý\ãÿ\0\9c{\ç\1f¯ù\ã8ÿ\0\ï\vñO\a\Ó\Ï\é\9e\ eÿ\0\ 3M\î÷\91-\'.\Ôg\8e=ÿ\0\fõ¯e\86`\9a\â7\Ï/\83¸r\ÍL \8d\8f-­d\9am:G³\ãDx\ä\Þ\r·\'\Ä\rj\Â\Z:*mb\9e»_\×j RQ\ÔE\14\ZÊ\9aÈ¢\85\ 2\ 4@\ã\â0E\8a\ 60B\e\7fyökqòv\\÷g.s\9d\9f¬\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88µ\ 3\æ\çÉ\86»\âó£[\×3\ ePK\Ì;§\ß\Ç\\\ 3®=\8d).¹&\Þ\11\9f\ZyÀù\10ðú]V\eK°l/\14À\Í\15\\B¾´r§þ<CS{\É\\\95¾ó\16ý¶r\8f(mw\e\Ç \ïWs6-³k¿\95\99v·Vó\Éó<\99\ 4ö`\Ä67\f\8f\ e\14Q\82\rt\10Ư¯\8d\16\fXñ\Å\Ñ\×\îs\9cÿ\0|ÿ\0§·ü°¦\89\éjðt\Î\Ë\ï\15þ@ûQ¦}ü\ f\Ç7\"7\ 1\é×±2øü\9d\ÈT²\ÆW\îVUòÃ\80\17P\Õ$4\7fÁ\17.\96û;\àH\99\88µÃ®£·\9deh\0\b \f\14\820G\8e\ 1° \8e\0³\ 3\10B!µ£\10\84\83\e\Z\Ö1\8d\ÃZ\Ü7\18\Â\æDX{\Ý>øõ\7f\Ç\Ç\16F\æ^\Öò38\ãB\9bp:\186,¤»Ø§\ØZ\90.> \Ö\Ò\ë\Ðlm\ì\å}mùb%|93\1c̸Ì\8eð\ 2IC\1f\Înõ\89ø·\ã\È\í7\13Uóo`\8d\î6\12&½¢\Ùññpò\11\Ís\ÄNI\87A\1c\91\ÄÏ\81\18\123\8c½\82\88G1¸&,\Äõºu\ 5ò°\Éý,\ì\8ch_/lÈ\89·q\84\ÙXg¾?«\10\Íe^,»\Û\ß?\ f\Î\Æ=ñ\8c|ÿ\0~ø\Úw\ 1ú£¼:s|\Êj;>\Æ\Èá­\96\Ò+\8f&\1f/hÛ¶¥®U\95¹\Æ?\Z^û.\81º\83I\9c¼L\ÆKf\f9\Ï!\19ò\8b\1cò\99¿\8dKrÔ·\Ú8\9b6\91³P\í\Úôö±ð\îµ\ËX75\87\Ã\Â#á¬\99\0\Ç\aÙ\81\1cDx\\ü\14m#>ln]\8c\88\88\88\88\88\88\88\88\88\88\88¸\ÈA\84d1\88Á\bLy\nR?\f\18\Æ\Ìe\Ï!\1e\ì\á¬c\e\8c¹\ïvp\Ö7\19\Îs\8cc9U\ez\9aü\87\Ùw\8b\Èþÿ\0¥k\e#,ø\'«E\93\Ã|s\Zª\Ï3h.ö:¹%/!n\í\ 3¡E,k9·\å~ªX¦\91`\18ñõ6L\84øD¸±\89\88\ê\"\Ø÷\8a/\1fÛ\87\92¾\íñ\1f\19>\16©mhí\93\96\91_ :\8f\19\ë­üý\86|\87\8c\à,s[å\91µ\9a\É1ÿ\0$𬮣ٺ\14\98UópÛ¤ø\87\89´\ e\b\ã\r\13\86ø«[¯\Ô8\ç\8du\9a½CMÖª£\82%}=\15<vÆ\87\ e4h\Ã\fp±­n^\æ\0!\ e\b÷ýA\13>,Ç£¢\"ñ\1e}\ë_\0ö\9fD\91\Æ=\8d\áþ?\æ­\ 2L\80\Ì&§Èº\Ýv\ÉO\89\91\È3G\98\18ó\Â\\Æ\97\1c\ 4\98òc8G\ 4¨ñ¤\88\8c<`\10pHòù\é\14n\9fM·ö\a\Æ=\85͵mh\rwyÕ­ºÑ\96\96\83\0\ã\ró\9dÅ\9b\85\86b\9d\ 3£J\99\8d{j\97bs\16Í\91\á\\VV\Õü\v\ 3\9ak\8dr\â\×^\Øj¬¨¯è¬§S^Q\ÜÁ\95WqMqW(°l\ê­k\'\b\13k¬«¦\80ð\çA\98\0Ê\89(%\8f C(\Þ\Ì|Õ±Þ\83y]\ï\a\8dͲ\1d\ßZy\92ö£Qu\9c{\r\8b\88v9\126\ e+\Ú\Ø\12H)cYj²\8f\81Ö¾Y¤fD\Éú\é\é¬\'H\8f\ fù)3¢\ÆlWZ#\á·Î\87\\üµhÆ©«\fn&\ìÖ§S\1e\7f ðe½¤s\È(\9a\11b\Ça\ã\Ù\Å#$\íZ\9cinpó)\ÑÁg\16\9e\f2¾Th;\ÊDDDDDDDDDDE®¯,\9d¹¯\è\ç\8f^\Ïö:XbÊ°\Ôx\ÞÖ§U\812fk£Yî»\8e\e©\ê5\8f\9e\10\90\Éa{o\n$S\8a4Dzi£{D\92ß\90\9dI$¹r§Ê\93:t\99\13gM\90is&K1$Ê\97*I\1ci\12d\È3\9ec\È9\9eò\98\Å{\ÈR=\Ï{\9c\çg9þtV|ú?ü~?¯\1d-\Û;\8fºUÏ\81\Èý¾°\89\9dtS\ãÈ\89ø|\'¦É\90\Í8\91\86I2bL\8f³\Ûʸ\ÚAo\bpI*\14ø\15\11\Ìúh¦Ä¿\Ñ\11\11\14(}O¾\ 6\ê¹\ãD\Úü\85u7Mü~r\ã\Ê<Xso\1c\êu\99yykK«ø\à\Û-U$\ 6\áó·­^\e\88fÿ\0\e\18\17\Õ\0\Í;\ãZþ5\16(+eE\ï=e\ì¯0u\v\9c8û°¼\13´\ÉÔ¹\'\8d\ïa\Ý\ÓN\e\äf\ 5\80\9cd\99C}\124\98\84²\×\î@<õ\82\Ù1\8cð?\ï\85*\15\80\8d\8c>ÿ\0q¯\92\8e\9eqwg8ðø\8f/`ª\15G!j\æ\Î\19c§r5(\Ù\a\97\19\ 1[\1c7!\99\9aÉ\98\ 6 \ÙB\Ã%UÈ\9d\ 1Á\98m\82¢\"\"\"\"\"\"\"\"\"(\88ú\Êù\Êw\1ex\Ù\ã\Π\8aß²7a9\Û_¤²n>¼81x\à\f\äQJË\9cß³\"dú\88q^1»\18q&\ 4\8f\1ceµz¢õ\Î\0\â¹\\\ë\Ï\1c\'\Â0ffºo1ò\ç\eñ\\;\f1¥\Ì \\\85¹Sj1\æ`n\ËZL\Å-»\ f\86;8kòÏ\8es\8ce^\83À\9cC­p\a\bñ\1f\a\é\Õð*µ~$\ã\9d;\8f(\àU\83\11«£W\êt0iB\ØQðÁ´\11\ßøy \ÂÁ\8d£kðÖ\8cm\Æ\18\ß[DDD\\\12¢Æ\9d\ZD)±Á.\1c°\Z,¸\92\829\11¥F\907\bñ\ä\0­x\8c\ 3     \ï\11\82V8e\e\9cÇ·-\Îq\9a\81½G\9e9\a\ã\ÏȦ\ë\1fNªm\7f\bö4\16\1c\Ý\Ä\ì\0\Þ\È5\ f¸¸\92\r\çO\ 1\ f,¦;\è67b\Ó\Ü0\ëj`AÙ«©*cf5S\9c´\ e\8ac\9e\8e\ eê³\88;«È\9d@\Ú.L\1dg³ú\91n4h\13\'eµ\91¹3\8f+\ç[\Î\15]\7f\Ë\ä[Ý£S\8e\æ\É(FLf¯QÁ%}a\86\ e\Í\ÄDDDDDDDDDE\ 4¿[þ\Ä\Üq\ fCu,1ø~y#\97v,\93å\9c\8c\8df±¬\Ö5\99o\ÇÙ¯\ e^÷a\Ù~rö\9d\Ø\Ã[ð\Î_]\Ú)\13úZ8\ 3R\ç\ß0\\,\ÍÀY\93\v\87t\Ý÷\9cª¢<#\91\12^ä\82®¾\98S\ã\e\19\19\â²N\Çù-k¿Ê\96\b²>$úr\"[¢\88\88\88\88¢C\ë\12\ê\í\8f2x\ä\Óy·Y¤\87*û­|\ÃOµ\ì6!­\ 4\8b¢q\î\ËOq©\ÝW2n\1e)`«\81ioU³\Ì\Î\7f&(EK#\Þ;\v\aW*-\8fø\82\æ\É]xòq\ÒnU\85\1c\92¤\ÕsÎ¥¬\8cBú¾M\Ç%:O\19\12C°l\àn\fAn\ f\95!\8eùe\à      \18\11\Îk\1dv\Ê\"\"\"\"\"\"\"\"\"\"\83/­÷^    :ÿ\0\Ñ=­±±ù\11y\8b\955\ã\Ëþ¬\çé\9f¥RYE\8d\9f\ÞF\Üeõ³\v\8fl5\ïö\Ï\Ë.ÀÛ\86WB\8aZ~\8dmnlÿ\0*[\9e\ÐÆ\8f5º\ïV9*¶S²\ìý­\9f±m\Z\13\ëð\Æ|rÜ\8dÑ©->\×ü\Ú湡kXü\11\1d¤¨\88\88\88\8bR^xj\âZø{ò\12)a\11q\13­Û½¤w\11\8cs\81.°Q\æ\0Á\Ëñ\9f¬¸È\9c?\9b2\×\å\84 ñ\9fb;\19¥\Ñ\16eø\ë\Ò6nD\ï§N5=B´Ö·³;)\Ãv\"\88\a\ 5¤mv»½\Òl·³¿Û\90Lp\ê\èj,­\f6¹\Æ(a¼Q\84i\ f\10Iyj\"\"\"\"\"\"\"\"\"\"\8aG¬+\84 r\'\8a±ò´\91d³:ý\Í<}²Ö¹\84;\1d\1c»\í\Ü\1e4\93 \8c\17°\Ï\e\10ö3\Ç ¤\å\Ãl\891NÁ\äÁ\19\ 5Uò)rz46\81\×ù>\ä=I\â\Î_²õ\8f\11ÿ\0£\â7k\e.¤\'\a9\Î~xq\87°<\8d\Ã[\96\11\Ýó\Ës\86\14DDDDZBõ\18òö¯\Ä^\1d{¢ý\96ÀPI\È\Üq\9e)\×\Ú÷»%\95°oVpjk£\ 4\fa\nl\1c¯ür9­h£4ø\91 £\bÝ\9cÓ\88\8a\94^«\í\\ùå\8b\8d9^\f\ 3¿Jꦿ²ò®\Ûk\87\Æ\Ì8\Ö׺õÞ\91§U\Ì\13°Y\99}\9c»\9b[\b\'\8e\ 6\80S(D9s#fDaK¶i\11\11\11\11\11\11\11\11\11\11\7fº\ÍI\Ü^\98vG­WÌ\93ø¼±\Å;V¹\bð#\82M¤;¬×\92m\14º\86\11\Æ+@\ÛE\89\88G\È\ fô\95\Øvc\Ég\Ê9h\é\Ûu]\87EÚ¶m#m«\91Gµi»\ 5Ϋ³R\Ëȳ*\9fa׬d\Ô]U\É\È\b`fE}\9491\r\90\98¢\É\ 2ì\8c\8fg³³×\94\90=)¼Õ¬ð×\98~$\8f³\ÊdAò÷\eòo\ e\10¿6\ 5\×\Û\f\Z½\8e\ 3\r#\ 3xb³\ëÔ¤\93\ 5\94\84¤\18\á´Í\91(\r}·\b\88\88\88\8a\ 2þµ^\è\ë\ 5 \ëwBµ\Ùò\89¸\Ç\Ø\19Ø\8eG\Ä\v,\8e4=\7f\15;\1e£¦k×µ\ÌÈ\88\7f\ågM\9b²@ûq*\13\ÉJ\13ûG\9b\0\ e}}è­\93ô¿ø¼\99\Ð^\8f\a\95¹OZm?c;WüW n,\92\Ö\æ\ËY\ã¯\Åd\8e6\Ñ\ÊLÁ¯\94,ì\96ûûjé­\9d\8aý\9e\îó\15vr\ê\8f\1c¤\93*\"\"\"\"\"\"\"\"\"\"*¡½U\9e=gõ\ f\Èe\Ç:\ê\953\eÃ\9d¹\88þD­\9a(¸\ÅN¿\ÉQ3\9aý\ÓTc\âClX\f\96(°v\ZÀ\ØÏ\91oq&N\Ë9\83\1c\18lh\ã\0½Û«\Ü\È~»öG\819\à\19¶\Î8{\98x\ç\92%Ç¢>#\Ú\ØU\éûmM\å\ÅDGºT!9\×5P¦T\924\99@\870\13K\12i1\10\æW¡qG#\ë\Ü\Ã\Æ\1cy\Êú\94¨ó5\8eIÒµ\8d\86DYB\9a\17\Õm4\Ð\îa7\12\83\8c\f\10f4EsZ\Ïb\8d\ís\18æ¹\98ô\ 4DDE\85\Ýü\ï_\ 6ø\ì\ë>ÿ\0\Ù~w½\Å}\ 6§Zfkº\ì&\8eVǽmò°\Ø\Úþ¥­Ö¾D\\Ë\9difx\91\Îw\9e<:\è\Å|\ÉÒ£\85\98\81\î\Ïmù#½\1d¢\æ\1e\Ór¦Y\1f\9d²mö(\ãL\936³U¥Ë¾\9a=Z \92\Z,b\ 5-pÁ\1f/\8f\12¾<ɹ\99d\Ê\èO\9a@3\15\94Á}2þ    ö^\Úr¾\9fÞ\9e\Ë\ë3j:\Í\Ä\Û\1c\1d\83\8d5KºòGÿ\0¶\ÝÚ©\ì\99W`FI\13J\í\17^\93\88öC4\'\ 4÷\16\83\81)\93c\Ô\Å\14}\9a\Î\Øñ\ãÄ\8e\b±@\18\Ñ#\ 4Q\ãF\8e&\ 6<x\ácD\10\0\"kF \88mh\Ä!µ¬c\Z\Ö1¸n1\85Ì\88\88\88\88\88\88\88\88\88\88\8bRþi<ok>N:=\È\\ j\ê÷r\8e¼#o<\1d±\Ë\a\Ú}g\91\ê\â\14p\8d\1c\98\Î\n\18ö\Ñ^Z\9bfEö\95>ªDª±\91\8c\9c_\95\8d\Ç;\Ï\11o\9b_\18òf±m¥\ï\Ú5\ä\ísk\Õ\î\ãþ=\9d5\Íqr\191Nƹ\â+3\9c4\ÑfE)\áO\88PN\81&L9\09:J´C\Ò7\äj§±\Ý\'?Mwm\8a|\Þf\êC\Ç[N;l\88l´\á+³\È\Ç\1f\ 2\8f\"\8d\Z)\83¨\ e\r\86°h\91\É*\Ä1k#X\Û\fX\9d\Zu\94º\11\11\11q\18Â\8e\"È\90Q\80\0\e\Ìs\99\10B\117/!JG\å¬\18\Æƹ\ï{Ý\86±¸Ë\9d\9cc\19ʨ»Ô\83\å7lò\17\1dÃ\8f\89Ѻ\Ý\Ö\r\9bb\ãn1\Ö\ØóÃ\87y³\Ó\Ì-N\ë¿]\×|F\197\a¸\8faEM$\ä´l*h²$R\Ï\f\r\86L\\Guo\×\Ó\Û\â^\Ç\Ê\aq\ë3¿SN\ÇW8(\95\Û\Ï5Z\92>\a\125\84/\áxª\f\19\ÈIc²<ß\99p(ñ-s\17_\8aPXÆ\84+¸V\ 3·\8fT\Õ5­\17[¤Ó´\êJ\ÝoW\Ö\ë£TQQTF\1c:\êº\ècÀ\ãÅ\8b\1cX\ÃX\Æ7\1e\îv}\ÈR9\æ+\ÞR=\î\ì\b\88\88\88\88\88\88\88\88\88\88\88¡+\ê\9aðo\9ez\Ôo<\8augO\9de\Î\ZMlVs\97\1d\êµÏ\95c\Ê\ZdB¿$Ü«\ë\84F\â~Û©E!¤Hl1>öþ¤y¦\8d\1eþhõºú\9a\ÜVux\Ý\ïo&ø\á\í÷\15ö\9f\8cM\92\9bR²þ\1fz\×r/¸;§\18\ßH\8a\r\ßT ÿ\02¿\1f\93:´-\99LRM\fX\Û\ruD«\ 1Ì®\f¸\12®\8e\ê\×f8\9f¸\\\a\Æ}\8e\á-\86>\Ë\Ç\\£¬\×l\94r\Ä\ì¶\\?Í\8e2Ȩ¸\84V\ 6mU\Íi_\98ö\15vQaYD&0\Ùp£\11\ßV2\ 1\11\11k\ã\Ê\ç=Xu\9f\1fsy\9e\8eÀU»V¡×®P>\99 ¸Ï³¶ù:\8d¬j\ 1·8k¾\ f\Ì\â0\8d\7f»\1c߯9\13ðo¯Þ\91y³fYL\97cc.Lû        òO6t\é§,©\93fJ+\Ï*\\¹G{\Ï\"L\83½\æ9\Ì÷\94\Å{\ÈG¹\î\Îsü\Ê\à_MwN(ú\87â\9f\81LÊ·A\ß;\vV\ eÀr<\99µ\84ª¼u\Æñ\ 6)j)/\"\98a6%j\94\ 1\83B/\È\13%2<V\nG³\Çõ\8f~h\88\88\88\88\88\88\88\88\88\88\88\8b\84Á\f \9a4\90\8aDi\ 2 N\ 3\r\85     \82Vde    \84L9\84\19\18\ç0\83{rdz9k±\9cg8UWú±º\rÁ\Ý5\ï.\8fÈ\9c\Z\n}j¯µ\Z¾\Ù\È{\87\1dSe\8d\8d¬\ï\147\151\ï/\Û\10n\Ã+\99»\97`m\8ea\88\ 2\19¦@\9bnbJ±µ°\92H®©­ú1;M\Ïq;}\Ë]Bf\Ç>Ó®\97\9c\'·òü­jx¤Ì\87ªò&½³i4õÓ¨fd\99\ 5C6:ý\86\ß6µ\8e\e\Ûa&´S\à~\19[x\ëK\'Q\11\16\84ýL4×\97\9e\eûX\n\a\1c\98Uºõ\Ì÷\Çó\9cQ\ÒÛ\8e\Êõ\85ø\ç\1e\Ñ\ÍU\ZTsg>\í\Ã\v\9c»\19§\Íz\a\13\ÑWm\1c§Æ\9a\Õ\ÄRN©Ø¹\ 3M¢´\84\"\90%\99]o±\Ö\×Í\8a3\ 5\ã0\89\"4\82\89\84\11\ 6Q¹øx\Þ\×c\ e\Åð\9cqU]G\Ç\Ú==D \×VV\ê:\ì(0@&\0QcG©\881\ 5¢f0\Öe\8d\Çõc\18ý¿\å\97g\å\9c\ç=\Ñ\11\11\11\11\11\11\11\11\11\11\164vO¸\Ý_\ê\ e\95k¿öG\9c8\ï\89\81\8d\Ç.ײ\ÖÀ±9d7ÿ\0\ 5\12\ 5;\8f\9b9\92\ì\n\áF\82 Ev$J\91\18\r~\1f Xt`{3\ë6\è7\19J=g[ø\87\97;6rV\È4-\80¬\'\ e\êÀ³k2\Øñ,\99»Q\17hú^|\à\8f,\rvK]\15¹\ÎH\19\ eÀ[ªwú®üºw\ fgf¥Ð¾\8dj1®\85aU\12Ö»_\Ó÷\î\Ç\1e W\854\Zr[\Ø\Ö\Ö\éuz¬yrÀr>÷fÀ\éX\18\93\ÊOÅ\8d\14ç\8d¹N\ 4\ f«\97\99ß®J\å]\9f£ýf\Ô6\90gù¹[.\8dIµoúTY1\8f\86\95\9an£qe\1eU\9cy8\b\8d\18»\84l\80O$\ÈÆ\94P\864\9f<±ô\99\7f\Þc\96góÿ\0\92?\"|\Ó\Ú\Î^¸ú\ 3saA¦\Ññ\í\ 4úÈ\8d\94\Êú8ð\9des+]¥­Ì\97\Ê\rf¤}~\ 1l\äN±\ÄHÄ\9f8r²\1e\ f¤3Ä\9c\14\íc\95¬$\ f8\Éeç\94·¨®\91\8c\7f|<!\Ù2!ûþýò,3ûþ±\8fe·~\83ø\9bè\97\8d\b[`º\8d\Ã#\Ñî·£G~ݹ_lû6óº^F\86\11\8a\rYö-®\Ò\Î\\JX.i\äç­\Ä*\èó,-%\ e>\re1\æ\Øò\"\"\Ã_\"\1c\17#³]\13\í\Ï\0B~Ga\Ë=|\å-6¬­n\1eð\Û\ÚjvM¨0Y\96\13\ f\90\e&E$f¹\99c\8e\Ñ\áþ\Í\Î]\8a:¶\Z\v\9dRþóV\Ø\ë¤\Ó\ì\Z\ÕÅ\95\ 5õL\Æ`s*\îiæ\9aºÒºS1\97a\92aM\8cx\Çf\1c\ì4¢~1\9c\1e\ë³ñ6\É\aM\å>4\Û\ìß\91Vê¼\81¦\ì\96\ 5h\Èg\ e\r\1e\Ç[g-ø\bXR\97,\ 4R;\ 3\10\88G\ç\1f\161\î\Î\e\9b\âxú\Ú%þ\85¤^À0\ä@º\Ô5«hR\ 4\ì8G\89cM\nds\rø\Îp\á\94&c\Ø\ìg8s]\8cû\ç\19\11\11\11\11\11\11\11\11\11\17\9fò\97*ñ·\b\è[/(ò\îñ­q\Ï\1d\éµr®¶\9d\Ënµ\8bK¯\ÑUB     $Ë\9dca-\ã\b\8e\"\9c¯\Îs\96\ 4D&qðcó\88    ùjõx\í¶\16\ 5\89\Z\8aª\1cû­j\7fg¶*\áN\9ba\1cqY\18w\\GLi\ e\ 3\n;\17\98\Õû&\Å\ 5õ\Ø\Å~\7f\1e\8fg©µ\8bh\18u\ëô\1d\ÌòW\ØØ´u\r\å\8e\Öv?\91dH\Ìv\Ø\ÛKÙ¶\19\11\9d<\Ò\Þ\Ç\Ù\ÞM\rF©ª@°¶p\â\ 4ó)5JRØ\82\ 4&BĨ\Ñ\ß:/\19^\8e®1\ÒE­r¿\91\Ý\åü\9f´ý\15öÁ\ë÷\1fÈ\93Q¡\Ñ\Ø5\á\95ø[\9e\Ó\î\Ûm\Å\Ñ$\ÆcI\ 6\18ª¨l L\95_oY#-S;\á^½pO[ôú\í\ 3\80ø\87\8e¸{Lª\8fø\90u\î<Ô©ujñGû\1co\81\19U\123\ä\ç%v_\92Jy\Ê\ç{e\Ï϶3\8fcDDDDETOª;ŵ\97Gû±m\Ø\Þ<\Ö%D\ëomï­¶ú\9b\0eƬ\Öy\9afOu\ÈZ\83\9c\Ðg\10GpC\13\1c\Ùó\'Ø\90\Û1Z8\Ð+\â\8f1}V\êúd{\ÛEÜ\9f\19\1c[©I°°\93\1d]\8d\13\82ù\17\17SO>\Öкü\b\Òõý\94\93\13ó-¿\99 \9f[*\\æ°¡\8f$\í¯<\éVQ\çe\92#DDDDDDDDD^3\Ø\1eÀq\'W8\83y\ç^qܪô^4\ã\Ú9\×\Û\15õ¡\98\Ì6<\18¥\93\88Uñ\Üö\96\Æ\Ún\0ñ@¯\8d\îy%þ\Ø`\ØR²¥¯6\9esù\Ï\Ê\Ç*\ÜkTv7|q\Ô\1dR\à\81\ã~ \8d5\àÿ\0\12\86¶k\ß_»r\'\Ð\Ð\æ\Úú\Ç\"\8df*\8995m!\Ã\v\13\æW\Ã<lSñeâ\83²>Vù\Ð\\S\Âñ\19¬i4N\ 4¾R\æ\8bú\Ést\Þ9¦&q\9f¶@£\96#®\ïd³?ùn»\16tS\Ì{\87\83K\86\Ã\Çym\94ñ»â¿©þ08z³\8c:ý¦C\91²>,\7fñ\Ï0\ì5\Õ\ç\ä¾F¶\13O\82\Ûl7B\ f\Î;L\é2~ª\8a\ÇF¨\80\ 22\ 5|HÕ± Ã\8b²4DDDDDX·Ü®\9fp\8fzú÷\È\1dm\ç\íZ\1eÍ¡\ïµ%\86\18-u\8e¿n,¶E>\ËE+\ e\1c\88\174vA\8be\ 2\\CÆ\92\191DPH\8eq\86\1dò\Û\á\ï±þ\'y\97:§$À\91¸ð¾\Ûa%¼I\Î4ðd\ãY\Ù\ã\ã\12d\87]¼6@ÀQ\îñ G,£T\99\15´8\Ò\ìi\ÜLÀ¼¯£\ë^\"|¤ò¿\8a.\Ô\Õs\9e\8e       \9b7\1e\ì\Ñ#j<\Ý\ÆC\9cH\Ñw½\173\99+\ç\1cO8«Ý´kGɬu\89V\18À\ÆSXW6e[m\8di\12\à>\9c÷/\80;\ÛÁ\9a\97`z\ç½U\î\Ú>\Ó\ 29\ÊØ\87\Æ-µ\Ë7\8f?\99¯\ìu\85h§T\\WIa\áË\85>4Y!\95\16Ls\842£J\8c\f¨DDDDDDDD\\2$\ 2(\r*Q\85\Z4a\12D\89\12\b0\80\0\b\ÜC\18\Æ#\9a1\bCk\9eB=\Íc\18\×9\Î\Ãq\9cª¥}K\9ee.»û\Ù;\9e·p\Î\Íi\eª=|\Ø\ìµ\ÜF\8cCD\87\Ê\\\95I/5÷\ÛE\80òÀ¾u\r\15\9c)\10u¡9¹\812HMv\Ò\ÜE\ 6¯g\eM\Þ8<wsÇ\93N\Ì\ê}p\à\è,\86ù\ä\15§ r\15\9cSH\Ö8\ÃG\ 1\9bü¶\Ót\Ñ\12;§\ÌhZPkú\à%Å\97°Zýq\9d2®¨\16÷\957\1eô_£|\a\ã߯:_]zû«C£\Öõ\9a\ØL½¿tH\ãØ·Í\90q\Ú\ËM»j\9a,d\93m­e\æD·5\å ¢fA\ 6\1c¹\Ï1\8d\98\88\88\88\88\88\88\88¼¿\97øW\89{\ 1¡\ßq\875ñÞ¥\Éü\7f³À\95U}©\îT\Ñ.ª,k\æ\8f\99\18\80\9478m\90/q\15Àx\88ñg#\Ëþ\ e\146û\ç\è\Ì\à^M·º\Þú\'\Í3úûa%§\9c\Þ!\ä\n\Ë\1dÿ\0\8f\äJdiFt*-\8c\97Qv}iövE\13F\édº¦¨\84\11B\8bR69Ò\85©\8e¹økõ*ø\8f\ß[\Ì=E\×õ\8d¼\ï1£\ß\è|k\ËZ®\ï¢\î±\n\È\ì$\8d£\8ewi\ÚT;\'\ 5±¢¶- \81\ai\0\ZXUò±\ 6M\9cCÉ¿©\1e\92\b\ÔZ§\90\13ü¹\Ä\18¥«¯\83ºs\'\12\ e\ïMmw\n0£]\Ú\ 3\8ba\16\Ïd\×\Ý2v\1f6%%}\Î\Û\1c\ 3\É\á\Z\â\'\Ò\13\17%yc\Ôe\ã7\81\æG\89Í·ý\93\âQL\91\98P\í7\î ö7]¥\9d;\ 1t\8c¬¶\9bÇ­\85o! a\n\æ\Õ\16k\ZÁ\e\äüdD\Ã}?¬þ}|Iö\Êõ\9a¿\14w\1f\8f\à\ìòl\eWY®ò\94-\8f\86®n\æf.f\95´p¹B\9fU%°c\ÅnK\"\\?¶#\Z\Ã\ã\as¡\Í\Äm°\êÛ®\9b¼Au\9e\93¶\ë;\85c\1c\Ö>\ÃV¾ª\Ø ±\ï\Ær\Æ:]L¹q\Ú\ça®\Ë[\92c.\Ã]\9cc>\Ù]\9d\11\11\11\11\11\11FS\Õ\1d\ä¿=\19\èm\87\ fñ\î\Âú®\7f\í«-¸\ßP%M\Îj¶mGBüG\7f\8f¹\n¹ð\ì+¯!º¶\19\ 3GS}JR\1e\9fiº¡t\81´2>\Æ\Õ\aQQk\7fkYCCYawywa\n¢\9a\9a¢\14\9b+[{[)\"\87]YY]\fF\99>\Â|\Ã\ 6,(QBY2¤\94@\0\9eWµ¹¸\ f\Ó\ï\â\8b\85\Ò\Ív>\Ó[S/³\\\ç\ 6»{ç\9dª$_rG<\97Ì\99©\è5sd\96L\Ö\Òi\Ô3\áÀ\90Áº¶%­\ë,/MEW>d\807|\88\88\88\88\88\88\88\88\88\8b\Ì9k\84ø{\9eµ)ú\176ñv\83\ËZU¤y\11,5nD\Ô\èöú)Q¥µ\8c\96\ 2\Ö\ÞÂ\9b\e\"\961\fR\99\81\á²\ 4\b\ØxýÛ\98²y\1fô\8ct£²±owþ\9aÏ\91\1ec\94G\ÌfµN\ 6\\p\rÓ±ü[?\rüyõÆ\97¨\95°k\äÄ®&\99}ER\Ë\vS\\]T\Ü\18Oa¡)»\87˯§Ë°v\1cg\1f\91ù3®w·\98\91k\10\ÚF\É:ó\82¹\96®,ºqX]\Ô@´\89\8dKlp\9dYO\ 2\ÂTú\b\e\8dEik\98fVW\\V\96t\Îü-z¨¸Û¸7ú¯Z»\Í_¬ð\7f?]\Z\ 6½£rMQe\87\8b¹Z\ì\á\b¢V\Ê\Ä\âÉ\91¥m\97\16\ e,\nÚ\99²¦\×O>jÁ\12\êu\9d\99\ãA\98°\8a)\ 2\11ÀQ\98\ 6\e\f\13\ 5\í \8a\"7\ f\19\ 6Fe\Ì \È\Ça\Ì{s\96¹¹Ã\9b\9c\ã8\Ê\äDDDDDU\14ú ;\87s\Ú\Ï+\9c»®6c\89¡u\92¶¯\81t8Ñ­¤Î¨\93\8a\9c\97eÚ¶(\Õ\æc\ 3Qcm°l\'«µ\b2gJƹ\ 2A\8a<\å\90adÿ\0¤¯\Ç`»SÞ\99\9d \ä\ZY2x\97¨°\19²Ò¸ñ\9aú\9d\8f\9a-2\bº\Å1]&,¸3\85­\ÔL\9b±\ÚV\99\83.\1cj9\"8\9f\86|\í7DDDDDDDDDDE\87=\ä\è\9f\\¼\86pFÁÀ\1d\93\Ñ\ëö\Í^É\87\97¯\Üd\ 3fË¢ì\8e\8cX\Ñ6\9dFݸlÊ\9bh­&Z÷E8\9b,\1e\á6}ð\12\86\9f\ß+^2y\9f\Åwjv.\0\äø\96\16Ú\85\98\8d´p¿(~        \ 3E\É\Ü|i.\f{(\13X&\Â}\å\11ó\8a\8d¶¤Y\fº»&\ 6D\88\10¡Z\Õý\ÓHô­yÀعö¾\1f\8e\Î\Ön\ä¼\åmB\8aLοò\ e\Í//º\ä\1d\1fl\Í/`»\9b#\18·\Ûõ¸\ïkkd\1dÏ»\Ú*þ\83\98v\97\106+\99S\80DDDDE\ç<Á²\eN\â^RÛ£\1dѤj¼u»ì\80\92\Çe\8e\8ej=f\Î\ÐFkñ\9ce\8e\13\ã4\8dv3\8c·-÷\Æq\ì¨}\ä-\ëa\å\rÿ\0x佺H\æm\9c\87¸l\Û\Ö\Ï0Cp\85/a\Ûn¦\ß\ÝI\18\9cò¸c=\95\84\92°n!\1cÆ¿\r\Ëß\9c|³m\9f¦;¦\9a\ÇRüTp¶\ÉZI²6\î\ÔE\87\Ù\rüó\7f O\1d¦\ßO_\ 2\86¨p\ä\10\98\84\ÊMV®\9e³#\8fôG\92H\ï±$P\ØL\9cCHU\11\11\11\11\11\11\11\11\11\11\11i;\ÏG\8c\Ýo\É_C¹\eM®ª¬\1f:ñ]e\97\'pf\Îh\ãdð\íz\Ýd\édÔ\8d\9cѨ¶ø\ßmU®G\12\Â@\84g\12º.\'=\84U\nqW%òoYy·I\å=,öz_+p¯ Vl\95C°\r\95\\ê\8d§P¸adR\ß\×0Õ¶L\8eY\11$Rl\Ôr\v\15ò\ë\ÍcO9­\19\Î5w7CûAK\Üþ\9eõß³Ô­\1cvs\17\15j\e\8d­f\ f\f²(ö\v:x¦¾¦\9e8%4xs Yº@\Ï      \85#c\ã,h\Êadg.[\"\"\"\"-nù\82\ä9üO\âû½\1c\89V\ïk-S®|\83e_\8fµÁû&ÿ\0\eø\ÑC\935¯p\Ús\9d\81sð\Ç\ç\18&sñwþ\9c\Ò÷Áº(9C\9aø\7f\8d%2C\ãr\')qþ\8b!\91\1f\91\Êx6ݲ¢\80Í\8cL1ùd\8c\8eÁ\Ø\vð\Çe\84\Ë]ñw·¶oyд\Ê>:\Òu=\vZ\87\16\ 5\ 6\9d®\Ôku1\"F\14@\n\15D\10B\ e[\1c?\ì\Æ\â´?q}²ì¼¤{\Þ÷½\Î{»j\"\"\"\"\"\"\"\"\"\"\"*t=Eý<¦é\87\95\î\Ã\éºÁ\ÆýO\97d\Ã\ìn¹\r\99\92GT\83\97\ç\\[]Ö\98ò^ì\98\8cÛ¡lr\9a\Ø\â\8b\ 6\10%\86²\ 4\82\17\92k^\8d\Þd\Æý\â\çm\âü\Ç8\ßÁ\1d\8a\Þõ\ï¸ùn[$[\Ô\Z~Ec¢|Jüb\18\89~a|H0\9bó\9b9\Ùk\Â\à\11\Ò\ÕDDDDZ©ó\87¥\Ë\ß|Jw\ç]­\8ai¶\ä\ë\9e÷>\9e,|û\18öU°q4\11Ç\8c¹\83ve4$\8b\9c\e?[p|¿9c\98\Ò2«ÿ\0\ 6\1cw\ 3\95¼¶tcG²\87\16t[.bÅ\97\Ñ0_lf\É\Õõ=\9bk\83(\8dø\138\Ì\19Ô\91§\f­c\9e\ 2\Ça\87\8f\98Ú®\96DDDDDDDDDDDDUÀú\Ûø\ÓZ \ì\çJùJ¾¬\0\Ú9#\88yC^\Ùn0!6M\94\1e:Ù´\çk°Jv±¥$j¦\îV¥\8e\12¸\8d\ 1­&\10yn$¹¸\Ù\'¢A¥\ÇJû\8a÷78\ 3»EJÑ¿\Ûôâ·\89õl\99¸Ï·\ï,cÁ\9c\ã\ß>\ß<~±\ïû\9a\Ò\"\"\"\"\Æ\Þ\ãj Ýº\9d\1dZO\Ç!¶\á.J\13\9añ\à­&A©Z\Ë\18\9c<\å¸\Î\fH\í\16]ûø|þ\7f\aü~\ e©·\ÓM\0\Ö\1enú\'\81\0\86dM¯\95\ç\És\ 6\â28bð\a+½§3±\8c\àCü\8c\80-!2\Öý\å\bñ\9c\90\8ck®$DDDDDDDDDDDDPMõÀ\ë5\î\á\î\84\î?O½¨y+\995\9f¿8n~\15òu}F\Ó\éc¾\1f\92b|É\8c\93\âÿ\0¨Y\Ã1\91\å\Ù\Í\1fF®·\ 6§\Æ\ eùw\Z\10c\ËÚ»#»Î±\9214d°5m.½H\ 3\È#[\87\18\81\89\0\11\18÷\å\Îhc\88Xv\18Ƶ²\áDDDD^[\ÎQq;\859\86\v²\æ¶g\16ò\fW9¾ÿ\0,bF¥n\1c\å¾ß¿\960ÿ\0|{c\ß\ß\Û\Ûöª¥ô\9eid\Ûü\Ëp\ì±dmv\91\Æ<ú9\äù\7fH\âk\f¤.\19\96µ\ÙÁ\n;÷\ 1\9f¬5\Ù/Á\Îk\1c\çb\Ú\ÄDDDDDDDDDDDE  \8f[\9dn\v\ÓÞ\97\Ü}~ù\83\Ù]ª·\îöÿ\0/ù^/¶\95õü¿¾>\ß\áp\ïoõú}ÿ\0\Ý\Â\Ï\ fH\95~!øiФ`\7f\f\Ûs\Ï<Xe\ßû\Ù\1e\ e¯\ìþ\ØþØ­À¿\×ü¯\ïþ\98\93º\"\"\"\"\ê\Û\Ì\11Y\é[\85iÿ\0ȱն\b&ÿ\0ò\97S.9?þ     \95\\G¥+\82\ë5\8f4\9d\Ç-?\Ø\n~\ 4Ò¹Ã\8e*!·ú\82\Êû>Y\ 6¿\ 1\Ïq2\ãý\91a\é\í\0½ß\9fv\È7\Ûò~\19\9cY@\88\88\88\88\88\88\88\88\88\88\88\88¢¯\ë\ 3Ñ\83±x\9d\9b·\9a\e$;\8f\8c§E\92\ f/\81\'c\Ø!\ë\9fhð\ìý\8d\É\âÌ\97\19\es\ì\Ò\äosp\\a\Ù3\éu\Ñgh\1e\18z\Å\ 2Àoa¶\e\1e\82\ç³\á\93A\Ý÷«\8d\96¼\98\Çû\Ìl+\0\ 5\8fÿ\0}\82nT\83\11\11\11\17ø \Æa\90E\e\n\"±\Ã(\88Ö¼d\eÛ\96¼dc±\96½\8fnr\×5\Ø\Ë\\\Ü\ç\19\Æq\9c\áA7\Ó\17A\1e·Ì\9f\9clG\Æ\ 6*\ eG\ä\8a\b\Âo¶\Z\Ø\æ\í?#üq\8cc\ßô\ÆÒ\89­ö϶1\9cÿ\0\7f|)Ú¢\"\"\"\"\"\"\"\"\"\"\"(\àú°\ 1\83xJ\ìi2\Ügñ¹\ 3®\ç\Æs\8f\Ûr\îp\Ò#|±ÿ\0\fûH\Ë}ÿ\0\à\ì\ãýVsx7«\rW\88o\1d\10\86,\Ê\ê\Ï\16Z\e#c\e\93\ZÒ\84\13²R\ç\r\ÆHL°\Ãg\Í\Þ\îø1\8cò\Ö7\Ûk\b\88\88\88\88¡\Ñ\à[C¦\Ðü\ãú\84i©\0xð+ù\86\9aXG$\8f1²]Ë\969kl²3\88Owe²,e\Z@\ÚÏ\80\ 6\"±\80\18ÀÁ\r\93\17DDDDDDDDDDDDQ\âõO\Ñ\Ø\ßøL\í<jÀfA\à_ðe\áÇ\875¾\Õ\Ô\\Ù¢\ÚÚ\9f9{\9a\ßhµ±eJ\Ë}ò\çý\1f\ 1µ\Äs\e\9c\ãð±\18\91<Ix\ã\11\1dòsºwÁ\12q\9fø\ ef\85O0Mÿ\0 Gc?\é[:DDDDE¡\Ï\Z\Ýn\'\14ù(ò\ëÌ\92ª[\1eG=se%¤;?\ÆÀ\9f\"\8f]§«\87\16\v\8f\86\ã\ï\10®e\ì6C\Æ]\9c0Ö²²\Ö\ã\ä\ç?|h\88\88\88\88\88\88\88\88\88\88\88\8bWþf8>ϱ\9e6;I\Ãõ\ 5dk\r\Ã@\97_\16a\ 2\ÙC\81(\8fh\àO|W\Z;¥6%\89!\9dÀ\11\86G\á\99ø\948\ÆL<\98\è\æ\8aþ1\é\ÇXxù\ád|iü\1d\Æ\Ô\"\bþ¿¬q`jõÂ\89\86\àyø1¹\89\80»\ 3ǶE\8cýnk^\×7\19P\88\88\88\88\8b\áT\ë44s®¬ªk#Á\9d±Llû¹!û>\Ë\19\8cÁ0Ó\9f\æ÷7\ä\Ü\14\9e\ß^\18\ß\ëwôû¯º\88\88\88\88\88\88\88\88\88\88\88\88º¾\ç¨\Óo\9a½Î¡°\8c¦¦½\8b\88v\ 2\ 3\Ú2¼80\8f\8c1\ï\19Z\Üý\81f}ò7c\Û\19ý\7f®>\95\r4\1dr\8e\9b^¬k\Ù[CS]M^\Â;\ f# \Õ\Ã\f\18\8d{\Ú\Ö5\ÏÀ\0<9\Økp\çc9\Ãq\8f\Ö>²\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"ÿ\Ù',4,0,'','','',''),(23,0,9,'9305bf00e7f8a224','53312796025bf00e7f82e82896954942','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','15820583805bf00e7fd7909940374120-4.jpg?ts=1542459007','image/jpeg',80,80,2356,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v      \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0*\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b \n\11\12\13\14\16!#\15\"\18BCÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91ù\ãõ1VüwZfº\9b\bJ®\Ø\í¨!¶\9d\85m³e\ÙMg Ü\91\13\ 4\a\14|\\qb½tÙ\99\11ö$\15[Q\àÁ\Õ\Û|\'¬\8fJ\18¢+\18\Å_\8aÎ\9fy®ód\à]±î§\91~\Ü\èN\9e\ÊM>et-e°¦µM§s¨2T9¸\Õ4ZO\ë4\Z] W\9a~?;\ 6J³&\Ñ&\ eðu\êôç´\84´f÷}v\ë\Õ+¬\9a\Ö3V\Ð\ì;j\Ó\v\1c\ç\ä*stn]\9d¼.\87\98±\Ç\19\â       ¶\í;E¦\\V\1eÀ\Èu0°\ÏEW\ 3}o¹\e\f\16H{\v÷^8\ã\8e9\13{\á\Ù\ 4õ\ 3¦\1d¢\ìòE\1có´v\8eØ»\ e\n4\Ì+\"J\Ú`kg¿R\88+\b\ÊUøò\Öl\Äƽ\9c)\1eÍ\94¬üÑ\8c|±Po\8bÞ©\Û<°yCÓº\7fhX\',\98\Ý;Jõ»\13t0\×U?-M\85̦\É\ÛR\84JcûX\9e·\8e\19ðqòXJ¿\1e\Ãc\8f#-ýh\Êqt\15F£X U+TjL\ 4MV\9dN\81\89«\Õ+0A1\e        ^®À\80\Ä\\4,Lx\Èlp£c#\Å\1c0\85a\bi\81\Ùm´\'      N1\È9\äo\Æö\87òa¢¤t\Æ\è2\ëX\90\10Igµ\î\Æ\×Ö¹\êå\92\81d\91dl72\88ø\é! m\Ñß\92\ 4z\äk6\à%b\ f`ofS\1f \91dÄ­\v\ 4òe\é\ç\ïýã­\97m©rÙ\9aÿ\0Ll@\ë{?D[\ìÓ³Ú«h\ëb\10\f\94E¯]\ae|õ\ë\é;e\1eB.\ÉO³W\90\ 1 <T|}\98Ixñ$ \9fµ\ßLm\9a^û\Ô:»xk\89\ 5J\ëýÁ¯©\Û6\95\"\â\12Ó¦U¯5øû,\13ï²\87\1dK\ 4®6H\7f\1f\ e/,?ö3\95+(\Îy\é|q\Ç1\8b\8bVØ·?\8a>þkÚ\90\84H\Ù$úͲ&a\ãDK\8b.P\Ê\\Vn\è\8a\r¶³\85¼\\\9akª\0Vq\9c\á\â\bm¥%I^S\9d\ 4ý\19¯Dµ\å\8aþ\83\Ö\Ú\ f#¦;q\984º¶\13ö\9c\9d\99¤\b)±\Ò\æp\ê\Ê\ÄS\aº\94\8f\î\æ\ 4hÕ¯\1fJ\1c\Î-&\ã\95Mz¼g\é\97\ f2\12\90T\ 6\98\90´V:ó£©\9b\fx\81\Òù¥lb\9cµXc\Ã!\ 2\8d\96ý\ eѯ\ÃB2\9c\95\86\90\188Gô6\9eX\ã\â\ãE\Üz\Ïã\9f¥:\1fb6H÷\íg\ÖýY^ºÇ\98¼­ø[^*\à\9d`¯)Y\Â\7fÒ¹*aPL\ã\Û\1f\16#\9bN?\8crzq\Ç\1c\â}\86Ie\á\88i·\Ç!§\18}\87\90\97Yy\97Q\96\ÝiÖ\97\85!\Æ\ÜB\94\87\10´\å+Nr\95c8\Îq\Ê\Ä{\8dÕ½\8d\é óA¥{³®ª²¶>\92^v}\8ev\8c¸D\7fXz\êò$\8cN\ß\ëÄ\82\Þs\è\Z\ßI«\Ø$M\×k\92y\"X\"À«\Í$\97\ e\8a³\v\11en \ÛZ\ï}j\Ý\7fºu%¢:\ë¬ö\8dN\12\ïFµE)j\ 6r·a\ 5\99\bÃ\9aC\Èl\81\ÜX\ï%\ 4\86SL\98  Hx3\18\1ei\11\Ûȧi\b\éGF»IÚ #\ 5\99\9b\Òzv\Ùo«\Ä\È%\Õ\Æ\É\\\Ò&\"\éAJ¡\87\19}Q$\Û$a\9a\94\Ã.´÷øõ\13õ8\87>*Æ\8cÞ\96~\86\ f\äc´ý\8aò½\ÝB\Ë\Ý\16m]·cÈ¢~Ú\94\98\r£²S\è\Å\î\7fcO\n\9c4\13¹\Ö\11E\Õܦ@ \\\Â\ 1)d\0\á\ 4\aôøv\15cG\1cq\Ï\ 5\ì\çft§O4nÁ\ìganñ\Úÿ\0TkHe\ÌY\'\Ïù:óªS\88\Z6\12\12\91\93vIù\'\86\88¯AG¶\éòÒ¥\8c\18Í©n{\ã\0]_\ì\1f\95ÿ\04\84\ãv\ëk9~,<l\1e{\ØÖ¶\18\9a\85R÷\Ý>\ËWX%c\æÁ\r-}\8b°\Ñ5EJM¦²ðV\88ªÁ\ä\f\90\ 5_\ã2\äø¹d\94ñcÓ\8d\81[¬W;\1dL¹w/\152\r\90\89\90\îV\Ñ\Ø\1d\8f@\ÓRL i\19\Ø\ê\9eÄ\9f\93\×5©c\ 6m#8õ:\95\\a\91~B\880\ã-m*tQh\94\9d_M¬k­oR­Ð¨4¨Xú\ÝB\97O\85\8f®\Õ\ë\15ø¡\Ð,l,\f\14H\â\Æ\ÅF\ 23hdP\82\19\91\Ùm8J\11\8csÇ»y\×\n·oú»¿:½t1ø\Ê\Þö\ÕW-jtȬ\à\82\1e²\Ã\12\fe\8c1\Ô\ã( \Ê\ìªÁ\9c\10w\1dm·É\8f\15\86Ö¬óO¯N\Ƴør\ß]\91ñ!\äJ,} j\ÙûQ\8d­\Ö=³g\Ê\â´öó\98L\14u*\É\15H\ØÒ\8d\ 3\ 3)û$-~\933H\1dd²k\Ò\19±\Ôf\86\87¹°\15x\Í\ä\12¤­8RU\85%XÂ\92¤\ç\19\9c{\ã8\Î=ñ\9cg\1f\Î3\8f\ã8\ç\Ï\1csQ?-\94Ù¯*~j:M\âJP\ÉDuO@kw»½Û\98\88Ò\88 \9b\8f\ÂD\Èz\Í^W(q¥8Ê\83Mv¢\ 1\82£\87\Ü\ÖY!ó\93\"\87pm¶a!!\ëP\Ñ5\Ê\ìTt\15~\ 20\bX8Hp\87\8d\89\87\87\8b\15 c\"¢\ã\83m\91\0\8e\8f  \86D\b1ZhqFe¶\19m\r¡)\Ç\Ùñ\Ç?!v\×\Ô-\99\ 6\ícc\Ò*\e\ 2¶úþ\×\ë\×j\Ô5®\r\ç0Û\8da\ÇbgB<\a\17\86\9du¿\9a\Çʾ·\1cG¿\Åj\Æ`·d|h\é]\ÍXùi\ë.\Å\évâ\80\87l\rsºú\9bn\9c\Óòµ2#Ò\97!E°\Ñ*2Pú\ëgS\Ç!\81Z\91¥\Þë\92±\æ\Å4¸ð\n\86uL\9c4Añ!\ß\Î\Älݯ\Ùÿ\0\e\Ýýj½ÿ\0;zHd)\12û\ 6©\Z\Ü%[²\9a\91?K\Þ0P\83²8\912E\8f#\0\å¬\0\ 4\8f\8dmv\9aó¢\ÇF\9eô\Ô4>u¸\æ\ 3úÉ­G\13\Ô7\å\ 3e:Û¥\18\ïK:@\0\85¯\å\94E\alv\ä\ 1\91m{ÿ\0®\11 F \16G\Û\1fú²þqÿ\0|s>\1cq\Ç\1cs\ 2²\Z\Ìx\ßRõceE\'\ 1.\Ï\á²\Ü-¡,!M¦`º\çnjQq¤\9a¤º\96\ß|peA\19µ)\95:\96\ 1\19\1f?­¶ð\Þz¸\ä\ eÕºý0\9eH;\99°S\1c\86Qy\ê\9fC#ñ&\96\14\9c\98]Wa÷¬SF[ÿ\0RP\ë¢\bl2\96\1dul²ð\ÙV\eK­\áSÇ\8e8\ã\8e@\Ùz:W\äò\81²\15\10¬©\8e\87\í\ÊSs\Øo?\ 4~G`t¤\ã\91+w\1f\14\18l\Æ\ÛW¶U\86\ÝS~ÿ\0\17\97\1c\àH£ \97\8c@\ì$²\19\1cg\ÊKM¤\97\11d¸+\ f?\84\á\Ç\19\19\vpv\96¬¡\95\94B\9bJTó\99W?\1cq\Ç\1c\ëd1T[g\ävrsC:\ee\å´\ä\84\nû¬¼ð\èw\Û\æ\96]xv\1cq¼gâµ²Ò\95\8c\å \Î;<ÿ\Ù',5,0,'','','',''),(24,0,9,'9305bf00e7f8a224','53312796025bf00e7f82e82896954942','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','15820583805bf00e7fd7909940374120-4.jpg?ts=1542459007','image/jpeg',48,48,1488,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 1\ 5\0\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0  \11\12\n\13\15\16\"1\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿\ì.\é\1eY\Ö\Óû\8e\190\9c\ f\ÆK\ËŤ*X2 \7f|\Ë\Çf\Î\ä\8c\12Yys\82G!µ+\15\92\91c\91·Tଲ´\Û>¾\90\99\ 1³I¦\Ü\Õ]U¢\ 1n\å_Pf¿\89\Ø-5ô\e\84a.-¸\é\é\145\87\12Û®6B]e½W\87\87\91\1fò\1e\ì]\81\Ä~©:\'jjy3 6e½5\9d-M´G>\à\92u3v¬ªk²\Öx\93\Zøx\19¸J§\8d\82=\85!ð&\9b\8f1\87\ey\86Ö\99\íø\9cz\ì \è>\10®ö\íª\b\19¾\8f\ì<\Ø\ì¯]e\Æhû\rWQ\85k\93\86¬Ube\88ýb\86\1e\Þ\ì\17óû#\Ì:Ó³\ 4J\Ã\r\'\923\ 2\1e[dÿ\0 »\'°\ÞR\çÒ½\84ð·RZi¡sÓµ¢w?9\ÎÔ¨·\1dgt¡\ÊØ£«\Ä[@\1eZ¸\í\84Ih3¦Az\Î&f\9d\fº\Æ\ f\92\8dr\fø\959!@½Ew\ã~\Ìx\'Ju\89UÀ\ê\16\ÛX³U}\91Y\8dy\ç\âb¶5\ZX\8aÝ­P\8b\'\ä¦à¥\8d\r3Ð\82\96\ 5\83\15* D\96k\ã¬\Ç\ég\87\92\×\Ü÷\v\Ê{\16õ\É\Ñ\1c\ËUX­\ìy\88\10\9f\81C#gk©\16-\958r\8b\Ï\ÊB\Z\ÌTs\95bNs\nh&&\Ü)䩦V\9c¦\7f\8d\ fJC\í\ fZ\Ô\ e\88MC¢xbR\É\Î[óWM°¸\ë5FR¿m²»P8Ø¢s\83\e\12\91\85p\97\ZCY±\ÃXÀk\í\800¥r¿É\9f¦-\Âó\96¡õ\9b¥`\139\Ð>\Ðö\1c.\8f«\9e\1e\16¡I\8c¹\Ò     ·LÉ»ôyܪaù\bºò\7fHgp\1c)vI\7fº\v\8c\ 5\92«Ï¬þ\17§ú\à\â­\'\È\ÔùuY\7f\88\"I·Û\96Â\85þa°\ìò\ 4دVF\ 4Z\96\àQò\16)\ 3q\f\ 3®:ð\10¬\Ç\ 4ó\Ï::\Ý[\ã\ç*\Þ{\9a\87κog\ï}¡-\88M{¨\èöM\81o\93ú)\×\a\83¬Å\91(b\ 5a\1f+(\â\90>\ 4\8f\11¼e\Ò\Î|q\9aN\\u8̶\ã­Y\Ò\Ý\Å\ 5    \Øý\Ëq\Ø\Zò\91³\Ç\16\é\Ï|+®\í\ÓZþ\87­5<\Ò1\'G\96\è9\Z\99±\96½½·\ì\95÷¢flpV    \Ö(\15GJ~\11ªN\rÉ\89\16¦k\8d!¦ôù\1635^¬ k³®&7#o\91§T\á+òv\É\16\9c)Ö¤,òQ\81\ etùͺi\8e$\Éb\f\'\ e\16Jð\ç\Ù÷r©\á\ìÿ\0\Öü¯m\15\Ì[»O]àµ\9fYñ>\à\8d\Ü\Ú\ 2\Õp\8f6S_N¾\83á\89´k\8d\90\14N?|MN\Þ4\18,ª^   J\97\821\84\16 \å´\éb>\Äl¾\Ä{\9bhU­\83Õ\9a\92Û­)jd\ 1vvÓ¢\97\1f¶56§\95)öBT\9d¼ø5\ 3±£5\ê\8cwõ\\\Ø&kFk\Õ\È\Ü\âBòMXV\Þ}\ e\\d\9ct\Ôl|\Ì9\âJD\Ë\ 2$\9c\\\9cy\r\16\ 4\8cq\ì6PG\ 4[\v[\ 4\88Xδ@\Ä2µ´ó.!\ÆÔ¤+\19\Ì\éö\á®\ß\Û|\v·µ\8bH%\æow>p«\Ê\n+yq\Ã\ëòý=¦\84²Æ¸\9cc?õd«\îI\80\8c¡°\È}k\ÆP\95c4xa\87\fv\ 4\11\96\86\14VZ\18a\ØBZdq\ØBZe\96[F0\86\Úi´¥\r¡8\ÂP\84\á)\Æ1\8cc\Ïo\ f3öÚ´\ 5\æ«e¤\Ú\âÃ\9c«\\+ó5{$,\88\95\1f/\ 3?\1cDT\ÄY¼\95²@gÇ\96@¤°\êTÛ¬º¶Ö\9c¥YÇ\88Ǫj\Ô\í/\×\7f)R\ìfH\1d)M\Öm\Ô\7fZW.\äö\ãk\13\ÓppA?\97Ô·\7fó`À\8e\8ek\nV~¬\n\ÚSýp\9f\1dM\81G\8aصrj\93Ku¸òe+R\Ë[\18N]Á5k4=ª?\ë÷\ÆSñ\99\bQp¼ÿ\0¸FU\94ÿ\0o\8f6~\1e\1e\1ebµ\Õ\Z/[S!)\10®¾ô\\\v\e\84\19{-\95 \\\82\92¼\ãýú8ZÐ\9cÿ\0¹BSó\9c\ç\ç>\7fÿ\Ù',6,0,'','','',''),(25,0,10,'9305bf00e7f924b7','95550517915bf00e7f84cd7979805449','2018-11-17 13:50:06','2018-11-17 13:50:06','','','Contact Photos','12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007','image/jpeg',300,300,11008,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b        \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 1\ 2\ 3\ 5     \ 1\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b \n\11\12\13\14!\15\"1\163A#BQ\81\82\17\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/r9¸f3\9cDëº\9e±®\8fð±g\ë]L\ã\Íϵ[d_\å\"¾þW\äñ¿\19Ķ¬\94Hx\8c\ë»x\12.¯+\'=­\91\ 2ûY©´­\97\18f0Hð\96\11\åF÷\98}`\1e\ 2\Æø<|\Þ\r\á\íRľ\Õ\15\94\ 1v=¢¢/\ÄyÀ\8b¸\ÛZ\83\13d´\í{\Û.%\ 5F2\1c²9#\93\181\ f©\1e\\ó?\åC\9b¤\96VõÞ\8e\Â\r\å\95ùMÆ\95¼M\ãG\a\Û9À£\ eO\1d·W\9aøag\Ä,\8f\"Q\Ø\á\8cx7\Ú\æa\Ë\Ìõ\ eòù6\ä-\96§Nл\85\Þ\Ý\ãq¾\90ø\Ôz¶¡\Ø.À\ì\Û-Ì¡\80²\8b\1e¦\8e\9bn\9bic!±£\9eI\ 5\ e)\88\Ð\0¦sp1½Ø\95×\8f\ e\98ú°9J\92£h\87\Û^I\ê\×\e\\Î\8b\996\1d\83\Úuý«x\95L\è¸8®«x\êú\83\99\90\94\87üV\Ñm©Ø\82P¦bH£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8b\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)\ 1T\É2\Þ1\12CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ø\êy\ë¶WPKüg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ek¾º\ê8­5¼ù\Îo\Æ#\àÁº$\Z\Í;\Õ\äù¾G7\9fñ¯j¹\8a\ïs\8b\ e\ÆE\8e±\Çõ\Ï5/\19h\î>e{\aR\ÓA °¡b;\'N\f\8ben\18\ÓeEÅ\96c\19\â\Î\ 5¢\90¯\88\8fN\ßm|\9e˪ä\9d\80\13ºý\Õl\96\14¢òþ\ÑQ\92Zo\91[ &\9dU\Æt\ 6(¤J,\8a¼û\Ç\Û,\ã>\8a1l©\çÂ\83²ÁþDp\ì¯ñÿ\0\â+¢þ6õ\18\94\9dv\áº\0\î/\ 4\\l<½¶B\87±ò\8e\Ë2>\\|\Zf\×>9lb\Ã\f\ãÎ\93UY\fÃ\8dL9Æ\85\a-\8bñf6h\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88¢#\êAõ\ 2\13¡t6=:\êm¥|þ\Ø\ï\14$ÿ\0\16\82-}\9dw\ 1\ë6AÀ\Û9\Ð\1f\99 ±\ä+P\94\8d\Ö\é§\0\95µo\ 4«\8d\98\a\8b\ 6\1e·µ\Ö+µ\í{6÷³_n{\9dõ®Ñ¶m\16³o6-\8aòi\ì­\î­\ì\8eù3¬lgIy\ f&T\93\91\ä)Hü\ç9϶=\9b\8cc\1f\ 3\Û?¯\×÷ý\ãÿ\0\9c{\ç\1f¯ù\ã8ÿ\0\ï\vñO\a\Ó\Ï\é\9e\ eÿ\0\ 3M\î÷\91-\'.\Ôg\8e=ÿ\0\fõ¯e\86`\9a\â7\Ï/\83¸r\ÍL \8d\8f-­d\9am:G³\ãDx\ä\Þ\r·\'\Ä\rj\Â\Z:*mb\9e»_\×j RQ\ÔE\14\ZÊ\9aÈ¢\85\ 2\ 4@\ã\â0E\8a\ 60B\e\7fyökqòv\\÷g.s\9d\9f¬\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88µ\ 3\æ\çÉ\86»\âó£[\×3\ ePK\Ì;§\ß\Ç\\\ 3®=\8d).¹&\Þ\11\9f\ZyÀù\10ðú]V\eK°l/\14À\Í\15\\B¾´r§þ<CS{\É\\\95¾ó\16ý¶r\8f(mw\e\Ç \ïWs6-³k¿\95\99v·Vó\Éó<\99\ 4ö`\Ä67\f\8f\ e\14Q\82\rt\10Ư¯\8d\16\fXñ\Å\Ñ\×\îs\9cÿ\0|ÿ\0§·ü°¦\89\éjðt\Î\Ë\ï\15þ@ûQ¦}ü\ f\Ç7\"7\ 1\é×±2øü\9d\ÈT²\ÆW\îVUòÃ\80\17P\Õ$4\7fÁ\17.\96û;\àH\99\88µÃ®£·\9deh\0\b \f\14\820G\8e\ 1° \8e\0³\ 3\10B!µ£\10\84\83\e\Z\Ö1\8d\ÃZ\Ü7\18\Â\æDX{\Ý>øõ\7f\Ç\Ç\16F\æ^\Öò38\ãB\9bp:\186,¤»Ø§\ØZ\90.> \Ö\Ò\ë\Ðlm\ì\å}mùb%|93\1c̸Ì\8eð\ 2IC\1f\Înõ\89ø·\ã\È\í7\13Uóo`\8d\î6\12&½¢\Ùññpò\11\Ís\ÄNI\87A\1c\91\ÄÏ\81\18\123\8c½\82\88G1¸&,\Äõºu\ 5ò°\Éý,\ì\8ch_/lÈ\89·q\84\ÙXg¾?«\10\Íe^,»\Û\ß?\ f\Î\Æ=ñ\8c|ÿ\0~ø\Úw\ 1ú£¼:s|\Êj;>\Æ\Èá­\96\Ò+\8f&\1f/hÛ¶¥®U\95¹\Æ?\Z^û.\81º\83I\9c¼L\ÆKf\f9\Ï!\19ò\8b\1cò\99¿\8dKrÔ·\Ú8\9b6\91³P\í\Úôö±ð\îµ\ËX75\87\Ã\Â#á¬\99\0\Ç\aÙ\81\1cDx\\ü\14m#>ln]\8c\88\88\88\88\88\88\88\88\88\88\88¸\ÈA\84d1\88Á\bLy\nR?\f\18\Æ\Ìe\Ï!\1e\ì\á¬c\e\8c¹\ïvp\Ö7\19\Îs\8cc9U\ez\9aü\87\Ùw\8b\Èþÿ\0¥k\e#,ø\'«E\93\Ã|s\Zª\Ï3h.ö:¹%/!n\í\ 3¡E,k9·\å~ªX¦\91`\18ñõ6L\84øD¸±\89\88\ê\"\Ø÷\8a/\1fÛ\87\92¾\íñ\1f\19>\16©mhí\93\96\91_ :\8f\19\ë­üý\86|\87\8c\à,s[å\91µ\9a\É1ÿ\0$𬮣ٺ\14\98UópÛ¤ø\87\89´\ e\b\ã\r\13\86ø«[¯\Ô8\ç\8du\9a½CMÖª£\82%}=\15<vÆ\87\ e4h\Ã\fp±­n^\æ\0!\ e\b÷ýA\13>,Ç£¢\"ñ\1e}\ë_\0ö\9fD\91\Æ=\8d\áþ?\æ­\ 2L\80\Ì&§Èº\Ýv\ÉO\89\91\È3G\98\18ó\Â\\Æ\97\1c\ 4\98òc8G\ 4¨ñ¤\88\8c<`\10pHòù\é\14n\9fM·ö\a\Æ=\85͵mh\rwyÕ­ºÑ\96\96\83\0\ã\ró\9dÅ\9b\85\86b\9d\ 3£J\99\8d{j\97bs\16Í\91\á\\VV\Õü\v\ 3\9ak\8dr\â\×^\Øj¬¨¯è¬§S^Q\ÜÁ\95WqMqW(°l\ê­k\'\b\13k¬«¦\80ð\çA\98\0Ê\89(%\8f C(\Þ\Ì|Õ±Þ\83y]\ï\a\8dͲ\1d\ßZy\92ö£Qu\9c{\r\8b\88v9\126\ e+\Ú\Ø\12H)cYj²\8f\81Ö¾Y¤fD\Éú\é\é¬\'H\8f\ fù)3¢\ÆlWZ#\á·Î\87\\üµhÆ©«\fn&\ìÖ§S\1e\7f ðe½¤s\È(\9a\11b\Ça\ã\Ù\Å#$\íZ\9cinpó)\ÑÁg\16\9e\f2¾Th;\ÊDDDDDDDDDDE®¯,\9d¹¯\è\ç\8f^\Ïö:XbÊ°\Ôx\ÞÖ§U\812fk£Yî»\8e\e©\ê5\8f\9e\10\90\Éa{o\n$S\8a4Dzi£{D\92ß\90\9dI$¹r§Ê\93:t\99\13gM\90is&K1$Ê\97*I\1ci\12d\È3\9ec\È9\9eò\98\Å{\ÈR=\Ï{\9c\çg9þtV|ú?ü~?¯\1d-\Û;\8fºUÏ\81\Èý¾°\89\9dtS\ãÈ\89ø|\'¦É\90\Í8\91\86I2bL\8f³\Ûʸ\ÚAo\bpI*\14ø\15\11\Ìúh¦Ä¿\Ñ\11\11\14(}O¾\ 6\ê¹\ãD\Úü\85u7Mü~r\ã\Ê<Xso\1c\êu\99yykK«ø\à\Û-U$\ 6\áó·­^\e\88fÿ\0\e\18\17\Õ\0\Í;\ãZþ5\16(+eE\ï=e\ì¯0u\v\9c8û°¼\13´\ÉÔ¹\'\8d\ïa\Ý\ÓN\e\äf\ 5\80\9cd\99C}\124\98\84²\×\î@<õ\82\Ù1\8cð?\ï\85*\15\80\8d\8c>ÿ\0q¯\92\8e\9eqwg8ðø\8f/`ª\15G!j\æ\Î\19c§r5(\Ù\a\97\19\ 1[\1c7!\99\9aÉ\98\ 6 \ÙB\Ã%UÈ\9d\ 1Á\98m\82¢\"\"\"\"\"\"\"\"\"(\88ú\Êù\Êw\1ex\Ù\ã\Π\8aß²7a9\Û_¤²n>¼81x\à\f\äQJË\9cß³\"dú\88q^1»\18q&\ 4\8f\1ceµz¢õ\Î\0\â¹\\\ë\Ï\1c\'\Â0ffºo1ò\ç\eñ\\;\f1¥\Ì \\\85¹Sj1\æ`n\ËZL\Å-»\ f\86;8kòÏ\8es\8ce^\83À\9cC­p\a\bñ\1f\a\é\Õð*µ~$\ã\9d;\8f(\àU\83\11«£W\êt0iB\ØQðÁ´\11\ßøy \ÂÁ\8d£kðÖ\8cm\Æ\18\ß[DDD\\\12¢Æ\9d\ZD)±Á.\1c°\Z,¸\92\829\11¥F\907\bñ\ä\0­x\8c\ 3     \ï\11\82V8e\e\9cÇ·-\Îq\9a\81½G\9e9\a\ã\ÏȦ\ë\1fNªm\7f\bö4\16\1c\Ý\Ä\ì\0\Þ\È5\ f¸¸\92\r\çO\ 1\ f,¦;\è67b\Ó\Ü0\ëj`AÙ«©*cf5S\9c´\ e\8ac\9e\8e\ eê³\88;«È\9d@\Ú.L\1dg³ú\91n4h\13\'eµ\91¹3\8f+\ç[\Î\15]\7f\Ë\ä[Ý£S\8e\æ\É(FLf¯QÁ%}a\86\ e\Í\ÄDDDDDDDDDE\ 4¿[þ\Ä\Üq\ fCu,1ø~y#\97v,\93å\9c\8c\8df±¬\Ö5\99o\ÇÙ¯\ e^÷a\Ù~rö\9d\Ø\Ã[ð\Î_]\Ú)\13úZ8\ 3R\ç\ß0\\,\ÍÀY\93\v\87t\Ý÷\9cª¢<#\91\12^ä\82®¾\98S\ã\e\19\19\â²N\Çù-k¿Ê\96\b²>$úr\"[¢\88\88\88\88¢C\ë\12\ê\í\8f2x\ä\Óy·Y¤\87*û­|\ÃOµ\ì6!­\ 4\8b¢q\î\ËOq©\ÝW2n\1e)`«\81ioU³\Ì\Î\7f&(EK#\Þ;\v\aW*-\8fø\82\æ\É]xòq\ÒnU\85\1c\92¤\ÕsÎ¥¬\8cBú¾M\Ç%:O\19\12C°l\àn\fAn\ f\95!\8eùe\à      \18\11\Îk\1dv\Ê\"\"\"\"\"\"\"\"\"\"\83/­÷^    :ÿ\0\Ñ=­±±ù\11y\8b\955\ã\Ëþ¬\çé\9f¥RYE\8d\9f\ÞF\Üeõ³\v\8fl5\ïö\Ï\Ë.ÀÛ\86WB\8aZ~\8dmnlÿ\0*[\9e\ÐÆ\8f5º\ïV9*¶S²\ìý­\9f±m\Z\13\ëð\Æ|rÜ\8dÑ©->\×ü\Ú湡kXü\11\1d¤¨\88\88\88\8bR^xj\âZø{ò\12)a\11q\13­Û½¤w\11\8cs\81.°Q\æ\0Á\Ëñ\9f¬¸È\9c?\9b2\×\å\84 ñ\9fb;\19¥\Ñ\16eø\ë\Ò6nD\ï§N5=B´Ö·³;)\Ãv\"\88\a\ 5¤mv»½\Òl·³¿Û\90Lp\ê\èj,­\f6¹\Æ(a¼Q\84i\ f\10Iyj\"\"\"\"\"\"\"\"\"\"\8aG¬+\84 r\'\8a±ò´\91d³:ý\Í<}²Ö¹\84;\1d\1c»\í\Ü\1e4\93 \8c\17°\Ï\e\10ö3\Ç ¤\å\Ãl\891NÁ\äÁ\19\ 5Uò)rz46\81\×ù>\ä=I\â\Î_²õ\8f\11ÿ\0£\â7k\e.¤\'\a9\Î~xq\87°<\8d\Ã[\96\11\Ýó\Ës\86\14DDDDZBõ\18òö¯\Ä^\1d{¢ý\96ÀPI\È\Üq\9e)\×\Ú÷»%\95°oVpjk£\ 4\fa\nl\1c¯ür9­h£4ø\91 £\bÝ\9cÓ\88\8a\94^«\í\\ùå\8b\8d9^\f\ 3¿Jꦿ²ò®\Ûk\87\Æ\Ì8\Ö׺õÞ\91§U\Ì\13°Y\99}\9c»\9b[\b\'\8e\ 6\80S(D9s#fDaK¶i\11\11\11\11\11\11\11\11\11\11\7fº\ÍI\Ü^\98vG­WÌ\93ø¼±\Å;V¹\bð#\82M¤;¬×\92m\14º\86\11\Æ+@\ÛE\89\88G\È\ fô\95\Øvc\Ég\Ê9h\é\Ûu]\87EÚ¶m#m«\91Gµi»\ 5Ϋ³R\Ëȳ*\9fa׬d\Ô]U\É\È\b`fE}\9491\r\90\98¢\É\ 2ì\8c\8fg³³×\94\90=)¼Õ¬ð×\98~$\8f³\ÊdAò÷\eòo\ e\10¿6\ 5\×\Û\f\Z½\8e\ 3\r#\ 3xb³\ëÔ¤\93\ 5\94\84¤\18\á´Í\91(\r}·\b\88\88\88\8a\ 2þµ^\è\ë\ 5 \ëwBµ\Ùò\89¸\Ç\Ø\19Ø\8eG\Ä\v,\8e4=\7f\15;\1e£¦k×µ\ÌÈ\88\7f\ågM\9b²@ûq*\13\ÉJ\13ûG\9b\0\ e}}è­\93ô¿ø¼\99\Ð^\8f\a\95¹OZm?c;WüW n,\92\Ö\æ\ËY\ã¯\Åd\8e6\Ñ\ÊLÁ¯\94,ì\96ûûjé­\9d\8aý\9e\îó\15vr\ê\8f\1c¤\93*\"\"\"\"\"\"\"\"\"\"*¡½U\9e=gõ\ f\Èe\Ç:\ê\953\eÃ\9d¹\88þD­\9a(¸\ÅN¿\ÉQ3\9aý\ÓTc\âClX\f\96(°v\ZÀ\ØÏ\91oq&N\Ë9\83\1c\18lh\ã\0½Û«\Ü\È~»öG\819\à\19¶\Î8{\98x\ç\92%Ç¢>#\Ú\ØU\éûmM\å\ÅDGºT!9\×5P¦T\924\99@\870\13K\12i1\10\æW¡qG#\ë\Ü\Ã\Æ\1cy\Êú\94¨ó5\8eIÒµ\8d\86DYB\9a\17\Õm4\Ð\îa7\12\83\8c\f\10f4EsZ\Ïb\8d\ís\18æ¹\98ô\ 4DDE\85\Ýü\ï_\ 6ø\ì\ë>ÿ\0\Ù~w½\Å}\ 6§Zfkº\ì&\8eVǽmò°\Ø\Úþ¥­Ö¾D\\Ë\9difx\91\Îw\9e<:\è\Å|\ÉÒ£\85\98\81\î\Ïmù#½\1d¢\æ\1e\Ór¦Y\1f\9d²mö(\ãL\936³U¥Ë¾\9a=Z \92\Z,b\ 5-pÁ\1f/\8f\12¾<ɹ\99d\Ê\èO\9a@3\15\94Á}2þ    ö^\Úr¾\9fÞ\9e\Ë\ë3j:\Í\Ä\Û\1c\1d\83\8d5KºòGÿ\0¶\ÝÚ©\ì\99W`FI\13J\í\17^\93\88öC4\'\ 4÷\16\83\81)\93c\Ô\Å\14}\9a\Î\Øñ\ãÄ\8e\b±@\18\Ñ#\ 4Q\ãF\8e&\ 6<x\ácD\10\0\"kF \88mh\Ä!µ¬c\Z\Ö1¸n1\85Ì\88\88\88\88\88\88\88\88\88\88\8bRþi<ok>N:=\È\\ j\ê÷r\8e¼#o<\1d±\Ë\a\Ú}g\91\ê\â\14p\8d\1c\98\Î\n\18ö\Ñ^Z\9bfEö\95>ªDª±\91\8c\9c_\95\8d\Ç;\Ï\11o\9b_\18òf±m¥\ï\Ú5\ä\ísk\Õ\î\ãþ=\9d5\Íqr\191Nƹ\â+3\9c4\ÑfE)\áO\88PN\81&L9\09:J´C\Ò7\äj§±\Ý\'?Mwm\8a|\Þf\êC\Ç[N;l\88l´\á+³\È\Ç\1f\ 2\8f\"\8d\Z)\83¨\ e\r\86°h\91\É*\Ä1k#X\Û\fX\9d\Zu\94º\11\11\11q\18Â\8e\"È\90Q\80\0\e\Ìs\99\10B\117/!JG\å¬\18\Æƹ\ï{Ý\86±¸Ë\9d\9cc\19ʨ»Ô\83\å7lò\17\1dÃ\8f\89Ѻ\Ý\Ö\r\9bb\ãn1\Ö\ØóÃ\87y³\Ó\Ì-N\ë¿]\×|F\197\a¸\8faEM$\ä´l*h²$R\Ï\f\r\86L\\Guo\×\Ó\Û\â^\Ç\Ê\aq\ë3¿SN\ÇW8(\95\Û\Ï5Z\92>\a\125\84/\áxª\f\19\ÈIc²<ß\99p(ñ-s\17_\8aPXÆ\84+¸V\ 3·\8fT\Õ5­\17[¤Ó´\êJ\ÝoW\Ö\ë£TQQTF\1c:\êº\ècÀ\ãÅ\8b\1cX\ÃX\Æ7\1e\îv}\ÈR9\æ+\ÞR=\î\ì\b\88\88\88\88\88\88\88\88\88\88\88¡+\ê\9aðo\9ez\Ôo<\8augO\9de\Î\ZMlVs\97\1d\êµÏ\95c\Ê\ZdB¿$Ü«\ë\84F\â~Û©E!¤Hl1>öþ¤y¦\8d\1eþhõºú\9a\ÜVux\Ý\ïo&ø\á\í÷\15ö\9f\8cM\92\9bR²þ\1fz\×r/¸;§\18\ßH\8a\r\ßT ÿ\02¿\1f\93:´-\99LRM\fX\Û\ruD«\ 1Ì®\f¸\12®\8e\ê\×f8\9f¸\\\a\Æ}\8e\á-\86>\Ë\Ç\\£¬\×l\94r\Ä\ì¶\\?Í\8e2Ȩ¸\84V\ 6mU\Íi_\98ö\15vQaYD&0\Ùp£\11\ßV2\ 1\11\11k\ã\Ê\ç=Xu\9f\1fsy\9e\8eÀU»V¡×®P>\99 ¸Ï³¶ù:\8d¬j\ 1·8k¾\ f\Ì\â0\8d\7f»\1c߯9\13ðo¯Þ\91y³fYL\97cc.Lû        òO6t\é§,©\93fJ+\Ï*\\¹G{\Ï\"L\83½\æ9\Ì÷\94\Å{\ÈG¹\î\Îsü\Ê\à_MwN(ú\87â\9f\81LÊ·A\ß;\vV\ eÀr<\99µ\84ª¼u\Æñ\ 6)j)/\"\98a6%j\94\ 1\83B/\È\13%2<V\nG³\Çõ\8f~h\88\88\88\88\88\88\88\88\88\88\88\8b\84Á\f \9a4\90\8aDi\ 2 N\ 3\r\85     \82Vde    \84L9\84\19\18\ç0\83{rdz9k±\9cg8UWú±º\rÁ\Ý5\ï.\8fÈ\9c\Z\n}j¯µ\Z¾\Ù\È{\87\1dSe\8d\8d¬\ï\147\151\ï/\Û\10n\Ã+\99»\97`m\8ea\88\ 2\19¦@\9bnbJ±µ°\92H®©­ú1;M\Ïq;}\Ë]Bf\Ç>Ó®\97\9c\'·òü­jx¤Ì\87ªò&½³i4õÓ¨fd\99\ 5C6:ý\86\ß6µ\8e\e\Ûa&´S\à~\19[x\ëK\'Q\11\16\84ýL4×\97\9e\eûX\n\a\1c\98Uºõ\Ì÷\Çó\9cQ\ÒÛ\8e\Êõ\85ø\ç\1e\Ñ\ÍU\ZTsg>\í\Ã\v\9c»\19§\Íz\a\13\ÑWm\1c§Æ\9a\Õ\ÄRN©Ø¹\ 3M¢´\84\"\90%\99]o±\Ö\×Í\8a3\ 5\ã0\89\"4\82\89\84\11\ 6Q¹øx\Þ\×c\ e\Åð\9cqU]G\Ç\Ú==D \×VV\ê:\ì(0@&\0QcG©\881\ 5¢f0\Öe\8d\Çõc\18ý¿\å\97g\å\9c\ç=\Ñ\11\11\11\11\11\11\11\11\11\11\164vO¸\Ý_\ê\ e\95k¿öG\9c8\ï\89\81\8d\Ç.ײ\ÖÀ±9d7ÿ\0\ 5\12\ 5;\8f\9b9\92\ì\n\áF\82 Ev$J\91\18\r~\1f Xt`{3\ë6\è7\19J=g[ø\87\97;6rV\È4-\80¬\'\ e\êÀ³k2\Øñ,\99»Q\17hú^|\à\8f,\rvK]\15¹\ÎH\19\ eÀ[ªwú®üºw\ fgf¥Ð¾\8dj1®\85aU\12Ö»_\Ó÷\î\Ç\1e W\854\Zr[\Ø\Ö\Ö\éuz¬yrÀr>÷fÀ\éX\18\93\ÊOÅ\8d\14ç\8d¹N\ 4\ f«\97\99ß®J\å]\9f£ýf\Ô6\90gù¹[.\8dIµoúTY1\8f\86\95\9an£qe\1eU\9cy8\b\8d\18»\84l\80O$\ÈÆ\94P\864\9f<±ô\99\7f\Þc\96góÿ\0\92?\"|\Ó\Ú\Î^¸ú\ 3saA¦\Ññ\í\ 4úÈ\8d\94\Êú8ð\9des+]¥­Ì\97\Ê\rf¤}~\ 1l\äN±\ÄHÄ\9f8r²\1e\ f¤3Ä\9c\14\íc\95¬$\ f8\Éeç\94·¨®\91\8c\7f|<!\Ù2!ûþýò,3ûþ±\8fe·~\83ø\9bè\97\8d\b[`º\8d\Ã#\Ñî·£G~ݹ_lû6óº^F\86\11\8a\rYö-®\Ò\Î\\JX.i\äç­\Ä*\èó,-%\ e>\re1\æ\Øò\"\"\Ã_\"\1c\17#³]\13\í\Ï\0B~Ga\Ë=|\å-6¬­n\1eð\Û\ÚjvM¨0Y\96\13\ f\90\e&E$f¹\99c\8e\Ñ\áþ\Í\Î]\8a:¶\Z\v\9dRþóV\Ø\ë¤\Ó\ì\Z\ÕÅ\95\ 5õL\Æ`s*\îiæ\9aºÒºS1\97a\92aM\8cx\Çf\1c\ì4¢~1\9c\1e\ë³ñ6\É\aM\å>4\Û\ìß\91Vê¼\81¦\ì\96\ 5h\Èg\ e\r\1e\Ç[g-ø\bXR\97,\ 4R;\ 3\10\88G\ç\1f\161\î\Î\e\9b\âxú\Ú%þ\85¤^À0\ä@º\Ô5«hR\ 4\ì8G\89cM\nds\rø\Îp\á\94&c\Ø\ìg8s]\8cû\ç\19\11\11\11\11\11\11\11\11\11\17\9fò\97*ñ·\b\è[/(ò\îñ­q\Ï\1d\éµr®¶\9d\Ënµ\8bK¯\ÑUB     $Ë\9dca-\ã\b\8e\"\9c¯\Îs\96\ 4D&qðcó\88    ùjõx\í¶\16\ 5\89\Z\8aª\1cû­j\7fg¶*\áN\9ba\1cqY\18w\\GLi\ e\ 3\n;\17\98\Õû&\Å\ 5õ\Ø\Å~\7f\1e\8fg©µ\8bh\18u\ëô\1d\ÌòW\ØØ´u\r\å\8e\Öv?\91dH\Ìv\Ø\ÛKÙ¶\19\11\9d<\Ò\Þ\Ç\Ù\ÞM\rF©ª@°¶p\â\ 4ó)5JRØ\82\ 4&BĨ\Ñ\ß:/\19^\8e®1\ÒE­r¿\91\Ý\åü\9f´ý\15öÁ\ë÷\1fÈ\93Q¡\Ñ\Ø5\á\95ø[\9e\Ó\î\Ûm\Å\Ñ$\ÆcI\ 6\18ª¨l L\95_oY#-S;\á^½pO[ôú\í\ 3\80ø\87\8e¸{Lª\8fø\90u\î<Ô©ujñGû\1co\81\19U\123\ä\ç%v_\92Jy\Ê\ç{e\Ï϶3\8fcDDDDETOª;ŵ\97Gû±m\Ø\Þ<\Ö%D\ëomï­¶ú\9b\0eƬ\Öy\9afOu\ÈZ\83\9c\Ðg\10GpC\13\1c\Ùó\'Ø\90\Û1Z8\Ð+\â\8f1}V\êúd{\ÛEÜ\9f\19\1c[©I°°\93\1d]\8d\13\82ù\17\17SO>\Öкü\b\Òõý\94\93\13ó-¿\99 \9f[*\\æ°¡\8f$\í¯<\éVQ\çe\92#DDDDDDDDD^3\Ø\1eÀq\'W8\83y\ç^qܪô^4\ã\Ú9\×\Û\15õ¡\98\Ì6<\18¥\93\88Uñ\Üö\96\Æ\Ún\0ñ@¯\8d\îy%þ\Ø`\ØR²¥¯6\9esù\Ï\Ê\Ç*\ÜkTv7|q\Ô\1dR\à\81\ã~ \8d5\àÿ\0\12\86¶k\ß_»r\'\Ð\Ð\æ\Úú\Ç\"\8df*\8995m!\Ã\v\13\æW\Ã<lSñeâ\83²>Vù\Ð\\S\Âñ\19¬i4N\ 4¾R\æ\8bú\Ést\Þ9¦&q\9f¶@£\96#®\ïd³?ùn»\16tS\Ì{\87\83K\86\Ã\Çym\94ñ»â¿©þ08z³\8c:ý¦C\91²>,\7fñ\Ï0\ì5\Õ\ç\ä¾F¶\13O\82\Ûl7B\ f\Î;L\é2~ª\8a\ÇF¨\80\ 22\ 5|HÕ± Ã\8b²4DDDDDX·Ü®\9fp\8fzú÷\È\1dm\ç\íZ\1eÍ¡\ïµ%\86\18-u\8e¿n,¶E>\ËE+\ e\1c\88\174vA\8be\ 2\\CÆ\92\191DPH\8eq\86\1dò\Û\á\ï±þ\'y\97:§$À\91¸ð¾\Ûa%¼I\Î4ðd\ãY\Ù\ã\ã\12d\87]¼6@ÀQ\îñ G,£T\99\15´8\Ò\ìi\ÜLÀ¼¯£\ë^\"|¤ò¿\8a.\Ô\Õs\9e\8e       \9b7\1e\ì\Ñ#j<\Ý\ÆC\9cH\Ñw½\173\99+\ç\1cO8«Ý´kGɬu\89V\18À\ÆSXW6e[m\8di\12\à>\9c÷/\80;\ÛÁ\9a\97`z\ç½U\î\Ú>\Ó\ 29\ÊØ\87\Æ-µ\Ë7\8f?\99¯\ìu\85h§T\\WIa\áË\85>4Y!\95\16Ls\842£J\8c\f¨DDDDDDDD\\2$\ 2(\r*Q\85\Z4a\12D\89\12\b0\80\0\b\ÜC\18\Æ#\9a1\bCk\9eB=\Íc\18\×9\Î\Ãq\9cª¥}K\9ee.»û\Ù;\9e·p\Î\Íi\eª=|\Ø\ìµ\ÜF\8cCD\87\Ê\\\95I/5÷\ÛE\80òÀ¾u\r\15\9c)\10u¡9¹\812HMv\Ò\ÜE\ 6¯g\eM\Þ8<wsÇ\93N\Ì\ê}p\à\è,\86ù\ä\15§ r\15\9cSH\Ö8\ÃG\ 1\9bü¶\Ót\Ñ\12;§\ÌhZPkú\à%Å\97°Zýq\9d2®¨\16÷\957\1eô_£|\a\ã߯:_]zû«C£\Öõ\9a\ØL½¿tH\ãØ·Í\90q\Ú\ËM»j\9a,d\93m­e\æD·5\å ¢fA\ 6\1c¹\Ï1\8d\98\88\88\88\88\88\88\88¼¿\97øW\89{\ 1¡\ßq\875ñÞ¥\Éü\7f³À\95U}©\îT\Ñ.ª,k\æ\8f\99\18\80\9478m\90/q\15Àx\88ñg#\Ëþ\ e\146û\ç\è\Ì\à^M·º\Þú\'\Í3úûa%§\9c\Þ!\ä\n\Ë\1dÿ\0\8f\äJdiFt*-\8c\97Qv}iövE\13F\édº¦¨\84\11B\8bR69Ò\85©\8e¹økõ*ø\8f\ß[\Ì=E\×õ\8d¼\ï1£\ß\è|k\ËZ®\ï¢\î±\n\È\ì$\8d£\8ewi\ÚT;\'\ 5±¢¶- \81\ai\0\ZXUò±\ 6M\9cCÉ¿©\1e\92\b\ÔZ§\90\13ü¹\Ä\18¥«¯\83ºs\'\12\ e\ïMmw\n0£]\Ú\ 3\8ba\16\Ïd\×\Ý2v\1f6%%}\Î\Û\1c\ 3\É\á\Z\â\'\Ò\13\17%yc\Ôe\ã7\81\æG\89Í·ý\93\âQL\91\98P\í7\î ö7]¥\9d;\ 1t\8c¬¶\9bÇ­\85o! a\n\æ\Õ\16k\ZÁ\e\äüdD\Ã}?¬þ}|Iö\Êõ\9a¿\14w\1f\8f\à\ìòl\eWY®ò\94-\8f\86®n\æf.f\95´p¹B\9fU%°c\ÅnK\"\\?¶#\Z\Ã\ã\as¡\Í\Äm°\êÛ®\9b¼Au\9e\93¶\ë;\85c\1c\Ö>\ÃV¾ª\Ø ±\ï\Ær\Æ:]L¹q\Ú\ça®\Ë[\92c.\Ã]\9cc>\Ù]\9d\11\11\11\11\11\11FS\Õ\1d\ä¿=\19\èm\87\ fñ\î\Âú®\7f\í«-¸\ßP%M\Îj¶mGBüG\7f\8f¹\n¹ð\ì+¯!º¶\19\ 3GS}JR\1e\9fiº¡t\81´2>\Æ\Õ\aQQk\7fkYCCYawywa\n¢\9a\9a¢\14\9b+[{[)\"\87]YY]\fF\99>\Â|\Ã\ 6,(QBY2¤\94@\0\9eWµ¹¸\ f\Ó\ï\â\8b\85\Ò\Ív>\Ó[S/³\\\ç\ 6»{ç\9dª$_rG<\97Ì\99©\è5sd\96L\Ö\Òi\Ô3\áÀ\90Áº¶%­\ë,/MEW>d\807|\88\88\88\88\88\88\88\88\88\8b\Ì9k\84ø{\9eµ)ú\176ñv\83\ËZU¤y\11,5nD\Ô\èöú)Q¥µ\8c\96\ 2\Ö\ÞÂ\9b\e\"\961\fR\99\81\á²\ 4\b\ØxýÛ\98²y\1fô\8ct£²±owþ\9aÏ\91\1ec\94G\ÌfµN\ 6\\p\rÓ±ü[?\rüyõÆ\97¨\95°k\äÄ®&\99}ER\Ë\vS\\]T\Ü\18Oa¡)»\87˯§Ë°v\1cg\1f\91ù3®w·\98\91k\10\ÚF\É:ó\82¹\96®,ºqX]\Ô@´\89\8dKlp\9dYO\ 2\ÂTú\b\e\8dEik\98fVW\\V\96t\Îü-z¨¸Û¸7ú¯Z»\Í_¬ð\7f?]\Z\ 6½£rMQe\87\8b¹Z\ì\á\b¢V\Ê\Ä\âÉ\91¥m\97\16\ e,\nÚ\99²¦\×O>jÁ\12\êu\9d\99\ãA\98°\8a)\ 2\11ÀQ\98\ 6\e\f\13\ 5\í \8a\"7\ f\19\ 6Fe\Ì \È\Ça\Ì{s\96¹¹Ã\9b\9c\ã8\Ê\äDDDDDU\14ú ;\87s\Ú\Ï+\9c»®6c\89¡u\92¶¯\81t8Ñ­¤Î¨\93\8a\9c\97eÚ¶(\Õ\æc\ 3Qcm°l\'«µ\b2gJƹ\ 2A\8a<\å\90adÿ\0¤¯\Ç`»SÞ\99\9d \ä\ZY2x\97¨°\19²Ò¸ñ\9aú\9d\8f\9a-2\bº\Å1]&,¸3\85­\ÔL\9b±\ÚV\99\83.\1cj9\"8\9f\86|\í7DDDDDDDDDDE\87=\ä\è\9f\\¼\86pFÁÀ\1d\93\Ñ\ëö\Í^É\87\97¯\Üd\ 3fË¢ì\8e\8cX\Ñ6\9dFݸlÊ\9bh­&Z÷E8\9b,\1e\á6}ð\12\86\9f\ß+^2y\9f\Åwjv.\0\äø\96\16Ú\85\98\8d´p¿(~        \ 3E\É\Ü|i.\f{(\13X&\Â}\å\11ó\8a\8d¶¤Y\fº»&\ 6D\88\10¡Z\Õý\ÓHô­yÀعö¾\1f\8e\Î\Ön\ä¼\åmB\8aLοò\ e\Í//º\ä\1d\1fl\Í/`»\9b#\18·\Ûõ¸\ïkkd\1dÏ»\Ú*þ\83\98v\97\106+\99S\80DDDDE\ç<Á²\eN\â^RÛ£\1dѤj¼u»ì\80\92\Çe\8e\8ej=f\Î\ÐFkñ\9ce\8e\13\ã4\8dv3\8c·-÷\Æq\ì¨}\ä-\ëa\å\rÿ\0x佺H\æm\9c\87¸l\Û\Ö\Ï0Cp\85/a\Ûn¦\ß\ÝI\18\9cò¸c=\95\84\92°n!\1cÆ¿\r\Ëß\9c|³m\9f¦;¦\9a\ÇRüTp¶\ÉZI²6\î\ÔE\87\Ù\rüó\7f O\1d¦\ßO_\ 2\86¨p\ä\10\98\84\ÊMV®\9e³#\8fôG\92H\ï±$P\ØL\9cCHU\11\11\11\11\11\11\11\11\11\11\11i;\ÏG\8c\Ýo\É_C¹\eM®ª¬\1f:ñ]e\97\'pf\Îh\ãdð\íz\Ýd\édÔ\8d\9cѨ¶ø\ßmU®G\12\Â@\84g\12º.\'=\84U\nqW%òoYy·I\å=,öz_+p¯ Vl\95C°\r\95\\ê\8d§P¸adR\ß\×0Õ¶L\8eY\11$Rl\Ôr\v\15ò\ë\ÍcO9­\19\Î5w7CûAK\Üþ\9eõß³Ô­\1cvs\17\15j\e\8d­f\ f\f²(ö\v:x¦¾¦\9e8%4xs Yº@\Ï      \85#c\ã,h\Êadg.[\"\"\"\"-nù\82\ä9üO\âû½\1c\89V\ïk-S®|\83e_\8fµÁû&ÿ\0\eø\ÑC\935¯p\Ús\9d\81sð\Ç\ç\18&sñwþ\9c\Ò÷Áº(9C\9aø\7f\8d%2C\ãr\')qþ\8b!\91\1f\91\Êx6ݲ¢\80Í\8cL1ùd\8c\8eÁ\Ø\vð\Çe\84\Ë]ñw·¶oyд\Ê>:\Òu=\vZ\87\16\ 5\ 6\9d®\Ôku1\"F\14@\n\15D\10B\ e[\1c?\ì\Æ\â´?q}²ì¼¤{\Þ÷½\Î{»j\"\"\"\"\"\"\"\"\"\"\"*t=Eý<¦é\87\95\î\Ã\éºÁ\ÆýO\97d\Ã\ìn¹\r\99\92GT\83\97\ç\\[]Ö\98ò^ì\98\8cÛ¡lr\9a\Ø\â\8b\ 6\10%\86²\ 4\82\17\92k^\8d\Þd\Æý\â\çm\âü\Ç8\ßÁ\1d\8a\Þõ\ï¸ùn[$[\Ô\Z~Ec¢|Jüb\18\89~a|H0\9bó\9b9\Ùk\Â\à\11\Ò\ÕDDDDZ©ó\87¥\Ë\ß|Jw\ç]­\8ai¶\ä\ë\9e÷>\9e,|û\18öU°q4\11Ç\8c¹\83ve4$\8b\9c\e?[p|¿9c\98\Ò2«ÿ\0\ 6\1cw\ 3\95¼¶tcG²\87\16t[.bÅ\97\Ñ0_lf\É\Õõ=\9bk\83(\8dø\138\Ì\19Ô\91§\f­c\9e\ 2\Ça\87\8f\98Ú®\96DDDDDDDDDDDDUÀú\Ûø\ÓZ \ì\çJùJ¾¬\0\Ú9#\88yC^\Ùn0!6M\94\1e:Ù´\çk°Jv±¥$j¦\îV¥\8e\12¸\8d\ 1­&\10yn$¹¸\Ù\'¢A¥\ÇJû\8a÷78\ 3»EJÑ¿\Ûôâ·\89õl\99¸Ï·\ï,cÁ\9c\ã\ß>\ß<~±\ïû\9a\Ò\"\"\"\"\Æ\Þ\ãj Ýº\9d\1dZO\Ç!¶\á.J\13\9añ\à­&A©Z\Ë\18\9c<\å¸\Î\fH\í\16]ûø|þ\7f\aü~\ e©·\ÓM\0\Ö\1enú\'\81\0\86dM¯\95\ç\És\ 6\â28bð\a+½§3±\8c\àCü\8c\80-!2\Öý\å\bñ\9c\90\8ck®$DDDDDDDDDDDDPMõÀ\ë5\î\á\î\84\î?O½¨y+\995\9f¿8n~\15òu}F\Ó\éc¾\1f\92b|É\8c\93\âÿ\0¨Y\Ã1\91\å\Ù\Í\1fF®·\ 6§\Æ\ eùw\Z\10c\ËÚ»#»Î±\9214d°5m.½H\ 3\È#[\87\18\81\89\0\11\18÷\å\Îhc\88Xv\18Ƶ²\áDDDD^[\ÎQq;\859\86\v²\æ¶g\16ò\fW9¾ÿ\0,bF¥n\1c\å¾ß¿\960ÿ\0|{c\ß\ß\Û\Ûöª¥ô\9eid\Ûü\Ëp\ì±dmv\91\Æ<ú9\äù\7fH\âk\f¤.\19\96µ\ÙÁ\n;÷\ 1\9f¬5\Ù/Á\Îk\1c\çb\Ú\ÄDDDDDDDDDDDE  \8f[\9dn\v\ÓÞ\97\Ü}~ù\83\Ù]ª·\îöÿ\0/ù^/¶\95õü¿¾>\ß\áp\ïoõú}ÿ\0\Ý\Â\Ï\ fH\95~!øiФ`\7f\f\Ûs\Ï<Xe\ßû\Ù\1e\ e¯\ìþ\ØþØ­À¿\×ü¯\ïþ\98\93º\"\"\"\"\ê\Û\Ì\11Y\é[\85iÿ\0ȱն\b&ÿ\0ò\97S.9?þ     \95\\G¥+\82\ë5\8f4\9d\Ç-?\Ø\n~\ 4Ò¹Ã\8e*!·ú\82\Êû>Y\ 6¿\ 1\Ïq2\ãý\91a\é\í\0½ß\9fv\È7\Ûò~\19\9cY@\88\88\88\88\88\88\88\88\88\88\88\88¢¯\ë\ 3Ñ\83±x\9d\9b·\9a\e$;\8f\8c§E\92\ f/\81\'c\Ø!\ë\9fhð\ìý\8d\É\âÌ\97\19\es\ì\Ò\äosp\\a\Ù3\éu\Ñgh\1e\18z\Å\ 2Àoa¶\e\1e\82\ç³\á\93A\Ý÷«\8d\96¼\98\Çû\Ìl+\0\ 5\8fÿ\0}\82nT\83\11\11\11\17ø \Æa\90E\e\n\"±\Ã(\88Ö¼d\eÛ\96¼dc±\96½\8fnr\×5\Ø\Ë\\\Ü\ç\19\Æq\9c\áA7\Ó\17A\1e·Ì\9f\9clG\Æ\ 6*\ eG\ä\8a\b\Âo¶\Z\Ø\æ\í?#üq\8cc\ßô\ÆÒ\89­ö϶1\9cÿ\0\7f|)Ú¢\"\"\"\"\"\"\"\"\"\"\"(\àú°\ 1\83xJ\ìi2\Ügñ¹\ 3®\ç\Æs\8f\Ûr\îp\Ò#|±ÿ\0\fûH\Ë}ÿ\0\à\ì\ãýVsx7«\rW\88o\1d\10\86,\Ê\ê\Ï\16Z\e#c\e\93\ZÒ\84\13²R\ç\r\ÆHL°\Ãg\Í\Þ\îø1\8cò\Ö7\Ûk\b\88\88\88\88¡\Ñ\à[C¦\Ðü\ãú\84i©\0xð+ù\86\9aXG$\8f1²]Ë\969kl²3\88Owe²,e\Z@\ÚÏ\80\ 6\"±\80\18ÀÁ\r\93\17DDDDDDDDDDDDQ\âõO\Ñ\Ø\ßøL\í<jÀfA\à_ðe\áÇ\875¾\Õ\Ô\\Ù¢\ÚÚ\9f9{\9a\ßhµ±eJ\Ë}ò\çý\1f\ 1µ\Äs\e\9c\ãð±\18\91<Ix\ã\11\1dòsºwÁ\12q\9fø\ ef\85O0Mÿ\0 Gc?\é[:DDDDE¡\Ï\Z\Ýn\'\14ù(ò\ëÌ\92ª[\1eG=se%¤;?\ÆÀ\9f\"\8f]§«\87\16\v\8f\86\ã\ï\10®e\ì6C\Æ]\9c0Ö²²\Ö\ã\ä\ç?|h\88\88\88\88\88\88\88\88\88\88\88\8bWþf8>ϱ\9e6;I\Ãõ\ 5dk\r\Ã@\97_\16a\ 2\ÙC\81(\8fh\àO|W\Z;¥6%\89!\9dÀ\11\86G\á\99ø\948\ÆL<\98\è\æ\8aþ1\é\ÇXxù\ád|iü\1d\Æ\Ô\"\bþ¿¬q`jõÂ\89\86\àyø1¹\89\80»\ 3ǶE\8cýnk^\×7\19P\88\88\88\88\8b\áT\ë44s®¬ªk#Á\9d±Llû¹!û>\Ë\19\8cÁ0Ó\9f\æ÷7\ä\Ü\14\9e\ß^\18\ß\ëwôû¯º\88\88\88\88\88\88\88\88\88\88\88\88º¾\ç¨\Óo\9a½Î¡°\8c¦¦½\8b\88v\ 2\ 3\Ú2¼80\8f\8c1\ï\19Z\Üý\81f}ò7c\Û\19ý\7f®>\95\r4\1dr\8e\9b^¬k\Ù[CS]M^\Â;\ f# \Õ\Ã\f\18\8d{\Ú\Ö5\ÏÀ\0<9\Økp\çc9\Ãq\8f\Ö>²\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"ÿ\Ù',4,0,'','','',''),(26,0,10,'9305bf00e7f924b7','95550517915bf00e7f84cd7979805449','2018-11-17 13:50:06','2018-11-17 13:50:06','','','Contact Photos','12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007','image/jpeg',80,80,2356,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v     \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0*\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b \n\11\12\13\14\16!#\15\"\18BCÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91ù\ãõ1VüwZfº\9b\bJ®\Ø\í¨!¶\9d\85m³e\ÙMg Ü\91\13\ 4\a\14|\\qb½tÙ\99\11ö$\15[Q\àÁ\Õ\Û|\'¬\8fJ\18¢+\18\Å_\8aÎ\9fy®ód\à]±î§\91~\Ü\èN\9e\ÊM>et-e°¦µM§s¨2T9¸\Õ4ZO\ë4\Z] W\9a~?;\ 6J³&\Ñ&\ eðu\êôç´\84´f÷}v\ë\Õ+¬\9a\Ö3V\Ð\ì;j\Ó\v\1c\ç\ä*stn]\9d¼.\87\98±\Ç\19\â       ¶\í;E¦\\V\1eÀ\Èu0°\ÏEW\ 3}o¹\e\f\16H{\v÷^8\ã\8e9\13{\á\Ù\ 4õ\ 3¦\1d¢\ìòE\1có´v\8eØ»\ e\n4\Ì+\"J\Ú`kg¿R\88+\b\ÊUøò\Öl\Äƽ\9c)\1eÍ\94¬üÑ\8c|±Po\8bÞ©\Û<°yCÓº\7fhX\',\98\Ý;Jõ»\13t0\×U?-M\85̦\É\ÛR\84JcûX\9e·\8e\19ðqòXJ¿\1e\Ãc\8f#-ýh\Êqt\15F£X U+TjL\ 4MV\9dN\81\89«\Õ+0A1\e        ^®À\80\Ä\\4,Lx\Èlp£c#\Å\1c0\85a\bi\81\Ùm´\'      N1\È9\äo\Æö\87òa¢¤t\Æ\è2\ëX\90\10Igµ\î\Æ\×Ö¹\êå\92\81d\91dl72\88ø\é! m\Ñß\92\ 4z\äk6\à%b\ f`ofS\1f \91dÄ­\v\ 4òe\é\ç\ïýã­\97m©rÙ\9aÿ\0Ll@\ë{?D[\ìÓ³Ú«h\ëb\10\f\94E¯]\ae|õ\ë\é;e\1eB.\ÉO³W\90\ 1 <T|}\98Ixñ$ \9fµ\ßLm\9a^û\Ô:»xk\89\ 5J\ëýÁ¯©\Û6\95\"\â\12Ó¦U¯5øû,\13ï²\87\1dK\ 4®6H\7f\1f\ e/,?ö3\95+(\Îy\é|q\Ç1\8b\8bVØ·?\8a>þkÚ\90\84H\Ù$úͲ&a\ãDK\8b.P\Ê\\Vn\è\8a\r¶³\85¼\\\9akª\0Vq\9c\á\â\bm¥%I^S\9d\ 4ý\19¯Dµ\å\8aþ\83\Ö\Ú\ f#¦;q\984º¶\13ö\9c\9d\99¤\b)±\Ò\æp\ê\Ê\ÄS\aº\94\8f\î\æ\ 4hÕ¯\1fJ\1c\Î-&\ã\95Mz¼g\é\97\ f2\12\90T\ 6\98\90´V:ó£©\9b\fx\81\Òù¥lb\9cµXc\Ã!\ 2\8d\96ý\ eѯ\ÃB2\9c\95\86\90\188Gô6\9eX\ã\â\ãE\Üz\Ïã\9f¥:\1fb6H÷\íg\ÖýY^ºÇ\98¼­ø[^*\à\9d`¯)Y\Â\7fÒ¹*aPL\ã\Û\1f\16#\9bN?\8crzq\Ç\1c\â}\86Ie\á\88i·\Ç!§\18}\87\90\97Yy\97Q\96\ÝiÖ\97\85!\Æ\ÜB\94\87\10´\å+Nr\95c8\Îq\Ê\Ä{\8dÕ½\8d\é óA¥{³®ª²¶>\92^v}\8ev\8c¸D\7fXz\êò$\8cN\ß\ëÄ\82\Þs\è\Z\ßI«\Ø$M\×k\92y\"X\"À«\Í$\97\ e\8a³\v\11en \ÛZ\ï}j\Ý\7fºu%¢:\ë¬ö\8dN\12\ïFµE)j\ 6r·a\ 5\99\bÃ\9aC\Èl\81\ÜX\ï%\ 4\86SL\98  Hx3\18\1ei\11\Ûȧi\b\éGF»IÚ #\ 5\99\9b\Òzv\Ùo«\Ä\È%\Õ\Æ\É\\\Ò&\"\éAJ¡\87\19}Q$\Û$a\9a\94\Ã.´÷øõ\13õ8\87>*Æ\8cÞ\96~\86\ f\äc´ý\8aò½\ÝB\Ë\Ý\16m]·cÈ¢~Ú\94\98\r£²S\è\Å\î\7fcO\n\9c4\13¹\Ö\11E\Õܦ@ \\\Â\ 1)d\0\á\ 4\aôøv\15cG\1cq\Ï\ 5\ì\çft§O4nÁ\ìganñ\Úÿ\0TkHe\ÌY\'\Ïù:óªS\88\Z6\12\12\91\93vIù\'\86\88¯AG¶\éòÒ¥\8c\18Í©n{\ã\0]_\ì\1f\95ÿ\04\84\ãv\ëk9~,<l\1e{\ØÖ¶\18\9a\85R÷\Ý>\ËWX%c\æÁ\r-}\8b°\Ñ5EJM¦²ðV\88ªÁ\ä\f\90\ 5_\ã2\äø¹d\94ñcÓ\8d\81[¬W;\1dL¹w/\152\r\90\89\90\îV\Ñ\Ø\1d\8f@\ÓRL i\19\Ø\ê\9eÄ\9f\93\×5©c\ 6m#8õ:\95\\a\91~B\880\ã-m*tQh\94\9d_M¬k­oR­Ð¨4¨Xú\ÝB\97O\85\8f®\Õ\ë\15ø¡\Ð,l,\f\14H\â\Æ\ÅF\ 23hdP\82\19\91\Ùm8J\11\8csÇ»y\×\n·oú»¿:½t1ø\Ê\Þö\ÕW-jtȬ\à\82\1e²\Ã\12\fe\8c1\Ô\ã( \Ê\ìªÁ\9c\10w\1dm·É\8f\15\86Ö¬óO¯N\Ƴør\ß]\91ñ!\äJ,} j\ÙûQ\8d­\Ö=³g\Ê\â´öó\98L\14u*\É\15H\ØÒ\8d\ 3\ 3)û$-~\933H\1dd²k\Ò\19±\Ôf\86\87¹°\15x\Í\ä\12¤­8RU\85%XÂ\92¤\ç\19\9c{\ã8\Î=ñ\9cg\1f\Î3\8f\ã8\ç\Ï\1csQ?-\94Ù¯*~j:M\âJP\ÉDuO@kw»½Û\98\88Ò\88 \9b\8f\ÂD\Èz\Í^W(q¥8Ê\83Mv¢\ 1\82£\87\Ü\ÖY!ó\93\"\87pm¶a!!\ëP\Ñ5\Ê\ìTt\15~\ 20\bX8Hp\87\8d\89\87\87\8b\15 c\"¢\ã\83m\91\0\8e\8f  \86D\b1ZhqFe¶\19m\r¡)\Ç\Ùñ\Ç?!v\×\Ô-\99\ 6\ícc\Ò*\e\ 2¶úþ\×\ë\×j\Ô5®\r\ç0Û\8da\ÇbgB<\a\17\86\9du¿\9a\Çʾ·\1cG¿\Åj\Æ`·d|h\é]\ÍXùi\ë.\Å\évâ\80\87l\rsºú\9bn\9c\Óòµ2#Ò\97!E°\Ñ*2Pú\ëgS\Ç!\81Z\91¥\Þë\92±\æ\Å4¸ð\n\86uL\9c4Añ!\ß\Î\Älݯ\Ùÿ\0\e\Ýýj½ÿ\0;zHd)\12û\ 6©\Z\Ü%[²\9a\91?K\Þ0P\83²8\912E\8f#\0\å¬\0\ 4\8f\8dmv\9aó¢\ÇF\9eô\Ô4>u¸\æ\ 3úÉ­G\13\Ô7\å\ 3e:Û¥\18\ïK:@\0\85¯\å\94E\alv\ä\ 1\91m{ÿ\0®\11 F \16G\Û\1fú²þqÿ\0|s>\1cq\Ç\1cs\ 2²\Z\Ìx\ßRõceE\'\ 1.\Ï\á²\Ü-¡,!M¦`º\çnjQq¤\9a¤º\96\ß|peA\19µ)\95:\96\ 1\19\1f?­¶ð\Þz¸\ä\ eÕºý0\9eH;\99°S\1c\86Qy\ê\9fC#ñ&\96\14\9c\98]Wa÷¬SF[ÿ\0RP\ë¢\bl2\96\1dul²ð\ÙV\eK­\áSÇ\8e8\ã\8e@\Ùz:W\äò\81²\15\10¬©\8e\87\í\ÊSs\Øo?\ 4~G`t¤\ã\91+w\1f\14\18l\Æ\ÛW¶U\86\ÝS~ÿ\0\17\97\1c\àH£ \97\8c@\ì$²\19\1cg\ÊKM¤\97\11d¸+\ f?\84\á\Ç\19\19\vpv\96¬¡\95\94B\9bJTó\99W?\1cq\Ç\1c\ëd1T[g\ävrsC:\ee\å´\ä\84\nû¬¼ð\èw\Û\æ\96]xv\1cq¼gâµ²Ò\95\8c\å \Î;<ÿ\Ù',5,0,'','','',''),(27,0,10,'9305bf00e7f924b7','95550517915bf00e7f84cd7979805449','2018-11-17 13:50:06','2018-11-17 13:50:06','','','Contact Photos','12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007','image/jpeg',48,48,1488,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b        \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 1\ 5\0\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0  \11\12\n\13\15\16\"1\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿\ì.\é\1eY\Ö\Óû\8e\190\9c\ f\ÆK\ËŤ*X2 \7f|\Ë\Çf\Î\ä\8c\12Yys\82G!µ+\15\92\91c\91·Tଲ´\Û>¾\90\99\ 1³I¦\Ü\Õ]U¢\ 1n\å_Pf¿\89\Ø-5ô\e\84a.-¸\é\é\145\87\12Û®6B]e½W\87\87\91\1fò\1e\ì]\81\Ä~©:\'jjy3 6e½5\9d-M´G>\à\92u3v¬ªk²\Öx\93\Zøx\19¸J§\8d\82=\85!ð&\9b\8f1\87\ey\86Ö\99\íø\9cz\ì \è>\10®ö\íª\b\19¾\8f\ì<\Ø\ì¯]e\Æhû\rWQ\85k\93\86¬Ube\88ýb\86\1e\Þ\ì\17óû#\Ì:Ó³\ 4J\Ã\r\'\923\ 2\1e[dÿ\0 »\'°\ÞR\çÒ½\84ð·RZi¡sÓµ¢w?9\ÎÔ¨·\1dgt¡\ÊØ£«\Ä[@\1eZ¸\í\84Ih3¦Az\Î&f\9d\fº\Æ\ f\92\8dr\fø\959!@½Ew\ã~\Ìx\'Ju\89UÀ\ê\16\ÛX³U}\91Y\8dy\ç\âb¶5\ZX\8aÝ­P\8b\'\ä¦à¥\8d\r3Ð\82\96\ 5\83\15* D\96k\ã¬\Ç\ég\87\92\×\Ü÷\v\Ê{\16õ\É\Ñ\1c\ËUX­\ìy\88\10\9f\81C#gk©\16-\958r\8b\Ï\ÊB\Z\ÌTs\95bNs\nh&&\Ü)䩦V\9c¦\7f\8d\ fJC\í\ fZ\Ô\ e\88MC¢xbR\É\Î[óWM°¸\ë5FR¿m²»P8Ø¢s\83\e\12\91\85p\97\ZCY±\ÃXÀk\í\800¥r¿É\9f¦-\Âó\96¡õ\9b¥`\139\Ð>\Ðö\1c.\8f«\9e\1e\16¡I\8c¹\Ò     ·LÉ»ôyܪaù\bºò\7fHgp\1c)vI\7fº\v\8c\ 5\92«Ï¬þ\17§ú\à\â­\'\È\ÔùuY\7f\88\"I·Û\96Â\85þa°\ìò\ 4دVF\ 4Z\96\àQò\16)\ 3q\f\ 3®:ð\10¬\Ç\ 4ó\Ï::\Ý[\ã\ç*\Þ{\9a\87κog\ï}¡-\88M{¨\èöM\81o\93ú)\×\a\83¬Å\91(b\ 5a\1f+(\â\90>\ 4\8f\11¼e\Ò\Î|q\9aN\\u8̶\ã­Y\Ò\Ý\Å\ 5    \Øý\Ëq\Ø\Zò\91³\Ç\16\é\Ï|+®\í\ÓZþ\87­5<\Ò1\'G\96\è9\Z\99±\96½½·\ì\95÷¢flpV    \Ö(\15GJ~\11ªN\rÉ\89\16¦k\8d!¦ôù\1635^¬ k³®&7#o\91§T\á+òv\É\16\9c)Ö¤,òQ\81\ etùͺi\8e$\Éb\f\'\ e\16Jð\ç\Ù÷r©\á\ìÿ\0\Öü¯m\15\Ì[»O]àµ\9fYñ>\à\8d\Ü\Ú\ 2\Õp\8f6S_N¾\83á\89´k\8d\90\14N?|MN\Þ4\18,ª^   J\97\821\84\16 \å´\éb>\Äl¾\Ä{\9bhU­\83Õ\9a\92Û­)jd\ 1vvÓ¢\97\1f¶56§\95)öBT\9d¼ø5\ 3±£5\ê\8cwõ\\\Ø&kFk\Õ\È\Ü\âBòMXV\Þ}\ e\\d\9ct\Ôl|\Ì9\âJD\Ë\ 2$\9c\\\9cy\r\16\ 4\8cq\ì6PG\ 4[\v[\ 4\88Xδ@\Ä2µ´ó.!\ÆÔ¤+\19\Ì\éö\á®\ß\Û|\v·µ\8bH%\æow>p«\Ê\n+yq\Ã\ëòý=¦\84²Æ¸\9cc?õd«\îI\80\8c¡°\È}k\ÆP\95c4xa\87\fv\ 4\11\96\86\14VZ\18a\ØBZdq\ØBZe\96[F0\86\Úi´¥\r¡8\ÂP\84\á)\Æ1\8cc\Ïo\ f3öÚ´\ 5\æ«e¤\Ú\âÃ\9c«\\+ó5{$,\88\95\1f/\ 3?\1cDT\ÄY¼\95²@gÇ\96@¤°\êTÛ¬º¶Ö\9c¥YÇ\88Ǫj\Ô\í/\×\7f)R\ìfH\1d)M\Öm\Ô\7fZW.\äö\ãk\13\ÓppA?\97Ô·\7fó`À\8e\8ek\nV~¬\n\ÚSýp\9f\1dM\81G\8aصrj\93Ku¸òe+R\Ë[\18N]Á5k4=ª?\ë÷\ÆSñ\99\bQp¼ÿ\0¸FU\94ÿ\0o\8f6~\1e\1e\1ebµ\Õ\Z/[S!)\10®¾ô\\\v\e\84\19{-\95 \\\82\92¼\ãýú8ZÐ\9cÿ\0¹BSó\9c\ç\ç>\7fÿ\Ù',6,0,'','','',''),(28,0,12,'9305bf00e7fb7439','73148550885bf00e7fb1447228602212','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','12242958235bf00e8006f72987476580-4.jpg?ts=1542459008','image/jpeg',300,300,11008,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b        \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 1\ 2\ 3\ 5     \ 1\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b \n\11\12\13\14!\15\"1\163A#BQ\81\82\17\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/r9¸f3\9cDëº\9e±®\8fð±g\ë]L\ã\Íϵ[d_\å\"¾þW\äñ¿\19Ķ¬\94Hx\8c\ë»x\12.¯+\'=­\91\ 2ûY©´­\97\18f0Hð\96\11\åF÷\98}`\1e\ 2\Æø<|\Þ\r\á\íRľ\Õ\15\94\ 1v=¢¢/\ÄyÀ\8b¸\ÛZ\83\13d´\í{\Û.%\ 5F2\1c²9#\93\181\ f©\1e\\ó?\åC\9b¤\96VõÞ\8e\Â\r\å\95ùMÆ\95¼M\ãG\a\Û9À£\ eO\1d·W\9aøag\Ä,\8f\"Q\Ø\á\8cx7\Ú\æa\Ë\Ìõ\ eòù6\ä-\96§Nл\85\Þ\Ý\ãq¾\90ø\Ôz¶¡\Ø.À\ì\Û-Ì¡\80²\8b\1e¦\8e\9bn\9bic!±£\9eI\ 5\ e)\88\Ð\0¦sp1½Ø\95×\8f\ e\98ú°9J\92£h\87\Û^I\ê\×\e\\Î\8b\996\1d\83\Úuý«x\95L\è¸8®«x\êú\83\99\90\94\87üV\Ñm©Ø\82P¦bH£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8b\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)\ 1T\É2\Þ1\12CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ø\êy\ë¶WPKüg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ek¾º\ê8­5¼ù\Îo\Æ#\àÁº$\Z\Í;\Õ\äù¾G7\9fñ¯j¹\8a\ïs\8b\ e\ÆE\8e±\Çõ\Ï5/\19h\î>e{\aR\ÓA °¡b;\'N\f\8ben\18\ÓeEÅ\96c\19\â\Î\ 5¢\90¯\88\8fN\ßm|\9e˪ä\9d\80\13ºý\Õl\96\14¢òþ\ÑQ\92Zo\91[ &\9dU\Æt\ 6(¤J,\8a¼û\Ç\Û,\ã>\8a1l©\çÂ\83²ÁþDp\ì¯ñÿ\0\â+¢þ6õ\18\94\9dv\áº\0\î/\ 4\\l<½¶B\87±ò\8e\Ë2>\\|\Zf\×>9lb\Ã\f\ãÎ\93UY\fÃ\8dL9Æ\85\a-\8bñf6h\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88¢#\êAõ\ 2\13¡t6=:\êm¥|þ\Ø\ï\14$ÿ\0\16\82-}\9dw\ 1\ë6AÀ\Û9\Ð\1f\99 ±\ä+P\94\8d\Ö\é§\0\95µo\ 4«\8d\98\a\8b\ 6\1e·µ\Ö+µ\í{6÷³_n{\9dõ®Ñ¶m\16³o6-\8aòi\ì­\î­\ì\8eù3¬lgIy\ f&T\93\91\ä)Hü\ç9϶=\9b\8cc\1f\ 3\Û?¯\×÷ý\ãÿ\0\9c{\ç\1f¯ù\ã8ÿ\0\ï\vñO\a\Ó\Ï\é\9e\ eÿ\0\ 3M\î÷\91-\'.\Ôg\8e=ÿ\0\fõ¯e\86`\9a\â7\Ï/\83¸r\ÍL \8d\8f-­d\9am:G³\ãDx\ä\Þ\r·\'\Ä\rj\Â\Z:*mb\9e»_\×j RQ\ÔE\14\ZÊ\9aÈ¢\85\ 2\ 4@\ã\â0E\8a\ 60B\e\7fyökqòv\\÷g.s\9d\9f¬\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88µ\ 3\æ\çÉ\86»\âó£[\×3\ ePK\Ì;§\ß\Ç\\\ 3®=\8d).¹&\Þ\11\9f\ZyÀù\10ðú]V\eK°l/\14À\Í\15\\B¾´r§þ<CS{\É\\\95¾ó\16ý¶r\8f(mw\e\Ç \ïWs6-³k¿\95\99v·Vó\Éó<\99\ 4ö`\Ä67\f\8f\ e\14Q\82\rt\10Ư¯\8d\16\fXñ\Å\Ñ\×\îs\9cÿ\0|ÿ\0§·ü°¦\89\éjðt\Î\Ë\ï\15þ@ûQ¦}ü\ f\Ç7\"7\ 1\é×±2øü\9d\ÈT²\ÆW\îVUòÃ\80\17P\Õ$4\7fÁ\17.\96û;\àH\99\88µÃ®£·\9deh\0\b \f\14\820G\8e\ 1° \8e\0³\ 3\10B!µ£\10\84\83\e\Z\Ö1\8d\ÃZ\Ü7\18\Â\æDX{\Ý>øõ\7f\Ç\Ç\16F\æ^\Öò38\ãB\9bp:\186,¤»Ø§\ØZ\90.> \Ö\Ò\ë\Ðlm\ì\å}mùb%|93\1c̸Ì\8eð\ 2IC\1f\Înõ\89ø·\ã\È\í7\13Uóo`\8d\î6\12&½¢\Ùññpò\11\Ís\ÄNI\87A\1c\91\ÄÏ\81\18\123\8c½\82\88G1¸&,\Äõºu\ 5ò°\Éý,\ì\8ch_/lÈ\89·q\84\ÙXg¾?«\10\Íe^,»\Û\ß?\ f\Î\Æ=ñ\8c|ÿ\0~ø\Úw\ 1ú£¼:s|\Êj;>\Æ\Èá­\96\Ò+\8f&\1f/hÛ¶¥®U\95¹\Æ?\Z^û.\81º\83I\9c¼L\ÆKf\f9\Ï!\19ò\8b\1cò\99¿\8dKrÔ·\Ú8\9b6\91³P\í\Úôö±ð\îµ\ËX75\87\Ã\Â#á¬\99\0\Ç\aÙ\81\1cDx\\ü\14m#>ln]\8c\88\88\88\88\88\88\88\88\88\88\88¸\ÈA\84d1\88Á\bLy\nR?\f\18\Æ\Ìe\Ï!\1e\ì\á¬c\e\8c¹\ïvp\Ö7\19\Îs\8cc9U\ez\9aü\87\Ùw\8b\Èþÿ\0¥k\e#,ø\'«E\93\Ã|s\Zª\Ï3h.ö:¹%/!n\í\ 3¡E,k9·\å~ªX¦\91`\18ñõ6L\84øD¸±\89\88\ê\"\Ø÷\8a/\1fÛ\87\92¾\íñ\1f\19>\16©mhí\93\96\91_ :\8f\19\ë­üý\86|\87\8c\à,s[å\91µ\9a\É1ÿ\0$𬮣ٺ\14\98UópÛ¤ø\87\89´\ e\b\ã\r\13\86ø«[¯\Ô8\ç\8du\9a½CMÖª£\82%}=\15<vÆ\87\ e4h\Ã\fp±­n^\æ\0!\ e\b÷ýA\13>,Ç£¢\"ñ\1e}\ë_\0ö\9fD\91\Æ=\8d\áþ?\æ­\ 2L\80\Ì&§Èº\Ýv\ÉO\89\91\È3G\98\18ó\Â\\Æ\97\1c\ 4\98òc8G\ 4¨ñ¤\88\8c<`\10pHòù\é\14n\9fM·ö\a\Æ=\85͵mh\rwyÕ­ºÑ\96\96\83\0\ã\ró\9dÅ\9b\85\86b\9d\ 3£J\99\8d{j\97bs\16Í\91\á\\VV\Õü\v\ 3\9ak\8dr\â\×^\Øj¬¨¯è¬§S^Q\ÜÁ\95WqMqW(°l\ê­k\'\b\13k¬«¦\80ð\çA\98\0Ê\89(%\8f C(\Þ\Ì|Õ±Þ\83y]\ï\a\8dͲ\1d\ßZy\92ö£Qu\9c{\r\8b\88v9\126\ e+\Ú\Ø\12H)cYj²\8f\81Ö¾Y¤fD\Éú\é\é¬\'H\8f\ fù)3¢\ÆlWZ#\á·Î\87\\üµhÆ©«\fn&\ìÖ§S\1e\7f ðe½¤s\È(\9a\11b\Ça\ã\Ù\Å#$\íZ\9cinpó)\ÑÁg\16\9e\f2¾Th;\ÊDDDDDDDDDDE®¯,\9d¹¯\è\ç\8f^\Ïö:XbÊ°\Ôx\ÞÖ§U\812fk£Yî»\8e\e©\ê5\8f\9e\10\90\Éa{o\n$S\8a4Dzi£{D\92ß\90\9dI$¹r§Ê\93:t\99\13gM\90is&K1$Ê\97*I\1ci\12d\È3\9ec\È9\9eò\98\Å{\ÈR=\Ï{\9c\çg9þtV|ú?ü~?¯\1d-\Û;\8fºUÏ\81\Èý¾°\89\9dtS\ãÈ\89ø|\'¦É\90\Í8\91\86I2bL\8f³\Ûʸ\ÚAo\bpI*\14ø\15\11\Ìúh¦Ä¿\Ñ\11\11\14(}O¾\ 6\ê¹\ãD\Úü\85u7Mü~r\ã\Ê<Xso\1c\êu\99yykK«ø\à\Û-U$\ 6\áó·­^\e\88fÿ\0\e\18\17\Õ\0\Í;\ãZþ5\16(+eE\ï=e\ì¯0u\v\9c8û°¼\13´\ÉÔ¹\'\8d\ïa\Ý\ÓN\e\äf\ 5\80\9cd\99C}\124\98\84²\×\î@<õ\82\Ù1\8cð?\ï\85*\15\80\8d\8c>ÿ\0q¯\92\8e\9eqwg8ðø\8f/`ª\15G!j\æ\Î\19c§r5(\Ù\a\97\19\ 1[\1c7!\99\9aÉ\98\ 6 \ÙB\Ã%UÈ\9d\ 1Á\98m\82¢\"\"\"\"\"\"\"\"\"(\88ú\Êù\Êw\1ex\Ù\ã\Π\8aß²7a9\Û_¤²n>¼81x\à\f\äQJË\9cß³\"dú\88q^1»\18q&\ 4\8f\1ceµz¢õ\Î\0\â¹\\\ë\Ï\1c\'\Â0ffºo1ò\ç\eñ\\;\f1¥\Ì \\\85¹Sj1\æ`n\ËZL\Å-»\ f\86;8kòÏ\8es\8ce^\83À\9cC­p\a\bñ\1f\a\é\Õð*µ~$\ã\9d;\8f(\àU\83\11«£W\êt0iB\ØQðÁ´\11\ßøy \ÂÁ\8d£kðÖ\8cm\Æ\18\ß[DDD\\\12¢Æ\9d\ZD)±Á.\1c°\Z,¸\92\829\11¥F\907\bñ\ä\0­x\8c\ 3     \ï\11\82V8e\e\9cÇ·-\Îq\9a\81½G\9e9\a\ã\ÏȦ\ë\1fNªm\7f\bö4\16\1c\Ý\Ä\ì\0\Þ\È5\ f¸¸\92\r\çO\ 1\ f,¦;\è67b\Ó\Ü0\ëj`AÙ«©*cf5S\9c´\ e\8ac\9e\8e\ eê³\88;«È\9d@\Ú.L\1dg³ú\91n4h\13\'eµ\91¹3\8f+\ç[\Î\15]\7f\Ë\ä[Ý£S\8e\æ\É(FLf¯QÁ%}a\86\ e\Í\ÄDDDDDDDDDE\ 4¿[þ\Ä\Üq\ fCu,1ø~y#\97v,\93å\9c\8c\8df±¬\Ö5\99o\ÇÙ¯\ e^÷a\Ù~rö\9d\Ø\Ã[ð\Î_]\Ú)\13úZ8\ 3R\ç\ß0\\,\ÍÀY\93\v\87t\Ý÷\9cª¢<#\91\12^ä\82®¾\98S\ã\e\19\19\â²N\Çù-k¿Ê\96\b²>$úr\"[¢\88\88\88\88¢C\ë\12\ê\í\8f2x\ä\Óy·Y¤\87*û­|\ÃOµ\ì6!­\ 4\8b¢q\î\ËOq©\ÝW2n\1e)`«\81ioU³\Ì\Î\7f&(EK#\Þ;\v\aW*-\8fø\82\æ\É]xòq\ÒnU\85\1c\92¤\ÕsÎ¥¬\8cBú¾M\Ç%:O\19\12C°l\àn\fAn\ f\95!\8eùe\à      \18\11\Îk\1dv\Ê\"\"\"\"\"\"\"\"\"\"\83/­÷^    :ÿ\0\Ñ=­±±ù\11y\8b\955\ã\Ëþ¬\çé\9f¥RYE\8d\9f\ÞF\Üeõ³\v\8fl5\ïö\Ï\Ë.ÀÛ\86WB\8aZ~\8dmnlÿ\0*[\9e\ÐÆ\8f5º\ïV9*¶S²\ìý­\9f±m\Z\13\ëð\Æ|rÜ\8dÑ©->\×ü\Ú湡kXü\11\1d¤¨\88\88\88\8bR^xj\âZø{ò\12)a\11q\13­Û½¤w\11\8cs\81.°Q\æ\0Á\Ëñ\9f¬¸È\9c?\9b2\×\å\84 ñ\9fb;\19¥\Ñ\16eø\ë\Ò6nD\ï§N5=B´Ö·³;)\Ãv\"\88\a\ 5¤mv»½\Òl·³¿Û\90Lp\ê\èj,­\f6¹\Æ(a¼Q\84i\ f\10Iyj\"\"\"\"\"\"\"\"\"\"\8aG¬+\84 r\'\8a±ò´\91d³:ý\Í<}²Ö¹\84;\1d\1c»\í\Ü\1e4\93 \8c\17°\Ï\e\10ö3\Ç ¤\å\Ãl\891NÁ\äÁ\19\ 5Uò)rz46\81\×ù>\ä=I\â\Î_²õ\8f\11ÿ\0£\â7k\e.¤\'\a9\Î~xq\87°<\8d\Ã[\96\11\Ýó\Ës\86\14DDDDZBõ\18òö¯\Ä^\1d{¢ý\96ÀPI\È\Üq\9e)\×\Ú÷»%\95°oVpjk£\ 4\fa\nl\1c¯ür9­h£4ø\91 £\bÝ\9cÓ\88\8a\94^«\í\\ùå\8b\8d9^\f\ 3¿Jꦿ²ò®\Ûk\87\Æ\Ì8\Ö׺õÞ\91§U\Ì\13°Y\99}\9c»\9b[\b\'\8e\ 6\80S(D9s#fDaK¶i\11\11\11\11\11\11\11\11\11\11\7fº\ÍI\Ü^\98vG­WÌ\93ø¼±\Å;V¹\bð#\82M¤;¬×\92m\14º\86\11\Æ+@\ÛE\89\88G\È\ fô\95\Øvc\Ég\Ê9h\é\Ûu]\87EÚ¶m#m«\91Gµi»\ 5Ϋ³R\Ëȳ*\9fa׬d\Ô]U\É\È\b`fE}\9491\r\90\98¢\É\ 2ì\8c\8fg³³×\94\90=)¼Õ¬ð×\98~$\8f³\ÊdAò÷\eòo\ e\10¿6\ 5\×\Û\f\Z½\8e\ 3\r#\ 3xb³\ëÔ¤\93\ 5\94\84¤\18\á´Í\91(\r}·\b\88\88\88\8a\ 2þµ^\è\ë\ 5 \ëwBµ\Ùò\89¸\Ç\Ø\19Ø\8eG\Ä\v,\8e4=\7f\15;\1e£¦k×µ\ÌÈ\88\7f\ågM\9b²@ûq*\13\ÉJ\13ûG\9b\0\ e}}è­\93ô¿ø¼\99\Ð^\8f\a\95¹OZm?c;WüW n,\92\Ö\æ\ËY\ã¯\Åd\8e6\Ñ\ÊLÁ¯\94,ì\96ûûjé­\9d\8aý\9e\îó\15vr\ê\8f\1c¤\93*\"\"\"\"\"\"\"\"\"\"*¡½U\9e=gõ\ f\Èe\Ç:\ê\953\eÃ\9d¹\88þD­\9a(¸\ÅN¿\ÉQ3\9aý\ÓTc\âClX\f\96(°v\ZÀ\ØÏ\91oq&N\Ë9\83\1c\18lh\ã\0½Û«\Ü\È~»öG\819\à\19¶\Î8{\98x\ç\92%Ç¢>#\Ú\ØU\éûmM\å\ÅDGºT!9\×5P¦T\924\99@\870\13K\12i1\10\æW¡qG#\ë\Ü\Ã\Æ\1cy\Êú\94¨ó5\8eIÒµ\8d\86DYB\9a\17\Õm4\Ð\îa7\12\83\8c\f\10f4EsZ\Ïb\8d\ís\18æ¹\98ô\ 4DDE\85\Ýü\ï_\ 6ø\ì\ë>ÿ\0\Ù~w½\Å}\ 6§Zfkº\ì&\8eVǽmò°\Ø\Úþ¥­Ö¾D\\Ë\9difx\91\Îw\9e<:\è\Å|\ÉÒ£\85\98\81\î\Ïmù#½\1d¢\æ\1e\Ór¦Y\1f\9d²mö(\ãL\936³U¥Ë¾\9a=Z \92\Z,b\ 5-pÁ\1f/\8f\12¾<ɹ\99d\Ê\èO\9a@3\15\94Á}2þ    ö^\Úr¾\9fÞ\9e\Ë\ë3j:\Í\Ä\Û\1c\1d\83\8d5KºòGÿ\0¶\ÝÚ©\ì\99W`FI\13J\í\17^\93\88öC4\'\ 4÷\16\83\81)\93c\Ô\Å\14}\9a\Î\Øñ\ãÄ\8e\b±@\18\Ñ#\ 4Q\ãF\8e&\ 6<x\ácD\10\0\"kF \88mh\Ä!µ¬c\Z\Ö1¸n1\85Ì\88\88\88\88\88\88\88\88\88\88\8bRþi<ok>N:=\È\\ j\ê÷r\8e¼#o<\1d±\Ë\a\Ú}g\91\ê\â\14p\8d\1c\98\Î\n\18ö\Ñ^Z\9bfEö\95>ªDª±\91\8c\9c_\95\8d\Ç;\Ï\11o\9b_\18òf±m¥\ï\Ú5\ä\ísk\Õ\î\ãþ=\9d5\Íqr\191Nƹ\â+3\9c4\ÑfE)\áO\88PN\81&L9\09:J´C\Ò7\äj§±\Ý\'?Mwm\8a|\Þf\êC\Ç[N;l\88l´\á+³\È\Ç\1f\ 2\8f\"\8d\Z)\83¨\ e\r\86°h\91\É*\Ä1k#X\Û\fX\9d\Zu\94º\11\11\11q\18Â\8e\"È\90Q\80\0\e\Ìs\99\10B\117/!JG\å¬\18\Æƹ\ï{Ý\86±¸Ë\9d\9cc\19ʨ»Ô\83\å7lò\17\1dÃ\8f\89Ѻ\Ý\Ö\r\9bb\ãn1\Ö\ØóÃ\87y³\Ó\Ì-N\ë¿]\×|F\197\a¸\8faEM$\ä´l*h²$R\Ï\f\r\86L\\Guo\×\Ó\Û\â^\Ç\Ê\aq\ë3¿SN\ÇW8(\95\Û\Ï5Z\92>\a\125\84/\áxª\f\19\ÈIc²<ß\99p(ñ-s\17_\8aPXÆ\84+¸V\ 3·\8fT\Õ5­\17[¤Ó´\êJ\ÝoW\Ö\ë£TQQTF\1c:\êº\ècÀ\ãÅ\8b\1cX\ÃX\Æ7\1e\îv}\ÈR9\æ+\ÞR=\î\ì\b\88\88\88\88\88\88\88\88\88\88\88¡+\ê\9aðo\9ez\Ôo<\8augO\9de\Î\ZMlVs\97\1d\êµÏ\95c\Ê\ZdB¿$Ü«\ë\84F\â~Û©E!¤Hl1>öþ¤y¦\8d\1eþhõºú\9a\ÜVux\Ý\ïo&ø\á\í÷\15ö\9f\8cM\92\9bR²þ\1fz\×r/¸;§\18\ßH\8a\r\ßT ÿ\02¿\1f\93:´-\99LRM\fX\Û\ruD«\ 1Ì®\f¸\12®\8e\ê\×f8\9f¸\\\a\Æ}\8e\á-\86>\Ë\Ç\\£¬\×l\94r\Ä\ì¶\\?Í\8e2Ȩ¸\84V\ 6mU\Íi_\98ö\15vQaYD&0\Ùp£\11\ßV2\ 1\11\11k\ã\Ê\ç=Xu\9f\1fsy\9e\8eÀU»V¡×®P>\99 ¸Ï³¶ù:\8d¬j\ 1·8k¾\ f\Ì\â0\8d\7f»\1c߯9\13ðo¯Þ\91y³fYL\97cc.Lû        òO6t\é§,©\93fJ+\Ï*\\¹G{\Ï\"L\83½\æ9\Ì÷\94\Å{\ÈG¹\î\Îsü\Ê\à_MwN(ú\87â\9f\81LÊ·A\ß;\vV\ eÀr<\99µ\84ª¼u\Æñ\ 6)j)/\"\98a6%j\94\ 1\83B/\È\13%2<V\nG³\Çõ\8f~h\88\88\88\88\88\88\88\88\88\88\88\8b\84Á\f \9a4\90\8aDi\ 2 N\ 3\r\85     \82Vde    \84L9\84\19\18\ç0\83{rdz9k±\9cg8UWú±º\rÁ\Ý5\ï.\8fÈ\9c\Z\n}j¯µ\Z¾\Ù\È{\87\1dSe\8d\8d¬\ï\147\151\ï/\Û\10n\Ã+\99»\97`m\8ea\88\ 2\19¦@\9bnbJ±µ°\92H®©­ú1;M\Ïq;}\Ë]Bf\Ç>Ó®\97\9c\'·òü­jx¤Ì\87ªò&½³i4õÓ¨fd\99\ 5C6:ý\86\ß6µ\8e\e\Ûa&´S\à~\19[x\ëK\'Q\11\16\84ýL4×\97\9e\eûX\n\a\1c\98Uºõ\Ì÷\Çó\9cQ\ÒÛ\8e\Êõ\85ø\ç\1e\Ñ\ÍU\ZTsg>\í\Ã\v\9c»\19§\Íz\a\13\ÑWm\1c§Æ\9a\Õ\ÄRN©Ø¹\ 3M¢´\84\"\90%\99]o±\Ö\×Í\8a3\ 5\ã0\89\"4\82\89\84\11\ 6Q¹øx\Þ\×c\ e\Åð\9cqU]G\Ç\Ú==D \×VV\ê:\ì(0@&\0QcG©\881\ 5¢f0\Öe\8d\Çõc\18ý¿\å\97g\å\9c\ç=\Ñ\11\11\11\11\11\11\11\11\11\11\164vO¸\Ý_\ê\ e\95k¿öG\9c8\ï\89\81\8d\Ç.ײ\ÖÀ±9d7ÿ\0\ 5\12\ 5;\8f\9b9\92\ì\n\áF\82 Ev$J\91\18\r~\1f Xt`{3\ë6\è7\19J=g[ø\87\97;6rV\È4-\80¬\'\ e\êÀ³k2\Øñ,\99»Q\17hú^|\à\8f,\rvK]\15¹\ÎH\19\ eÀ[ªwú®üºw\ fgf¥Ð¾\8dj1®\85aU\12Ö»_\Ó÷\î\Ç\1e W\854\Zr[\Ø\Ö\Ö\éuz¬yrÀr>÷fÀ\éX\18\93\ÊOÅ\8d\14ç\8d¹N\ 4\ f«\97\99ß®J\å]\9f£ýf\Ô6\90gù¹[.\8dIµoúTY1\8f\86\95\9an£qe\1eU\9cy8\b\8d\18»\84l\80O$\ÈÆ\94P\864\9f<±ô\99\7f\Þc\96góÿ\0\92?\"|\Ó\Ú\Î^¸ú\ 3saA¦\Ññ\í\ 4úÈ\8d\94\Êú8ð\9des+]¥­Ì\97\Ê\rf¤}~\ 1l\äN±\ÄHÄ\9f8r²\1e\ f¤3Ä\9c\14\íc\95¬$\ f8\Éeç\94·¨®\91\8c\7f|<!\Ù2!ûþýò,3ûþ±\8fe·~\83ø\9bè\97\8d\b[`º\8d\Ã#\Ñî·£G~ݹ_lû6óº^F\86\11\8a\rYö-®\Ò\Î\\JX.i\äç­\Ä*\èó,-%\ e>\re1\æ\Øò\"\"\Ã_\"\1c\17#³]\13\í\Ï\0B~Ga\Ë=|\å-6¬­n\1eð\Û\ÚjvM¨0Y\96\13\ f\90\e&E$f¹\99c\8e\Ñ\áþ\Í\Î]\8a:¶\Z\v\9dRþóV\Ø\ë¤\Ó\ì\Z\ÕÅ\95\ 5õL\Æ`s*\îiæ\9aºÒºS1\97a\92aM\8cx\Çf\1c\ì4¢~1\9c\1e\ë³ñ6\É\aM\å>4\Û\ìß\91Vê¼\81¦\ì\96\ 5h\Èg\ e\r\1e\Ç[g-ø\bXR\97,\ 4R;\ 3\10\88G\ç\1f\161\î\Î\e\9b\âxú\Ú%þ\85¤^À0\ä@º\Ô5«hR\ 4\ì8G\89cM\nds\rø\Îp\á\94&c\Ø\ìg8s]\8cû\ç\19\11\11\11\11\11\11\11\11\11\17\9fò\97*ñ·\b\è[/(ò\îñ­q\Ï\1d\éµr®¶\9d\Ënµ\8bK¯\ÑUB     $Ë\9dca-\ã\b\8e\"\9c¯\Îs\96\ 4D&qðcó\88    ùjõx\í¶\16\ 5\89\Z\8aª\1cû­j\7fg¶*\áN\9ba\1cqY\18w\\GLi\ e\ 3\n;\17\98\Õû&\Å\ 5õ\Ø\Å~\7f\1e\8fg©µ\8bh\18u\ëô\1d\ÌòW\ØØ´u\r\å\8e\Öv?\91dH\Ìv\Ø\ÛKÙ¶\19\11\9d<\Ò\Þ\Ç\Ù\ÞM\rF©ª@°¶p\â\ 4ó)5JRØ\82\ 4&BĨ\Ñ\ß:/\19^\8e®1\ÒE­r¿\91\Ý\åü\9f´ý\15öÁ\ë÷\1fÈ\93Q¡\Ñ\Ø5\á\95ø[\9e\Ó\î\Ûm\Å\Ñ$\ÆcI\ 6\18ª¨l L\95_oY#-S;\á^½pO[ôú\í\ 3\80ø\87\8e¸{Lª\8fø\90u\î<Ô©ujñGû\1co\81\19U\123\ä\ç%v_\92Jy\Ê\ç{e\Ï϶3\8fcDDDDETOª;ŵ\97Gû±m\Ø\Þ<\Ö%D\ëomï­¶ú\9b\0eƬ\Öy\9afOu\ÈZ\83\9c\Ðg\10GpC\13\1c\Ùó\'Ø\90\Û1Z8\Ð+\â\8f1}V\êúd{\ÛEÜ\9f\19\1c[©I°°\93\1d]\8d\13\82ù\17\17SO>\Öкü\b\Òõý\94\93\13ó-¿\99 \9f[*\\æ°¡\8f$\í¯<\éVQ\çe\92#DDDDDDDDD^3\Ø\1eÀq\'W8\83y\ç^qܪô^4\ã\Ú9\×\Û\15õ¡\98\Ì6<\18¥\93\88Uñ\Üö\96\Æ\Ún\0ñ@¯\8d\îy%þ\Ø`\ØR²¥¯6\9esù\Ï\Ê\Ç*\ÜkTv7|q\Ô\1dR\à\81\ã~ \8d5\àÿ\0\12\86¶k\ß_»r\'\Ð\Ð\æ\Úú\Ç\"\8df*\8995m!\Ã\v\13\æW\Ã<lSñeâ\83²>Vù\Ð\\S\Âñ\19¬i4N\ 4¾R\æ\8bú\Ést\Þ9¦&q\9f¶@£\96#®\ïd³?ùn»\16tS\Ì{\87\83K\86\Ã\Çym\94ñ»â¿©þ08z³\8c:ý¦C\91²>,\7fñ\Ï0\ì5\Õ\ç\ä¾F¶\13O\82\Ûl7B\ f\Î;L\é2~ª\8a\ÇF¨\80\ 22\ 5|HÕ± Ã\8b²4DDDDDX·Ü®\9fp\8fzú÷\È\1dm\ç\íZ\1eÍ¡\ïµ%\86\18-u\8e¿n,¶E>\ËE+\ e\1c\88\174vA\8be\ 2\\CÆ\92\191DPH\8eq\86\1dò\Û\á\ï±þ\'y\97:§$À\91¸ð¾\Ûa%¼I\Î4ðd\ãY\Ù\ã\ã\12d\87]¼6@ÀQ\îñ G,£T\99\15´8\Ò\ìi\ÜLÀ¼¯£\ë^\"|¤ò¿\8a.\Ô\Õs\9e\8e       \9b7\1e\ì\Ñ#j<\Ý\ÆC\9cH\Ñw½\173\99+\ç\1cO8«Ý´kGɬu\89V\18À\ÆSXW6e[m\8di\12\à>\9c÷/\80;\ÛÁ\9a\97`z\ç½U\î\Ú>\Ó\ 29\ÊØ\87\Æ-µ\Ë7\8f?\99¯\ìu\85h§T\\WIa\áË\85>4Y!\95\16Ls\842£J\8c\f¨DDDDDDDD\\2$\ 2(\r*Q\85\Z4a\12D\89\12\b0\80\0\b\ÜC\18\Æ#\9a1\bCk\9eB=\Íc\18\×9\Î\Ãq\9cª¥}K\9ee.»û\Ù;\9e·p\Î\Íi\eª=|\Ø\ìµ\ÜF\8cCD\87\Ê\\\95I/5÷\ÛE\80òÀ¾u\r\15\9c)\10u¡9¹\812HMv\Ò\ÜE\ 6¯g\eM\Þ8<wsÇ\93N\Ì\ê}p\à\è,\86ù\ä\15§ r\15\9cSH\Ö8\ÃG\ 1\9bü¶\Ót\Ñ\12;§\ÌhZPkú\à%Å\97°Zýq\9d2®¨\16÷\957\1eô_£|\a\ã߯:_]zû«C£\Öõ\9a\ØL½¿tH\ãØ·Í\90q\Ú\ËM»j\9a,d\93m­e\æD·5\å ¢fA\ 6\1c¹\Ï1\8d\98\88\88\88\88\88\88\88¼¿\97øW\89{\ 1¡\ßq\875ñÞ¥\Éü\7f³À\95U}©\îT\Ñ.ª,k\æ\8f\99\18\80\9478m\90/q\15Àx\88ñg#\Ëþ\ e\146û\ç\è\Ì\à^M·º\Þú\'\Í3úûa%§\9c\Þ!\ä\n\Ë\1dÿ\0\8f\äJdiFt*-\8c\97Qv}iövE\13F\édº¦¨\84\11B\8bR69Ò\85©\8e¹økõ*ø\8f\ß[\Ì=E\×õ\8d¼\ï1£\ß\è|k\ËZ®\ï¢\î±\n\È\ì$\8d£\8ewi\ÚT;\'\ 5±¢¶- \81\ai\0\ZXUò±\ 6M\9cCÉ¿©\1e\92\b\ÔZ§\90\13ü¹\Ä\18¥«¯\83ºs\'\12\ e\ïMmw\n0£]\Ú\ 3\8ba\16\Ïd\×\Ý2v\1f6%%}\Î\Û\1c\ 3\É\á\Z\â\'\Ò\13\17%yc\Ôe\ã7\81\æG\89Í·ý\93\âQL\91\98P\í7\î ö7]¥\9d;\ 1t\8c¬¶\9bÇ­\85o! a\n\æ\Õ\16k\ZÁ\e\äüdD\Ã}?¬þ}|Iö\Êõ\9a¿\14w\1f\8f\à\ìòl\eWY®ò\94-\8f\86®n\æf.f\95´p¹B\9fU%°c\ÅnK\"\\?¶#\Z\Ã\ã\as¡\Í\Äm°\êÛ®\9b¼Au\9e\93¶\ë;\85c\1c\Ö>\ÃV¾ª\Ø ±\ï\Ær\Æ:]L¹q\Ú\ça®\Ë[\92c.\Ã]\9cc>\Ù]\9d\11\11\11\11\11\11FS\Õ\1d\ä¿=\19\èm\87\ fñ\î\Âú®\7f\í«-¸\ßP%M\Îj¶mGBüG\7f\8f¹\n¹ð\ì+¯!º¶\19\ 3GS}JR\1e\9fiº¡t\81´2>\Æ\Õ\aQQk\7fkYCCYawywa\n¢\9a\9a¢\14\9b+[{[)\"\87]YY]\fF\99>\Â|\Ã\ 6,(QBY2¤\94@\0\9eWµ¹¸\ f\Ó\ï\â\8b\85\Ò\Ív>\Ó[S/³\\\ç\ 6»{ç\9dª$_rG<\97Ì\99©\è5sd\96L\Ö\Òi\Ô3\áÀ\90Áº¶%­\ë,/MEW>d\807|\88\88\88\88\88\88\88\88\88\8b\Ì9k\84ø{\9eµ)ú\176ñv\83\ËZU¤y\11,5nD\Ô\èöú)Q¥µ\8c\96\ 2\Ö\ÞÂ\9b\e\"\961\fR\99\81\á²\ 4\b\ØxýÛ\98²y\1fô\8ct£²±owþ\9aÏ\91\1ec\94G\ÌfµN\ 6\\p\rÓ±ü[?\rüyõÆ\97¨\95°k\äÄ®&\99}ER\Ë\vS\\]T\Ü\18Oa¡)»\87˯§Ë°v\1cg\1f\91ù3®w·\98\91k\10\ÚF\É:ó\82¹\96®,ºqX]\Ô@´\89\8dKlp\9dYO\ 2\ÂTú\b\e\8dEik\98fVW\\V\96t\Îü-z¨¸Û¸7ú¯Z»\Í_¬ð\7f?]\Z\ 6½£rMQe\87\8b¹Z\ì\á\b¢V\Ê\Ä\âÉ\91¥m\97\16\ e,\nÚ\99²¦\×O>jÁ\12\êu\9d\99\ãA\98°\8a)\ 2\11ÀQ\98\ 6\e\f\13\ 5\í \8a\"7\ f\19\ 6Fe\Ì \È\Ça\Ì{s\96¹¹Ã\9b\9c\ã8\Ê\äDDDDDU\14ú ;\87s\Ú\Ï+\9c»®6c\89¡u\92¶¯\81t8Ñ­¤Î¨\93\8a\9c\97eÚ¶(\Õ\æc\ 3Qcm°l\'«µ\b2gJƹ\ 2A\8a<\å\90adÿ\0¤¯\Ç`»SÞ\99\9d \ä\ZY2x\97¨°\19²Ò¸ñ\9aú\9d\8f\9a-2\bº\Å1]&,¸3\85­\ÔL\9b±\ÚV\99\83.\1cj9\"8\9f\86|\í7DDDDDDDDDDE\87=\ä\è\9f\\¼\86pFÁÀ\1d\93\Ñ\ëö\Í^É\87\97¯\Üd\ 3fË¢ì\8e\8cX\Ñ6\9dFݸlÊ\9bh­&Z÷E8\9b,\1e\á6}ð\12\86\9f\ß+^2y\9f\Åwjv.\0\äø\96\16Ú\85\98\8d´p¿(~        \ 3E\É\Ü|i.\f{(\13X&\Â}\å\11ó\8a\8d¶¤Y\fº»&\ 6D\88\10¡Z\Õý\ÓHô­yÀعö¾\1f\8e\Î\Ön\ä¼\åmB\8aLοò\ e\Í//º\ä\1d\1fl\Í/`»\9b#\18·\Ûõ¸\ïkkd\1dÏ»\Ú*þ\83\98v\97\106+\99S\80DDDDE\ç<Á²\eN\â^RÛ£\1dѤj¼u»ì\80\92\Çe\8e\8ej=f\Î\ÐFkñ\9ce\8e\13\ã4\8dv3\8c·-÷\Æq\ì¨}\ä-\ëa\å\rÿ\0x佺H\æm\9c\87¸l\Û\Ö\Ï0Cp\85/a\Ûn¦\ß\ÝI\18\9cò¸c=\95\84\92°n!\1cÆ¿\r\Ëß\9c|³m\9f¦;¦\9a\ÇRüTp¶\ÉZI²6\î\ÔE\87\Ù\rüó\7f O\1d¦\ßO_\ 2\86¨p\ä\10\98\84\ÊMV®\9e³#\8fôG\92H\ï±$P\ØL\9cCHU\11\11\11\11\11\11\11\11\11\11\11i;\ÏG\8c\Ýo\É_C¹\eM®ª¬\1f:ñ]e\97\'pf\Îh\ãdð\íz\Ýd\édÔ\8d\9cѨ¶ø\ßmU®G\12\Â@\84g\12º.\'=\84U\nqW%òoYy·I\å=,öz_+p¯ Vl\95C°\r\95\\ê\8d§P¸adR\ß\×0Õ¶L\8eY\11$Rl\Ôr\v\15ò\ë\ÍcO9­\19\Î5w7CûAK\Üþ\9eõß³Ô­\1cvs\17\15j\e\8d­f\ f\f²(ö\v:x¦¾¦\9e8%4xs Yº@\Ï      \85#c\ã,h\Êadg.[\"\"\"\"-nù\82\ä9üO\âû½\1c\89V\ïk-S®|\83e_\8fµÁû&ÿ\0\eø\ÑC\935¯p\Ús\9d\81sð\Ç\ç\18&sñwþ\9c\Ò÷Áº(9C\9aø\7f\8d%2C\ãr\')qþ\8b!\91\1f\91\Êx6ݲ¢\80Í\8cL1ùd\8c\8eÁ\Ø\vð\Çe\84\Ë]ñw·¶oyд\Ê>:\Òu=\vZ\87\16\ 5\ 6\9d®\Ôku1\"F\14@\n\15D\10B\ e[\1c?\ì\Æ\â´?q}²ì¼¤{\Þ÷½\Î{»j\"\"\"\"\"\"\"\"\"\"\"*t=Eý<¦é\87\95\î\Ã\éºÁ\ÆýO\97d\Ã\ìn¹\r\99\92GT\83\97\ç\\[]Ö\98ò^ì\98\8cÛ¡lr\9a\Ø\â\8b\ 6\10%\86²\ 4\82\17\92k^\8d\Þd\Æý\â\çm\âü\Ç8\ßÁ\1d\8a\Þõ\ï¸ùn[$[\Ô\Z~Ec¢|Jüb\18\89~a|H0\9bó\9b9\Ùk\Â\à\11\Ò\ÕDDDDZ©ó\87¥\Ë\ß|Jw\ç]­\8ai¶\ä\ë\9e÷>\9e,|û\18öU°q4\11Ç\8c¹\83ve4$\8b\9c\e?[p|¿9c\98\Ò2«ÿ\0\ 6\1cw\ 3\95¼¶tcG²\87\16t[.bÅ\97\Ñ0_lf\É\Õõ=\9bk\83(\8dø\138\Ì\19Ô\91§\f­c\9e\ 2\Ça\87\8f\98Ú®\96DDDDDDDDDDDDUÀú\Ûø\ÓZ \ì\çJùJ¾¬\0\Ú9#\88yC^\Ùn0!6M\94\1e:Ù´\çk°Jv±¥$j¦\îV¥\8e\12¸\8d\ 1­&\10yn$¹¸\Ù\'¢A¥\ÇJû\8a÷78\ 3»EJÑ¿\Ûôâ·\89õl\99¸Ï·\ï,cÁ\9c\ã\ß>\ß<~±\ïû\9a\Ò\"\"\"\"\Æ\Þ\ãj Ýº\9d\1dZO\Ç!¶\á.J\13\9añ\à­&A©Z\Ë\18\9c<\å¸\Î\fH\í\16]ûø|þ\7f\aü~\ e©·\ÓM\0\Ö\1enú\'\81\0\86dM¯\95\ç\És\ 6\â28bð\a+½§3±\8c\àCü\8c\80-!2\Öý\å\bñ\9c\90\8ck®$DDDDDDDDDDDDPMõÀ\ë5\î\á\î\84\î?O½¨y+\995\9f¿8n~\15òu}F\Ó\éc¾\1f\92b|É\8c\93\âÿ\0¨Y\Ã1\91\å\Ù\Í\1fF®·\ 6§\Æ\ eùw\Z\10c\ËÚ»#»Î±\9214d°5m.½H\ 3\È#[\87\18\81\89\0\11\18÷\å\Îhc\88Xv\18Ƶ²\áDDDD^[\ÎQq;\859\86\v²\æ¶g\16ò\fW9¾ÿ\0,bF¥n\1c\å¾ß¿\960ÿ\0|{c\ß\ß\Û\Ûöª¥ô\9eid\Ûü\Ëp\ì±dmv\91\Æ<ú9\äù\7fH\âk\f¤.\19\96µ\ÙÁ\n;÷\ 1\9f¬5\Ù/Á\Îk\1c\çb\Ú\ÄDDDDDDDDDDDE  \8f[\9dn\v\ÓÞ\97\Ü}~ù\83\Ù]ª·\îöÿ\0/ù^/¶\95õü¿¾>\ß\áp\ïoõú}ÿ\0\Ý\Â\Ï\ fH\95~!øiФ`\7f\f\Ûs\Ï<Xe\ßû\Ù\1e\ e¯\ìþ\ØþØ­À¿\×ü¯\ïþ\98\93º\"\"\"\"\ê\Û\Ì\11Y\é[\85iÿ\0ȱն\b&ÿ\0ò\97S.9?þ     \95\\G¥+\82\ë5\8f4\9d\Ç-?\Ø\n~\ 4Ò¹Ã\8e*!·ú\82\Êû>Y\ 6¿\ 1\Ïq2\ãý\91a\é\í\0½ß\9fv\È7\Ûò~\19\9cY@\88\88\88\88\88\88\88\88\88\88\88\88¢¯\ë\ 3Ñ\83±x\9d\9b·\9a\e$;\8f\8c§E\92\ f/\81\'c\Ø!\ë\9fhð\ìý\8d\É\âÌ\97\19\es\ì\Ò\äosp\\a\Ù3\éu\Ñgh\1e\18z\Å\ 2Àoa¶\e\1e\82\ç³\á\93A\Ý÷«\8d\96¼\98\Çû\Ìl+\0\ 5\8fÿ\0}\82nT\83\11\11\11\17ø \Æa\90E\e\n\"±\Ã(\88Ö¼d\eÛ\96¼dc±\96½\8fnr\×5\Ø\Ë\\\Ü\ç\19\Æq\9c\áA7\Ó\17A\1e·Ì\9f\9clG\Æ\ 6*\ eG\ä\8a\b\Âo¶\Z\Ø\æ\í?#üq\8cc\ßô\ÆÒ\89­ö϶1\9cÿ\0\7f|)Ú¢\"\"\"\"\"\"\"\"\"\"\"(\àú°\ 1\83xJ\ìi2\Ügñ¹\ 3®\ç\Æs\8f\Ûr\îp\Ò#|±ÿ\0\fûH\Ë}ÿ\0\à\ì\ãýVsx7«\rW\88o\1d\10\86,\Ê\ê\Ï\16Z\e#c\e\93\ZÒ\84\13²R\ç\r\ÆHL°\Ãg\Í\Þ\îø1\8cò\Ö7\Ûk\b\88\88\88\88¡\Ñ\à[C¦\Ðü\ãú\84i©\0xð+ù\86\9aXG$\8f1²]Ë\969kl²3\88Owe²,e\Z@\ÚÏ\80\ 6\"±\80\18ÀÁ\r\93\17DDDDDDDDDDDDQ\âõO\Ñ\Ø\ßøL\í<jÀfA\à_ðe\áÇ\875¾\Õ\Ô\\Ù¢\ÚÚ\9f9{\9a\ßhµ±eJ\Ë}ò\çý\1f\ 1µ\Äs\e\9c\ãð±\18\91<Ix\ã\11\1dòsºwÁ\12q\9fø\ ef\85O0Mÿ\0 Gc?\é[:DDDDE¡\Ï\Z\Ýn\'\14ù(ò\ëÌ\92ª[\1eG=se%¤;?\ÆÀ\9f\"\8f]§«\87\16\v\8f\86\ã\ï\10®e\ì6C\Æ]\9c0Ö²²\Ö\ã\ä\ç?|h\88\88\88\88\88\88\88\88\88\88\88\8bWþf8>ϱ\9e6;I\Ãõ\ 5dk\r\Ã@\97_\16a\ 2\ÙC\81(\8fh\àO|W\Z;¥6%\89!\9dÀ\11\86G\á\99ø\948\ÆL<\98\è\æ\8aþ1\é\ÇXxù\ád|iü\1d\Æ\Ô\"\bþ¿¬q`jõÂ\89\86\àyø1¹\89\80»\ 3ǶE\8cýnk^\×7\19P\88\88\88\88\8b\áT\ë44s®¬ªk#Á\9d±Llû¹!û>\Ë\19\8cÁ0Ó\9f\æ÷7\ä\Ü\14\9e\ß^\18\ß\ëwôû¯º\88\88\88\88\88\88\88\88\88\88\88\88º¾\ç¨\Óo\9a½Î¡°\8c¦¦½\8b\88v\ 2\ 3\Ú2¼80\8f\8c1\ï\19Z\Üý\81f}ò7c\Û\19ý\7f®>\95\r4\1dr\8e\9b^¬k\Ù[CS]M^\Â;\ f# \Õ\Ã\f\18\8d{\Ú\Ö5\ÏÀ\0<9\Økp\çc9\Ãq\8f\Ö>²\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"ÿ\Ù',4,0,'','','',''),(29,0,12,'9305bf00e7fb7439','73148550885bf00e7fb1447228602212','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','12242958235bf00e8006f72987476580-4.jpg?ts=1542459008','image/jpeg',80,80,2356,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v     \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0*\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b \n\11\12\13\14\16!#\15\"\18BCÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91ù\ãõ1VüwZfº\9b\bJ®\Ø\í¨!¶\9d\85m³e\ÙMg Ü\91\13\ 4\a\14|\\qb½tÙ\99\11ö$\15[Q\àÁ\Õ\Û|\'¬\8fJ\18¢+\18\Å_\8aÎ\9fy®ód\à]±î§\91~\Ü\èN\9e\ÊM>et-e°¦µM§s¨2T9¸\Õ4ZO\ë4\Z] W\9a~?;\ 6J³&\Ñ&\ eðu\êôç´\84´f÷}v\ë\Õ+¬\9a\Ö3V\Ð\ì;j\Ó\v\1c\ç\ä*stn]\9d¼.\87\98±\Ç\19\â       ¶\í;E¦\\V\1eÀ\Èu0°\ÏEW\ 3}o¹\e\f\16H{\v÷^8\ã\8e9\13{\á\Ù\ 4õ\ 3¦\1d¢\ìòE\1có´v\8eØ»\ e\n4\Ì+\"J\Ú`kg¿R\88+\b\ÊUøò\Öl\Äƽ\9c)\1eÍ\94¬üÑ\8c|±Po\8bÞ©\Û<°yCÓº\7fhX\',\98\Ý;Jõ»\13t0\×U?-M\85̦\É\ÛR\84JcûX\9e·\8e\19ðqòXJ¿\1e\Ãc\8f#-ýh\Êqt\15F£X U+TjL\ 4MV\9dN\81\89«\Õ+0A1\e        ^®À\80\Ä\\4,Lx\Èlp£c#\Å\1c0\85a\bi\81\Ùm´\'      N1\È9\äo\Æö\87òa¢¤t\Æ\è2\ëX\90\10Igµ\î\Æ\×Ö¹\êå\92\81d\91dl72\88ø\é! m\Ñß\92\ 4z\äk6\à%b\ f`ofS\1f \91dÄ­\v\ 4òe\é\ç\ïýã­\97m©rÙ\9aÿ\0Ll@\ë{?D[\ìÓ³Ú«h\ëb\10\f\94E¯]\ae|õ\ë\é;e\1eB.\ÉO³W\90\ 1 <T|}\98Ixñ$ \9fµ\ßLm\9a^û\Ô:»xk\89\ 5J\ëýÁ¯©\Û6\95\"\â\12Ó¦U¯5øû,\13ï²\87\1dK\ 4®6H\7f\1f\ e/,?ö3\95+(\Îy\é|q\Ç1\8b\8bVØ·?\8a>þkÚ\90\84H\Ù$úͲ&a\ãDK\8b.P\Ê\\Vn\è\8a\r¶³\85¼\\\9akª\0Vq\9c\á\â\bm¥%I^S\9d\ 4ý\19¯Dµ\å\8aþ\83\Ö\Ú\ f#¦;q\984º¶\13ö\9c\9d\99¤\b)±\Ò\æp\ê\Ê\ÄS\aº\94\8f\î\æ\ 4hÕ¯\1fJ\1c\Î-&\ã\95Mz¼g\é\97\ f2\12\90T\ 6\98\90´V:ó£©\9b\fx\81\Òù¥lb\9cµXc\Ã!\ 2\8d\96ý\ eѯ\ÃB2\9c\95\86\90\188Gô6\9eX\ã\â\ãE\Üz\Ïã\9f¥:\1fb6H÷\íg\ÖýY^ºÇ\98¼­ø[^*\à\9d`¯)Y\Â\7fÒ¹*aPL\ã\Û\1f\16#\9bN?\8crzq\Ç\1c\â}\86Ie\á\88i·\Ç!§\18}\87\90\97Yy\97Q\96\ÝiÖ\97\85!\Æ\ÜB\94\87\10´\å+Nr\95c8\Îq\Ê\Ä{\8dÕ½\8d\é óA¥{³®ª²¶>\92^v}\8ev\8c¸D\7fXz\êò$\8cN\ß\ëÄ\82\Þs\è\Z\ßI«\Ø$M\×k\92y\"X\"À«\Í$\97\ e\8a³\v\11en \ÛZ\ï}j\Ý\7fºu%¢:\ë¬ö\8dN\12\ïFµE)j\ 6r·a\ 5\99\bÃ\9aC\Èl\81\ÜX\ï%\ 4\86SL\98  Hx3\18\1ei\11\Ûȧi\b\éGF»IÚ #\ 5\99\9b\Òzv\Ùo«\Ä\È%\Õ\Æ\É\\\Ò&\"\éAJ¡\87\19}Q$\Û$a\9a\94\Ã.´÷øõ\13õ8\87>*Æ\8cÞ\96~\86\ f\äc´ý\8aò½\ÝB\Ë\Ý\16m]·cÈ¢~Ú\94\98\r£²S\è\Å\î\7fcO\n\9c4\13¹\Ö\11E\Õܦ@ \\\Â\ 1)d\0\á\ 4\aôøv\15cG\1cq\Ï\ 5\ì\çft§O4nÁ\ìganñ\Úÿ\0TkHe\ÌY\'\Ïù:óªS\88\Z6\12\12\91\93vIù\'\86\88¯AG¶\éòÒ¥\8c\18Í©n{\ã\0]_\ì\1f\95ÿ\04\84\ãv\ëk9~,<l\1e{\ØÖ¶\18\9a\85R÷\Ý>\ËWX%c\æÁ\r-}\8b°\Ñ5EJM¦²ðV\88ªÁ\ä\f\90\ 5_\ã2\äø¹d\94ñcÓ\8d\81[¬W;\1dL¹w/\152\r\90\89\90\îV\Ñ\Ø\1d\8f@\ÓRL i\19\Ø\ê\9eÄ\9f\93\×5©c\ 6m#8õ:\95\\a\91~B\880\ã-m*tQh\94\9d_M¬k­oR­Ð¨4¨Xú\ÝB\97O\85\8f®\Õ\ë\15ø¡\Ð,l,\f\14H\â\Æ\ÅF\ 23hdP\82\19\91\Ùm8J\11\8csÇ»y\×\n·oú»¿:½t1ø\Ê\Þö\ÕW-jtȬ\à\82\1e²\Ã\12\fe\8c1\Ô\ã( \Ê\ìªÁ\9c\10w\1dm·É\8f\15\86Ö¬óO¯N\Ƴør\ß]\91ñ!\äJ,} j\ÙûQ\8d­\Ö=³g\Ê\â´öó\98L\14u*\É\15H\ØÒ\8d\ 3\ 3)û$-~\933H\1dd²k\Ò\19±\Ôf\86\87¹°\15x\Í\ä\12¤­8RU\85%XÂ\92¤\ç\19\9c{\ã8\Î=ñ\9cg\1f\Î3\8f\ã8\ç\Ï\1csQ?-\94Ù¯*~j:M\âJP\ÉDuO@kw»½Û\98\88Ò\88 \9b\8f\ÂD\Èz\Í^W(q¥8Ê\83Mv¢\ 1\82£\87\Ü\ÖY!ó\93\"\87pm¶a!!\ëP\Ñ5\Ê\ìTt\15~\ 20\bX8Hp\87\8d\89\87\87\8b\15 c\"¢\ã\83m\91\0\8e\8f  \86D\b1ZhqFe¶\19m\r¡)\Ç\Ùñ\Ç?!v\×\Ô-\99\ 6\ícc\Ò*\e\ 2¶úþ\×\ë\×j\Ô5®\r\ç0Û\8da\ÇbgB<\a\17\86\9du¿\9a\Çʾ·\1cG¿\Åj\Æ`·d|h\é]\ÍXùi\ë.\Å\évâ\80\87l\rsºú\9bn\9c\Óòµ2#Ò\97!E°\Ñ*2Pú\ëgS\Ç!\81Z\91¥\Þë\92±\æ\Å4¸ð\n\86uL\9c4Añ!\ß\Î\Älݯ\Ùÿ\0\e\Ýýj½ÿ\0;zHd)\12û\ 6©\Z\Ü%[²\9a\91?K\Þ0P\83²8\912E\8f#\0\å¬\0\ 4\8f\8dmv\9aó¢\ÇF\9eô\Ô4>u¸\æ\ 3úÉ­G\13\Ô7\å\ 3e:Û¥\18\ïK:@\0\85¯\å\94E\alv\ä\ 1\91m{ÿ\0®\11 F \16G\Û\1fú²þqÿ\0|s>\1cq\Ç\1cs\ 2²\Z\Ìx\ßRõceE\'\ 1.\Ï\á²\Ü-¡,!M¦`º\çnjQq¤\9a¤º\96\ß|peA\19µ)\95:\96\ 1\19\1f?­¶ð\Þz¸\ä\ eÕºý0\9eH;\99°S\1c\86Qy\ê\9fC#ñ&\96\14\9c\98]Wa÷¬SF[ÿ\0RP\ë¢\bl2\96\1dul²ð\ÙV\eK­\áSÇ\8e8\ã\8e@\Ùz:W\äò\81²\15\10¬©\8e\87\í\ÊSs\Øo?\ 4~G`t¤\ã\91+w\1f\14\18l\Æ\ÛW¶U\86\ÝS~ÿ\0\17\97\1c\àH£ \97\8c@\ì$²\19\1cg\ÊKM¤\97\11d¸+\ f?\84\á\Ç\19\19\vpv\96¬¡\95\94B\9bJTó\99W?\1cq\Ç\1c\ëd1T[g\ävrsC:\ee\å´\ä\84\nû¬¼ð\èw\Û\æ\96]xv\1cq¼gâµ²Ò\95\8c\å \Î;<ÿ\Ù',5,0,'','','',''),(30,0,12,'9305bf00e7fb7439','73148550885bf00e7fb1447228602212','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','12242958235bf00e8006f72987476580-4.jpg?ts=1542459008','image/jpeg',48,48,1488,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b        \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 1\ 5\0\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0  \11\12\n\13\15\16\"1\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿\ì.\é\1eY\Ö\Óû\8e\190\9c\ f\ÆK\ËŤ*X2 \7f|\Ë\Çf\Î\ä\8c\12Yys\82G!µ+\15\92\91c\91·Tଲ´\Û>¾\90\99\ 1³I¦\Ü\Õ]U¢\ 1n\å_Pf¿\89\Ø-5ô\e\84a.-¸\é\é\145\87\12Û®6B]e½W\87\87\91\1fò\1e\ì]\81\Ä~©:\'jjy3 6e½5\9d-M´G>\à\92u3v¬ªk²\Öx\93\Zøx\19¸J§\8d\82=\85!ð&\9b\8f1\87\ey\86Ö\99\íø\9cz\ì \è>\10®ö\íª\b\19¾\8f\ì<\Ø\ì¯]e\Æhû\rWQ\85k\93\86¬Ube\88ýb\86\1e\Þ\ì\17óû#\Ì:Ó³\ 4J\Ã\r\'\923\ 2\1e[dÿ\0 »\'°\ÞR\çÒ½\84ð·RZi¡sÓµ¢w?9\ÎÔ¨·\1dgt¡\ÊØ£«\Ä[@\1eZ¸\í\84Ih3¦Az\Î&f\9d\fº\Æ\ f\92\8dr\fø\959!@½Ew\ã~\Ìx\'Ju\89UÀ\ê\16\ÛX³U}\91Y\8dy\ç\âb¶5\ZX\8aÝ­P\8b\'\ä¦à¥\8d\r3Ð\82\96\ 5\83\15* D\96k\ã¬\Ç\ég\87\92\×\Ü÷\v\Ê{\16õ\É\Ñ\1c\ËUX­\ìy\88\10\9f\81C#gk©\16-\958r\8b\Ï\ÊB\Z\ÌTs\95bNs\nh&&\Ü)䩦V\9c¦\7f\8d\ fJC\í\ fZ\Ô\ e\88MC¢xbR\É\Î[óWM°¸\ë5FR¿m²»P8Ø¢s\83\e\12\91\85p\97\ZCY±\ÃXÀk\í\800¥r¿É\9f¦-\Âó\96¡õ\9b¥`\139\Ð>\Ðö\1c.\8f«\9e\1e\16¡I\8c¹\Ò     ·LÉ»ôyܪaù\bºò\7fHgp\1c)vI\7fº\v\8c\ 5\92«Ï¬þ\17§ú\à\â­\'\È\ÔùuY\7f\88\"I·Û\96Â\85þa°\ìò\ 4دVF\ 4Z\96\àQò\16)\ 3q\f\ 3®:ð\10¬\Ç\ 4ó\Ï::\Ý[\ã\ç*\Þ{\9a\87κog\ï}¡-\88M{¨\èöM\81o\93ú)\×\a\83¬Å\91(b\ 5a\1f+(\â\90>\ 4\8f\11¼e\Ò\Î|q\9aN\\u8̶\ã­Y\Ò\Ý\Å\ 5    \Øý\Ëq\Ø\Zò\91³\Ç\16\é\Ï|+®\í\ÓZþ\87­5<\Ò1\'G\96\è9\Z\99±\96½½·\ì\95÷¢flpV    \Ö(\15GJ~\11ªN\rÉ\89\16¦k\8d!¦ôù\1635^¬ k³®&7#o\91§T\á+òv\É\16\9c)Ö¤,òQ\81\ etùͺi\8e$\Éb\f\'\ e\16Jð\ç\Ù÷r©\á\ìÿ\0\Öü¯m\15\Ì[»O]àµ\9fYñ>\à\8d\Ü\Ú\ 2\Õp\8f6S_N¾\83á\89´k\8d\90\14N?|MN\Þ4\18,ª^   J\97\821\84\16 \å´\éb>\Äl¾\Ä{\9bhU­\83Õ\9a\92Û­)jd\ 1vvÓ¢\97\1f¶56§\95)öBT\9d¼ø5\ 3±£5\ê\8cwõ\\\Ø&kFk\Õ\È\Ü\âBòMXV\Þ}\ e\\d\9ct\Ôl|\Ì9\âJD\Ë\ 2$\9c\\\9cy\r\16\ 4\8cq\ì6PG\ 4[\v[\ 4\88Xδ@\Ä2µ´ó.!\ÆÔ¤+\19\Ì\éö\á®\ß\Û|\v·µ\8bH%\æow>p«\Ê\n+yq\Ã\ëòý=¦\84²Æ¸\9cc?õd«\îI\80\8c¡°\È}k\ÆP\95c4xa\87\fv\ 4\11\96\86\14VZ\18a\ØBZdq\ØBZe\96[F0\86\Úi´¥\r¡8\ÂP\84\á)\Æ1\8cc\Ïo\ f3öÚ´\ 5\æ«e¤\Ú\âÃ\9c«\\+ó5{$,\88\95\1f/\ 3?\1cDT\ÄY¼\95²@gÇ\96@¤°\êTÛ¬º¶Ö\9c¥YÇ\88Ǫj\Ô\í/\×\7f)R\ìfH\1d)M\Öm\Ô\7fZW.\äö\ãk\13\ÓppA?\97Ô·\7fó`À\8e\8ek\nV~¬\n\ÚSýp\9f\1dM\81G\8aصrj\93Ku¸òe+R\Ë[\18N]Á5k4=ª?\ë÷\ÆSñ\99\bQp¼ÿ\0¸FU\94ÿ\0o\8f6~\1e\1e\1ebµ\Õ\Z/[S!)\10®¾ô\\\v\e\84\19{-\95 \\\82\92¼\ãýú8ZÐ\9cÿ\0¹BSó\9c\ç\ç>\7fÿ\Ù',6,0,'','','',''),(31,0,11,'9305bf00e7fb6ff3','11822615065bf00e7fab8ba088168210','2018-11-17 13:50:06','2018-11-17 13:50:06','','','Contact Photos','97971161215bf00e801fdd7464746900-4.jpg?ts=1542459008','image/jpeg',300,300,11008,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b        \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 1\ 2\ 3\ 5     \ 1\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b \n\11\12\13\14!\15\"1\163A#BQ\81\82\17\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/r9¸f3\9cDëº\9e±®\8fð±g\ë]L\ã\Íϵ[d_\å\"¾þW\äñ¿\19Ķ¬\94Hx\8c\ë»x\12.¯+\'=­\91\ 2ûY©´­\97\18f0Hð\96\11\åF÷\98}`\1e\ 2\Æø<|\Þ\r\á\íRľ\Õ\15\94\ 1v=¢¢/\ÄyÀ\8b¸\ÛZ\83\13d´\í{\Û.%\ 5F2\1c²9#\93\181\ f©\1e\\ó?\åC\9b¤\96VõÞ\8e\Â\r\å\95ùMÆ\95¼M\ãG\a\Û9À£\ eO\1d·W\9aøag\Ä,\8f\"Q\Ø\á\8cx7\Ú\æa\Ë\Ìõ\ eòù6\ä-\96§Nл\85\Þ\Ý\ãq¾\90ø\Ôz¶¡\Ø.À\ì\Û-Ì¡\80²\8b\1e¦\8e\9bn\9bic!±£\9eI\ 5\ e)\88\Ð\0¦sp1½Ø\95×\8f\ e\98ú°9J\92£h\87\Û^I\ê\×\e\\Î\8b\996\1d\83\Úuý«x\95L\è¸8®«x\êú\83\99\90\94\87üV\Ñm©Ø\82P¦bH£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8b\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)\ 1T\É2\Þ1\12CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ø\êy\ë¶WPKüg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ek¾º\ê8­5¼ù\Îo\Æ#\àÁº$\Z\Í;\Õ\äù¾G7\9fñ¯j¹\8a\ïs\8b\ e\ÆE\8e±\Çõ\Ï5/\19h\î>e{\aR\ÓA °¡b;\'N\f\8ben\18\ÓeEÅ\96c\19\â\Î\ 5¢\90¯\88\8fN\ßm|\9e˪ä\9d\80\13ºý\Õl\96\14¢òþ\ÑQ\92Zo\91[ &\9dU\Æt\ 6(¤J,\8a¼û\Ç\Û,\ã>\8a1l©\çÂ\83²ÁþDp\ì¯ñÿ\0\â+¢þ6õ\18\94\9dv\áº\0\î/\ 4\\l<½¶B\87±ò\8e\Ë2>\\|\Zf\×>9lb\Ã\f\ãÎ\93UY\fÃ\8dL9Æ\85\a-\8bñf6h\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88¢#\êAõ\ 2\13¡t6=:\êm¥|þ\Ø\ï\14$ÿ\0\16\82-}\9dw\ 1\ë6AÀ\Û9\Ð\1f\99 ±\ä+P\94\8d\Ö\é§\0\95µo\ 4«\8d\98\a\8b\ 6\1e·µ\Ö+µ\í{6÷³_n{\9dõ®Ñ¶m\16³o6-\8aòi\ì­\î­\ì\8eù3¬lgIy\ f&T\93\91\ä)Hü\ç9϶=\9b\8cc\1f\ 3\Û?¯\×÷ý\ãÿ\0\9c{\ç\1f¯ù\ã8ÿ\0\ï\vñO\a\Ó\Ï\é\9e\ eÿ\0\ 3M\î÷\91-\'.\Ôg\8e=ÿ\0\fõ¯e\86`\9a\â7\Ï/\83¸r\ÍL \8d\8f-­d\9am:G³\ãDx\ä\Þ\r·\'\Ä\rj\Â\Z:*mb\9e»_\×j RQ\ÔE\14\ZÊ\9aÈ¢\85\ 2\ 4@\ã\â0E\8a\ 60B\e\7fyökqòv\\÷g.s\9d\9f¬\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88µ\ 3\æ\çÉ\86»\âó£[\×3\ ePK\Ì;§\ß\Ç\\\ 3®=\8d).¹&\Þ\11\9f\ZyÀù\10ðú]V\eK°l/\14À\Í\15\\B¾´r§þ<CS{\É\\\95¾ó\16ý¶r\8f(mw\e\Ç \ïWs6-³k¿\95\99v·Vó\Éó<\99\ 4ö`\Ä67\f\8f\ e\14Q\82\rt\10Ư¯\8d\16\fXñ\Å\Ñ\×\îs\9cÿ\0|ÿ\0§·ü°¦\89\éjðt\Î\Ë\ï\15þ@ûQ¦}ü\ f\Ç7\"7\ 1\é×±2øü\9d\ÈT²\ÆW\îVUòÃ\80\17P\Õ$4\7fÁ\17.\96û;\àH\99\88µÃ®£·\9deh\0\b \f\14\820G\8e\ 1° \8e\0³\ 3\10B!µ£\10\84\83\e\Z\Ö1\8d\ÃZ\Ü7\18\Â\æDX{\Ý>øõ\7f\Ç\Ç\16F\æ^\Öò38\ãB\9bp:\186,¤»Ø§\ØZ\90.> \Ö\Ò\ë\Ðlm\ì\å}mùb%|93\1c̸Ì\8eð\ 2IC\1f\Înõ\89ø·\ã\È\í7\13Uóo`\8d\î6\12&½¢\Ùññpò\11\Ís\ÄNI\87A\1c\91\ÄÏ\81\18\123\8c½\82\88G1¸&,\Äõºu\ 5ò°\Éý,\ì\8ch_/lÈ\89·q\84\ÙXg¾?«\10\Íe^,»\Û\ß?\ f\Î\Æ=ñ\8c|ÿ\0~ø\Úw\ 1ú£¼:s|\Êj;>\Æ\Èá­\96\Ò+\8f&\1f/hÛ¶¥®U\95¹\Æ?\Z^û.\81º\83I\9c¼L\ÆKf\f9\Ï!\19ò\8b\1cò\99¿\8dKrÔ·\Ú8\9b6\91³P\í\Úôö±ð\îµ\ËX75\87\Ã\Â#á¬\99\0\Ç\aÙ\81\1cDx\\ü\14m#>ln]\8c\88\88\88\88\88\88\88\88\88\88\88¸\ÈA\84d1\88Á\bLy\nR?\f\18\Æ\Ìe\Ï!\1e\ì\á¬c\e\8c¹\ïvp\Ö7\19\Îs\8cc9U\ez\9aü\87\Ùw\8b\Èþÿ\0¥k\e#,ø\'«E\93\Ã|s\Zª\Ï3h.ö:¹%/!n\í\ 3¡E,k9·\å~ªX¦\91`\18ñõ6L\84øD¸±\89\88\ê\"\Ø÷\8a/\1fÛ\87\92¾\íñ\1f\19>\16©mhí\93\96\91_ :\8f\19\ë­üý\86|\87\8c\à,s[å\91µ\9a\É1ÿ\0$𬮣ٺ\14\98UópÛ¤ø\87\89´\ e\b\ã\r\13\86ø«[¯\Ô8\ç\8du\9a½CMÖª£\82%}=\15<vÆ\87\ e4h\Ã\fp±­n^\æ\0!\ e\b÷ýA\13>,Ç£¢\"ñ\1e}\ë_\0ö\9fD\91\Æ=\8d\áþ?\æ­\ 2L\80\Ì&§Èº\Ýv\ÉO\89\91\È3G\98\18ó\Â\\Æ\97\1c\ 4\98òc8G\ 4¨ñ¤\88\8c<`\10pHòù\é\14n\9fM·ö\a\Æ=\85͵mh\rwyÕ­ºÑ\96\96\83\0\ã\ró\9dÅ\9b\85\86b\9d\ 3£J\99\8d{j\97bs\16Í\91\á\\VV\Õü\v\ 3\9ak\8dr\â\×^\Øj¬¨¯è¬§S^Q\ÜÁ\95WqMqW(°l\ê­k\'\b\13k¬«¦\80ð\çA\98\0Ê\89(%\8f C(\Þ\Ì|Õ±Þ\83y]\ï\a\8dͲ\1d\ßZy\92ö£Qu\9c{\r\8b\88v9\126\ e+\Ú\Ø\12H)cYj²\8f\81Ö¾Y¤fD\Éú\é\é¬\'H\8f\ fù)3¢\ÆlWZ#\á·Î\87\\üµhÆ©«\fn&\ìÖ§S\1e\7f ðe½¤s\È(\9a\11b\Ça\ã\Ù\Å#$\íZ\9cinpó)\ÑÁg\16\9e\f2¾Th;\ÊDDDDDDDDDDE®¯,\9d¹¯\è\ç\8f^\Ïö:XbÊ°\Ôx\ÞÖ§U\812fk£Yî»\8e\e©\ê5\8f\9e\10\90\Éa{o\n$S\8a4Dzi£{D\92ß\90\9dI$¹r§Ê\93:t\99\13gM\90is&K1$Ê\97*I\1ci\12d\È3\9ec\È9\9eò\98\Å{\ÈR=\Ï{\9c\çg9þtV|ú?ü~?¯\1d-\Û;\8fºUÏ\81\Èý¾°\89\9dtS\ãÈ\89ø|\'¦É\90\Í8\91\86I2bL\8f³\Ûʸ\ÚAo\bpI*\14ø\15\11\Ìúh¦Ä¿\Ñ\11\11\14(}O¾\ 6\ê¹\ãD\Úü\85u7Mü~r\ã\Ê<Xso\1c\êu\99yykK«ø\à\Û-U$\ 6\áó·­^\e\88fÿ\0\e\18\17\Õ\0\Í;\ãZþ5\16(+eE\ï=e\ì¯0u\v\9c8û°¼\13´\ÉÔ¹\'\8d\ïa\Ý\ÓN\e\äf\ 5\80\9cd\99C}\124\98\84²\×\î@<õ\82\Ù1\8cð?\ï\85*\15\80\8d\8c>ÿ\0q¯\92\8e\9eqwg8ðø\8f/`ª\15G!j\æ\Î\19c§r5(\Ù\a\97\19\ 1[\1c7!\99\9aÉ\98\ 6 \ÙB\Ã%UÈ\9d\ 1Á\98m\82¢\"\"\"\"\"\"\"\"\"(\88ú\Êù\Êw\1ex\Ù\ã\Π\8aß²7a9\Û_¤²n>¼81x\à\f\äQJË\9cß³\"dú\88q^1»\18q&\ 4\8f\1ceµz¢õ\Î\0\â¹\\\ë\Ï\1c\'\Â0ffºo1ò\ç\eñ\\;\f1¥\Ì \\\85¹Sj1\æ`n\ËZL\Å-»\ f\86;8kòÏ\8es\8ce^\83À\9cC­p\a\bñ\1f\a\é\Õð*µ~$\ã\9d;\8f(\àU\83\11«£W\êt0iB\ØQðÁ´\11\ßøy \ÂÁ\8d£kðÖ\8cm\Æ\18\ß[DDD\\\12¢Æ\9d\ZD)±Á.\1c°\Z,¸\92\829\11¥F\907\bñ\ä\0­x\8c\ 3     \ï\11\82V8e\e\9cÇ·-\Îq\9a\81½G\9e9\a\ã\ÏȦ\ë\1fNªm\7f\bö4\16\1c\Ý\Ä\ì\0\Þ\È5\ f¸¸\92\r\çO\ 1\ f,¦;\è67b\Ó\Ü0\ëj`AÙ«©*cf5S\9c´\ e\8ac\9e\8e\ eê³\88;«È\9d@\Ú.L\1dg³ú\91n4h\13\'eµ\91¹3\8f+\ç[\Î\15]\7f\Ë\ä[Ý£S\8e\æ\É(FLf¯QÁ%}a\86\ e\Í\ÄDDDDDDDDDE\ 4¿[þ\Ä\Üq\ fCu,1ø~y#\97v,\93å\9c\8c\8df±¬\Ö5\99o\ÇÙ¯\ e^÷a\Ù~rö\9d\Ø\Ã[ð\Î_]\Ú)\13úZ8\ 3R\ç\ß0\\,\ÍÀY\93\v\87t\Ý÷\9cª¢<#\91\12^ä\82®¾\98S\ã\e\19\19\â²N\Çù-k¿Ê\96\b²>$úr\"[¢\88\88\88\88¢C\ë\12\ê\í\8f2x\ä\Óy·Y¤\87*û­|\ÃOµ\ì6!­\ 4\8b¢q\î\ËOq©\ÝW2n\1e)`«\81ioU³\Ì\Î\7f&(EK#\Þ;\v\aW*-\8fø\82\æ\É]xòq\ÒnU\85\1c\92¤\ÕsÎ¥¬\8cBú¾M\Ç%:O\19\12C°l\àn\fAn\ f\95!\8eùe\à      \18\11\Îk\1dv\Ê\"\"\"\"\"\"\"\"\"\"\83/­÷^    :ÿ\0\Ñ=­±±ù\11y\8b\955\ã\Ëþ¬\çé\9f¥RYE\8d\9f\ÞF\Üeõ³\v\8fl5\ïö\Ï\Ë.ÀÛ\86WB\8aZ~\8dmnlÿ\0*[\9e\ÐÆ\8f5º\ïV9*¶S²\ìý­\9f±m\Z\13\ëð\Æ|rÜ\8dÑ©->\×ü\Ú湡kXü\11\1d¤¨\88\88\88\8bR^xj\âZø{ò\12)a\11q\13­Û½¤w\11\8cs\81.°Q\æ\0Á\Ëñ\9f¬¸È\9c?\9b2\×\å\84 ñ\9fb;\19¥\Ñ\16eø\ë\Ò6nD\ï§N5=B´Ö·³;)\Ãv\"\88\a\ 5¤mv»½\Òl·³¿Û\90Lp\ê\èj,­\f6¹\Æ(a¼Q\84i\ f\10Iyj\"\"\"\"\"\"\"\"\"\"\8aG¬+\84 r\'\8a±ò´\91d³:ý\Í<}²Ö¹\84;\1d\1c»\í\Ü\1e4\93 \8c\17°\Ï\e\10ö3\Ç ¤\å\Ãl\891NÁ\äÁ\19\ 5Uò)rz46\81\×ù>\ä=I\â\Î_²õ\8f\11ÿ\0£\â7k\e.¤\'\a9\Î~xq\87°<\8d\Ã[\96\11\Ýó\Ës\86\14DDDDZBõ\18òö¯\Ä^\1d{¢ý\96ÀPI\È\Üq\9e)\×\Ú÷»%\95°oVpjk£\ 4\fa\nl\1c¯ür9­h£4ø\91 £\bÝ\9cÓ\88\8a\94^«\í\\ùå\8b\8d9^\f\ 3¿Jꦿ²ò®\Ûk\87\Æ\Ì8\Ö׺õÞ\91§U\Ì\13°Y\99}\9c»\9b[\b\'\8e\ 6\80S(D9s#fDaK¶i\11\11\11\11\11\11\11\11\11\11\7fº\ÍI\Ü^\98vG­WÌ\93ø¼±\Å;V¹\bð#\82M¤;¬×\92m\14º\86\11\Æ+@\ÛE\89\88G\È\ fô\95\Øvc\Ég\Ê9h\é\Ûu]\87EÚ¶m#m«\91Gµi»\ 5Ϋ³R\Ëȳ*\9fa׬d\Ô]U\É\È\b`fE}\9491\r\90\98¢\É\ 2ì\8c\8fg³³×\94\90=)¼Õ¬ð×\98~$\8f³\ÊdAò÷\eòo\ e\10¿6\ 5\×\Û\f\Z½\8e\ 3\r#\ 3xb³\ëÔ¤\93\ 5\94\84¤\18\á´Í\91(\r}·\b\88\88\88\8a\ 2þµ^\è\ë\ 5 \ëwBµ\Ùò\89¸\Ç\Ø\19Ø\8eG\Ä\v,\8e4=\7f\15;\1e£¦k×µ\ÌÈ\88\7f\ågM\9b²@ûq*\13\ÉJ\13ûG\9b\0\ e}}è­\93ô¿ø¼\99\Ð^\8f\a\95¹OZm?c;WüW n,\92\Ö\æ\ËY\ã¯\Åd\8e6\Ñ\ÊLÁ¯\94,ì\96ûûjé­\9d\8aý\9e\îó\15vr\ê\8f\1c¤\93*\"\"\"\"\"\"\"\"\"\"*¡½U\9e=gõ\ f\Èe\Ç:\ê\953\eÃ\9d¹\88þD­\9a(¸\ÅN¿\ÉQ3\9aý\ÓTc\âClX\f\96(°v\ZÀ\ØÏ\91oq&N\Ë9\83\1c\18lh\ã\0½Û«\Ü\È~»öG\819\à\19¶\Î8{\98x\ç\92%Ç¢>#\Ú\ØU\éûmM\å\ÅDGºT!9\×5P¦T\924\99@\870\13K\12i1\10\æW¡qG#\ë\Ü\Ã\Æ\1cy\Êú\94¨ó5\8eIÒµ\8d\86DYB\9a\17\Õm4\Ð\îa7\12\83\8c\f\10f4EsZ\Ïb\8d\ís\18æ¹\98ô\ 4DDE\85\Ýü\ï_\ 6ø\ì\ë>ÿ\0\Ù~w½\Å}\ 6§Zfkº\ì&\8eVǽmò°\Ø\Úþ¥­Ö¾D\\Ë\9difx\91\Îw\9e<:\è\Å|\ÉÒ£\85\98\81\î\Ïmù#½\1d¢\æ\1e\Ór¦Y\1f\9d²mö(\ãL\936³U¥Ë¾\9a=Z \92\Z,b\ 5-pÁ\1f/\8f\12¾<ɹ\99d\Ê\èO\9a@3\15\94Á}2þ    ö^\Úr¾\9fÞ\9e\Ë\ë3j:\Í\Ä\Û\1c\1d\83\8d5KºòGÿ\0¶\ÝÚ©\ì\99W`FI\13J\í\17^\93\88öC4\'\ 4÷\16\83\81)\93c\Ô\Å\14}\9a\Î\Øñ\ãÄ\8e\b±@\18\Ñ#\ 4Q\ãF\8e&\ 6<x\ácD\10\0\"kF \88mh\Ä!µ¬c\Z\Ö1¸n1\85Ì\88\88\88\88\88\88\88\88\88\88\8bRþi<ok>N:=\È\\ j\ê÷r\8e¼#o<\1d±\Ë\a\Ú}g\91\ê\â\14p\8d\1c\98\Î\n\18ö\Ñ^Z\9bfEö\95>ªDª±\91\8c\9c_\95\8d\Ç;\Ï\11o\9b_\18òf±m¥\ï\Ú5\ä\ísk\Õ\î\ãþ=\9d5\Íqr\191Nƹ\â+3\9c4\ÑfE)\áO\88PN\81&L9\09:J´C\Ò7\äj§±\Ý\'?Mwm\8a|\Þf\êC\Ç[N;l\88l´\á+³\È\Ç\1f\ 2\8f\"\8d\Z)\83¨\ e\r\86°h\91\É*\Ä1k#X\Û\fX\9d\Zu\94º\11\11\11q\18Â\8e\"È\90Q\80\0\e\Ìs\99\10B\117/!JG\å¬\18\Æƹ\ï{Ý\86±¸Ë\9d\9cc\19ʨ»Ô\83\å7lò\17\1dÃ\8f\89Ѻ\Ý\Ö\r\9bb\ãn1\Ö\ØóÃ\87y³\Ó\Ì-N\ë¿]\×|F\197\a¸\8faEM$\ä´l*h²$R\Ï\f\r\86L\\Guo\×\Ó\Û\â^\Ç\Ê\aq\ë3¿SN\ÇW8(\95\Û\Ï5Z\92>\a\125\84/\áxª\f\19\ÈIc²<ß\99p(ñ-s\17_\8aPXÆ\84+¸V\ 3·\8fT\Õ5­\17[¤Ó´\êJ\ÝoW\Ö\ë£TQQTF\1c:\êº\ècÀ\ãÅ\8b\1cX\ÃX\Æ7\1e\îv}\ÈR9\æ+\ÞR=\î\ì\b\88\88\88\88\88\88\88\88\88\88\88¡+\ê\9aðo\9ez\Ôo<\8augO\9de\Î\ZMlVs\97\1d\êµÏ\95c\Ê\ZdB¿$Ü«\ë\84F\â~Û©E!¤Hl1>öþ¤y¦\8d\1eþhõºú\9a\ÜVux\Ý\ïo&ø\á\í÷\15ö\9f\8cM\92\9bR²þ\1fz\×r/¸;§\18\ßH\8a\r\ßT ÿ\02¿\1f\93:´-\99LRM\fX\Û\ruD«\ 1Ì®\f¸\12®\8e\ê\×f8\9f¸\\\a\Æ}\8e\á-\86>\Ë\Ç\\£¬\×l\94r\Ä\ì¶\\?Í\8e2Ȩ¸\84V\ 6mU\Íi_\98ö\15vQaYD&0\Ùp£\11\ßV2\ 1\11\11k\ã\Ê\ç=Xu\9f\1fsy\9e\8eÀU»V¡×®P>\99 ¸Ï³¶ù:\8d¬j\ 1·8k¾\ f\Ì\â0\8d\7f»\1c߯9\13ðo¯Þ\91y³fYL\97cc.Lû        òO6t\é§,©\93fJ+\Ï*\\¹G{\Ï\"L\83½\æ9\Ì÷\94\Å{\ÈG¹\î\Îsü\Ê\à_MwN(ú\87â\9f\81LÊ·A\ß;\vV\ eÀr<\99µ\84ª¼u\Æñ\ 6)j)/\"\98a6%j\94\ 1\83B/\È\13%2<V\nG³\Çõ\8f~h\88\88\88\88\88\88\88\88\88\88\88\8b\84Á\f \9a4\90\8aDi\ 2 N\ 3\r\85     \82Vde    \84L9\84\19\18\ç0\83{rdz9k±\9cg8UWú±º\rÁ\Ý5\ï.\8fÈ\9c\Z\n}j¯µ\Z¾\Ù\È{\87\1dSe\8d\8d¬\ï\147\151\ï/\Û\10n\Ã+\99»\97`m\8ea\88\ 2\19¦@\9bnbJ±µ°\92H®©­ú1;M\Ïq;}\Ë]Bf\Ç>Ó®\97\9c\'·òü­jx¤Ì\87ªò&½³i4õÓ¨fd\99\ 5C6:ý\86\ß6µ\8e\e\Ûa&´S\à~\19[x\ëK\'Q\11\16\84ýL4×\97\9e\eûX\n\a\1c\98Uºõ\Ì÷\Çó\9cQ\ÒÛ\8e\Êõ\85ø\ç\1e\Ñ\ÍU\ZTsg>\í\Ã\v\9c»\19§\Íz\a\13\ÑWm\1c§Æ\9a\Õ\ÄRN©Ø¹\ 3M¢´\84\"\90%\99]o±\Ö\×Í\8a3\ 5\ã0\89\"4\82\89\84\11\ 6Q¹øx\Þ\×c\ e\Åð\9cqU]G\Ç\Ú==D \×VV\ê:\ì(0@&\0QcG©\881\ 5¢f0\Öe\8d\Çõc\18ý¿\å\97g\å\9c\ç=\Ñ\11\11\11\11\11\11\11\11\11\11\164vO¸\Ý_\ê\ e\95k¿öG\9c8\ï\89\81\8d\Ç.ײ\ÖÀ±9d7ÿ\0\ 5\12\ 5;\8f\9b9\92\ì\n\áF\82 Ev$J\91\18\r~\1f Xt`{3\ë6\è7\19J=g[ø\87\97;6rV\È4-\80¬\'\ e\êÀ³k2\Øñ,\99»Q\17hú^|\à\8f,\rvK]\15¹\ÎH\19\ eÀ[ªwú®üºw\ fgf¥Ð¾\8dj1®\85aU\12Ö»_\Ó÷\î\Ç\1e W\854\Zr[\Ø\Ö\Ö\éuz¬yrÀr>÷fÀ\éX\18\93\ÊOÅ\8d\14ç\8d¹N\ 4\ f«\97\99ß®J\å]\9f£ýf\Ô6\90gù¹[.\8dIµoúTY1\8f\86\95\9an£qe\1eU\9cy8\b\8d\18»\84l\80O$\ÈÆ\94P\864\9f<±ô\99\7f\Þc\96góÿ\0\92?\"|\Ó\Ú\Î^¸ú\ 3saA¦\Ññ\í\ 4úÈ\8d\94\Êú8ð\9des+]¥­Ì\97\Ê\rf¤}~\ 1l\äN±\ÄHÄ\9f8r²\1e\ f¤3Ä\9c\14\íc\95¬$\ f8\Éeç\94·¨®\91\8c\7f|<!\Ù2!ûþýò,3ûþ±\8fe·~\83ø\9bè\97\8d\b[`º\8d\Ã#\Ñî·£G~ݹ_lû6óº^F\86\11\8a\rYö-®\Ò\Î\\JX.i\äç­\Ä*\èó,-%\ e>\re1\æ\Øò\"\"\Ã_\"\1c\17#³]\13\í\Ï\0B~Ga\Ë=|\å-6¬­n\1eð\Û\ÚjvM¨0Y\96\13\ f\90\e&E$f¹\99c\8e\Ñ\áþ\Í\Î]\8a:¶\Z\v\9dRþóV\Ø\ë¤\Ó\ì\Z\ÕÅ\95\ 5õL\Æ`s*\îiæ\9aºÒºS1\97a\92aM\8cx\Çf\1c\ì4¢~1\9c\1e\ë³ñ6\É\aM\å>4\Û\ìß\91Vê¼\81¦\ì\96\ 5h\Èg\ e\r\1e\Ç[g-ø\bXR\97,\ 4R;\ 3\10\88G\ç\1f\161\î\Î\e\9b\âxú\Ú%þ\85¤^À0\ä@º\Ô5«hR\ 4\ì8G\89cM\nds\rø\Îp\á\94&c\Ø\ìg8s]\8cû\ç\19\11\11\11\11\11\11\11\11\11\17\9fò\97*ñ·\b\è[/(ò\îñ­q\Ï\1d\éµr®¶\9d\Ënµ\8bK¯\ÑUB     $Ë\9dca-\ã\b\8e\"\9c¯\Îs\96\ 4D&qðcó\88    ùjõx\í¶\16\ 5\89\Z\8aª\1cû­j\7fg¶*\áN\9ba\1cqY\18w\\GLi\ e\ 3\n;\17\98\Õû&\Å\ 5õ\Ø\Å~\7f\1e\8fg©µ\8bh\18u\ëô\1d\ÌòW\ØØ´u\r\å\8e\Öv?\91dH\Ìv\Ø\ÛKÙ¶\19\11\9d<\Ò\Þ\Ç\Ù\ÞM\rF©ª@°¶p\â\ 4ó)5JRØ\82\ 4&BĨ\Ñ\ß:/\19^\8e®1\ÒE­r¿\91\Ý\åü\9f´ý\15öÁ\ë÷\1fÈ\93Q¡\Ñ\Ø5\á\95ø[\9e\Ó\î\Ûm\Å\Ñ$\ÆcI\ 6\18ª¨l L\95_oY#-S;\á^½pO[ôú\í\ 3\80ø\87\8e¸{Lª\8fø\90u\î<Ô©ujñGû\1co\81\19U\123\ä\ç%v_\92Jy\Ê\ç{e\Ï϶3\8fcDDDDETOª;ŵ\97Gû±m\Ø\Þ<\Ö%D\ëomï­¶ú\9b\0eƬ\Öy\9afOu\ÈZ\83\9c\Ðg\10GpC\13\1c\Ùó\'Ø\90\Û1Z8\Ð+\â\8f1}V\êúd{\ÛEÜ\9f\19\1c[©I°°\93\1d]\8d\13\82ù\17\17SO>\Öкü\b\Òõý\94\93\13ó-¿\99 \9f[*\\æ°¡\8f$\í¯<\éVQ\çe\92#DDDDDDDDD^3\Ø\1eÀq\'W8\83y\ç^qܪô^4\ã\Ú9\×\Û\15õ¡\98\Ì6<\18¥\93\88Uñ\Üö\96\Æ\Ún\0ñ@¯\8d\îy%þ\Ø`\ØR²¥¯6\9esù\Ï\Ê\Ç*\ÜkTv7|q\Ô\1dR\à\81\ã~ \8d5\àÿ\0\12\86¶k\ß_»r\'\Ð\Ð\æ\Úú\Ç\"\8df*\8995m!\Ã\v\13\æW\Ã<lSñeâ\83²>Vù\Ð\\S\Âñ\19¬i4N\ 4¾R\æ\8bú\Ést\Þ9¦&q\9f¶@£\96#®\ïd³?ùn»\16tS\Ì{\87\83K\86\Ã\Çym\94ñ»â¿©þ08z³\8c:ý¦C\91²>,\7fñ\Ï0\ì5\Õ\ç\ä¾F¶\13O\82\Ûl7B\ f\Î;L\é2~ª\8a\ÇF¨\80\ 22\ 5|HÕ± Ã\8b²4DDDDDX·Ü®\9fp\8fzú÷\È\1dm\ç\íZ\1eÍ¡\ïµ%\86\18-u\8e¿n,¶E>\ËE+\ e\1c\88\174vA\8be\ 2\\CÆ\92\191DPH\8eq\86\1dò\Û\á\ï±þ\'y\97:§$À\91¸ð¾\Ûa%¼I\Î4ðd\ãY\Ù\ã\ã\12d\87]¼6@ÀQ\îñ G,£T\99\15´8\Ò\ìi\ÜLÀ¼¯£\ë^\"|¤ò¿\8a.\Ô\Õs\9e\8e       \9b7\1e\ì\Ñ#j<\Ý\ÆC\9cH\Ñw½\173\99+\ç\1cO8«Ý´kGɬu\89V\18À\ÆSXW6e[m\8di\12\à>\9c÷/\80;\ÛÁ\9a\97`z\ç½U\î\Ú>\Ó\ 29\ÊØ\87\Æ-µ\Ë7\8f?\99¯\ìu\85h§T\\WIa\áË\85>4Y!\95\16Ls\842£J\8c\f¨DDDDDDDD\\2$\ 2(\r*Q\85\Z4a\12D\89\12\b0\80\0\b\ÜC\18\Æ#\9a1\bCk\9eB=\Íc\18\×9\Î\Ãq\9cª¥}K\9ee.»û\Ù;\9e·p\Î\Íi\eª=|\Ø\ìµ\ÜF\8cCD\87\Ê\\\95I/5÷\ÛE\80òÀ¾u\r\15\9c)\10u¡9¹\812HMv\Ò\ÜE\ 6¯g\eM\Þ8<wsÇ\93N\Ì\ê}p\à\è,\86ù\ä\15§ r\15\9cSH\Ö8\ÃG\ 1\9bü¶\Ót\Ñ\12;§\ÌhZPkú\à%Å\97°Zýq\9d2®¨\16÷\957\1eô_£|\a\ã߯:_]zû«C£\Öõ\9a\ØL½¿tH\ãØ·Í\90q\Ú\ËM»j\9a,d\93m­e\æD·5\å ¢fA\ 6\1c¹\Ï1\8d\98\88\88\88\88\88\88\88¼¿\97øW\89{\ 1¡\ßq\875ñÞ¥\Éü\7f³À\95U}©\îT\Ñ.ª,k\æ\8f\99\18\80\9478m\90/q\15Àx\88ñg#\Ëþ\ e\146û\ç\è\Ì\à^M·º\Þú\'\Í3úûa%§\9c\Þ!\ä\n\Ë\1dÿ\0\8f\äJdiFt*-\8c\97Qv}iövE\13F\édº¦¨\84\11B\8bR69Ò\85©\8e¹økõ*ø\8f\ß[\Ì=E\×õ\8d¼\ï1£\ß\è|k\ËZ®\ï¢\î±\n\È\ì$\8d£\8ewi\ÚT;\'\ 5±¢¶- \81\ai\0\ZXUò±\ 6M\9cCÉ¿©\1e\92\b\ÔZ§\90\13ü¹\Ä\18¥«¯\83ºs\'\12\ e\ïMmw\n0£]\Ú\ 3\8ba\16\Ïd\×\Ý2v\1f6%%}\Î\Û\1c\ 3\É\á\Z\â\'\Ò\13\17%yc\Ôe\ã7\81\æG\89Í·ý\93\âQL\91\98P\í7\î ö7]¥\9d;\ 1t\8c¬¶\9bÇ­\85o! a\n\æ\Õ\16k\ZÁ\e\äüdD\Ã}?¬þ}|Iö\Êõ\9a¿\14w\1f\8f\à\ìòl\eWY®ò\94-\8f\86®n\æf.f\95´p¹B\9fU%°c\ÅnK\"\\?¶#\Z\Ã\ã\as¡\Í\Äm°\êÛ®\9b¼Au\9e\93¶\ë;\85c\1c\Ö>\ÃV¾ª\Ø ±\ï\Ær\Æ:]L¹q\Ú\ça®\Ë[\92c.\Ã]\9cc>\Ù]\9d\11\11\11\11\11\11FS\Õ\1d\ä¿=\19\èm\87\ fñ\î\Âú®\7f\í«-¸\ßP%M\Îj¶mGBüG\7f\8f¹\n¹ð\ì+¯!º¶\19\ 3GS}JR\1e\9fiº¡t\81´2>\Æ\Õ\aQQk\7fkYCCYawywa\n¢\9a\9a¢\14\9b+[{[)\"\87]YY]\fF\99>\Â|\Ã\ 6,(QBY2¤\94@\0\9eWµ¹¸\ f\Ó\ï\â\8b\85\Ò\Ív>\Ó[S/³\\\ç\ 6»{ç\9dª$_rG<\97Ì\99©\è5sd\96L\Ö\Òi\Ô3\áÀ\90Áº¶%­\ë,/MEW>d\807|\88\88\88\88\88\88\88\88\88\8b\Ì9k\84ø{\9eµ)ú\176ñv\83\ËZU¤y\11,5nD\Ô\èöú)Q¥µ\8c\96\ 2\Ö\ÞÂ\9b\e\"\961\fR\99\81\á²\ 4\b\ØxýÛ\98²y\1fô\8ct£²±owþ\9aÏ\91\1ec\94G\ÌfµN\ 6\\p\rÓ±ü[?\rüyõÆ\97¨\95°k\äÄ®&\99}ER\Ë\vS\\]T\Ü\18Oa¡)»\87˯§Ë°v\1cg\1f\91ù3®w·\98\91k\10\ÚF\É:ó\82¹\96®,ºqX]\Ô@´\89\8dKlp\9dYO\ 2\ÂTú\b\e\8dEik\98fVW\\V\96t\Îü-z¨¸Û¸7ú¯Z»\Í_¬ð\7f?]\Z\ 6½£rMQe\87\8b¹Z\ì\á\b¢V\Ê\Ä\âÉ\91¥m\97\16\ e,\nÚ\99²¦\×O>jÁ\12\êu\9d\99\ãA\98°\8a)\ 2\11ÀQ\98\ 6\e\f\13\ 5\í \8a\"7\ f\19\ 6Fe\Ì \È\Ça\Ì{s\96¹¹Ã\9b\9c\ã8\Ê\äDDDDDU\14ú ;\87s\Ú\Ï+\9c»®6c\89¡u\92¶¯\81t8Ñ­¤Î¨\93\8a\9c\97eÚ¶(\Õ\æc\ 3Qcm°l\'«µ\b2gJƹ\ 2A\8a<\å\90adÿ\0¤¯\Ç`»SÞ\99\9d \ä\ZY2x\97¨°\19²Ò¸ñ\9aú\9d\8f\9a-2\bº\Å1]&,¸3\85­\ÔL\9b±\ÚV\99\83.\1cj9\"8\9f\86|\í7DDDDDDDDDDE\87=\ä\è\9f\\¼\86pFÁÀ\1d\93\Ñ\ëö\Í^É\87\97¯\Üd\ 3fË¢ì\8e\8cX\Ñ6\9dFݸlÊ\9bh­&Z÷E8\9b,\1e\á6}ð\12\86\9f\ß+^2y\9f\Åwjv.\0\äø\96\16Ú\85\98\8d´p¿(~        \ 3E\É\Ü|i.\f{(\13X&\Â}\å\11ó\8a\8d¶¤Y\fº»&\ 6D\88\10¡Z\Õý\ÓHô­yÀعö¾\1f\8e\Î\Ön\ä¼\åmB\8aLοò\ e\Í//º\ä\1d\1fl\Í/`»\9b#\18·\Ûõ¸\ïkkd\1dÏ»\Ú*þ\83\98v\97\106+\99S\80DDDDE\ç<Á²\eN\â^RÛ£\1dѤj¼u»ì\80\92\Çe\8e\8ej=f\Î\ÐFkñ\9ce\8e\13\ã4\8dv3\8c·-÷\Æq\ì¨}\ä-\ëa\å\rÿ\0x佺H\æm\9c\87¸l\Û\Ö\Ï0Cp\85/a\Ûn¦\ß\ÝI\18\9cò¸c=\95\84\92°n!\1cÆ¿\r\Ëß\9c|³m\9f¦;¦\9a\ÇRüTp¶\ÉZI²6\î\ÔE\87\Ù\rüó\7f O\1d¦\ßO_\ 2\86¨p\ä\10\98\84\ÊMV®\9e³#\8fôG\92H\ï±$P\ØL\9cCHU\11\11\11\11\11\11\11\11\11\11\11i;\ÏG\8c\Ýo\É_C¹\eM®ª¬\1f:ñ]e\97\'pf\Îh\ãdð\íz\Ýd\édÔ\8d\9cѨ¶ø\ßmU®G\12\Â@\84g\12º.\'=\84U\nqW%òoYy·I\å=,öz_+p¯ Vl\95C°\r\95\\ê\8d§P¸adR\ß\×0Õ¶L\8eY\11$Rl\Ôr\v\15ò\ë\ÍcO9­\19\Î5w7CûAK\Üþ\9eõß³Ô­\1cvs\17\15j\e\8d­f\ f\f²(ö\v:x¦¾¦\9e8%4xs Yº@\Ï      \85#c\ã,h\Êadg.[\"\"\"\"-nù\82\ä9üO\âû½\1c\89V\ïk-S®|\83e_\8fµÁû&ÿ\0\eø\ÑC\935¯p\Ús\9d\81sð\Ç\ç\18&sñwþ\9c\Ò÷Áº(9C\9aø\7f\8d%2C\ãr\')qþ\8b!\91\1f\91\Êx6ݲ¢\80Í\8cL1ùd\8c\8eÁ\Ø\vð\Çe\84\Ë]ñw·¶oyд\Ê>:\Òu=\vZ\87\16\ 5\ 6\9d®\Ôku1\"F\14@\n\15D\10B\ e[\1c?\ì\Æ\â´?q}²ì¼¤{\Þ÷½\Î{»j\"\"\"\"\"\"\"\"\"\"\"*t=Eý<¦é\87\95\î\Ã\éºÁ\ÆýO\97d\Ã\ìn¹\r\99\92GT\83\97\ç\\[]Ö\98ò^ì\98\8cÛ¡lr\9a\Ø\â\8b\ 6\10%\86²\ 4\82\17\92k^\8d\Þd\Æý\â\çm\âü\Ç8\ßÁ\1d\8a\Þõ\ï¸ùn[$[\Ô\Z~Ec¢|Jüb\18\89~a|H0\9bó\9b9\Ùk\Â\à\11\Ò\ÕDDDDZ©ó\87¥\Ë\ß|Jw\ç]­\8ai¶\ä\ë\9e÷>\9e,|û\18öU°q4\11Ç\8c¹\83ve4$\8b\9c\e?[p|¿9c\98\Ò2«ÿ\0\ 6\1cw\ 3\95¼¶tcG²\87\16t[.bÅ\97\Ñ0_lf\É\Õõ=\9bk\83(\8dø\138\Ì\19Ô\91§\f­c\9e\ 2\Ça\87\8f\98Ú®\96DDDDDDDDDDDDUÀú\Ûø\ÓZ \ì\çJùJ¾¬\0\Ú9#\88yC^\Ùn0!6M\94\1e:Ù´\çk°Jv±¥$j¦\îV¥\8e\12¸\8d\ 1­&\10yn$¹¸\Ù\'¢A¥\ÇJû\8a÷78\ 3»EJÑ¿\Ûôâ·\89õl\99¸Ï·\ï,cÁ\9c\ã\ß>\ß<~±\ïû\9a\Ò\"\"\"\"\Æ\Þ\ãj Ýº\9d\1dZO\Ç!¶\á.J\13\9añ\à­&A©Z\Ë\18\9c<\å¸\Î\fH\í\16]ûø|þ\7f\aü~\ e©·\ÓM\0\Ö\1enú\'\81\0\86dM¯\95\ç\És\ 6\â28bð\a+½§3±\8c\àCü\8c\80-!2\Öý\å\bñ\9c\90\8ck®$DDDDDDDDDDDDPMõÀ\ë5\î\á\î\84\î?O½¨y+\995\9f¿8n~\15òu}F\Ó\éc¾\1f\92b|É\8c\93\âÿ\0¨Y\Ã1\91\å\Ù\Í\1fF®·\ 6§\Æ\ eùw\Z\10c\ËÚ»#»Î±\9214d°5m.½H\ 3\È#[\87\18\81\89\0\11\18÷\å\Îhc\88Xv\18Ƶ²\áDDDD^[\ÎQq;\859\86\v²\æ¶g\16ò\fW9¾ÿ\0,bF¥n\1c\å¾ß¿\960ÿ\0|{c\ß\ß\Û\Ûöª¥ô\9eid\Ûü\Ëp\ì±dmv\91\Æ<ú9\äù\7fH\âk\f¤.\19\96µ\ÙÁ\n;÷\ 1\9f¬5\Ù/Á\Îk\1c\çb\Ú\ÄDDDDDDDDDDDE  \8f[\9dn\v\ÓÞ\97\Ü}~ù\83\Ù]ª·\îöÿ\0/ù^/¶\95õü¿¾>\ß\áp\ïoõú}ÿ\0\Ý\Â\Ï\ fH\95~!øiФ`\7f\f\Ûs\Ï<Xe\ßû\Ù\1e\ e¯\ìþ\ØþØ­À¿\×ü¯\ïþ\98\93º\"\"\"\"\ê\Û\Ì\11Y\é[\85iÿ\0ȱն\b&ÿ\0ò\97S.9?þ     \95\\G¥+\82\ë5\8f4\9d\Ç-?\Ø\n~\ 4Ò¹Ã\8e*!·ú\82\Êû>Y\ 6¿\ 1\Ïq2\ãý\91a\é\í\0½ß\9fv\È7\Ûò~\19\9cY@\88\88\88\88\88\88\88\88\88\88\88\88¢¯\ë\ 3Ñ\83±x\9d\9b·\9a\e$;\8f\8c§E\92\ f/\81\'c\Ø!\ë\9fhð\ìý\8d\É\âÌ\97\19\es\ì\Ò\äosp\\a\Ù3\éu\Ñgh\1e\18z\Å\ 2Àoa¶\e\1e\82\ç³\á\93A\Ý÷«\8d\96¼\98\Çû\Ìl+\0\ 5\8fÿ\0}\82nT\83\11\11\11\17ø \Æa\90E\e\n\"±\Ã(\88Ö¼d\eÛ\96¼dc±\96½\8fnr\×5\Ø\Ë\\\Ü\ç\19\Æq\9c\áA7\Ó\17A\1e·Ì\9f\9clG\Æ\ 6*\ eG\ä\8a\b\Âo¶\Z\Ø\æ\í?#üq\8cc\ßô\ÆÒ\89­ö϶1\9cÿ\0\7f|)Ú¢\"\"\"\"\"\"\"\"\"\"\"(\àú°\ 1\83xJ\ìi2\Ügñ¹\ 3®\ç\Æs\8f\Ûr\îp\Ò#|±ÿ\0\fûH\Ë}ÿ\0\à\ì\ãýVsx7«\rW\88o\1d\10\86,\Ê\ê\Ï\16Z\e#c\e\93\ZÒ\84\13²R\ç\r\ÆHL°\Ãg\Í\Þ\îø1\8cò\Ö7\Ûk\b\88\88\88\88¡\Ñ\à[C¦\Ðü\ãú\84i©\0xð+ù\86\9aXG$\8f1²]Ë\969kl²3\88Owe²,e\Z@\ÚÏ\80\ 6\"±\80\18ÀÁ\r\93\17DDDDDDDDDDDDQ\âõO\Ñ\Ø\ßøL\í<jÀfA\à_ðe\áÇ\875¾\Õ\Ô\\Ù¢\ÚÚ\9f9{\9a\ßhµ±eJ\Ë}ò\çý\1f\ 1µ\Äs\e\9c\ãð±\18\91<Ix\ã\11\1dòsºwÁ\12q\9fø\ ef\85O0Mÿ\0 Gc?\é[:DDDDE¡\Ï\Z\Ýn\'\14ù(ò\ëÌ\92ª[\1eG=se%¤;?\ÆÀ\9f\"\8f]§«\87\16\v\8f\86\ã\ï\10®e\ì6C\Æ]\9c0Ö²²\Ö\ã\ä\ç?|h\88\88\88\88\88\88\88\88\88\88\88\8bWþf8>ϱ\9e6;I\Ãõ\ 5dk\r\Ã@\97_\16a\ 2\ÙC\81(\8fh\àO|W\Z;¥6%\89!\9dÀ\11\86G\á\99ø\948\ÆL<\98\è\æ\8aþ1\é\ÇXxù\ád|iü\1d\Æ\Ô\"\bþ¿¬q`jõÂ\89\86\àyø1¹\89\80»\ 3ǶE\8cýnk^\×7\19P\88\88\88\88\8b\áT\ë44s®¬ªk#Á\9d±Llû¹!û>\Ë\19\8cÁ0Ó\9f\æ÷7\ä\Ü\14\9e\ß^\18\ß\ëwôû¯º\88\88\88\88\88\88\88\88\88\88\88\88º¾\ç¨\Óo\9a½Î¡°\8c¦¦½\8b\88v\ 2\ 3\Ú2¼80\8f\8c1\ï\19Z\Üý\81f}ò7c\Û\19ý\7f®>\95\r4\1dr\8e\9b^¬k\Ù[CS]M^\Â;\ f# \Õ\Ã\f\18\8d{\Ú\Ö5\ÏÀ\0<9\Økp\çc9\Ãq\8f\Ö>²\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"ÿ\Ù',4,0,'','','',''),(32,0,11,'9305bf00e7fb6ff3','11822615065bf00e7fab8ba088168210','2018-11-17 13:50:06','2018-11-17 13:50:06','','','Contact Photos','97971161215bf00e801fdd7464746900-4.jpg?ts=1542459008','image/jpeg',80,80,2356,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v     \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0*\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b \n\11\12\13\14\16!#\15\"\18BCÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91ù\ãõ1VüwZfº\9b\bJ®\Ø\í¨!¶\9d\85m³e\ÙMg Ü\91\13\ 4\a\14|\\qb½tÙ\99\11ö$\15[Q\àÁ\Õ\Û|\'¬\8fJ\18¢+\18\Å_\8aÎ\9fy®ód\à]±î§\91~\Ü\èN\9e\ÊM>et-e°¦µM§s¨2T9¸\Õ4ZO\ë4\Z] W\9a~?;\ 6J³&\Ñ&\ eðu\êôç´\84´f÷}v\ë\Õ+¬\9a\Ö3V\Ð\ì;j\Ó\v\1c\ç\ä*stn]\9d¼.\87\98±\Ç\19\â       ¶\í;E¦\\V\1eÀ\Èu0°\ÏEW\ 3}o¹\e\f\16H{\v÷^8\ã\8e9\13{\á\Ù\ 4õ\ 3¦\1d¢\ìòE\1có´v\8eØ»\ e\n4\Ì+\"J\Ú`kg¿R\88+\b\ÊUøò\Öl\Äƽ\9c)\1eÍ\94¬üÑ\8c|±Po\8bÞ©\Û<°yCÓº\7fhX\',\98\Ý;Jõ»\13t0\×U?-M\85̦\É\ÛR\84JcûX\9e·\8e\19ðqòXJ¿\1e\Ãc\8f#-ýh\Êqt\15F£X U+TjL\ 4MV\9dN\81\89«\Õ+0A1\e        ^®À\80\Ä\\4,Lx\Èlp£c#\Å\1c0\85a\bi\81\Ùm´\'      N1\È9\äo\Æö\87òa¢¤t\Æ\è2\ëX\90\10Igµ\î\Æ\×Ö¹\êå\92\81d\91dl72\88ø\é! m\Ñß\92\ 4z\äk6\à%b\ f`ofS\1f \91dÄ­\v\ 4òe\é\ç\ïýã­\97m©rÙ\9aÿ\0Ll@\ë{?D[\ìÓ³Ú«h\ëb\10\f\94E¯]\ae|õ\ë\é;e\1eB.\ÉO³W\90\ 1 <T|}\98Ixñ$ \9fµ\ßLm\9a^û\Ô:»xk\89\ 5J\ëýÁ¯©\Û6\95\"\â\12Ó¦U¯5øû,\13ï²\87\1dK\ 4®6H\7f\1f\ e/,?ö3\95+(\Îy\é|q\Ç1\8b\8bVØ·?\8a>þkÚ\90\84H\Ù$úͲ&a\ãDK\8b.P\Ê\\Vn\è\8a\r¶³\85¼\\\9akª\0Vq\9c\á\â\bm¥%I^S\9d\ 4ý\19¯Dµ\å\8aþ\83\Ö\Ú\ f#¦;q\984º¶\13ö\9c\9d\99¤\b)±\Ò\æp\ê\Ê\ÄS\aº\94\8f\î\æ\ 4hÕ¯\1fJ\1c\Î-&\ã\95Mz¼g\é\97\ f2\12\90T\ 6\98\90´V:ó£©\9b\fx\81\Òù¥lb\9cµXc\Ã!\ 2\8d\96ý\ eѯ\ÃB2\9c\95\86\90\188Gô6\9eX\ã\â\ãE\Üz\Ïã\9f¥:\1fb6H÷\íg\ÖýY^ºÇ\98¼­ø[^*\à\9d`¯)Y\Â\7fÒ¹*aPL\ã\Û\1f\16#\9bN?\8crzq\Ç\1c\â}\86Ie\á\88i·\Ç!§\18}\87\90\97Yy\97Q\96\ÝiÖ\97\85!\Æ\ÜB\94\87\10´\å+Nr\95c8\Îq\Ê\Ä{\8dÕ½\8d\é óA¥{³®ª²¶>\92^v}\8ev\8c¸D\7fXz\êò$\8cN\ß\ëÄ\82\Þs\è\Z\ßI«\Ø$M\×k\92y\"X\"À«\Í$\97\ e\8a³\v\11en \ÛZ\ï}j\Ý\7fºu%¢:\ë¬ö\8dN\12\ïFµE)j\ 6r·a\ 5\99\bÃ\9aC\Èl\81\ÜX\ï%\ 4\86SL\98  Hx3\18\1ei\11\Ûȧi\b\éGF»IÚ #\ 5\99\9b\Òzv\Ùo«\Ä\È%\Õ\Æ\É\\\Ò&\"\éAJ¡\87\19}Q$\Û$a\9a\94\Ã.´÷øõ\13õ8\87>*Æ\8cÞ\96~\86\ f\äc´ý\8aò½\ÝB\Ë\Ý\16m]·cÈ¢~Ú\94\98\r£²S\è\Å\î\7fcO\n\9c4\13¹\Ö\11E\Õܦ@ \\\Â\ 1)d\0\á\ 4\aôøv\15cG\1cq\Ï\ 5\ì\çft§O4nÁ\ìganñ\Úÿ\0TkHe\ÌY\'\Ïù:óªS\88\Z6\12\12\91\93vIù\'\86\88¯AG¶\éòÒ¥\8c\18Í©n{\ã\0]_\ì\1f\95ÿ\04\84\ãv\ëk9~,<l\1e{\ØÖ¶\18\9a\85R÷\Ý>\ËWX%c\æÁ\r-}\8b°\Ñ5EJM¦²ðV\88ªÁ\ä\f\90\ 5_\ã2\äø¹d\94ñcÓ\8d\81[¬W;\1dL¹w/\152\r\90\89\90\îV\Ñ\Ø\1d\8f@\ÓRL i\19\Ø\ê\9eÄ\9f\93\×5©c\ 6m#8õ:\95\\a\91~B\880\ã-m*tQh\94\9d_M¬k­oR­Ð¨4¨Xú\ÝB\97O\85\8f®\Õ\ë\15ø¡\Ð,l,\f\14H\â\Æ\ÅF\ 23hdP\82\19\91\Ùm8J\11\8csÇ»y\×\n·oú»¿:½t1ø\Ê\Þö\ÕW-jtȬ\à\82\1e²\Ã\12\fe\8c1\Ô\ã( \Ê\ìªÁ\9c\10w\1dm·É\8f\15\86Ö¬óO¯N\Ƴør\ß]\91ñ!\äJ,} j\ÙûQ\8d­\Ö=³g\Ê\â´öó\98L\14u*\É\15H\ØÒ\8d\ 3\ 3)û$-~\933H\1dd²k\Ò\19±\Ôf\86\87¹°\15x\Í\ä\12¤­8RU\85%XÂ\92¤\ç\19\9c{\ã8\Î=ñ\9cg\1f\Î3\8f\ã8\ç\Ï\1csQ?-\94Ù¯*~j:M\âJP\ÉDuO@kw»½Û\98\88Ò\88 \9b\8f\ÂD\Èz\Í^W(q¥8Ê\83Mv¢\ 1\82£\87\Ü\ÖY!ó\93\"\87pm¶a!!\ëP\Ñ5\Ê\ìTt\15~\ 20\bX8Hp\87\8d\89\87\87\8b\15 c\"¢\ã\83m\91\0\8e\8f  \86D\b1ZhqFe¶\19m\r¡)\Ç\Ùñ\Ç?!v\×\Ô-\99\ 6\ícc\Ò*\e\ 2¶úþ\×\ë\×j\Ô5®\r\ç0Û\8da\ÇbgB<\a\17\86\9du¿\9a\Çʾ·\1cG¿\Åj\Æ`·d|h\é]\ÍXùi\ë.\Å\évâ\80\87l\rsºú\9bn\9c\Óòµ2#Ò\97!E°\Ñ*2Pú\ëgS\Ç!\81Z\91¥\Þë\92±\æ\Å4¸ð\n\86uL\9c4Añ!\ß\Î\Älݯ\Ùÿ\0\e\Ýýj½ÿ\0;zHd)\12û\ 6©\Z\Ü%[²\9a\91?K\Þ0P\83²8\912E\8f#\0\å¬\0\ 4\8f\8dmv\9aó¢\ÇF\9eô\Ô4>u¸\æ\ 3úÉ­G\13\Ô7\å\ 3e:Û¥\18\ïK:@\0\85¯\å\94E\alv\ä\ 1\91m{ÿ\0®\11 F \16G\Û\1fú²þqÿ\0|s>\1cq\Ç\1cs\ 2²\Z\Ìx\ßRõceE\'\ 1.\Ï\á²\Ü-¡,!M¦`º\çnjQq¤\9a¤º\96\ß|peA\19µ)\95:\96\ 1\19\1f?­¶ð\Þz¸\ä\ eÕºý0\9eH;\99°S\1c\86Qy\ê\9fC#ñ&\96\14\9c\98]Wa÷¬SF[ÿ\0RP\ë¢\bl2\96\1dul²ð\ÙV\eK­\áSÇ\8e8\ã\8e@\Ùz:W\äò\81²\15\10¬©\8e\87\í\ÊSs\Øo?\ 4~G`t¤\ã\91+w\1f\14\18l\Æ\ÛW¶U\86\ÝS~ÿ\0\17\97\1c\àH£ \97\8c@\ì$²\19\1cg\ÊKM¤\97\11d¸+\ f?\84\á\Ç\19\19\vpv\96¬¡\95\94B\9bJTó\99W?\1cq\Ç\1c\ëd1T[g\ävrsC:\ee\å´\ä\84\nû¬¼ð\èw\Û\æ\96]xv\1cq¼gâµ²Ò\95\8c\å \Î;<ÿ\Ù',5,0,'','','',''),(33,0,11,'9305bf00e7fb6ff3','11822615065bf00e7fab8ba088168210','2018-11-17 13:50:06','2018-11-17 13:50:06','','','Contact Photos','97971161215bf00e801fdd7464746900-4.jpg?ts=1542459008','image/jpeg',48,48,1488,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b        \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 1\ 5\0\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0  \11\12\n\13\15\16\"1\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿\ì.\é\1eY\Ö\Óû\8e\190\9c\ f\ÆK\ËŤ*X2 \7f|\Ë\Çf\Î\ä\8c\12Yys\82G!µ+\15\92\91c\91·Tଲ´\Û>¾\90\99\ 1³I¦\Ü\Õ]U¢\ 1n\å_Pf¿\89\Ø-5ô\e\84a.-¸\é\é\145\87\12Û®6B]e½W\87\87\91\1fò\1e\ì]\81\Ä~©:\'jjy3 6e½5\9d-M´G>\à\92u3v¬ªk²\Öx\93\Zøx\19¸J§\8d\82=\85!ð&\9b\8f1\87\ey\86Ö\99\íø\9cz\ì \è>\10®ö\íª\b\19¾\8f\ì<\Ø\ì¯]e\Æhû\rWQ\85k\93\86¬Ube\88ýb\86\1e\Þ\ì\17óû#\Ì:Ó³\ 4J\Ã\r\'\923\ 2\1e[dÿ\0 »\'°\ÞR\çÒ½\84ð·RZi¡sÓµ¢w?9\ÎÔ¨·\1dgt¡\ÊØ£«\Ä[@\1eZ¸\í\84Ih3¦Az\Î&f\9d\fº\Æ\ f\92\8dr\fø\959!@½Ew\ã~\Ìx\'Ju\89UÀ\ê\16\ÛX³U}\91Y\8dy\ç\âb¶5\ZX\8aÝ­P\8b\'\ä¦à¥\8d\r3Ð\82\96\ 5\83\15* D\96k\ã¬\Ç\ég\87\92\×\Ü÷\v\Ê{\16õ\É\Ñ\1c\ËUX­\ìy\88\10\9f\81C#gk©\16-\958r\8b\Ï\ÊB\Z\ÌTs\95bNs\nh&&\Ü)䩦V\9c¦\7f\8d\ fJC\í\ fZ\Ô\ e\88MC¢xbR\É\Î[óWM°¸\ë5FR¿m²»P8Ø¢s\83\e\12\91\85p\97\ZCY±\ÃXÀk\í\800¥r¿É\9f¦-\Âó\96¡õ\9b¥`\139\Ð>\Ðö\1c.\8f«\9e\1e\16¡I\8c¹\Ò     ·LÉ»ôyܪaù\bºò\7fHgp\1c)vI\7fº\v\8c\ 5\92«Ï¬þ\17§ú\à\â­\'\È\ÔùuY\7f\88\"I·Û\96Â\85þa°\ìò\ 4دVF\ 4Z\96\àQò\16)\ 3q\f\ 3®:ð\10¬\Ç\ 4ó\Ï::\Ý[\ã\ç*\Þ{\9a\87κog\ï}¡-\88M{¨\èöM\81o\93ú)\×\a\83¬Å\91(b\ 5a\1f+(\â\90>\ 4\8f\11¼e\Ò\Î|q\9aN\\u8̶\ã­Y\Ò\Ý\Å\ 5    \Øý\Ëq\Ø\Zò\91³\Ç\16\é\Ï|+®\í\ÓZþ\87­5<\Ò1\'G\96\è9\Z\99±\96½½·\ì\95÷¢flpV    \Ö(\15GJ~\11ªN\rÉ\89\16¦k\8d!¦ôù\1635^¬ k³®&7#o\91§T\á+òv\É\16\9c)Ö¤,òQ\81\ etùͺi\8e$\Éb\f\'\ e\16Jð\ç\Ù÷r©\á\ìÿ\0\Öü¯m\15\Ì[»O]àµ\9fYñ>\à\8d\Ü\Ú\ 2\Õp\8f6S_N¾\83á\89´k\8d\90\14N?|MN\Þ4\18,ª^   J\97\821\84\16 \å´\éb>\Äl¾\Ä{\9bhU­\83Õ\9a\92Û­)jd\ 1vvÓ¢\97\1f¶56§\95)öBT\9d¼ø5\ 3±£5\ê\8cwõ\\\Ø&kFk\Õ\È\Ü\âBòMXV\Þ}\ e\\d\9ct\Ôl|\Ì9\âJD\Ë\ 2$\9c\\\9cy\r\16\ 4\8cq\ì6PG\ 4[\v[\ 4\88Xδ@\Ä2µ´ó.!\ÆÔ¤+\19\Ì\éö\á®\ß\Û|\v·µ\8bH%\æow>p«\Ê\n+yq\Ã\ëòý=¦\84²Æ¸\9cc?õd«\îI\80\8c¡°\È}k\ÆP\95c4xa\87\fv\ 4\11\96\86\14VZ\18a\ØBZdq\ØBZe\96[F0\86\Úi´¥\r¡8\ÂP\84\á)\Æ1\8cc\Ïo\ f3öÚ´\ 5\æ«e¤\Ú\âÃ\9c«\\+ó5{$,\88\95\1f/\ 3?\1cDT\ÄY¼\95²@gÇ\96@¤°\êTÛ¬º¶Ö\9c¥YÇ\88Ǫj\Ô\í/\×\7f)R\ìfH\1d)M\Öm\Ô\7fZW.\äö\ãk\13\ÓppA?\97Ô·\7fó`À\8e\8ek\nV~¬\n\ÚSýp\9f\1dM\81G\8aصrj\93Ku¸òe+R\Ë[\18N]Á5k4=ª?\ë÷\ÆSñ\99\bQp¼ÿ\0¸FU\94ÿ\0o\8f6~\1e\1e\1ebµ\Õ\Z/[S!)\10®¾ô\\\v\e\84\19{-\95 \\\82\92¼\ãýú8ZÐ\9cÿ\0¹BSó\9c\ç\ç>\7fÿ\Ù',6,0,'','','',''),(34,3,5,'9305bf00e7fdf2d2','15820583805bf00e7fd7909940374120','2018-11-17 12:50:07','2018-11-17 12:50:07','','','Contact Photos','3.jpg','image/jpeg',300,300,11005,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b        \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 1\ 2\ 4\ 4\ 3     \0\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b        \n\11\12\13\14\15!\16\"1A#3BQ\17\81\82\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/r9¸f3\9cDëº\9e±¾\8fð±g\ë]L\ã\Íϵ[d_\Õ\"¾þW\äñ¿\19Ķ¬\94Hx\8c\ë«x\12.¯+\'=­\91\ 2ûY©´­\97\18f0Hð\92\11\åF÷\98}`>V¹\ 2\Æø<|\Þ\r\á\íRľ\Õ\15\94\ 1vM¢¢/\ÄyÀ\8b¸\ÛZ\83\13d´\í{\Û.%\ 5F2\1c²9#\93\181\ f©\1e\\ó?\åC\9b¤\96VõÞ\8e\Â\r\å\95ùMÆ\95¼M\ãG\a\Û9À£\ eO\1d·W\9aøag\Ä,\8f\"Q\Ø\á\8cx7\Ú\æa\Ë\Ìõ\ eòù6\ä-\96§Nл\85\Þ\Ý\ãq¾\90ø\Ôz¶¡\Ø.À\ì\Û-Ì¡\80²\8b\1e¦\8e\9bn\9bic!±£\9eI\ 5\ e)\88\Ð\0¦sp1½Ø\95×\8f\ e\98ú°9J\92£h\87\Û^I\ê\×\e\\Î\89\996\1d\83\Úu\í«x\95L\è¸8®«x\êú\83\99\90\94\87úV\Ñm©Ø\82P¦bH£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8b\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)AT\É2\Þ1\12CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ø\êy\ï¶WPKúg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ek¾º\ê8­5¼ù\Îo\Æ#\àÁº$\Z\Í;\Õ\äù\9eG7\9c\æ+½\Ò,;\19\16:\Ç\1f\×<Ô¼e£¸ù\95\1dKM\ 4\82Â\85\88\9d81f\Î-\95¸cM\95\17\16Y\8cg\8b8\16\8aB¾\"=;}µò{.«\92v\0N\ë÷U²XR\8b\ËûEFKi¾Dl\80\9auW\19\18¢\91(²*ó\ï\1f\8cú(¥²§\9f\n\ e\aõ\11ò¿\Çÿ\0\88®\8bø\Û\ÔbRuÛ\86\ 3¸¼\11q°òö\Ù\n\1e\Ç\Ê;,\Èùqði\9b\\øå±\8b\f3\8f:MUd3\ e50\ç\Z\14\1c¶/Å\98Ù¢\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\88\8f©\a\bN\85\Ð\Øô멶\95óûc¼P\93ø·|\11k\ì\ë¸\ f\ e\ 6\ÙÎ\80ü\É\ 5\8f!Z\84¤n·M8\ 4­«x%\\lÀ<X0õ½®±]¯kÙ·½\9aûs\Ü\ï­v\8d³hµ\9by±lW\93OeouodwÉ\9dcc:K\Èy2¤\9c\8f!JG\ç9\Î}±\ì\Üc\18ø\1e\Ùý¿o\ëû\ãÿ\0|{\ç\1f·üñ\9c\7fó\85ø§\83\é\çô\Ï\a\7f\81¦÷{È\96\93\97j3\Ç\1eÿ\0\86zײ\Ã0Mq\e\97Á\Ü9f¦PFñG\96Ö²M6\9d#\Ùñ¢<ro\ 6Û\93\ 6µa\r\1d\156³O]¯\ëµP)(\ê\"\8a\reMdQB\81\ 2 qñ\18\"\Å\ 3\18!\r¿¾}\9a\Ü|\9d\97=\ÙË\9c\çg\ë\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"-@ù¹òa®ø¼\è\Öõ\ÌÃ\94\12ó\ e\é÷ñ\×\0\ë\8fcJK®I·\84\9ep>D<>\97U\86\Ò\ì\e\v\Å03EW\10¯­\1c©ÿ\0\8f\10\Ô\ÞòW%o¼Å¿m\9c£\Ê\e]\Æñ\È;\Õ\ÜÍ\8bl\Ú\ï\åf]­Õ¼ò|\Ï&A=\981\r\8d\Ã#Ã\85\14`\83]\ 41«\ë\ãE\83\16<qtuû\9c\ç?\×?\Û\ÛþXSDôµx:ge÷\8aÿ\0 }¨\Ó>þ\aã\9b\91\e\80ô\ëØ\99|~N\ä*Yc+÷+*ùaÀ\v¨j\92\Z?Ð\8b\97K}\9dð$L\ÄZ\á\×Q\Ûβ´\0\ 4P\ 64`\8a4hÁ\18#\Ç\0\Ø\10G\0Y\81\88!\10\ÚÑ\88B\e\8d\8dk\18\Æ\á­n\e\8cas\",=\î\9f|z¿\ã\ã\8b#s/ky\19\9cq¡M¸\1d\f\e\16R]\ìS\ì-H\17\1d°kiu\è66\Ör¾¶ü±\12¾\1c\99\8ef\\fGx\ 1\8f\ç7z\Äü[ñ\äv\9b\89ªù·°F÷\e      \13^\Ñløø¸{\È\æ¹\â\'$à\8eH\â\1fÀ¯y\f  \19\Æ^ÁD#\98\13\16bz\Ý:\82ùXdþ\96vF4/\97¶dDÛ¸\Âl¬3\ß\1fÍ\88f²¯\16]\íï\9f\87\çc\1eø\Æ>\7f¿¾6\9dÀ~¨\ï\ e\9c\ß2\9a\8eϱ²8ke´\8a\ãÉ\87\Ë\Ú6\í©k\95enq\8fÆ\97¾Ë n \Òg/\131\92Ù\83\ es\ÈF|¢\Ç<¦o\ãRܵ-ö\8e&ͤl\Ô;v½=¬|;­r\Ö\r\Íaðð\88øk&@1Áö`\'\11\1e\17?\ 5\e\9b\e\97c\v²¢\"\"\"\"\"\"\"\"\"\".2\10a\19\fb0B\13\1eB\94\8f\ 6\19s\ÈG»8k\18\Æ\ã.{Ý\9c5\8d\Æs\9c\18\ÎUFÞ¦¿!ö]\âò?¿\éZ\Æ\È\Ë>        \ê\Ñdð\ß\1cƪ³\Ì\Ú\v½\8e®IK\È[»@\èQK\Z\Îmù_ª\96)¤X\ 6<}M\93!>\11.,bb:\88¶=\â\8b\Çö\á䯻|G\Öj\ 6O\85ª[Z;då\8d®$W\È\ e£\Æz\ë\7f?a\9f!\ã8\v\1c\Öùdmf²L\7f\É<++¨ön\85&\15|\Ü6\é>!\âm\ 3\828\ÃD\á¾*\Ö\ëõ\ e9\ã]f¯P\Óuª¨\à\89_OEO\1d±¡Ã\8d\Z0\Ã\1c,k[\97¹\80\bC\82=ÿ\0PDÏ\8b1\èè\88¼G\9fz\×À=§\Ñ$q\8fcx\7f\8fù«@\93 3\v©ò&·]²S\âdr\f\Ñ\æ\ 6\971¥\Ç8A&<\98\11Á*<i\"#\ f\18\ 4\1c\12<¾zE\e§\Ómý\81ñ\8fasm[Z\ 3]\Þukn´e¥ À8\Ã|\çqf\áa\98§x\0\èÒ¦c^Ú¥Ø\9cųdxW\15\95µ\7f\ 2Àú\æ\9a\ã\\¸µ×¶\Z«*+ú+)\Ô×\94w0eU\ÜS\\U\Ê,\e:«Z\É\Â\ 4\Ú\ë*\é <9\Ðf\02¢J  c\È\10\Ê7³\1f5lw \ÞW{Á\ãsl\87\9ed½¨\Ô]g\1e\Ãb\â\1d\8eD\8d\83\8aö¶\ 4\92\nX\ÖZ¬£\àu¯\96i\19\912~ºzk  \Ò#\ÃýJLè±\9b\15Ö\88ømó¡\×?-Z1ªj\Ã\e\89»5©\ÔÇ\9f\È<\19oi\1cò\n&\84X±\ØxöqH\É;V§\Z[\9c<\ÊtpYÅ\8c\èç²\83\f¯\95\Z\ eò\91\11\11\11\11\11\11\11\11\11\11k«\Ë\'nkú9\ã׳ý\8e\96\18²¬5\1e7µ©\Õ`L\99\9a\è\Ö{®\ã\86\êz\8dc\ç·\ 4$2X^\ÛÂ\89\14\8d1\ì\9ah\Þ\Ð\ä·\ä\'RI.\\©ò¤Î\9d&D\Ù\Ód\Z\\É\92\ÌI2¥Ê\92G\ZD\992\f\98ò\ eg¼¦1^ò\14\8fs\Þ\ç9\Ù\Î\7f\9d\15\9f>\8fÿ\0\1f\8f\ë\ÇKv\Î\ã\î\95s\àr?o¬\"g]\14øò\"~\1f    \é²d3N$a\92L\98\93#\ìöò®6\90[\Â\1c\12J\85>\rm\84s>\9a)\9b/ôDDE\n\1f\81º®x\Ñ6¿!]M\Ó\7f\1f\9c¸ò\8f\16\1c\Û\Ç:\9df^^Z\Ò\êþ86\ËUI\ 1¸|\í\ëW\86\19¿¦\Æ5\Åõ@3NøÖ¿\8dE\8a\n\ÙQ{\ÏY{+\Ì\1dB\ç\ e>\ì/\ 4\í2u.I\ã{\ØwtÓ\86ù\19\81`8\ç\19&P\ßD\8d&!,µû\90\ f0\í`¶Lc<\ fû\áJ\85`\bs£\\õ\ã\13¿\Ük䣧\9c]\Ù\Î<>#\Ë\Ø*\85Q\ÈZ¹³\86X\éÜ\8dJ6AÛ¨¥\ÆpÀV\Ç\r\Èff²cA\886P°\ÉUr\'@pf\e\88\88\88\88\88\88\88\88\88\8a\">²¾r\9d\Ç~6xó\88\"·\ì\8d\ØNv\×\é,\9b\8f¯\ e\f^8\v9\14R²\ç7\ìÈ\99\1cW\8cn\Æ\1cI\81#\Ú\ì\a\19m^¨½s\808®W:ó\Ç      ð\8c\19\99®\9b\Ì|¹\ÆüW\ e\fis\ 2W!nTÚ\8cy\98\e²Ö\931Kn\Ã\á\8e\Î\Zü³\ã\9c\19W ð\'\10\ë\\\ 1\Â<GÁúu|\n­_\898\çN\ã\Ê8\15`\Äj\è\Õú\9d\f\ZP¶\14|0m\ 4\1eH0´ch\Úü5£\eq\867\Ö\Ñ\11\11\17\ 4¨±§F\91\nlpK\87,\ 6\8b.$ \8eDiQ¤\r\Â<y\0+^#\0\Â{\Ä`\95\8e\19F\ç1\í\Ës\9cf oQ\ç\8eAøóò+º\ÇÓª\9b_\Â=\8d\ 5\877q;\07²\rC\î.$\83y\ÓÀC\Ë)\8eú\r\8dØ´÷\f\98\10vj\êJ\98Ù\8dS\97-\ 3¢\98ç£\83º¬\â\ e\êò\'P6\8b\93\aY\ìþ¤[\8d\Z\ 4\É\ÙmdnL\ã\Êù\Öó\85W_òù\16÷h\Ôã¹²J\11\93\19«\ÔpI_Xa´Ã³q\11\11\11\11\11\11\11\11\11\11A/\Öÿ\0±7\1cC\Ð\ÝK\f~\1f\9eH\åÝ\8b$ùg##Y¬k5\8df[ñökÃ\97½\Øv_\9c½§v0\Öü3\97\×v\8a\96\8e\0Ô¹÷\Ì\17\v3p\16d\Â\á\Ý7}\ç*¨\8f\10\äD\97°\é «¯¦\14ø\Æ\ÆFx¬\93±þKZ\ïò¥\82,\8f\89>\9f¨\96\è¢\"\"\"(\90ú\Äú»cÌ\9e94\Þm\Öi!ʾ\ë_0\Ó\í{\r\88kA\"\è\9cy²\Ó\ÜjwUÌ\9b\87\8aX*\àZ[\Õló3\9fÉ\8a\10\Ò\È÷\8e\ÃIl\81\ÕÊ\8bcþ ¹²W^<\9ct\9b\95aG$©5\\ó©k#\10¾¯\93q\ÉN\93\ÆD\90\e8\e\83\10[\83\åHc¾Yx\ 2F5\84s\9a\Ç]²\88\88\88\88\88\88\88\88\88\88 \Ë\ë}×\82N¿ôOkll~D^b\åMxòÿ\0\9b9úg\éT\96Qcg÷\ÈÛ\8c¾¶aqí\86½þ\Ùùe\Ø\ep\Ê\èQKOÑ­­Í\9f\åKs\Ú\18\Ñ\æ·]\ê\Ç%V\Êv]\9fµ³ö-£B}~\18Ï\8e[\91º5%§\Úÿ\0\9b\\\×4-k\1f\82=ô\95\11\11\11\11jK\Ï\r\\K_\ f~BE,\".\"u»w´\8e\â1\8ep%\Ö\n<À\189~3õ\97\19\13\87ófZü°\84\1e3\ìGc4º\"Ì¿\1dzF\ÍÈ\9dô\éƧ¨V\9a\Ööge8n\ÄQ\0à´\8d®\×wºM\96öwø\ä\13\1c:º\Z\8b+C\r®q\8a\18o\14a\1eC\Ä\12^Z\88\88\88\88\88\88\88\88\88\88¢\91\ë\n\á(\1c\89\â¬|­$Y,οsO\1flµ®a\ e\ÇG.ûw\a\8d$\È#\ 5\ì3\Æ\Ä=\8cñ\È)9p\Û\"LS°y0FAU|\8a\\\9e\8d\r uþO¹\ fRx³\97\ì½c\Þm\84\7ff|F\íceÔ\84\à\ç9\Ï\Ï\ e\a\91¸kr\Ü\â;¾ynpÏ\95¢\88\88\88\88\8bH^£\1e^\Õø\8bït_²\Ø\n  9\e\8e3\Å:û^÷d²¶\r\ê\Î\rMt`\81\8c!M\83\95ø\8eG5­\14f\9f\12$\14a\e³\9aq\11I{Ò\8b\Õ}«\9f<±q§+Á\80w\é]T\×ö^U\ÛmpøÙ\87\Z\Ú÷^»\Ò4ê¹\82v\v3/³\97ska\ 4ñÀ\Ð\ne\b\87.dlÈ\8c)v\Í\"\"\"\"\"\"\"\"\"\",>\ï÷Y©;\8b\ e\Èõªù\92\7f\17\968§j\×!\1e\ 4`I´\87u\9aòM¢\97P\Ù\ 28\Åh\eh±1\bù\ 1þ\92»\ e\Ìy,ùG-\1d\en«°\è»Vͤmµr(ö­7`¹\ÕvjYy\16eS\ì:õ\8c\9a\8bª¹9\ 1\f\fȯ²\87&!²\12\94Y ]\91\91\ìövzú\92\a¥7\9aµ\9e\Zó\ fÄ\91öyL\88>^\ã~M\á\Úb\17\æÀºûa\83W±Àa¤`o\fV}z\94\92\9c\10\94\83\1c6\99²%\ 1¯¶\á\11\11\11\11@_Ö«\Ý\1d\1dn\èV»>Q7\18û\ 3;\11\Èø\81e\91F\85¯\â§c\Ôt\Ízö¹\99\11\ fú¬\é³vH\1fn%By)B\7fhó`\ 1ϯ½\15²~\97ÿ\0\17\93:\v\Ñ\àò·)\ëM§\ìgk?J\ä\rÅ\92Z\Ü\Ùk<uø¬\91\Æ\Ú9I\98\85\98u\92\7fm]9³±_³\Ý\Þb®\Î]Qã\94\92eDDDDDDDDDDET7ª³Ç¬þ¡ù\f¸\ç]R¦cxs·1\1fÈ\95³E\17\18©\×ù*&s_ºj\8c|Hm\8b\ 1\92\16\ e\ÃX\e\19ò-\î$\É\Ùg0c\83\r\8d\1c`\17»u{\99\ f\×~\Èð\'<\ 36\Ù\Ç\ fs\ f\1còD¸ôG\Ä{[\n½?m©¼¸¨\88÷J\84\'º\æª\14Ê\92Æ\93(\10\ 2ibM&\"\1c\Êô.(\ä}w\98\8f9_R\95\1ef±\É:V±¼\ÐÈ\8b(SBú­¦\9a\1d\Ì&\âPq\81\99\fÆ\88®kY\9c\18ok\98\Ç5\ÌÇ \"\"\",.\ï\çzø7\ÇgY÷þ\Ëó½\î+\è5:\Ó3]\×a4r¶=\ëo\95\86\Æ\×õ-nµò\"\æ\\\ëK3Ä\8es¼ñ\á\×F+\æN\95\1c\9dL\ fv{o\É\1d\è\í\17\9b\952\Èû_,\í\93o±G\Zd\99µ\9a­.]ô\Ñ\ê\Õ\ 4\90\Ñc\10)k\86\bù|x\95ñ\æM\Ì\Ë&WB|\Ò\ 1\98¬¦\v\97ðO²öÓ\95ôþôö_Y\9bQ\Ön&\Ø\à\ì\1ciª]×\92?ümݪ\9eÉ\95v\ 4d\914®\Ñu\é8\8fd3BpOsh8\12\996=LQFÙ¬\í\8f\1e<H\à\8b\14\ 1\8d\120E\1e4h\â`cÇ\8e\164A\0\ 2&´b\b\86Ö\8cB\eZ\Æ1­c\e\86\18\\È\88\88\88\88\88\88\88\88\88\88µ/\æ\93\Æö³\ä\ã£Ü\85\ 6®¯w(\ë\Â6óÁ\Û\1c°}§\Öy\1e®!G\b\ÑÉ\8cà¡\8fm\15婶d_iS\ê¤J«\19\18\É\ÅùSI\È\Üs¼ñ\16ùµñ\8f&k\16\Ú^ý£^N\×6½^\î?\ã\Ù\Ó\\\×\17!\93\14\ìk\9e\"³9\ÃM\16dR\9e\14ø\85\ 4\12\90\ 3\93¥+D=#~Fª{\1d\Òsô\×vا\Í\æn¤<u´\ã¶È\86\ËN\12»<\8cqð(ò(Ñ£\18:\88\à\Øk\ 6\89\1c\92¬C\16²=\8d°Å\89Ѧ\ÙK¡\11\11\17\11\8c(\â,\89\ 5\18\0\ 1¼\Ç9\9e\ 4!\13\14¤~ZÁ\8clk\9e÷½\Øk\e\8c¹\Ù\Æ1\9cª\8b½H>Sv\Ï!}\á\Ûøó]¸\9d\e­\Ý`Ù¶.6\ã\1dm\8f<8w\9b=<\Â\Ô\î»õ\Ýw\Äa\93p{xö\14T\ÒN[F¦\8b\"E,ðÀ\Ød\Å\ÄwVý}=¾%\ì| w\1e³;õ4\ìus\82\89]¼óU©#\àu»a#XBý\17\8a Î\91\9c\84\96;#\Íù\97\ 2\8f\12\×1uø¥\ 5\8chB»\85`;xõMSZ\ÑuºM;N¤­\Öõ}nº5E\15\15Daî«®\86<\ e<X±Å\8c5\8ccq\î\çgÜ\85#\9eb½\å#\Þ\îÀ\88\88\88\88\88\88\88\88\88\88\88\8a\12¾©¯\ 6ù\ç­FóȧVtù\Ö\\\á¤\Ö\Åg9qÞ«\\ùV<¡¦D+òMʾ¸Dn\'íº\94R\ZD\86\13\ïo\êG\9ah\Ñ\ï\æ\8f[¯©­\ÅgW\8d\Þöòo\8e\1e\ßq_iø\Ä\Ù)µ+/\Ñ÷­w\"û\83ºq\8dô\88 \ÝõB\ fó+ñù3«BÙ\94\Å$\ÐÅ\8d°\×TJ°\1c\Ê\àË\81*\è\î­vc\89û\85À|g\Ø\î\12\Øc\ì¼u\Ê:\Ív\ÉG,N\Ëe\Ãü\Ø\ã,\8a\8b\88E`f\Õ\\Ö\95ù\8faWe\16\15\94Bc\r\97\n1\1dõc \11\11\16¾<®sÕ\87Yüq÷7\99\è\ì\ 5[µj\1dz\å\ 3\92\v\8cû;o\93¨\ÚÆ \es\86»\àü\Î#\b\×û±\Íúó\91?\ 6úý\é\17\9b6e\94\Év62\äÏ°\9f$ógN\9a\996d¢¼ò¥Ë\94w¼ò$\È;\Þc\9c\ÏyLW¼\84{\9e\ì\ç?Ì®\ 5ô\×tâ\8f¨~)ø\14Ì«t\1dó°µ`\ì\a\9bXJ«\Ç\\o\10b\96¢\92ò)\86\13bV©@\184\"ü\812S#\Å`¤{<\7fX÷æ\88\88\88\88\88\88\88\88\88\88\88\88¸L\10\Ê £I\b¤F\90\"\ 4\à0\ØP\98%fFP\98\98A\91\8es\b7·,{3\96»\19\Æs\85U\7f«\e \Ü\1d\Ó^ò\èü\89Á §ÖªûQ«í\9c\87¸q\Õ6X\Ø\Ú\ÎñCqS\1eòý±\ 6\ì2¹\9b¹v\ 6غ\18\80!\9ad        ¶\æ$«\e[ $\8a\9aߣ\13´\Ü÷\13·Üµ\Ô&ls\í:\éy\Â{\7f/\ÊÖ§\8aL\Èz¯\"k\Û6\93O]:\86fIôT3c¯\ØmókXὶ\12k\85>\aá\95·\8e´²u\11\11hO\Ô\ÃMyy῵\80 |\81É\85[¯\\\Ï||;9\Å\1d-¸\ì¯X_\8eq\í\1c\ÕQ¥G6s\î\Ü0¹Ë±\9c*|× q=\15v\Ñ\Ê|i­\\E$ê\9d\8b\904\Ú+HB)\ 2Y\95\Öû\1dm|Ø£0^3\b\92#H(\98A\10e\e\9f\87\8d\ív0\ì_  \Ç\15U\Ô|}£\Ó\ÔB\ruef£®Â\83\ 4\ 2`\ 5\164z\98\83\18Z&c\rfZ\Ü\7f61\8f\Ýÿ\0,»9vs\9c÷DDDDDDDDDDDX\Ñ\Ù>\ãu\7f¨:U®ÿ\0\Ù\1ep\ã¾$\Ö\ê\ 67\1c»^\Ë[\ 2\Ä\å\90\ßû\94H\14\î>l\æK°+\85\Z\b\81\15Ø\91*D`5ø|\81\81\ìϬ۠\Üe(õ\9do\â\1e\\\ì\Ù\É[ Ð¶\ 2°\9c\ 2ͬ\ËcIJf\íD]£\éyó\82<°5\Ù-tV\ç9 d;\ 1n©\ß\ê»ò\é\Ü=\9d\9a\97Bú5¨Æº\15\85TKZ\í\7fOß»\1cz\81^\14\Ði\Éoc[[¥\Öj±\å\Ë\ 1\ÈûÝ\9b\ 3¥`bO)?\164S\9e6\å8\10>®^g~¹+\95v~\8fõ\9bP\ÚA\9f\Ö\ålº5&Õ¿\éQd\Æ>\ZViº\8dÅ\94yVq\ä\à\"4b\î\11²\ 1<\93#\ZQB\18\Ò|ò\Ç\Òeÿ\0i\8eY\9f\ÏþHü\89óOk9z\ã\è\rÍ\85\ 6\9bGÇ´\13\ë\"6S+\è\ã\Âu\95Ì­v\96·2_(5\9a\91õø\ 5³\91:\Ç\11#\12|\á\Ê\Èx>\90\12q\ã\ 4\8e\90<\ã%\97\9eRÞ¢ºF1\íï\87\84;&D\Ï\7f\ß\ß\"\Ã?¯\í\8c{-»ô\1f\Ä\ßD¼hB\Û\ 5\Ôn\19\1e\8fu½\Z;ö\í\ÊûgÙ·\9d\Òò40\8cPjϱmv\96r\âRÁsO&\1d=n!WG\99ai(qðk)\8f\91\11\16\Zù\10\à¹\1d\9a\9f\ 2\13ò+\ eY\ë\ç)iµekp÷\86\Þ\ÓS²mA\82Ì°\98|\80\Ù2)#5\Ì\Ë\1cv\8f\ fönr\ìQÕ°\Ð\\\ê\97÷\9a¶\Ç]&\9f`Ö®,¨/ªf3\ 3\99WsO4\ÕÖ\95Ò\99\8c»\f\93\nlc\Æ;0\ça¥\13ñ\8c\18÷]\9f\89¶H:o)ñ¦\ßfü\8a·U\ä\r7d°+FC8phö:\Û9oÀBÂ\94¹`\"\91\18\84B?8ø±\8fvp\Ü\ß\13\Ç\Ö\Ñ/ô-\"ö\ 1\87\"\ 5Ö¡­[B\90\'a\Â<K\ZhS#\18o\Æs\87\f¡3\1e\Çc9Ã\9a\ìg\ß8\Ê\íè\88\88\88\88\88\88\88\88\88¼ÿ\0\94¹W\8d¸GB\ÙyG\97w\8dk\8ex\ïM«\95u´\î[u¬Z]~\8aª\10I&\\\ë\e  o\18A\1e4q\14\å~s\9c°\"!3\8f\83\1f\9c@O\ËW«\Çm°³\Ýx+\ÆtH\ÔUP\ç\ÝkSû=±W\nt\Û\b\8a\Èú\â:cHp\18QؼƯ\Ù6(/®\Æ+óøô{=M¬[@ï_ \îg\92¾\ÆÅ£¨o,v³±ü\8b\"Fc¶\Æ\Ú^Í°È\8c\é\æ\96ö>\Îòhj5MR\ 5\85³\87\10\'\99IªR\96\10!2\16%F\8eù\Ñx\Êôuq\8e\92-k\95ü\8e\ï/\äý§è¯·\ f_¸þD\9a\8d\ e\8eÁ¯\f¯\Â\Üö\9fv\Ûn.\89&3\ZH0\ÅUCe\ 2dªûz\Ã\åªg\\+×\9e  \ë~\9f] p\1f\10ñ\×\ fi\95Qÿ\0\12\ e½Ç\9a\95.­^(ÿ\0c\8dð#*¢F|\9c\ä®\ËòIO9\\\ïl¹ùö\Æqì\88\88\88\88\88ª\89õGx¶²\èÿ\0v-û\eÇ\9aĨ\9dm\í½õ¾\ßS`\f¸Õ\9a\Ï3L\É\î¹\vPs\9a\f\b\bbm´\83\9b>dû\12\ef+G\Z\ 5|Q\æ/ª\Ý_L\8f{h»\93\ã#\8bu)6\16\12yC«±¢p_\"\â\êi\ç\Ú\Ú\17_\81\Z^¿²\92|\â~e·\ë4\13\ëeK\9c\14\9dµ\ç\9d*\Ê<\ì²Dh\88\88\88\88\88\88\88\88\8b\Æ{\ 3\ e$\ê\ç\10o<\ë\Î;\95^\8bÆ\9c{G:ûb¾´3\19\86Ç\83\14²q\n¾;\9e\Ò\Ø\ÛMÀ\1e(\15ñ½\Ï$¿\Ó\f\e\nVTµ\æ\Ó\Î\7f9ùX\å[\8dj\8e\Æ\ï\8e:\83ª\\\10<o\Ä\11¦¼\1fÄ¡­\9a÷\×\îÜ\89ô49¶¾±È£Y\8a¢NM[Hp\ÂúDù\95ð\Ï\e\14üYx ì\8f\95¾t\17\14ð¼Fk\ZM\13\81/\94¹¢þ²\\\Ý7\8ei\89\9cg\í\90(\å\88\ë»\Ù,\Ïþ\e®Å\9d\14ó\1e\á\à\Ò\á°ñ\Þ[e<nø¯\ê\7f\8c\ e\1e¬\ã\ e¿i\90\äl\8f\8b\1fø\ç\98v\Z\êóò_#[        §Ám¶\e¡\a\1d¦t\99?UEc£T@\ 1\19\ 2¾$jØ\90a\Å\Ù\Z\"\"\"\"\",[\îWO¸G½}{\ä\ e¶óö­\ ff\Ð÷Ú\92\Ãs\8c\16º\Ç_·\16[\"\9f\95\87\ eD\v\9a; Å²\81.!\ãI\f\98¢($G8\àU\ eùmð÷\Øÿ\0\13¼Ë\9dS\92`H\Üx[m°\92\Þ$\ç\Zx2q¬\ì\à\Æ$\É\ e»xo¡\80£\Ý\â@\8eYF©3\98+hq¥\ØÓ¸\99\81y_GÖ¼DùI\å\7f\14]©ª\ç=\1c\136n=Ù¢F\Ôy»\8c\878\91¢\ïz.g2W\Î8\9eqW»hÖ\8f\93X\ë\12¬1\81\8c¦°®lʶ\Û\Z\Ò%À}9\î_\0w·\835.Àõ\Ïz«Ý´}¦\ 4s\95±\ f\8c[k\96o\1e\7f3_\Ø\ë\n\ÑN¨¸®\92\ÃÃ\97\n|h²C*,\98\beF\95\18\19P\88\88\88\88\88\88\88\88¸dH\ 4P\ZT£\n4h\Â$\89\12$\10a\0\0\11¸\861\8cG4b\10\86\×<\84{\9a\Æ1®s\9d\86\ã9UJú\97<\Ê\Ýw÷²w=ná\9d\9a\Ò7Tzù±\Ùk¸\8d\18\86\89\ f\94¹*\92^kï¶\8b\ 1\81|\ê\Z+8R \ëBs\7f\ 2d\90\9aí¥¸\8a\r^\Î6\9b¼px\î\ç\8f&\9d\99\Ôú\áÁ\ÐY\ró\È;N@\ä+8¦\91¬q\86\8e\ 37õm¦\é¢$wO\98д \×õÀK\8b/`µøFtʺ [\ÞT\Ü{\Ñ~\8dð\1f\8f~¼\é}u\ë\î­\ e\8f[\Öka2öý\Ñ#\8fb\ß6A\Çk-6\íªh±\92M¶µ\97\99\12\Ü×\94\82\89\99\ 4\18r\ç<\Æ6b\"\"\"\"\"\"\"òþ_\á^%\ì\ 6\87}\Æ\1c\×\Çz\97\'ñþ\Ï_*ªûSÜ©¢]TX\×\Í\1f\Ó21\ 1(np\Û ^\â+Àñ\11\â\ÎG\97ü\1d\9c(m÷\ÏÑ\99À¼\9bou½ôO\9agõö\ÂKO9¼C\È\15\96;ÿ\0\1fÈ\94\ÈÒ\8c\èT[\19.¢\ìú\Ó\ì\ì\8a&\89\Ò\ÉsMQ\b\"\85\16¤ls¥\vS\1dsð\×\êUñ\1f¾·\98z\8b¯\ë\ey\ÞcG¿\Ðø×\96µ]\ßE\Ýb\15\91\ØI\eG\1c\îÓ´¨vN\vcEl[A\ 2\ e\Ò\04°«\åb\f\9b8\87\93\7fR<\Çù$\11¨µO!¾\'ùs\881KW_\ 3t\æN%\98\1dÞ\9a\Ú\î\14aF»³\a\16\Â-\9eɯºd\ì>lJJû\9d¶8\19\93\Â5\ÄO¤&.JòǨ\Ë\Æo\ 3Ì\8f\13\9boû\'Ä¢\99#0¡\Úo\ÝA\ìn»K:v\ 2\19\85Ym7\8f[\n\ÞC@\Â\15ͪ,\Ö5\827\ÉøÈ\89\86ú\7fYüúø\93\95\ë5~(\î?\1fÁ\Ù\ä\Ø6®³]\å([\1f\r\\\Ý\Ì\Ì\\\Í+h\ár\85>ªK`Ç\8aÜ\96\7flF5\87\ e\çC\9b\88\ÛaÕ·]7x\82\ë=\'m\Öw\n\Æ9¬}\86­}U°Acß\8c\8c\99r\ãµ\Î\Ã]\96·$\Æs\86»8\Æ}²»:\"\"\"\"\"\"\8c\9fª;\É~z3\Ð\Û\ e\1f\ãÝ\85õ\\ÿ\0\ÛV\Ûq¾ J\9b\9c\ÕlÚ\8e\85ø\8eþ>\ä*\çð®¼\86\ê\Ød\r\1dMõ)Hz}¦\ê\85\ 6\Ð\Èû\eT%EE­ý­e\r\re\85\Ý\åÝ\84*\8ajj\88Rl­m\íl¤\8a\1dueet1\Zdû     ó\f\18°¡E  dÊ\92Q\0\ 2y^\Ö\æ\à?O¿\8a*\ f\18],\×c\í5µ2û5\Îpk·¾yÚ¢E÷$s\É|É\9a\9e\83W6Id\Ím&\9dC>\1c\19\f\e«bZÞ²\Âô\ÔUs\æH\ 3\88\88\88\88\88\88\88\88\88¼Ã\96¸O\87¹\ëR\9f¡so\17h<µ¥ZG\91\12\ÃV\äMN\8f\95\Z[X\É`-m\ì)±²)c\10\Å)\98\1e\e MÀ\8d\87\8fݹ\8b\'\91ÿ\0H\ÇJ;+\16÷\7f\é´ù\1dA\æ9D|\ÆkT\àe\Ç\0\Ý;\1f¥³ð\ßÇ\9f\\iz\89Y\ 6ºLJ\ç\é\97\ÔU,°µ5\Å\ÕMÁ\84ö\Z\12\9b¸|ºú|»\aa\Æqù\1f\93:\ç{y\89\16±\r¤l\93¯8+\99j\â˧\15\85\ÝD\vH\98Ô¶\Ç    Õ\94ð,%O \81¸\ÔV\96¹\86eeu\ÅigL\ï\Âת\8b\8d»\83\7fªõ«¼\Õú\Ï\aóõÑ k\Ú7$\Õ\16Xx»\95®\Î\10\8a%l¬N,\99\ZV\Ùq`\âÀ­©\9b*mtó\æ¬\11.§YÙ\9e4\19\8b\b¢\90!\1c\ 5\19\80a°Á0^\Ò\b¢#pñ\90df\\\Â\f\8cv\1cÇ·9k\9b\9c9¹\Î3\8c®DDDDDEQOª\ 3¸w=¬ò¹Ëº\ãf8\9a\17Y+jø\17C\8d\Z\ÚL\ê\898©\Év]«b\8d^f05\166\Û\ 6\Âz»P\83&t\9ck\90$\18£\ÎY\ 6\16OúJüv\vµ=\é\99\ e\93\'\89z\8b\ 1\9b-+\8f\19¯©\Øù¢\Ó \8b¬S\15\ÒbË\838Z\ÝDÉ»\1d¥i\982\áÆ£\92#\89øg\Î\ÓtDDDDDDDDDDXs\ÞN\89õ\Ë\Èg\ 4l\1c\ 1\Ù=\1e¿l\Õ\ì\98yzý\Æ@6lº.\È\èÅ\8d\13i\ÔmÛ\86Ì©¶\8a\Òe¯tS\89²Á\î\13g\ß\ 1(iýòµ\ã\'\99üWv§b\à\ eO\89am¨Y\88\ÛG\vò\87\904\\\9d\ÇÆ\92\àDz\815\82d\'\ÞQ\1f8¨\ÛjG\90Ë«²`dH\81\n\15­_\Ý4\8f\9c\r\8b\9fk\áø\ì\íf\îK\ÎV\Ô(¤\Ì\ëÿ\0 \ì\Òòû®A\Ô\ê±ö\Ì\Ó6\v¹²1\8b}¿[\8eö¶¶A\Üû½¢¯\è9\87iq\ 3\958\ 4DDDD^s\Ì\e!´\î%\å-º1\Ý\ZF«\Ç[¾\È  ,vX\è\æ£\Öl\ì\Äf¿\19\ÆX\á>3H\×c8\Ër\ß|g\1eÊ\87\ÞBÞ¶\1eP\ß÷\8eKÛ¤\8ef\Ù\È{\86ͽló\ 47\b\1d¶\êmýÔ\91\89\Ï+\863\ÙXI+\ 6\11\Ìkðܽù\Ç\Ë6\Ùúcºi¬u/\ÅG\vl\95¤\9b#n\íDX}\90\ß\Ï7ò\ 4ñ\Úmôõð(j\87\ eA  \88L¤\Õj\é\ë28ÿ\0Dy$\8eû\12E\r\84\É\Ä4\85Q\11\11\11\11\11\11\11\11\11\11\16\93¼ôx\Í\Öü\95ô;\91´\Ú\êªÁó¯\15\ÖYrw\ 6l\æ\8e6O\ e×­\ÖN\96MH\Ö?Y\Í\Z\8bo\8dö\ÕZ\äq,$\bFq+¢\âs\ØEP§\15r_&õ\97\9bt\9eS\Ò\Ïg¥ò·\nò\ 5f\ÉT;\0\ÙUΨ\Úu\v\86\16E-ýs\r[d\È\å\91\12E&\ÍG ±_.¼\Ö4ó\9aÑ\9c\ãWst?´\14½\Ï\é\ï]û=J\Ñ\Çg1qV¡¸\Ú\Ö`ð\Ë\"\8f`³§\8ak\êi\ã\82SG\87:\ 5\9b¤\fð\98R6>2Æ\8c¦\ eFr\å²\"\"\"\"\Ö\ï\98.C\9f\Äþ/»\ÑÈ\95nö²\Õ:\ç\È6Uøûr\1f²oé¿\8d\1493Z÷\r§9\Ø\17?\f~[\82g?\17\7f\å\Í/|\e¢\83\94\87ø\ÒS$>7\"r\97\1f\è²\19\11ù\1c§\83m\Û*(\f\Ø\Ä\Ã\1f\96H\È\ì\1d\80¿\fvXLµ\ß\17{{f÷\9d\vL£\ã­\'Sе¨q Pi\Ú\íF·S\12$aD\0¡TA\ 4 \å±\Ãþ\18\ÜV\87\î/·\Ë/)\1e÷½\ïs\9e\îÚ\88\88\88\88\88\88\88\88\88\88\88\8a\9d\ fQ\7fO)ºa\å{°ún°q¿T\å\Ù0û\e®Cfd\91õ \åù\×\16\×u¦<\97»&#6\è[\1c¦¶8¢Á\84  a¬\81\19\90\85\9a×£w\991¿x¹\Ûx¿1\Î7ðGb·½{\î>[\96\16õ\ 6\9f\91X\è\9f\12¿\18\86\"_\98_\12\f&ü\æ\ÎvZð¸\ 4tµQ\11\11\11\16ª|\á\ér÷\ß\12\9dù\×kb\9am¹:\ç½Ï§\8b\1f>\Æ=\95l\1cM\ 4q\ã.`Ý\99M     \"\ç\ 6\Ï\Ö\Ü\1f/\ÎX\æ4\8cªÿ\0Á\87\1dÀ\åo-\9d\18\Ñ\ì¡Å\9d\16Ë\98±eôL\17\19²u}Of\Ú\à\Ê#~\ 4\Î3\ 6u$i\Ã+Xç\80±\Øa\ã\æ6«¥\91\11\11\11\11\11\11\11\11\11\11\11\15p>¶þ4Ö¨;9Ò¾R¯«\06\8eH\â\1eP׶[\8c\bX\95e\a\8e¶m9\Ú\ì\12\9d¬iI\Z©»\95©c\ 4®#@kI\84\1e[\89.n6I\è\90iqÒ¾\â¿-\Î\0\î\ÑR´oöý\9cVñ>­\937\19öýò\Æ<\19\Î=ó\íó\Ç\í\8f\7f\ÞkH\88\88\88\8b\e{\8dª\83v\êwdui?\1c\86Û\84¹(NkÇ\82´\99\ 6¥k,bpó\96\ã81#´Yw\ïðùüþ\ føü\1dSo¦\96\ 1¬<\ÝôO\ 2\ 1\fÈ\9b_+Ï\92\æ\r\Ädp\Å\à\ eW{Ng7\19À\87ù\19\0ZBe­û\Ê\11\ã9!\18\×\\H\88\88\88\88\88\88\88\88\88\88\88\88 \9b\81\Ök\Ý\Ã\Ý       \Ü~\9f{PòW2k?~p\Üü+\ä\êú\8d§\Ò\Ç|>Mû$\Äù\93\19\'\Åÿ\0P³\86c#˳\9a>\8d]n\rO\8c\1dò\î4 Ç\97µvGw\9dc$bh\É`j\Ú]z\90\a\90\ e1\ 3\12\0\"1\ïË\9c\Ð\Ç\10°\ì1\8dkeÂ\88\88\88\88¼·\9c¢\âw\ns\f\17e\Íl\Î-\ä\18®s}þXÄ\8dJ\Ü9\Ë}¿\7f\960ÿ\0|{c\ß\ß\Û\Û÷URúO4²mþe¸vX²6»H\ã\1ea\Ý\1cò|¿\94q5\86R\17\f\ËZ\ì\à\85\1dû\80\Ï\Û\rvKðs\9a\Ç9ض±\11\11\11\11\11\11\11\11\11\11\11\11Bc\Ö\ç[\82ô÷¥÷\1f_¾`öWj­û½¿\ËýW\8b\í¥}\7f\8f·ô\\;\Ûûý>ÿ\0\é\Â\Ï\ fH\95~!øiФ`\7f\f\Ûs\Ï<Xe\ßú\Ù\1e\ e¯\ìþ\98þ\98­À¿¿ù_\×ûbNè\88\88\88\8b«o0Eg¥n\15§ÿ\0\"\ÇV\Ø \9bÿ\0ª]L¸\äÿ\0ðLª\â=)\\\17Y¬y¤\î9iþÀSð&\95\1cqQ\r¿\Ì\16W\Ùò\È5ø\ e{\89\97\1f\8b\ fOh\ 5\îüû¶A¾ß\93ð\Ì\â\Ê\ 4DDDDDDDDDDDE\15\7fX\1e\8c\1d\8b\Ä\ìݼ\Ð\Ù!\Ü{\Í\\e:4\97`y|       ;\1eÁ\ f\\ûG\87g\ìnO\16d¸\ΠÛ\9ff\97#{\9b\82\ eÉ\9f\8b;@ð\Ã\Ö(\16\ 3{\r°\Øòfô\17=\9f\f\9a\ e\ï½\\lµ\ä\Æ?\Ô\Æ°\0Xÿ\0õ°MÊ\90z\"\"\"\"ÿ\0\ 4\18\Ì2\b£aDV8e\11\Z×\8c\83{r×\8c\8cv2×±\í\ÎZ\æ»\19k\9b\9c\ã8\Î3\9c(&úb\è#\Öù\93ó\8d\88øÀ\ÅA\Èü\91A\18Mö\Ã[\1cݧ\ä\7f\8e1\8c{þ\Ìm(\9a\ßlûc\19\Ïõ÷Â\9dª\"\"\"\"\"\"\"\"\"\"\"\"\8e\ f«\0\187\84®Æ\93-\Æ\7f\e\90:\î|g8ýÛ\97s\86\91\e\8föÏ´\8c·\ßý\9d\9c\7fu\9c\Þ\r\ê\ÃU\â\e\ÇxD!\8b2º³Å\96\86\È\Ø\Ö\äÆ´¡\ 4ì\94¹\Ãq\92\13,0\Ùów»¾\fc0ìµ\8dö\Ú\Â\"\"\"\"(tx\16\Ð\é´?8þ¡\Zj@\1e<\nþa¦\96\11\É#\Ìl\97r\å\8eY\Û,\8c\13\Ý\Ùl\8b\19F\906³\à\ 1\88\8c`\ 600Cd\Å\Ñ\11\11\11\11\11\11\11\11\11\11\11\14x½Sôv7þ\13;O\Z°\19\90x\17ü\19xq\á\Íoµu\176h¶¶§\Î^\æ·\Ú-lYR²\ß|¹ÿ\0GÀmq\1c\Æ\ç8ü,F$O\12^8\ÄG|\9c\9dðD\9c\873B§\98&ÿ\0\Ð#±\9fô­\9d\"\"\"\"\"\Ð\ç\8d\13\8a|\94yu\æIU-\8f#\9e¹²\92\1d\9f\ã`O\91G®\Ó\ÕÃ\8b\ 5\Ç\Ãq÷\88W2ö\e!\ã.\Î\18kYYkqòs\9f¾4DDDDDDDDDDDE«ÿ\03\1c\1fg\Ø\Ï\e\1d¤\áú\82²5\86\á K¯\8b0\81l¡À\94G´p\'¾+\8d\1dÒ\9b\12Ä\90\Î\à\b\Ã#ð\ÌüJ\1cc&\1eLtsE\7f\18ô\ã¬<|ð²>4þ\ e\ãj\11\ 4\7f_\Ö8°5z\áD\Ãp<ü\18\Ü\ÄÀ]\81\ã\Û\"\Æ~·5¯k\9b\8c¨DDDDEðªu\9a\Z9\×VU5\91\à\Îئ6\Â\îH~ϲ\Æc0L4\çù½\Íù7\ 5\'¶\a\867ù\Ýü«\î¢\"\"\"\"\"\"\"\"\"\"\".±¹\ê4\Û\æ¯s¨l\ 3)©¯b\â\1d\80\80ö\8c¯\ e\f#\ã\f{\ÆV·?`Y\9f|\8d\Øö\Æq\íýñôhi \ë\94t\Úõc^\Ê\Ú\Z\9a\êjö\11\Øy\19\ 6®\18`\Äk\ÞÖ±®~\0\ 1\á\Î\Ã[\87;\19\e\8c~\ØúÈ\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\8bÿ\Ù',4,0,'','','',''),(35,2,4,'9305bf00e7fdc853','12287146285bf00e7fd3b7e500413187','2018-11-17 12:50:07','2018-11-17 12:50:07','','','Contact Photos','2.jpg','image/jpeg',300,300,11005,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b      \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 1\ 2\ 4\ 4\ 3     \0\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b        \n\11\12\13\14\15!\16\"1A#3BQ\17\81\82\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/r9¸f3\9cDëº\9e±¾\8fð±g\ë]L\ã\Íϵ[d_\Õ\"¾þW\äñ¿\19Ķ¬\94Hx\8c\ë«x\12.¯+\'=­\91\ 2ûY©´­\97\18f0Hð\92\11\åF÷\98}`>V¹\ 2\Æø<|\Þ\r\á\íRľ\Õ\15\94\ 1vM¢¢/\ÄyÀ\8b¸\ÛZ\83\13d´\í{\Û.%\ 5F2\1c²9#\93\181\ f©\1e\\ó?\åC\9b¤\96VõÞ\8e\Â\r\å\95ùMÆ\95¼M\ãG\a\Û9À£\ eO\1d·W\9aøag\Ä,\8f\"Q\Ø\á\8cx7\Ú\æa\Ë\Ìõ\ eòù6\ä-\96§Nл\85\Þ\Ý\ãq¾\90ø\Ôz¶¡\Ø.À\ì\Û-Ì¡\80²\8b\1e¦\8e\9bn\9bic!±£\9eI\ 5\ e)\88\Ð\0¦sp1½Ø\95×\8f\ e\98ú°9J\92£h\87\Û^I\ê\×\e\\Î\89\996\1d\83\Úu\í«x\95L\è¸8®«x\êú\83\99\90\94\87úV\Ñm©Ø\82P¦bH£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8b\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)AT\É2\Þ1\12CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ø\êy\ï¶WPKúg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ek¾º\ê8­5¼ù\Îo\Æ#\àÁº$\Z\Í;\Õ\äù\9eG7\9c\æ+½\Ò,;\19\16:\Ç\1f\×<Ô¼e£¸ù\95\1dKM\ 4\82Â\85\88\9d81f\Î-\95¸cM\95\17\16Y\8cg\8b8\16\8aB¾\"=;}µò{.«\92v\0N\ë÷U²XR\8b\ËûEFKi¾Dl\80\9auW\19\18¢\91(²*ó\ï\1f\8cú(¥²§\9f\n\ e\aõ\11ò¿\Çÿ\0\88®\8bø\Û\ÔbRuÛ\86\ 3¸¼\11q°òö\Ù\n\1e\Ç\Ê;,\Èùqði\9b\\øå±\8b\f3\8f:MUd3\ e50\ç\Z\14\1c¶/Å\98Ù¢\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\88\8f©\a\bN\85\Ð\Øô멶\95óûc¼P\93ø·|\11k\ì\ë¸\ f\ e\ 6\ÙÎ\80ü\É\ 5\8f!Z\84¤n·M8\ 4­«x%\\lÀ<X0õ½®±]¯kÙ·½\9aûs\Ü\ï­v\8d³hµ\9by±lW\93OeouodwÉ\9dcc:K\Èy2¤\9c\8f!JG\ç9\Î}±\ì\Üc\18ø\1e\Ùý¿o\ëû\ãÿ\0|{\ç\1f·üñ\9c\7fó\85ø§\83\é\çô\Ï\a\7f\81¦÷{È\96\93\97j3\Ç\1eÿ\0\86zײ\Ã0Mq\e\97Á\Ü9f¦PFñG\96Ö²M6\9d#\Ùñ¢<ro\ 6Û\93\ 6µa\r\1d\156³O]¯\ëµP)(\ê\"\8a\reMdQB\81\ 2 qñ\18\"\Å\ 3\18!\r¿¾}\9a\Ü|\9d\97=\ÙË\9c\çg\ë\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"-@ù¹òa®ø¼\è\Öõ\ÌÃ\94\12ó\ e\é÷ñ\×\0\ë\8fcJK®I·\84\9ep>D<>\97U\86\Ò\ì\e\v\Å03EW\10¯­\1c©ÿ\0\8f\10\Ô\ÞòW%o¼Å¿m\9c£\Ê\e]\Æñ\È;\Õ\ÜÍ\8bl\Ú\ï\åf]­Õ¼ò|\Ï&A=\981\r\8d\Ã#Ã\85\14`\83]\ 41«\ë\ãE\83\16<qtuû\9c\ç?\×?\Û\ÛþXSDôµx:ge÷\8aÿ\0 }¨\Ó>þ\aã\9b\91\e\80ô\ëØ\99|~N\ä*Yc+÷+*ùaÀ\v¨j\92\Z?Ð\8b\97K}\9dð$L\ÄZ\á\×Q\Ûβ´\0\ 4P\ 64`\8a4hÁ\18#\Ç\0\Ø\10G\0Y\81\88!\10\ÚÑ\88B\e\8d\8dk\18\Æ\á­n\e\8cas\",=\î\9f|z¿\ã\ã\8b#s/ky\19\9cq¡M¸\1d\f\e\16R]\ìS\ì-H\17\1d°kiu\è66\Ör¾¶ü±\12¾\1c\99\8ef\\fGx\ 1\8f\ç7z\Äü[ñ\äv\9b\89ªù·°F÷\e      \13^\Ñløø¸{\È\æ¹\â\'$à\8eH\â\1fÀ¯y\f  \19\Æ^ÁD#\98\13\16bz\Ý:\82ùXdþ\96vF4/\97¶dDÛ¸\Âl¬3\ß\1fÍ\88f²¯\16]\íï\9f\87\çc\1eø\Æ>\7f¿¾6\9dÀ~¨\ï\ e\9c\ß2\9a\8eϱ²8ke´\8a\ãÉ\87\Ë\Ú6\í©k\95enq\8fÆ\97¾Ë n \Òg/\131\92Ù\83\ es\ÈF|¢\Ç<¦o\ãRܵ-ö\8e&ͤl\Ô;v½=¬|;­r\Ö\r\Íaðð\88øk&@1Áö`\'\11\1e\17?\ 5\e\9b\e\97c\v²¢\"\"\"\"\"\"\"\"\"\".2\10a\19\fb0B\13\1eB\94\8f\ 6\19s\ÈG»8k\18\Æ\ã.{Ý\9c5\8d\Æs\9c\18\ÎUFÞ¦¿!ö]\âò?¿\éZ\Æ\È\Ë>        \ê\Ñdð\ß\1cƪ³\Ì\Ú\v½\8e®IK\È[»@\èQK\Z\Îmù_ª\96)¤X\ 6<}M\93!>\11.,bb:\88¶=\â\8b\Çö\á䯻|G\Öj\ 6O\85ª[Z;då\8d®$W\È\ e£\Æz\ë\7f?a\9f!\ã8\v\1c\Öùdmf²L\7f\É<++¨ön\85&\15|\Ü6\é>!\âm\ 3\828\ÃD\á¾*\Ö\ëõ\ e9\ã]f¯P\Óuª¨\à\89_OEO\1d±¡Ã\8d\Z0\Ã\1c,k[\97¹\80\bC\82=ÿ\0PDÏ\8b1\èè\88¼G\9fz\×À=§\Ñ$q\8fcx\7f\8fù«@\93 3\v©ò&·]²S\âdr\f\Ñ\æ\ 6\971¥\Ç8A&<\98\11Á*<i\"#\ f\18\ 4\1c\12<¾zE\e§\Ómý\81ñ\8fasm[Z\ 3]\Þukn´e¥ À8\Ã|\çqf\áa\98§x\0\èÒ¦c^Ú¥Ø\9cųdxW\15\95µ\7f\ 2Àú\æ\9a\ã\\¸µ×¶\Z«*+ú+)\Ô×\94w0eU\ÜS\\U\Ê,\e:«Z\É\Â\ 4\Ú\ë*\é <9\Ðf\02¢J  c\È\10\Ê7³\1f5lw \ÞW{Á\ãsl\87\9ed½¨\Ô]g\1e\Ãb\â\1d\8eD\8d\83\8aö¶\ 4\92\nX\ÖZ¬£\àu¯\96i\19\912~ºzk  \Ò#\ÃýJLè±\9b\15Ö\88ømó¡\×?-Z1ªj\Ã\e\89»5©\ÔÇ\9f\È<\19oi\1cò\n&\84X±\ØxöqH\É;V§\Z[\9c<\ÊtpYÅ\8c\èç²\83\f¯\95\Z\ eò\91\11\11\11\11\11\11\11\11\11\11k«\Ë\'nkú9\ã׳ý\8e\96\18²¬5\1e7µ©\Õ`L\99\9a\è\Ö{®\ã\86\êz\8dc\ç·\ 4$2X^\ÛÂ\89\14\8d1\ì\9ah\Þ\Ð\ä·\ä\'RI.\\©ò¤Î\9d&D\Ù\Ód\Z\\É\92\ÌI2¥Ê\92G\ZD\992\f\98ò\ eg¼¦1^ò\14\8fs\Þ\ç9\Ù\Î\7f\9d\15\9f>\8fÿ\0\1f\8f\ë\ÇKv\Î\ã\î\95s\àr?o¬\"g]\14øò\"~\1f    \é²d3N$a\92L\98\93#\ìöò®6\90[\Â\1c\12J\85>\rm\84s>\9a)\9b/ôDDE\n\1f\81º®x\Ñ6¿!]M\Ó\7f\1f\9c¸ò\8f\16\1c\Û\Ç:\9df^^Z\Ò\êþ86\ËUI\ 1¸|\í\ëW\86\19¿¦\Æ5\Åõ@3NøÖ¿\8dE\8a\n\ÙQ{\ÏY{+\Ì\1dB\ç\ e>\ì/\ 4\í2u.I\ã{\ØwtÓ\86ù\19\81`8\ç\19&P\ßD\8d&!,µû\90\ f0\í`¶Lc<\ fû\áJ\85`\bs£\\õ\ã\13¿\Ük䣧\9c]\Ù\Î<>#\Ë\Ø*\85Q\ÈZ¹³\86X\éÜ\8dJ6AÛ¨¥\ÆpÀV\Ç\r\Èff²cA\886P°\ÉUr\'@pf\e\88\88\88\88\88\88\88\88\88\8a\">²¾r\9d\Ç~6xó\88\"·\ì\8d\ØNv\×\é,\9b\8f¯\ e\f^8\v9\14R²\ç7\ìÈ\99\1cW\8cn\Æ\1cI\81#\Ú\ì\a\19m^¨½s\808®W:ó\Ç      ð\8c\19\99®\9b\Ì|¹\ÆüW\ e\fis\ 2W!nTÚ\8cy\98\e²Ö\931Kn\Ã\á\8e\Î\Zü³\ã\9c\19W ð\'\10\ë\\\ 1\Â<GÁúu|\n­_\898\çN\ã\Ê8\15`\Äj\è\Õú\9d\f\ZP¶\14|0m\ 4\1eH0´ch\Úü5£\eq\867\Ö\Ñ\11\11\17\ 4¨±§F\91\nlpK\87,\ 6\8b.$ \8eDiQ¤\r\Â<y\0+^#\0\Â{\Ä`\95\8e\19F\ç1\í\Ës\9cf oQ\ç\8eAøóò+º\ÇÓª\9b_\Â=\8d\ 5\877q;\07²\rC\î.$\83y\ÓÀC\Ë)\8eú\r\8dØ´÷\f\98\10vj\êJ\98Ù\8dS\97-\ 3¢\98ç£\83º¬\â\ e\êò\'P6\8b\93\aY\ìþ¤[\8d\Z\ 4\É\ÙmdnL\ã\Êù\Öó\85W_òù\16÷h\Ôã¹²J\11\93\19«\ÔpI_Xa´Ã³q\11\11\11\11\11\11\11\11\11\11A/\Öÿ\0±7\1cC\Ð\ÝK\f~\1f\9eH\åÝ\8b$ùg##Y¬k5\8df[ñökÃ\97½\Øv_\9c½§v0\Öü3\97\×v\8a\96\8e\0Ô¹÷\Ì\17\v3p\16d\Â\á\Ý7}\ç*¨\8f\10\äD\97°\é «¯¦\14ø\Æ\ÆFx¬\93±þKZ\ïò¥\82,\8f\89>\9f¨\96\è¢\"\"\"(\90ú\Äú»cÌ\9e94\Þm\Öi!ʾ\ë_0\Ó\í{\r\88kA\"\è\9cy²\Ó\ÜjwUÌ\9b\87\8aX*\àZ[\Õló3\9fÉ\8a\10\Ò\È÷\8e\ÃIl\81\ÕÊ\8bcþ ¹²W^<\9ct\9b\95aG$©5\\ó©k#\10¾¯\93q\ÉN\93\ÆD\90\e8\e\83\10[\83\åHc¾Yx\ 2F5\84s\9a\Ç]²\88\88\88\88\88\88\88\88\88\88 \Ë\ë}×\82N¿ôOkll~D^b\åMxòÿ\0\9b9úg\éT\96Qcg÷\ÈÛ\8c¾¶aqí\86½þ\Ùùe\Ø\ep\Ê\èQKOÑ­­Í\9f\åKs\Ú\18\Ñ\æ·]\ê\Ç%V\Êv]\9fµ³ö-£B}~\18Ï\8e[\91º5%§\Úÿ\0\9b\\\×4-k\1f\82=ô\95\11\11\11\11jK\Ï\r\\K_\ f~BE,\".\"u»w´\8e\â1\8ep%\Ö\n<À\189~3õ\97\19\13\87ófZü°\84\1e3\ìGc4º\"Ì¿\1dzF\ÍÈ\9dô\éƧ¨V\9a\Ööge8n\ÄQ\0à´\8d®\×wºM\96öwø\ä\13\1c:º\Z\8b+C\r®q\8a\18o\14a\1eC\Ä\12^Z\88\88\88\88\88\88\88\88\88\88¢\91\ë\n\á(\1c\89\â¬|­$Y,οsO\1flµ®a\ e\ÇG.ûw\a\8d$\È#\ 5\ì3\Æ\Ä=\8cñ\È)9p\Û\"LS°y0FAU|\8a\\\9e\8d\r uþO¹\ fRx³\97\ì½c\Þm\84\7ff|F\íceÔ\84\à\ç9\Ï\Ï\ e\a\91¸kr\Ü\â;¾ynpÏ\95¢\88\88\88\88\8bH^£\1e^\Õø\8bït_²\Ø\n  9\e\8e3\Å:û^÷d²¶\r\ê\Î\rMt`\81\8c!M\83\95ø\8eG5­\14f\9f\12$\14a\e³\9aq\11I{Ò\8b\Õ}«\9f<±q§+Á\80w\é]T\×ö^U\ÛmpøÙ\87\Z\Ú÷^»\Ò4ê¹\82v\v3/³\97ska\ 4ñÀ\Ð\ne\b\87.dlÈ\8c)v\Í\"\"\"\"\"\"\"\"\"\",>\ï÷Y©;\8b\ e\Èõªù\92\7f\17\968§j\×!\1e\ 4`I´\87u\9aòM¢\97P\Ù\ 28\Åh\eh±1\bù\ 1þ\92»\ e\Ìy,ùG-\1d\en«°\è»Vͤmµr(ö­7`¹\ÕvjYy\16eS\ì:õ\8c\9a\8bª¹9\ 1\f\fȯ²\87&!²\12\94Y ]\91\91\ìövzú\92\a¥7\9aµ\9e\Zó\ fÄ\91öyL\88>^\ã~M\á\Úb\17\æÀºûa\83W±Àa¤`o\fV}z\94\92\9c\10\94\83\1c6\99²%\ 1¯¶\á\11\11\11\11@_Ö«\Ý\1d\1dn\èV»>Q7\18û\ 3;\11\Èø\81e\91F\85¯\â§c\Ôt\Ízö¹\99\11\ fú¬\é³vH\1fn%By)B\7fhó`\ 1ϯ½\15²~\97ÿ\0\17\93:\v\Ñ\àò·)\ëM§\ìgk?J\ä\rÅ\92Z\Ü\Ùk<uø¬\91\Æ\Ú9I\98\85\98u\92\7fm]9³±_³\Ý\Þb®\Î]Qã\94\92eDDDDDDDDDDET7ª³Ç¬þ¡ù\f¸\ç]R¦cxs·1\1fÈ\95³E\17\18©\×ù*&s_ºj\8c|Hm\8b\ 1\92\16\ e\ÃX\e\19ò-\î$\É\Ùg0c\83\r\8d\1c`\17»u{\99\ f\×~\Èð\'<\ 36\Ù\Ç\ fs\ f\1còD¸ôG\Ä{[\n½?m©¼¸¨\88÷J\84\'º\æª\14Ê\92Æ\93(\10\ 2ibM&\"\1c\Êô.(\ä}w\98\8f9_R\95\1ef±\É:V±¼\ÐÈ\8b(SBú­¦\9a\1d\Ì&\âPq\81\99\fÆ\88®kY\9c\18ok\98\Ç5\ÌÇ \"\"\",.\ï\çzø7\ÇgY÷þ\Ëó½\î+\è5:\Ó3]\×a4r¶=\ëo\95\86\Æ\×õ-nµò\"\æ\\\ëK3Ä\8es¼ñ\á\×F+\æN\95\1c\9dL\ fv{o\É\1d\è\í\17\9b\952\Èû_,\í\93o±G\Zd\99µ\9a­.]ô\Ñ\ê\Õ\ 4\90\Ñc\10)k\86\bù|x\95ñ\æM\Ì\Ë&WB|\Ò\ 1\98¬¦\v\97ðO²öÓ\95ôþôö_Y\9bQ\Ön&\Ø\à\ì\1ciª]×\92?ümݪ\9eÉ\95v\ 4d\914®\Ñu\é8\8fd3BpOsh8\12\996=LQFÙ¬\í\8f\1e<H\à\8b\14\ 1\8d\120E\1e4h\â`cÇ\8e\164A\0\ 2&´b\b\86Ö\8cB\eZ\Æ1­c\e\86\18\\È\88\88\88\88\88\88\88\88\88\88µ/\æ\93\Æö³\ä\ã£Ü\85\ 6®¯w(\ë\Â6óÁ\Û\1c°}§\Öy\1e®!G\b\ÑÉ\8cà¡\8fm\15婶d_iS\ê¤J«\19\18\É\ÅùSI\È\Üs¼ñ\16ùµñ\8f&k\16\Ú^ý£^N\×6½^\î?\ã\Ù\Ó\\\×\17!\93\14\ìk\9e\"³9\ÃM\16dR\9e\14ø\85\ 4\12\90\ 3\93¥+D=#~Fª{\1d\Òsô\×vا\Í\æn¤<u´\ã¶È\86\ËN\12»<\8cqð(ò(Ñ£\18:\88\à\Øk\ 6\89\1c\92¬C\16²=\8d°Å\89Ѧ\ÙK¡\11\11\17\11\8c(\â,\89\ 5\18\0\ 1¼\Ç9\9e\ 4!\13\14¤~ZÁ\8clk\9e÷½\Øk\e\8c¹\Ù\Æ1\9cª\8b½H>Sv\Ï!}\á\Ûøó]¸\9d\e­\Ý`Ù¶.6\ã\1dm\8f<8w\9b=<\Â\Ô\î»õ\Ýw\Äa\93p{xö\14T\ÒN[F¦\8b\"E,ðÀ\Ød\Å\ÄwVý}=¾%\ì| w\1e³;õ4\ìus\82\89]¼óU©#\àu»a#XBý\17\8a Î\91\9c\84\96;#\Íù\97\ 2\8f\12\×1uø¥\ 5\8chB»\85`;xõMSZ\ÑuºM;N¤­\Öõ}nº5E\15\15Daî«®\86<\ e<X±Å\8c5\8ccq\î\çgÜ\85#\9eb½\å#\Þ\îÀ\88\88\88\88\88\88\88\88\88\88\88\8a\12¾©¯\ 6ù\ç­FóȧVtù\Ö\\\á¤\Ö\Åg9qÞ«\\ùV<¡¦D+òMʾ¸Dn\'íº\94R\ZD\86\13\ïo\êG\9ah\Ñ\ï\æ\8f[¯©­\ÅgW\8d\Þöòo\8e\1e\ßq_iø\Ä\Ù)µ+/\Ñ÷­w\"û\83ºq\8dô\88 \ÝõB\ fó+ñù3«BÙ\94\Å$\ÐÅ\8d°\×TJ°\1c\Ê\àË\81*\è\î­vc\89û\85À|g\Ø\î\12\Øc\ì¼u\Ê:\Ív\ÉG,N\Ëe\Ãü\Ø\ã,\8a\8b\88E`f\Õ\\Ö\95ù\8faWe\16\15\94Bc\r\97\n1\1dõc \11\11\16¾<®sÕ\87Yüq÷7\99\è\ì\ 5[µj\1dz\å\ 3\92\v\8cû;o\93¨\ÚÆ \es\86»\àü\Î#\b\×û±\Íúó\91?\ 6úý\é\17\9b6e\94\Év62\äÏ°\9f$ógN\9a\996d¢¼ò¥Ë\94w¼ò$\È;\Þc\9c\ÏyLW¼\84{\9e\ì\ç?Ì®\ 5ô\×tâ\8f¨~)ø\14Ì«t\1dó°µ`\ì\a\9bXJ«\Ç\\o\10b\96¢\92ò)\86\13bV©@\184\"ü\812S#\Å`¤{<\7fX÷æ\88\88\88\88\88\88\88\88\88\88\88\88¸L\10\Ê £I\b¤F\90\"\ 4\à0\ØP\98%fFP\98\98A\91\8es\b7·,{3\96»\19\Æs\85U\7f«\e \Ü\1d\Ó^ò\èü\89Á §ÖªûQ«í\9c\87¸q\Õ6X\Ø\Ú\ÎñCqS\1eòý±\ 6\ì2¹\9b¹v\ 6غ\18\80!\9ad        ¶\æ$«\e[ $\8a\9aߣ\13´\Ü÷\13·Üµ\Ô&ls\í:\éy\Â{\7f/\ÊÖ§\8aL\Èz¯\"k\Û6\93O]:\86fIôT3c¯\ØmókXὶ\12k\85>\aá\95·\8e´²u\11\11hO\Ô\ÃMyy῵\80 |\81É\85[¯\\\Ï||;9\Å\1d-¸\ì¯X_\8eq\í\1c\ÕQ¥G6s\î\Ü0¹Ë±\9c*|× q=\15v\Ñ\Ê|i­\\E$ê\9d\8b\904\Ú+HB)\ 2Y\95\Öû\1dm|Ø£0^3\b\92#H(\98A\10e\e\9f\87\8d\ív0\ì_  \Ç\15U\Ô|}£\Ó\ÔB\ruef£®Â\83\ 4\ 2`\ 5\164z\98\83\18Z&c\rfZ\Ü\7f61\8f\Ýÿ\0,»9vs\9c÷DDDDDDDDDDDX\Ñ\Ù>\ãu\7f¨:U®ÿ\0\Ù\1ep\ã¾$\Ö\ê\ 67\1c»^\Ë[\ 2\Ä\å\90\ßû\94H\14\î>l\æK°+\85\Z\b\81\15Ø\91*D`5ø|\81\81\ìϬ۠\Üe(õ\9do\â\1e\\\ì\Ù\É[ Ð¶\ 2°\9c\ 2ͬ\ËcIJf\íD]£\éyó\82<°5\Ù-tV\ç9 d;\ 1n©\ß\ê»ò\é\Ü=\9d\9a\97Bú5¨Æº\15\85TKZ\í\7fOß»\1cz\81^\14\Ði\Éoc[[¥\Öj±\å\Ë\ 1\ÈûÝ\9b\ 3¥`bO)?\164S\9e6\å8\10>®^g~¹+\95v~\8fõ\9bP\ÚA\9f\Ö\ålº5&Õ¿\éQd\Æ>\ZViº\8dÅ\94yVq\ä\à\"4b\î\11²\ 1<\93#\ZQB\18\Ò|ò\Ç\Òeÿ\0i\8eY\9f\ÏþHü\89óOk9z\ã\è\rÍ\85\ 6\9bGÇ´\13\ë\"6S+\è\ã\Âu\95Ì­v\96·2_(5\9a\91õø\ 5³\91:\Ç\11#\12|\á\Ê\Èx>\90\12q\ã\ 4\8e\90<\ã%\97\9eRÞ¢ºF1\íï\87\84;&D\Ï\7f\ß\ß\"\Ã?¯\í\8c{-»ô\1f\Ä\ßD¼hB\Û\ 5\Ôn\19\1e\8fu½\Z;ö\í\ÊûgÙ·\9d\Òò40\8cPjϱmv\96r\âRÁsO&\1d=n!WG\99ai(qðk)\8f\91\11\16\Zù\10\à¹\1d\9a\9f\ 2\13ò+\ eY\ë\ç)iµekp÷\86\Þ\ÓS²mA\82Ì°\98|\80\Ù2)#5\Ì\Ë\1cv\8f\ fönr\ìQÕ°\Ð\\\ê\97÷\9a¶\Ç]&\9f`Ö®,¨/ªf3\ 3\99WsO4\ÕÖ\95Ò\99\8c»\f\93\nlc\Æ;0\ça¥\13ñ\8c\18÷]\9f\89¶H:o)ñ¦\ßfü\8a·U\ä\r7d°+FC8phö:\Û9oÀBÂ\94¹`\"\91\18\84B?8ø±\8fvp\Ü\ß\13\Ç\Ö\Ñ/ô-\"ö\ 1\87\"\ 5Ö¡­[B\90\'a\Â<K\ZhS#\18o\Æs\87\f¡3\1e\Çc9Ã\9a\ìg\ß8\Ê\íè\88\88\88\88\88\88\88\88\88¼ÿ\0\94¹W\8d¸GB\ÙyG\97w\8dk\8ex\ïM«\95u´\î[u¬Z]~\8aª\10I&\\\ë\e  o\18A\1e4q\14\å~s\9c°\"!3\8f\83\1f\9c@O\ËW«\Çm°³\Ýx+\ÆtH\ÔUP\ç\ÝkSû=±W\nt\Û\b\8a\Èú\â:cHp\18QؼƯ\Ù6(/®\Æ+óøô{=M¬[@ï_ \îg\92¾\ÆÅ£¨o,v³±ü\8b\"Fc¶\Æ\Ú^Í°È\8c\é\æ\96ö>\Îòhj5MR\ 5\85³\87\10\'\99IªR\96\10!2\16%F\8eù\Ñx\Êôuq\8e\92-k\95ü\8e\ï/\äý§è¯·\ f_¸þD\9a\8d\ e\8eÁ¯\f¯\Â\Üö\9fv\Ûn.\89&3\ZH0\ÅUCe\ 2dªûz\Ã\åªg\\+×\9e  \ë~\9f] p\1f\10ñ\×\ fi\95Qÿ\0\12\ e½Ç\9a\95.­^(ÿ\0c\8dð#*¢F|\9c\ä®\ËòIO9\\\ïl¹ùö\Æqì\88\88\88\88\88ª\89õGx¶²\èÿ\0v-û\eÇ\9aĨ\9dm\í½õ¾\ßS`\f¸Õ\9a\Ï3L\É\î¹\vPs\9a\f\b\bbm´\83\9b>dû\12\ef+G\Z\ 5|Q\æ/ª\Ý_L\8f{h»\93\ã#\8bu)6\16\12yC«±¢p_\"\â\êi\ç\Ú\Ú\17_\81\Z^¿²\92|\â~e·\ë4\13\ëeK\9c\14\9dµ\ç\9d*\Ê<\ì²Dh\88\88\88\88\88\88\88\88\8b\Æ{\ 3\ e$\ê\ç\10o<\ë\Î;\95^\8bÆ\9c{G:ûb¾´3\19\86Ç\83\14²q\n¾;\9e\Ò\Ø\ÛMÀ\1e(\15ñ½\Ï$¿\Ó\f\e\nVTµ\æ\Ó\Î\7f9ùX\å[\8dj\8e\Æ\ï\8e:\83ª\\\10<o\Ä\11¦¼\1fÄ¡­\9a÷\×\îÜ\89ô49¶¾±È£Y\8a¢NM[Hp\ÂúDù\95ð\Ï\e\14üYx ì\8f\95¾t\17\14ð¼Fk\ZM\13\81/\94¹¢þ²\\\Ý7\8ei\89\9cg\í\90(\å\88\ë»\Ù,\Ïþ\e®Å\9d\14ó\1e\á\à\Ò\á°ñ\Þ[e<nø¯\ê\7f\8c\ e\1e¬\ã\ e¿i\90\äl\8f\8b\1fø\ç\98v\Z\êóò_#[        §Ám¶\e¡\a\1d¦t\99?UEc£T@\ 1\19\ 2¾$jØ\90a\Å\Ù\Z\"\"\"\"\",[\îWO¸G½}{\ä\ e¶óö­\ ff\Ð÷Ú\92\Ãs\8c\16º\Ç_·\16[\"\9f\95\87\ eD\v\9a; Å²\81.!\ãI\f\98¢($G8\àU\ eùmð÷\Øÿ\0\13¼Ë\9dS\92`H\Üx[m°\92\Þ$\ç\Zx2q¬\ì\à\Æ$\É\ e»xo¡\80£\Ý\â@\8eYF©3\98+hq¥\ØÓ¸\99\81y_GÖ¼DùI\å\7f\14]©ª\ç=\1c\136n=Ù¢F\Ôy»\8c\878\91¢\ïz.g2W\Î8\9eqW»hÖ\8f\93X\ë\12¬1\81\8c¦°®lʶ\Û\Z\Ò%À}9\î_\0w·\835.Àõ\Ïz«Ý´}¦\ 4s\95±\ f\8c[k\96o\1e\7f3_\Ø\ë\n\ÑN¨¸®\92\ÃÃ\97\n|h²C*,\98\beF\95\18\19P\88\88\88\88\88\88\88\88¸dH\ 4P\ZT£\n4h\Â$\89\12$\10a\0\0\11¸\861\8cG4b\10\86\×<\84{\9a\Æ1®s\9d\86\ã9UJú\97<\Ê\Ýw÷²w=ná\9d\9a\Ò7Tzù±\Ùk¸\8d\18\86\89\ f\94¹*\92^kï¶\8b\ 1\81|\ê\Z+8R \ëBs\7f\ 2d\90\9aí¥¸\8a\r^\Î6\9b¼px\î\ç\8f&\9d\99\Ôú\áÁ\ÐY\ró\È;N@\ä+8¦\91¬q\86\8e\ 37õm¦\é¢$wO\98д \×õÀK\8b/`µøFtʺ [\ÞT\Ü{\Ñ~\8dð\1f\8f~¼\é}u\ë\î­\ e\8f[\Öka2öý\Ñ#\8fb\ß6A\Çk-6\íªh±\92M¶µ\97\99\12\Ü×\94\82\89\99\ 4\18r\ç<\Æ6b\"\"\"\"\"\"\"òþ_\á^%\ì\ 6\87}\Æ\1c\×\Çz\97\'ñþ\Ï_*ªûSÜ©¢]TX\×\Í\1f\Ó21\ 1(np\Û ^\â+Àñ\11\â\ÎG\97ü\1d\9c(m÷\ÏÑ\99À¼\9bou½ôO\9agõö\ÂKO9¼C\È\15\96;ÿ\0\1fÈ\94\ÈÒ\8c\èT[\19.¢\ìú\Ó\ì\ì\8a&\89\Ò\ÉsMQ\b\"\85\16¤ls¥\vS\1dsð\×\êUñ\1f¾·\98z\8b¯\ë\ey\ÞcG¿\Ðø×\96µ]\ßE\Ýb\15\91\ØI\eG\1c\îÓ´¨vN\vcEl[A\ 2\ e\Ò\04°«\åb\f\9b8\87\93\7fR<\Çù$\11¨µO!¾\'ùs\881KW_\ 3t\æN%\98\1dÞ\9a\Ú\î\14aF»³\a\16\Â-\9eɯºd\ì>lJJû\9d¶8\19\93\Â5\ÄO¤&.JòǨ\Ë\Æo\ 3Ì\8f\13\9boû\'Ä¢\99#0¡\Úo\ÝA\ìn»K:v\ 2\19\85Ym7\8f[\n\ÞC@\Â\15ͪ,\Ö5\827\ÉøÈ\89\86ú\7fYüúø\93\95\ë5~(\î?\1fÁ\Ù\ä\Ø6®³]\å([\1f\r\\\Ý\Ì\Ì\\\Í+h\ár\85>ªK`Ç\8aÜ\96\7flF5\87\ e\çC\9b\88\ÛaÕ·]7x\82\ë=\'m\Öw\n\Æ9¬}\86­}U°Acß\8c\8c\99r\ãµ\Î\Ã]\96·$\Æs\86»8\Æ}²»:\"\"\"\"\"\"\8c\9fª;\É~z3\Ð\Û\ e\1f\ãÝ\85õ\\ÿ\0\ÛV\Ûq¾ J\9b\9c\ÕlÚ\8e\85ø\8eþ>\ä*\çð®¼\86\ê\Ød\r\1dMõ)Hz}¦\ê\85\ 6\Ð\Èû\eT%EE­ý­e\r\re\85\Ý\åÝ\84*\8ajj\88Rl­m\íl¤\8a\1dueet1\Zdû     ó\f\18°¡E  dÊ\92Q\0\ 2y^\Ö\æ\à?O¿\8a*\ f\18],\×c\í5µ2û5\Îpk·¾yÚ¢E÷$s\É|É\9a\9e\83W6Id\Ím&\9dC>\1c\19\f\e«bZÞ²\Âô\ÔUs\æH\ 3\88\88\88\88\88\88\88\88\88¼Ã\96¸O\87¹\ëR\9f¡so\17h<µ¥ZG\91\12\ÃV\äMN\8f\95\Z[X\É`-m\ì)±²)c\10\Å)\98\1e\e MÀ\8d\87\8fݹ\8b\'\91ÿ\0H\ÇJ;+\16÷\7f\é´ù\1dA\æ9D|\ÆkT\àe\Ç\0\Ý;\1f¥³ð\ßÇ\9f\\iz\89Y\ 6ºLJ\ç\é\97\ÔU,°µ5\Å\ÕMÁ\84ö\Z\12\9b¸|ºú|»\aa\Æqù\1f\93:\ç{y\89\16±\r¤l\93¯8+\99j\â˧\15\85\ÝD\vH\98Ô¶\Ç    Õ\94ð,%O \81¸\ÔV\96¹\86eeu\ÅigL\ï\Âת\8b\8d»\83\7fªõ«¼\Õú\Ï\aóõÑ k\Ú7$\Õ\16Xx»\95®\Î\10\8a%l¬N,\99\ZV\Ùq`\âÀ­©\9b*mtó\æ¬\11.§YÙ\9e4\19\8b\b¢\90!\1c\ 5\19\80a°Á0^\Ò\b¢#pñ\90df\\\Â\f\8cv\1cÇ·9k\9b\9c9¹\Î3\8c®DDDDDEQOª\ 3¸w=¬ò¹Ëº\ãf8\9a\17Y+jø\17C\8d\Z\ÚL\ê\898©\Év]«b\8d^f05\166\Û\ 6\Âz»P\83&t\9ck\90$\18£\ÎY\ 6\16OúJüv\vµ=\é\99\ e\93\'\89z\8b\ 1\9b-+\8f\19¯©\Øù¢\Ó \8b¬S\15\ÒbË\838Z\ÝDÉ»\1d¥i\982\áÆ£\92#\89øg\Î\ÓtDDDDDDDDDDXs\ÞN\89õ\Ë\Èg\ 4l\1c\ 1\Ù=\1e¿l\Õ\ì\98yzý\Æ@6lº.\È\èÅ\8d\13i\ÔmÛ\86Ì©¶\8a\Òe¯tS\89²Á\î\13g\ß\ 1(iýòµ\ã\'\99üWv§b\à\ eO\89am¨Y\88\ÛG\vò\87\904\\\9d\ÇÆ\92\àDz\815\82d\'\ÞQ\1f8¨\ÛjG\90Ë«²`dH\81\n\15­_\Ý4\8f\9c\r\8b\9fk\áø\ì\íf\îK\ÎV\Ô(¤\Ì\ëÿ\0 \ì\Òòû®A\Ô\ê±ö\Ì\Ó6\v¹²1\8b}¿[\8eö¶¶A\Üû½¢¯\è9\87iq\ 3\958\ 4DDDD^s\Ì\e!´\î%\å-º1\Ý\ZF«\Ç[¾\È  ,vX\è\æ£\Öl\ì\Äf¿\19\ÆX\á>3H\×c8\Ër\ß|g\1eÊ\87\ÞBÞ¶\1eP\ß÷\8eKÛ¤\8ef\Ù\È{\86ͽló\ 47\b\1d¶\êmýÔ\91\89\Ï+\863\ÙXI+\ 6\11\Ìkðܽù\Ç\Ë6\Ùúcºi¬u/\ÅG\vl\95¤\9b#n\íDX}\90\ß\Ï7ò\ 4ñ\Úmôõð(j\87\ eA  \88L¤\Õj\é\ë28ÿ\0Dy$\8eû\12E\r\84\É\Ä4\85Q\11\11\11\11\11\11\11\11\11\11\16\93¼ôx\Í\Öü\95ô;\91´\Ú\êªÁó¯\15\ÖYrw\ 6l\æ\8e6O\ e×­\ÖN\96MH\Ö?Y\Í\Z\8bo\8dö\ÕZ\äq,$\bFq+¢\âs\ØEP§\15r_&õ\97\9bt\9eS\Ò\Ïg¥ò·\nò\ 5f\ÉT;\0\ÙUΨ\Úu\v\86\16E-ýs\r[d\È\å\91\12E&\ÍG ±_.¼\Ö4ó\9aÑ\9c\ãWst?´\14½\Ï\é\ï]û=J\Ñ\Çg1qV¡¸\Ú\Ö`ð\Ë\"\8f`³§\8ak\êi\ã\82SG\87:\ 5\9b¤\fð\98R6>2Æ\8c¦\ eFr\å²\"\"\"\"\Ö\ï\98.C\9f\Äþ/»\ÑÈ\95nö²\Õ:\ç\È6Uøûr\1f²oé¿\8d\1493Z÷\r§9\Ø\17?\f~[\82g?\17\7f\å\Í/|\e¢\83\94\87ø\ÒS$>7\"r\97\1f\è²\19\11ù\1c§\83m\Û*(\f\Ø\Ä\Ã\1f\96H\È\ì\1d\80¿\fvXLµ\ß\17{{f÷\9d\vL£\ã­\'Sе¨q Pi\Ú\íF·S\12$aD\0¡TA\ 4 \å±\Ãþ\18\ÜV\87\î/·\Ë/)\1e÷½\ïs\9e\îÚ\88\88\88\88\88\88\88\88\88\88\88\8a\9d\ fQ\7fO)ºa\å{°ún°q¿T\å\Ù0û\e®Cfd\91õ \åù\×\16\×u¦<\97»&#6\è[\1c¦¶8¢Á\84  a¬\81\19\90\85\9a×£w\991¿x¹\Ûx¿1\Î7ðGb·½{\î>[\96\16õ\ 6\9f\91X\è\9f\12¿\18\86\"_\98_\12\f&ü\æ\ÎvZð¸\ 4tµQ\11\11\11\16ª|\á\ér÷\ß\12\9dù\×kb\9am¹:\ç½Ï§\8b\1f>\Æ=\95l\1cM\ 4q\ã.`Ý\99M     \"\ç\ 6\Ï\Ö\Ü\1f/\ÎX\æ4\8cªÿ\0Á\87\1dÀ\åo-\9d\18\Ñ\ì¡Å\9d\16Ë\98±eôL\17\19²u}Of\Ú\à\Ê#~\ 4\Î3\ 6u$i\Ã+Xç\80±\Øa\ã\æ6«¥\91\11\11\11\11\11\11\11\11\11\11\11\15p>¶þ4Ö¨;9Ò¾R¯«\06\8eH\â\1eP׶[\8c\bX\95e\a\8e¶m9\Ú\ì\12\9d¬iI\Z©»\95©c\ 4®#@kI\84\1e[\89.n6I\è\90iqÒ¾\â¿-\Î\0\î\ÑR´oöý\9cVñ>­\937\19öýò\Æ<\19\Î=ó\íó\Ç\í\8f\7f\ÞkH\88\88\88\8b\e{\8dª\83v\êwdui?\1c\86Û\84¹(NkÇ\82´\99\ 6¥k,bpó\96\ã81#´Yw\ïðùüþ\ føü\1dSo¦\96\ 1¬<\ÝôO\ 2\ 1\fÈ\9b_+Ï\92\æ\r\Ädp\Å\à\ eW{Ng7\19À\87ù\19\0ZBe­û\Ê\11\ã9!\18\×\\H\88\88\88\88\88\88\88\88\88\88\88\88 \9b\81\Ök\Ý\Ã\Ý       \Ü~\9f{PòW2k?~p\Üü+\ä\êú\8d§\Ò\Ç|>Mû$\Äù\93\19\'\Åÿ\0P³\86c#˳\9a>\8d]n\rO\8c\1dò\î4 Ç\97µvGw\9dc$bh\É`j\Ú]z\90\a\90\ e1\ 3\12\0\"1\ïË\9c\Ð\Ç\10°\ì1\8dkeÂ\88\88\88\88¼·\9c¢\âw\ns\f\17e\Íl\Î-\ä\18®s}þXÄ\8dJ\Ü9\Ë}¿\7f\960ÿ\0|{c\ß\ß\Û\Û÷URúO4²mþe¸vX²6»H\ã\1ea\Ý\1cò|¿\94q5\86R\17\f\ËZ\ì\à\85\1dû\80\Ï\Û\rvKðs\9a\Ç9ض±\11\11\11\11\11\11\11\11\11\11\11\11Bc\Ö\ç[\82ô÷¥÷\1f_¾`öWj­û½¿\ËýW\8b\í¥}\7f\8f·ô\\;\Ûûý>ÿ\0\é\Â\Ï\ fH\95~!øiФ`\7f\f\Ûs\Ï<Xe\ßú\Ù\1e\ e¯\ìþ\98þ\98­À¿¿ù_\×ûbNè\88\88\88\8b«o0Eg¥n\15§ÿ\0\"\ÇV\Ø \9bÿ\0ª]L¸\äÿ\0ðLª\â=)\\\17Y¬y¤\î9iþÀSð&\95\1cqQ\r¿\Ì\16W\Ùò\È5ø\ e{\89\97\1f\8b\ fOh\ 5\îüû¶A¾ß\93ð\Ì\â\Ê\ 4DDDDDDDDDDDE\15\7fX\1e\8c\1d\8b\Ä\ìݼ\Ð\Ù!\Ü{\Í\\e:4\97`y|       ;\1eÁ\ f\\ûG\87g\ìnO\16d¸\ΠÛ\9ff\97#{\9b\82\ eÉ\9f\8b;@ð\Ã\Ö(\16\ 3{\r°\Øòfô\17=\9f\f\9a\ e\ï½\\lµ\ä\Æ?\Ô\Æ°\0Xÿ\0õ°MÊ\90z\"\"\"\"ÿ\0\ 4\18\Ì2\b£aDV8e\11\Z×\8c\83{r×\8c\8cv2×±\í\ÎZ\æ»\19k\9b\9c\ã8\Î3\9c(&úb\è#\Öù\93ó\8d\88øÀ\ÅA\Èü\91A\18Mö\Ã[\1cݧ\ä\7f\8e1\8c{þ\Ìm(\9a\ßlûc\19\Ïõ÷Â\9dª\"\"\"\"\"\"\"\"\"\"\"\"\8e\ f«\0\187\84®Æ\93-\Æ\7f\e\90:\î|g8ýÛ\97s\86\91\e\8föÏ´\8c·\ßý\9d\9c\7fu\9c\Þ\r\ê\ÃU\â\e\ÇxD!\8b2º³Å\96\86\È\Ø\Ö\äÆ´¡\ 4ì\94¹\Ãq\92\13,0\Ùów»¾\fc0ìµ\8dö\Ú\Â\"\"\"\"(tx\16\Ð\é´?8þ¡\Zj@\1e<\nþa¦\96\11\É#\Ìl\97r\å\8eY\Û,\8c\13\Ý\Ùl\8b\19F\906³\à\ 1\88\8c`\ 600Cd\Å\Ñ\11\11\11\11\11\11\11\11\11\11\11\14x½Sôv7þ\13;O\Z°\19\90x\17ü\19xq\á\Íoµu\176h¶¶§\Î^\æ·\Ú-lYR²\ß|¹ÿ\0GÀmq\1c\Æ\ç8ü,F$O\12^8\ÄG|\9c\9dðD\9c\873B§\98&ÿ\0\Ð#±\9fô­\9d\"\"\"\"\"\Ð\ç\8d\13\8a|\94yu\æIU-\8f#\9e¹²\92\1d\9f\ã`O\91G®\Ó\ÕÃ\8b\ 5\Ç\Ãq÷\88W2ö\e!\ã.\Î\18kYYkqòs\9f¾4DDDDDDDDDDDE«ÿ\03\1c\1fg\Ø\Ï\e\1d¤\áú\82²5\86\á K¯\8b0\81l¡À\94G´p\'¾+\8d\1dÒ\9b\12Ä\90\Î\à\b\Ã#ð\ÌüJ\1cc&\1eLtsE\7f\18ô\ã¬<|ð²>4þ\ e\ãj\11\ 4\7f_\Ö8°5z\áD\Ãp<ü\18\Ü\ÄÀ]\81\ã\Û\"\Æ~·5¯k\9b\8c¨DDDDEðªu\9a\Z9\×VU5\91\à\Îئ6\Â\îH~ϲ\Æc0L4\çù½\Íù7\ 5\'¶\a\867ù\Ýü«\î¢\"\"\"\"\"\"\"\"\"\"\".±¹\ê4\Û\æ¯s¨l\ 3)©¯b\â\1d\80\80ö\8c¯\ e\f#\ã\f{\ÆV·?`Y\9f|\8d\Øö\Æq\íýñôhi \ë\94t\Úõc^\Ê\Ú\Z\9a\êjö\11\Øy\19\ 6®\18`\Äk\ÞÖ±®~\0\ 1\á\Î\Ã[\87;\19\e\8c~\ØúÈ\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\8bÿ\Ù',4,0,'','','',''),(36,3,5,'9305bf00e7fdf2d2','15820583805bf00e7fd7909940374120','2018-11-17 12:50:07','2018-11-17 12:50:07','','','Contact Photos','3.jpg','image/jpeg',80,80,2355,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v      \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0+\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 2\ 1\ 5\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b \n\11\12\13\14\16!#\"\15\17\18BCÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91ù\ãõ1VüwZfº\9b\bJ®\Ø\í¨!¶\9d\85m³e\ÙMg Ü\91\13\ 4\a\14|\\qb½tÙ\99\11ö$\15[Q\àÁ\Õ\Û|\'¬\8fJ\18¢+\18\Å_\8aÎ\9fy®ód\à]±î§\91~\Ü\èN\9e\ÊM>et-e°¦µM§s¨2T9¸\Õ4ZO\ë4\Z] W\9a~?;\ 6J³&\Ñ&\ eðu\êôç´\84´f÷}v\ë\Õ+¬\9a\Ö3V\Ð\ì;j\Ó\v\1c\ç\ä*stn]\9d¼.\87\98±\Ç\19\â      ¶\í;E¦\\V\1eÀ\Èu0°\ÏEW\ 3}o¹\e\f\16H{\v÷^8\ã\8e9\13{\á\Ù\ 4õ\ 3¦\1d¢\ìòE\1có´v\8eØ»\ e\n4\Ì+\"J\Ú`kg¿R\88+\b\ÊUøò\Öl\Äƽ\9c)\1eÍ\94¬üÑ\8c|±Po\8bÞ©\Û<°yCÓº\7fhX\',\98\Ý;Jõ»\13t0\×U?-M\85̦\É\ÛR\84JcûX\9e·\8e\19ðqòXJ¿\1e\Ãc\8f#-ýh\Êqt\15F£X U+TjL\ 4MV\9dN\81\89«\Õ+0A1\e        ^®À\80\Ä\\4,Lx\Èlp£c#\Å\1c0\85a\bi\81\Ùm´\'      N1\È9\äo\Æö\87òa¢¤t\Æ\è2\ëX\90\10Igµ\î\Æ\×Ö¹\êå\92\81d\91dl72\88ø\é! m\Ñß\92\ 4z\äk6\à%b\ f`ofS\1f \91dÄ­\v\ 4òe\é\ç\ïýã­\97m©rÙ\9aÿ\0Ll@\ë{?D[\ìÓ³Ú«h\ëb\10\f\94E¯]\ae|õ\ë\é;e\1eB.\ÉO³W\90\ 1 <T|}\98Ixñ$ \9fµ\ßLm\9a^û\Ô:»xk\89\ 5J\ëýÁ¯©\Û6\95\"\â\12Ó¦U¯5øû,\13ï²\87\1dK\ 4®6H\7f\1f\ e/,?ö3\95+(\Îy\é|q\Ç1\8b\8bVØ·7\8a.þkÚ\90\84H\Ù$úͲ&a\ãDK\8e\17(e.+7tE\ 6\ÓY\Â\Þ.M5\Õ\0+\18÷\Ã\ä\10\ÛJJ\92¼§: ú3^\89k\Ë\15ý\a­´\1eGLv\ã0iul\'\í9;3H\10Sc¥\Ì\áÕ\95\88¦\ fu)\1f\Ý\Ì\bÑ«^>\949\9cZM\Ç*\9aõx\Ï\Ó.\1ed% ¨\r1!h¬u\çGS6\18ñ\ 3¥óJ\Ø\Å9j°Ç\86B\ 4Ã\8f\e\1d£_\86\84e9+\r 0p\8f\èm<±\Ç\ÅÆ\8b¸õ\9f\Ç?Jt>\Äl\91\ï\ÚÏ­ú²½u\8f1y[ð¶¼UÁ:Á^R³\84ÿ\0\85rT \99Ƕ>,G6\9c\7f\18\äô\ã\8e9\Äû\f\92\Ë\Ã\10\Óo\8eCN0û\ f!.²ó.£-ºÓ­/\nC\8d¸\85)\ e!i\ÊV\9c\å*\Æq\9cã\95\88w\e«{\e\ÓC\æ\83J÷g]U%,}$¼\ìû\1c\19p\88þ°õ\Õ\äI\18\8d¿×\89\ 5¼\ç\Ð5¾\93W°È\9b¯\17$òD°E\81W\9aI.\1d\17f\16\"\Ê\íA¶µ\ÞúÕºÿ\0t\êKDu\×Y\í\Z\9c\8dj\8aR\Ô\f\ån\Â\v2\11\874\87\90\ 3¸±\ÞJ        \f¦\990\12\90ðf0ÁL<\Ò#·\91N\Ò\11Ò\8e\8dv\93µ@F\v37¤ô\í²\ßW\89\90\8d\92¹¤LEÒ\82\95C\ e2ú¢I¶H\Ã5)\86]i\ïôõ\13õ8\87>*Æ\8cÞ\96~\86\ f\äc´ý\8aò½\ÝB\Ë\Ý\16m]·cÈ¢~Ú\94\98\r£²v\ 4bù?±§\85N\Z  \Ü\ë\b¢\ê\îS \106a\0\94²\0p\82\ 5ú|;\19±£\8e8\ç\82ös³:S§\9a7`ö3°·x\í\7fª5¤2\æ,\93\çü\9dy\Õ)\Ä\r\e               \1c\×\ÈÉ»$ü\93\ÃDW £\ÛtùiR\Æ\ffÔ·=ñ\80\1e¯ö\ f\Êÿ\0\9aB\7f\Þ\Ýmg/Å\87\8d\83\Ï{\Z\Ö\Å\13Pª^û§\ÙZ\ë\ 4¬|\Ø!¥¯±v\Z&¨©I´\Þ^\n\Ñ\15X<\81\8b÷\12\0«üf\\\9f\17\9e,zq°+u\8a\çc©\97.\å\â¦A²\112\1d\Ê\Ú;\ 3±\è\ZjI\94\r#;\1d\93òz\æµ,`ͤg\1e§R«\8c2/\ÈQ\ 6\1ce­¥N\8a-\12\93«éµ\8du­\êUº\15\ 6\95\v\1f[¨R\éð±õÚ½b¿\14:\ 5\8d\85\81\82\89\1cXبÀFm\f\8a\10C2;-§      B1\8ex÷o:\áV\íÿ\0Ww\çW®\86?\19[\ÞÚª\å­N\99\15\9c\10\\\ 3\ÖXbA\8c±\86:\9ce\ 4\19]\95X3\82\ eã­¶ù1\í4\â°\ÚÕ\9eiõ\é\Ø\ØV\7f\ e[\ë²>$<\89E\8f¡-{?j1µºÇ¶lù\\V\9eÞ\93       \82\8e¥Y\"\é\e\ZQ `e?d\85¯\Òfi\ 3¬\96MzC6*\8c\Ð\Ð÷6\ 2¯\19¼\82T\95§\nJ°¤«\18RT\9c\ã)V3\8f|g\19Ǿ3\8c\ãù\Æqüg\1cù\ã\8ej\'å²\995\åO\Í?I¼II\99(\8e©\è\rn÷w»s\11\ZQ\ 13q\Â$L\87¬\Ö%r\87\ZS\8c¨4\×j\0\16\e\88*8}\Íe\92\1f92(w\ 6\Ûf\12\12\1eµ\r\13\\®\ÅGAW\à#\0\85\83\84\87\b\98xx±Z\ 62*.86\Ù\10\b\èð\98d@\83\15¦\87\14f[a\96\Ð\Ú\12\9c}\9f\1c\17m}BÙ\90n\Ö6=\"¡°+o¯\í~½v­CZ\à\Þs\r¸\Ö\1cv&t#Àqxi\×[ù¬|«\ëq\Ä{üV¬f\vvGÆ\8e\95\ÜÕ\8f\96\9e²\ì^\97n(\bvÀ\×;¯©¶\é\Í?+S\"=)r\14[\r\12£%\ f®¶u<r\18\15©\Z]\î¹+\1elSK\8f\0¨gT\É\ÃD\1f\12\1dü\ìF\Í\Úý\9fñ½\ßÖ«\ßó·¤\86B\91/°j\91­\ÂU»)£¬©\13ô½\ã\ 5\b;#\89\13$Xò0\ eZÀ\0Hø\Ö\×i¯:,ti\ïMCC\ç[\8e`?¬\9a\Ôq=C~P6S­ºQ\8eô³¤\0\bZþYDPv\Çn@\19\16׿ø\á\12\ 4j\ 1d}±ÿ\0«/\ç\1f÷\Ç3\á\Ç\1cq\Ç0+!¬Ç\8dõ/\Ö6TRp\12\ìþ\e-\Â\Ú\12\14\Úf\v®v\æ¥\17\ZIªK©m÷\Ç\ 6T\11\9bZ\99S©`\11\91\95å¶\9b\Ãy\ê\ã\90;V\ëô\Ây \îfÁLr\19E\çª}\f\8fÄ\9aXRrau]\87Þ±M\19oýIC®\88!°\Ê[xuÕ²\Ë\ÃeXm.·\85O\1e8\ã\8e9\ 3e\è\é_\93\ 6\ÈTB³\96:\1f·iM\Ïa¼ü\11ù\1d\81\Òs\8eD­\Ü\7f\18S\98a\ 66\Úñ\î¬!\Õ7\ïñw\Úyq\Î\ 4\8a2    x\Ä\ e\ÂK!\91\Æ|¤´\ÚI|q\16K\82°óøN\1cq\91\9c\aij\Ê\19YD)´¥O9\95sñ\Ç\1cqζC\15E¶~Gg\'43¡¶^[NH@¯º\Ë\Ï\ e\87}¾ie×\87a\Ç\e\Æ~+[-)X\ÎP\9c\ã³\Ïÿ\Ù',5,0,'','','',''),(37,3,5,'9305bf00e7fdf2d2','15820583805bf00e7fd7909940374120','2018-11-17 12:50:07','2018-11-17 12:50:07','','','Contact Photos','3.jpg','image/jpeg',48,48,1489,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0   \11\12\n\13\16\"\151\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿ø\17t\8f,\ëiý\Çh\8c\98Nq\87\ã%\å\â\Ò\15,\19\10?¾e\ã³grF        ,¼¹Á#\90Ú\95\8a\ÉH±\ÈÛªpVYZm\9f_HL\80Ù¤\Ónj®ª\Ñ\0·r¯¨3_\Ä\ì\16\9aú\r\Â0\97\16\Ütô\8a\ZÃ\89m\×\e!.²Þ«\Ã\ÃÈ\8fù\ fv.À\â?T\9d\13µ5<\99\90\e\9aÎ\96¦\Ú#\9fpI:\99»VU5\Ùk<I\8d|<\f\Ü%aS\ÆÁ\1eÂ\90ø\13\98Ã\8d¼\ÃkLöüN=vPt\1f\bW{v\Õ\ 4\f\ßGö\1elvW®²\ã4}\86«¨Âµ\É\ÃV*±2\Ä~\â\86\1e\Þ\ì\17óû#\Ì:Ó³\ 4J\Ã\r\'\923\ 2\1e[dÿ\0 »\'°\ÞR\çÒ½\84ð·RZi¡sÓµ¢w?9\ÎÔ¨·\1dgt¡\ÊØ£«\Ä[@\1eZ¸\í\84Ih3¦Az\Î&f\9d\fº\Æ\ f\92\8dr\fø\959!@½Ew\ã~\Ìx\'Ju\89UÀ\ê\16\ÛX³U}\91Y\8dy\ç\âb¶5\ZX\8aÝ­P\8b\'\ä¦à¥\8d\r3Ð\82\96\ 5\83\15* D\96k\ã¬\Ç\ég\87\92\×\Ü÷\v\Ê{\16õ\É\Ñ\1c\ËUX­\ìy\88\10\9f\81C#gk©\16-\958r\8b\Ï\ÊB\Z\ÌTs\95bNs\nh&&\Ü)䩦V\9c¦\7f\8d\ fJC\í\ fZ\Ô\ e\88MC¢xbR\É\Î[óWM°¸\ë5FR¿m²»P8Ø¢s\83\e\12\91\85p\97\ZCY±\ÃXÀk\í\800¥r¿É\9f¦-\Âó\96¡õ\9b¥`\139\Ð>\Ðö\1c.\8f«\9e\1e\16¡I\8c¹\Ò      ·LÉ»ôyܪaù\bºò\7fP\Î\à8R\ì\92ÿ\0t\17\18\v%W\9fYü/OõÁ\ÅZO\91©ò\ê²ÿ\0\Ç\10D\93o·-\85\vü\Ãa\Ù\ä ±^¬\8c\bµ-À£\ä,R\ 6\18\a\\u\à!Y\8e      \ç\9etuº·\Ç\ÎU¼÷5\ f\9dt\Þ\Ï\ÞûB[\10\9a÷Q\Ñ\ì\9b\ 2\ß\'ôS®\ f\aY\8b\"P\Ä\n\Â>VQ\Å |        \1e#xË¥\9cø\ã4\9c¸\êq\99m\ÇZ³¥»\8a\n\13±û\96\ã°5\å#g\8e\9eøW]Û¦µý\ fZjy¤bN\8f-\Ðr53c-{{o\Ù+\ïD\Ì\Ø\à¬\13¬P*\8e\94ü#T\9c\e\93\12-L\×\ZCM\éò,fj½Y@\×g\\LnF\ß#N©\ÂW\ä\í\92-8S­HY\ä£\ 2\1c\éó\9bt\Ó\1cI\92\18N\1c,\95\áϳ\î\åS¿\Ú\a­ù^\Ú+\98w~\9e¼Ak>³\âmÁ\e¹´\ 5ª\á\1cl®¾\9e}\a\13h\×\e (\9c\7f\9cMN\Þ4\18,ª^     J\97\811\84\18(\æ2\éb>\Ä\ì¾\Ä{\9b(U­\83Õ\9a\92Û­)jd\ 1vvÓ¢\94\ 6\Ø\ÔÚ\9eT§\Ù\ 5Rw\ 3\à\Ô\ eÆ\8cת1\Ï\Ú\æÁ3Z³^®F\ç\12\17\92ªÂ¶ó\èr\ã$㦣c\æa\Ï\12R&X\11$\â\ä\ã\Èh°$c\8f\828\"\ØZ\Ø$B\Æu¢\ 6!\95­§\99q\ e6¥!X\ÎgO·\rvþ\Û\à]½¬ZA/3{¹ó\85^PQ[Ë\8e\1f_\97\é\í4%\965\Ä\ã\19ÿ\0«%_rL\ 3\95\9ce\r\86C\ë^2\84«\19£\Ã\f8c° \8c´0¢²\Ð\Ã\ e\12\Ó#\8e\12\Ó,²\Ú1\846\ÓM¥(m \Æ\12\84\'  N1\8cc\1e{xy\9f¶Õ /5[-&\×\16\1c\åZ\á_\99«\Ù!dGl¨ùx\19ø\â\"¦\"\Î\15ä­\92\ 3><²\ 5%\87R¦\ÝeÕ¶´\å*\Î<F=SV§i~»ùJ\97c2@\éJn³n£û¥r\îOn6±=7\a\ 4\13ù}Kwÿ\06\f\b\èæ°¥g\êÀ­¥?\×   ñ\Ô\Ø\14\8bW\"©4·[\8f&Rµ,µ±\84\å\Ì\13V³CÚ£þ0¼e?\19\90\85\17\vù\Ç\Î\11\95e?\Û\ãÍ\9f\87\87\87\98­uF\8b\Ö\Ô\ÈJD+¯½\17\ 2\Ñl\86\á9\Æ^\ËeH\17 ¤¯8ÿ\0\7fG\vZ\13\9f÷\94%?9\Î~s\çÿ\Ù',6,0,'','','',''),(38,2,4,'9305bf00e7fdc853','12287146285bf00e7fd3b7e500413187','2018-11-17 12:50:07','2018-11-17 12:50:07','','','Contact Photos','2.jpg','image/jpeg',80,80,2355,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v     \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0+\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 2\ 1\ 5\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b \n\11\12\13\14\16!#\"\15\17\18BCÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91ù\ãõ1VüwZfº\9b\bJ®\Ø\í¨!¶\9d\85m³e\ÙMg Ü\91\13\ 4\a\14|\\qb½tÙ\99\11ö$\15[Q\àÁ\Õ\Û|\'¬\8fJ\18¢+\18\Å_\8aÎ\9fy®ód\à]±î§\91~\Ü\èN\9e\ÊM>et-e°¦µM§s¨2T9¸\Õ4ZO\ë4\Z] W\9a~?;\ 6J³&\Ñ&\ eðu\êôç´\84´f÷}v\ë\Õ+¬\9a\Ö3V\Ð\ì;j\Ó\v\1c\ç\ä*stn]\9d¼.\87\98±\Ç\19\â      ¶\í;E¦\\V\1eÀ\Èu0°\ÏEW\ 3}o¹\e\f\16H{\v÷^8\ã\8e9\13{\á\Ù\ 4õ\ 3¦\1d¢\ìòE\1có´v\8eØ»\ e\n4\Ì+\"J\Ú`kg¿R\88+\b\ÊUøò\Öl\Äƽ\9c)\1eÍ\94¬üÑ\8c|±Po\8bÞ©\Û<°yCÓº\7fhX\',\98\Ý;Jõ»\13t0\×U?-M\85̦\É\ÛR\84JcûX\9e·\8e\19ðqòXJ¿\1e\Ãc\8f#-ýh\Êqt\15F£X U+TjL\ 4MV\9dN\81\89«\Õ+0A1\e        ^®À\80\Ä\\4,Lx\Èlp£c#\Å\1c0\85a\bi\81\Ùm´\'      N1\È9\äo\Æö\87òa¢¤t\Æ\è2\ëX\90\10Igµ\î\Æ\×Ö¹\êå\92\81d\91dl72\88ø\é! m\Ñß\92\ 4z\äk6\à%b\ f`ofS\1f \91dÄ­\v\ 4òe\é\ç\ïýã­\97m©rÙ\9aÿ\0Ll@\ë{?D[\ìÓ³Ú«h\ëb\10\f\94E¯]\ae|õ\ë\é;e\1eB.\ÉO³W\90\ 1 <T|}\98Ixñ$ \9fµ\ßLm\9a^û\Ô:»xk\89\ 5J\ëýÁ¯©\Û6\95\"\â\12Ó¦U¯5øû,\13ï²\87\1dK\ 4®6H\7f\1f\ e/,?ö3\95+(\Îy\é|q\Ç1\8b\8bVØ·7\8a.þkÚ\90\84H\Ù$úͲ&a\ãDK\8e\17(e.+7tE\ 6\ÓY\Â\Þ.M5\Õ\0+\18÷\Ã\ä\10\ÛJJ\92¼§: ú3^\89k\Ë\15ý\a­´\1eGLv\ã0iul\'\í9;3H\10Sc¥\Ì\áÕ\95\88¦\ fu)\1f\Ý\Ì\bÑ«^>\949\9cZM\Ç*\9aõx\Ï\Ó.\1ed% ¨\r1!h¬u\çGS6\18ñ\ 3¥óJ\Ø\Å9j°Ç\86B\ 4Ã\8f\e\1d£_\86\84e9+\r 0p\8f\èm<±\Ç\ÅÆ\8b¸õ\9f\Ç?Jt>\Äl\91\ï\ÚÏ­ú²½u\8f1y[ð¶¼UÁ:Á^R³\84ÿ\0\85rT \99Ƕ>,G6\9c\7f\18\äô\ã\8e9\Äû\f\92\Ë\Ã\10\Óo\8eCN0û\ f!.²ó.£-ºÓ­/\nC\8d¸\85)\ e!i\ÊV\9c\å*\Æq\9cã\95\88w\e«{\e\ÓC\æ\83J÷g]U%,}$¼\ìû\1c\19p\88þ°õ\Õ\äI\18\8d¿×\89\ 5¼\ç\Ð5¾\93W°È\9b¯\17$òD°E\81W\9aI.\1d\17f\16\"\Ê\íA¶µ\ÞúÕºÿ\0t\êKDu\×Y\í\Z\9c\8dj\8aR\Ô\f\ån\Â\v2\11\874\87\90\ 3¸±\ÞJ        \f¦\990\12\90ðf0ÁL<\Ò#·\91N\Ò\11Ò\8e\8dv\93µ@F\v37¤ô\í²\ßW\89\90\8d\92¹¤LEÒ\82\95C\ e2ú¢I¶H\Ã5)\86]i\ïôõ\13õ8\87>*Æ\8cÞ\96~\86\ f\äc´ý\8aò½\ÝB\Ë\Ý\16m]·cÈ¢~Ú\94\98\r£²v\ 4bù?±§\85N\Z  \Ü\ë\b¢\ê\îS \106a\0\94²\0p\82\ 5ú|;\19±£\8e8\ç\82ös³:S§\9a7`ö3°·x\í\7fª5¤2\æ,\93\çü\9dy\Õ)\Ä\r\e               \1c\×\ÈÉ»$ü\93\ÃDW £\ÛtùiR\Æ\ffÔ·=ñ\80\1e¯ö\ f\Êÿ\0\9aB\7f\Þ\Ýmg/Å\87\8d\83\Ï{\Z\Ö\Å\13Pª^û§\ÙZ\ë\ 4¬|\Ø!¥¯±v\Z&¨©I´\Þ^\n\Ñ\15X<\81\8b÷\12\0«üf\\\9f\17\9e,zq°+u\8a\çc©\97.\å\â¦A²\112\1d\Ê\Ú;\ 3±\è\ZjI\94\r#;\1d\93òz\æµ,`ͤg\1e§R«\8c2/\ÈQ\ 6\1ce­¥N\8a-\12\93«éµ\8du­\êUº\15\ 6\95\v\1f[¨R\éð±õÚ½b¿\14:\ 5\8d\85\81\82\89\1cXبÀFm\f\8a\10C2;-§      B1\8ex÷o:\áV\íÿ\0Ww\çW®\86?\19[\ÞÚª\å­N\99\15\9c\10\\\ 3\ÖXbA\8c±\86:\9ce\ 4\19]\95X3\82\ eã­¶ù1\í4\â°\ÚÕ\9eiõ\é\Ø\ØV\7f\ e[\ë²>$<\89E\8f¡-{?j1µºÇ¶lù\\V\9eÞ\93       \82\8e¥Y\"\é\e\ZQ `e?d\85¯\Òfi\ 3¬\96MzC6*\8c\Ð\Ð÷6\ 2¯\19¼\82T\95§\nJ°¤«\18RT\9c\ã)V3\8f|g\19Ǿ3\8c\ãù\Æqüg\1cù\ã\8ej\'å²\995\åO\Í?I¼II\99(\8e©\è\rn÷w»s\11\ZQ\ 13q\Â$L\87¬\Ö%r\87\ZS\8c¨4\×j\0\16\e\88*8}\Íe\92\1f92(w\ 6\Ûf\12\12\1eµ\r\13\\®\ÅGAW\à#\0\85\83\84\87\b\98xx±Z\ 62*.86\Ù\10\b\èð\98d@\83\15¦\87\14f[a\96\Ð\Ú\12\9c}\9f\1c\17m}BÙ\90n\Ö6=\"¡°+o¯\í~½v­CZ\à\Þs\r¸\Ö\1cv&t#Àqxi\×[ù¬|«\ëq\Ä{üV¬f\vvGÆ\8e\95\ÜÕ\8f\96\9e²\ì^\97n(\bvÀ\×;¯©¶\é\Í?+S\"=)r\14[\r\12£%\ f®¶u<r\18\15©\Z]\î¹+\1elSK\8f\0¨gT\É\ÃD\1f\12\1dü\ìF\Í\Úý\9fñ½\ßÖ«\ßó·¤\86B\91/°j\91­\ÂU»)£¬©\13ô½\ã\ 5\b;#\89\13$Xò0\ eZÀ\0Hø\Ö\×i¯:,ti\ïMCC\ç[\8e`?¬\9a\Ôq=C~P6S­ºQ\8eô³¤\0\bZþYDPv\Çn@\19\16׿ø\á\12\ 4j\ 1d}±ÿ\0«/\ç\1f÷\Ç3\á\Ç\1cq\Ç0+!¬Ç\8dõ/\Ö6TRp\12\ìþ\e-\Â\Ú\12\14\Úf\v®v\æ¥\17\ZIªK©m÷\Ç\ 6T\11\9bZ\99S©`\11\91\95å¶\9b\Ãy\ê\ã\90;V\ëô\Ây \îfÁLr\19E\çª}\f\8fÄ\9aXRrau]\87Þ±M\19oýIC®\88!°\Ê[xuÕ²\Ë\ÃeXm.·\85O\1e8\ã\8e9\ 3e\è\é_\93\ 6\ÈTB³\96:\1f·iM\Ïa¼ü\11ù\1d\81\Òs\8eD­\Ü\7f\18S\98a\ 66\Úñ\î¬!\Õ7\ïñw\Úyq\Î\ 4\8a2    x\Ä\ e\ÂK!\91\Æ|¤´\ÚI|q\16K\82°óøN\1cq\91\9c\aij\Ê\19YD)´¥O9\95sñ\Ç\1cqζC\15E¶~Gg\'43¡¶^[NH@¯º\Ë\Ï\ e\87}¾ie×\87a\Ç\e\Æ~+[-)X\ÎP\9c\ã³\Ïÿ\Ù',5,0,'','','',''),(39,2,4,'9305bf00e7fdc853','12287146285bf00e7fd3b7e500413187','2018-11-17 12:50:07','2018-11-17 12:50:07','','','Contact Photos','2.jpg','image/jpeg',48,48,1489,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0   \11\12\n\13\16\"\151\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿ø\17t\8f,\ëiý\Çh\8c\98Nq\87\ã%\å\â\Ò\15,\19\10?¾e\ã³grF        ,¼¹Á#\90Ú\95\8a\ÉH±\ÈÛªpVYZm\9f_HL\80Ù¤\Ónj®ª\Ñ\0·r¯¨3_\Ä\ì\16\9aú\r\Â0\97\16\Ütô\8a\ZÃ\89m\×\e!.²Þ«\Ã\ÃÈ\8fù\ fv.À\â?T\9d\13µ5<\99\90\e\9aÎ\96¦\Ú#\9fpI:\99»VU5\Ùk<I\8d|<\f\Ü%aS\ÆÁ\1eÂ\90ø\13\98Ã\8d¼\ÃkLöüN=vPt\1f\bW{v\Õ\ 4\f\ßGö\1elvW®²\ã4}\86«¨Âµ\É\ÃV*±2\Ä~\â\86\1e\Þ\ì\17óû#\Ì:Ó³\ 4J\Ã\r\'\923\ 2\1e[dÿ\0 »\'°\ÞR\çÒ½\84ð·RZi¡sÓµ¢w?9\ÎÔ¨·\1dgt¡\ÊØ£«\Ä[@\1eZ¸\í\84Ih3¦Az\Î&f\9d\fº\Æ\ f\92\8dr\fø\959!@½Ew\ã~\Ìx\'Ju\89UÀ\ê\16\ÛX³U}\91Y\8dy\ç\âb¶5\ZX\8aÝ­P\8b\'\ä¦à¥\8d\r3Ð\82\96\ 5\83\15* D\96k\ã¬\Ç\ég\87\92\×\Ü÷\v\Ê{\16õ\É\Ñ\1c\ËUX­\ìy\88\10\9f\81C#gk©\16-\958r\8b\Ï\ÊB\Z\ÌTs\95bNs\nh&&\Ü)䩦V\9c¦\7f\8d\ fJC\í\ fZ\Ô\ e\88MC¢xbR\É\Î[óWM°¸\ë5FR¿m²»P8Ø¢s\83\e\12\91\85p\97\ZCY±\ÃXÀk\í\800¥r¿É\9f¦-\Âó\96¡õ\9b¥`\139\Ð>\Ðö\1c.\8f«\9e\1e\16¡I\8c¹\Ò      ·LÉ»ôyܪaù\bºò\7fP\Î\à8R\ì\92ÿ\0t\17\18\v%W\9fYü/OõÁ\ÅZO\91©ò\ê²ÿ\0\Ç\10D\93o·-\85\vü\Ãa\Ù\ä ±^¬\8c\bµ-À£\ä,R\ 6\18\a\\u\à!Y\8e      \ç\9etuº·\Ç\ÎU¼÷5\ f\9dt\Þ\Ï\ÞûB[\10\9a÷Q\Ñ\ì\9b\ 2\ß\'ôS®\ f\aY\8b\"P\Ä\n\Â>VQ\Å |        \1e#xË¥\9cø\ã4\9c¸\êq\99m\ÇZ³¥»\8a\n\13±û\96\ã°5\å#g\8e\9eøW]Û¦µý\ fZjy¤bN\8f-\Ðr53c-{{o\Ù+\ïD\Ì\Ø\à¬\13¬P*\8e\94ü#T\9c\e\93\12-L\×\ZCM\éò,fj½Y@\×g\\LnF\ß#N©\ÂW\ä\í\92-8S­HY\ä£\ 2\1c\éó\9bt\Ó\1cI\92\18N\1c,\95\áϳ\î\åS¿\Ú\a­ù^\Ú+\98w~\9e¼Ak>³\âmÁ\e¹´\ 5ª\á\1cl®¾\9e}\a\13h\×\e (\9c\7f\9cMN\Þ4\18,ª^     J\97\811\84\18(\æ2\éb>\Ä\ì¾\Ä{\9b(U­\83Õ\9a\92Û­)jd\ 1vvÓ¢\94\ 6\Ø\ÔÚ\9eT§\Ù\ 5Rw\ 3\à\Ô\ eÆ\8cת1\Ï\Ú\æÁ3Z³^®F\ç\12\17\92ªÂ¶ó\èr\ã$㦣c\æa\Ï\12R&X\11$\â\ä\ã\Èh°$c\8f\828\"\ØZ\Ø$B\Æu¢\ 6!\95­§\99q\ e6¥!X\ÎgO·\rvþ\Û\à]½¬ZA/3{¹ó\85^PQ[Ë\8e\1f_\97\é\í4%\965\Ä\ã\19ÿ\0«%_rL\ 3\95\9ce\r\86C\ë^2\84«\19£\Ã\f8c° \8c´0¢²\Ð\Ã\ e\12\Ó#\8e\12\Ó,²\Ú1\846\ÓM¥(m \Æ\12\84\'  N1\8cc\1e{xy\9f¶Õ /5[-&\×\16\1c\åZ\á_\99«\Ù!dGl¨ùx\19ø\â\"¦\"\Î\15ä­\92\ 3><²\ 5%\87R¦\ÝeÕ¶´\å*\Î<F=SV§i~»ùJ\97c2@\éJn³n£û¥r\îOn6±=7\a\ 4\13ù}Kwÿ\06\f\b\èæ°¥g\êÀ­¥?\×   ñ\Ô\Ø\14\8bW\"©4·[\8f&Rµ,µ±\84\å\Ì\13V³CÚ£þ0¼e?\19\90\85\17\vù\Ç\Î\11\95e?\Û\ãÍ\9f\87\87\87\98­uF\8b\Ö\Ô\ÈJD+¯½\17\ 2\Ñl\86\á9\Æ^\ËeH\17 ¤¯8ÿ\0\7fG\vZ\13\9f÷\94%?9\Î~s\çÿ\Ù',6,0,'','','',''),(40,4,6,'9305bf00e8022c7a','12242958235bf00e8006f72987476580','2018-11-17 12:50:08','2018-11-17 12:50:08','','','Contact Photos','4.jpg','image/jpeg',300,300,11005,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b     \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 1\ 2\ 4\ 4\ 3     \0\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b        \n\11\12\13\14\15!\16\"1A#3BQ\17\81\82\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/r9¸f3\9cDëº\9e±¾\8fð±g\ë]L\ã\Íϵ[d_\Õ\"¾þW\äñ¿\19Ķ¬\94Hx\8c\ë«x\12.¯+\'=­\91\ 2ûY©´­\97\18f0Hð\92\11\åF÷\98}`>V¹\ 2\Æø<|\Þ\r\á\íRľ\Õ\15\94\ 1vM¢¢/\ÄyÀ\8b¸\ÛZ\83\13d´\í{\Û.%\ 5F2\1c²9#\93\181\ f©\1e\\ó?\åC\9b¤\96VõÞ\8e\Â\r\å\95ùMÆ\95¼M\ãG\a\Û9À£\ eO\1d·W\9aøag\Ä,\8f\"Q\Ø\á\8cx7\Ú\æa\Ë\Ìõ\ eòù6\ä-\96§Nл\85\Þ\Ý\ãq¾\90ø\Ôz¶¡\Ø.À\ì\Û-Ì¡\80²\8b\1e¦\8e\9bn\9bic!±£\9eI\ 5\ e)\88\Ð\0¦sp1½Ø\95×\8f\ e\98ú°9J\92£h\87\Û^I\ê\×\e\\Î\89\996\1d\83\Úu\í«x\95L\è¸8®«x\êú\83\99\90\94\87úV\Ñm©Ø\82P¦bH£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8b\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)AT\É2\Þ1\12CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ø\êy\ï¶WPKúg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ek¾º\ê8­5¼ù\Îo\Æ#\àÁº$\Z\Í;\Õ\äù\9eG7\9c\æ+½\Ò,;\19\16:\Ç\1f\×<Ô¼e£¸ù\95\1dKM\ 4\82Â\85\88\9d81f\Î-\95¸cM\95\17\16Y\8cg\8b8\16\8aB¾\"=;}µò{.«\92v\0N\ë÷U²XR\8b\ËûEFKi¾Dl\80\9auW\19\18¢\91(²*ó\ï\1f\8cú(¥²§\9f\n\ e\aõ\11ò¿\Çÿ\0\88®\8bø\Û\ÔbRuÛ\86\ 3¸¼\11q°òö\Ù\n\1e\Ç\Ê;,\Èùqði\9b\\øå±\8b\f3\8f:MUd3\ e50\ç\Z\14\1c¶/Å\98Ù¢\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\88\8f©\a\bN\85\Ð\Øô멶\95óûc¼P\93ø·|\11k\ì\ë¸\ f\ e\ 6\ÙÎ\80ü\É\ 5\8f!Z\84¤n·M8\ 4­«x%\\lÀ<X0õ½®±]¯kÙ·½\9aûs\Ü\ï­v\8d³hµ\9by±lW\93OeouodwÉ\9dcc:K\Èy2¤\9c\8f!JG\ç9\Î}±\ì\Üc\18ø\1e\Ùý¿o\ëû\ãÿ\0|{\ç\1f·üñ\9c\7fó\85ø§\83\é\çô\Ï\a\7f\81¦÷{È\96\93\97j3\Ç\1eÿ\0\86zײ\Ã0Mq\e\97Á\Ü9f¦PFñG\96Ö²M6\9d#\Ùñ¢<ro\ 6Û\93\ 6µa\r\1d\156³O]¯\ëµP)(\ê\"\8a\reMdQB\81\ 2 qñ\18\"\Å\ 3\18!\r¿¾}\9a\Ü|\9d\97=\ÙË\9c\çg\ë\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"-@ù¹òa®ø¼\è\Öõ\ÌÃ\94\12ó\ e\é÷ñ\×\0\ë\8fcJK®I·\84\9ep>D<>\97U\86\Ò\ì\e\v\Å03EW\10¯­\1c©ÿ\0\8f\10\Ô\ÞòW%o¼Å¿m\9c£\Ê\e]\Æñ\È;\Õ\ÜÍ\8bl\Ú\ï\åf]­Õ¼ò|\Ï&A=\981\r\8d\Ã#Ã\85\14`\83]\ 41«\ë\ãE\83\16<qtuû\9c\ç?\×?\Û\ÛþXSDôµx:ge÷\8aÿ\0 }¨\Ó>þ\aã\9b\91\e\80ô\ëØ\99|~N\ä*Yc+÷+*ùaÀ\v¨j\92\Z?Ð\8b\97K}\9dð$L\ÄZ\á\×Q\Ûβ´\0\ 4P\ 64`\8a4hÁ\18#\Ç\0\Ø\10G\0Y\81\88!\10\ÚÑ\88B\e\8d\8dk\18\Æ\á­n\e\8cas\",=\î\9f|z¿\ã\ã\8b#s/ky\19\9cq¡M¸\1d\f\e\16R]\ìS\ì-H\17\1d°kiu\è66\Ör¾¶ü±\12¾\1c\99\8ef\\fGx\ 1\8f\ç7z\Äü[ñ\äv\9b\89ªù·°F÷\e      \13^\Ñløø¸{\È\æ¹\â\'$à\8eH\â\1fÀ¯y\f  \19\Æ^ÁD#\98\13\16bz\Ý:\82ùXdþ\96vF4/\97¶dDÛ¸\Âl¬3\ß\1fÍ\88f²¯\16]\íï\9f\87\çc\1eø\Æ>\7f¿¾6\9dÀ~¨\ï\ e\9c\ß2\9a\8eϱ²8ke´\8a\ãÉ\87\Ë\Ú6\í©k\95enq\8fÆ\97¾Ë n \Òg/\131\92Ù\83\ es\ÈF|¢\Ç<¦o\ãRܵ-ö\8e&ͤl\Ô;v½=¬|;­r\Ö\r\Íaðð\88øk&@1Áö`\'\11\1e\17?\ 5\e\9b\e\97c\v²¢\"\"\"\"\"\"\"\"\"\".2\10a\19\fb0B\13\1eB\94\8f\ 6\19s\ÈG»8k\18\Æ\ã.{Ý\9c5\8d\Æs\9c\18\ÎUFÞ¦¿!ö]\âò?¿\éZ\Æ\È\Ë>        \ê\Ñdð\ß\1cƪ³\Ì\Ú\v½\8e®IK\È[»@\èQK\Z\Îmù_ª\96)¤X\ 6<}M\93!>\11.,bb:\88¶=\â\8b\Çö\á䯻|G\Öj\ 6O\85ª[Z;då\8d®$W\È\ e£\Æz\ë\7f?a\9f!\ã8\v\1c\Öùdmf²L\7f\É<++¨ön\85&\15|\Ü6\é>!\âm\ 3\828\ÃD\á¾*\Ö\ëõ\ e9\ã]f¯P\Óuª¨\à\89_OEO\1d±¡Ã\8d\Z0\Ã\1c,k[\97¹\80\bC\82=ÿ\0PDÏ\8b1\èè\88¼G\9fz\×À=§\Ñ$q\8fcx\7f\8fù«@\93 3\v©ò&·]²S\âdr\f\Ñ\æ\ 6\971¥\Ç8A&<\98\11Á*<i\"#\ f\18\ 4\1c\12<¾zE\e§\Ómý\81ñ\8fasm[Z\ 3]\Þukn´e¥ À8\Ã|\çqf\áa\98§x\0\èÒ¦c^Ú¥Ø\9cųdxW\15\95µ\7f\ 2Àú\æ\9a\ã\\¸µ×¶\Z«*+ú+)\Ô×\94w0eU\ÜS\\U\Ê,\e:«Z\É\Â\ 4\Ú\ë*\é <9\Ðf\02¢J  c\È\10\Ê7³\1f5lw \ÞW{Á\ãsl\87\9ed½¨\Ô]g\1e\Ãb\â\1d\8eD\8d\83\8aö¶\ 4\92\nX\ÖZ¬£\àu¯\96i\19\912~ºzk  \Ò#\ÃýJLè±\9b\15Ö\88ømó¡\×?-Z1ªj\Ã\e\89»5©\ÔÇ\9f\È<\19oi\1cò\n&\84X±\ØxöqH\É;V§\Z[\9c<\ÊtpYÅ\8c\èç²\83\f¯\95\Z\ eò\91\11\11\11\11\11\11\11\11\11\11k«\Ë\'nkú9\ã׳ý\8e\96\18²¬5\1e7µ©\Õ`L\99\9a\è\Ö{®\ã\86\êz\8dc\ç·\ 4$2X^\ÛÂ\89\14\8d1\ì\9ah\Þ\Ð\ä·\ä\'RI.\\©ò¤Î\9d&D\Ù\Ód\Z\\É\92\ÌI2¥Ê\92G\ZD\992\f\98ò\ eg¼¦1^ò\14\8fs\Þ\ç9\Ù\Î\7f\9d\15\9f>\8fÿ\0\1f\8f\ë\ÇKv\Î\ã\î\95s\àr?o¬\"g]\14øò\"~\1f    \é²d3N$a\92L\98\93#\ìöò®6\90[\Â\1c\12J\85>\rm\84s>\9a)\9b/ôDDE\n\1f\81º®x\Ñ6¿!]M\Ó\7f\1f\9c¸ò\8f\16\1c\Û\Ç:\9df^^Z\Ò\êþ86\ËUI\ 1¸|\í\ëW\86\19¿¦\Æ5\Åõ@3NøÖ¿\8dE\8a\n\ÙQ{\ÏY{+\Ì\1dB\ç\ e>\ì/\ 4\í2u.I\ã{\ØwtÓ\86ù\19\81`8\ç\19&P\ßD\8d&!,µû\90\ f0\í`¶Lc<\ fû\áJ\85`\bs£\\õ\ã\13¿\Ük䣧\9c]\Ù\Î<>#\Ë\Ø*\85Q\ÈZ¹³\86X\éÜ\8dJ6AÛ¨¥\ÆpÀV\Ç\r\Èff²cA\886P°\ÉUr\'@pf\e\88\88\88\88\88\88\88\88\88\8a\">²¾r\9d\Ç~6xó\88\"·\ì\8d\ØNv\×\é,\9b\8f¯\ e\f^8\v9\14R²\ç7\ìÈ\99\1cW\8cn\Æ\1cI\81#\Ú\ì\a\19m^¨½s\808®W:ó\Ç      ð\8c\19\99®\9b\Ì|¹\ÆüW\ e\fis\ 2W!nTÚ\8cy\98\e²Ö\931Kn\Ã\á\8e\Î\Zü³\ã\9c\19W ð\'\10\ë\\\ 1\Â<GÁúu|\n­_\898\çN\ã\Ê8\15`\Äj\è\Õú\9d\f\ZP¶\14|0m\ 4\1eH0´ch\Úü5£\eq\867\Ö\Ñ\11\11\17\ 4¨±§F\91\nlpK\87,\ 6\8b.$ \8eDiQ¤\r\Â<y\0+^#\0\Â{\Ä`\95\8e\19F\ç1\í\Ës\9cf oQ\ç\8eAøóò+º\ÇÓª\9b_\Â=\8d\ 5\877q;\07²\rC\î.$\83y\ÓÀC\Ë)\8eú\r\8dØ´÷\f\98\10vj\êJ\98Ù\8dS\97-\ 3¢\98ç£\83º¬\â\ e\êò\'P6\8b\93\aY\ìþ¤[\8d\Z\ 4\É\ÙmdnL\ã\Êù\Öó\85W_òù\16÷h\Ôã¹²J\11\93\19«\ÔpI_Xa´Ã³q\11\11\11\11\11\11\11\11\11\11A/\Öÿ\0±7\1cC\Ð\ÝK\f~\1f\9eH\åÝ\8b$ùg##Y¬k5\8df[ñökÃ\97½\Øv_\9c½§v0\Öü3\97\×v\8a\96\8e\0Ô¹÷\Ì\17\v3p\16d\Â\á\Ý7}\ç*¨\8f\10\äD\97°\é «¯¦\14ø\Æ\ÆFx¬\93±þKZ\ïò¥\82,\8f\89>\9f¨\96\è¢\"\"\"(\90ú\Äú»cÌ\9e94\Þm\Öi!ʾ\ë_0\Ó\í{\r\88kA\"\è\9cy²\Ó\ÜjwUÌ\9b\87\8aX*\àZ[\Õló3\9fÉ\8a\10\Ò\È÷\8e\ÃIl\81\ÕÊ\8bcþ ¹²W^<\9ct\9b\95aG$©5\\ó©k#\10¾¯\93q\ÉN\93\ÆD\90\e8\e\83\10[\83\åHc¾Yx\ 2F5\84s\9a\Ç]²\88\88\88\88\88\88\88\88\88\88 \Ë\ë}×\82N¿ôOkll~D^b\åMxòÿ\0\9b9úg\éT\96Qcg÷\ÈÛ\8c¾¶aqí\86½þ\Ùùe\Ø\ep\Ê\èQKOÑ­­Í\9f\åKs\Ú\18\Ñ\æ·]\ê\Ç%V\Êv]\9fµ³ö-£B}~\18Ï\8e[\91º5%§\Úÿ\0\9b\\\×4-k\1f\82=ô\95\11\11\11\11jK\Ï\r\\K_\ f~BE,\".\"u»w´\8e\â1\8ep%\Ö\n<À\189~3õ\97\19\13\87ófZü°\84\1e3\ìGc4º\"Ì¿\1dzF\ÍÈ\9dô\éƧ¨V\9a\Ööge8n\ÄQ\0à´\8d®\×wºM\96öwø\ä\13\1c:º\Z\8b+C\r®q\8a\18o\14a\1eC\Ä\12^Z\88\88\88\88\88\88\88\88\88\88¢\91\ë\n\á(\1c\89\â¬|­$Y,οsO\1flµ®a\ e\ÇG.ûw\a\8d$\È#\ 5\ì3\Æ\Ä=\8cñ\È)9p\Û\"LS°y0FAU|\8a\\\9e\8d\r uþO¹\ fRx³\97\ì½c\Þm\84\7ff|F\íceÔ\84\à\ç9\Ï\Ï\ e\a\91¸kr\Ü\â;¾ynpÏ\95¢\88\88\88\88\8bH^£\1e^\Õø\8bït_²\Ø\n  9\e\8e3\Å:û^÷d²¶\r\ê\Î\rMt`\81\8c!M\83\95ø\8eG5­\14f\9f\12$\14a\e³\9aq\11I{Ò\8b\Õ}«\9f<±q§+Á\80w\é]T\×ö^U\ÛmpøÙ\87\Z\Ú÷^»\Ò4ê¹\82v\v3/³\97ska\ 4ñÀ\Ð\ne\b\87.dlÈ\8c)v\Í\"\"\"\"\"\"\"\"\"\",>\ï÷Y©;\8b\ e\Èõªù\92\7f\17\968§j\×!\1e\ 4`I´\87u\9aòM¢\97P\Ù\ 28\Åh\eh±1\bù\ 1þ\92»\ e\Ìy,ùG-\1d\en«°\è»Vͤmµr(ö­7`¹\ÕvjYy\16eS\ì:õ\8c\9a\8bª¹9\ 1\f\fȯ²\87&!²\12\94Y ]\91\91\ìövzú\92\a¥7\9aµ\9e\Zó\ fÄ\91öyL\88>^\ã~M\á\Úb\17\æÀºûa\83W±Àa¤`o\fV}z\94\92\9c\10\94\83\1c6\99²%\ 1¯¶\á\11\11\11\11@_Ö«\Ý\1d\1dn\èV»>Q7\18û\ 3;\11\Èø\81e\91F\85¯\â§c\Ôt\Ízö¹\99\11\ fú¬\é³vH\1fn%By)B\7fhó`\ 1ϯ½\15²~\97ÿ\0\17\93:\v\Ñ\àò·)\ëM§\ìgk?J\ä\rÅ\92Z\Ü\Ùk<uø¬\91\Æ\Ú9I\98\85\98u\92\7fm]9³±_³\Ý\Þb®\Î]Qã\94\92eDDDDDDDDDDET7ª³Ç¬þ¡ù\f¸\ç]R¦cxs·1\1fÈ\95³E\17\18©\×ù*&s_ºj\8c|Hm\8b\ 1\92\16\ e\ÃX\e\19ò-\î$\É\Ùg0c\83\r\8d\1c`\17»u{\99\ f\×~\Èð\'<\ 36\Ù\Ç\ fs\ f\1còD¸ôG\Ä{[\n½?m©¼¸¨\88÷J\84\'º\æª\14Ê\92Æ\93(\10\ 2ibM&\"\1c\Êô.(\ä}w\98\8f9_R\95\1ef±\É:V±¼\ÐÈ\8b(SBú­¦\9a\1d\Ì&\âPq\81\99\fÆ\88®kY\9c\18ok\98\Ç5\ÌÇ \"\"\",.\ï\çzø7\ÇgY÷þ\Ëó½\î+\è5:\Ó3]\×a4r¶=\ëo\95\86\Æ\×õ-nµò\"\æ\\\ëK3Ä\8es¼ñ\á\×F+\æN\95\1c\9dL\ fv{o\É\1d\è\í\17\9b\952\Èû_,\í\93o±G\Zd\99µ\9a­.]ô\Ñ\ê\Õ\ 4\90\Ñc\10)k\86\bù|x\95ñ\æM\Ì\Ë&WB|\Ò\ 1\98¬¦\v\97ðO²öÓ\95ôþôö_Y\9bQ\Ön&\Ø\à\ì\1ciª]×\92?ümݪ\9eÉ\95v\ 4d\914®\Ñu\é8\8fd3BpOsh8\12\996=LQFÙ¬\í\8f\1e<H\à\8b\14\ 1\8d\120E\1e4h\â`cÇ\8e\164A\0\ 2&´b\b\86Ö\8cB\eZ\Æ1­c\e\86\18\\È\88\88\88\88\88\88\88\88\88\88µ/\æ\93\Æö³\ä\ã£Ü\85\ 6®¯w(\ë\Â6óÁ\Û\1c°}§\Öy\1e®!G\b\ÑÉ\8cà¡\8fm\15婶d_iS\ê¤J«\19\18\É\ÅùSI\È\Üs¼ñ\16ùµñ\8f&k\16\Ú^ý£^N\×6½^\î?\ã\Ù\Ó\\\×\17!\93\14\ìk\9e\"³9\ÃM\16dR\9e\14ø\85\ 4\12\90\ 3\93¥+D=#~Fª{\1d\Òsô\×vا\Í\æn¤<u´\ã¶È\86\ËN\12»<\8cqð(ò(Ñ£\18:\88\à\Øk\ 6\89\1c\92¬C\16²=\8d°Å\89Ѧ\ÙK¡\11\11\17\11\8c(\â,\89\ 5\18\0\ 1¼\Ç9\9e\ 4!\13\14¤~ZÁ\8clk\9e÷½\Øk\e\8c¹\Ù\Æ1\9cª\8b½H>Sv\Ï!}\á\Ûøó]¸\9d\e­\Ý`Ù¶.6\ã\1dm\8f<8w\9b=<\Â\Ô\î»õ\Ýw\Äa\93p{xö\14T\ÒN[F¦\8b\"E,ðÀ\Ød\Å\ÄwVý}=¾%\ì| w\1e³;õ4\ìus\82\89]¼óU©#\àu»a#XBý\17\8a Î\91\9c\84\96;#\Íù\97\ 2\8f\12\×1uø¥\ 5\8chB»\85`;xõMSZ\ÑuºM;N¤­\Öõ}nº5E\15\15Daî«®\86<\ e<X±Å\8c5\8ccq\î\çgÜ\85#\9eb½\å#\Þ\îÀ\88\88\88\88\88\88\88\88\88\88\88\8a\12¾©¯\ 6ù\ç­FóȧVtù\Ö\\\á¤\Ö\Åg9qÞ«\\ùV<¡¦D+òMʾ¸Dn\'íº\94R\ZD\86\13\ïo\êG\9ah\Ñ\ï\æ\8f[¯©­\ÅgW\8d\Þöòo\8e\1e\ßq_iø\Ä\Ù)µ+/\Ñ÷­w\"û\83ºq\8dô\88 \ÝõB\ fó+ñù3«BÙ\94\Å$\ÐÅ\8d°\×TJ°\1c\Ê\àË\81*\è\î­vc\89û\85À|g\Ø\î\12\Øc\ì¼u\Ê:\Ív\ÉG,N\Ëe\Ãü\Ø\ã,\8a\8b\88E`f\Õ\\Ö\95ù\8faWe\16\15\94Bc\r\97\n1\1dõc \11\11\16¾<®sÕ\87Yüq÷7\99\è\ì\ 5[µj\1dz\å\ 3\92\v\8cû;o\93¨\ÚÆ \es\86»\àü\Î#\b\×û±\Íúó\91?\ 6úý\é\17\9b6e\94\Év62\äÏ°\9f$ógN\9a\996d¢¼ò¥Ë\94w¼ò$\È;\Þc\9c\ÏyLW¼\84{\9e\ì\ç?Ì®\ 5ô\×tâ\8f¨~)ø\14Ì«t\1dó°µ`\ì\a\9bXJ«\Ç\\o\10b\96¢\92ò)\86\13bV©@\184\"ü\812S#\Å`¤{<\7fX÷æ\88\88\88\88\88\88\88\88\88\88\88\88¸L\10\Ê £I\b¤F\90\"\ 4\à0\ØP\98%fFP\98\98A\91\8es\b7·,{3\96»\19\Æs\85U\7f«\e \Ü\1d\Ó^ò\èü\89Á §ÖªûQ«í\9c\87¸q\Õ6X\Ø\Ú\ÎñCqS\1eòý±\ 6\ì2¹\9b¹v\ 6غ\18\80!\9ad        ¶\æ$«\e[ $\8a\9aߣ\13´\Ü÷\13·Üµ\Ô&ls\í:\éy\Â{\7f/\ÊÖ§\8aL\Èz¯\"k\Û6\93O]:\86fIôT3c¯\ØmókXὶ\12k\85>\aá\95·\8e´²u\11\11hO\Ô\ÃMyy῵\80 |\81É\85[¯\\\Ï||;9\Å\1d-¸\ì¯X_\8eq\í\1c\ÕQ¥G6s\î\Ü0¹Ë±\9c*|× q=\15v\Ñ\Ê|i­\\E$ê\9d\8b\904\Ú+HB)\ 2Y\95\Öû\1dm|Ø£0^3\b\92#H(\98A\10e\e\9f\87\8d\ív0\ì_  \Ç\15U\Ô|}£\Ó\ÔB\ruef£®Â\83\ 4\ 2`\ 5\164z\98\83\18Z&c\rfZ\Ü\7f61\8f\Ýÿ\0,»9vs\9c÷DDDDDDDDDDDX\Ñ\Ù>\ãu\7f¨:U®ÿ\0\Ù\1ep\ã¾$\Ö\ê\ 67\1c»^\Ë[\ 2\Ä\å\90\ßû\94H\14\î>l\æK°+\85\Z\b\81\15Ø\91*D`5ø|\81\81\ìϬ۠\Üe(õ\9do\â\1e\\\ì\Ù\É[ Ð¶\ 2°\9c\ 2ͬ\ËcIJf\íD]£\éyó\82<°5\Ù-tV\ç9 d;\ 1n©\ß\ê»ò\é\Ü=\9d\9a\97Bú5¨Æº\15\85TKZ\í\7fOß»\1cz\81^\14\Ði\Éoc[[¥\Öj±\å\Ë\ 1\ÈûÝ\9b\ 3¥`bO)?\164S\9e6\å8\10>®^g~¹+\95v~\8fõ\9bP\ÚA\9f\Ö\ålº5&Õ¿\éQd\Æ>\ZViº\8dÅ\94yVq\ä\à\"4b\î\11²\ 1<\93#\ZQB\18\Ò|ò\Ç\Òeÿ\0i\8eY\9f\ÏþHü\89óOk9z\ã\è\rÍ\85\ 6\9bGÇ´\13\ë\"6S+\è\ã\Âu\95Ì­v\96·2_(5\9a\91õø\ 5³\91:\Ç\11#\12|\á\Ê\Èx>\90\12q\ã\ 4\8e\90<\ã%\97\9eRÞ¢ºF1\íï\87\84;&D\Ï\7f\ß\ß\"\Ã?¯\í\8c{-»ô\1f\Ä\ßD¼hB\Û\ 5\Ôn\19\1e\8fu½\Z;ö\í\ÊûgÙ·\9d\Òò40\8cPjϱmv\96r\âRÁsO&\1d=n!WG\99ai(qðk)\8f\91\11\16\Zù\10\à¹\1d\9a\9f\ 2\13ò+\ eY\ë\ç)iµekp÷\86\Þ\ÓS²mA\82Ì°\98|\80\Ù2)#5\Ì\Ë\1cv\8f\ fönr\ìQÕ°\Ð\\\ê\97÷\9a¶\Ç]&\9f`Ö®,¨/ªf3\ 3\99WsO4\ÕÖ\95Ò\99\8c»\f\93\nlc\Æ;0\ça¥\13ñ\8c\18÷]\9f\89¶H:o)ñ¦\ßfü\8a·U\ä\r7d°+FC8phö:\Û9oÀBÂ\94¹`\"\91\18\84B?8ø±\8fvp\Ü\ß\13\Ç\Ö\Ñ/ô-\"ö\ 1\87\"\ 5Ö¡­[B\90\'a\Â<K\ZhS#\18o\Æs\87\f¡3\1e\Çc9Ã\9a\ìg\ß8\Ê\íè\88\88\88\88\88\88\88\88\88¼ÿ\0\94¹W\8d¸GB\ÙyG\97w\8dk\8ex\ïM«\95u´\î[u¬Z]~\8aª\10I&\\\ë\e  o\18A\1e4q\14\å~s\9c°\"!3\8f\83\1f\9c@O\ËW«\Çm°³\Ýx+\ÆtH\ÔUP\ç\ÝkSû=±W\nt\Û\b\8a\Èú\â:cHp\18QؼƯ\Ù6(/®\Æ+óøô{=M¬[@ï_ \îg\92¾\ÆÅ£¨o,v³±ü\8b\"Fc¶\Æ\Ú^Í°È\8c\é\æ\96ö>\Îòhj5MR\ 5\85³\87\10\'\99IªR\96\10!2\16%F\8eù\Ñx\Êôuq\8e\92-k\95ü\8e\ï/\äý§è¯·\ f_¸þD\9a\8d\ e\8eÁ¯\f¯\Â\Üö\9fv\Ûn.\89&3\ZH0\ÅUCe\ 2dªûz\Ã\åªg\\+×\9e  \ë~\9f] p\1f\10ñ\×\ fi\95Qÿ\0\12\ e½Ç\9a\95.­^(ÿ\0c\8dð#*¢F|\9c\ä®\ËòIO9\\\ïl¹ùö\Æqì\88\88\88\88\88ª\89õGx¶²\èÿ\0v-û\eÇ\9aĨ\9dm\í½õ¾\ßS`\f¸Õ\9a\Ï3L\É\î¹\vPs\9a\f\b\bbm´\83\9b>dû\12\ef+G\Z\ 5|Q\æ/ª\Ý_L\8f{h»\93\ã#\8bu)6\16\12yC«±¢p_\"\â\êi\ç\Ú\Ú\17_\81\Z^¿²\92|\â~e·\ë4\13\ëeK\9c\14\9dµ\ç\9d*\Ê<\ì²Dh\88\88\88\88\88\88\88\88\8b\Æ{\ 3\ e$\ê\ç\10o<\ë\Î;\95^\8bÆ\9c{G:ûb¾´3\19\86Ç\83\14²q\n¾;\9e\Ò\Ø\ÛMÀ\1e(\15ñ½\Ï$¿\Ó\f\e\nVTµ\æ\Ó\Î\7f9ùX\å[\8dj\8e\Æ\ï\8e:\83ª\\\10<o\Ä\11¦¼\1fÄ¡­\9a÷\×\îÜ\89ô49¶¾±È£Y\8a¢NM[Hp\ÂúDù\95ð\Ï\e\14üYx ì\8f\95¾t\17\14ð¼Fk\ZM\13\81/\94¹¢þ²\\\Ý7\8ei\89\9cg\í\90(\å\88\ë»\Ù,\Ïþ\e®Å\9d\14ó\1e\á\à\Ò\á°ñ\Þ[e<nø¯\ê\7f\8c\ e\1e¬\ã\ e¿i\90\äl\8f\8b\1fø\ç\98v\Z\êóò_#[        §Ám¶\e¡\a\1d¦t\99?UEc£T@\ 1\19\ 2¾$jØ\90a\Å\Ù\Z\"\"\"\"\",[\îWO¸G½}{\ä\ e¶óö­\ ff\Ð÷Ú\92\Ãs\8c\16º\Ç_·\16[\"\9f\95\87\ eD\v\9a; Å²\81.!\ãI\f\98¢($G8\àU\ eùmð÷\Øÿ\0\13¼Ë\9dS\92`H\Üx[m°\92\Þ$\ç\Zx2q¬\ì\à\Æ$\É\ e»xo¡\80£\Ý\â@\8eYF©3\98+hq¥\ØÓ¸\99\81y_GÖ¼DùI\å\7f\14]©ª\ç=\1c\136n=Ù¢F\Ôy»\8c\878\91¢\ïz.g2W\Î8\9eqW»hÖ\8f\93X\ë\12¬1\81\8c¦°®lʶ\Û\Z\Ò%À}9\î_\0w·\835.Àõ\Ïz«Ý´}¦\ 4s\95±\ f\8c[k\96o\1e\7f3_\Ø\ë\n\ÑN¨¸®\92\ÃÃ\97\n|h²C*,\98\beF\95\18\19P\88\88\88\88\88\88\88\88¸dH\ 4P\ZT£\n4h\Â$\89\12$\10a\0\0\11¸\861\8cG4b\10\86\×<\84{\9a\Æ1®s\9d\86\ã9UJú\97<\Ê\Ýw÷²w=ná\9d\9a\Ò7Tzù±\Ùk¸\8d\18\86\89\ f\94¹*\92^kï¶\8b\ 1\81|\ê\Z+8R \ëBs\7f\ 2d\90\9aí¥¸\8a\r^\Î6\9b¼px\î\ç\8f&\9d\99\Ôú\áÁ\ÐY\ró\È;N@\ä+8¦\91¬q\86\8e\ 37õm¦\é¢$wO\98д \×õÀK\8b/`µøFtʺ [\ÞT\Ü{\Ñ~\8dð\1f\8f~¼\é}u\ë\î­\ e\8f[\Öka2öý\Ñ#\8fb\ß6A\Çk-6\íªh±\92M¶µ\97\99\12\Ü×\94\82\89\99\ 4\18r\ç<\Æ6b\"\"\"\"\"\"\"òþ_\á^%\ì\ 6\87}\Æ\1c\×\Çz\97\'ñþ\Ï_*ªûSÜ©¢]TX\×\Í\1f\Ó21\ 1(np\Û ^\â+Àñ\11\â\ÎG\97ü\1d\9c(m÷\ÏÑ\99À¼\9bou½ôO\9agõö\ÂKO9¼C\È\15\96;ÿ\0\1fÈ\94\ÈÒ\8c\èT[\19.¢\ìú\Ó\ì\ì\8a&\89\Ò\ÉsMQ\b\"\85\16¤ls¥\vS\1dsð\×\êUñ\1f¾·\98z\8b¯\ë\ey\ÞcG¿\Ðø×\96µ]\ßE\Ýb\15\91\ØI\eG\1c\îÓ´¨vN\vcEl[A\ 2\ e\Ò\04°«\åb\f\9b8\87\93\7fR<\Çù$\11¨µO!¾\'ùs\881KW_\ 3t\æN%\98\1dÞ\9a\Ú\î\14aF»³\a\16\Â-\9eɯºd\ì>lJJû\9d¶8\19\93\Â5\ÄO¤&.JòǨ\Ë\Æo\ 3Ì\8f\13\9boû\'Ä¢\99#0¡\Úo\ÝA\ìn»K:v\ 2\19\85Ym7\8f[\n\ÞC@\Â\15ͪ,\Ö5\827\ÉøÈ\89\86ú\7fYüúø\93\95\ë5~(\î?\1fÁ\Ù\ä\Ø6®³]\å([\1f\r\\\Ý\Ì\Ì\\\Í+h\ár\85>ªK`Ç\8aÜ\96\7flF5\87\ e\çC\9b\88\ÛaÕ·]7x\82\ë=\'m\Öw\n\Æ9¬}\86­}U°Acß\8c\8c\99r\ãµ\Î\Ã]\96·$\Æs\86»8\Æ}²»:\"\"\"\"\"\"\8c\9fª;\É~z3\Ð\Û\ e\1f\ãÝ\85õ\\ÿ\0\ÛV\Ûq¾ J\9b\9c\ÕlÚ\8e\85ø\8eþ>\ä*\çð®¼\86\ê\Ød\r\1dMõ)Hz}¦\ê\85\ 6\Ð\Èû\eT%EE­ý­e\r\re\85\Ý\åÝ\84*\8ajj\88Rl­m\íl¤\8a\1dueet1\Zdû     ó\f\18°¡E  dÊ\92Q\0\ 2y^\Ö\æ\à?O¿\8a*\ f\18],\×c\í5µ2û5\Îpk·¾yÚ¢E÷$s\É|É\9a\9e\83W6Id\Ím&\9dC>\1c\19\f\e«bZÞ²\Âô\ÔUs\æH\ 3\88\88\88\88\88\88\88\88\88¼Ã\96¸O\87¹\ëR\9f¡so\17h<µ¥ZG\91\12\ÃV\äMN\8f\95\Z[X\É`-m\ì)±²)c\10\Å)\98\1e\e MÀ\8d\87\8fݹ\8b\'\91ÿ\0H\ÇJ;+\16÷\7f\é´ù\1dA\æ9D|\ÆkT\àe\Ç\0\Ý;\1f¥³ð\ßÇ\9f\\iz\89Y\ 6ºLJ\ç\é\97\ÔU,°µ5\Å\ÕMÁ\84ö\Z\12\9b¸|ºú|»\aa\Æqù\1f\93:\ç{y\89\16±\r¤l\93¯8+\99j\â˧\15\85\ÝD\vH\98Ô¶\Ç    Õ\94ð,%O \81¸\ÔV\96¹\86eeu\ÅigL\ï\Âת\8b\8d»\83\7fªõ«¼\Õú\Ï\aóõÑ k\Ú7$\Õ\16Xx»\95®\Î\10\8a%l¬N,\99\ZV\Ùq`\âÀ­©\9b*mtó\æ¬\11.§YÙ\9e4\19\8b\b¢\90!\1c\ 5\19\80a°Á0^\Ò\b¢#pñ\90df\\\Â\f\8cv\1cÇ·9k\9b\9c9¹\Î3\8c®DDDDDEQOª\ 3¸w=¬ò¹Ëº\ãf8\9a\17Y+jø\17C\8d\Z\ÚL\ê\898©\Év]«b\8d^f05\166\Û\ 6\Âz»P\83&t\9ck\90$\18£\ÎY\ 6\16OúJüv\vµ=\é\99\ e\93\'\89z\8b\ 1\9b-+\8f\19¯©\Øù¢\Ó \8b¬S\15\ÒbË\838Z\ÝDÉ»\1d¥i\982\áÆ£\92#\89øg\Î\ÓtDDDDDDDDDDXs\ÞN\89õ\Ë\Èg\ 4l\1c\ 1\Ù=\1e¿l\Õ\ì\98yzý\Æ@6lº.\È\èÅ\8d\13i\ÔmÛ\86Ì©¶\8a\Òe¯tS\89²Á\î\13g\ß\ 1(iýòµ\ã\'\99üWv§b\à\ eO\89am¨Y\88\ÛG\vò\87\904\\\9d\ÇÆ\92\àDz\815\82d\'\ÞQ\1f8¨\ÛjG\90Ë«²`dH\81\n\15­_\Ý4\8f\9c\r\8b\9fk\áø\ì\íf\îK\ÎV\Ô(¤\Ì\ëÿ\0 \ì\Òòû®A\Ô\ê±ö\Ì\Ó6\v¹²1\8b}¿[\8eö¶¶A\Üû½¢¯\è9\87iq\ 3\958\ 4DDDD^s\Ì\e!´\î%\å-º1\Ý\ZF«\Ç[¾\È  ,vX\è\æ£\Öl\ì\Äf¿\19\ÆX\á>3H\×c8\Ër\ß|g\1eÊ\87\ÞBÞ¶\1eP\ß÷\8eKÛ¤\8ef\Ù\È{\86ͽló\ 47\b\1d¶\êmýÔ\91\89\Ï+\863\ÙXI+\ 6\11\Ìkðܽù\Ç\Ë6\Ùúcºi¬u/\ÅG\vl\95¤\9b#n\íDX}\90\ß\Ï7ò\ 4ñ\Úmôõð(j\87\ eA  \88L¤\Õj\é\ë28ÿ\0Dy$\8eû\12E\r\84\É\Ä4\85Q\11\11\11\11\11\11\11\11\11\11\16\93¼ôx\Í\Öü\95ô;\91´\Ú\êªÁó¯\15\ÖYrw\ 6l\æ\8e6O\ e×­\ÖN\96MH\Ö?Y\Í\Z\8bo\8dö\ÕZ\äq,$\bFq+¢\âs\ØEP§\15r_&õ\97\9bt\9eS\Ò\Ïg¥ò·\nò\ 5f\ÉT;\0\ÙUΨ\Úu\v\86\16E-ýs\r[d\È\å\91\12E&\ÍG ±_.¼\Ö4ó\9aÑ\9c\ãWst?´\14½\Ï\é\ï]û=J\Ñ\Çg1qV¡¸\Ú\Ö`ð\Ë\"\8f`³§\8ak\êi\ã\82SG\87:\ 5\9b¤\fð\98R6>2Æ\8c¦\ eFr\å²\"\"\"\"\Ö\ï\98.C\9f\Äþ/»\ÑÈ\95nö²\Õ:\ç\È6Uøûr\1f²oé¿\8d\1493Z÷\r§9\Ø\17?\f~[\82g?\17\7f\å\Í/|\e¢\83\94\87ø\ÒS$>7\"r\97\1f\è²\19\11ù\1c§\83m\Û*(\f\Ø\Ä\Ã\1f\96H\È\ì\1d\80¿\fvXLµ\ß\17{{f÷\9d\vL£\ã­\'Sе¨q Pi\Ú\íF·S\12$aD\0¡TA\ 4 \å±\Ãþ\18\ÜV\87\î/·\Ë/)\1e÷½\ïs\9e\îÚ\88\88\88\88\88\88\88\88\88\88\88\8a\9d\ fQ\7fO)ºa\å{°ún°q¿T\å\Ù0û\e®Cfd\91õ \åù\×\16\×u¦<\97»&#6\è[\1c¦¶8¢Á\84  a¬\81\19\90\85\9a×£w\991¿x¹\Ûx¿1\Î7ðGb·½{\î>[\96\16õ\ 6\9f\91X\è\9f\12¿\18\86\"_\98_\12\f&ü\æ\ÎvZð¸\ 4tµQ\11\11\11\16ª|\á\ér÷\ß\12\9dù\×kb\9am¹:\ç½Ï§\8b\1f>\Æ=\95l\1cM\ 4q\ã.`Ý\99M     \"\ç\ 6\Ï\Ö\Ü\1f/\ÎX\æ4\8cªÿ\0Á\87\1dÀ\åo-\9d\18\Ñ\ì¡Å\9d\16Ë\98±eôL\17\19²u}Of\Ú\à\Ê#~\ 4\Î3\ 6u$i\Ã+Xç\80±\Øa\ã\æ6«¥\91\11\11\11\11\11\11\11\11\11\11\11\15p>¶þ4Ö¨;9Ò¾R¯«\06\8eH\â\1eP׶[\8c\bX\95e\a\8e¶m9\Ú\ì\12\9d¬iI\Z©»\95©c\ 4®#@kI\84\1e[\89.n6I\è\90iqÒ¾\â¿-\Î\0\î\ÑR´oöý\9cVñ>­\937\19öýò\Æ<\19\Î=ó\íó\Ç\í\8f\7f\ÞkH\88\88\88\8b\e{\8dª\83v\êwdui?\1c\86Û\84¹(NkÇ\82´\99\ 6¥k,bpó\96\ã81#´Yw\ïðùüþ\ føü\1dSo¦\96\ 1¬<\ÝôO\ 2\ 1\fÈ\9b_+Ï\92\æ\r\Ädp\Å\à\ eW{Ng7\19À\87ù\19\0ZBe­û\Ê\11\ã9!\18\×\\H\88\88\88\88\88\88\88\88\88\88\88\88 \9b\81\Ök\Ý\Ã\Ý       \Ü~\9f{PòW2k?~p\Üü+\ä\êú\8d§\Ò\Ç|>Mû$\Äù\93\19\'\Åÿ\0P³\86c#˳\9a>\8d]n\rO\8c\1dò\î4 Ç\97µvGw\9dc$bh\É`j\Ú]z\90\a\90\ e1\ 3\12\0\"1\ïË\9c\Ð\Ç\10°\ì1\8dkeÂ\88\88\88\88¼·\9c¢\âw\ns\f\17e\Íl\Î-\ä\18®s}þXÄ\8dJ\Ü9\Ë}¿\7f\960ÿ\0|{c\ß\ß\Û\Û÷URúO4²mþe¸vX²6»H\ã\1ea\Ý\1cò|¿\94q5\86R\17\f\ËZ\ì\à\85\1dû\80\Ï\Û\rvKðs\9a\Ç9ض±\11\11\11\11\11\11\11\11\11\11\11\11Bc\Ö\ç[\82ô÷¥÷\1f_¾`öWj­û½¿\ËýW\8b\í¥}\7f\8f·ô\\;\Ûûý>ÿ\0\é\Â\Ï\ fH\95~!øiФ`\7f\f\Ûs\Ï<Xe\ßú\Ù\1e\ e¯\ìþ\98þ\98­À¿¿ù_\×ûbNè\88\88\88\8b«o0Eg¥n\15§ÿ\0\"\ÇV\Ø \9bÿ\0ª]L¸\äÿ\0ðLª\â=)\\\17Y¬y¤\î9iþÀSð&\95\1cqQ\r¿\Ì\16W\Ùò\È5ø\ e{\89\97\1f\8b\ fOh\ 5\îüû¶A¾ß\93ð\Ì\â\Ê\ 4DDDDDDDDDDDE\15\7fX\1e\8c\1d\8b\Ä\ìݼ\Ð\Ù!\Ü{\Í\\e:4\97`y|       ;\1eÁ\ f\\ûG\87g\ìnO\16d¸\ΠÛ\9ff\97#{\9b\82\ eÉ\9f\8b;@ð\Ã\Ö(\16\ 3{\r°\Øòfô\17=\9f\f\9a\ e\ï½\\lµ\ä\Æ?\Ô\Æ°\0Xÿ\0õ°MÊ\90z\"\"\"\"ÿ\0\ 4\18\Ì2\b£aDV8e\11\Z×\8c\83{r×\8c\8cv2×±\í\ÎZ\æ»\19k\9b\9c\ã8\Î3\9c(&úb\è#\Öù\93ó\8d\88øÀ\ÅA\Èü\91A\18Mö\Ã[\1cݧ\ä\7f\8e1\8c{þ\Ìm(\9a\ßlûc\19\Ïõ÷Â\9dª\"\"\"\"\"\"\"\"\"\"\"\"\8e\ f«\0\187\84®Æ\93-\Æ\7f\e\90:\î|g8ýÛ\97s\86\91\e\8föÏ´\8c·\ßý\9d\9c\7fu\9c\Þ\r\ê\ÃU\â\e\ÇxD!\8b2º³Å\96\86\È\Ø\Ö\äÆ´¡\ 4ì\94¹\Ãq\92\13,0\Ùów»¾\fc0ìµ\8dö\Ú\Â\"\"\"\"(tx\16\Ð\é´?8þ¡\Zj@\1e<\nþa¦\96\11\É#\Ìl\97r\å\8eY\Û,\8c\13\Ý\Ùl\8b\19F\906³\à\ 1\88\8c`\ 600Cd\Å\Ñ\11\11\11\11\11\11\11\11\11\11\11\14x½Sôv7þ\13;O\Z°\19\90x\17ü\19xq\á\Íoµu\176h¶¶§\Î^\æ·\Ú-lYR²\ß|¹ÿ\0GÀmq\1c\Æ\ç8ü,F$O\12^8\ÄG|\9c\9dðD\9c\873B§\98&ÿ\0\Ð#±\9fô­\9d\"\"\"\"\"\Ð\ç\8d\13\8a|\94yu\æIU-\8f#\9e¹²\92\1d\9f\ã`O\91G®\Ó\ÕÃ\8b\ 5\Ç\Ãq÷\88W2ö\e!\ã.\Î\18kYYkqòs\9f¾4DDDDDDDDDDDE«ÿ\03\1c\1fg\Ø\Ï\e\1d¤\áú\82²5\86\á K¯\8b0\81l¡À\94G´p\'¾+\8d\1dÒ\9b\12Ä\90\Î\à\b\Ã#ð\ÌüJ\1cc&\1eLtsE\7f\18ô\ã¬<|ð²>4þ\ e\ãj\11\ 4\7f_\Ö8°5z\áD\Ãp<ü\18\Ü\ÄÀ]\81\ã\Û\"\Æ~·5¯k\9b\8c¨DDDDEðªu\9a\Z9\×VU5\91\à\Îئ6\Â\îH~ϲ\Æc0L4\çù½\Íù7\ 5\'¶\a\867ù\Ýü«\î¢\"\"\"\"\"\"\"\"\"\"\".±¹\ê4\Û\æ¯s¨l\ 3)©¯b\â\1d\80\80ö\8c¯\ e\f#\ã\f{\ÆV·?`Y\9f|\8d\Øö\Æq\íýñôhi \ë\94t\Úõc^\Ê\Ú\Z\9a\êjö\11\Øy\19\ 6®\18`\Äk\ÞÖ±®~\0\ 1\á\Î\Ã[\87;\19\e\8c~\ØúÈ\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\8bÿ\Ù',4,0,'','','',''),(41,4,6,'9305bf00e8022c7a','12242958235bf00e8006f72987476580','2018-11-17 12:50:08','2018-11-17 12:50:08','','','Contact Photos','4.jpg','image/jpeg',80,80,2355,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v      \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0+\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 2\ 1\ 5\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b \n\11\12\13\14\16!#\"\15\17\18BCÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91ù\ãõ1VüwZfº\9b\bJ®\Ø\í¨!¶\9d\85m³e\ÙMg Ü\91\13\ 4\a\14|\\qb½tÙ\99\11ö$\15[Q\àÁ\Õ\Û|\'¬\8fJ\18¢+\18\Å_\8aÎ\9fy®ód\à]±î§\91~\Ü\èN\9e\ÊM>et-e°¦µM§s¨2T9¸\Õ4ZO\ë4\Z] W\9a~?;\ 6J³&\Ñ&\ eðu\êôç´\84´f÷}v\ë\Õ+¬\9a\Ö3V\Ð\ì;j\Ó\v\1c\ç\ä*stn]\9d¼.\87\98±\Ç\19\â      ¶\í;E¦\\V\1eÀ\Èu0°\ÏEW\ 3}o¹\e\f\16H{\v÷^8\ã\8e9\13{\á\Ù\ 4õ\ 3¦\1d¢\ìòE\1có´v\8eØ»\ e\n4\Ì+\"J\Ú`kg¿R\88+\b\ÊUøò\Öl\Äƽ\9c)\1eÍ\94¬üÑ\8c|±Po\8bÞ©\Û<°yCÓº\7fhX\',\98\Ý;Jõ»\13t0\×U?-M\85̦\É\ÛR\84JcûX\9e·\8e\19ðqòXJ¿\1e\Ãc\8f#-ýh\Êqt\15F£X U+TjL\ 4MV\9dN\81\89«\Õ+0A1\e        ^®À\80\Ä\\4,Lx\Èlp£c#\Å\1c0\85a\bi\81\Ùm´\'      N1\È9\äo\Æö\87òa¢¤t\Æ\è2\ëX\90\10Igµ\î\Æ\×Ö¹\êå\92\81d\91dl72\88ø\é! m\Ñß\92\ 4z\äk6\à%b\ f`ofS\1f \91dÄ­\v\ 4òe\é\ç\ïýã­\97m©rÙ\9aÿ\0Ll@\ë{?D[\ìÓ³Ú«h\ëb\10\f\94E¯]\ae|õ\ë\é;e\1eB.\ÉO³W\90\ 1 <T|}\98Ixñ$ \9fµ\ßLm\9a^û\Ô:»xk\89\ 5J\ëýÁ¯©\Û6\95\"\â\12Ó¦U¯5øû,\13ï²\87\1dK\ 4®6H\7f\1f\ e/,?ö3\95+(\Îy\é|q\Ç1\8b\8bVØ·7\8a.þkÚ\90\84H\Ù$úͲ&a\ãDK\8e\17(e.+7tE\ 6\ÓY\Â\Þ.M5\Õ\0+\18÷\Ã\ä\10\ÛJJ\92¼§: ú3^\89k\Ë\15ý\a­´\1eGLv\ã0iul\'\í9;3H\10Sc¥\Ì\áÕ\95\88¦\ fu)\1f\Ý\Ì\bÑ«^>\949\9cZM\Ç*\9aõx\Ï\Ó.\1ed% ¨\r1!h¬u\çGS6\18ñ\ 3¥óJ\Ø\Å9j°Ç\86B\ 4Ã\8f\e\1d£_\86\84e9+\r 0p\8f\èm<±\Ç\ÅÆ\8b¸õ\9f\Ç?Jt>\Äl\91\ï\ÚÏ­ú²½u\8f1y[ð¶¼UÁ:Á^R³\84ÿ\0\85rT \99Ƕ>,G6\9c\7f\18\äô\ã\8e9\Äû\f\92\Ë\Ã\10\Óo\8eCN0û\ f!.²ó.£-ºÓ­/\nC\8d¸\85)\ e!i\ÊV\9c\å*\Æq\9cã\95\88w\e«{\e\ÓC\æ\83J÷g]U%,}$¼\ìû\1c\19p\88þ°õ\Õ\äI\18\8d¿×\89\ 5¼\ç\Ð5¾\93W°È\9b¯\17$òD°E\81W\9aI.\1d\17f\16\"\Ê\íA¶µ\ÞúÕºÿ\0t\êKDu\×Y\í\Z\9c\8dj\8aR\Ô\f\ån\Â\v2\11\874\87\90\ 3¸±\ÞJ        \f¦\990\12\90ðf0ÁL<\Ò#·\91N\Ò\11Ò\8e\8dv\93µ@F\v37¤ô\í²\ßW\89\90\8d\92¹¤LEÒ\82\95C\ e2ú¢I¶H\Ã5)\86]i\ïôõ\13õ8\87>*Æ\8cÞ\96~\86\ f\äc´ý\8aò½\ÝB\Ë\Ý\16m]·cÈ¢~Ú\94\98\r£²v\ 4bù?±§\85N\Z  \Ü\ë\b¢\ê\îS \106a\0\94²\0p\82\ 5ú|;\19±£\8e8\ç\82ös³:S§\9a7`ö3°·x\í\7fª5¤2\æ,\93\çü\9dy\Õ)\Ä\r\e               \1c\×\ÈÉ»$ü\93\ÃDW £\ÛtùiR\Æ\ffÔ·=ñ\80\1e¯ö\ f\Êÿ\0\9aB\7f\Þ\Ýmg/Å\87\8d\83\Ï{\Z\Ö\Å\13Pª^û§\ÙZ\ë\ 4¬|\Ø!¥¯±v\Z&¨©I´\Þ^\n\Ñ\15X<\81\8b÷\12\0«üf\\\9f\17\9e,zq°+u\8a\çc©\97.\å\â¦A²\112\1d\Ê\Ú;\ 3±\è\ZjI\94\r#;\1d\93òz\æµ,`ͤg\1e§R«\8c2/\ÈQ\ 6\1ce­¥N\8a-\12\93«éµ\8du­\êUº\15\ 6\95\v\1f[¨R\éð±õÚ½b¿\14:\ 5\8d\85\81\82\89\1cXبÀFm\f\8a\10C2;-§      B1\8ex÷o:\áV\íÿ\0Ww\çW®\86?\19[\ÞÚª\å­N\99\15\9c\10\\\ 3\ÖXbA\8c±\86:\9ce\ 4\19]\95X3\82\ eã­¶ù1\í4\â°\ÚÕ\9eiõ\é\Ø\ØV\7f\ e[\ë²>$<\89E\8f¡-{?j1µºÇ¶lù\\V\9eÞ\93       \82\8e¥Y\"\é\e\ZQ `e?d\85¯\Òfi\ 3¬\96MzC6*\8c\Ð\Ð÷6\ 2¯\19¼\82T\95§\nJ°¤«\18RT\9c\ã)V3\8f|g\19Ǿ3\8c\ãù\Æqüg\1cù\ã\8ej\'å²\995\åO\Í?I¼II\99(\8e©\è\rn÷w»s\11\ZQ\ 13q\Â$L\87¬\Ö%r\87\ZS\8c¨4\×j\0\16\e\88*8}\Íe\92\1f92(w\ 6\Ûf\12\12\1eµ\r\13\\®\ÅGAW\à#\0\85\83\84\87\b\98xx±Z\ 62*.86\Ù\10\b\èð\98d@\83\15¦\87\14f[a\96\Ð\Ú\12\9c}\9f\1c\17m}BÙ\90n\Ö6=\"¡°+o¯\í~½v­CZ\à\Þs\r¸\Ö\1cv&t#Àqxi\×[ù¬|«\ëq\Ä{üV¬f\vvGÆ\8e\95\ÜÕ\8f\96\9e²\ì^\97n(\bvÀ\×;¯©¶\é\Í?+S\"=)r\14[\r\12£%\ f®¶u<r\18\15©\Z]\î¹+\1elSK\8f\0¨gT\É\ÃD\1f\12\1dü\ìF\Í\Úý\9fñ½\ßÖ«\ßó·¤\86B\91/°j\91­\ÂU»)£¬©\13ô½\ã\ 5\b;#\89\13$Xò0\ eZÀ\0Hø\Ö\×i¯:,ti\ïMCC\ç[\8e`?¬\9a\Ôq=C~P6S­ºQ\8eô³¤\0\bZþYDPv\Çn@\19\16׿ø\á\12\ 4j\ 1d}±ÿ\0«/\ç\1f÷\Ç3\á\Ç\1cq\Ç0+!¬Ç\8dõ/\Ö6TRp\12\ìþ\e-\Â\Ú\12\14\Úf\v®v\æ¥\17\ZIªK©m÷\Ç\ 6T\11\9bZ\99S©`\11\91\95å¶\9b\Ãy\ê\ã\90;V\ëô\Ây \îfÁLr\19E\çª}\f\8fÄ\9aXRrau]\87Þ±M\19oýIC®\88!°\Ê[xuÕ²\Ë\ÃeXm.·\85O\1e8\ã\8e9\ 3e\è\é_\93\ 6\ÈTB³\96:\1f·iM\Ïa¼ü\11ù\1d\81\Òs\8eD­\Ü\7f\18S\98a\ 66\Úñ\î¬!\Õ7\ïñw\Úyq\Î\ 4\8a2    x\Ä\ e\ÂK!\91\Æ|¤´\ÚI|q\16K\82°óøN\1cq\91\9c\aij\Ê\19YD)´¥O9\95sñ\Ç\1cqζC\15E¶~Gg\'43¡¶^[NH@¯º\Ë\Ï\ e\87}¾ie×\87a\Ç\e\Æ~+[-)X\ÎP\9c\ã³\Ïÿ\Ù',5,0,'','','',''),(42,4,6,'9305bf00e8022c7a','12242958235bf00e8006f72987476580','2018-11-17 12:50:08','2018-11-17 12:50:08','','','Contact Photos','4.jpg','image/jpeg',48,48,1489,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0   \11\12\n\13\16\"\151\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿ø\17t\8f,\ëiý\Çh\8c\98Nq\87\ã%\å\â\Ò\15,\19\10?¾e\ã³grF        ,¼¹Á#\90Ú\95\8a\ÉH±\ÈÛªpVYZm\9f_HL\80Ù¤\Ónj®ª\Ñ\0·r¯¨3_\Ä\ì\16\9aú\r\Â0\97\16\Ütô\8a\ZÃ\89m\×\e!.²Þ«\Ã\ÃÈ\8fù\ fv.À\â?T\9d\13µ5<\99\90\e\9aÎ\96¦\Ú#\9fpI:\99»VU5\Ùk<I\8d|<\f\Ü%aS\ÆÁ\1eÂ\90ø\13\98Ã\8d¼\ÃkLöüN=vPt\1f\bW{v\Õ\ 4\f\ßGö\1elvW®²\ã4}\86«¨Âµ\É\ÃV*±2\Ä~\â\86\1e\Þ\ì\17óû#\Ì:Ó³\ 4J\Ã\r\'\923\ 2\1e[dÿ\0 »\'°\ÞR\çÒ½\84ð·RZi¡sÓµ¢w?9\ÎÔ¨·\1dgt¡\ÊØ£«\Ä[@\1eZ¸\í\84Ih3¦Az\Î&f\9d\fº\Æ\ f\92\8dr\fø\959!@½Ew\ã~\Ìx\'Ju\89UÀ\ê\16\ÛX³U}\91Y\8dy\ç\âb¶5\ZX\8aÝ­P\8b\'\ä¦à¥\8d\r3Ð\82\96\ 5\83\15* D\96k\ã¬\Ç\ég\87\92\×\Ü÷\v\Ê{\16õ\É\Ñ\1c\ËUX­\ìy\88\10\9f\81C#gk©\16-\958r\8b\Ï\ÊB\Z\ÌTs\95bNs\nh&&\Ü)䩦V\9c¦\7f\8d\ fJC\í\ fZ\Ô\ e\88MC¢xbR\É\Î[óWM°¸\ë5FR¿m²»P8Ø¢s\83\e\12\91\85p\97\ZCY±\ÃXÀk\í\800¥r¿É\9f¦-\Âó\96¡õ\9b¥`\139\Ð>\Ðö\1c.\8f«\9e\1e\16¡I\8c¹\Ò      ·LÉ»ôyܪaù\bºò\7fP\Î\à8R\ì\92ÿ\0t\17\18\v%W\9fYü/OõÁ\ÅZO\91©ò\ê²ÿ\0\Ç\10D\93o·-\85\vü\Ãa\Ù\ä ±^¬\8c\bµ-À£\ä,R\ 6\18\a\\u\à!Y\8e      \ç\9etuº·\Ç\ÎU¼÷5\ f\9dt\Þ\Ï\ÞûB[\10\9a÷Q\Ñ\ì\9b\ 2\ß\'ôS®\ f\aY\8b\"P\Ä\n\Â>VQ\Å |        \1e#xË¥\9cø\ã4\9c¸\êq\99m\ÇZ³¥»\8a\n\13±û\96\ã°5\å#g\8e\9eøW]Û¦µý\ fZjy¤bN\8f-\Ðr53c-{{o\Ù+\ïD\Ì\Ø\à¬\13¬P*\8e\94ü#T\9c\e\93\12-L\×\ZCM\éò,fj½Y@\×g\\LnF\ß#N©\ÂW\ä\í\92-8S­HY\ä£\ 2\1c\éó\9bt\Ó\1cI\92\18N\1c,\95\áϳ\î\åS¿\Ú\a­ù^\Ú+\98w~\9e¼Ak>³\âmÁ\e¹´\ 5ª\á\1cl®¾\9e}\a\13h\×\e (\9c\7f\9cMN\Þ4\18,ª^     J\97\811\84\18(\æ2\éb>\Ä\ì¾\Ä{\9b(U­\83Õ\9a\92Û­)jd\ 1vvÓ¢\94\ 6\Ø\ÔÚ\9eT§\Ù\ 5Rw\ 3\à\Ô\ eÆ\8cת1\Ï\Ú\æÁ3Z³^®F\ç\12\17\92ªÂ¶ó\èr\ã$㦣c\æa\Ï\12R&X\11$\â\ä\ã\Èh°$c\8f\828\"\ØZ\Ø$B\Æu¢\ 6!\95­§\99q\ e6¥!X\ÎgO·\rvþ\Û\à]½¬ZA/3{¹ó\85^PQ[Ë\8e\1f_\97\é\í4%\965\Ä\ã\19ÿ\0«%_rL\ 3\95\9ce\r\86C\ë^2\84«\19£\Ã\f8c° \8c´0¢²\Ð\Ã\ e\12\Ó#\8e\12\Ó,²\Ú1\846\ÓM¥(m \Æ\12\84\'  N1\8cc\1e{xy\9f¶Õ /5[-&\×\16\1c\åZ\á_\99«\Ù!dGl¨ùx\19ø\â\"¦\"\Î\15ä­\92\ 3><²\ 5%\87R¦\ÝeÕ¶´\å*\Î<F=SV§i~»ùJ\97c2@\éJn³n£û¥r\îOn6±=7\a\ 4\13ù}Kwÿ\06\f\b\èæ°¥g\êÀ­¥?\×   ñ\Ô\Ø\14\8bW\"©4·[\8f&Rµ,µ±\84\å\Ì\13V³CÚ£þ0¼e?\19\90\85\17\vù\Ç\Î\11\95e?\Û\ãÍ\9f\87\87\87\98­uF\8b\Ö\Ô\ÈJD+¯½\17\ 2\Ñl\86\á9\Æ^\ËeH\17 ¤¯8ÿ\0\7fG\vZ\13\9f÷\94%?9\Î~s\çÿ\Ù',6,0,'','','',''),(43,5,7,'9305bf00e803570d','97971161215bf00e801fdd7464746900','2018-11-17 12:50:08','2018-11-17 12:50:08','','','Contact Photos','5.jpg','image/jpeg',300,300,11005,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b     \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 1\ 2\ 4\ 4\ 3     \0\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b        \n\11\12\13\14\15!\16\"1A#3BQ\17\81\82\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/r9¸f3\9cDëº\9e±¾\8fð±g\ë]L\ã\Íϵ[d_\Õ\"¾þW\äñ¿\19Ķ¬\94Hx\8c\ë«x\12.¯+\'=­\91\ 2ûY©´­\97\18f0Hð\92\11\åF÷\98}`>V¹\ 2\Æø<|\Þ\r\á\íRľ\Õ\15\94\ 1vM¢¢/\ÄyÀ\8b¸\ÛZ\83\13d´\í{\Û.%\ 5F2\1c²9#\93\181\ f©\1e\\ó?\åC\9b¤\96VõÞ\8e\Â\r\å\95ùMÆ\95¼M\ãG\a\Û9À£\ eO\1d·W\9aøag\Ä,\8f\"Q\Ø\á\8cx7\Ú\æa\Ë\Ìõ\ eòù6\ä-\96§Nл\85\Þ\Ý\ãq¾\90ø\Ôz¶¡\Ø.À\ì\Û-Ì¡\80²\8b\1e¦\8e\9bn\9bic!±£\9eI\ 5\ e)\88\Ð\0¦sp1½Ø\95×\8f\ e\98ú°9J\92£h\87\Û^I\ê\×\e\\Î\89\996\1d\83\Úu\í«x\95L\è¸8®«x\êú\83\99\90\94\87úV\Ñm©Ø\82P¦bH£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8b\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)AT\É2\Þ1\12CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ø\êy\ï¶WPKúg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ek¾º\ê8­5¼ù\Îo\Æ#\àÁº$\Z\Í;\Õ\äù\9eG7\9c\æ+½\Ò,;\19\16:\Ç\1f\×<Ô¼e£¸ù\95\1dKM\ 4\82Â\85\88\9d81f\Î-\95¸cM\95\17\16Y\8cg\8b8\16\8aB¾\"=;}µò{.«\92v\0N\ë÷U²XR\8b\ËûEFKi¾Dl\80\9auW\19\18¢\91(²*ó\ï\1f\8cú(¥²§\9f\n\ e\aõ\11ò¿\Çÿ\0\88®\8bø\Û\ÔbRuÛ\86\ 3¸¼\11q°òö\Ù\n\1e\Ç\Ê;,\Èùqði\9b\\øå±\8b\f3\8f:MUd3\ e50\ç\Z\14\1c¶/Å\98Ù¢\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\88\8f©\a\bN\85\Ð\Øô멶\95óûc¼P\93ø·|\11k\ì\ë¸\ f\ e\ 6\ÙÎ\80ü\É\ 5\8f!Z\84¤n·M8\ 4­«x%\\lÀ<X0õ½®±]¯kÙ·½\9aûs\Ü\ï­v\8d³hµ\9by±lW\93OeouodwÉ\9dcc:K\Èy2¤\9c\8f!JG\ç9\Î}±\ì\Üc\18ø\1e\Ùý¿o\ëû\ãÿ\0|{\ç\1f·üñ\9c\7fó\85ø§\83\é\çô\Ï\a\7f\81¦÷{È\96\93\97j3\Ç\1eÿ\0\86zײ\Ã0Mq\e\97Á\Ü9f¦PFñG\96Ö²M6\9d#\Ùñ¢<ro\ 6Û\93\ 6µa\r\1d\156³O]¯\ëµP)(\ê\"\8a\reMdQB\81\ 2 qñ\18\"\Å\ 3\18!\r¿¾}\9a\Ü|\9d\97=\ÙË\9c\çg\ë\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"-@ù¹òa®ø¼\è\Öõ\ÌÃ\94\12ó\ e\é÷ñ\×\0\ë\8fcJK®I·\84\9ep>D<>\97U\86\Ò\ì\e\v\Å03EW\10¯­\1c©ÿ\0\8f\10\Ô\ÞòW%o¼Å¿m\9c£\Ê\e]\Æñ\È;\Õ\ÜÍ\8bl\Ú\ï\åf]­Õ¼ò|\Ï&A=\981\r\8d\Ã#Ã\85\14`\83]\ 41«\ë\ãE\83\16<qtuû\9c\ç?\×?\Û\ÛþXSDôµx:ge÷\8aÿ\0 }¨\Ó>þ\aã\9b\91\e\80ô\ëØ\99|~N\ä*Yc+÷+*ùaÀ\v¨j\92\Z?Ð\8b\97K}\9dð$L\ÄZ\á\×Q\Ûβ´\0\ 4P\ 64`\8a4hÁ\18#\Ç\0\Ø\10G\0Y\81\88!\10\ÚÑ\88B\e\8d\8dk\18\Æ\á­n\e\8cas\",=\î\9f|z¿\ã\ã\8b#s/ky\19\9cq¡M¸\1d\f\e\16R]\ìS\ì-H\17\1d°kiu\è66\Ör¾¶ü±\12¾\1c\99\8ef\\fGx\ 1\8f\ç7z\Äü[ñ\äv\9b\89ªù·°F÷\e      \13^\Ñløø¸{\È\æ¹\â\'$à\8eH\â\1fÀ¯y\f  \19\Æ^ÁD#\98\13\16bz\Ý:\82ùXdþ\96vF4/\97¶dDÛ¸\Âl¬3\ß\1fÍ\88f²¯\16]\íï\9f\87\çc\1eø\Æ>\7f¿¾6\9dÀ~¨\ï\ e\9c\ß2\9a\8eϱ²8ke´\8a\ãÉ\87\Ë\Ú6\í©k\95enq\8fÆ\97¾Ë n \Òg/\131\92Ù\83\ es\ÈF|¢\Ç<¦o\ãRܵ-ö\8e&ͤl\Ô;v½=¬|;­r\Ö\r\Íaðð\88øk&@1Áö`\'\11\1e\17?\ 5\e\9b\e\97c\v²¢\"\"\"\"\"\"\"\"\"\".2\10a\19\fb0B\13\1eB\94\8f\ 6\19s\ÈG»8k\18\Æ\ã.{Ý\9c5\8d\Æs\9c\18\ÎUFÞ¦¿!ö]\âò?¿\éZ\Æ\È\Ë>        \ê\Ñdð\ß\1cƪ³\Ì\Ú\v½\8e®IK\È[»@\èQK\Z\Îmù_ª\96)¤X\ 6<}M\93!>\11.,bb:\88¶=\â\8b\Çö\á䯻|G\Öj\ 6O\85ª[Z;då\8d®$W\È\ e£\Æz\ë\7f?a\9f!\ã8\v\1c\Öùdmf²L\7f\É<++¨ön\85&\15|\Ü6\é>!\âm\ 3\828\ÃD\á¾*\Ö\ëõ\ e9\ã]f¯P\Óuª¨\à\89_OEO\1d±¡Ã\8d\Z0\Ã\1c,k[\97¹\80\bC\82=ÿ\0PDÏ\8b1\èè\88¼G\9fz\×À=§\Ñ$q\8fcx\7f\8fù«@\93 3\v©ò&·]²S\âdr\f\Ñ\æ\ 6\971¥\Ç8A&<\98\11Á*<i\"#\ f\18\ 4\1c\12<¾zE\e§\Ómý\81ñ\8fasm[Z\ 3]\Þukn´e¥ À8\Ã|\çqf\áa\98§x\0\èÒ¦c^Ú¥Ø\9cųdxW\15\95µ\7f\ 2Àú\æ\9a\ã\\¸µ×¶\Z«*+ú+)\Ô×\94w0eU\ÜS\\U\Ê,\e:«Z\É\Â\ 4\Ú\ë*\é <9\Ðf\02¢J  c\È\10\Ê7³\1f5lw \ÞW{Á\ãsl\87\9ed½¨\Ô]g\1e\Ãb\â\1d\8eD\8d\83\8aö¶\ 4\92\nX\ÖZ¬£\àu¯\96i\19\912~ºzk  \Ò#\ÃýJLè±\9b\15Ö\88ømó¡\×?-Z1ªj\Ã\e\89»5©\ÔÇ\9f\È<\19oi\1cò\n&\84X±\ØxöqH\É;V§\Z[\9c<\ÊtpYÅ\8c\èç²\83\f¯\95\Z\ eò\91\11\11\11\11\11\11\11\11\11\11k«\Ë\'nkú9\ã׳ý\8e\96\18²¬5\1e7µ©\Õ`L\99\9a\è\Ö{®\ã\86\êz\8dc\ç·\ 4$2X^\ÛÂ\89\14\8d1\ì\9ah\Þ\Ð\ä·\ä\'RI.\\©ò¤Î\9d&D\Ù\Ód\Z\\É\92\ÌI2¥Ê\92G\ZD\992\f\98ò\ eg¼¦1^ò\14\8fs\Þ\ç9\Ù\Î\7f\9d\15\9f>\8fÿ\0\1f\8f\ë\ÇKv\Î\ã\î\95s\àr?o¬\"g]\14øò\"~\1f    \é²d3N$a\92L\98\93#\ìöò®6\90[\Â\1c\12J\85>\rm\84s>\9a)\9b/ôDDE\n\1f\81º®x\Ñ6¿!]M\Ó\7f\1f\9c¸ò\8f\16\1c\Û\Ç:\9df^^Z\Ò\êþ86\ËUI\ 1¸|\í\ëW\86\19¿¦\Æ5\Åõ@3NøÖ¿\8dE\8a\n\ÙQ{\ÏY{+\Ì\1dB\ç\ e>\ì/\ 4\í2u.I\ã{\ØwtÓ\86ù\19\81`8\ç\19&P\ßD\8d&!,µû\90\ f0\í`¶Lc<\ fû\áJ\85`\bs£\\õ\ã\13¿\Ük䣧\9c]\Ù\Î<>#\Ë\Ø*\85Q\ÈZ¹³\86X\éÜ\8dJ6AÛ¨¥\ÆpÀV\Ç\r\Èff²cA\886P°\ÉUr\'@pf\e\88\88\88\88\88\88\88\88\88\8a\">²¾r\9d\Ç~6xó\88\"·\ì\8d\ØNv\×\é,\9b\8f¯\ e\f^8\v9\14R²\ç7\ìÈ\99\1cW\8cn\Æ\1cI\81#\Ú\ì\a\19m^¨½s\808®W:ó\Ç      ð\8c\19\99®\9b\Ì|¹\ÆüW\ e\fis\ 2W!nTÚ\8cy\98\e²Ö\931Kn\Ã\á\8e\Î\Zü³\ã\9c\19W ð\'\10\ë\\\ 1\Â<GÁúu|\n­_\898\çN\ã\Ê8\15`\Äj\è\Õú\9d\f\ZP¶\14|0m\ 4\1eH0´ch\Úü5£\eq\867\Ö\Ñ\11\11\17\ 4¨±§F\91\nlpK\87,\ 6\8b.$ \8eDiQ¤\r\Â<y\0+^#\0\Â{\Ä`\95\8e\19F\ç1\í\Ës\9cf oQ\ç\8eAøóò+º\ÇÓª\9b_\Â=\8d\ 5\877q;\07²\rC\î.$\83y\ÓÀC\Ë)\8eú\r\8dØ´÷\f\98\10vj\êJ\98Ù\8dS\97-\ 3¢\98ç£\83º¬\â\ e\êò\'P6\8b\93\aY\ìþ¤[\8d\Z\ 4\É\ÙmdnL\ã\Êù\Öó\85W_òù\16÷h\Ôã¹²J\11\93\19«\ÔpI_Xa´Ã³q\11\11\11\11\11\11\11\11\11\11A/\Öÿ\0±7\1cC\Ð\ÝK\f~\1f\9eH\åÝ\8b$ùg##Y¬k5\8df[ñökÃ\97½\Øv_\9c½§v0\Öü3\97\×v\8a\96\8e\0Ô¹÷\Ì\17\v3p\16d\Â\á\Ý7}\ç*¨\8f\10\äD\97°\é «¯¦\14ø\Æ\ÆFx¬\93±þKZ\ïò¥\82,\8f\89>\9f¨\96\è¢\"\"\"(\90ú\Äú»cÌ\9e94\Þm\Öi!ʾ\ë_0\Ó\í{\r\88kA\"\è\9cy²\Ó\ÜjwUÌ\9b\87\8aX*\àZ[\Õló3\9fÉ\8a\10\Ò\È÷\8e\ÃIl\81\ÕÊ\8bcþ ¹²W^<\9ct\9b\95aG$©5\\ó©k#\10¾¯\93q\ÉN\93\ÆD\90\e8\e\83\10[\83\åHc¾Yx\ 2F5\84s\9a\Ç]²\88\88\88\88\88\88\88\88\88\88 \Ë\ë}×\82N¿ôOkll~D^b\åMxòÿ\0\9b9úg\éT\96Qcg÷\ÈÛ\8c¾¶aqí\86½þ\Ùùe\Ø\ep\Ê\èQKOÑ­­Í\9f\åKs\Ú\18\Ñ\æ·]\ê\Ç%V\Êv]\9fµ³ö-£B}~\18Ï\8e[\91º5%§\Úÿ\0\9b\\\×4-k\1f\82=ô\95\11\11\11\11jK\Ï\r\\K_\ f~BE,\".\"u»w´\8e\â1\8ep%\Ö\n<À\189~3õ\97\19\13\87ófZü°\84\1e3\ìGc4º\"Ì¿\1dzF\ÍÈ\9dô\éƧ¨V\9a\Ööge8n\ÄQ\0à´\8d®\×wºM\96öwø\ä\13\1c:º\Z\8b+C\r®q\8a\18o\14a\1eC\Ä\12^Z\88\88\88\88\88\88\88\88\88\88¢\91\ë\n\á(\1c\89\â¬|­$Y,οsO\1flµ®a\ e\ÇG.ûw\a\8d$\È#\ 5\ì3\Æ\Ä=\8cñ\È)9p\Û\"LS°y0FAU|\8a\\\9e\8d\r uþO¹\ fRx³\97\ì½c\Þm\84\7ff|F\íceÔ\84\à\ç9\Ï\Ï\ e\a\91¸kr\Ü\â;¾ynpÏ\95¢\88\88\88\88\8bH^£\1e^\Õø\8bït_²\Ø\n  9\e\8e3\Å:û^÷d²¶\r\ê\Î\rMt`\81\8c!M\83\95ø\8eG5­\14f\9f\12$\14a\e³\9aq\11I{Ò\8b\Õ}«\9f<±q§+Á\80w\é]T\×ö^U\ÛmpøÙ\87\Z\Ú÷^»\Ò4ê¹\82v\v3/³\97ska\ 4ñÀ\Ð\ne\b\87.dlÈ\8c)v\Í\"\"\"\"\"\"\"\"\"\",>\ï÷Y©;\8b\ e\Èõªù\92\7f\17\968§j\×!\1e\ 4`I´\87u\9aòM¢\97P\Ù\ 28\Åh\eh±1\bù\ 1þ\92»\ e\Ìy,ùG-\1d\en«°\è»Vͤmµr(ö­7`¹\ÕvjYy\16eS\ì:õ\8c\9a\8bª¹9\ 1\f\fȯ²\87&!²\12\94Y ]\91\91\ìövzú\92\a¥7\9aµ\9e\Zó\ fÄ\91öyL\88>^\ã~M\á\Úb\17\æÀºûa\83W±Àa¤`o\fV}z\94\92\9c\10\94\83\1c6\99²%\ 1¯¶\á\11\11\11\11@_Ö«\Ý\1d\1dn\èV»>Q7\18û\ 3;\11\Èø\81e\91F\85¯\â§c\Ôt\Ízö¹\99\11\ fú¬\é³vH\1fn%By)B\7fhó`\ 1ϯ½\15²~\97ÿ\0\17\93:\v\Ñ\àò·)\ëM§\ìgk?J\ä\rÅ\92Z\Ü\Ùk<uø¬\91\Æ\Ú9I\98\85\98u\92\7fm]9³±_³\Ý\Þb®\Î]Qã\94\92eDDDDDDDDDDET7ª³Ç¬þ¡ù\f¸\ç]R¦cxs·1\1fÈ\95³E\17\18©\×ù*&s_ºj\8c|Hm\8b\ 1\92\16\ e\ÃX\e\19ò-\î$\É\Ùg0c\83\r\8d\1c`\17»u{\99\ f\×~\Èð\'<\ 36\Ù\Ç\ fs\ f\1còD¸ôG\Ä{[\n½?m©¼¸¨\88÷J\84\'º\æª\14Ê\92Æ\93(\10\ 2ibM&\"\1c\Êô.(\ä}w\98\8f9_R\95\1ef±\É:V±¼\ÐÈ\8b(SBú­¦\9a\1d\Ì&\âPq\81\99\fÆ\88®kY\9c\18ok\98\Ç5\ÌÇ \"\"\",.\ï\çzø7\ÇgY÷þ\Ëó½\î+\è5:\Ó3]\×a4r¶=\ëo\95\86\Æ\×õ-nµò\"\æ\\\ëK3Ä\8es¼ñ\á\×F+\æN\95\1c\9dL\ fv{o\É\1d\è\í\17\9b\952\Èû_,\í\93o±G\Zd\99µ\9a­.]ô\Ñ\ê\Õ\ 4\90\Ñc\10)k\86\bù|x\95ñ\æM\Ì\Ë&WB|\Ò\ 1\98¬¦\v\97ðO²öÓ\95ôþôö_Y\9bQ\Ön&\Ø\à\ì\1ciª]×\92?ümݪ\9eÉ\95v\ 4d\914®\Ñu\é8\8fd3BpOsh8\12\996=LQFÙ¬\í\8f\1e<H\à\8b\14\ 1\8d\120E\1e4h\â`cÇ\8e\164A\0\ 2&´b\b\86Ö\8cB\eZ\Æ1­c\e\86\18\\È\88\88\88\88\88\88\88\88\88\88µ/\æ\93\Æö³\ä\ã£Ü\85\ 6®¯w(\ë\Â6óÁ\Û\1c°}§\Öy\1e®!G\b\ÑÉ\8cà¡\8fm\15婶d_iS\ê¤J«\19\18\É\ÅùSI\È\Üs¼ñ\16ùµñ\8f&k\16\Ú^ý£^N\×6½^\î?\ã\Ù\Ó\\\×\17!\93\14\ìk\9e\"³9\ÃM\16dR\9e\14ø\85\ 4\12\90\ 3\93¥+D=#~Fª{\1d\Òsô\×vا\Í\æn¤<u´\ã¶È\86\ËN\12»<\8cqð(ò(Ñ£\18:\88\à\Øk\ 6\89\1c\92¬C\16²=\8d°Å\89Ѧ\ÙK¡\11\11\17\11\8c(\â,\89\ 5\18\0\ 1¼\Ç9\9e\ 4!\13\14¤~ZÁ\8clk\9e÷½\Øk\e\8c¹\Ù\Æ1\9cª\8b½H>Sv\Ï!}\á\Ûøó]¸\9d\e­\Ý`Ù¶.6\ã\1dm\8f<8w\9b=<\Â\Ô\î»õ\Ýw\Äa\93p{xö\14T\ÒN[F¦\8b\"E,ðÀ\Ød\Å\ÄwVý}=¾%\ì| w\1e³;õ4\ìus\82\89]¼óU©#\àu»a#XBý\17\8a Î\91\9c\84\96;#\Íù\97\ 2\8f\12\×1uø¥\ 5\8chB»\85`;xõMSZ\ÑuºM;N¤­\Öõ}nº5E\15\15Daî«®\86<\ e<X±Å\8c5\8ccq\î\çgÜ\85#\9eb½\å#\Þ\îÀ\88\88\88\88\88\88\88\88\88\88\88\8a\12¾©¯\ 6ù\ç­FóȧVtù\Ö\\\á¤\Ö\Åg9qÞ«\\ùV<¡¦D+òMʾ¸Dn\'íº\94R\ZD\86\13\ïo\êG\9ah\Ñ\ï\æ\8f[¯©­\ÅgW\8d\Þöòo\8e\1e\ßq_iø\Ä\Ù)µ+/\Ñ÷­w\"û\83ºq\8dô\88 \ÝõB\ fó+ñù3«BÙ\94\Å$\ÐÅ\8d°\×TJ°\1c\Ê\àË\81*\è\î­vc\89û\85À|g\Ø\î\12\Øc\ì¼u\Ê:\Ív\ÉG,N\Ëe\Ãü\Ø\ã,\8a\8b\88E`f\Õ\\Ö\95ù\8faWe\16\15\94Bc\r\97\n1\1dõc \11\11\16¾<®sÕ\87Yüq÷7\99\è\ì\ 5[µj\1dz\å\ 3\92\v\8cû;o\93¨\ÚÆ \es\86»\àü\Î#\b\×û±\Íúó\91?\ 6úý\é\17\9b6e\94\Év62\äÏ°\9f$ógN\9a\996d¢¼ò¥Ë\94w¼ò$\È;\Þc\9c\ÏyLW¼\84{\9e\ì\ç?Ì®\ 5ô\×tâ\8f¨~)ø\14Ì«t\1dó°µ`\ì\a\9bXJ«\Ç\\o\10b\96¢\92ò)\86\13bV©@\184\"ü\812S#\Å`¤{<\7fX÷æ\88\88\88\88\88\88\88\88\88\88\88\88¸L\10\Ê £I\b¤F\90\"\ 4\à0\ØP\98%fFP\98\98A\91\8es\b7·,{3\96»\19\Æs\85U\7f«\e \Ü\1d\Ó^ò\èü\89Á §ÖªûQ«í\9c\87¸q\Õ6X\Ø\Ú\ÎñCqS\1eòý±\ 6\ì2¹\9b¹v\ 6غ\18\80!\9ad        ¶\æ$«\e[ $\8a\9aߣ\13´\Ü÷\13·Üµ\Ô&ls\í:\éy\Â{\7f/\ÊÖ§\8aL\Èz¯\"k\Û6\93O]:\86fIôT3c¯\ØmókXὶ\12k\85>\aá\95·\8e´²u\11\11hO\Ô\ÃMyy῵\80 |\81É\85[¯\\\Ï||;9\Å\1d-¸\ì¯X_\8eq\í\1c\ÕQ¥G6s\î\Ü0¹Ë±\9c*|× q=\15v\Ñ\Ê|i­\\E$ê\9d\8b\904\Ú+HB)\ 2Y\95\Öû\1dm|Ø£0^3\b\92#H(\98A\10e\e\9f\87\8d\ív0\ì_  \Ç\15U\Ô|}£\Ó\ÔB\ruef£®Â\83\ 4\ 2`\ 5\164z\98\83\18Z&c\rfZ\Ü\7f61\8f\Ýÿ\0,»9vs\9c÷DDDDDDDDDDDX\Ñ\Ù>\ãu\7f¨:U®ÿ\0\Ù\1ep\ã¾$\Ö\ê\ 67\1c»^\Ë[\ 2\Ä\å\90\ßû\94H\14\î>l\æK°+\85\Z\b\81\15Ø\91*D`5ø|\81\81\ìϬ۠\Üe(õ\9do\â\1e\\\ì\Ù\É[ Ð¶\ 2°\9c\ 2ͬ\ËcIJf\íD]£\éyó\82<°5\Ù-tV\ç9 d;\ 1n©\ß\ê»ò\é\Ü=\9d\9a\97Bú5¨Æº\15\85TKZ\í\7fOß»\1cz\81^\14\Ði\Éoc[[¥\Öj±\å\Ë\ 1\ÈûÝ\9b\ 3¥`bO)?\164S\9e6\å8\10>®^g~¹+\95v~\8fõ\9bP\ÚA\9f\Ö\ålº5&Õ¿\éQd\Æ>\ZViº\8dÅ\94yVq\ä\à\"4b\î\11²\ 1<\93#\ZQB\18\Ò|ò\Ç\Òeÿ\0i\8eY\9f\ÏþHü\89óOk9z\ã\è\rÍ\85\ 6\9bGÇ´\13\ë\"6S+\è\ã\Âu\95Ì­v\96·2_(5\9a\91õø\ 5³\91:\Ç\11#\12|\á\Ê\Èx>\90\12q\ã\ 4\8e\90<\ã%\97\9eRÞ¢ºF1\íï\87\84;&D\Ï\7f\ß\ß\"\Ã?¯\í\8c{-»ô\1f\Ä\ßD¼hB\Û\ 5\Ôn\19\1e\8fu½\Z;ö\í\ÊûgÙ·\9d\Òò40\8cPjϱmv\96r\âRÁsO&\1d=n!WG\99ai(qðk)\8f\91\11\16\Zù\10\à¹\1d\9a\9f\ 2\13ò+\ eY\ë\ç)iµekp÷\86\Þ\ÓS²mA\82Ì°\98|\80\Ù2)#5\Ì\Ë\1cv\8f\ fönr\ìQÕ°\Ð\\\ê\97÷\9a¶\Ç]&\9f`Ö®,¨/ªf3\ 3\99WsO4\ÕÖ\95Ò\99\8c»\f\93\nlc\Æ;0\ça¥\13ñ\8c\18÷]\9f\89¶H:o)ñ¦\ßfü\8a·U\ä\r7d°+FC8phö:\Û9oÀBÂ\94¹`\"\91\18\84B?8ø±\8fvp\Ü\ß\13\Ç\Ö\Ñ/ô-\"ö\ 1\87\"\ 5Ö¡­[B\90\'a\Â<K\ZhS#\18o\Æs\87\f¡3\1e\Çc9Ã\9a\ìg\ß8\Ê\íè\88\88\88\88\88\88\88\88\88¼ÿ\0\94¹W\8d¸GB\ÙyG\97w\8dk\8ex\ïM«\95u´\î[u¬Z]~\8aª\10I&\\\ë\e  o\18A\1e4q\14\å~s\9c°\"!3\8f\83\1f\9c@O\ËW«\Çm°³\Ýx+\ÆtH\ÔUP\ç\ÝkSû=±W\nt\Û\b\8a\Èú\â:cHp\18QؼƯ\Ù6(/®\Æ+óøô{=M¬[@ï_ \îg\92¾\ÆÅ£¨o,v³±ü\8b\"Fc¶\Æ\Ú^Í°È\8c\é\æ\96ö>\Îòhj5MR\ 5\85³\87\10\'\99IªR\96\10!2\16%F\8eù\Ñx\Êôuq\8e\92-k\95ü\8e\ï/\äý§è¯·\ f_¸þD\9a\8d\ e\8eÁ¯\f¯\Â\Üö\9fv\Ûn.\89&3\ZH0\ÅUCe\ 2dªûz\Ã\åªg\\+×\9e  \ë~\9f] p\1f\10ñ\×\ fi\95Qÿ\0\12\ e½Ç\9a\95.­^(ÿ\0c\8dð#*¢F|\9c\ä®\ËòIO9\\\ïl¹ùö\Æqì\88\88\88\88\88ª\89õGx¶²\èÿ\0v-û\eÇ\9aĨ\9dm\í½õ¾\ßS`\f¸Õ\9a\Ï3L\É\î¹\vPs\9a\f\b\bbm´\83\9b>dû\12\ef+G\Z\ 5|Q\æ/ª\Ý_L\8f{h»\93\ã#\8bu)6\16\12yC«±¢p_\"\â\êi\ç\Ú\Ú\17_\81\Z^¿²\92|\â~e·\ë4\13\ëeK\9c\14\9dµ\ç\9d*\Ê<\ì²Dh\88\88\88\88\88\88\88\88\8b\Æ{\ 3\ e$\ê\ç\10o<\ë\Î;\95^\8bÆ\9c{G:ûb¾´3\19\86Ç\83\14²q\n¾;\9e\Ò\Ø\ÛMÀ\1e(\15ñ½\Ï$¿\Ó\f\e\nVTµ\æ\Ó\Î\7f9ùX\å[\8dj\8e\Æ\ï\8e:\83ª\\\10<o\Ä\11¦¼\1fÄ¡­\9a÷\×\îÜ\89ô49¶¾±È£Y\8a¢NM[Hp\ÂúDù\95ð\Ï\e\14üYx ì\8f\95¾t\17\14ð¼Fk\ZM\13\81/\94¹¢þ²\\\Ý7\8ei\89\9cg\í\90(\å\88\ë»\Ù,\Ïþ\e®Å\9d\14ó\1e\á\à\Ò\á°ñ\Þ[e<nø¯\ê\7f\8c\ e\1e¬\ã\ e¿i\90\äl\8f\8b\1fø\ç\98v\Z\êóò_#[        §Ám¶\e¡\a\1d¦t\99?UEc£T@\ 1\19\ 2¾$jØ\90a\Å\Ù\Z\"\"\"\"\",[\îWO¸G½}{\ä\ e¶óö­\ ff\Ð÷Ú\92\Ãs\8c\16º\Ç_·\16[\"\9f\95\87\ eD\v\9a; Å²\81.!\ãI\f\98¢($G8\àU\ eùmð÷\Øÿ\0\13¼Ë\9dS\92`H\Üx[m°\92\Þ$\ç\Zx2q¬\ì\à\Æ$\É\ e»xo¡\80£\Ý\â@\8eYF©3\98+hq¥\ØÓ¸\99\81y_GÖ¼DùI\å\7f\14]©ª\ç=\1c\136n=Ù¢F\Ôy»\8c\878\91¢\ïz.g2W\Î8\9eqW»hÖ\8f\93X\ë\12¬1\81\8c¦°®lʶ\Û\Z\Ò%À}9\î_\0w·\835.Àõ\Ïz«Ý´}¦\ 4s\95±\ f\8c[k\96o\1e\7f3_\Ø\ë\n\ÑN¨¸®\92\ÃÃ\97\n|h²C*,\98\beF\95\18\19P\88\88\88\88\88\88\88\88¸dH\ 4P\ZT£\n4h\Â$\89\12$\10a\0\0\11¸\861\8cG4b\10\86\×<\84{\9a\Æ1®s\9d\86\ã9UJú\97<\Ê\Ýw÷²w=ná\9d\9a\Ò7Tzù±\Ùk¸\8d\18\86\89\ f\94¹*\92^kï¶\8b\ 1\81|\ê\Z+8R \ëBs\7f\ 2d\90\9aí¥¸\8a\r^\Î6\9b¼px\î\ç\8f&\9d\99\Ôú\áÁ\ÐY\ró\È;N@\ä+8¦\91¬q\86\8e\ 37õm¦\é¢$wO\98д \×õÀK\8b/`µøFtʺ [\ÞT\Ü{\Ñ~\8dð\1f\8f~¼\é}u\ë\î­\ e\8f[\Öka2öý\Ñ#\8fb\ß6A\Çk-6\íªh±\92M¶µ\97\99\12\Ü×\94\82\89\99\ 4\18r\ç<\Æ6b\"\"\"\"\"\"\"òþ_\á^%\ì\ 6\87}\Æ\1c\×\Çz\97\'ñþ\Ï_*ªûSÜ©¢]TX\×\Í\1f\Ó21\ 1(np\Û ^\â+Àñ\11\â\ÎG\97ü\1d\9c(m÷\ÏÑ\99À¼\9bou½ôO\9agõö\ÂKO9¼C\È\15\96;ÿ\0\1fÈ\94\ÈÒ\8c\èT[\19.¢\ìú\Ó\ì\ì\8a&\89\Ò\ÉsMQ\b\"\85\16¤ls¥\vS\1dsð\×\êUñ\1f¾·\98z\8b¯\ë\ey\ÞcG¿\Ðø×\96µ]\ßE\Ýb\15\91\ØI\eG\1c\îÓ´¨vN\vcEl[A\ 2\ e\Ò\04°«\åb\f\9b8\87\93\7fR<\Çù$\11¨µO!¾\'ùs\881KW_\ 3t\æN%\98\1dÞ\9a\Ú\î\14aF»³\a\16\Â-\9eɯºd\ì>lJJû\9d¶8\19\93\Â5\ÄO¤&.JòǨ\Ë\Æo\ 3Ì\8f\13\9boû\'Ä¢\99#0¡\Úo\ÝA\ìn»K:v\ 2\19\85Ym7\8f[\n\ÞC@\Â\15ͪ,\Ö5\827\ÉøÈ\89\86ú\7fYüúø\93\95\ë5~(\î?\1fÁ\Ù\ä\Ø6®³]\å([\1f\r\\\Ý\Ì\Ì\\\Í+h\ár\85>ªK`Ç\8aÜ\96\7flF5\87\ e\çC\9b\88\ÛaÕ·]7x\82\ë=\'m\Öw\n\Æ9¬}\86­}U°Acß\8c\8c\99r\ãµ\Î\Ã]\96·$\Æs\86»8\Æ}²»:\"\"\"\"\"\"\8c\9fª;\É~z3\Ð\Û\ e\1f\ãÝ\85õ\\ÿ\0\ÛV\Ûq¾ J\9b\9c\ÕlÚ\8e\85ø\8eþ>\ä*\çð®¼\86\ê\Ød\r\1dMõ)Hz}¦\ê\85\ 6\Ð\Èû\eT%EE­ý­e\r\re\85\Ý\åÝ\84*\8ajj\88Rl­m\íl¤\8a\1dueet1\Zdû     ó\f\18°¡E  dÊ\92Q\0\ 2y^\Ö\æ\à?O¿\8a*\ f\18],\×c\í5µ2û5\Îpk·¾yÚ¢E÷$s\É|É\9a\9e\83W6Id\Ím&\9dC>\1c\19\f\e«bZÞ²\Âô\ÔUs\æH\ 3\88\88\88\88\88\88\88\88\88¼Ã\96¸O\87¹\ëR\9f¡so\17h<µ¥ZG\91\12\ÃV\äMN\8f\95\Z[X\É`-m\ì)±²)c\10\Å)\98\1e\e MÀ\8d\87\8fݹ\8b\'\91ÿ\0H\ÇJ;+\16÷\7f\é´ù\1dA\æ9D|\ÆkT\àe\Ç\0\Ý;\1f¥³ð\ßÇ\9f\\iz\89Y\ 6ºLJ\ç\é\97\ÔU,°µ5\Å\ÕMÁ\84ö\Z\12\9b¸|ºú|»\aa\Æqù\1f\93:\ç{y\89\16±\r¤l\93¯8+\99j\â˧\15\85\ÝD\vH\98Ô¶\Ç    Õ\94ð,%O \81¸\ÔV\96¹\86eeu\ÅigL\ï\Âת\8b\8d»\83\7fªõ«¼\Õú\Ï\aóõÑ k\Ú7$\Õ\16Xx»\95®\Î\10\8a%l¬N,\99\ZV\Ùq`\âÀ­©\9b*mtó\æ¬\11.§YÙ\9e4\19\8b\b¢\90!\1c\ 5\19\80a°Á0^\Ò\b¢#pñ\90df\\\Â\f\8cv\1cÇ·9k\9b\9c9¹\Î3\8c®DDDDDEQOª\ 3¸w=¬ò¹Ëº\ãf8\9a\17Y+jø\17C\8d\Z\ÚL\ê\898©\Év]«b\8d^f05\166\Û\ 6\Âz»P\83&t\9ck\90$\18£\ÎY\ 6\16OúJüv\vµ=\é\99\ e\93\'\89z\8b\ 1\9b-+\8f\19¯©\Øù¢\Ó \8b¬S\15\ÒbË\838Z\ÝDÉ»\1d¥i\982\áÆ£\92#\89øg\Î\ÓtDDDDDDDDDDXs\ÞN\89õ\Ë\Èg\ 4l\1c\ 1\Ù=\1e¿l\Õ\ì\98yzý\Æ@6lº.\È\èÅ\8d\13i\ÔmÛ\86Ì©¶\8a\Òe¯tS\89²Á\î\13g\ß\ 1(iýòµ\ã\'\99üWv§b\à\ eO\89am¨Y\88\ÛG\vò\87\904\\\9d\ÇÆ\92\àDz\815\82d\'\ÞQ\1f8¨\ÛjG\90Ë«²`dH\81\n\15­_\Ý4\8f\9c\r\8b\9fk\áø\ì\íf\îK\ÎV\Ô(¤\Ì\ëÿ\0 \ì\Òòû®A\Ô\ê±ö\Ì\Ó6\v¹²1\8b}¿[\8eö¶¶A\Üû½¢¯\è9\87iq\ 3\958\ 4DDDD^s\Ì\e!´\î%\å-º1\Ý\ZF«\Ç[¾\È  ,vX\è\æ£\Öl\ì\Äf¿\19\ÆX\á>3H\×c8\Ër\ß|g\1eÊ\87\ÞBÞ¶\1eP\ß÷\8eKÛ¤\8ef\Ù\È{\86ͽló\ 47\b\1d¶\êmýÔ\91\89\Ï+\863\ÙXI+\ 6\11\Ìkðܽù\Ç\Ë6\Ùúcºi¬u/\ÅG\vl\95¤\9b#n\íDX}\90\ß\Ï7ò\ 4ñ\Úmôõð(j\87\ eA  \88L¤\Õj\é\ë28ÿ\0Dy$\8eû\12E\r\84\É\Ä4\85Q\11\11\11\11\11\11\11\11\11\11\16\93¼ôx\Í\Öü\95ô;\91´\Ú\êªÁó¯\15\ÖYrw\ 6l\æ\8e6O\ e×­\ÖN\96MH\Ö?Y\Í\Z\8bo\8dö\ÕZ\äq,$\bFq+¢\âs\ØEP§\15r_&õ\97\9bt\9eS\Ò\Ïg¥ò·\nò\ 5f\ÉT;\0\ÙUΨ\Úu\v\86\16E-ýs\r[d\È\å\91\12E&\ÍG ±_.¼\Ö4ó\9aÑ\9c\ãWst?´\14½\Ï\é\ï]û=J\Ñ\Çg1qV¡¸\Ú\Ö`ð\Ë\"\8f`³§\8ak\êi\ã\82SG\87:\ 5\9b¤\fð\98R6>2Æ\8c¦\ eFr\å²\"\"\"\"\Ö\ï\98.C\9f\Äþ/»\ÑÈ\95nö²\Õ:\ç\È6Uøûr\1f²oé¿\8d\1493Z÷\r§9\Ø\17?\f~[\82g?\17\7f\å\Í/|\e¢\83\94\87ø\ÒS$>7\"r\97\1f\è²\19\11ù\1c§\83m\Û*(\f\Ø\Ä\Ã\1f\96H\È\ì\1d\80¿\fvXLµ\ß\17{{f÷\9d\vL£\ã­\'Sе¨q Pi\Ú\íF·S\12$aD\0¡TA\ 4 \å±\Ãþ\18\ÜV\87\î/·\Ë/)\1e÷½\ïs\9e\îÚ\88\88\88\88\88\88\88\88\88\88\88\8a\9d\ fQ\7fO)ºa\å{°ún°q¿T\å\Ù0û\e®Cfd\91õ \åù\×\16\×u¦<\97»&#6\è[\1c¦¶8¢Á\84  a¬\81\19\90\85\9a×£w\991¿x¹\Ûx¿1\Î7ðGb·½{\î>[\96\16õ\ 6\9f\91X\è\9f\12¿\18\86\"_\98_\12\f&ü\æ\ÎvZð¸\ 4tµQ\11\11\11\16ª|\á\ér÷\ß\12\9dù\×kb\9am¹:\ç½Ï§\8b\1f>\Æ=\95l\1cM\ 4q\ã.`Ý\99M     \"\ç\ 6\Ï\Ö\Ü\1f/\ÎX\æ4\8cªÿ\0Á\87\1dÀ\åo-\9d\18\Ñ\ì¡Å\9d\16Ë\98±eôL\17\19²u}Of\Ú\à\Ê#~\ 4\Î3\ 6u$i\Ã+Xç\80±\Øa\ã\æ6«¥\91\11\11\11\11\11\11\11\11\11\11\11\15p>¶þ4Ö¨;9Ò¾R¯«\06\8eH\â\1eP׶[\8c\bX\95e\a\8e¶m9\Ú\ì\12\9d¬iI\Z©»\95©c\ 4®#@kI\84\1e[\89.n6I\è\90iqÒ¾\â¿-\Î\0\î\ÑR´oöý\9cVñ>­\937\19öýò\Æ<\19\Î=ó\íó\Ç\í\8f\7f\ÞkH\88\88\88\8b\e{\8dª\83v\êwdui?\1c\86Û\84¹(NkÇ\82´\99\ 6¥k,bpó\96\ã81#´Yw\ïðùüþ\ føü\1dSo¦\96\ 1¬<\ÝôO\ 2\ 1\fÈ\9b_+Ï\92\æ\r\Ädp\Å\à\ eW{Ng7\19À\87ù\19\0ZBe­û\Ê\11\ã9!\18\×\\H\88\88\88\88\88\88\88\88\88\88\88\88 \9b\81\Ök\Ý\Ã\Ý       \Ü~\9f{PòW2k?~p\Üü+\ä\êú\8d§\Ò\Ç|>Mû$\Äù\93\19\'\Åÿ\0P³\86c#˳\9a>\8d]n\rO\8c\1dò\î4 Ç\97µvGw\9dc$bh\É`j\Ú]z\90\a\90\ e1\ 3\12\0\"1\ïË\9c\Ð\Ç\10°\ì1\8dkeÂ\88\88\88\88¼·\9c¢\âw\ns\f\17e\Íl\Î-\ä\18®s}þXÄ\8dJ\Ü9\Ë}¿\7f\960ÿ\0|{c\ß\ß\Û\Û÷URúO4²mþe¸vX²6»H\ã\1ea\Ý\1cò|¿\94q5\86R\17\f\ËZ\ì\à\85\1dû\80\Ï\Û\rvKðs\9a\Ç9ض±\11\11\11\11\11\11\11\11\11\11\11\11Bc\Ö\ç[\82ô÷¥÷\1f_¾`öWj­û½¿\ËýW\8b\í¥}\7f\8f·ô\\;\Ûûý>ÿ\0\é\Â\Ï\ fH\95~!øiФ`\7f\f\Ûs\Ï<Xe\ßú\Ù\1e\ e¯\ìþ\98þ\98­À¿¿ù_\×ûbNè\88\88\88\8b«o0Eg¥n\15§ÿ\0\"\ÇV\Ø \9bÿ\0ª]L¸\äÿ\0ðLª\â=)\\\17Y¬y¤\î9iþÀSð&\95\1cqQ\r¿\Ì\16W\Ùò\È5ø\ e{\89\97\1f\8b\ fOh\ 5\îüû¶A¾ß\93ð\Ì\â\Ê\ 4DDDDDDDDDDDE\15\7fX\1e\8c\1d\8b\Ä\ìݼ\Ð\Ù!\Ü{\Í\\e:4\97`y|       ;\1eÁ\ f\\ûG\87g\ìnO\16d¸\ΠÛ\9ff\97#{\9b\82\ eÉ\9f\8b;@ð\Ã\Ö(\16\ 3{\r°\Øòfô\17=\9f\f\9a\ e\ï½\\lµ\ä\Æ?\Ô\Æ°\0Xÿ\0õ°MÊ\90z\"\"\"\"ÿ\0\ 4\18\Ì2\b£aDV8e\11\Z×\8c\83{r×\8c\8cv2×±\í\ÎZ\æ»\19k\9b\9c\ã8\Î3\9c(&úb\è#\Öù\93ó\8d\88øÀ\ÅA\Èü\91A\18Mö\Ã[\1cݧ\ä\7f\8e1\8c{þ\Ìm(\9a\ßlûc\19\Ïõ÷Â\9dª\"\"\"\"\"\"\"\"\"\"\"\"\8e\ f«\0\187\84®Æ\93-\Æ\7f\e\90:\î|g8ýÛ\97s\86\91\e\8föÏ´\8c·\ßý\9d\9c\7fu\9c\Þ\r\ê\ÃU\â\e\ÇxD!\8b2º³Å\96\86\È\Ø\Ö\äÆ´¡\ 4ì\94¹\Ãq\92\13,0\Ùów»¾\fc0ìµ\8dö\Ú\Â\"\"\"\"(tx\16\Ð\é´?8þ¡\Zj@\1e<\nþa¦\96\11\É#\Ìl\97r\å\8eY\Û,\8c\13\Ý\Ùl\8b\19F\906³\à\ 1\88\8c`\ 600Cd\Å\Ñ\11\11\11\11\11\11\11\11\11\11\11\14x½Sôv7þ\13;O\Z°\19\90x\17ü\19xq\á\Íoµu\176h¶¶§\Î^\æ·\Ú-lYR²\ß|¹ÿ\0GÀmq\1c\Æ\ç8ü,F$O\12^8\ÄG|\9c\9dðD\9c\873B§\98&ÿ\0\Ð#±\9fô­\9d\"\"\"\"\"\Ð\ç\8d\13\8a|\94yu\æIU-\8f#\9e¹²\92\1d\9f\ã`O\91G®\Ó\ÕÃ\8b\ 5\Ç\Ãq÷\88W2ö\e!\ã.\Î\18kYYkqòs\9f¾4DDDDDDDDDDDE«ÿ\03\1c\1fg\Ø\Ï\e\1d¤\áú\82²5\86\á K¯\8b0\81l¡À\94G´p\'¾+\8d\1dÒ\9b\12Ä\90\Î\à\b\Ã#ð\ÌüJ\1cc&\1eLtsE\7f\18ô\ã¬<|ð²>4þ\ e\ãj\11\ 4\7f_\Ö8°5z\áD\Ãp<ü\18\Ü\ÄÀ]\81\ã\Û\"\Æ~·5¯k\9b\8c¨DDDDEðªu\9a\Z9\×VU5\91\à\Îئ6\Â\îH~ϲ\Æc0L4\çù½\Íù7\ 5\'¶\a\867ù\Ýü«\î¢\"\"\"\"\"\"\"\"\"\"\".±¹\ê4\Û\æ¯s¨l\ 3)©¯b\â\1d\80\80ö\8c¯\ e\f#\ã\f{\ÆV·?`Y\9f|\8d\Øö\Æq\íýñôhi \ë\94t\Úõc^\Ê\Ú\Z\9a\êjö\11\Øy\19\ 6®\18`\Äk\ÞÖ±®~\0\ 1\á\Î\Ã[\87;\19\e\8c~\ØúÈ\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\8bÿ\Ù',4,0,'','','',''),(44,5,7,'9305bf00e803570d','97971161215bf00e801fdd7464746900','2018-11-17 12:50:08','2018-11-17 12:50:08','','','Contact Photos','5.jpg','image/jpeg',80,80,2355,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v      \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0+\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 2\ 1\ 5\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b \n\11\12\13\14\16!#\"\15\17\18BCÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91ù\ãõ1VüwZfº\9b\bJ®\Ø\í¨!¶\9d\85m³e\ÙMg Ü\91\13\ 4\a\14|\\qb½tÙ\99\11ö$\15[Q\àÁ\Õ\Û|\'¬\8fJ\18¢+\18\Å_\8aÎ\9fy®ód\à]±î§\91~\Ü\èN\9e\ÊM>et-e°¦µM§s¨2T9¸\Õ4ZO\ë4\Z] W\9a~?;\ 6J³&\Ñ&\ eðu\êôç´\84´f÷}v\ë\Õ+¬\9a\Ö3V\Ð\ì;j\Ó\v\1c\ç\ä*stn]\9d¼.\87\98±\Ç\19\â      ¶\í;E¦\\V\1eÀ\Èu0°\ÏEW\ 3}o¹\e\f\16H{\v÷^8\ã\8e9\13{\á\Ù\ 4õ\ 3¦\1d¢\ìòE\1có´v\8eØ»\ e\n4\Ì+\"J\Ú`kg¿R\88+\b\ÊUøò\Öl\Äƽ\9c)\1eÍ\94¬üÑ\8c|±Po\8bÞ©\Û<°yCÓº\7fhX\',\98\Ý;Jõ»\13t0\×U?-M\85̦\É\ÛR\84JcûX\9e·\8e\19ðqòXJ¿\1e\Ãc\8f#-ýh\Êqt\15F£X U+TjL\ 4MV\9dN\81\89«\Õ+0A1\e        ^®À\80\Ä\\4,Lx\Èlp£c#\Å\1c0\85a\bi\81\Ùm´\'      N1\È9\äo\Æö\87òa¢¤t\Æ\è2\ëX\90\10Igµ\î\Æ\×Ö¹\êå\92\81d\91dl72\88ø\é! m\Ñß\92\ 4z\äk6\à%b\ f`ofS\1f \91dÄ­\v\ 4òe\é\ç\ïýã­\97m©rÙ\9aÿ\0Ll@\ë{?D[\ìÓ³Ú«h\ëb\10\f\94E¯]\ae|õ\ë\é;e\1eB.\ÉO³W\90\ 1 <T|}\98Ixñ$ \9fµ\ßLm\9a^û\Ô:»xk\89\ 5J\ëýÁ¯©\Û6\95\"\â\12Ó¦U¯5øû,\13ï²\87\1dK\ 4®6H\7f\1f\ e/,?ö3\95+(\Îy\é|q\Ç1\8b\8bVØ·7\8a.þkÚ\90\84H\Ù$úͲ&a\ãDK\8e\17(e.+7tE\ 6\ÓY\Â\Þ.M5\Õ\0+\18÷\Ã\ä\10\ÛJJ\92¼§: ú3^\89k\Ë\15ý\a­´\1eGLv\ã0iul\'\í9;3H\10Sc¥\Ì\áÕ\95\88¦\ fu)\1f\Ý\Ì\bÑ«^>\949\9cZM\Ç*\9aõx\Ï\Ó.\1ed% ¨\r1!h¬u\çGS6\18ñ\ 3¥óJ\Ø\Å9j°Ç\86B\ 4Ã\8f\e\1d£_\86\84e9+\r 0p\8f\èm<±\Ç\ÅÆ\8b¸õ\9f\Ç?Jt>\Äl\91\ï\ÚÏ­ú²½u\8f1y[ð¶¼UÁ:Á^R³\84ÿ\0\85rT \99Ƕ>,G6\9c\7f\18\äô\ã\8e9\Äû\f\92\Ë\Ã\10\Óo\8eCN0û\ f!.²ó.£-ºÓ­/\nC\8d¸\85)\ e!i\ÊV\9c\å*\Æq\9cã\95\88w\e«{\e\ÓC\æ\83J÷g]U%,}$¼\ìû\1c\19p\88þ°õ\Õ\äI\18\8d¿×\89\ 5¼\ç\Ð5¾\93W°È\9b¯\17$òD°E\81W\9aI.\1d\17f\16\"\Ê\íA¶µ\ÞúÕºÿ\0t\êKDu\×Y\í\Z\9c\8dj\8aR\Ô\f\ån\Â\v2\11\874\87\90\ 3¸±\ÞJ        \f¦\990\12\90ðf0ÁL<\Ò#·\91N\Ò\11Ò\8e\8dv\93µ@F\v37¤ô\í²\ßW\89\90\8d\92¹¤LEÒ\82\95C\ e2ú¢I¶H\Ã5)\86]i\ïôõ\13õ8\87>*Æ\8cÞ\96~\86\ f\äc´ý\8aò½\ÝB\Ë\Ý\16m]·cÈ¢~Ú\94\98\r£²v\ 4bù?±§\85N\Z  \Ü\ë\b¢\ê\îS \106a\0\94²\0p\82\ 5ú|;\19±£\8e8\ç\82ös³:S§\9a7`ö3°·x\í\7fª5¤2\æ,\93\çü\9dy\Õ)\Ä\r\e               \1c\×\ÈÉ»$ü\93\ÃDW £\ÛtùiR\Æ\ffÔ·=ñ\80\1e¯ö\ f\Êÿ\0\9aB\7f\Þ\Ýmg/Å\87\8d\83\Ï{\Z\Ö\Å\13Pª^û§\ÙZ\ë\ 4¬|\Ø!¥¯±v\Z&¨©I´\Þ^\n\Ñ\15X<\81\8b÷\12\0«üf\\\9f\17\9e,zq°+u\8a\çc©\97.\å\â¦A²\112\1d\Ê\Ú;\ 3±\è\ZjI\94\r#;\1d\93òz\æµ,`ͤg\1e§R«\8c2/\ÈQ\ 6\1ce­¥N\8a-\12\93«éµ\8du­\êUº\15\ 6\95\v\1f[¨R\éð±õÚ½b¿\14:\ 5\8d\85\81\82\89\1cXبÀFm\f\8a\10C2;-§      B1\8ex÷o:\áV\íÿ\0Ww\çW®\86?\19[\ÞÚª\å­N\99\15\9c\10\\\ 3\ÖXbA\8c±\86:\9ce\ 4\19]\95X3\82\ eã­¶ù1\í4\â°\ÚÕ\9eiõ\é\Ø\ØV\7f\ e[\ë²>$<\89E\8f¡-{?j1µºÇ¶lù\\V\9eÞ\93       \82\8e¥Y\"\é\e\ZQ `e?d\85¯\Òfi\ 3¬\96MzC6*\8c\Ð\Ð÷6\ 2¯\19¼\82T\95§\nJ°¤«\18RT\9c\ã)V3\8f|g\19Ǿ3\8c\ãù\Æqüg\1cù\ã\8ej\'å²\995\åO\Í?I¼II\99(\8e©\è\rn÷w»s\11\ZQ\ 13q\Â$L\87¬\Ö%r\87\ZS\8c¨4\×j\0\16\e\88*8}\Íe\92\1f92(w\ 6\Ûf\12\12\1eµ\r\13\\®\ÅGAW\à#\0\85\83\84\87\b\98xx±Z\ 62*.86\Ù\10\b\èð\98d@\83\15¦\87\14f[a\96\Ð\Ú\12\9c}\9f\1c\17m}BÙ\90n\Ö6=\"¡°+o¯\í~½v­CZ\à\Þs\r¸\Ö\1cv&t#Àqxi\×[ù¬|«\ëq\Ä{üV¬f\vvGÆ\8e\95\ÜÕ\8f\96\9e²\ì^\97n(\bvÀ\×;¯©¶\é\Í?+S\"=)r\14[\r\12£%\ f®¶u<r\18\15©\Z]\î¹+\1elSK\8f\0¨gT\É\ÃD\1f\12\1dü\ìF\Í\Úý\9fñ½\ßÖ«\ßó·¤\86B\91/°j\91­\ÂU»)£¬©\13ô½\ã\ 5\b;#\89\13$Xò0\ eZÀ\0Hø\Ö\×i¯:,ti\ïMCC\ç[\8e`?¬\9a\Ôq=C~P6S­ºQ\8eô³¤\0\bZþYDPv\Çn@\19\16׿ø\á\12\ 4j\ 1d}±ÿ\0«/\ç\1f÷\Ç3\á\Ç\1cq\Ç0+!¬Ç\8dõ/\Ö6TRp\12\ìþ\e-\Â\Ú\12\14\Úf\v®v\æ¥\17\ZIªK©m÷\Ç\ 6T\11\9bZ\99S©`\11\91\95å¶\9b\Ãy\ê\ã\90;V\ëô\Ây \îfÁLr\19E\çª}\f\8fÄ\9aXRrau]\87Þ±M\19oýIC®\88!°\Ê[xuÕ²\Ë\ÃeXm.·\85O\1e8\ã\8e9\ 3e\è\é_\93\ 6\ÈTB³\96:\1f·iM\Ïa¼ü\11ù\1d\81\Òs\8eD­\Ü\7f\18S\98a\ 66\Úñ\î¬!\Õ7\ïñw\Úyq\Î\ 4\8a2    x\Ä\ e\ÂK!\91\Æ|¤´\ÚI|q\16K\82°óøN\1cq\91\9c\aij\Ê\19YD)´¥O9\95sñ\Ç\1cqζC\15E¶~Gg\'43¡¶^[NH@¯º\Ë\Ï\ e\87}¾ie×\87a\Ç\e\Æ~+[-)X\ÎP\9c\ã³\Ïÿ\Ù',5,0,'','','',''),(45,5,7,'9305bf00e803570d','97971161215bf00e801fdd7464746900','2018-11-17 12:50:08','2018-11-17 12:50:08','','','Contact Photos','5.jpg','image/jpeg',48,48,1489,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0   \11\12\n\13\16\"\151\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿ø\17t\8f,\ëiý\Çh\8c\98Nq\87\ã%\å\â\Ò\15,\19\10?¾e\ã³grF        ,¼¹Á#\90Ú\95\8a\ÉH±\ÈÛªpVYZm\9f_HL\80Ù¤\Ónj®ª\Ñ\0·r¯¨3_\Ä\ì\16\9aú\r\Â0\97\16\Ütô\8a\ZÃ\89m\×\e!.²Þ«\Ã\ÃÈ\8fù\ fv.À\â?T\9d\13µ5<\99\90\e\9aÎ\96¦\Ú#\9fpI:\99»VU5\Ùk<I\8d|<\f\Ü%aS\ÆÁ\1eÂ\90ø\13\98Ã\8d¼\ÃkLöüN=vPt\1f\bW{v\Õ\ 4\f\ßGö\1elvW®²\ã4}\86«¨Âµ\É\ÃV*±2\Ä~\â\86\1e\Þ\ì\17óû#\Ì:Ó³\ 4J\Ã\r\'\923\ 2\1e[dÿ\0 »\'°\ÞR\çÒ½\84ð·RZi¡sÓµ¢w?9\ÎÔ¨·\1dgt¡\ÊØ£«\Ä[@\1eZ¸\í\84Ih3¦Az\Î&f\9d\fº\Æ\ f\92\8dr\fø\959!@½Ew\ã~\Ìx\'Ju\89UÀ\ê\16\ÛX³U}\91Y\8dy\ç\âb¶5\ZX\8aÝ­P\8b\'\ä¦à¥\8d\r3Ð\82\96\ 5\83\15* D\96k\ã¬\Ç\ég\87\92\×\Ü÷\v\Ê{\16õ\É\Ñ\1c\ËUX­\ìy\88\10\9f\81C#gk©\16-\958r\8b\Ï\ÊB\Z\ÌTs\95bNs\nh&&\Ü)䩦V\9c¦\7f\8d\ fJC\í\ fZ\Ô\ e\88MC¢xbR\É\Î[óWM°¸\ë5FR¿m²»P8Ø¢s\83\e\12\91\85p\97\ZCY±\ÃXÀk\í\800¥r¿É\9f¦-\Âó\96¡õ\9b¥`\139\Ð>\Ðö\1c.\8f«\9e\1e\16¡I\8c¹\Ò      ·LÉ»ôyܪaù\bºò\7fP\Î\à8R\ì\92ÿ\0t\17\18\v%W\9fYü/OõÁ\ÅZO\91©ò\ê²ÿ\0\Ç\10D\93o·-\85\vü\Ãa\Ù\ä ±^¬\8c\bµ-À£\ä,R\ 6\18\a\\u\à!Y\8e      \ç\9etuº·\Ç\ÎU¼÷5\ f\9dt\Þ\Ï\ÞûB[\10\9a÷Q\Ñ\ì\9b\ 2\ß\'ôS®\ f\aY\8b\"P\Ä\n\Â>VQ\Å |        \1e#xË¥\9cø\ã4\9c¸\êq\99m\ÇZ³¥»\8a\n\13±û\96\ã°5\å#g\8e\9eøW]Û¦µý\ fZjy¤bN\8f-\Ðr53c-{{o\Ù+\ïD\Ì\Ø\à¬\13¬P*\8e\94ü#T\9c\e\93\12-L\×\ZCM\éò,fj½Y@\×g\\LnF\ß#N©\ÂW\ä\í\92-8S­HY\ä£\ 2\1c\éó\9bt\Ó\1cI\92\18N\1c,\95\áϳ\î\åS¿\Ú\a­ù^\Ú+\98w~\9e¼Ak>³\âmÁ\e¹´\ 5ª\á\1cl®¾\9e}\a\13h\×\e (\9c\7f\9cMN\Þ4\18,ª^     J\97\811\84\18(\æ2\éb>\Ä\ì¾\Ä{\9b(U­\83Õ\9a\92Û­)jd\ 1vvÓ¢\94\ 6\Ø\ÔÚ\9eT§\Ù\ 5Rw\ 3\à\Ô\ eÆ\8cת1\Ï\Ú\æÁ3Z³^®F\ç\12\17\92ªÂ¶ó\èr\ã$㦣c\æa\Ï\12R&X\11$\â\ä\ã\Èh°$c\8f\828\"\ØZ\Ø$B\Æu¢\ 6!\95­§\99q\ e6¥!X\ÎgO·\rvþ\Û\à]½¬ZA/3{¹ó\85^PQ[Ë\8e\1f_\97\é\í4%\965\Ä\ã\19ÿ\0«%_rL\ 3\95\9ce\r\86C\ë^2\84«\19£\Ã\f8c° \8c´0¢²\Ð\Ã\ e\12\Ó#\8e\12\Ó,²\Ú1\846\ÓM¥(m \Æ\12\84\'  N1\8cc\1e{xy\9f¶Õ /5[-&\×\16\1c\åZ\á_\99«\Ù!dGl¨ùx\19ø\â\"¦\"\Î\15ä­\92\ 3><²\ 5%\87R¦\ÝeÕ¶´\å*\Î<F=SV§i~»ùJ\97c2@\éJn³n£û¥r\îOn6±=7\a\ 4\13ù}Kwÿ\06\f\b\èæ°¥g\êÀ­¥?\×   ñ\Ô\Ø\14\8bW\"©4·[\8f&Rµ,µ±\84\å\Ì\13V³CÚ£þ0¼e?\19\90\85\17\vù\Ç\Î\11\95e?\Û\ãÍ\9f\87\87\87\98­uF\8b\Ö\Ô\ÈJD+¯½\17\ 2\Ñl\86\á9\Æ^\ËeH\17 ¤¯8ÿ\0\7fG\vZ\13\9f÷\94%?9\Î~s\çÿ\Ù',6,0,'','','',''),(46,0,13,'9305bf00e80b8132','14369303895bf00e80b1e28207310424','2018-11-17 13:50:06','2018-11-17 13:50:06','','','Contact Photos','63436871415bf00e80dfe9c308856934-4.jpg?ts=1542459008','image/jpeg',300,300,11008,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b     \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 1\ 2\ 3\ 5     \ 1\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b \n\11\12\13\14!\15\"1\163A#BQ\81\82\17\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/r9¸f3\9cDëº\9e±®\8fð±g\ë]L\ã\Íϵ[d_\å\"¾þW\äñ¿\19Ķ¬\94Hx\8c\ë»x\12.¯+\'=­\91\ 2ûY©´­\97\18f0Hð\96\11\åF÷\98}`\1e\ 2\Æø<|\Þ\r\á\íRľ\Õ\15\94\ 1v=¢¢/\ÄyÀ\8b¸\ÛZ\83\13d´\í{\Û.%\ 5F2\1c²9#\93\181\ f©\1e\\ó?\åC\9b¤\96VõÞ\8e\Â\r\å\95ùMÆ\95¼M\ãG\a\Û9À£\ eO\1d·W\9aøag\Ä,\8f\"Q\Ø\á\8cx7\Ú\æa\Ë\Ìõ\ eòù6\ä-\96§Nл\85\Þ\Ý\ãq¾\90ø\Ôz¶¡\Ø.À\ì\Û-Ì¡\80²\8b\1e¦\8e\9bn\9bic!±£\9eI\ 5\ e)\88\Ð\0¦sp1½Ø\95×\8f\ e\98ú°9J\92£h\87\Û^I\ê\×\e\\Î\8b\996\1d\83\Úuý«x\95L\è¸8®«x\êú\83\99\90\94\87üV\Ñm©Ø\82P¦bH£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8b\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)\ 1T\É2\Þ1\12CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ø\êy\ë¶WPKüg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ek¾º\ê8­5¼ù\Îo\Æ#\àÁº$\Z\Í;\Õ\äù¾G7\9fñ¯j¹\8a\ïs\8b\ e\ÆE\8e±\Çõ\Ï5/\19h\î>e{\aR\ÓA °¡b;\'N\f\8ben\18\ÓeEÅ\96c\19\â\Î\ 5¢\90¯\88\8fN\ßm|\9e˪ä\9d\80\13ºý\Õl\96\14¢òþ\ÑQ\92Zo\91[ &\9dU\Æt\ 6(¤J,\8a¼û\Ç\Û,\ã>\8a1l©\çÂ\83²ÁþDp\ì¯ñÿ\0\â+¢þ6õ\18\94\9dv\áº\0\î/\ 4\\l<½¶B\87±ò\8e\Ë2>\\|\Zf\×>9lb\Ã\f\ãÎ\93UY\fÃ\8dL9Æ\85\a-\8bñf6h\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88¢#\êAõ\ 2\13¡t6=:\êm¥|þ\Ø\ï\14$ÿ\0\16\82-}\9dw\ 1\ë6AÀ\Û9\Ð\1f\99 ±\ä+P\94\8d\Ö\é§\0\95µo\ 4«\8d\98\a\8b\ 6\1e·µ\Ö+µ\í{6÷³_n{\9dõ®Ñ¶m\16³o6-\8aòi\ì­\î­\ì\8eù3¬lgIy\ f&T\93\91\ä)Hü\ç9϶=\9b\8cc\1f\ 3\Û?¯\×÷ý\ãÿ\0\9c{\ç\1f¯ù\ã8ÿ\0\ï\vñO\a\Ó\Ï\é\9e\ eÿ\0\ 3M\î÷\91-\'.\Ôg\8e=ÿ\0\fõ¯e\86`\9a\â7\Ï/\83¸r\ÍL \8d\8f-­d\9am:G³\ãDx\ä\Þ\r·\'\Ä\rj\Â\Z:*mb\9e»_\×j RQ\ÔE\14\ZÊ\9aÈ¢\85\ 2\ 4@\ã\â0E\8a\ 60B\e\7fyökqòv\\÷g.s\9d\9f¬\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88µ\ 3\æ\çÉ\86»\âó£[\×3\ ePK\Ì;§\ß\Ç\\\ 3®=\8d).¹&\Þ\11\9f\ZyÀù\10ðú]V\eK°l/\14À\Í\15\\B¾´r§þ<CS{\É\\\95¾ó\16ý¶r\8f(mw\e\Ç \ïWs6-³k¿\95\99v·Vó\Éó<\99\ 4ö`\Ä67\f\8f\ e\14Q\82\rt\10Ư¯\8d\16\fXñ\Å\Ñ\×\îs\9cÿ\0|ÿ\0§·ü°¦\89\éjðt\Î\Ë\ï\15þ@ûQ¦}ü\ f\Ç7\"7\ 1\é×±2øü\9d\ÈT²\ÆW\îVUòÃ\80\17P\Õ$4\7fÁ\17.\96û;\àH\99\88µÃ®£·\9deh\0\b \f\14\820G\8e\ 1° \8e\0³\ 3\10B!µ£\10\84\83\e\Z\Ö1\8d\ÃZ\Ü7\18\Â\æDX{\Ý>øõ\7f\Ç\Ç\16F\æ^\Öò38\ãB\9bp:\186,¤»Ø§\ØZ\90.> \Ö\Ò\ë\Ðlm\ì\å}mùb%|93\1c̸Ì\8eð\ 2IC\1f\Înõ\89ø·\ã\È\í7\13Uóo`\8d\î6\12&½¢\Ùññpò\11\Ís\ÄNI\87A\1c\91\ÄÏ\81\18\123\8c½\82\88G1¸&,\Äõºu\ 5ò°\Éý,\ì\8ch_/lÈ\89·q\84\ÙXg¾?«\10\Íe^,»\Û\ß?\ f\Î\Æ=ñ\8c|ÿ\0~ø\Úw\ 1ú£¼:s|\Êj;>\Æ\Èá­\96\Ò+\8f&\1f/hÛ¶¥®U\95¹\Æ?\Z^û.\81º\83I\9c¼L\ÆKf\f9\Ï!\19ò\8b\1cò\99¿\8dKrÔ·\Ú8\9b6\91³P\í\Úôö±ð\îµ\ËX75\87\Ã\Â#á¬\99\0\Ç\aÙ\81\1cDx\\ü\14m#>ln]\8c\88\88\88\88\88\88\88\88\88\88\88¸\ÈA\84d1\88Á\bLy\nR?\f\18\Æ\Ìe\Ï!\1e\ì\á¬c\e\8c¹\ïvp\Ö7\19\Îs\8cc9U\ez\9aü\87\Ùw\8b\Èþÿ\0¥k\e#,ø\'«E\93\Ã|s\Zª\Ï3h.ö:¹%/!n\í\ 3¡E,k9·\å~ªX¦\91`\18ñõ6L\84øD¸±\89\88\ê\"\Ø÷\8a/\1fÛ\87\92¾\íñ\1f\19>\16©mhí\93\96\91_ :\8f\19\ë­üý\86|\87\8c\à,s[å\91µ\9a\É1ÿ\0$𬮣ٺ\14\98UópÛ¤ø\87\89´\ e\b\ã\r\13\86ø«[¯\Ô8\ç\8du\9a½CMÖª£\82%}=\15<vÆ\87\ e4h\Ã\fp±­n^\æ\0!\ e\b÷ýA\13>,Ç£¢\"ñ\1e}\ë_\0ö\9fD\91\Æ=\8d\áþ?\æ­\ 2L\80\Ì&§Èº\Ýv\ÉO\89\91\È3G\98\18ó\Â\\Æ\97\1c\ 4\98òc8G\ 4¨ñ¤\88\8c<`\10pHòù\é\14n\9fM·ö\a\Æ=\85͵mh\rwyÕ­ºÑ\96\96\83\0\ã\ró\9dÅ\9b\85\86b\9d\ 3£J\99\8d{j\97bs\16Í\91\á\\VV\Õü\v\ 3\9ak\8dr\â\×^\Øj¬¨¯è¬§S^Q\ÜÁ\95WqMqW(°l\ê­k\'\b\13k¬«¦\80ð\çA\98\0Ê\89(%\8f C(\Þ\Ì|Õ±Þ\83y]\ï\a\8dͲ\1d\ßZy\92ö£Qu\9c{\r\8b\88v9\126\ e+\Ú\Ø\12H)cYj²\8f\81Ö¾Y¤fD\Éú\é\é¬\'H\8f\ fù)3¢\ÆlWZ#\á·Î\87\\üµhÆ©«\fn&\ìÖ§S\1e\7f ðe½¤s\È(\9a\11b\Ça\ã\Ù\Å#$\íZ\9cinpó)\ÑÁg\16\9e\f2¾Th;\ÊDDDDDDDDDDE®¯,\9d¹¯\è\ç\8f^\Ïö:XbÊ°\Ôx\ÞÖ§U\812fk£Yî»\8e\e©\ê5\8f\9e\10\90\Éa{o\n$S\8a4Dzi£{D\92ß\90\9dI$¹r§Ê\93:t\99\13gM\90is&K1$Ê\97*I\1ci\12d\È3\9ec\È9\9eò\98\Å{\ÈR=\Ï{\9c\çg9þtV|ú?ü~?¯\1d-\Û;\8fºUÏ\81\Èý¾°\89\9dtS\ãÈ\89ø|\'¦É\90\Í8\91\86I2bL\8f³\Ûʸ\ÚAo\bpI*\14ø\15\11\Ìúh¦Ä¿\Ñ\11\11\14(}O¾\ 6\ê¹\ãD\Úü\85u7Mü~r\ã\Ê<Xso\1c\êu\99yykK«ø\à\Û-U$\ 6\áó·­^\e\88fÿ\0\e\18\17\Õ\0\Í;\ãZþ5\16(+eE\ï=e\ì¯0u\v\9c8û°¼\13´\ÉÔ¹\'\8d\ïa\Ý\ÓN\e\äf\ 5\80\9cd\99C}\124\98\84²\×\î@<õ\82\Ù1\8cð?\ï\85*\15\80\8d\8c>ÿ\0q¯\92\8e\9eqwg8ðø\8f/`ª\15G!j\æ\Î\19c§r5(\Ù\a\97\19\ 1[\1c7!\99\9aÉ\98\ 6 \ÙB\Ã%UÈ\9d\ 1Á\98m\82¢\"\"\"\"\"\"\"\"\"(\88ú\Êù\Êw\1ex\Ù\ã\Π\8aß²7a9\Û_¤²n>¼81x\à\f\äQJË\9cß³\"dú\88q^1»\18q&\ 4\8f\1ceµz¢õ\Î\0\â¹\\\ë\Ï\1c\'\Â0ffºo1ò\ç\eñ\\;\f1¥\Ì \\\85¹Sj1\æ`n\ËZL\Å-»\ f\86;8kòÏ\8es\8ce^\83À\9cC­p\a\bñ\1f\a\é\Õð*µ~$\ã\9d;\8f(\àU\83\11«£W\êt0iB\ØQðÁ´\11\ßøy \ÂÁ\8d£kðÖ\8cm\Æ\18\ß[DDD\\\12¢Æ\9d\ZD)±Á.\1c°\Z,¸\92\829\11¥F\907\bñ\ä\0­x\8c\ 3     \ï\11\82V8e\e\9cÇ·-\Îq\9a\81½G\9e9\a\ã\ÏȦ\ë\1fNªm\7f\bö4\16\1c\Ý\Ä\ì\0\Þ\È5\ f¸¸\92\r\çO\ 1\ f,¦;\è67b\Ó\Ü0\ëj`AÙ«©*cf5S\9c´\ e\8ac\9e\8e\ eê³\88;«È\9d@\Ú.L\1dg³ú\91n4h\13\'eµ\91¹3\8f+\ç[\Î\15]\7f\Ë\ä[Ý£S\8e\æ\É(FLf¯QÁ%}a\86\ e\Í\ÄDDDDDDDDDE\ 4¿[þ\Ä\Üq\ fCu,1ø~y#\97v,\93å\9c\8c\8df±¬\Ö5\99o\ÇÙ¯\ e^÷a\Ù~rö\9d\Ø\Ã[ð\Î_]\Ú)\13úZ8\ 3R\ç\ß0\\,\ÍÀY\93\v\87t\Ý÷\9cª¢<#\91\12^ä\82®¾\98S\ã\e\19\19\â²N\Çù-k¿Ê\96\b²>$úr\"[¢\88\88\88\88¢C\ë\12\ê\í\8f2x\ä\Óy·Y¤\87*û­|\ÃOµ\ì6!­\ 4\8b¢q\î\ËOq©\ÝW2n\1e)`«\81ioU³\Ì\Î\7f&(EK#\Þ;\v\aW*-\8fø\82\æ\É]xòq\ÒnU\85\1c\92¤\ÕsÎ¥¬\8cBú¾M\Ç%:O\19\12C°l\àn\fAn\ f\95!\8eùe\à      \18\11\Îk\1dv\Ê\"\"\"\"\"\"\"\"\"\"\83/­÷^    :ÿ\0\Ñ=­±±ù\11y\8b\955\ã\Ëþ¬\çé\9f¥RYE\8d\9f\ÞF\Üeõ³\v\8fl5\ïö\Ï\Ë.ÀÛ\86WB\8aZ~\8dmnlÿ\0*[\9e\ÐÆ\8f5º\ïV9*¶S²\ìý­\9f±m\Z\13\ëð\Æ|rÜ\8dÑ©->\×ü\Ú湡kXü\11\1d¤¨\88\88\88\8bR^xj\âZø{ò\12)a\11q\13­Û½¤w\11\8cs\81.°Q\æ\0Á\Ëñ\9f¬¸È\9c?\9b2\×\å\84 ñ\9fb;\19¥\Ñ\16eø\ë\Ò6nD\ï§N5=B´Ö·³;)\Ãv\"\88\a\ 5¤mv»½\Òl·³¿Û\90Lp\ê\èj,­\f6¹\Æ(a¼Q\84i\ f\10Iyj\"\"\"\"\"\"\"\"\"\"\8aG¬+\84 r\'\8a±ò´\91d³:ý\Í<}²Ö¹\84;\1d\1c»\í\Ü\1e4\93 \8c\17°\Ï\e\10ö3\Ç ¤\å\Ãl\891NÁ\äÁ\19\ 5Uò)rz46\81\×ù>\ä=I\â\Î_²õ\8f\11ÿ\0£\â7k\e.¤\'\a9\Î~xq\87°<\8d\Ã[\96\11\Ýó\Ës\86\14DDDDZBõ\18òö¯\Ä^\1d{¢ý\96ÀPI\È\Üq\9e)\×\Ú÷»%\95°oVpjk£\ 4\fa\nl\1c¯ür9­h£4ø\91 £\bÝ\9cÓ\88\8a\94^«\í\\ùå\8b\8d9^\f\ 3¿Jꦿ²ò®\Ûk\87\Æ\Ì8\Ö׺õÞ\91§U\Ì\13°Y\99}\9c»\9b[\b\'\8e\ 6\80S(D9s#fDaK¶i\11\11\11\11\11\11\11\11\11\11\7fº\ÍI\Ü^\98vG­WÌ\93ø¼±\Å;V¹\bð#\82M¤;¬×\92m\14º\86\11\Æ+@\ÛE\89\88G\È\ fô\95\Øvc\Ég\Ê9h\é\Ûu]\87EÚ¶m#m«\91Gµi»\ 5Ϋ³R\Ëȳ*\9fa׬d\Ô]U\É\È\b`fE}\9491\r\90\98¢\É\ 2ì\8c\8fg³³×\94\90=)¼Õ¬ð×\98~$\8f³\ÊdAò÷\eòo\ e\10¿6\ 5\×\Û\f\Z½\8e\ 3\r#\ 3xb³\ëÔ¤\93\ 5\94\84¤\18\á´Í\91(\r}·\b\88\88\88\8a\ 2þµ^\è\ë\ 5 \ëwBµ\Ùò\89¸\Ç\Ø\19Ø\8eG\Ä\v,\8e4=\7f\15;\1e£¦k×µ\ÌÈ\88\7f\ågM\9b²@ûq*\13\ÉJ\13ûG\9b\0\ e}}è­\93ô¿ø¼\99\Ð^\8f\a\95¹OZm?c;WüW n,\92\Ö\æ\ËY\ã¯\Åd\8e6\Ñ\ÊLÁ¯\94,ì\96ûûjé­\9d\8aý\9e\îó\15vr\ê\8f\1c¤\93*\"\"\"\"\"\"\"\"\"\"*¡½U\9e=gõ\ f\Èe\Ç:\ê\953\eÃ\9d¹\88þD­\9a(¸\ÅN¿\ÉQ3\9aý\ÓTc\âClX\f\96(°v\ZÀ\ØÏ\91oq&N\Ë9\83\1c\18lh\ã\0½Û«\Ü\È~»öG\819\à\19¶\Î8{\98x\ç\92%Ç¢>#\Ú\ØU\éûmM\å\ÅDGºT!9\×5P¦T\924\99@\870\13K\12i1\10\æW¡qG#\ë\Ü\Ã\Æ\1cy\Êú\94¨ó5\8eIÒµ\8d\86DYB\9a\17\Õm4\Ð\îa7\12\83\8c\f\10f4EsZ\Ïb\8d\ís\18æ¹\98ô\ 4DDE\85\Ýü\ï_\ 6ø\ì\ë>ÿ\0\Ù~w½\Å}\ 6§Zfkº\ì&\8eVǽmò°\Ø\Úþ¥­Ö¾D\\Ë\9difx\91\Îw\9e<:\è\Å|\ÉÒ£\85\98\81\î\Ïmù#½\1d¢\æ\1e\Ór¦Y\1f\9d²mö(\ãL\936³U¥Ë¾\9a=Z \92\Z,b\ 5-pÁ\1f/\8f\12¾<ɹ\99d\Ê\èO\9a@3\15\94Á}2þ    ö^\Úr¾\9fÞ\9e\Ë\ë3j:\Í\Ä\Û\1c\1d\83\8d5KºòGÿ\0¶\ÝÚ©\ì\99W`FI\13J\í\17^\93\88öC4\'\ 4÷\16\83\81)\93c\Ô\Å\14}\9a\Î\Øñ\ãÄ\8e\b±@\18\Ñ#\ 4Q\ãF\8e&\ 6<x\ácD\10\0\"kF \88mh\Ä!µ¬c\Z\Ö1¸n1\85Ì\88\88\88\88\88\88\88\88\88\88\8bRþi<ok>N:=\È\\ j\ê÷r\8e¼#o<\1d±\Ë\a\Ú}g\91\ê\â\14p\8d\1c\98\Î\n\18ö\Ñ^Z\9bfEö\95>ªDª±\91\8c\9c_\95\8d\Ç;\Ï\11o\9b_\18òf±m¥\ï\Ú5\ä\ísk\Õ\î\ãþ=\9d5\Íqr\191Nƹ\â+3\9c4\ÑfE)\áO\88PN\81&L9\09:J´C\Ò7\äj§±\Ý\'?Mwm\8a|\Þf\êC\Ç[N;l\88l´\á+³\È\Ç\1f\ 2\8f\"\8d\Z)\83¨\ e\r\86°h\91\É*\Ä1k#X\Û\fX\9d\Zu\94º\11\11\11q\18Â\8e\"È\90Q\80\0\e\Ìs\99\10B\117/!JG\å¬\18\Æƹ\ï{Ý\86±¸Ë\9d\9cc\19ʨ»Ô\83\å7lò\17\1dÃ\8f\89Ѻ\Ý\Ö\r\9bb\ãn1\Ö\ØóÃ\87y³\Ó\Ì-N\ë¿]\×|F\197\a¸\8faEM$\ä´l*h²$R\Ï\f\r\86L\\Guo\×\Ó\Û\â^\Ç\Ê\aq\ë3¿SN\ÇW8(\95\Û\Ï5Z\92>\a\125\84/\áxª\f\19\ÈIc²<ß\99p(ñ-s\17_\8aPXÆ\84+¸V\ 3·\8fT\Õ5­\17[¤Ó´\êJ\ÝoW\Ö\ë£TQQTF\1c:\êº\ècÀ\ãÅ\8b\1cX\ÃX\Æ7\1e\îv}\ÈR9\æ+\ÞR=\î\ì\b\88\88\88\88\88\88\88\88\88\88\88¡+\ê\9aðo\9ez\Ôo<\8augO\9de\Î\ZMlVs\97\1d\êµÏ\95c\Ê\ZdB¿$Ü«\ë\84F\â~Û©E!¤Hl1>öþ¤y¦\8d\1eþhõºú\9a\ÜVux\Ý\ïo&ø\á\í÷\15ö\9f\8cM\92\9bR²þ\1fz\×r/¸;§\18\ßH\8a\r\ßT ÿ\02¿\1f\93:´-\99LRM\fX\Û\ruD«\ 1Ì®\f¸\12®\8e\ê\×f8\9f¸\\\a\Æ}\8e\á-\86>\Ë\Ç\\£¬\×l\94r\Ä\ì¶\\?Í\8e2Ȩ¸\84V\ 6mU\Íi_\98ö\15vQaYD&0\Ùp£\11\ßV2\ 1\11\11k\ã\Ê\ç=Xu\9f\1fsy\9e\8eÀU»V¡×®P>\99 ¸Ï³¶ù:\8d¬j\ 1·8k¾\ f\Ì\â0\8d\7f»\1c߯9\13ðo¯Þ\91y³fYL\97cc.Lû        òO6t\é§,©\93fJ+\Ï*\\¹G{\Ï\"L\83½\æ9\Ì÷\94\Å{\ÈG¹\î\Îsü\Ê\à_MwN(ú\87â\9f\81LÊ·A\ß;\vV\ eÀr<\99µ\84ª¼u\Æñ\ 6)j)/\"\98a6%j\94\ 1\83B/\È\13%2<V\nG³\Çõ\8f~h\88\88\88\88\88\88\88\88\88\88\88\8b\84Á\f \9a4\90\8aDi\ 2 N\ 3\r\85     \82Vde    \84L9\84\19\18\ç0\83{rdz9k±\9cg8UWú±º\rÁ\Ý5\ï.\8fÈ\9c\Z\n}j¯µ\Z¾\Ù\È{\87\1dSe\8d\8d¬\ï\147\151\ï/\Û\10n\Ã+\99»\97`m\8ea\88\ 2\19¦@\9bnbJ±µ°\92H®©­ú1;M\Ïq;}\Ë]Bf\Ç>Ó®\97\9c\'·òü­jx¤Ì\87ªò&½³i4õÓ¨fd\99\ 5C6:ý\86\ß6µ\8e\e\Ûa&´S\à~\19[x\ëK\'Q\11\16\84ýL4×\97\9e\eûX\n\a\1c\98Uºõ\Ì÷\Çó\9cQ\ÒÛ\8e\Êõ\85ø\ç\1e\Ñ\ÍU\ZTsg>\í\Ã\v\9c»\19§\Íz\a\13\ÑWm\1c§Æ\9a\Õ\ÄRN©Ø¹\ 3M¢´\84\"\90%\99]o±\Ö\×Í\8a3\ 5\ã0\89\"4\82\89\84\11\ 6Q¹øx\Þ\×c\ e\Åð\9cqU]G\Ç\Ú==D \×VV\ê:\ì(0@&\0QcG©\881\ 5¢f0\Öe\8d\Çõc\18ý¿\å\97g\å\9c\ç=\Ñ\11\11\11\11\11\11\11\11\11\11\164vO¸\Ý_\ê\ e\95k¿öG\9c8\ï\89\81\8d\Ç.ײ\ÖÀ±9d7ÿ\0\ 5\12\ 5;\8f\9b9\92\ì\n\áF\82 Ev$J\91\18\r~\1f Xt`{3\ë6\è7\19J=g[ø\87\97;6rV\È4-\80¬\'\ e\êÀ³k2\Øñ,\99»Q\17hú^|\à\8f,\rvK]\15¹\ÎH\19\ eÀ[ªwú®üºw\ fgf¥Ð¾\8dj1®\85aU\12Ö»_\Ó÷\î\Ç\1e W\854\Zr[\Ø\Ö\Ö\éuz¬yrÀr>÷fÀ\éX\18\93\ÊOÅ\8d\14ç\8d¹N\ 4\ f«\97\99ß®J\å]\9f£ýf\Ô6\90gù¹[.\8dIµoúTY1\8f\86\95\9an£qe\1eU\9cy8\b\8d\18»\84l\80O$\ÈÆ\94P\864\9f<±ô\99\7f\Þc\96góÿ\0\92?\"|\Ó\Ú\Î^¸ú\ 3saA¦\Ññ\í\ 4úÈ\8d\94\Êú8ð\9des+]¥­Ì\97\Ê\rf¤}~\ 1l\äN±\ÄHÄ\9f8r²\1e\ f¤3Ä\9c\14\íc\95¬$\ f8\Éeç\94·¨®\91\8c\7f|<!\Ù2!ûþýò,3ûþ±\8fe·~\83ø\9bè\97\8d\b[`º\8d\Ã#\Ñî·£G~ݹ_lû6óº^F\86\11\8a\rYö-®\Ò\Î\\JX.i\äç­\Ä*\èó,-%\ e>\re1\æ\Øò\"\"\Ã_\"\1c\17#³]\13\í\Ï\0B~Ga\Ë=|\å-6¬­n\1eð\Û\ÚjvM¨0Y\96\13\ f\90\e&E$f¹\99c\8e\Ñ\áþ\Í\Î]\8a:¶\Z\v\9dRþóV\Ø\ë¤\Ó\ì\Z\ÕÅ\95\ 5õL\Æ`s*\îiæ\9aºÒºS1\97a\92aM\8cx\Çf\1c\ì4¢~1\9c\1e\ë³ñ6\É\aM\å>4\Û\ìß\91Vê¼\81¦\ì\96\ 5h\Èg\ e\r\1e\Ç[g-ø\bXR\97,\ 4R;\ 3\10\88G\ç\1f\161\î\Î\e\9b\âxú\Ú%þ\85¤^À0\ä@º\Ô5«hR\ 4\ì8G\89cM\nds\rø\Îp\á\94&c\Ø\ìg8s]\8cû\ç\19\11\11\11\11\11\11\11\11\11\17\9fò\97*ñ·\b\è[/(ò\îñ­q\Ï\1d\éµr®¶\9d\Ënµ\8bK¯\ÑUB     $Ë\9dca-\ã\b\8e\"\9c¯\Îs\96\ 4D&qðcó\88    ùjõx\í¶\16\ 5\89\Z\8aª\1cû­j\7fg¶*\áN\9ba\1cqY\18w\\GLi\ e\ 3\n;\17\98\Õû&\Å\ 5õ\Ø\Å~\7f\1e\8fg©µ\8bh\18u\ëô\1d\ÌòW\ØØ´u\r\å\8e\Öv?\91dH\Ìv\Ø\ÛKÙ¶\19\11\9d<\Ò\Þ\Ç\Ù\ÞM\rF©ª@°¶p\â\ 4ó)5JRØ\82\ 4&BĨ\Ñ\ß:/\19^\8e®1\ÒE­r¿\91\Ý\åü\9f´ý\15öÁ\ë÷\1fÈ\93Q¡\Ñ\Ø5\á\95ø[\9e\Ó\î\Ûm\Å\Ñ$\ÆcI\ 6\18ª¨l L\95_oY#-S;\á^½pO[ôú\í\ 3\80ø\87\8e¸{Lª\8fø\90u\î<Ô©ujñGû\1co\81\19U\123\ä\ç%v_\92Jy\Ê\ç{e\Ï϶3\8fcDDDDETOª;ŵ\97Gû±m\Ø\Þ<\Ö%D\ëomï­¶ú\9b\0eƬ\Öy\9afOu\ÈZ\83\9c\Ðg\10GpC\13\1c\Ùó\'Ø\90\Û1Z8\Ð+\â\8f1}V\êúd{\ÛEÜ\9f\19\1c[©I°°\93\1d]\8d\13\82ù\17\17SO>\Öкü\b\Òõý\94\93\13ó-¿\99 \9f[*\\æ°¡\8f$\í¯<\éVQ\çe\92#DDDDDDDDD^3\Ø\1eÀq\'W8\83y\ç^qܪô^4\ã\Ú9\×\Û\15õ¡\98\Ì6<\18¥\93\88Uñ\Üö\96\Æ\Ún\0ñ@¯\8d\îy%þ\Ø`\ØR²¥¯6\9esù\Ï\Ê\Ç*\ÜkTv7|q\Ô\1dR\à\81\ã~ \8d5\àÿ\0\12\86¶k\ß_»r\'\Ð\Ð\æ\Úú\Ç\"\8df*\8995m!\Ã\v\13\æW\Ã<lSñeâ\83²>Vù\Ð\\S\Âñ\19¬i4N\ 4¾R\æ\8bú\Ést\Þ9¦&q\9f¶@£\96#®\ïd³?ùn»\16tS\Ì{\87\83K\86\Ã\Çym\94ñ»â¿©þ08z³\8c:ý¦C\91²>,\7fñ\Ï0\ì5\Õ\ç\ä¾F¶\13O\82\Ûl7B\ f\Î;L\é2~ª\8a\ÇF¨\80\ 22\ 5|HÕ± Ã\8b²4DDDDDX·Ü®\9fp\8fzú÷\È\1dm\ç\íZ\1eÍ¡\ïµ%\86\18-u\8e¿n,¶E>\ËE+\ e\1c\88\174vA\8be\ 2\\CÆ\92\191DPH\8eq\86\1dò\Û\á\ï±þ\'y\97:§$À\91¸ð¾\Ûa%¼I\Î4ðd\ãY\Ù\ã\ã\12d\87]¼6@ÀQ\îñ G,£T\99\15´8\Ò\ìi\ÜLÀ¼¯£\ë^\"|¤ò¿\8a.\Ô\Õs\9e\8e       \9b7\1e\ì\Ñ#j<\Ý\ÆC\9cH\Ñw½\173\99+\ç\1cO8«Ý´kGɬu\89V\18À\ÆSXW6e[m\8di\12\à>\9c÷/\80;\ÛÁ\9a\97`z\ç½U\î\Ú>\Ó\ 29\ÊØ\87\Æ-µ\Ë7\8f?\99¯\ìu\85h§T\\WIa\áË\85>4Y!\95\16Ls\842£J\8c\f¨DDDDDDDD\\2$\ 2(\r*Q\85\Z4a\12D\89\12\b0\80\0\b\ÜC\18\Æ#\9a1\bCk\9eB=\Íc\18\×9\Î\Ãq\9cª¥}K\9ee.»û\Ù;\9e·p\Î\Íi\eª=|\Ø\ìµ\ÜF\8cCD\87\Ê\\\95I/5÷\ÛE\80òÀ¾u\r\15\9c)\10u¡9¹\812HMv\Ò\ÜE\ 6¯g\eM\Þ8<wsÇ\93N\Ì\ê}p\à\è,\86ù\ä\15§ r\15\9cSH\Ö8\ÃG\ 1\9bü¶\Ót\Ñ\12;§\ÌhZPkú\à%Å\97°Zýq\9d2®¨\16÷\957\1eô_£|\a\ã߯:_]zû«C£\Öõ\9a\ØL½¿tH\ãØ·Í\90q\Ú\ËM»j\9a,d\93m­e\æD·5\å ¢fA\ 6\1c¹\Ï1\8d\98\88\88\88\88\88\88\88¼¿\97øW\89{\ 1¡\ßq\875ñÞ¥\Éü\7f³À\95U}©\îT\Ñ.ª,k\æ\8f\99\18\80\9478m\90/q\15Àx\88ñg#\Ëþ\ e\146û\ç\è\Ì\à^M·º\Þú\'\Í3úûa%§\9c\Þ!\ä\n\Ë\1dÿ\0\8f\äJdiFt*-\8c\97Qv}iövE\13F\édº¦¨\84\11B\8bR69Ò\85©\8e¹økõ*ø\8f\ß[\Ì=E\×õ\8d¼\ï1£\ß\è|k\ËZ®\ï¢\î±\n\È\ì$\8d£\8ewi\ÚT;\'\ 5±¢¶- \81\ai\0\ZXUò±\ 6M\9cCÉ¿©\1e\92\b\ÔZ§\90\13ü¹\Ä\18¥«¯\83ºs\'\12\ e\ïMmw\n0£]\Ú\ 3\8ba\16\Ïd\×\Ý2v\1f6%%}\Î\Û\1c\ 3\É\á\Z\â\'\Ò\13\17%yc\Ôe\ã7\81\æG\89Í·ý\93\âQL\91\98P\í7\î ö7]¥\9d;\ 1t\8c¬¶\9bÇ­\85o! a\n\æ\Õ\16k\ZÁ\e\äüdD\Ã}?¬þ}|Iö\Êõ\9a¿\14w\1f\8f\à\ìòl\eWY®ò\94-\8f\86®n\æf.f\95´p¹B\9fU%°c\ÅnK\"\\?¶#\Z\Ã\ã\as¡\Í\Äm°\êÛ®\9b¼Au\9e\93¶\ë;\85c\1c\Ö>\ÃV¾ª\Ø ±\ï\Ær\Æ:]L¹q\Ú\ça®\Ë[\92c.\Ã]\9cc>\Ù]\9d\11\11\11\11\11\11FS\Õ\1d\ä¿=\19\èm\87\ fñ\î\Âú®\7f\í«-¸\ßP%M\Îj¶mGBüG\7f\8f¹\n¹ð\ì+¯!º¶\19\ 3GS}JR\1e\9fiº¡t\81´2>\Æ\Õ\aQQk\7fkYCCYawywa\n¢\9a\9a¢\14\9b+[{[)\"\87]YY]\fF\99>\Â|\Ã\ 6,(QBY2¤\94@\0\9eWµ¹¸\ f\Ó\ï\â\8b\85\Ò\Ív>\Ó[S/³\\\ç\ 6»{ç\9dª$_rG<\97Ì\99©\è5sd\96L\Ö\Òi\Ô3\áÀ\90Áº¶%­\ë,/MEW>d\807|\88\88\88\88\88\88\88\88\88\8b\Ì9k\84ø{\9eµ)ú\176ñv\83\ËZU¤y\11,5nD\Ô\èöú)Q¥µ\8c\96\ 2\Ö\ÞÂ\9b\e\"\961\fR\99\81\á²\ 4\b\ØxýÛ\98²y\1fô\8ct£²±owþ\9aÏ\91\1ec\94G\ÌfµN\ 6\\p\rÓ±ü[?\rüyõÆ\97¨\95°k\äÄ®&\99}ER\Ë\vS\\]T\Ü\18Oa¡)»\87˯§Ë°v\1cg\1f\91ù3®w·\98\91k\10\ÚF\É:ó\82¹\96®,ºqX]\Ô@´\89\8dKlp\9dYO\ 2\ÂTú\b\e\8dEik\98fVW\\V\96t\Îü-z¨¸Û¸7ú¯Z»\Í_¬ð\7f?]\Z\ 6½£rMQe\87\8b¹Z\ì\á\b¢V\Ê\Ä\âÉ\91¥m\97\16\ e,\nÚ\99²¦\×O>jÁ\12\êu\9d\99\ãA\98°\8a)\ 2\11ÀQ\98\ 6\e\f\13\ 5\í \8a\"7\ f\19\ 6Fe\Ì \È\Ça\Ì{s\96¹¹Ã\9b\9c\ã8\Ê\äDDDDDU\14ú ;\87s\Ú\Ï+\9c»®6c\89¡u\92¶¯\81t8Ñ­¤Î¨\93\8a\9c\97eÚ¶(\Õ\æc\ 3Qcm°l\'«µ\b2gJƹ\ 2A\8a<\å\90adÿ\0¤¯\Ç`»SÞ\99\9d \ä\ZY2x\97¨°\19²Ò¸ñ\9aú\9d\8f\9a-2\bº\Å1]&,¸3\85­\ÔL\9b±\ÚV\99\83.\1cj9\"8\9f\86|\í7DDDDDDDDDDE\87=\ä\è\9f\\¼\86pFÁÀ\1d\93\Ñ\ëö\Í^É\87\97¯\Üd\ 3fË¢ì\8e\8cX\Ñ6\9dFݸlÊ\9bh­&Z÷E8\9b,\1e\á6}ð\12\86\9f\ß+^2y\9f\Åwjv.\0\äø\96\16Ú\85\98\8d´p¿(~        \ 3E\É\Ü|i.\f{(\13X&\Â}\å\11ó\8a\8d¶¤Y\fº»&\ 6D\88\10¡Z\Õý\ÓHô­yÀعö¾\1f\8e\Î\Ön\ä¼\åmB\8aLοò\ e\Í//º\ä\1d\1fl\Í/`»\9b#\18·\Ûõ¸\ïkkd\1dÏ»\Ú*þ\83\98v\97\106+\99S\80DDDDE\ç<Á²\eN\â^RÛ£\1dѤj¼u»ì\80\92\Çe\8e\8ej=f\Î\ÐFkñ\9ce\8e\13\ã4\8dv3\8c·-÷\Æq\ì¨}\ä-\ëa\å\rÿ\0x佺H\æm\9c\87¸l\Û\Ö\Ï0Cp\85/a\Ûn¦\ß\ÝI\18\9cò¸c=\95\84\92°n!\1cÆ¿\r\Ëß\9c|³m\9f¦;¦\9a\ÇRüTp¶\ÉZI²6\î\ÔE\87\Ù\rüó\7f O\1d¦\ßO_\ 2\86¨p\ä\10\98\84\ÊMV®\9e³#\8fôG\92H\ï±$P\ØL\9cCHU\11\11\11\11\11\11\11\11\11\11\11i;\ÏG\8c\Ýo\É_C¹\eM®ª¬\1f:ñ]e\97\'pf\Îh\ãdð\íz\Ýd\édÔ\8d\9cѨ¶ø\ßmU®G\12\Â@\84g\12º.\'=\84U\nqW%òoYy·I\å=,öz_+p¯ Vl\95C°\r\95\\ê\8d§P¸adR\ß\×0Õ¶L\8eY\11$Rl\Ôr\v\15ò\ë\ÍcO9­\19\Î5w7CûAK\Üþ\9eõß³Ô­\1cvs\17\15j\e\8d­f\ f\f²(ö\v:x¦¾¦\9e8%4xs Yº@\Ï      \85#c\ã,h\Êadg.[\"\"\"\"-nù\82\ä9üO\âû½\1c\89V\ïk-S®|\83e_\8fµÁû&ÿ\0\eø\ÑC\935¯p\Ús\9d\81sð\Ç\ç\18&sñwþ\9c\Ò÷Áº(9C\9aø\7f\8d%2C\ãr\')qþ\8b!\91\1f\91\Êx6ݲ¢\80Í\8cL1ùd\8c\8eÁ\Ø\vð\Çe\84\Ë]ñw·¶oyд\Ê>:\Òu=\vZ\87\16\ 5\ 6\9d®\Ôku1\"F\14@\n\15D\10B\ e[\1c?\ì\Æ\â´?q}²ì¼¤{\Þ÷½\Î{»j\"\"\"\"\"\"\"\"\"\"\"*t=Eý<¦é\87\95\î\Ã\éºÁ\ÆýO\97d\Ã\ìn¹\r\99\92GT\83\97\ç\\[]Ö\98ò^ì\98\8cÛ¡lr\9a\Ø\â\8b\ 6\10%\86²\ 4\82\17\92k^\8d\Þd\Æý\â\çm\âü\Ç8\ßÁ\1d\8a\Þõ\ï¸ùn[$[\Ô\Z~Ec¢|Jüb\18\89~a|H0\9bó\9b9\Ùk\Â\à\11\Ò\ÕDDDDZ©ó\87¥\Ë\ß|Jw\ç]­\8ai¶\ä\ë\9e÷>\9e,|û\18öU°q4\11Ç\8c¹\83ve4$\8b\9c\e?[p|¿9c\98\Ò2«ÿ\0\ 6\1cw\ 3\95¼¶tcG²\87\16t[.bÅ\97\Ñ0_lf\É\Õõ=\9bk\83(\8dø\138\Ì\19Ô\91§\f­c\9e\ 2\Ça\87\8f\98Ú®\96DDDDDDDDDDDDUÀú\Ûø\ÓZ \ì\çJùJ¾¬\0\Ú9#\88yC^\Ùn0!6M\94\1e:Ù´\çk°Jv±¥$j¦\îV¥\8e\12¸\8d\ 1­&\10yn$¹¸\Ù\'¢A¥\ÇJû\8a÷78\ 3»EJÑ¿\Ûôâ·\89õl\99¸Ï·\ï,cÁ\9c\ã\ß>\ß<~±\ïû\9a\Ò\"\"\"\"\Æ\Þ\ãj Ýº\9d\1dZO\Ç!¶\á.J\13\9añ\à­&A©Z\Ë\18\9c<\å¸\Î\fH\í\16]ûø|þ\7f\aü~\ e©·\ÓM\0\Ö\1enú\'\81\0\86dM¯\95\ç\És\ 6\â28bð\a+½§3±\8c\àCü\8c\80-!2\Öý\å\bñ\9c\90\8ck®$DDDDDDDDDDDDPMõÀ\ë5\î\á\î\84\î?O½¨y+\995\9f¿8n~\15òu}F\Ó\éc¾\1f\92b|É\8c\93\âÿ\0¨Y\Ã1\91\å\Ù\Í\1fF®·\ 6§\Æ\ eùw\Z\10c\ËÚ»#»Î±\9214d°5m.½H\ 3\È#[\87\18\81\89\0\11\18÷\å\Îhc\88Xv\18Ƶ²\áDDDD^[\ÎQq;\859\86\v²\æ¶g\16ò\fW9¾ÿ\0,bF¥n\1c\å¾ß¿\960ÿ\0|{c\ß\ß\Û\Ûöª¥ô\9eid\Ûü\Ëp\ì±dmv\91\Æ<ú9\äù\7fH\âk\f¤.\19\96µ\ÙÁ\n;÷\ 1\9f¬5\Ù/Á\Îk\1c\çb\Ú\ÄDDDDDDDDDDDE  \8f[\9dn\v\ÓÞ\97\Ü}~ù\83\Ù]ª·\îöÿ\0/ù^/¶\95õü¿¾>\ß\áp\ïoõú}ÿ\0\Ý\Â\Ï\ fH\95~!øiФ`\7f\f\Ûs\Ï<Xe\ßû\Ù\1e\ e¯\ìþ\ØþØ­À¿\×ü¯\ïþ\98\93º\"\"\"\"\ê\Û\Ì\11Y\é[\85iÿ\0ȱն\b&ÿ\0ò\97S.9?þ     \95\\G¥+\82\ë5\8f4\9d\Ç-?\Ø\n~\ 4Ò¹Ã\8e*!·ú\82\Êû>Y\ 6¿\ 1\Ïq2\ãý\91a\é\í\0½ß\9fv\È7\Ûò~\19\9cY@\88\88\88\88\88\88\88\88\88\88\88\88¢¯\ë\ 3Ñ\83±x\9d\9b·\9a\e$;\8f\8c§E\92\ f/\81\'c\Ø!\ë\9fhð\ìý\8d\É\âÌ\97\19\es\ì\Ò\äosp\\a\Ù3\éu\Ñgh\1e\18z\Å\ 2Àoa¶\e\1e\82\ç³\á\93A\Ý÷«\8d\96¼\98\Çû\Ìl+\0\ 5\8fÿ\0}\82nT\83\11\11\11\17ø \Æa\90E\e\n\"±\Ã(\88Ö¼d\eÛ\96¼dc±\96½\8fnr\×5\Ø\Ë\\\Ü\ç\19\Æq\9c\áA7\Ó\17A\1e·Ì\9f\9clG\Æ\ 6*\ eG\ä\8a\b\Âo¶\Z\Ø\æ\í?#üq\8cc\ßô\ÆÒ\89­ö϶1\9cÿ\0\7f|)Ú¢\"\"\"\"\"\"\"\"\"\"\"(\àú°\ 1\83xJ\ìi2\Ügñ¹\ 3®\ç\Æs\8f\Ûr\îp\Ò#|±ÿ\0\fûH\Ë}ÿ\0\à\ì\ãýVsx7«\rW\88o\1d\10\86,\Ê\ê\Ï\16Z\e#c\e\93\ZÒ\84\13²R\ç\r\ÆHL°\Ãg\Í\Þ\îø1\8cò\Ö7\Ûk\b\88\88\88\88¡\Ñ\à[C¦\Ðü\ãú\84i©\0xð+ù\86\9aXG$\8f1²]Ë\969kl²3\88Owe²,e\Z@\ÚÏ\80\ 6\"±\80\18ÀÁ\r\93\17DDDDDDDDDDDDQ\âõO\Ñ\Ø\ßøL\í<jÀfA\à_ðe\áÇ\875¾\Õ\Ô\\Ù¢\ÚÚ\9f9{\9a\ßhµ±eJ\Ë}ò\çý\1f\ 1µ\Äs\e\9c\ãð±\18\91<Ix\ã\11\1dòsºwÁ\12q\9fø\ ef\85O0Mÿ\0 Gc?\é[:DDDDE¡\Ï\Z\Ýn\'\14ù(ò\ëÌ\92ª[\1eG=se%¤;?\ÆÀ\9f\"\8f]§«\87\16\v\8f\86\ã\ï\10®e\ì6C\Æ]\9c0Ö²²\Ö\ã\ä\ç?|h\88\88\88\88\88\88\88\88\88\88\88\8bWþf8>ϱ\9e6;I\Ãõ\ 5dk\r\Ã@\97_\16a\ 2\ÙC\81(\8fh\àO|W\Z;¥6%\89!\9dÀ\11\86G\á\99ø\948\ÆL<\98\è\æ\8aþ1\é\ÇXxù\ád|iü\1d\Æ\Ô\"\bþ¿¬q`jõÂ\89\86\àyø1¹\89\80»\ 3ǶE\8cýnk^\×7\19P\88\88\88\88\8b\áT\ë44s®¬ªk#Á\9d±Llû¹!û>\Ë\19\8cÁ0Ó\9f\æ÷7\ä\Ü\14\9e\ß^\18\ß\ëwôû¯º\88\88\88\88\88\88\88\88\88\88\88\88º¾\ç¨\Óo\9a½Î¡°\8c¦¦½\8b\88v\ 2\ 3\Ú2¼80\8f\8c1\ï\19Z\Üý\81f}ò7c\Û\19ý\7f®>\95\r4\1dr\8e\9b^¬k\Ù[CS]M^\Â;\ f# \Õ\Ã\f\18\8d{\Ú\Ö5\ÏÀ\0<9\Økp\çc9\Ãq\8f\Ö>²\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"ÿ\Ù',4,0,'','','',''),(47,0,13,'9305bf00e80b8132','14369303895bf00e80b1e28207310424','2018-11-17 13:50:06','2018-11-17 13:50:06','','','Contact Photos','63436871415bf00e80dfe9c308856934-4.jpg?ts=1542459008','image/jpeg',80,80,2356,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v     \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0*\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b \n\11\12\13\14\16!#\15\"\18BCÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91ù\ãõ1VüwZfº\9b\bJ®\Ø\í¨!¶\9d\85m³e\ÙMg Ü\91\13\ 4\a\14|\\qb½tÙ\99\11ö$\15[Q\àÁ\Õ\Û|\'¬\8fJ\18¢+\18\Å_\8aÎ\9fy®ód\à]±î§\91~\Ü\èN\9e\ÊM>et-e°¦µM§s¨2T9¸\Õ4ZO\ë4\Z] W\9a~?;\ 6J³&\Ñ&\ eðu\êôç´\84´f÷}v\ë\Õ+¬\9a\Ö3V\Ð\ì;j\Ó\v\1c\ç\ä*stn]\9d¼.\87\98±\Ç\19\â       ¶\í;E¦\\V\1eÀ\Èu0°\ÏEW\ 3}o¹\e\f\16H{\v÷^8\ã\8e9\13{\á\Ù\ 4õ\ 3¦\1d¢\ìòE\1có´v\8eØ»\ e\n4\Ì+\"J\Ú`kg¿R\88+\b\ÊUøò\Öl\Äƽ\9c)\1eÍ\94¬üÑ\8c|±Po\8bÞ©\Û<°yCÓº\7fhX\',\98\Ý;Jõ»\13t0\×U?-M\85̦\É\ÛR\84JcûX\9e·\8e\19ðqòXJ¿\1e\Ãc\8f#-ýh\Êqt\15F£X U+TjL\ 4MV\9dN\81\89«\Õ+0A1\e        ^®À\80\Ä\\4,Lx\Èlp£c#\Å\1c0\85a\bi\81\Ùm´\'      N1\È9\äo\Æö\87òa¢¤t\Æ\è2\ëX\90\10Igµ\î\Æ\×Ö¹\êå\92\81d\91dl72\88ø\é! m\Ñß\92\ 4z\äk6\à%b\ f`ofS\1f \91dÄ­\v\ 4òe\é\ç\ïýã­\97m©rÙ\9aÿ\0Ll@\ë{?D[\ìÓ³Ú«h\ëb\10\f\94E¯]\ae|õ\ë\é;e\1eB.\ÉO³W\90\ 1 <T|}\98Ixñ$ \9fµ\ßLm\9a^û\Ô:»xk\89\ 5J\ëýÁ¯©\Û6\95\"\â\12Ó¦U¯5øû,\13ï²\87\1dK\ 4®6H\7f\1f\ e/,?ö3\95+(\Îy\é|q\Ç1\8b\8bVØ·?\8a>þkÚ\90\84H\Ù$úͲ&a\ãDK\8b.P\Ê\\Vn\è\8a\r¶³\85¼\\\9akª\0Vq\9c\á\â\bm¥%I^S\9d\ 4ý\19¯Dµ\å\8aþ\83\Ö\Ú\ f#¦;q\984º¶\13ö\9c\9d\99¤\b)±\Ò\æp\ê\Ê\ÄS\aº\94\8f\î\æ\ 4hÕ¯\1fJ\1c\Î-&\ã\95Mz¼g\é\97\ f2\12\90T\ 6\98\90´V:ó£©\9b\fx\81\Òù¥lb\9cµXc\Ã!\ 2\8d\96ý\ eѯ\ÃB2\9c\95\86\90\188Gô6\9eX\ã\â\ãE\Üz\Ïã\9f¥:\1fb6H÷\íg\ÖýY^ºÇ\98¼­ø[^*\à\9d`¯)Y\Â\7fÒ¹*aPL\ã\Û\1f\16#\9bN?\8crzq\Ç\1c\â}\86Ie\á\88i·\Ç!§\18}\87\90\97Yy\97Q\96\ÝiÖ\97\85!\Æ\ÜB\94\87\10´\å+Nr\95c8\Îq\Ê\Ä{\8dÕ½\8d\é óA¥{³®ª²¶>\92^v}\8ev\8c¸D\7fXz\êò$\8cN\ß\ëÄ\82\Þs\è\Z\ßI«\Ø$M\×k\92y\"X\"À«\Í$\97\ e\8a³\v\11en \ÛZ\ï}j\Ý\7fºu%¢:\ë¬ö\8dN\12\ïFµE)j\ 6r·a\ 5\99\bÃ\9aC\Èl\81\ÜX\ï%\ 4\86SL\98  Hx3\18\1ei\11\Ûȧi\b\éGF»IÚ #\ 5\99\9b\Òzv\Ùo«\Ä\È%\Õ\Æ\É\\\Ò&\"\éAJ¡\87\19}Q$\Û$a\9a\94\Ã.´÷øõ\13õ8\87>*Æ\8cÞ\96~\86\ f\äc´ý\8aò½\ÝB\Ë\Ý\16m]·cÈ¢~Ú\94\98\r£²S\è\Å\î\7fcO\n\9c4\13¹\Ö\11E\Õܦ@ \\\Â\ 1)d\0\á\ 4\aôøv\15cG\1cq\Ï\ 5\ì\çft§O4nÁ\ìganñ\Úÿ\0TkHe\ÌY\'\Ïù:óªS\88\Z6\12\12\91\93vIù\'\86\88¯AG¶\éòÒ¥\8c\18Í©n{\ã\0]_\ì\1f\95ÿ\04\84\ãv\ëk9~,<l\1e{\ØÖ¶\18\9a\85R÷\Ý>\ËWX%c\æÁ\r-}\8b°\Ñ5EJM¦²ðV\88ªÁ\ä\f\90\ 5_\ã2\äø¹d\94ñcÓ\8d\81[¬W;\1dL¹w/\152\r\90\89\90\îV\Ñ\Ø\1d\8f@\ÓRL i\19\Ø\ê\9eÄ\9f\93\×5©c\ 6m#8õ:\95\\a\91~B\880\ã-m*tQh\94\9d_M¬k­oR­Ð¨4¨Xú\ÝB\97O\85\8f®\Õ\ë\15ø¡\Ð,l,\f\14H\â\Æ\ÅF\ 23hdP\82\19\91\Ùm8J\11\8csÇ»y\×\n·oú»¿:½t1ø\Ê\Þö\ÕW-jtȬ\à\82\1e²\Ã\12\fe\8c1\Ô\ã( \Ê\ìªÁ\9c\10w\1dm·É\8f\15\86Ö¬óO¯N\Ƴør\ß]\91ñ!\äJ,} j\ÙûQ\8d­\Ö=³g\Ê\â´öó\98L\14u*\É\15H\ØÒ\8d\ 3\ 3)û$-~\933H\1dd²k\Ò\19±\Ôf\86\87¹°\15x\Í\ä\12¤­8RU\85%XÂ\92¤\ç\19\9c{\ã8\Î=ñ\9cg\1f\Î3\8f\ã8\ç\Ï\1csQ?-\94Ù¯*~j:M\âJP\ÉDuO@kw»½Û\98\88Ò\88 \9b\8f\ÂD\Èz\Í^W(q¥8Ê\83Mv¢\ 1\82£\87\Ü\ÖY!ó\93\"\87pm¶a!!\ëP\Ñ5\Ê\ìTt\15~\ 20\bX8Hp\87\8d\89\87\87\8b\15 c\"¢\ã\83m\91\0\8e\8f  \86D\b1ZhqFe¶\19m\r¡)\Ç\Ùñ\Ç?!v\×\Ô-\99\ 6\ícc\Ò*\e\ 2¶úþ\×\ë\×j\Ô5®\r\ç0Û\8da\ÇbgB<\a\17\86\9du¿\9a\Çʾ·\1cG¿\Åj\Æ`·d|h\é]\ÍXùi\ë.\Å\évâ\80\87l\rsºú\9bn\9c\Óòµ2#Ò\97!E°\Ñ*2Pú\ëgS\Ç!\81Z\91¥\Þë\92±\æ\Å4¸ð\n\86uL\9c4Añ!\ß\Î\Älݯ\Ùÿ\0\e\Ýýj½ÿ\0;zHd)\12û\ 6©\Z\Ü%[²\9a\91?K\Þ0P\83²8\912E\8f#\0\å¬\0\ 4\8f\8dmv\9aó¢\ÇF\9eô\Ô4>u¸\æ\ 3úÉ­G\13\Ô7\å\ 3e:Û¥\18\ïK:@\0\85¯\å\94E\alv\ä\ 1\91m{ÿ\0®\11 F \16G\Û\1fú²þqÿ\0|s>\1cq\Ç\1cs\ 2²\Z\Ìx\ßRõceE\'\ 1.\Ï\á²\Ü-¡,!M¦`º\çnjQq¤\9a¤º\96\ß|peA\19µ)\95:\96\ 1\19\1f?­¶ð\Þz¸\ä\ eÕºý0\9eH;\99°S\1c\86Qy\ê\9fC#ñ&\96\14\9c\98]Wa÷¬SF[ÿ\0RP\ë¢\bl2\96\1dul²ð\ÙV\eK­\áSÇ\8e8\ã\8e@\Ùz:W\äò\81²\15\10¬©\8e\87\í\ÊSs\Øo?\ 4~G`t¤\ã\91+w\1f\14\18l\Æ\ÛW¶U\86\ÝS~ÿ\0\17\97\1c\àH£ \97\8c@\ì$²\19\1cg\ÊKM¤\97\11d¸+\ f?\84\á\Ç\19\19\vpv\96¬¡\95\94B\9bJTó\99W?\1cq\Ç\1c\ëd1T[g\ävrsC:\ee\å´\ä\84\nû¬¼ð\èw\Û\æ\96]xv\1cq¼gâµ²Ò\95\8c\å \Î;<ÿ\Ù',5,0,'','','',''),(48,0,13,'9305bf00e80b8132','14369303895bf00e80b1e28207310424','2018-11-17 13:50:06','2018-11-17 13:50:06','','','Contact Photos','63436871415bf00e80dfe9c308856934-4.jpg?ts=1542459008','image/jpeg',48,48,1488,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b        \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 1\ 5\0\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0  \11\12\n\13\15\16\"1\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿\ì.\é\1eY\Ö\Óû\8e\190\9c\ f\ÆK\ËŤ*X2 \7f|\Ë\Çf\Î\ä\8c\12Yys\82G!µ+\15\92\91c\91·Tଲ´\Û>¾\90\99\ 1³I¦\Ü\Õ]U¢\ 1n\å_Pf¿\89\Ø-5ô\e\84a.-¸\é\é\145\87\12Û®6B]e½W\87\87\91\1fò\1e\ì]\81\Ä~©:\'jjy3 6e½5\9d-M´G>\à\92u3v¬ªk²\Öx\93\Zøx\19¸J§\8d\82=\85!ð&\9b\8f1\87\ey\86Ö\99\íø\9cz\ì \è>\10®ö\íª\b\19¾\8f\ì<\Ø\ì¯]e\Æhû\rWQ\85k\93\86¬Ube\88ýb\86\1e\Þ\ì\17óû#\Ì:Ó³\ 4J\Ã\r\'\923\ 2\1e[dÿ\0 »\'°\ÞR\çÒ½\84ð·RZi¡sÓµ¢w?9\ÎÔ¨·\1dgt¡\ÊØ£«\Ä[@\1eZ¸\í\84Ih3¦Az\Î&f\9d\fº\Æ\ f\92\8dr\fø\959!@½Ew\ã~\Ìx\'Ju\89UÀ\ê\16\ÛX³U}\91Y\8dy\ç\âb¶5\ZX\8aÝ­P\8b\'\ä¦à¥\8d\r3Ð\82\96\ 5\83\15* D\96k\ã¬\Ç\ég\87\92\×\Ü÷\v\Ê{\16õ\É\Ñ\1c\ËUX­\ìy\88\10\9f\81C#gk©\16-\958r\8b\Ï\ÊB\Z\ÌTs\95bNs\nh&&\Ü)䩦V\9c¦\7f\8d\ fJC\í\ fZ\Ô\ e\88MC¢xbR\É\Î[óWM°¸\ë5FR¿m²»P8Ø¢s\83\e\12\91\85p\97\ZCY±\ÃXÀk\í\800¥r¿É\9f¦-\Âó\96¡õ\9b¥`\139\Ð>\Ðö\1c.\8f«\9e\1e\16¡I\8c¹\Ò     ·LÉ»ôyܪaù\bºò\7fHgp\1c)vI\7fº\v\8c\ 5\92«Ï¬þ\17§ú\à\â­\'\È\ÔùuY\7f\88\"I·Û\96Â\85þa°\ìò\ 4دVF\ 4Z\96\àQò\16)\ 3q\f\ 3®:ð\10¬\Ç\ 4ó\Ï::\Ý[\ã\ç*\Þ{\9a\87κog\ï}¡-\88M{¨\èöM\81o\93ú)\×\a\83¬Å\91(b\ 5a\1f+(\â\90>\ 4\8f\11¼e\Ò\Î|q\9aN\\u8̶\ã­Y\Ò\Ý\Å\ 5    \Øý\Ëq\Ø\Zò\91³\Ç\16\é\Ï|+®\í\ÓZþ\87­5<\Ò1\'G\96\è9\Z\99±\96½½·\ì\95÷¢flpV    \Ö(\15GJ~\11ªN\rÉ\89\16¦k\8d!¦ôù\1635^¬ k³®&7#o\91§T\á+òv\É\16\9c)Ö¤,òQ\81\ etùͺi\8e$\Éb\f\'\ e\16Jð\ç\Ù÷r©\á\ìÿ\0\Öü¯m\15\Ì[»O]àµ\9fYñ>\à\8d\Ü\Ú\ 2\Õp\8f6S_N¾\83á\89´k\8d\90\14N?|MN\Þ4\18,ª^   J\97\821\84\16 \å´\éb>\Äl¾\Ä{\9bhU­\83Õ\9a\92Û­)jd\ 1vvÓ¢\97\1f¶56§\95)öBT\9d¼ø5\ 3±£5\ê\8cwõ\\\Ø&kFk\Õ\È\Ü\âBòMXV\Þ}\ e\\d\9ct\Ôl|\Ì9\âJD\Ë\ 2$\9c\\\9cy\r\16\ 4\8cq\ì6PG\ 4[\v[\ 4\88Xδ@\Ä2µ´ó.!\ÆÔ¤+\19\Ì\éö\á®\ß\Û|\v·µ\8bH%\æow>p«\Ê\n+yq\Ã\ëòý=¦\84²Æ¸\9cc?õd«\îI\80\8c¡°\È}k\ÆP\95c4xa\87\fv\ 4\11\96\86\14VZ\18a\ØBZdq\ØBZe\96[F0\86\Úi´¥\r¡8\ÂP\84\á)\Æ1\8cc\Ïo\ f3öÚ´\ 5\æ«e¤\Ú\âÃ\9c«\\+ó5{$,\88\95\1f/\ 3?\1cDT\ÄY¼\95²@gÇ\96@¤°\êTÛ¬º¶Ö\9c¥YÇ\88Ǫj\Ô\í/\×\7f)R\ìfH\1d)M\Öm\Ô\7fZW.\äö\ãk\13\ÓppA?\97Ô·\7fó`À\8e\8ek\nV~¬\n\ÚSýp\9f\1dM\81G\8aصrj\93Ku¸òe+R\Ë[\18N]Á5k4=ª?\ë÷\ÆSñ\99\bQp¼ÿ\0¸FU\94ÿ\0o\8f6~\1e\1e\1ebµ\Õ\Z/[S!)\10®¾ô\\\v\e\84\19{-\95 \\\82\92¼\ãýú8ZÐ\9cÿ\0¹BSó\9c\ç\ç>\7fÿ\Ù',6,0,'','','',''),(49,6,8,'9305bf00e80e68a1','63436871415bf00e80dfe9c308856934','2018-11-17 12:50:08','2018-11-17 12:50:08','','','Contact Photos','6.jpg','image/jpeg',300,300,11005,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b        \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 1\ 2\ 4\ 4\ 3     \0\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b        \n\11\12\13\14\15!\16\"1A#3BQ\17\81\82\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/r9¸f3\9cDëº\9e±¾\8fð±g\ë]L\ã\Íϵ[d_\Õ\"¾þW\äñ¿\19Ķ¬\94Hx\8c\ë«x\12.¯+\'=­\91\ 2ûY©´­\97\18f0Hð\92\11\åF÷\98}`>V¹\ 2\Æø<|\Þ\r\á\íRľ\Õ\15\94\ 1vM¢¢/\ÄyÀ\8b¸\ÛZ\83\13d´\í{\Û.%\ 5F2\1c²9#\93\181\ f©\1e\\ó?\åC\9b¤\96VõÞ\8e\Â\r\å\95ùMÆ\95¼M\ãG\a\Û9À£\ eO\1d·W\9aøag\Ä,\8f\"Q\Ø\á\8cx7\Ú\æa\Ë\Ìõ\ eòù6\ä-\96§Nл\85\Þ\Ý\ãq¾\90ø\Ôz¶¡\Ø.À\ì\Û-Ì¡\80²\8b\1e¦\8e\9bn\9bic!±£\9eI\ 5\ e)\88\Ð\0¦sp1½Ø\95×\8f\ e\98ú°9J\92£h\87\Û^I\ê\×\e\\Î\89\996\1d\83\Úu\í«x\95L\è¸8®«x\êú\83\99\90\94\87úV\Ñm©Ø\82P¦bH£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8b\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)AT\É2\Þ1\12CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ø\êy\ï¶WPKúg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ek¾º\ê8­5¼ù\Îo\Æ#\àÁº$\Z\Í;\Õ\äù\9eG7\9c\æ+½\Ò,;\19\16:\Ç\1f\×<Ô¼e£¸ù\95\1dKM\ 4\82Â\85\88\9d81f\Î-\95¸cM\95\17\16Y\8cg\8b8\16\8aB¾\"=;}µò{.«\92v\0N\ë÷U²XR\8b\ËûEFKi¾Dl\80\9auW\19\18¢\91(²*ó\ï\1f\8cú(¥²§\9f\n\ e\aõ\11ò¿\Çÿ\0\88®\8bø\Û\ÔbRuÛ\86\ 3¸¼\11q°òö\Ù\n\1e\Ç\Ê;,\Èùqði\9b\\øå±\8b\f3\8f:MUd3\ e50\ç\Z\14\1c¶/Å\98Ù¢\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\88\8f©\a\bN\85\Ð\Øô멶\95óûc¼P\93ø·|\11k\ì\ë¸\ f\ e\ 6\ÙÎ\80ü\É\ 5\8f!Z\84¤n·M8\ 4­«x%\\lÀ<X0õ½®±]¯kÙ·½\9aûs\Ü\ï­v\8d³hµ\9by±lW\93OeouodwÉ\9dcc:K\Èy2¤\9c\8f!JG\ç9\Î}±\ì\Üc\18ø\1e\Ùý¿o\ëû\ãÿ\0|{\ç\1f·üñ\9c\7fó\85ø§\83\é\çô\Ï\a\7f\81¦÷{È\96\93\97j3\Ç\1eÿ\0\86zײ\Ã0Mq\e\97Á\Ü9f¦PFñG\96Ö²M6\9d#\Ùñ¢<ro\ 6Û\93\ 6µa\r\1d\156³O]¯\ëµP)(\ê\"\8a\reMdQB\81\ 2 qñ\18\"\Å\ 3\18!\r¿¾}\9a\Ü|\9d\97=\ÙË\9c\çg\ë\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"-@ù¹òa®ø¼\è\Öõ\ÌÃ\94\12ó\ e\é÷ñ\×\0\ë\8fcJK®I·\84\9ep>D<>\97U\86\Ò\ì\e\v\Å03EW\10¯­\1c©ÿ\0\8f\10\Ô\ÞòW%o¼Å¿m\9c£\Ê\e]\Æñ\È;\Õ\ÜÍ\8bl\Ú\ï\åf]­Õ¼ò|\Ï&A=\981\r\8d\Ã#Ã\85\14`\83]\ 41«\ë\ãE\83\16<qtuû\9c\ç?\×?\Û\ÛþXSDôµx:ge÷\8aÿ\0 }¨\Ó>þ\aã\9b\91\e\80ô\ëØ\99|~N\ä*Yc+÷+*ùaÀ\v¨j\92\Z?Ð\8b\97K}\9dð$L\ÄZ\á\×Q\Ûβ´\0\ 4P\ 64`\8a4hÁ\18#\Ç\0\Ø\10G\0Y\81\88!\10\ÚÑ\88B\e\8d\8dk\18\Æ\á­n\e\8cas\",=\î\9f|z¿\ã\ã\8b#s/ky\19\9cq¡M¸\1d\f\e\16R]\ìS\ì-H\17\1d°kiu\è66\Ör¾¶ü±\12¾\1c\99\8ef\\fGx\ 1\8f\ç7z\Äü[ñ\äv\9b\89ªù·°F÷\e      \13^\Ñløø¸{\È\æ¹\â\'$à\8eH\â\1fÀ¯y\f  \19\Æ^ÁD#\98\13\16bz\Ý:\82ùXdþ\96vF4/\97¶dDÛ¸\Âl¬3\ß\1fÍ\88f²¯\16]\íï\9f\87\çc\1eø\Æ>\7f¿¾6\9dÀ~¨\ï\ e\9c\ß2\9a\8eϱ²8ke´\8a\ãÉ\87\Ë\Ú6\í©k\95enq\8fÆ\97¾Ë n \Òg/\131\92Ù\83\ es\ÈF|¢\Ç<¦o\ãRܵ-ö\8e&ͤl\Ô;v½=¬|;­r\Ö\r\Íaðð\88øk&@1Áö`\'\11\1e\17?\ 5\e\9b\e\97c\v²¢\"\"\"\"\"\"\"\"\"\".2\10a\19\fb0B\13\1eB\94\8f\ 6\19s\ÈG»8k\18\Æ\ã.{Ý\9c5\8d\Æs\9c\18\ÎUFÞ¦¿!ö]\âò?¿\éZ\Æ\È\Ë>        \ê\Ñdð\ß\1cƪ³\Ì\Ú\v½\8e®IK\È[»@\èQK\Z\Îmù_ª\96)¤X\ 6<}M\93!>\11.,bb:\88¶=\â\8b\Çö\á䯻|G\Öj\ 6O\85ª[Z;då\8d®$W\È\ e£\Æz\ë\7f?a\9f!\ã8\v\1c\Öùdmf²L\7f\É<++¨ön\85&\15|\Ü6\é>!\âm\ 3\828\ÃD\á¾*\Ö\ëõ\ e9\ã]f¯P\Óuª¨\à\89_OEO\1d±¡Ã\8d\Z0\Ã\1c,k[\97¹\80\bC\82=ÿ\0PDÏ\8b1\èè\88¼G\9fz\×À=§\Ñ$q\8fcx\7f\8fù«@\93 3\v©ò&·]²S\âdr\f\Ñ\æ\ 6\971¥\Ç8A&<\98\11Á*<i\"#\ f\18\ 4\1c\12<¾zE\e§\Ómý\81ñ\8fasm[Z\ 3]\Þukn´e¥ À8\Ã|\çqf\áa\98§x\0\èÒ¦c^Ú¥Ø\9cųdxW\15\95µ\7f\ 2Àú\æ\9a\ã\\¸µ×¶\Z«*+ú+)\Ô×\94w0eU\ÜS\\U\Ê,\e:«Z\É\Â\ 4\Ú\ë*\é <9\Ðf\02¢J  c\È\10\Ê7³\1f5lw \ÞW{Á\ãsl\87\9ed½¨\Ô]g\1e\Ãb\â\1d\8eD\8d\83\8aö¶\ 4\92\nX\ÖZ¬£\àu¯\96i\19\912~ºzk  \Ò#\ÃýJLè±\9b\15Ö\88ømó¡\×?-Z1ªj\Ã\e\89»5©\ÔÇ\9f\È<\19oi\1cò\n&\84X±\ØxöqH\É;V§\Z[\9c<\ÊtpYÅ\8c\èç²\83\f¯\95\Z\ eò\91\11\11\11\11\11\11\11\11\11\11k«\Ë\'nkú9\ã׳ý\8e\96\18²¬5\1e7µ©\Õ`L\99\9a\è\Ö{®\ã\86\êz\8dc\ç·\ 4$2X^\ÛÂ\89\14\8d1\ì\9ah\Þ\Ð\ä·\ä\'RI.\\©ò¤Î\9d&D\Ù\Ód\Z\\É\92\ÌI2¥Ê\92G\ZD\992\f\98ò\ eg¼¦1^ò\14\8fs\Þ\ç9\Ù\Î\7f\9d\15\9f>\8fÿ\0\1f\8f\ë\ÇKv\Î\ã\î\95s\àr?o¬\"g]\14øò\"~\1f    \é²d3N$a\92L\98\93#\ìöò®6\90[\Â\1c\12J\85>\rm\84s>\9a)\9b/ôDDE\n\1f\81º®x\Ñ6¿!]M\Ó\7f\1f\9c¸ò\8f\16\1c\Û\Ç:\9df^^Z\Ò\êþ86\ËUI\ 1¸|\í\ëW\86\19¿¦\Æ5\Åõ@3NøÖ¿\8dE\8a\n\ÙQ{\ÏY{+\Ì\1dB\ç\ e>\ì/\ 4\í2u.I\ã{\ØwtÓ\86ù\19\81`8\ç\19&P\ßD\8d&!,µû\90\ f0\í`¶Lc<\ fû\áJ\85`\bs£\\õ\ã\13¿\Ük䣧\9c]\Ù\Î<>#\Ë\Ø*\85Q\ÈZ¹³\86X\éÜ\8dJ6AÛ¨¥\ÆpÀV\Ç\r\Èff²cA\886P°\ÉUr\'@pf\e\88\88\88\88\88\88\88\88\88\8a\">²¾r\9d\Ç~6xó\88\"·\ì\8d\ØNv\×\é,\9b\8f¯\ e\f^8\v9\14R²\ç7\ìÈ\99\1cW\8cn\Æ\1cI\81#\Ú\ì\a\19m^¨½s\808®W:ó\Ç      ð\8c\19\99®\9b\Ì|¹\ÆüW\ e\fis\ 2W!nTÚ\8cy\98\e²Ö\931Kn\Ã\á\8e\Î\Zü³\ã\9c\19W ð\'\10\ë\\\ 1\Â<GÁúu|\n­_\898\çN\ã\Ê8\15`\Äj\è\Õú\9d\f\ZP¶\14|0m\ 4\1eH0´ch\Úü5£\eq\867\Ö\Ñ\11\11\17\ 4¨±§F\91\nlpK\87,\ 6\8b.$ \8eDiQ¤\r\Â<y\0+^#\0\Â{\Ä`\95\8e\19F\ç1\í\Ës\9cf oQ\ç\8eAøóò+º\ÇÓª\9b_\Â=\8d\ 5\877q;\07²\rC\î.$\83y\ÓÀC\Ë)\8eú\r\8dØ´÷\f\98\10vj\êJ\98Ù\8dS\97-\ 3¢\98ç£\83º¬\â\ e\êò\'P6\8b\93\aY\ìþ¤[\8d\Z\ 4\É\ÙmdnL\ã\Êù\Öó\85W_òù\16÷h\Ôã¹²J\11\93\19«\ÔpI_Xa´Ã³q\11\11\11\11\11\11\11\11\11\11A/\Öÿ\0±7\1cC\Ð\ÝK\f~\1f\9eH\åÝ\8b$ùg##Y¬k5\8df[ñökÃ\97½\Øv_\9c½§v0\Öü3\97\×v\8a\96\8e\0Ô¹÷\Ì\17\v3p\16d\Â\á\Ý7}\ç*¨\8f\10\äD\97°\é «¯¦\14ø\Æ\ÆFx¬\93±þKZ\ïò¥\82,\8f\89>\9f¨\96\è¢\"\"\"(\90ú\Äú»cÌ\9e94\Þm\Öi!ʾ\ë_0\Ó\í{\r\88kA\"\è\9cy²\Ó\ÜjwUÌ\9b\87\8aX*\àZ[\Õló3\9fÉ\8a\10\Ò\È÷\8e\ÃIl\81\ÕÊ\8bcþ ¹²W^<\9ct\9b\95aG$©5\\ó©k#\10¾¯\93q\ÉN\93\ÆD\90\e8\e\83\10[\83\åHc¾Yx\ 2F5\84s\9a\Ç]²\88\88\88\88\88\88\88\88\88\88 \Ë\ë}×\82N¿ôOkll~D^b\åMxòÿ\0\9b9úg\éT\96Qcg÷\ÈÛ\8c¾¶aqí\86½þ\Ùùe\Ø\ep\Ê\èQKOÑ­­Í\9f\åKs\Ú\18\Ñ\æ·]\ê\Ç%V\Êv]\9fµ³ö-£B}~\18Ï\8e[\91º5%§\Úÿ\0\9b\\\×4-k\1f\82=ô\95\11\11\11\11jK\Ï\r\\K_\ f~BE,\".\"u»w´\8e\â1\8ep%\Ö\n<À\189~3õ\97\19\13\87ófZü°\84\1e3\ìGc4º\"Ì¿\1dzF\ÍÈ\9dô\éƧ¨V\9a\Ööge8n\ÄQ\0à´\8d®\×wºM\96öwø\ä\13\1c:º\Z\8b+C\r®q\8a\18o\14a\1eC\Ä\12^Z\88\88\88\88\88\88\88\88\88\88¢\91\ë\n\á(\1c\89\â¬|­$Y,οsO\1flµ®a\ e\ÇG.ûw\a\8d$\È#\ 5\ì3\Æ\Ä=\8cñ\È)9p\Û\"LS°y0FAU|\8a\\\9e\8d\r uþO¹\ fRx³\97\ì½c\Þm\84\7ff|F\íceÔ\84\à\ç9\Ï\Ï\ e\a\91¸kr\Ü\â;¾ynpÏ\95¢\88\88\88\88\8bH^£\1e^\Õø\8bït_²\Ø\n  9\e\8e3\Å:û^÷d²¶\r\ê\Î\rMt`\81\8c!M\83\95ø\8eG5­\14f\9f\12$\14a\e³\9aq\11I{Ò\8b\Õ}«\9f<±q§+Á\80w\é]T\×ö^U\ÛmpøÙ\87\Z\Ú÷^»\Ò4ê¹\82v\v3/³\97ska\ 4ñÀ\Ð\ne\b\87.dlÈ\8c)v\Í\"\"\"\"\"\"\"\"\"\",>\ï÷Y©;\8b\ e\Èõªù\92\7f\17\968§j\×!\1e\ 4`I´\87u\9aòM¢\97P\Ù\ 28\Åh\eh±1\bù\ 1þ\92»\ e\Ìy,ùG-\1d\en«°\è»Vͤmµr(ö­7`¹\ÕvjYy\16eS\ì:õ\8c\9a\8bª¹9\ 1\f\fȯ²\87&!²\12\94Y ]\91\91\ìövzú\92\a¥7\9aµ\9e\Zó\ fÄ\91öyL\88>^\ã~M\á\Úb\17\æÀºûa\83W±Àa¤`o\fV}z\94\92\9c\10\94\83\1c6\99²%\ 1¯¶\á\11\11\11\11@_Ö«\Ý\1d\1dn\èV»>Q7\18û\ 3;\11\Èø\81e\91F\85¯\â§c\Ôt\Ízö¹\99\11\ fú¬\é³vH\1fn%By)B\7fhó`\ 1ϯ½\15²~\97ÿ\0\17\93:\v\Ñ\àò·)\ëM§\ìgk?J\ä\rÅ\92Z\Ü\Ùk<uø¬\91\Æ\Ú9I\98\85\98u\92\7fm]9³±_³\Ý\Þb®\Î]Qã\94\92eDDDDDDDDDDET7ª³Ç¬þ¡ù\f¸\ç]R¦cxs·1\1fÈ\95³E\17\18©\×ù*&s_ºj\8c|Hm\8b\ 1\92\16\ e\ÃX\e\19ò-\î$\É\Ùg0c\83\r\8d\1c`\17»u{\99\ f\×~\Èð\'<\ 36\Ù\Ç\ fs\ f\1còD¸ôG\Ä{[\n½?m©¼¸¨\88÷J\84\'º\æª\14Ê\92Æ\93(\10\ 2ibM&\"\1c\Êô.(\ä}w\98\8f9_R\95\1ef±\É:V±¼\ÐÈ\8b(SBú­¦\9a\1d\Ì&\âPq\81\99\fÆ\88®kY\9c\18ok\98\Ç5\ÌÇ \"\"\",.\ï\çzø7\ÇgY÷þ\Ëó½\î+\è5:\Ó3]\×a4r¶=\ëo\95\86\Æ\×õ-nµò\"\æ\\\ëK3Ä\8es¼ñ\á\×F+\æN\95\1c\9dL\ fv{o\É\1d\è\í\17\9b\952\Èû_,\í\93o±G\Zd\99µ\9a­.]ô\Ñ\ê\Õ\ 4\90\Ñc\10)k\86\bù|x\95ñ\æM\Ì\Ë&WB|\Ò\ 1\98¬¦\v\97ðO²öÓ\95ôþôö_Y\9bQ\Ön&\Ø\à\ì\1ciª]×\92?ümݪ\9eÉ\95v\ 4d\914®\Ñu\é8\8fd3BpOsh8\12\996=LQFÙ¬\í\8f\1e<H\à\8b\14\ 1\8d\120E\1e4h\â`cÇ\8e\164A\0\ 2&´b\b\86Ö\8cB\eZ\Æ1­c\e\86\18\\È\88\88\88\88\88\88\88\88\88\88µ/\æ\93\Æö³\ä\ã£Ü\85\ 6®¯w(\ë\Â6óÁ\Û\1c°}§\Öy\1e®!G\b\ÑÉ\8cà¡\8fm\15婶d_iS\ê¤J«\19\18\É\ÅùSI\È\Üs¼ñ\16ùµñ\8f&k\16\Ú^ý£^N\×6½^\î?\ã\Ù\Ó\\\×\17!\93\14\ìk\9e\"³9\ÃM\16dR\9e\14ø\85\ 4\12\90\ 3\93¥+D=#~Fª{\1d\Òsô\×vا\Í\æn¤<u´\ã¶È\86\ËN\12»<\8cqð(ò(Ñ£\18:\88\à\Øk\ 6\89\1c\92¬C\16²=\8d°Å\89Ѧ\ÙK¡\11\11\17\11\8c(\â,\89\ 5\18\0\ 1¼\Ç9\9e\ 4!\13\14¤~ZÁ\8clk\9e÷½\Øk\e\8c¹\Ù\Æ1\9cª\8b½H>Sv\Ï!}\á\Ûøó]¸\9d\e­\Ý`Ù¶.6\ã\1dm\8f<8w\9b=<\Â\Ô\î»õ\Ýw\Äa\93p{xö\14T\ÒN[F¦\8b\"E,ðÀ\Ød\Å\ÄwVý}=¾%\ì| w\1e³;õ4\ìus\82\89]¼óU©#\àu»a#XBý\17\8a Î\91\9c\84\96;#\Íù\97\ 2\8f\12\×1uø¥\ 5\8chB»\85`;xõMSZ\ÑuºM;N¤­\Öõ}nº5E\15\15Daî«®\86<\ e<X±Å\8c5\8ccq\î\çgÜ\85#\9eb½\å#\Þ\îÀ\88\88\88\88\88\88\88\88\88\88\88\8a\12¾©¯\ 6ù\ç­FóȧVtù\Ö\\\á¤\Ö\Åg9qÞ«\\ùV<¡¦D+òMʾ¸Dn\'íº\94R\ZD\86\13\ïo\êG\9ah\Ñ\ï\æ\8f[¯©­\ÅgW\8d\Þöòo\8e\1e\ßq_iø\Ä\Ù)µ+/\Ñ÷­w\"û\83ºq\8dô\88 \ÝõB\ fó+ñù3«BÙ\94\Å$\ÐÅ\8d°\×TJ°\1c\Ê\àË\81*\è\î­vc\89û\85À|g\Ø\î\12\Øc\ì¼u\Ê:\Ív\ÉG,N\Ëe\Ãü\Ø\ã,\8a\8b\88E`f\Õ\\Ö\95ù\8faWe\16\15\94Bc\r\97\n1\1dõc \11\11\16¾<®sÕ\87Yüq÷7\99\è\ì\ 5[µj\1dz\å\ 3\92\v\8cû;o\93¨\ÚÆ \es\86»\àü\Î#\b\×û±\Íúó\91?\ 6úý\é\17\9b6e\94\Év62\äÏ°\9f$ógN\9a\996d¢¼ò¥Ë\94w¼ò$\È;\Þc\9c\ÏyLW¼\84{\9e\ì\ç?Ì®\ 5ô\×tâ\8f¨~)ø\14Ì«t\1dó°µ`\ì\a\9bXJ«\Ç\\o\10b\96¢\92ò)\86\13bV©@\184\"ü\812S#\Å`¤{<\7fX÷æ\88\88\88\88\88\88\88\88\88\88\88\88¸L\10\Ê £I\b¤F\90\"\ 4\à0\ØP\98%fFP\98\98A\91\8es\b7·,{3\96»\19\Æs\85U\7f«\e \Ü\1d\Ó^ò\èü\89Á §ÖªûQ«í\9c\87¸q\Õ6X\Ø\Ú\ÎñCqS\1eòý±\ 6\ì2¹\9b¹v\ 6غ\18\80!\9ad        ¶\æ$«\e[ $\8a\9aߣ\13´\Ü÷\13·Üµ\Ô&ls\í:\éy\Â{\7f/\ÊÖ§\8aL\Èz¯\"k\Û6\93O]:\86fIôT3c¯\ØmókXὶ\12k\85>\aá\95·\8e´²u\11\11hO\Ô\ÃMyy῵\80 |\81É\85[¯\\\Ï||;9\Å\1d-¸\ì¯X_\8eq\í\1c\ÕQ¥G6s\î\Ü0¹Ë±\9c*|× q=\15v\Ñ\Ê|i­\\E$ê\9d\8b\904\Ú+HB)\ 2Y\95\Öû\1dm|Ø£0^3\b\92#H(\98A\10e\e\9f\87\8d\ív0\ì_  \Ç\15U\Ô|}£\Ó\ÔB\ruef£®Â\83\ 4\ 2`\ 5\164z\98\83\18Z&c\rfZ\Ü\7f61\8f\Ýÿ\0,»9vs\9c÷DDDDDDDDDDDX\Ñ\Ù>\ãu\7f¨:U®ÿ\0\Ù\1ep\ã¾$\Ö\ê\ 67\1c»^\Ë[\ 2\Ä\å\90\ßû\94H\14\î>l\æK°+\85\Z\b\81\15Ø\91*D`5ø|\81\81\ìϬ۠\Üe(õ\9do\â\1e\\\ì\Ù\É[ Ð¶\ 2°\9c\ 2ͬ\ËcIJf\íD]£\éyó\82<°5\Ù-tV\ç9 d;\ 1n©\ß\ê»ò\é\Ü=\9d\9a\97Bú5¨Æº\15\85TKZ\í\7fOß»\1cz\81^\14\Ði\Éoc[[¥\Öj±\å\Ë\ 1\ÈûÝ\9b\ 3¥`bO)?\164S\9e6\å8\10>®^g~¹+\95v~\8fõ\9bP\ÚA\9f\Ö\ålº5&Õ¿\éQd\Æ>\ZViº\8dÅ\94yVq\ä\à\"4b\î\11²\ 1<\93#\ZQB\18\Ò|ò\Ç\Òeÿ\0i\8eY\9f\ÏþHü\89óOk9z\ã\è\rÍ\85\ 6\9bGÇ´\13\ë\"6S+\è\ã\Âu\95Ì­v\96·2_(5\9a\91õø\ 5³\91:\Ç\11#\12|\á\Ê\Èx>\90\12q\ã\ 4\8e\90<\ã%\97\9eRÞ¢ºF1\íï\87\84;&D\Ï\7f\ß\ß\"\Ã?¯\í\8c{-»ô\1f\Ä\ßD¼hB\Û\ 5\Ôn\19\1e\8fu½\Z;ö\í\ÊûgÙ·\9d\Òò40\8cPjϱmv\96r\âRÁsO&\1d=n!WG\99ai(qðk)\8f\91\11\16\Zù\10\à¹\1d\9a\9f\ 2\13ò+\ eY\ë\ç)iµekp÷\86\Þ\ÓS²mA\82Ì°\98|\80\Ù2)#5\Ì\Ë\1cv\8f\ fönr\ìQÕ°\Ð\\\ê\97÷\9a¶\Ç]&\9f`Ö®,¨/ªf3\ 3\99WsO4\ÕÖ\95Ò\99\8c»\f\93\nlc\Æ;0\ça¥\13ñ\8c\18÷]\9f\89¶H:o)ñ¦\ßfü\8a·U\ä\r7d°+FC8phö:\Û9oÀBÂ\94¹`\"\91\18\84B?8ø±\8fvp\Ü\ß\13\Ç\Ö\Ñ/ô-\"ö\ 1\87\"\ 5Ö¡­[B\90\'a\Â<K\ZhS#\18o\Æs\87\f¡3\1e\Çc9Ã\9a\ìg\ß8\Ê\íè\88\88\88\88\88\88\88\88\88¼ÿ\0\94¹W\8d¸GB\ÙyG\97w\8dk\8ex\ïM«\95u´\î[u¬Z]~\8aª\10I&\\\ë\e  o\18A\1e4q\14\å~s\9c°\"!3\8f\83\1f\9c@O\ËW«\Çm°³\Ýx+\ÆtH\ÔUP\ç\ÝkSû=±W\nt\Û\b\8a\Èú\â:cHp\18QؼƯ\Ù6(/®\Æ+óøô{=M¬[@ï_ \îg\92¾\ÆÅ£¨o,v³±ü\8b\"Fc¶\Æ\Ú^Í°È\8c\é\æ\96ö>\Îòhj5MR\ 5\85³\87\10\'\99IªR\96\10!2\16%F\8eù\Ñx\Êôuq\8e\92-k\95ü\8e\ï/\äý§è¯·\ f_¸þD\9a\8d\ e\8eÁ¯\f¯\Â\Üö\9fv\Ûn.\89&3\ZH0\ÅUCe\ 2dªûz\Ã\åªg\\+×\9e  \ë~\9f] p\1f\10ñ\×\ fi\95Qÿ\0\12\ e½Ç\9a\95.­^(ÿ\0c\8dð#*¢F|\9c\ä®\ËòIO9\\\ïl¹ùö\Æqì\88\88\88\88\88ª\89õGx¶²\èÿ\0v-û\eÇ\9aĨ\9dm\í½õ¾\ßS`\f¸Õ\9a\Ï3L\É\î¹\vPs\9a\f\b\bbm´\83\9b>dû\12\ef+G\Z\ 5|Q\æ/ª\Ý_L\8f{h»\93\ã#\8bu)6\16\12yC«±¢p_\"\â\êi\ç\Ú\Ú\17_\81\Z^¿²\92|\â~e·\ë4\13\ëeK\9c\14\9dµ\ç\9d*\Ê<\ì²Dh\88\88\88\88\88\88\88\88\8b\Æ{\ 3\ e$\ê\ç\10o<\ë\Î;\95^\8bÆ\9c{G:ûb¾´3\19\86Ç\83\14²q\n¾;\9e\Ò\Ø\ÛMÀ\1e(\15ñ½\Ï$¿\Ó\f\e\nVTµ\æ\Ó\Î\7f9ùX\å[\8dj\8e\Æ\ï\8e:\83ª\\\10<o\Ä\11¦¼\1fÄ¡­\9a÷\×\îÜ\89ô49¶¾±È£Y\8a¢NM[Hp\ÂúDù\95ð\Ï\e\14üYx ì\8f\95¾t\17\14ð¼Fk\ZM\13\81/\94¹¢þ²\\\Ý7\8ei\89\9cg\í\90(\å\88\ë»\Ù,\Ïþ\e®Å\9d\14ó\1e\á\à\Ò\á°ñ\Þ[e<nø¯\ê\7f\8c\ e\1e¬\ã\ e¿i\90\äl\8f\8b\1fø\ç\98v\Z\êóò_#[        §Ám¶\e¡\a\1d¦t\99?UEc£T@\ 1\19\ 2¾$jØ\90a\Å\Ù\Z\"\"\"\"\",[\îWO¸G½}{\ä\ e¶óö­\ ff\Ð÷Ú\92\Ãs\8c\16º\Ç_·\16[\"\9f\95\87\ eD\v\9a; Å²\81.!\ãI\f\98¢($G8\àU\ eùmð÷\Øÿ\0\13¼Ë\9dS\92`H\Üx[m°\92\Þ$\ç\Zx2q¬\ì\à\Æ$\É\ e»xo¡\80£\Ý\â@\8eYF©3\98+hq¥\ØÓ¸\99\81y_GÖ¼DùI\å\7f\14]©ª\ç=\1c\136n=Ù¢F\Ôy»\8c\878\91¢\ïz.g2W\Î8\9eqW»hÖ\8f\93X\ë\12¬1\81\8c¦°®lʶ\Û\Z\Ò%À}9\î_\0w·\835.Àõ\Ïz«Ý´}¦\ 4s\95±\ f\8c[k\96o\1e\7f3_\Ø\ë\n\ÑN¨¸®\92\ÃÃ\97\n|h²C*,\98\beF\95\18\19P\88\88\88\88\88\88\88\88¸dH\ 4P\ZT£\n4h\Â$\89\12$\10a\0\0\11¸\861\8cG4b\10\86\×<\84{\9a\Æ1®s\9d\86\ã9UJú\97<\Ê\Ýw÷²w=ná\9d\9a\Ò7Tzù±\Ùk¸\8d\18\86\89\ f\94¹*\92^kï¶\8b\ 1\81|\ê\Z+8R \ëBs\7f\ 2d\90\9aí¥¸\8a\r^\Î6\9b¼px\î\ç\8f&\9d\99\Ôú\áÁ\ÐY\ró\È;N@\ä+8¦\91¬q\86\8e\ 37õm¦\é¢$wO\98д \×õÀK\8b/`µøFtʺ [\ÞT\Ü{\Ñ~\8dð\1f\8f~¼\é}u\ë\î­\ e\8f[\Öka2öý\Ñ#\8fb\ß6A\Çk-6\íªh±\92M¶µ\97\99\12\Ü×\94\82\89\99\ 4\18r\ç<\Æ6b\"\"\"\"\"\"\"òþ_\á^%\ì\ 6\87}\Æ\1c\×\Çz\97\'ñþ\Ï_*ªûSÜ©¢]TX\×\Í\1f\Ó21\ 1(np\Û ^\â+Àñ\11\â\ÎG\97ü\1d\9c(m÷\ÏÑ\99À¼\9bou½ôO\9agõö\ÂKO9¼C\È\15\96;ÿ\0\1fÈ\94\ÈÒ\8c\èT[\19.¢\ìú\Ó\ì\ì\8a&\89\Ò\ÉsMQ\b\"\85\16¤ls¥\vS\1dsð\×\êUñ\1f¾·\98z\8b¯\ë\ey\ÞcG¿\Ðø×\96µ]\ßE\Ýb\15\91\ØI\eG\1c\îÓ´¨vN\vcEl[A\ 2\ e\Ò\04°«\åb\f\9b8\87\93\7fR<\Çù$\11¨µO!¾\'ùs\881KW_\ 3t\æN%\98\1dÞ\9a\Ú\î\14aF»³\a\16\Â-\9eɯºd\ì>lJJû\9d¶8\19\93\Â5\ÄO¤&.JòǨ\Ë\Æo\ 3Ì\8f\13\9boû\'Ä¢\99#0¡\Úo\ÝA\ìn»K:v\ 2\19\85Ym7\8f[\n\ÞC@\Â\15ͪ,\Ö5\827\ÉøÈ\89\86ú\7fYüúø\93\95\ë5~(\î?\1fÁ\Ù\ä\Ø6®³]\å([\1f\r\\\Ý\Ì\Ì\\\Í+h\ár\85>ªK`Ç\8aÜ\96\7flF5\87\ e\çC\9b\88\ÛaÕ·]7x\82\ë=\'m\Öw\n\Æ9¬}\86­}U°Acß\8c\8c\99r\ãµ\Î\Ã]\96·$\Æs\86»8\Æ}²»:\"\"\"\"\"\"\8c\9fª;\É~z3\Ð\Û\ e\1f\ãÝ\85õ\\ÿ\0\ÛV\Ûq¾ J\9b\9c\ÕlÚ\8e\85ø\8eþ>\ä*\çð®¼\86\ê\Ød\r\1dMõ)Hz}¦\ê\85\ 6\Ð\Èû\eT%EE­ý­e\r\re\85\Ý\åÝ\84*\8ajj\88Rl­m\íl¤\8a\1dueet1\Zdû     ó\f\18°¡E  dÊ\92Q\0\ 2y^\Ö\æ\à?O¿\8a*\ f\18],\×c\í5µ2û5\Îpk·¾yÚ¢E÷$s\É|É\9a\9e\83W6Id\Ím&\9dC>\1c\19\f\e«bZÞ²\Âô\ÔUs\æH\ 3\88\88\88\88\88\88\88\88\88¼Ã\96¸O\87¹\ëR\9f¡so\17h<µ¥ZG\91\12\ÃV\äMN\8f\95\Z[X\É`-m\ì)±²)c\10\Å)\98\1e\e MÀ\8d\87\8fݹ\8b\'\91ÿ\0H\ÇJ;+\16÷\7f\é´ù\1dA\æ9D|\ÆkT\àe\Ç\0\Ý;\1f¥³ð\ßÇ\9f\\iz\89Y\ 6ºLJ\ç\é\97\ÔU,°µ5\Å\ÕMÁ\84ö\Z\12\9b¸|ºú|»\aa\Æqù\1f\93:\ç{y\89\16±\r¤l\93¯8+\99j\â˧\15\85\ÝD\vH\98Ô¶\Ç    Õ\94ð,%O \81¸\ÔV\96¹\86eeu\ÅigL\ï\Âת\8b\8d»\83\7fªõ«¼\Õú\Ï\aóõÑ k\Ú7$\Õ\16Xx»\95®\Î\10\8a%l¬N,\99\ZV\Ùq`\âÀ­©\9b*mtó\æ¬\11.§YÙ\9e4\19\8b\b¢\90!\1c\ 5\19\80a°Á0^\Ò\b¢#pñ\90df\\\Â\f\8cv\1cÇ·9k\9b\9c9¹\Î3\8c®DDDDDEQOª\ 3¸w=¬ò¹Ëº\ãf8\9a\17Y+jø\17C\8d\Z\ÚL\ê\898©\Év]«b\8d^f05\166\Û\ 6\Âz»P\83&t\9ck\90$\18£\ÎY\ 6\16OúJüv\vµ=\é\99\ e\93\'\89z\8b\ 1\9b-+\8f\19¯©\Øù¢\Ó \8b¬S\15\ÒbË\838Z\ÝDÉ»\1d¥i\982\áÆ£\92#\89øg\Î\ÓtDDDDDDDDDDXs\ÞN\89õ\Ë\Èg\ 4l\1c\ 1\Ù=\1e¿l\Õ\ì\98yzý\Æ@6lº.\È\èÅ\8d\13i\ÔmÛ\86Ì©¶\8a\Òe¯tS\89²Á\î\13g\ß\ 1(iýòµ\ã\'\99üWv§b\à\ eO\89am¨Y\88\ÛG\vò\87\904\\\9d\ÇÆ\92\àDz\815\82d\'\ÞQ\1f8¨\ÛjG\90Ë«²`dH\81\n\15­_\Ý4\8f\9c\r\8b\9fk\áø\ì\íf\îK\ÎV\Ô(¤\Ì\ëÿ\0 \ì\Òòû®A\Ô\ê±ö\Ì\Ó6\v¹²1\8b}¿[\8eö¶¶A\Üû½¢¯\è9\87iq\ 3\958\ 4DDDD^s\Ì\e!´\î%\å-º1\Ý\ZF«\Ç[¾\È  ,vX\è\æ£\Öl\ì\Äf¿\19\ÆX\á>3H\×c8\Ër\ß|g\1eÊ\87\ÞBÞ¶\1eP\ß÷\8eKÛ¤\8ef\Ù\È{\86ͽló\ 47\b\1d¶\êmýÔ\91\89\Ï+\863\ÙXI+\ 6\11\Ìkðܽù\Ç\Ë6\Ùúcºi¬u/\ÅG\vl\95¤\9b#n\íDX}\90\ß\Ï7ò\ 4ñ\Úmôõð(j\87\ eA  \88L¤\Õj\é\ë28ÿ\0Dy$\8eû\12E\r\84\É\Ä4\85Q\11\11\11\11\11\11\11\11\11\11\16\93¼ôx\Í\Öü\95ô;\91´\Ú\êªÁó¯\15\ÖYrw\ 6l\æ\8e6O\ e×­\ÖN\96MH\Ö?Y\Í\Z\8bo\8dö\ÕZ\äq,$\bFq+¢\âs\ØEP§\15r_&õ\97\9bt\9eS\Ò\Ïg¥ò·\nò\ 5f\ÉT;\0\ÙUΨ\Úu\v\86\16E-ýs\r[d\È\å\91\12E&\ÍG ±_.¼\Ö4ó\9aÑ\9c\ãWst?´\14½\Ï\é\ï]û=J\Ñ\Çg1qV¡¸\Ú\Ö`ð\Ë\"\8f`³§\8ak\êi\ã\82SG\87:\ 5\9b¤\fð\98R6>2Æ\8c¦\ eFr\å²\"\"\"\"\Ö\ï\98.C\9f\Äþ/»\ÑÈ\95nö²\Õ:\ç\È6Uøûr\1f²oé¿\8d\1493Z÷\r§9\Ø\17?\f~[\82g?\17\7f\å\Í/|\e¢\83\94\87ø\ÒS$>7\"r\97\1f\è²\19\11ù\1c§\83m\Û*(\f\Ø\Ä\Ã\1f\96H\È\ì\1d\80¿\fvXLµ\ß\17{{f÷\9d\vL£\ã­\'Sе¨q Pi\Ú\íF·S\12$aD\0¡TA\ 4 \å±\Ãþ\18\ÜV\87\î/·\Ë/)\1e÷½\ïs\9e\îÚ\88\88\88\88\88\88\88\88\88\88\88\8a\9d\ fQ\7fO)ºa\å{°ún°q¿T\å\Ù0û\e®Cfd\91õ \åù\×\16\×u¦<\97»&#6\è[\1c¦¶8¢Á\84  a¬\81\19\90\85\9a×£w\991¿x¹\Ûx¿1\Î7ðGb·½{\î>[\96\16õ\ 6\9f\91X\è\9f\12¿\18\86\"_\98_\12\f&ü\æ\ÎvZð¸\ 4tµQ\11\11\11\16ª|\á\ér÷\ß\12\9dù\×kb\9am¹:\ç½Ï§\8b\1f>\Æ=\95l\1cM\ 4q\ã.`Ý\99M     \"\ç\ 6\Ï\Ö\Ü\1f/\ÎX\æ4\8cªÿ\0Á\87\1dÀ\åo-\9d\18\Ñ\ì¡Å\9d\16Ë\98±eôL\17\19²u}Of\Ú\à\Ê#~\ 4\Î3\ 6u$i\Ã+Xç\80±\Øa\ã\æ6«¥\91\11\11\11\11\11\11\11\11\11\11\11\15p>¶þ4Ö¨;9Ò¾R¯«\06\8eH\â\1eP׶[\8c\bX\95e\a\8e¶m9\Ú\ì\12\9d¬iI\Z©»\95©c\ 4®#@kI\84\1e[\89.n6I\è\90iqÒ¾\â¿-\Î\0\î\ÑR´oöý\9cVñ>­\937\19öýò\Æ<\19\Î=ó\íó\Ç\í\8f\7f\ÞkH\88\88\88\8b\e{\8dª\83v\êwdui?\1c\86Û\84¹(NkÇ\82´\99\ 6¥k,bpó\96\ã81#´Yw\ïðùüþ\ føü\1dSo¦\96\ 1¬<\ÝôO\ 2\ 1\fÈ\9b_+Ï\92\æ\r\Ädp\Å\à\ eW{Ng7\19À\87ù\19\0ZBe­û\Ê\11\ã9!\18\×\\H\88\88\88\88\88\88\88\88\88\88\88\88 \9b\81\Ök\Ý\Ã\Ý       \Ü~\9f{PòW2k?~p\Üü+\ä\êú\8d§\Ò\Ç|>Mû$\Äù\93\19\'\Åÿ\0P³\86c#˳\9a>\8d]n\rO\8c\1dò\î4 Ç\97µvGw\9dc$bh\É`j\Ú]z\90\a\90\ e1\ 3\12\0\"1\ïË\9c\Ð\Ç\10°\ì1\8dkeÂ\88\88\88\88¼·\9c¢\âw\ns\f\17e\Íl\Î-\ä\18®s}þXÄ\8dJ\Ü9\Ë}¿\7f\960ÿ\0|{c\ß\ß\Û\Û÷URúO4²mþe¸vX²6»H\ã\1ea\Ý\1cò|¿\94q5\86R\17\f\ËZ\ì\à\85\1dû\80\Ï\Û\rvKðs\9a\Ç9ض±\11\11\11\11\11\11\11\11\11\11\11\11Bc\Ö\ç[\82ô÷¥÷\1f_¾`öWj­û½¿\ËýW\8b\í¥}\7f\8f·ô\\;\Ûûý>ÿ\0\é\Â\Ï\ fH\95~!øiФ`\7f\f\Ûs\Ï<Xe\ßú\Ù\1e\ e¯\ìþ\98þ\98­À¿¿ù_\×ûbNè\88\88\88\8b«o0Eg¥n\15§ÿ\0\"\ÇV\Ø \9bÿ\0ª]L¸\äÿ\0ðLª\â=)\\\17Y¬y¤\î9iþÀSð&\95\1cqQ\r¿\Ì\16W\Ùò\È5ø\ e{\89\97\1f\8b\ fOh\ 5\îüû¶A¾ß\93ð\Ì\â\Ê\ 4DDDDDDDDDDDE\15\7fX\1e\8c\1d\8b\Ä\ìݼ\Ð\Ù!\Ü{\Í\\e:4\97`y|       ;\1eÁ\ f\\ûG\87g\ìnO\16d¸\ΠÛ\9ff\97#{\9b\82\ eÉ\9f\8b;@ð\Ã\Ö(\16\ 3{\r°\Øòfô\17=\9f\f\9a\ e\ï½\\lµ\ä\Æ?\Ô\Æ°\0Xÿ\0õ°MÊ\90z\"\"\"\"ÿ\0\ 4\18\Ì2\b£aDV8e\11\Z×\8c\83{r×\8c\8cv2×±\í\ÎZ\æ»\19k\9b\9c\ã8\Î3\9c(&úb\è#\Öù\93ó\8d\88øÀ\ÅA\Èü\91A\18Mö\Ã[\1cݧ\ä\7f\8e1\8c{þ\Ìm(\9a\ßlûc\19\Ïõ÷Â\9dª\"\"\"\"\"\"\"\"\"\"\"\"\8e\ f«\0\187\84®Æ\93-\Æ\7f\e\90:\î|g8ýÛ\97s\86\91\e\8föÏ´\8c·\ßý\9d\9c\7fu\9c\Þ\r\ê\ÃU\â\e\ÇxD!\8b2º³Å\96\86\È\Ø\Ö\äÆ´¡\ 4ì\94¹\Ãq\92\13,0\Ùów»¾\fc0ìµ\8dö\Ú\Â\"\"\"\"(tx\16\Ð\é´?8þ¡\Zj@\1e<\nþa¦\96\11\É#\Ìl\97r\å\8eY\Û,\8c\13\Ý\Ùl\8b\19F\906³\à\ 1\88\8c`\ 600Cd\Å\Ñ\11\11\11\11\11\11\11\11\11\11\11\14x½Sôv7þ\13;O\Z°\19\90x\17ü\19xq\á\Íoµu\176h¶¶§\Î^\æ·\Ú-lYR²\ß|¹ÿ\0GÀmq\1c\Æ\ç8ü,F$O\12^8\ÄG|\9c\9dðD\9c\873B§\98&ÿ\0\Ð#±\9fô­\9d\"\"\"\"\"\Ð\ç\8d\13\8a|\94yu\æIU-\8f#\9e¹²\92\1d\9f\ã`O\91G®\Ó\ÕÃ\8b\ 5\Ç\Ãq÷\88W2ö\e!\ã.\Î\18kYYkqòs\9f¾4DDDDDDDDDDDE«ÿ\03\1c\1fg\Ø\Ï\e\1d¤\áú\82²5\86\á K¯\8b0\81l¡À\94G´p\'¾+\8d\1dÒ\9b\12Ä\90\Î\à\b\Ã#ð\ÌüJ\1cc&\1eLtsE\7f\18ô\ã¬<|ð²>4þ\ e\ãj\11\ 4\7f_\Ö8°5z\áD\Ãp<ü\18\Ü\ÄÀ]\81\ã\Û\"\Æ~·5¯k\9b\8c¨DDDDEðªu\9a\Z9\×VU5\91\à\Îئ6\Â\îH~ϲ\Æc0L4\çù½\Íù7\ 5\'¶\a\867ù\Ýü«\î¢\"\"\"\"\"\"\"\"\"\"\".±¹\ê4\Û\æ¯s¨l\ 3)©¯b\â\1d\80\80ö\8c¯\ e\f#\ã\f{\ÆV·?`Y\9f|\8d\Øö\Æq\íýñôhi \ë\94t\Úõc^\Ê\Ú\Z\9a\êjö\11\Øy\19\ 6®\18`\Äk\ÞÖ±®~\0\ 1\á\Î\Ã[\87;\19\e\8c~\ØúÈ\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88\8bÿ\Ù',4,0,'','','',''),(50,6,8,'9305bf00e80e68a1','63436871415bf00e80dfe9c308856934','2018-11-17 12:50:08','2018-11-17 12:50:08','','','Contact Photos','6.jpg','image/jpeg',80,80,2355,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v      \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0+\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 2\ 1\ 5\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b \n\11\12\13\14\16!#\"\15\17\18BCÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91ù\ãõ1VüwZfº\9b\bJ®\Ø\í¨!¶\9d\85m³e\ÙMg Ü\91\13\ 4\a\14|\\qb½tÙ\99\11ö$\15[Q\àÁ\Õ\Û|\'¬\8fJ\18¢+\18\Å_\8aÎ\9fy®ód\à]±î§\91~\Ü\èN\9e\ÊM>et-e°¦µM§s¨2T9¸\Õ4ZO\ë4\Z] W\9a~?;\ 6J³&\Ñ&\ eðu\êôç´\84´f÷}v\ë\Õ+¬\9a\Ö3V\Ð\ì;j\Ó\v\1c\ç\ä*stn]\9d¼.\87\98±\Ç\19\â      ¶\í;E¦\\V\1eÀ\Èu0°\ÏEW\ 3}o¹\e\f\16H{\v÷^8\ã\8e9\13{\á\Ù\ 4õ\ 3¦\1d¢\ìòE\1có´v\8eØ»\ e\n4\Ì+\"J\Ú`kg¿R\88+\b\ÊUøò\Öl\Äƽ\9c)\1eÍ\94¬üÑ\8c|±Po\8bÞ©\Û<°yCÓº\7fhX\',\98\Ý;Jõ»\13t0\×U?-M\85̦\É\ÛR\84JcûX\9e·\8e\19ðqòXJ¿\1e\Ãc\8f#-ýh\Êqt\15F£X U+TjL\ 4MV\9dN\81\89«\Õ+0A1\e        ^®À\80\Ä\\4,Lx\Èlp£c#\Å\1c0\85a\bi\81\Ùm´\'      N1\È9\äo\Æö\87òa¢¤t\Æ\è2\ëX\90\10Igµ\î\Æ\×Ö¹\êå\92\81d\91dl72\88ø\é! m\Ñß\92\ 4z\äk6\à%b\ f`ofS\1f \91dÄ­\v\ 4òe\é\ç\ïýã­\97m©rÙ\9aÿ\0Ll@\ë{?D[\ìÓ³Ú«h\ëb\10\f\94E¯]\ae|õ\ë\é;e\1eB.\ÉO³W\90\ 1 <T|}\98Ixñ$ \9fµ\ßLm\9a^û\Ô:»xk\89\ 5J\ëýÁ¯©\Û6\95\"\â\12Ó¦U¯5øû,\13ï²\87\1dK\ 4®6H\7f\1f\ e/,?ö3\95+(\Îy\é|q\Ç1\8b\8bVØ·7\8a.þkÚ\90\84H\Ù$úͲ&a\ãDK\8e\17(e.+7tE\ 6\ÓY\Â\Þ.M5\Õ\0+\18÷\Ã\ä\10\ÛJJ\92¼§: ú3^\89k\Ë\15ý\a­´\1eGLv\ã0iul\'\í9;3H\10Sc¥\Ì\áÕ\95\88¦\ fu)\1f\Ý\Ì\bÑ«^>\949\9cZM\Ç*\9aõx\Ï\Ó.\1ed% ¨\r1!h¬u\çGS6\18ñ\ 3¥óJ\Ø\Å9j°Ç\86B\ 4Ã\8f\e\1d£_\86\84e9+\r 0p\8f\èm<±\Ç\ÅÆ\8b¸õ\9f\Ç?Jt>\Äl\91\ï\ÚÏ­ú²½u\8f1y[ð¶¼UÁ:Á^R³\84ÿ\0\85rT \99Ƕ>,G6\9c\7f\18\äô\ã\8e9\Äû\f\92\Ë\Ã\10\Óo\8eCN0û\ f!.²ó.£-ºÓ­/\nC\8d¸\85)\ e!i\ÊV\9c\å*\Æq\9cã\95\88w\e«{\e\ÓC\æ\83J÷g]U%,}$¼\ìû\1c\19p\88þ°õ\Õ\äI\18\8d¿×\89\ 5¼\ç\Ð5¾\93W°È\9b¯\17$òD°E\81W\9aI.\1d\17f\16\"\Ê\íA¶µ\ÞúÕºÿ\0t\êKDu\×Y\í\Z\9c\8dj\8aR\Ô\f\ån\Â\v2\11\874\87\90\ 3¸±\ÞJ        \f¦\990\12\90ðf0ÁL<\Ò#·\91N\Ò\11Ò\8e\8dv\93µ@F\v37¤ô\í²\ßW\89\90\8d\92¹¤LEÒ\82\95C\ e2ú¢I¶H\Ã5)\86]i\ïôõ\13õ8\87>*Æ\8cÞ\96~\86\ f\äc´ý\8aò½\ÝB\Ë\Ý\16m]·cÈ¢~Ú\94\98\r£²v\ 4bù?±§\85N\Z  \Ü\ë\b¢\ê\îS \106a\0\94²\0p\82\ 5ú|;\19±£\8e8\ç\82ös³:S§\9a7`ö3°·x\í\7fª5¤2\æ,\93\çü\9dy\Õ)\Ä\r\e               \1c\×\ÈÉ»$ü\93\ÃDW £\ÛtùiR\Æ\ffÔ·=ñ\80\1e¯ö\ f\Êÿ\0\9aB\7f\Þ\Ýmg/Å\87\8d\83\Ï{\Z\Ö\Å\13Pª^û§\ÙZ\ë\ 4¬|\Ø!¥¯±v\Z&¨©I´\Þ^\n\Ñ\15X<\81\8b÷\12\0«üf\\\9f\17\9e,zq°+u\8a\çc©\97.\å\â¦A²\112\1d\Ê\Ú;\ 3±\è\ZjI\94\r#;\1d\93òz\æµ,`ͤg\1e§R«\8c2/\ÈQ\ 6\1ce­¥N\8a-\12\93«éµ\8du­\êUº\15\ 6\95\v\1f[¨R\éð±õÚ½b¿\14:\ 5\8d\85\81\82\89\1cXبÀFm\f\8a\10C2;-§      B1\8ex÷o:\áV\íÿ\0Ww\çW®\86?\19[\ÞÚª\å­N\99\15\9c\10\\\ 3\ÖXbA\8c±\86:\9ce\ 4\19]\95X3\82\ eã­¶ù1\í4\â°\ÚÕ\9eiõ\é\Ø\ØV\7f\ e[\ë²>$<\89E\8f¡-{?j1µºÇ¶lù\\V\9eÞ\93       \82\8e¥Y\"\é\e\ZQ `e?d\85¯\Òfi\ 3¬\96MzC6*\8c\Ð\Ð÷6\ 2¯\19¼\82T\95§\nJ°¤«\18RT\9c\ã)V3\8f|g\19Ǿ3\8c\ãù\Æqüg\1cù\ã\8ej\'å²\995\åO\Í?I¼II\99(\8e©\è\rn÷w»s\11\ZQ\ 13q\Â$L\87¬\Ö%r\87\ZS\8c¨4\×j\0\16\e\88*8}\Íe\92\1f92(w\ 6\Ûf\12\12\1eµ\r\13\\®\ÅGAW\à#\0\85\83\84\87\b\98xx±Z\ 62*.86\Ù\10\b\èð\98d@\83\15¦\87\14f[a\96\Ð\Ú\12\9c}\9f\1c\17m}BÙ\90n\Ö6=\"¡°+o¯\í~½v­CZ\à\Þs\r¸\Ö\1cv&t#Àqxi\×[ù¬|«\ëq\Ä{üV¬f\vvGÆ\8e\95\ÜÕ\8f\96\9e²\ì^\97n(\bvÀ\×;¯©¶\é\Í?+S\"=)r\14[\r\12£%\ f®¶u<r\18\15©\Z]\î¹+\1elSK\8f\0¨gT\É\ÃD\1f\12\1dü\ìF\Í\Úý\9fñ½\ßÖ«\ßó·¤\86B\91/°j\91­\ÂU»)£¬©\13ô½\ã\ 5\b;#\89\13$Xò0\ eZÀ\0Hø\Ö\×i¯:,ti\ïMCC\ç[\8e`?¬\9a\Ôq=C~P6S­ºQ\8eô³¤\0\bZþYDPv\Çn@\19\16׿ø\á\12\ 4j\ 1d}±ÿ\0«/\ç\1f÷\Ç3\á\Ç\1cq\Ç0+!¬Ç\8dõ/\Ö6TRp\12\ìþ\e-\Â\Ú\12\14\Úf\v®v\æ¥\17\ZIªK©m÷\Ç\ 6T\11\9bZ\99S©`\11\91\95å¶\9b\Ãy\ê\ã\90;V\ëô\Ây \îfÁLr\19E\çª}\f\8fÄ\9aXRrau]\87Þ±M\19oýIC®\88!°\Ê[xuÕ²\Ë\ÃeXm.·\85O\1e8\ã\8e9\ 3e\è\é_\93\ 6\ÈTB³\96:\1f·iM\Ïa¼ü\11ù\1d\81\Òs\8eD­\Ü\7f\18S\98a\ 66\Úñ\î¬!\Õ7\ïñw\Úyq\Î\ 4\8a2    x\Ä\ e\ÂK!\91\Æ|¤´\ÚI|q\16K\82°óøN\1cq\91\9c\aij\Ê\19YD)´¥O9\95sñ\Ç\1cqζC\15E¶~Gg\'43¡¶^[NH@¯º\Ë\Ï\ e\87}¾ie×\87a\Ç\e\Æ~+[-)X\ÎP\9c\ã³\Ïÿ\Ù',5,0,'','','',''),(51,6,8,'9305bf00e80e68a1','63436871415bf00e80dfe9c308856934','2018-11-17 12:50:08','2018-11-17 12:50:08','','','Contact Photos','6.jpg','image/jpeg',48,48,1489,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0   \11\12\n\13\16\"\151\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿ø\17t\8f,\ëiý\Çh\8c\98Nq\87\ã%\å\â\Ò\15,\19\10?¾e\ã³grF        ,¼¹Á#\90Ú\95\8a\ÉH±\ÈÛªpVYZm\9f_HL\80Ù¤\Ónj®ª\Ñ\0·r¯¨3_\Ä\ì\16\9aú\r\Â0\97\16\Ütô\8a\ZÃ\89m\×\e!.²Þ«\Ã\ÃÈ\8fù\ fv.À\â?T\9d\13µ5<\99\90\e\9aÎ\96¦\Ú#\9fpI:\99»VU5\Ùk<I\8d|<\f\Ü%aS\ÆÁ\1eÂ\90ø\13\98Ã\8d¼\ÃkLöüN=vPt\1f\bW{v\Õ\ 4\f\ßGö\1elvW®²\ã4}\86«¨Âµ\É\ÃV*±2\Ä~\â\86\1e\Þ\ì\17óû#\Ì:Ó³\ 4J\Ã\r\'\923\ 2\1e[dÿ\0 »\'°\ÞR\çÒ½\84ð·RZi¡sÓµ¢w?9\ÎÔ¨·\1dgt¡\ÊØ£«\Ä[@\1eZ¸\í\84Ih3¦Az\Î&f\9d\fº\Æ\ f\92\8dr\fø\959!@½Ew\ã~\Ìx\'Ju\89UÀ\ê\16\ÛX³U}\91Y\8dy\ç\âb¶5\ZX\8aÝ­P\8b\'\ä¦à¥\8d\r3Ð\82\96\ 5\83\15* D\96k\ã¬\Ç\ég\87\92\×\Ü÷\v\Ê{\16õ\É\Ñ\1c\ËUX­\ìy\88\10\9f\81C#gk©\16-\958r\8b\Ï\ÊB\Z\ÌTs\95bNs\nh&&\Ü)䩦V\9c¦\7f\8d\ fJC\í\ fZ\Ô\ e\88MC¢xbR\É\Î[óWM°¸\ë5FR¿m²»P8Ø¢s\83\e\12\91\85p\97\ZCY±\ÃXÀk\í\800¥r¿É\9f¦-\Âó\96¡õ\9b¥`\139\Ð>\Ðö\1c.\8f«\9e\1e\16¡I\8c¹\Ò      ·LÉ»ôyܪaù\bºò\7fP\Î\à8R\ì\92ÿ\0t\17\18\v%W\9fYü/OõÁ\ÅZO\91©ò\ê²ÿ\0\Ç\10D\93o·-\85\vü\Ãa\Ù\ä ±^¬\8c\bµ-À£\ä,R\ 6\18\a\\u\à!Y\8e      \ç\9etuº·\Ç\ÎU¼÷5\ f\9dt\Þ\Ï\ÞûB[\10\9a÷Q\Ñ\ì\9b\ 2\ß\'ôS®\ f\aY\8b\"P\Ä\n\Â>VQ\Å |        \1e#xË¥\9cø\ã4\9c¸\êq\99m\ÇZ³¥»\8a\n\13±û\96\ã°5\å#g\8e\9eøW]Û¦µý\ fZjy¤bN\8f-\Ðr53c-{{o\Ù+\ïD\Ì\Ø\à¬\13¬P*\8e\94ü#T\9c\e\93\12-L\×\ZCM\éò,fj½Y@\×g\\LnF\ß#N©\ÂW\ä\í\92-8S­HY\ä£\ 2\1c\éó\9bt\Ó\1cI\92\18N\1c,\95\áϳ\î\åS¿\Ú\a­ù^\Ú+\98w~\9e¼Ak>³\âmÁ\e¹´\ 5ª\á\1cl®¾\9e}\a\13h\×\e (\9c\7f\9cMN\Þ4\18,ª^     J\97\811\84\18(\æ2\éb>\Ä\ì¾\Ä{\9b(U­\83Õ\9a\92Û­)jd\ 1vvÓ¢\94\ 6\Ø\ÔÚ\9eT§\Ù\ 5Rw\ 3\à\Ô\ eÆ\8cת1\Ï\Ú\æÁ3Z³^®F\ç\12\17\92ªÂ¶ó\èr\ã$㦣c\æa\Ï\12R&X\11$\â\ä\ã\Èh°$c\8f\828\"\ØZ\Ø$B\Æu¢\ 6!\95­§\99q\ e6¥!X\ÎgO·\rvþ\Û\à]½¬ZA/3{¹ó\85^PQ[Ë\8e\1f_\97\é\í4%\965\Ä\ã\19ÿ\0«%_rL\ 3\95\9ce\r\86C\ë^2\84«\19£\Ã\f8c° \8c´0¢²\Ð\Ã\ e\12\Ó#\8e\12\Ó,²\Ú1\846\ÓM¥(m \Æ\12\84\'  N1\8cc\1e{xy\9f¶Õ /5[-&\×\16\1c\åZ\á_\99«\Ù!dGl¨ùx\19ø\â\"¦\"\Î\15ä­\92\ 3><²\ 5%\87R¦\ÝeÕ¶´\å*\Î<F=SV§i~»ùJ\97c2@\éJn³n£û¥r\îOn6±=7\a\ 4\13ù}Kwÿ\06\f\b\èæ°¥g\êÀ­¥?\×   ñ\Ô\Ø\14\8bW\"©4·[\8f&Rµ,µ±\84\å\Ì\13V³CÚ£þ0¼e?\19\90\85\17\vù\Ç\Î\11\95e?\Û\ãÍ\9f\87\87\87\98­uF\8b\Ö\Ô\ÈJD+¯½\17\ 2\Ñl\86\á9\Æ^\ËeH\17 ¤¯8ÿ\0\7fG\vZ\13\9f÷\94%?9\Î~s\çÿ\Ù',6,0,'','','',''),(52,3,14,'9305bf01a84c7ec6','21202845355bf01a84c5d33470288998','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007','image/jpeg',300,300,11008,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b     \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 1\ 2\ 3\ 5     \ 1\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b \n\11\12\13\14!\15\"1\163A#BQ\81\82\17\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/r9¸f3\9cDëº\9e±®\8fð±g\ë]L\ã\Íϵ[d_\å\"¾þW\äñ¿\19Ķ¬\94Hx\8c\ë»x\12.¯+\'=­\91\ 2ûY©´­\97\18f0Hð\96\11\åF÷\98}`\1e\ 2\Æø<|\Þ\r\á\íRľ\Õ\15\94\ 1v=¢¢/\ÄyÀ\8b¸\ÛZ\83\13d´\í{\Û.%\ 5F2\1c²9#\93\181\ f©\1e\\ó?\åC\9b¤\96VõÞ\8e\Â\r\å\95ùMÆ\95¼M\ãG\a\Û9À£\ eO\1d·W\9aøag\Ä,\8f\"Q\Ø\á\8cx7\Ú\æa\Ë\Ìõ\ eòù6\ä-\96§Nл\85\Þ\Ý\ãq¾\90ø\Ôz¶¡\Ø.À\ì\Û-Ì¡\80²\8b\1e¦\8e\9bn\9bic!±£\9eI\ 5\ e)\88\Ð\0¦sp1½Ø\95×\8f\ e\98ú°9J\92£h\87\Û^I\ê\×\e\\Î\8b\996\1d\83\Úuý«x\95L\è¸8®«x\êú\83\99\90\94\87üV\Ñm©Ø\82P¦bH£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8b\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)\ 1T\É2\Þ1\12CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ø\êy\ë¶WPKüg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ek¾º\ê8­5¼ù\Îo\Æ#\àÁº$\Z\Í;\Õ\äù¾G7\9fñ¯j¹\8a\ïs\8b\ e\ÆE\8e±\Çõ\Ï5/\19h\î>e{\aR\ÓA °¡b;\'N\f\8ben\18\ÓeEÅ\96c\19\â\Î\ 5¢\90¯\88\8fN\ßm|\9e˪ä\9d\80\13ºý\Õl\96\14¢òþ\ÑQ\92Zo\91[ &\9dU\Æt\ 6(¤J,\8a¼û\Ç\Û,\ã>\8a1l©\çÂ\83²ÁþDp\ì¯ñÿ\0\â+¢þ6õ\18\94\9dv\áº\0\î/\ 4\\l<½¶B\87±ò\8e\Ë2>\\|\Zf\×>9lb\Ã\f\ãÎ\93UY\fÃ\8dL9Æ\85\a-\8bñf6h\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88¢#\êAõ\ 2\13¡t6=:\êm¥|þ\Ø\ï\14$ÿ\0\16\82-}\9dw\ 1\ë6AÀ\Û9\Ð\1f\99 ±\ä+P\94\8d\Ö\é§\0\95µo\ 4«\8d\98\a\8b\ 6\1e·µ\Ö+µ\í{6÷³_n{\9dõ®Ñ¶m\16³o6-\8aòi\ì­\î­\ì\8eù3¬lgIy\ f&T\93\91\ä)Hü\ç9϶=\9b\8cc\1f\ 3\Û?¯\×÷ý\ãÿ\0\9c{\ç\1f¯ù\ã8ÿ\0\ï\vñO\a\Ó\Ï\é\9e\ eÿ\0\ 3M\î÷\91-\'.\Ôg\8e=ÿ\0\fõ¯e\86`\9a\â7\Ï/\83¸r\ÍL \8d\8f-­d\9am:G³\ãDx\ä\Þ\r·\'\Ä\rj\Â\Z:*mb\9e»_\×j RQ\ÔE\14\ZÊ\9aÈ¢\85\ 2\ 4@\ã\â0E\8a\ 60B\e\7fyökqòv\\÷g.s\9d\9f¬\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88µ\ 3\æ\çÉ\86»\âó£[\×3\ ePK\Ì;§\ß\Ç\\\ 3®=\8d).¹&\Þ\11\9f\ZyÀù\10ðú]V\eK°l/\14À\Í\15\\B¾´r§þ<CS{\É\\\95¾ó\16ý¶r\8f(mw\e\Ç \ïWs6-³k¿\95\99v·Vó\Éó<\99\ 4ö`\Ä67\f\8f\ e\14Q\82\rt\10Ư¯\8d\16\fXñ\Å\Ñ\×\îs\9cÿ\0|ÿ\0§·ü°¦\89\éjðt\Î\Ë\ï\15þ@ûQ¦}ü\ f\Ç7\"7\ 1\é×±2øü\9d\ÈT²\ÆW\îVUòÃ\80\17P\Õ$4\7fÁ\17.\96û;\àH\99\88µÃ®£·\9deh\0\b \f\14\820G\8e\ 1° \8e\0³\ 3\10B!µ£\10\84\83\e\Z\Ö1\8d\ÃZ\Ü7\18\Â\æDX{\Ý>øõ\7f\Ç\Ç\16F\æ^\Öò38\ãB\9bp:\186,¤»Ø§\ØZ\90.> \Ö\Ò\ë\Ðlm\ì\å}mùb%|93\1c̸Ì\8eð\ 2IC\1f\Înõ\89ø·\ã\È\í7\13Uóo`\8d\î6\12&½¢\Ùññpò\11\Ís\ÄNI\87A\1c\91\ÄÏ\81\18\123\8c½\82\88G1¸&,\Äõºu\ 5ò°\Éý,\ì\8ch_/lÈ\89·q\84\ÙXg¾?«\10\Íe^,»\Û\ß?\ f\Î\Æ=ñ\8c|ÿ\0~ø\Úw\ 1ú£¼:s|\Êj;>\Æ\Èá­\96\Ò+\8f&\1f/hÛ¶¥®U\95¹\Æ?\Z^û.\81º\83I\9c¼L\ÆKf\f9\Ï!\19ò\8b\1cò\99¿\8dKrÔ·\Ú8\9b6\91³P\í\Úôö±ð\îµ\ËX75\87\Ã\Â#á¬\99\0\Ç\aÙ\81\1cDx\\ü\14m#>ln]\8c\88\88\88\88\88\88\88\88\88\88\88¸\ÈA\84d1\88Á\bLy\nR?\f\18\Æ\Ìe\Ï!\1e\ì\á¬c\e\8c¹\ïvp\Ö7\19\Îs\8cc9U\ez\9aü\87\Ùw\8b\Èþÿ\0¥k\e#,ø\'«E\93\Ã|s\Zª\Ï3h.ö:¹%/!n\í\ 3¡E,k9·\å~ªX¦\91`\18ñõ6L\84øD¸±\89\88\ê\"\Ø÷\8a/\1fÛ\87\92¾\íñ\1f\19>\16©mhí\93\96\91_ :\8f\19\ë­üý\86|\87\8c\à,s[å\91µ\9a\É1ÿ\0$𬮣ٺ\14\98UópÛ¤ø\87\89´\ e\b\ã\r\13\86ø«[¯\Ô8\ç\8du\9a½CMÖª£\82%}=\15<vÆ\87\ e4h\Ã\fp±­n^\æ\0!\ e\b÷ýA\13>,Ç£¢\"ñ\1e}\ë_\0ö\9fD\91\Æ=\8d\áþ?\æ­\ 2L\80\Ì&§Èº\Ýv\ÉO\89\91\È3G\98\18ó\Â\\Æ\97\1c\ 4\98òc8G\ 4¨ñ¤\88\8c<`\10pHòù\é\14n\9fM·ö\a\Æ=\85͵mh\rwyÕ­ºÑ\96\96\83\0\ã\ró\9dÅ\9b\85\86b\9d\ 3£J\99\8d{j\97bs\16Í\91\á\\VV\Õü\v\ 3\9ak\8dr\â\×^\Øj¬¨¯è¬§S^Q\ÜÁ\95WqMqW(°l\ê­k\'\b\13k¬«¦\80ð\çA\98\0Ê\89(%\8f C(\Þ\Ì|Õ±Þ\83y]\ï\a\8dͲ\1d\ßZy\92ö£Qu\9c{\r\8b\88v9\126\ e+\Ú\Ø\12H)cYj²\8f\81Ö¾Y¤fD\Éú\é\é¬\'H\8f\ fù)3¢\ÆlWZ#\á·Î\87\\üµhÆ©«\fn&\ìÖ§S\1e\7f ðe½¤s\È(\9a\11b\Ça\ã\Ù\Å#$\íZ\9cinpó)\ÑÁg\16\9e\f2¾Th;\ÊDDDDDDDDDDE®¯,\9d¹¯\è\ç\8f^\Ïö:XbÊ°\Ôx\ÞÖ§U\812fk£Yî»\8e\e©\ê5\8f\9e\10\90\Éa{o\n$S\8a4Dzi£{D\92ß\90\9dI$¹r§Ê\93:t\99\13gM\90is&K1$Ê\97*I\1ci\12d\È3\9ec\È9\9eò\98\Å{\ÈR=\Ï{\9c\çg9þtV|ú?ü~?¯\1d-\Û;\8fºUÏ\81\Èý¾°\89\9dtS\ãÈ\89ø|\'¦É\90\Í8\91\86I2bL\8f³\Ûʸ\ÚAo\bpI*\14ø\15\11\Ìúh¦Ä¿\Ñ\11\11\14(}O¾\ 6\ê¹\ãD\Úü\85u7Mü~r\ã\Ê<Xso\1c\êu\99yykK«ø\à\Û-U$\ 6\áó·­^\e\88fÿ\0\e\18\17\Õ\0\Í;\ãZþ5\16(+eE\ï=e\ì¯0u\v\9c8û°¼\13´\ÉÔ¹\'\8d\ïa\Ý\ÓN\e\äf\ 5\80\9cd\99C}\124\98\84²\×\î@<õ\82\Ù1\8cð?\ï\85*\15\80\8d\8c>ÿ\0q¯\92\8e\9eqwg8ðø\8f/`ª\15G!j\æ\Î\19c§r5(\Ù\a\97\19\ 1[\1c7!\99\9aÉ\98\ 6 \ÙB\Ã%UÈ\9d\ 1Á\98m\82¢\"\"\"\"\"\"\"\"\"(\88ú\Êù\Êw\1ex\Ù\ã\Π\8aß²7a9\Û_¤²n>¼81x\à\f\äQJË\9cß³\"dú\88q^1»\18q&\ 4\8f\1ceµz¢õ\Î\0\â¹\\\ë\Ï\1c\'\Â0ffºo1ò\ç\eñ\\;\f1¥\Ì \\\85¹Sj1\æ`n\ËZL\Å-»\ f\86;8kòÏ\8es\8ce^\83À\9cC­p\a\bñ\1f\a\é\Õð*µ~$\ã\9d;\8f(\àU\83\11«£W\êt0iB\ØQðÁ´\11\ßøy \ÂÁ\8d£kðÖ\8cm\Æ\18\ß[DDD\\\12¢Æ\9d\ZD)±Á.\1c°\Z,¸\92\829\11¥F\907\bñ\ä\0­x\8c\ 3     \ï\11\82V8e\e\9cÇ·-\Îq\9a\81½G\9e9\a\ã\ÏȦ\ë\1fNªm\7f\bö4\16\1c\Ý\Ä\ì\0\Þ\È5\ f¸¸\92\r\çO\ 1\ f,¦;\è67b\Ó\Ü0\ëj`AÙ«©*cf5S\9c´\ e\8ac\9e\8e\ eê³\88;«È\9d@\Ú.L\1dg³ú\91n4h\13\'eµ\91¹3\8f+\ç[\Î\15]\7f\Ë\ä[Ý£S\8e\æ\É(FLf¯QÁ%}a\86\ e\Í\ÄDDDDDDDDDE\ 4¿[þ\Ä\Üq\ fCu,1ø~y#\97v,\93å\9c\8c\8df±¬\Ö5\99o\ÇÙ¯\ e^÷a\Ù~rö\9d\Ø\Ã[ð\Î_]\Ú)\13úZ8\ 3R\ç\ß0\\,\ÍÀY\93\v\87t\Ý÷\9cª¢<#\91\12^ä\82®¾\98S\ã\e\19\19\â²N\Çù-k¿Ê\96\b²>$úr\"[¢\88\88\88\88¢C\ë\12\ê\í\8f2x\ä\Óy·Y¤\87*û­|\ÃOµ\ì6!­\ 4\8b¢q\î\ËOq©\ÝW2n\1e)`«\81ioU³\Ì\Î\7f&(EK#\Þ;\v\aW*-\8fø\82\æ\É]xòq\ÒnU\85\1c\92¤\ÕsÎ¥¬\8cBú¾M\Ç%:O\19\12C°l\àn\fAn\ f\95!\8eùe\à      \18\11\Îk\1dv\Ê\"\"\"\"\"\"\"\"\"\"\83/­÷^    :ÿ\0\Ñ=­±±ù\11y\8b\955\ã\Ëþ¬\çé\9f¥RYE\8d\9f\ÞF\Üeõ³\v\8fl5\ïö\Ï\Ë.ÀÛ\86WB\8aZ~\8dmnlÿ\0*[\9e\ÐÆ\8f5º\ïV9*¶S²\ìý­\9f±m\Z\13\ëð\Æ|rÜ\8dÑ©->\×ü\Ú湡kXü\11\1d¤¨\88\88\88\8bR^xj\âZø{ò\12)a\11q\13­Û½¤w\11\8cs\81.°Q\æ\0Á\Ëñ\9f¬¸È\9c?\9b2\×\å\84 ñ\9fb;\19¥\Ñ\16eø\ë\Ò6nD\ï§N5=B´Ö·³;)\Ãv\"\88\a\ 5¤mv»½\Òl·³¿Û\90Lp\ê\èj,­\f6¹\Æ(a¼Q\84i\ f\10Iyj\"\"\"\"\"\"\"\"\"\"\8aG¬+\84 r\'\8a±ò´\91d³:ý\Í<}²Ö¹\84;\1d\1c»\í\Ü\1e4\93 \8c\17°\Ï\e\10ö3\Ç ¤\å\Ãl\891NÁ\äÁ\19\ 5Uò)rz46\81\×ù>\ä=I\â\Î_²õ\8f\11ÿ\0£\â7k\e.¤\'\a9\Î~xq\87°<\8d\Ã[\96\11\Ýó\Ës\86\14DDDDZBõ\18òö¯\Ä^\1d{¢ý\96ÀPI\È\Üq\9e)\×\Ú÷»%\95°oVpjk£\ 4\fa\nl\1c¯ür9­h£4ø\91 £\bÝ\9cÓ\88\8a\94^«\í\\ùå\8b\8d9^\f\ 3¿Jꦿ²ò®\Ûk\87\Æ\Ì8\Ö׺õÞ\91§U\Ì\13°Y\99}\9c»\9b[\b\'\8e\ 6\80S(D9s#fDaK¶i\11\11\11\11\11\11\11\11\11\11\7fº\ÍI\Ü^\98vG­WÌ\93ø¼±\Å;V¹\bð#\82M¤;¬×\92m\14º\86\11\Æ+@\ÛE\89\88G\È\ fô\95\Øvc\Ég\Ê9h\é\Ûu]\87EÚ¶m#m«\91Gµi»\ 5Ϋ³R\Ëȳ*\9fa׬d\Ô]U\É\È\b`fE}\9491\r\90\98¢\É\ 2ì\8c\8fg³³×\94\90=)¼Õ¬ð×\98~$\8f³\ÊdAò÷\eòo\ e\10¿6\ 5\×\Û\f\Z½\8e\ 3\r#\ 3xb³\ëÔ¤\93\ 5\94\84¤\18\á´Í\91(\r}·\b\88\88\88\8a\ 2þµ^\è\ë\ 5 \ëwBµ\Ùò\89¸\Ç\Ø\19Ø\8eG\Ä\v,\8e4=\7f\15;\1e£¦k×µ\ÌÈ\88\7f\ågM\9b²@ûq*\13\ÉJ\13ûG\9b\0\ e}}è­\93ô¿ø¼\99\Ð^\8f\a\95¹OZm?c;WüW n,\92\Ö\æ\ËY\ã¯\Åd\8e6\Ñ\ÊLÁ¯\94,ì\96ûûjé­\9d\8aý\9e\îó\15vr\ê\8f\1c¤\93*\"\"\"\"\"\"\"\"\"\"*¡½U\9e=gõ\ f\Èe\Ç:\ê\953\eÃ\9d¹\88þD­\9a(¸\ÅN¿\ÉQ3\9aý\ÓTc\âClX\f\96(°v\ZÀ\ØÏ\91oq&N\Ë9\83\1c\18lh\ã\0½Û«\Ü\È~»öG\819\à\19¶\Î8{\98x\ç\92%Ç¢>#\Ú\ØU\éûmM\å\ÅDGºT!9\×5P¦T\924\99@\870\13K\12i1\10\æW¡qG#\ë\Ü\Ã\Æ\1cy\Êú\94¨ó5\8eIÒµ\8d\86DYB\9a\17\Õm4\Ð\îa7\12\83\8c\f\10f4EsZ\Ïb\8d\ís\18æ¹\98ô\ 4DDE\85\Ýü\ï_\ 6ø\ì\ë>ÿ\0\Ù~w½\Å}\ 6§Zfkº\ì&\8eVǽmò°\Ø\Úþ¥­Ö¾D\\Ë\9difx\91\Îw\9e<:\è\Å|\ÉÒ£\85\98\81\î\Ïmù#½\1d¢\æ\1e\Ór¦Y\1f\9d²mö(\ãL\936³U¥Ë¾\9a=Z \92\Z,b\ 5-pÁ\1f/\8f\12¾<ɹ\99d\Ê\èO\9a@3\15\94Á}2þ    ö^\Úr¾\9fÞ\9e\Ë\ë3j:\Í\Ä\Û\1c\1d\83\8d5KºòGÿ\0¶\ÝÚ©\ì\99W`FI\13J\í\17^\93\88öC4\'\ 4÷\16\83\81)\93c\Ô\Å\14}\9a\Î\Øñ\ãÄ\8e\b±@\18\Ñ#\ 4Q\ãF\8e&\ 6<x\ácD\10\0\"kF \88mh\Ä!µ¬c\Z\Ö1¸n1\85Ì\88\88\88\88\88\88\88\88\88\88\8bRþi<ok>N:=\È\\ j\ê÷r\8e¼#o<\1d±\Ë\a\Ú}g\91\ê\â\14p\8d\1c\98\Î\n\18ö\Ñ^Z\9bfEö\95>ªDª±\91\8c\9c_\95\8d\Ç;\Ï\11o\9b_\18òf±m¥\ï\Ú5\ä\ísk\Õ\î\ãþ=\9d5\Íqr\191Nƹ\â+3\9c4\ÑfE)\áO\88PN\81&L9\09:J´C\Ò7\äj§±\Ý\'?Mwm\8a|\Þf\êC\Ç[N;l\88l´\á+³\È\Ç\1f\ 2\8f\"\8d\Z)\83¨\ e\r\86°h\91\É*\Ä1k#X\Û\fX\9d\Zu\94º\11\11\11q\18Â\8e\"È\90Q\80\0\e\Ìs\99\10B\117/!JG\å¬\18\Æƹ\ï{Ý\86±¸Ë\9d\9cc\19ʨ»Ô\83\å7lò\17\1dÃ\8f\89Ѻ\Ý\Ö\r\9bb\ãn1\Ö\ØóÃ\87y³\Ó\Ì-N\ë¿]\×|F\197\a¸\8faEM$\ä´l*h²$R\Ï\f\r\86L\\Guo\×\Ó\Û\â^\Ç\Ê\aq\ë3¿SN\ÇW8(\95\Û\Ï5Z\92>\a\125\84/\áxª\f\19\ÈIc²<ß\99p(ñ-s\17_\8aPXÆ\84+¸V\ 3·\8fT\Õ5­\17[¤Ó´\êJ\ÝoW\Ö\ë£TQQTF\1c:\êº\ècÀ\ãÅ\8b\1cX\ÃX\Æ7\1e\îv}\ÈR9\æ+\ÞR=\î\ì\b\88\88\88\88\88\88\88\88\88\88\88¡+\ê\9aðo\9ez\Ôo<\8augO\9de\Î\ZMlVs\97\1d\êµÏ\95c\Ê\ZdB¿$Ü«\ë\84F\â~Û©E!¤Hl1>öþ¤y¦\8d\1eþhõºú\9a\ÜVux\Ý\ïo&ø\á\í÷\15ö\9f\8cM\92\9bR²þ\1fz\×r/¸;§\18\ßH\8a\r\ßT ÿ\02¿\1f\93:´-\99LRM\fX\Û\ruD«\ 1Ì®\f¸\12®\8e\ê\×f8\9f¸\\\a\Æ}\8e\á-\86>\Ë\Ç\\£¬\×l\94r\Ä\ì¶\\?Í\8e2Ȩ¸\84V\ 6mU\Íi_\98ö\15vQaYD&0\Ùp£\11\ßV2\ 1\11\11k\ã\Ê\ç=Xu\9f\1fsy\9e\8eÀU»V¡×®P>\99 ¸Ï³¶ù:\8d¬j\ 1·8k¾\ f\Ì\â0\8d\7f»\1c߯9\13ðo¯Þ\91y³fYL\97cc.Lû        òO6t\é§,©\93fJ+\Ï*\\¹G{\Ï\"L\83½\æ9\Ì÷\94\Å{\ÈG¹\î\Îsü\Ê\à_MwN(ú\87â\9f\81LÊ·A\ß;\vV\ eÀr<\99µ\84ª¼u\Æñ\ 6)j)/\"\98a6%j\94\ 1\83B/\È\13%2<V\nG³\Çõ\8f~h\88\88\88\88\88\88\88\88\88\88\88\8b\84Á\f \9a4\90\8aDi\ 2 N\ 3\r\85     \82Vde    \84L9\84\19\18\ç0\83{rdz9k±\9cg8UWú±º\rÁ\Ý5\ï.\8fÈ\9c\Z\n}j¯µ\Z¾\Ù\È{\87\1dSe\8d\8d¬\ï\147\151\ï/\Û\10n\Ã+\99»\97`m\8ea\88\ 2\19¦@\9bnbJ±µ°\92H®©­ú1;M\Ïq;}\Ë]Bf\Ç>Ó®\97\9c\'·òü­jx¤Ì\87ªò&½³i4õÓ¨fd\99\ 5C6:ý\86\ß6µ\8e\e\Ûa&´S\à~\19[x\ëK\'Q\11\16\84ýL4×\97\9e\eûX\n\a\1c\98Uºõ\Ì÷\Çó\9cQ\ÒÛ\8e\Êõ\85ø\ç\1e\Ñ\ÍU\ZTsg>\í\Ã\v\9c»\19§\Íz\a\13\ÑWm\1c§Æ\9a\Õ\ÄRN©Ø¹\ 3M¢´\84\"\90%\99]o±\Ö\×Í\8a3\ 5\ã0\89\"4\82\89\84\11\ 6Q¹øx\Þ\×c\ e\Åð\9cqU]G\Ç\Ú==D \×VV\ê:\ì(0@&\0QcG©\881\ 5¢f0\Öe\8d\Çõc\18ý¿\å\97g\å\9c\ç=\Ñ\11\11\11\11\11\11\11\11\11\11\164vO¸\Ý_\ê\ e\95k¿öG\9c8\ï\89\81\8d\Ç.ײ\ÖÀ±9d7ÿ\0\ 5\12\ 5;\8f\9b9\92\ì\n\áF\82 Ev$J\91\18\r~\1f Xt`{3\ë6\è7\19J=g[ø\87\97;6rV\È4-\80¬\'\ e\êÀ³k2\Øñ,\99»Q\17hú^|\à\8f,\rvK]\15¹\ÎH\19\ eÀ[ªwú®üºw\ fgf¥Ð¾\8dj1®\85aU\12Ö»_\Ó÷\î\Ç\1e W\854\Zr[\Ø\Ö\Ö\éuz¬yrÀr>÷fÀ\éX\18\93\ÊOÅ\8d\14ç\8d¹N\ 4\ f«\97\99ß®J\å]\9f£ýf\Ô6\90gù¹[.\8dIµoúTY1\8f\86\95\9an£qe\1eU\9cy8\b\8d\18»\84l\80O$\ÈÆ\94P\864\9f<±ô\99\7f\Þc\96góÿ\0\92?\"|\Ó\Ú\Î^¸ú\ 3saA¦\Ññ\í\ 4úÈ\8d\94\Êú8ð\9des+]¥­Ì\97\Ê\rf¤}~\ 1l\äN±\ÄHÄ\9f8r²\1e\ f¤3Ä\9c\14\íc\95¬$\ f8\Éeç\94·¨®\91\8c\7f|<!\Ù2!ûþýò,3ûþ±\8fe·~\83ø\9bè\97\8d\b[`º\8d\Ã#\Ñî·£G~ݹ_lû6óº^F\86\11\8a\rYö-®\Ò\Î\\JX.i\äç­\Ä*\èó,-%\ e>\re1\æ\Øò\"\"\Ã_\"\1c\17#³]\13\í\Ï\0B~Ga\Ë=|\å-6¬­n\1eð\Û\ÚjvM¨0Y\96\13\ f\90\e&E$f¹\99c\8e\Ñ\áþ\Í\Î]\8a:¶\Z\v\9dRþóV\Ø\ë¤\Ó\ì\Z\ÕÅ\95\ 5õL\Æ`s*\îiæ\9aºÒºS1\97a\92aM\8cx\Çf\1c\ì4¢~1\9c\1e\ë³ñ6\É\aM\å>4\Û\ìß\91Vê¼\81¦\ì\96\ 5h\Èg\ e\r\1e\Ç[g-ø\bXR\97,\ 4R;\ 3\10\88G\ç\1f\161\î\Î\e\9b\âxú\Ú%þ\85¤^À0\ä@º\Ô5«hR\ 4\ì8G\89cM\nds\rø\Îp\á\94&c\Ø\ìg8s]\8cû\ç\19\11\11\11\11\11\11\11\11\11\17\9fò\97*ñ·\b\è[/(ò\îñ­q\Ï\1d\éµr®¶\9d\Ënµ\8bK¯\ÑUB     $Ë\9dca-\ã\b\8e\"\9c¯\Îs\96\ 4D&qðcó\88    ùjõx\í¶\16\ 5\89\Z\8aª\1cû­j\7fg¶*\áN\9ba\1cqY\18w\\GLi\ e\ 3\n;\17\98\Õû&\Å\ 5õ\Ø\Å~\7f\1e\8fg©µ\8bh\18u\ëô\1d\ÌòW\ØØ´u\r\å\8e\Öv?\91dH\Ìv\Ø\ÛKÙ¶\19\11\9d<\Ò\Þ\Ç\Ù\ÞM\rF©ª@°¶p\â\ 4ó)5JRØ\82\ 4&BĨ\Ñ\ß:/\19^\8e®1\ÒE­r¿\91\Ý\åü\9f´ý\15öÁ\ë÷\1fÈ\93Q¡\Ñ\Ø5\á\95ø[\9e\Ó\î\Ûm\Å\Ñ$\ÆcI\ 6\18ª¨l L\95_oY#-S;\á^½pO[ôú\í\ 3\80ø\87\8e¸{Lª\8fø\90u\î<Ô©ujñGû\1co\81\19U\123\ä\ç%v_\92Jy\Ê\ç{e\Ï϶3\8fcDDDDETOª;ŵ\97Gû±m\Ø\Þ<\Ö%D\ëomï­¶ú\9b\0eƬ\Öy\9afOu\ÈZ\83\9c\Ðg\10GpC\13\1c\Ùó\'Ø\90\Û1Z8\Ð+\â\8f1}V\êúd{\ÛEÜ\9f\19\1c[©I°°\93\1d]\8d\13\82ù\17\17SO>\Öкü\b\Òõý\94\93\13ó-¿\99 \9f[*\\æ°¡\8f$\í¯<\éVQ\çe\92#DDDDDDDDD^3\Ø\1eÀq\'W8\83y\ç^qܪô^4\ã\Ú9\×\Û\15õ¡\98\Ì6<\18¥\93\88Uñ\Üö\96\Æ\Ún\0ñ@¯\8d\îy%þ\Ø`\ØR²¥¯6\9esù\Ï\Ê\Ç*\ÜkTv7|q\Ô\1dR\à\81\ã~ \8d5\àÿ\0\12\86¶k\ß_»r\'\Ð\Ð\æ\Úú\Ç\"\8df*\8995m!\Ã\v\13\æW\Ã<lSñeâ\83²>Vù\Ð\\S\Âñ\19¬i4N\ 4¾R\æ\8bú\Ést\Þ9¦&q\9f¶@£\96#®\ïd³?ùn»\16tS\Ì{\87\83K\86\Ã\Çym\94ñ»â¿©þ08z³\8c:ý¦C\91²>,\7fñ\Ï0\ì5\Õ\ç\ä¾F¶\13O\82\Ûl7B\ f\Î;L\é2~ª\8a\ÇF¨\80\ 22\ 5|HÕ± Ã\8b²4DDDDDX·Ü®\9fp\8fzú÷\È\1dm\ç\íZ\1eÍ¡\ïµ%\86\18-u\8e¿n,¶E>\ËE+\ e\1c\88\174vA\8be\ 2\\CÆ\92\191DPH\8eq\86\1dò\Û\á\ï±þ\'y\97:§$À\91¸ð¾\Ûa%¼I\Î4ðd\ãY\Ù\ã\ã\12d\87]¼6@ÀQ\îñ G,£T\99\15´8\Ò\ìi\ÜLÀ¼¯£\ë^\"|¤ò¿\8a.\Ô\Õs\9e\8e       \9b7\1e\ì\Ñ#j<\Ý\ÆC\9cH\Ñw½\173\99+\ç\1cO8«Ý´kGɬu\89V\18À\ÆSXW6e[m\8di\12\à>\9c÷/\80;\ÛÁ\9a\97`z\ç½U\î\Ú>\Ó\ 29\ÊØ\87\Æ-µ\Ë7\8f?\99¯\ìu\85h§T\\WIa\áË\85>4Y!\95\16Ls\842£J\8c\f¨DDDDDDDD\\2$\ 2(\r*Q\85\Z4a\12D\89\12\b0\80\0\b\ÜC\18\Æ#\9a1\bCk\9eB=\Íc\18\×9\Î\Ãq\9cª¥}K\9ee.»û\Ù;\9e·p\Î\Íi\eª=|\Ø\ìµ\ÜF\8cCD\87\Ê\\\95I/5÷\ÛE\80òÀ¾u\r\15\9c)\10u¡9¹\812HMv\Ò\ÜE\ 6¯g\eM\Þ8<wsÇ\93N\Ì\ê}p\à\è,\86ù\ä\15§ r\15\9cSH\Ö8\ÃG\ 1\9bü¶\Ót\Ñ\12;§\ÌhZPkú\à%Å\97°Zýq\9d2®¨\16÷\957\1eô_£|\a\ã߯:_]zû«C£\Öõ\9a\ØL½¿tH\ãØ·Í\90q\Ú\ËM»j\9a,d\93m­e\æD·5\å ¢fA\ 6\1c¹\Ï1\8d\98\88\88\88\88\88\88\88¼¿\97øW\89{\ 1¡\ßq\875ñÞ¥\Éü\7f³À\95U}©\îT\Ñ.ª,k\æ\8f\99\18\80\9478m\90/q\15Àx\88ñg#\Ëþ\ e\146û\ç\è\Ì\à^M·º\Þú\'\Í3úûa%§\9c\Þ!\ä\n\Ë\1dÿ\0\8f\äJdiFt*-\8c\97Qv}iövE\13F\édº¦¨\84\11B\8bR69Ò\85©\8e¹økõ*ø\8f\ß[\Ì=E\×õ\8d¼\ï1£\ß\è|k\ËZ®\ï¢\î±\n\È\ì$\8d£\8ewi\ÚT;\'\ 5±¢¶- \81\ai\0\ZXUò±\ 6M\9cCÉ¿©\1e\92\b\ÔZ§\90\13ü¹\Ä\18¥«¯\83ºs\'\12\ e\ïMmw\n0£]\Ú\ 3\8ba\16\Ïd\×\Ý2v\1f6%%}\Î\Û\1c\ 3\É\á\Z\â\'\Ò\13\17%yc\Ôe\ã7\81\æG\89Í·ý\93\âQL\91\98P\í7\î ö7]¥\9d;\ 1t\8c¬¶\9bÇ­\85o! a\n\æ\Õ\16k\ZÁ\e\äüdD\Ã}?¬þ}|Iö\Êõ\9a¿\14w\1f\8f\à\ìòl\eWY®ò\94-\8f\86®n\æf.f\95´p¹B\9fU%°c\ÅnK\"\\?¶#\Z\Ã\ã\as¡\Í\Äm°\êÛ®\9b¼Au\9e\93¶\ë;\85c\1c\Ö>\ÃV¾ª\Ø ±\ï\Ær\Æ:]L¹q\Ú\ça®\Ë[\92c.\Ã]\9cc>\Ù]\9d\11\11\11\11\11\11FS\Õ\1d\ä¿=\19\èm\87\ fñ\î\Âú®\7f\í«-¸\ßP%M\Îj¶mGBüG\7f\8f¹\n¹ð\ì+¯!º¶\19\ 3GS}JR\1e\9fiº¡t\81´2>\Æ\Õ\aQQk\7fkYCCYawywa\n¢\9a\9a¢\14\9b+[{[)\"\87]YY]\fF\99>\Â|\Ã\ 6,(QBY2¤\94@\0\9eWµ¹¸\ f\Ó\ï\â\8b\85\Ò\Ív>\Ó[S/³\\\ç\ 6»{ç\9dª$_rG<\97Ì\99©\è5sd\96L\Ö\Òi\Ô3\áÀ\90Áº¶%­\ë,/MEW>d\807|\88\88\88\88\88\88\88\88\88\8b\Ì9k\84ø{\9eµ)ú\176ñv\83\ËZU¤y\11,5nD\Ô\èöú)Q¥µ\8c\96\ 2\Ö\ÞÂ\9b\e\"\961\fR\99\81\á²\ 4\b\ØxýÛ\98²y\1fô\8ct£²±owþ\9aÏ\91\1ec\94G\ÌfµN\ 6\\p\rÓ±ü[?\rüyõÆ\97¨\95°k\äÄ®&\99}ER\Ë\vS\\]T\Ü\18Oa¡)»\87˯§Ë°v\1cg\1f\91ù3®w·\98\91k\10\ÚF\É:ó\82¹\96®,ºqX]\Ô@´\89\8dKlp\9dYO\ 2\ÂTú\b\e\8dEik\98fVW\\V\96t\Îü-z¨¸Û¸7ú¯Z»\Í_¬ð\7f?]\Z\ 6½£rMQe\87\8b¹Z\ì\á\b¢V\Ê\Ä\âÉ\91¥m\97\16\ e,\nÚ\99²¦\×O>jÁ\12\êu\9d\99\ãA\98°\8a)\ 2\11ÀQ\98\ 6\e\f\13\ 5\í \8a\"7\ f\19\ 6Fe\Ì \È\Ça\Ì{s\96¹¹Ã\9b\9c\ã8\Ê\äDDDDDU\14ú ;\87s\Ú\Ï+\9c»®6c\89¡u\92¶¯\81t8Ñ­¤Î¨\93\8a\9c\97eÚ¶(\Õ\æc\ 3Qcm°l\'«µ\b2gJƹ\ 2A\8a<\å\90adÿ\0¤¯\Ç`»SÞ\99\9d \ä\ZY2x\97¨°\19²Ò¸ñ\9aú\9d\8f\9a-2\bº\Å1]&,¸3\85­\ÔL\9b±\ÚV\99\83.\1cj9\"8\9f\86|\í7DDDDDDDDDDE\87=\ä\è\9f\\¼\86pFÁÀ\1d\93\Ñ\ëö\Í^É\87\97¯\Üd\ 3fË¢ì\8e\8cX\Ñ6\9dFݸlÊ\9bh­&Z÷E8\9b,\1e\á6}ð\12\86\9f\ß+^2y\9f\Åwjv.\0\äø\96\16Ú\85\98\8d´p¿(~        \ 3E\É\Ü|i.\f{(\13X&\Â}\å\11ó\8a\8d¶¤Y\fº»&\ 6D\88\10¡Z\Õý\ÓHô­yÀعö¾\1f\8e\Î\Ön\ä¼\åmB\8aLοò\ e\Í//º\ä\1d\1fl\Í/`»\9b#\18·\Ûõ¸\ïkkd\1dÏ»\Ú*þ\83\98v\97\106+\99S\80DDDDE\ç<Á²\eN\â^RÛ£\1dѤj¼u»ì\80\92\Çe\8e\8ej=f\Î\ÐFkñ\9ce\8e\13\ã4\8dv3\8c·-÷\Æq\ì¨}\ä-\ëa\å\rÿ\0x佺H\æm\9c\87¸l\Û\Ö\Ï0Cp\85/a\Ûn¦\ß\ÝI\18\9cò¸c=\95\84\92°n!\1cÆ¿\r\Ëß\9c|³m\9f¦;¦\9a\ÇRüTp¶\ÉZI²6\î\ÔE\87\Ù\rüó\7f O\1d¦\ßO_\ 2\86¨p\ä\10\98\84\ÊMV®\9e³#\8fôG\92H\ï±$P\ØL\9cCHU\11\11\11\11\11\11\11\11\11\11\11i;\ÏG\8c\Ýo\É_C¹\eM®ª¬\1f:ñ]e\97\'pf\Îh\ãdð\íz\Ýd\édÔ\8d\9cѨ¶ø\ßmU®G\12\Â@\84g\12º.\'=\84U\nqW%òoYy·I\å=,öz_+p¯ Vl\95C°\r\95\\ê\8d§P¸adR\ß\×0Õ¶L\8eY\11$Rl\Ôr\v\15ò\ë\ÍcO9­\19\Î5w7CûAK\Üþ\9eõß³Ô­\1cvs\17\15j\e\8d­f\ f\f²(ö\v:x¦¾¦\9e8%4xs Yº@\Ï      \85#c\ã,h\Êadg.[\"\"\"\"-nù\82\ä9üO\âû½\1c\89V\ïk-S®|\83e_\8fµÁû&ÿ\0\eø\ÑC\935¯p\Ús\9d\81sð\Ç\ç\18&sñwþ\9c\Ò÷Áº(9C\9aø\7f\8d%2C\ãr\')qþ\8b!\91\1f\91\Êx6ݲ¢\80Í\8cL1ùd\8c\8eÁ\Ø\vð\Çe\84\Ë]ñw·¶oyд\Ê>:\Òu=\vZ\87\16\ 5\ 6\9d®\Ôku1\"F\14@\n\15D\10B\ e[\1c?\ì\Æ\â´?q}²ì¼¤{\Þ÷½\Î{»j\"\"\"\"\"\"\"\"\"\"\"*t=Eý<¦é\87\95\î\Ã\éºÁ\ÆýO\97d\Ã\ìn¹\r\99\92GT\83\97\ç\\[]Ö\98ò^ì\98\8cÛ¡lr\9a\Ø\â\8b\ 6\10%\86²\ 4\82\17\92k^\8d\Þd\Æý\â\çm\âü\Ç8\ßÁ\1d\8a\Þõ\ï¸ùn[$[\Ô\Z~Ec¢|Jüb\18\89~a|H0\9bó\9b9\Ùk\Â\à\11\Ò\ÕDDDDZ©ó\87¥\Ë\ß|Jw\ç]­\8ai¶\ä\ë\9e÷>\9e,|û\18öU°q4\11Ç\8c¹\83ve4$\8b\9c\e?[p|¿9c\98\Ò2«ÿ\0\ 6\1cw\ 3\95¼¶tcG²\87\16t[.bÅ\97\Ñ0_lf\É\Õõ=\9bk\83(\8dø\138\Ì\19Ô\91§\f­c\9e\ 2\Ça\87\8f\98Ú®\96DDDDDDDDDDDDUÀú\Ûø\ÓZ \ì\çJùJ¾¬\0\Ú9#\88yC^\Ùn0!6M\94\1e:Ù´\çk°Jv±¥$j¦\îV¥\8e\12¸\8d\ 1­&\10yn$¹¸\Ù\'¢A¥\ÇJû\8a÷78\ 3»EJÑ¿\Ûôâ·\89õl\99¸Ï·\ï,cÁ\9c\ã\ß>\ß<~±\ïû\9a\Ò\"\"\"\"\Æ\Þ\ãj Ýº\9d\1dZO\Ç!¶\á.J\13\9añ\à­&A©Z\Ë\18\9c<\å¸\Î\fH\í\16]ûø|þ\7f\aü~\ e©·\ÓM\0\Ö\1enú\'\81\0\86dM¯\95\ç\És\ 6\â28bð\a+½§3±\8c\àCü\8c\80-!2\Öý\å\bñ\9c\90\8ck®$DDDDDDDDDDDDPMõÀ\ë5\î\á\î\84\î?O½¨y+\995\9f¿8n~\15òu}F\Ó\éc¾\1f\92b|É\8c\93\âÿ\0¨Y\Ã1\91\å\Ù\Í\1fF®·\ 6§\Æ\ eùw\Z\10c\ËÚ»#»Î±\9214d°5m.½H\ 3\È#[\87\18\81\89\0\11\18÷\å\Îhc\88Xv\18Ƶ²\áDDDD^[\ÎQq;\859\86\v²\æ¶g\16ò\fW9¾ÿ\0,bF¥n\1c\å¾ß¿\960ÿ\0|{c\ß\ß\Û\Ûöª¥ô\9eid\Ûü\Ëp\ì±dmv\91\Æ<ú9\äù\7fH\âk\f¤.\19\96µ\ÙÁ\n;÷\ 1\9f¬5\Ù/Á\Îk\1c\çb\Ú\ÄDDDDDDDDDDDE  \8f[\9dn\v\ÓÞ\97\Ü}~ù\83\Ù]ª·\îöÿ\0/ù^/¶\95õü¿¾>\ß\áp\ïoõú}ÿ\0\Ý\Â\Ï\ fH\95~!øiФ`\7f\f\Ûs\Ï<Xe\ßû\Ù\1e\ e¯\ìþ\ØþØ­À¿\×ü¯\ïþ\98\93º\"\"\"\"\ê\Û\Ì\11Y\é[\85iÿ\0ȱն\b&ÿ\0ò\97S.9?þ     \95\\G¥+\82\ë5\8f4\9d\Ç-?\Ø\n~\ 4Ò¹Ã\8e*!·ú\82\Êû>Y\ 6¿\ 1\Ïq2\ãý\91a\é\í\0½ß\9fv\È7\Ûò~\19\9cY@\88\88\88\88\88\88\88\88\88\88\88\88¢¯\ë\ 3Ñ\83±x\9d\9b·\9a\e$;\8f\8c§E\92\ f/\81\'c\Ø!\ë\9fhð\ìý\8d\É\âÌ\97\19\es\ì\Ò\äosp\\a\Ù3\éu\Ñgh\1e\18z\Å\ 2Àoa¶\e\1e\82\ç³\á\93A\Ý÷«\8d\96¼\98\Çû\Ìl+\0\ 5\8fÿ\0}\82nT\83\11\11\11\17ø \Æa\90E\e\n\"±\Ã(\88Ö¼d\eÛ\96¼dc±\96½\8fnr\×5\Ø\Ë\\\Ü\ç\19\Æq\9c\áA7\Ó\17A\1e·Ì\9f\9clG\Æ\ 6*\ eG\ä\8a\b\Âo¶\Z\Ø\æ\í?#üq\8cc\ßô\ÆÒ\89­ö϶1\9cÿ\0\7f|)Ú¢\"\"\"\"\"\"\"\"\"\"\"(\àú°\ 1\83xJ\ìi2\Ügñ¹\ 3®\ç\Æs\8f\Ûr\îp\Ò#|±ÿ\0\fûH\Ë}ÿ\0\à\ì\ãýVsx7«\rW\88o\1d\10\86,\Ê\ê\Ï\16Z\e#c\e\93\ZÒ\84\13²R\ç\r\ÆHL°\Ãg\Í\Þ\îø1\8cò\Ö7\Ûk\b\88\88\88\88¡\Ñ\à[C¦\Ðü\ãú\84i©\0xð+ù\86\9aXG$\8f1²]Ë\969kl²3\88Owe²,e\Z@\ÚÏ\80\ 6\"±\80\18ÀÁ\r\93\17DDDDDDDDDDDDQ\âõO\Ñ\Ø\ßøL\í<jÀfA\à_ðe\áÇ\875¾\Õ\Ô\\Ù¢\ÚÚ\9f9{\9a\ßhµ±eJ\Ë}ò\çý\1f\ 1µ\Äs\e\9c\ãð±\18\91<Ix\ã\11\1dòsºwÁ\12q\9fø\ ef\85O0Mÿ\0 Gc?\é[:DDDDE¡\Ï\Z\Ýn\'\14ù(ò\ëÌ\92ª[\1eG=se%¤;?\ÆÀ\9f\"\8f]§«\87\16\v\8f\86\ã\ï\10®e\ì6C\Æ]\9c0Ö²²\Ö\ã\ä\ç?|h\88\88\88\88\88\88\88\88\88\88\88\8bWþf8>ϱ\9e6;I\Ãõ\ 5dk\r\Ã@\97_\16a\ 2\ÙC\81(\8fh\àO|W\Z;¥6%\89!\9dÀ\11\86G\á\99ø\948\ÆL<\98\è\æ\8aþ1\é\ÇXxù\ád|iü\1d\Æ\Ô\"\bþ¿¬q`jõÂ\89\86\àyø1¹\89\80»\ 3ǶE\8cýnk^\×7\19P\88\88\88\88\8b\áT\ë44s®¬ªk#Á\9d±Llû¹!û>\Ë\19\8cÁ0Ó\9f\æ÷7\ä\Ü\14\9e\ß^\18\ß\ëwôû¯º\88\88\88\88\88\88\88\88\88\88\88\88º¾\ç¨\Óo\9a½Î¡°\8c¦¦½\8b\88v\ 2\ 3\Ú2¼80\8f\8c1\ï\19Z\Üý\81f}ò7c\Û\19ý\7f®>\95\r4\1dr\8e\9b^¬k\Ù[CS]M^\Â;\ f# \Õ\Ã\f\18\8d{\Ú\Ö5\ÏÀ\0<9\Økp\çc9\Ãq\8f\Ö>²\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"ÿ\Ù',4,0,'','','',''),(53,3,14,'9305bf01a84c7ec6','21202845355bf01a84c5d33470288998','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007','image/jpeg',80,80,2356,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v     \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0*\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b \n\11\12\13\14\16!#\15\"\18BCÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91ù\ãõ1VüwZfº\9b\bJ®\Ø\í¨!¶\9d\85m³e\ÙMg Ü\91\13\ 4\a\14|\\qb½tÙ\99\11ö$\15[Q\àÁ\Õ\Û|\'¬\8fJ\18¢+\18\Å_\8aÎ\9fy®ód\à]±î§\91~\Ü\èN\9e\ÊM>et-e°¦µM§s¨2T9¸\Õ4ZO\ë4\Z] W\9a~?;\ 6J³&\Ñ&\ eðu\êôç´\84´f÷}v\ë\Õ+¬\9a\Ö3V\Ð\ì;j\Ó\v\1c\ç\ä*stn]\9d¼.\87\98±\Ç\19\â       ¶\í;E¦\\V\1eÀ\Èu0°\ÏEW\ 3}o¹\e\f\16H{\v÷^8\ã\8e9\13{\á\Ù\ 4õ\ 3¦\1d¢\ìòE\1có´v\8eØ»\ e\n4\Ì+\"J\Ú`kg¿R\88+\b\ÊUøò\Öl\Äƽ\9c)\1eÍ\94¬üÑ\8c|±Po\8bÞ©\Û<°yCÓº\7fhX\',\98\Ý;Jõ»\13t0\×U?-M\85̦\É\ÛR\84JcûX\9e·\8e\19ðqòXJ¿\1e\Ãc\8f#-ýh\Êqt\15F£X U+TjL\ 4MV\9dN\81\89«\Õ+0A1\e        ^®À\80\Ä\\4,Lx\Èlp£c#\Å\1c0\85a\bi\81\Ùm´\'      N1\È9\äo\Æö\87òa¢¤t\Æ\è2\ëX\90\10Igµ\î\Æ\×Ö¹\êå\92\81d\91dl72\88ø\é! m\Ñß\92\ 4z\äk6\à%b\ f`ofS\1f \91dÄ­\v\ 4òe\é\ç\ïýã­\97m©rÙ\9aÿ\0Ll@\ë{?D[\ìÓ³Ú«h\ëb\10\f\94E¯]\ae|õ\ë\é;e\1eB.\ÉO³W\90\ 1 <T|}\98Ixñ$ \9fµ\ßLm\9a^û\Ô:»xk\89\ 5J\ëýÁ¯©\Û6\95\"\â\12Ó¦U¯5øû,\13ï²\87\1dK\ 4®6H\7f\1f\ e/,?ö3\95+(\Îy\é|q\Ç1\8b\8bVØ·?\8a>þkÚ\90\84H\Ù$úͲ&a\ãDK\8b.P\Ê\\Vn\è\8a\r¶³\85¼\\\9akª\0Vq\9c\á\â\bm¥%I^S\9d\ 4ý\19¯Dµ\å\8aþ\83\Ö\Ú\ f#¦;q\984º¶\13ö\9c\9d\99¤\b)±\Ò\æp\ê\Ê\ÄS\aº\94\8f\î\æ\ 4hÕ¯\1fJ\1c\Î-&\ã\95Mz¼g\é\97\ f2\12\90T\ 6\98\90´V:ó£©\9b\fx\81\Òù¥lb\9cµXc\Ã!\ 2\8d\96ý\ eѯ\ÃB2\9c\95\86\90\188Gô6\9eX\ã\â\ãE\Üz\Ïã\9f¥:\1fb6H÷\íg\ÖýY^ºÇ\98¼­ø[^*\à\9d`¯)Y\Â\7fÒ¹*aPL\ã\Û\1f\16#\9bN?\8crzq\Ç\1c\â}\86Ie\á\88i·\Ç!§\18}\87\90\97Yy\97Q\96\ÝiÖ\97\85!\Æ\ÜB\94\87\10´\å+Nr\95c8\Îq\Ê\Ä{\8dÕ½\8d\é óA¥{³®ª²¶>\92^v}\8ev\8c¸D\7fXz\êò$\8cN\ß\ëÄ\82\Þs\è\Z\ßI«\Ø$M\×k\92y\"X\"À«\Í$\97\ e\8a³\v\11en \ÛZ\ï}j\Ý\7fºu%¢:\ë¬ö\8dN\12\ïFµE)j\ 6r·a\ 5\99\bÃ\9aC\Èl\81\ÜX\ï%\ 4\86SL\98  Hx3\18\1ei\11\Ûȧi\b\éGF»IÚ #\ 5\99\9b\Òzv\Ùo«\Ä\È%\Õ\Æ\É\\\Ò&\"\éAJ¡\87\19}Q$\Û$a\9a\94\Ã.´÷øõ\13õ8\87>*Æ\8cÞ\96~\86\ f\äc´ý\8aò½\ÝB\Ë\Ý\16m]·cÈ¢~Ú\94\98\r£²S\è\Å\î\7fcO\n\9c4\13¹\Ö\11E\Õܦ@ \\\Â\ 1)d\0\á\ 4\aôøv\15cG\1cq\Ï\ 5\ì\çft§O4nÁ\ìganñ\Úÿ\0TkHe\ÌY\'\Ïù:óªS\88\Z6\12\12\91\93vIù\'\86\88¯AG¶\éòÒ¥\8c\18Í©n{\ã\0]_\ì\1f\95ÿ\04\84\ãv\ëk9~,<l\1e{\ØÖ¶\18\9a\85R÷\Ý>\ËWX%c\æÁ\r-}\8b°\Ñ5EJM¦²ðV\88ªÁ\ä\f\90\ 5_\ã2\äø¹d\94ñcÓ\8d\81[¬W;\1dL¹w/\152\r\90\89\90\îV\Ñ\Ø\1d\8f@\ÓRL i\19\Ø\ê\9eÄ\9f\93\×5©c\ 6m#8õ:\95\\a\91~B\880\ã-m*tQh\94\9d_M¬k­oR­Ð¨4¨Xú\ÝB\97O\85\8f®\Õ\ë\15ø¡\Ð,l,\f\14H\â\Æ\ÅF\ 23hdP\82\19\91\Ùm8J\11\8csÇ»y\×\n·oú»¿:½t1ø\Ê\Þö\ÕW-jtȬ\à\82\1e²\Ã\12\fe\8c1\Ô\ã( \Ê\ìªÁ\9c\10w\1dm·É\8f\15\86Ö¬óO¯N\Ƴør\ß]\91ñ!\äJ,} j\ÙûQ\8d­\Ö=³g\Ê\â´öó\98L\14u*\É\15H\ØÒ\8d\ 3\ 3)û$-~\933H\1dd²k\Ò\19±\Ôf\86\87¹°\15x\Í\ä\12¤­8RU\85%XÂ\92¤\ç\19\9c{\ã8\Î=ñ\9cg\1f\Î3\8f\ã8\ç\Ï\1csQ?-\94Ù¯*~j:M\âJP\ÉDuO@kw»½Û\98\88Ò\88 \9b\8f\ÂD\Èz\Í^W(q¥8Ê\83Mv¢\ 1\82£\87\Ü\ÖY!ó\93\"\87pm¶a!!\ëP\Ñ5\Ê\ìTt\15~\ 20\bX8Hp\87\8d\89\87\87\8b\15 c\"¢\ã\83m\91\0\8e\8f  \86D\b1ZhqFe¶\19m\r¡)\Ç\Ùñ\Ç?!v\×\Ô-\99\ 6\ícc\Ò*\e\ 2¶úþ\×\ë\×j\Ô5®\r\ç0Û\8da\ÇbgB<\a\17\86\9du¿\9a\Çʾ·\1cG¿\Åj\Æ`·d|h\é]\ÍXùi\ë.\Å\évâ\80\87l\rsºú\9bn\9c\Óòµ2#Ò\97!E°\Ñ*2Pú\ëgS\Ç!\81Z\91¥\Þë\92±\æ\Å4¸ð\n\86uL\9c4Añ!\ß\Î\Älݯ\Ùÿ\0\e\Ýýj½ÿ\0;zHd)\12û\ 6©\Z\Ü%[²\9a\91?K\Þ0P\83²8\912E\8f#\0\å¬\0\ 4\8f\8dmv\9aó¢\ÇF\9eô\Ô4>u¸\æ\ 3úÉ­G\13\Ô7\å\ 3e:Û¥\18\ïK:@\0\85¯\å\94E\alv\ä\ 1\91m{ÿ\0®\11 F \16G\Û\1fú²þqÿ\0|s>\1cq\Ç\1cs\ 2²\Z\Ìx\ßRõceE\'\ 1.\Ï\á²\Ü-¡,!M¦`º\çnjQq¤\9a¤º\96\ß|peA\19µ)\95:\96\ 1\19\1f?­¶ð\Þz¸\ä\ eÕºý0\9eH;\99°S\1c\86Qy\ê\9fC#ñ&\96\14\9c\98]Wa÷¬SF[ÿ\0RP\ë¢\bl2\96\1dul²ð\ÙV\eK­\áSÇ\8e8\ã\8e@\Ùz:W\äò\81²\15\10¬©\8e\87\í\ÊSs\Øo?\ 4~G`t¤\ã\91+w\1f\14\18l\Æ\ÛW¶U\86\ÝS~ÿ\0\17\97\1c\àH£ \97\8c@\ì$²\19\1cg\ÊKM¤\97\11d¸+\ f?\84\á\Ç\19\19\vpv\96¬¡\95\94B\9bJTó\99W?\1cq\Ç\1c\ëd1T[g\ävrsC:\ee\å´\ä\84\nû¬¼ð\èw\Û\æ\96]xv\1cq¼gâµ²Ò\95\8c\å \Î;<ÿ\Ù',5,0,'','','',''),(54,3,14,'9305bf01a84c7ec6','21202845355bf01a84c5d33470288998','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007','image/jpeg',48,48,1488,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b        \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 1\ 5\0\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0  \11\12\n\13\15\16\"1\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿\ì.\é\1eY\Ö\Óû\8e\190\9c\ f\ÆK\ËŤ*X2 \7f|\Ë\Çf\Î\ä\8c\12Yys\82G!µ+\15\92\91c\91·Tଲ´\Û>¾\90\99\ 1³I¦\Ü\Õ]U¢\ 1n\å_Pf¿\89\Ø-5ô\e\84a.-¸\é\é\145\87\12Û®6B]e½W\87\87\91\1fò\1e\ì]\81\Ä~©:\'jjy3 6e½5\9d-M´G>\à\92u3v¬ªk²\Öx\93\Zøx\19¸J§\8d\82=\85!ð&\9b\8f1\87\ey\86Ö\99\íø\9cz\ì \è>\10®ö\íª\b\19¾\8f\ì<\Ø\ì¯]e\Æhû\rWQ\85k\93\86¬Ube\88ýb\86\1e\Þ\ì\17óû#\Ì:Ó³\ 4J\Ã\r\'\923\ 2\1e[dÿ\0 »\'°\ÞR\çÒ½\84ð·RZi¡sÓµ¢w?9\ÎÔ¨·\1dgt¡\ÊØ£«\Ä[@\1eZ¸\í\84Ih3¦Az\Î&f\9d\fº\Æ\ f\92\8dr\fø\959!@½Ew\ã~\Ìx\'Ju\89UÀ\ê\16\ÛX³U}\91Y\8dy\ç\âb¶5\ZX\8aÝ­P\8b\'\ä¦à¥\8d\r3Ð\82\96\ 5\83\15* D\96k\ã¬\Ç\ég\87\92\×\Ü÷\v\Ê{\16õ\É\Ñ\1c\ËUX­\ìy\88\10\9f\81C#gk©\16-\958r\8b\Ï\ÊB\Z\ÌTs\95bNs\nh&&\Ü)䩦V\9c¦\7f\8d\ fJC\í\ fZ\Ô\ e\88MC¢xbR\É\Î[óWM°¸\ë5FR¿m²»P8Ø¢s\83\e\12\91\85p\97\ZCY±\ÃXÀk\í\800¥r¿É\9f¦-\Âó\96¡õ\9b¥`\139\Ð>\Ðö\1c.\8f«\9e\1e\16¡I\8c¹\Ò     ·LÉ»ôyܪaù\bºò\7fHgp\1c)vI\7fº\v\8c\ 5\92«Ï¬þ\17§ú\à\â­\'\È\ÔùuY\7f\88\"I·Û\96Â\85þa°\ìò\ 4دVF\ 4Z\96\àQò\16)\ 3q\f\ 3®:ð\10¬\Ç\ 4ó\Ï::\Ý[\ã\ç*\Þ{\9a\87κog\ï}¡-\88M{¨\èöM\81o\93ú)\×\a\83¬Å\91(b\ 5a\1f+(\â\90>\ 4\8f\11¼e\Ò\Î|q\9aN\\u8̶\ã­Y\Ò\Ý\Å\ 5    \Øý\Ëq\Ø\Zò\91³\Ç\16\é\Ï|+®\í\ÓZþ\87­5<\Ò1\'G\96\è9\Z\99±\96½½·\ì\95÷¢flpV    \Ö(\15GJ~\11ªN\rÉ\89\16¦k\8d!¦ôù\1635^¬ k³®&7#o\91§T\á+òv\É\16\9c)Ö¤,òQ\81\ etùͺi\8e$\Éb\f\'\ e\16Jð\ç\Ù÷r©\á\ìÿ\0\Öü¯m\15\Ì[»O]àµ\9fYñ>\à\8d\Ü\Ú\ 2\Õp\8f6S_N¾\83á\89´k\8d\90\14N?|MN\Þ4\18,ª^   J\97\821\84\16 \å´\éb>\Äl¾\Ä{\9bhU­\83Õ\9a\92Û­)jd\ 1vvÓ¢\97\1f¶56§\95)öBT\9d¼ø5\ 3±£5\ê\8cwõ\\\Ø&kFk\Õ\È\Ü\âBòMXV\Þ}\ e\\d\9ct\Ôl|\Ì9\âJD\Ë\ 2$\9c\\\9cy\r\16\ 4\8cq\ì6PG\ 4[\v[\ 4\88Xδ@\Ä2µ´ó.!\ÆÔ¤+\19\Ì\éö\á®\ß\Û|\v·µ\8bH%\æow>p«\Ê\n+yq\Ã\ëòý=¦\84²Æ¸\9cc?õd«\îI\80\8c¡°\È}k\ÆP\95c4xa\87\fv\ 4\11\96\86\14VZ\18a\ØBZdq\ØBZe\96[F0\86\Úi´¥\r¡8\ÂP\84\á)\Æ1\8cc\Ïo\ f3öÚ´\ 5\æ«e¤\Ú\âÃ\9c«\\+ó5{$,\88\95\1f/\ 3?\1cDT\ÄY¼\95²@gÇ\96@¤°\êTÛ¬º¶Ö\9c¥YÇ\88Ǫj\Ô\í/\×\7f)R\ìfH\1d)M\Öm\Ô\7fZW.\äö\ãk\13\ÓppA?\97Ô·\7fó`À\8e\8ek\nV~¬\n\ÚSýp\9f\1dM\81G\8aصrj\93Ku¸òe+R\Ë[\18N]Á5k4=ª?\ë÷\ÆSñ\99\bQp¼ÿ\0¸FU\94ÿ\0o\8f6~\1e\1e\1ebµ\Õ\Z/[S!)\10®¾ô\\\v\e\84\19{-\95 \\\82\92¼\ãýú8ZÐ\9cÿ\0¹BSó\9c\ç\ç>\7fÿ\Ù',6,0,'','','',''),(55,2,15,'9305bf01a87c0b81','43713557095bf01a87be90d132625601','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','15820583805bf00e7fd7909940374120-4.jpg?ts=1542459007','image/jpeg',300,300,11008,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b        \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 1\ 2\ 3\ 5     \ 1\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b \n\11\12\13\14!\15\"1\163A#BQ\81\82\17\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/r9¸f3\9cDëº\9e±®\8fð±g\ë]L\ã\Íϵ[d_\å\"¾þW\äñ¿\19Ķ¬\94Hx\8c\ë»x\12.¯+\'=­\91\ 2ûY©´­\97\18f0Hð\96\11\åF÷\98}`\1e\ 2\Æø<|\Þ\r\á\íRľ\Õ\15\94\ 1v=¢¢/\ÄyÀ\8b¸\ÛZ\83\13d´\í{\Û.%\ 5F2\1c²9#\93\181\ f©\1e\\ó?\åC\9b¤\96VõÞ\8e\Â\r\å\95ùMÆ\95¼M\ãG\a\Û9À£\ eO\1d·W\9aøag\Ä,\8f\"Q\Ø\á\8cx7\Ú\æa\Ë\Ìõ\ eòù6\ä-\96§Nл\85\Þ\Ý\ãq¾\90ø\Ôz¶¡\Ø.À\ì\Û-Ì¡\80²\8b\1e¦\8e\9bn\9bic!±£\9eI\ 5\ e)\88\Ð\0¦sp1½Ø\95×\8f\ e\98ú°9J\92£h\87\Û^I\ê\×\e\\Î\8b\996\1d\83\Úuý«x\95L\è¸8®«x\êú\83\99\90\94\87üV\Ñm©Ø\82P¦bH£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8b\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)\ 1T\É2\Þ1\12CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ø\êy\ë¶WPKüg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ek¾º\ê8­5¼ù\Îo\Æ#\àÁº$\Z\Í;\Õ\äù¾G7\9fñ¯j¹\8a\ïs\8b\ e\ÆE\8e±\Çõ\Ï5/\19h\î>e{\aR\ÓA °¡b;\'N\f\8ben\18\ÓeEÅ\96c\19\â\Î\ 5¢\90¯\88\8fN\ßm|\9e˪ä\9d\80\13ºý\Õl\96\14¢òþ\ÑQ\92Zo\91[ &\9dU\Æt\ 6(¤J,\8a¼û\Ç\Û,\ã>\8a1l©\çÂ\83²ÁþDp\ì¯ñÿ\0\â+¢þ6õ\18\94\9dv\áº\0\î/\ 4\\l<½¶B\87±ò\8e\Ë2>\\|\Zf\×>9lb\Ã\f\ãÎ\93UY\fÃ\8dL9Æ\85\a-\8bñf6h\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88¢#\êAõ\ 2\13¡t6=:\êm¥|þ\Ø\ï\14$ÿ\0\16\82-}\9dw\ 1\ë6AÀ\Û9\Ð\1f\99 ±\ä+P\94\8d\Ö\é§\0\95µo\ 4«\8d\98\a\8b\ 6\1e·µ\Ö+µ\í{6÷³_n{\9dõ®Ñ¶m\16³o6-\8aòi\ì­\î­\ì\8eù3¬lgIy\ f&T\93\91\ä)Hü\ç9϶=\9b\8cc\1f\ 3\Û?¯\×÷ý\ãÿ\0\9c{\ç\1f¯ù\ã8ÿ\0\ï\vñO\a\Ó\Ï\é\9e\ eÿ\0\ 3M\î÷\91-\'.\Ôg\8e=ÿ\0\fõ¯e\86`\9a\â7\Ï/\83¸r\ÍL \8d\8f-­d\9am:G³\ãDx\ä\Þ\r·\'\Ä\rj\Â\Z:*mb\9e»_\×j RQ\ÔE\14\ZÊ\9aÈ¢\85\ 2\ 4@\ã\â0E\8a\ 60B\e\7fyökqòv\\÷g.s\9d\9f¬\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88µ\ 3\æ\çÉ\86»\âó£[\×3\ ePK\Ì;§\ß\Ç\\\ 3®=\8d).¹&\Þ\11\9f\ZyÀù\10ðú]V\eK°l/\14À\Í\15\\B¾´r§þ<CS{\É\\\95¾ó\16ý¶r\8f(mw\e\Ç \ïWs6-³k¿\95\99v·Vó\Éó<\99\ 4ö`\Ä67\f\8f\ e\14Q\82\rt\10Ư¯\8d\16\fXñ\Å\Ñ\×\îs\9cÿ\0|ÿ\0§·ü°¦\89\éjðt\Î\Ë\ï\15þ@ûQ¦}ü\ f\Ç7\"7\ 1\é×±2øü\9d\ÈT²\ÆW\îVUòÃ\80\17P\Õ$4\7fÁ\17.\96û;\àH\99\88µÃ®£·\9deh\0\b \f\14\820G\8e\ 1° \8e\0³\ 3\10B!µ£\10\84\83\e\Z\Ö1\8d\ÃZ\Ü7\18\Â\æDX{\Ý>øõ\7f\Ç\Ç\16F\æ^\Öò38\ãB\9bp:\186,¤»Ø§\ØZ\90.> \Ö\Ò\ë\Ðlm\ì\å}mùb%|93\1c̸Ì\8eð\ 2IC\1f\Înõ\89ø·\ã\È\í7\13Uóo`\8d\î6\12&½¢\Ùññpò\11\Ís\ÄNI\87A\1c\91\ÄÏ\81\18\123\8c½\82\88G1¸&,\Äõºu\ 5ò°\Éý,\ì\8ch_/lÈ\89·q\84\ÙXg¾?«\10\Íe^,»\Û\ß?\ f\Î\Æ=ñ\8c|ÿ\0~ø\Úw\ 1ú£¼:s|\Êj;>\Æ\Èá­\96\Ò+\8f&\1f/hÛ¶¥®U\95¹\Æ?\Z^û.\81º\83I\9c¼L\ÆKf\f9\Ï!\19ò\8b\1cò\99¿\8dKrÔ·\Ú8\9b6\91³P\í\Úôö±ð\îµ\ËX75\87\Ã\Â#á¬\99\0\Ç\aÙ\81\1cDx\\ü\14m#>ln]\8c\88\88\88\88\88\88\88\88\88\88\88¸\ÈA\84d1\88Á\bLy\nR?\f\18\Æ\Ìe\Ï!\1e\ì\á¬c\e\8c¹\ïvp\Ö7\19\Îs\8cc9U\ez\9aü\87\Ùw\8b\Èþÿ\0¥k\e#,ø\'«E\93\Ã|s\Zª\Ï3h.ö:¹%/!n\í\ 3¡E,k9·\å~ªX¦\91`\18ñõ6L\84øD¸±\89\88\ê\"\Ø÷\8a/\1fÛ\87\92¾\íñ\1f\19>\16©mhí\93\96\91_ :\8f\19\ë­üý\86|\87\8c\à,s[å\91µ\9a\É1ÿ\0$𬮣ٺ\14\98UópÛ¤ø\87\89´\ e\b\ã\r\13\86ø«[¯\Ô8\ç\8du\9a½CMÖª£\82%}=\15<vÆ\87\ e4h\Ã\fp±­n^\æ\0!\ e\b÷ýA\13>,Ç£¢\"ñ\1e}\ë_\0ö\9fD\91\Æ=\8d\áþ?\æ­\ 2L\80\Ì&§Èº\Ýv\ÉO\89\91\È3G\98\18ó\Â\\Æ\97\1c\ 4\98òc8G\ 4¨ñ¤\88\8c<`\10pHòù\é\14n\9fM·ö\a\Æ=\85͵mh\rwyÕ­ºÑ\96\96\83\0\ã\ró\9dÅ\9b\85\86b\9d\ 3£J\99\8d{j\97bs\16Í\91\á\\VV\Õü\v\ 3\9ak\8dr\â\×^\Øj¬¨¯è¬§S^Q\ÜÁ\95WqMqW(°l\ê­k\'\b\13k¬«¦\80ð\çA\98\0Ê\89(%\8f C(\Þ\Ì|Õ±Þ\83y]\ï\a\8dͲ\1d\ßZy\92ö£Qu\9c{\r\8b\88v9\126\ e+\Ú\Ø\12H)cYj²\8f\81Ö¾Y¤fD\Éú\é\é¬\'H\8f\ fù)3¢\ÆlWZ#\á·Î\87\\üµhÆ©«\fn&\ìÖ§S\1e\7f ðe½¤s\È(\9a\11b\Ça\ã\Ù\Å#$\íZ\9cinpó)\ÑÁg\16\9e\f2¾Th;\ÊDDDDDDDDDDE®¯,\9d¹¯\è\ç\8f^\Ïö:XbÊ°\Ôx\ÞÖ§U\812fk£Yî»\8e\e©\ê5\8f\9e\10\90\Éa{o\n$S\8a4Dzi£{D\92ß\90\9dI$¹r§Ê\93:t\99\13gM\90is&K1$Ê\97*I\1ci\12d\È3\9ec\È9\9eò\98\Å{\ÈR=\Ï{\9c\çg9þtV|ú?ü~?¯\1d-\Û;\8fºUÏ\81\Èý¾°\89\9dtS\ãÈ\89ø|\'¦É\90\Í8\91\86I2bL\8f³\Ûʸ\ÚAo\bpI*\14ø\15\11\Ìúh¦Ä¿\Ñ\11\11\14(}O¾\ 6\ê¹\ãD\Úü\85u7Mü~r\ã\Ê<Xso\1c\êu\99yykK«ø\à\Û-U$\ 6\áó·­^\e\88fÿ\0\e\18\17\Õ\0\Í;\ãZþ5\16(+eE\ï=e\ì¯0u\v\9c8û°¼\13´\ÉÔ¹\'\8d\ïa\Ý\ÓN\e\äf\ 5\80\9cd\99C}\124\98\84²\×\î@<õ\82\Ù1\8cð?\ï\85*\15\80\8d\8c>ÿ\0q¯\92\8e\9eqwg8ðø\8f/`ª\15G!j\æ\Î\19c§r5(\Ù\a\97\19\ 1[\1c7!\99\9aÉ\98\ 6 \ÙB\Ã%UÈ\9d\ 1Á\98m\82¢\"\"\"\"\"\"\"\"\"(\88ú\Êù\Êw\1ex\Ù\ã\Π\8aß²7a9\Û_¤²n>¼81x\à\f\äQJË\9cß³\"dú\88q^1»\18q&\ 4\8f\1ceµz¢õ\Î\0\â¹\\\ë\Ï\1c\'\Â0ffºo1ò\ç\eñ\\;\f1¥\Ì \\\85¹Sj1\æ`n\ËZL\Å-»\ f\86;8kòÏ\8es\8ce^\83À\9cC­p\a\bñ\1f\a\é\Õð*µ~$\ã\9d;\8f(\àU\83\11«£W\êt0iB\ØQðÁ´\11\ßøy \ÂÁ\8d£kðÖ\8cm\Æ\18\ß[DDD\\\12¢Æ\9d\ZD)±Á.\1c°\Z,¸\92\829\11¥F\907\bñ\ä\0­x\8c\ 3     \ï\11\82V8e\e\9cÇ·-\Îq\9a\81½G\9e9\a\ã\ÏȦ\ë\1fNªm\7f\bö4\16\1c\Ý\Ä\ì\0\Þ\È5\ f¸¸\92\r\çO\ 1\ f,¦;\è67b\Ó\Ü0\ëj`AÙ«©*cf5S\9c´\ e\8ac\9e\8e\ eê³\88;«È\9d@\Ú.L\1dg³ú\91n4h\13\'eµ\91¹3\8f+\ç[\Î\15]\7f\Ë\ä[Ý£S\8e\æ\É(FLf¯QÁ%}a\86\ e\Í\ÄDDDDDDDDDE\ 4¿[þ\Ä\Üq\ fCu,1ø~y#\97v,\93å\9c\8c\8df±¬\Ö5\99o\ÇÙ¯\ e^÷a\Ù~rö\9d\Ø\Ã[ð\Î_]\Ú)\13úZ8\ 3R\ç\ß0\\,\ÍÀY\93\v\87t\Ý÷\9cª¢<#\91\12^ä\82®¾\98S\ã\e\19\19\â²N\Çù-k¿Ê\96\b²>$úr\"[¢\88\88\88\88¢C\ë\12\ê\í\8f2x\ä\Óy·Y¤\87*û­|\ÃOµ\ì6!­\ 4\8b¢q\î\ËOq©\ÝW2n\1e)`«\81ioU³\Ì\Î\7f&(EK#\Þ;\v\aW*-\8fø\82\æ\É]xòq\ÒnU\85\1c\92¤\ÕsÎ¥¬\8cBú¾M\Ç%:O\19\12C°l\àn\fAn\ f\95!\8eùe\à      \18\11\Îk\1dv\Ê\"\"\"\"\"\"\"\"\"\"\83/­÷^    :ÿ\0\Ñ=­±±ù\11y\8b\955\ã\Ëþ¬\çé\9f¥RYE\8d\9f\ÞF\Üeõ³\v\8fl5\ïö\Ï\Ë.ÀÛ\86WB\8aZ~\8dmnlÿ\0*[\9e\ÐÆ\8f5º\ïV9*¶S²\ìý­\9f±m\Z\13\ëð\Æ|rÜ\8dÑ©->\×ü\Ú湡kXü\11\1d¤¨\88\88\88\8bR^xj\âZø{ò\12)a\11q\13­Û½¤w\11\8cs\81.°Q\æ\0Á\Ëñ\9f¬¸È\9c?\9b2\×\å\84 ñ\9fb;\19¥\Ñ\16eø\ë\Ò6nD\ï§N5=B´Ö·³;)\Ãv\"\88\a\ 5¤mv»½\Òl·³¿Û\90Lp\ê\èj,­\f6¹\Æ(a¼Q\84i\ f\10Iyj\"\"\"\"\"\"\"\"\"\"\8aG¬+\84 r\'\8a±ò´\91d³:ý\Í<}²Ö¹\84;\1d\1c»\í\Ü\1e4\93 \8c\17°\Ï\e\10ö3\Ç ¤\å\Ãl\891NÁ\äÁ\19\ 5Uò)rz46\81\×ù>\ä=I\â\Î_²õ\8f\11ÿ\0£\â7k\e.¤\'\a9\Î~xq\87°<\8d\Ã[\96\11\Ýó\Ës\86\14DDDDZBõ\18òö¯\Ä^\1d{¢ý\96ÀPI\È\Üq\9e)\×\Ú÷»%\95°oVpjk£\ 4\fa\nl\1c¯ür9­h£4ø\91 £\bÝ\9cÓ\88\8a\94^«\í\\ùå\8b\8d9^\f\ 3¿Jꦿ²ò®\Ûk\87\Æ\Ì8\Ö׺õÞ\91§U\Ì\13°Y\99}\9c»\9b[\b\'\8e\ 6\80S(D9s#fDaK¶i\11\11\11\11\11\11\11\11\11\11\7fº\ÍI\Ü^\98vG­WÌ\93ø¼±\Å;V¹\bð#\82M¤;¬×\92m\14º\86\11\Æ+@\ÛE\89\88G\È\ fô\95\Øvc\Ég\Ê9h\é\Ûu]\87EÚ¶m#m«\91Gµi»\ 5Ϋ³R\Ëȳ*\9fa׬d\Ô]U\É\È\b`fE}\9491\r\90\98¢\É\ 2ì\8c\8fg³³×\94\90=)¼Õ¬ð×\98~$\8f³\ÊdAò÷\eòo\ e\10¿6\ 5\×\Û\f\Z½\8e\ 3\r#\ 3xb³\ëÔ¤\93\ 5\94\84¤\18\á´Í\91(\r}·\b\88\88\88\8a\ 2þµ^\è\ë\ 5 \ëwBµ\Ùò\89¸\Ç\Ø\19Ø\8eG\Ä\v,\8e4=\7f\15;\1e£¦k×µ\ÌÈ\88\7f\ågM\9b²@ûq*\13\ÉJ\13ûG\9b\0\ e}}è­\93ô¿ø¼\99\Ð^\8f\a\95¹OZm?c;WüW n,\92\Ö\æ\ËY\ã¯\Åd\8e6\Ñ\ÊLÁ¯\94,ì\96ûûjé­\9d\8aý\9e\îó\15vr\ê\8f\1c¤\93*\"\"\"\"\"\"\"\"\"\"*¡½U\9e=gõ\ f\Èe\Ç:\ê\953\eÃ\9d¹\88þD­\9a(¸\ÅN¿\ÉQ3\9aý\ÓTc\âClX\f\96(°v\ZÀ\ØÏ\91oq&N\Ë9\83\1c\18lh\ã\0½Û«\Ü\È~»öG\819\à\19¶\Î8{\98x\ç\92%Ç¢>#\Ú\ØU\éûmM\å\ÅDGºT!9\×5P¦T\924\99@\870\13K\12i1\10\æW¡qG#\ë\Ü\Ã\Æ\1cy\Êú\94¨ó5\8eIÒµ\8d\86DYB\9a\17\Õm4\Ð\îa7\12\83\8c\f\10f4EsZ\Ïb\8d\ís\18æ¹\98ô\ 4DDE\85\Ýü\ï_\ 6ø\ì\ë>ÿ\0\Ù~w½\Å}\ 6§Zfkº\ì&\8eVǽmò°\Ø\Úþ¥­Ö¾D\\Ë\9difx\91\Îw\9e<:\è\Å|\ÉÒ£\85\98\81\î\Ïmù#½\1d¢\æ\1e\Ór¦Y\1f\9d²mö(\ãL\936³U¥Ë¾\9a=Z \92\Z,b\ 5-pÁ\1f/\8f\12¾<ɹ\99d\Ê\èO\9a@3\15\94Á}2þ    ö^\Úr¾\9fÞ\9e\Ë\ë3j:\Í\Ä\Û\1c\1d\83\8d5KºòGÿ\0¶\ÝÚ©\ì\99W`FI\13J\í\17^\93\88öC4\'\ 4÷\16\83\81)\93c\Ô\Å\14}\9a\Î\Øñ\ãÄ\8e\b±@\18\Ñ#\ 4Q\ãF\8e&\ 6<x\ácD\10\0\"kF \88mh\Ä!µ¬c\Z\Ö1¸n1\85Ì\88\88\88\88\88\88\88\88\88\88\8bRþi<ok>N:=\È\\ j\ê÷r\8e¼#o<\1d±\Ë\a\Ú}g\91\ê\â\14p\8d\1c\98\Î\n\18ö\Ñ^Z\9bfEö\95>ªDª±\91\8c\9c_\95\8d\Ç;\Ï\11o\9b_\18òf±m¥\ï\Ú5\ä\ísk\Õ\î\ãþ=\9d5\Íqr\191Nƹ\â+3\9c4\ÑfE)\áO\88PN\81&L9\09:J´C\Ò7\äj§±\Ý\'?Mwm\8a|\Þf\êC\Ç[N;l\88l´\á+³\È\Ç\1f\ 2\8f\"\8d\Z)\83¨\ e\r\86°h\91\É*\Ä1k#X\Û\fX\9d\Zu\94º\11\11\11q\18Â\8e\"È\90Q\80\0\e\Ìs\99\10B\117/!JG\å¬\18\Æƹ\ï{Ý\86±¸Ë\9d\9cc\19ʨ»Ô\83\å7lò\17\1dÃ\8f\89Ѻ\Ý\Ö\r\9bb\ãn1\Ö\ØóÃ\87y³\Ó\Ì-N\ë¿]\×|F\197\a¸\8faEM$\ä´l*h²$R\Ï\f\r\86L\\Guo\×\Ó\Û\â^\Ç\Ê\aq\ë3¿SN\ÇW8(\95\Û\Ï5Z\92>\a\125\84/\áxª\f\19\ÈIc²<ß\99p(ñ-s\17_\8aPXÆ\84+¸V\ 3·\8fT\Õ5­\17[¤Ó´\êJ\ÝoW\Ö\ë£TQQTF\1c:\êº\ècÀ\ãÅ\8b\1cX\ÃX\Æ7\1e\îv}\ÈR9\æ+\ÞR=\î\ì\b\88\88\88\88\88\88\88\88\88\88\88¡+\ê\9aðo\9ez\Ôo<\8augO\9de\Î\ZMlVs\97\1d\êµÏ\95c\Ê\ZdB¿$Ü«\ë\84F\â~Û©E!¤Hl1>öþ¤y¦\8d\1eþhõºú\9a\ÜVux\Ý\ïo&ø\á\í÷\15ö\9f\8cM\92\9bR²þ\1fz\×r/¸;§\18\ßH\8a\r\ßT ÿ\02¿\1f\93:´-\99LRM\fX\Û\ruD«\ 1Ì®\f¸\12®\8e\ê\×f8\9f¸\\\a\Æ}\8e\á-\86>\Ë\Ç\\£¬\×l\94r\Ä\ì¶\\?Í\8e2Ȩ¸\84V\ 6mU\Íi_\98ö\15vQaYD&0\Ùp£\11\ßV2\ 1\11\11k\ã\Ê\ç=Xu\9f\1fsy\9e\8eÀU»V¡×®P>\99 ¸Ï³¶ù:\8d¬j\ 1·8k¾\ f\Ì\â0\8d\7f»\1c߯9\13ðo¯Þ\91y³fYL\97cc.Lû        òO6t\é§,©\93fJ+\Ï*\\¹G{\Ï\"L\83½\æ9\Ì÷\94\Å{\ÈG¹\î\Îsü\Ê\à_MwN(ú\87â\9f\81LÊ·A\ß;\vV\ eÀr<\99µ\84ª¼u\Æñ\ 6)j)/\"\98a6%j\94\ 1\83B/\È\13%2<V\nG³\Çõ\8f~h\88\88\88\88\88\88\88\88\88\88\88\8b\84Á\f \9a4\90\8aDi\ 2 N\ 3\r\85     \82Vde    \84L9\84\19\18\ç0\83{rdz9k±\9cg8UWú±º\rÁ\Ý5\ï.\8fÈ\9c\Z\n}j¯µ\Z¾\Ù\È{\87\1dSe\8d\8d¬\ï\147\151\ï/\Û\10n\Ã+\99»\97`m\8ea\88\ 2\19¦@\9bnbJ±µ°\92H®©­ú1;M\Ïq;}\Ë]Bf\Ç>Ó®\97\9c\'·òü­jx¤Ì\87ªò&½³i4õÓ¨fd\99\ 5C6:ý\86\ß6µ\8e\e\Ûa&´S\à~\19[x\ëK\'Q\11\16\84ýL4×\97\9e\eûX\n\a\1c\98Uºõ\Ì÷\Çó\9cQ\ÒÛ\8e\Êõ\85ø\ç\1e\Ñ\ÍU\ZTsg>\í\Ã\v\9c»\19§\Íz\a\13\ÑWm\1c§Æ\9a\Õ\ÄRN©Ø¹\ 3M¢´\84\"\90%\99]o±\Ö\×Í\8a3\ 5\ã0\89\"4\82\89\84\11\ 6Q¹øx\Þ\×c\ e\Åð\9cqU]G\Ç\Ú==D \×VV\ê:\ì(0@&\0QcG©\881\ 5¢f0\Öe\8d\Çõc\18ý¿\å\97g\å\9c\ç=\Ñ\11\11\11\11\11\11\11\11\11\11\164vO¸\Ý_\ê\ e\95k¿öG\9c8\ï\89\81\8d\Ç.ײ\ÖÀ±9d7ÿ\0\ 5\12\ 5;\8f\9b9\92\ì\n\áF\82 Ev$J\91\18\r~\1f Xt`{3\ë6\è7\19J=g[ø\87\97;6rV\È4-\80¬\'\ e\êÀ³k2\Øñ,\99»Q\17hú^|\à\8f,\rvK]\15¹\ÎH\19\ eÀ[ªwú®üºw\ fgf¥Ð¾\8dj1®\85aU\12Ö»_\Ó÷\î\Ç\1e W\854\Zr[\Ø\Ö\Ö\éuz¬yrÀr>÷fÀ\éX\18\93\ÊOÅ\8d\14ç\8d¹N\ 4\ f«\97\99ß®J\å]\9f£ýf\Ô6\90gù¹[.\8dIµoúTY1\8f\86\95\9an£qe\1eU\9cy8\b\8d\18»\84l\80O$\ÈÆ\94P\864\9f<±ô\99\7f\Þc\96góÿ\0\92?\"|\Ó\Ú\Î^¸ú\ 3saA¦\Ññ\í\ 4úÈ\8d\94\Êú8ð\9des+]¥­Ì\97\Ê\rf¤}~\ 1l\äN±\ÄHÄ\9f8r²\1e\ f¤3Ä\9c\14\íc\95¬$\ f8\Éeç\94·¨®\91\8c\7f|<!\Ù2!ûþýò,3ûþ±\8fe·~\83ø\9bè\97\8d\b[`º\8d\Ã#\Ñî·£G~ݹ_lû6óº^F\86\11\8a\rYö-®\Ò\Î\\JX.i\äç­\Ä*\èó,-%\ e>\re1\æ\Øò\"\"\Ã_\"\1c\17#³]\13\í\Ï\0B~Ga\Ë=|\å-6¬­n\1eð\Û\ÚjvM¨0Y\96\13\ f\90\e&E$f¹\99c\8e\Ñ\áþ\Í\Î]\8a:¶\Z\v\9dRþóV\Ø\ë¤\Ó\ì\Z\ÕÅ\95\ 5õL\Æ`s*\îiæ\9aºÒºS1\97a\92aM\8cx\Çf\1c\ì4¢~1\9c\1e\ë³ñ6\É\aM\å>4\Û\ìß\91Vê¼\81¦\ì\96\ 5h\Èg\ e\r\1e\Ç[g-ø\bXR\97,\ 4R;\ 3\10\88G\ç\1f\161\î\Î\e\9b\âxú\Ú%þ\85¤^À0\ä@º\Ô5«hR\ 4\ì8G\89cM\nds\rø\Îp\á\94&c\Ø\ìg8s]\8cû\ç\19\11\11\11\11\11\11\11\11\11\17\9fò\97*ñ·\b\è[/(ò\îñ­q\Ï\1d\éµr®¶\9d\Ënµ\8bK¯\ÑUB     $Ë\9dca-\ã\b\8e\"\9c¯\Îs\96\ 4D&qðcó\88    ùjõx\í¶\16\ 5\89\Z\8aª\1cû­j\7fg¶*\áN\9ba\1cqY\18w\\GLi\ e\ 3\n;\17\98\Õû&\Å\ 5õ\Ø\Å~\7f\1e\8fg©µ\8bh\18u\ëô\1d\ÌòW\ØØ´u\r\å\8e\Öv?\91dH\Ìv\Ø\ÛKÙ¶\19\11\9d<\Ò\Þ\Ç\Ù\ÞM\rF©ª@°¶p\â\ 4ó)5JRØ\82\ 4&BĨ\Ñ\ß:/\19^\8e®1\ÒE­r¿\91\Ý\åü\9f´ý\15öÁ\ë÷\1fÈ\93Q¡\Ñ\Ø5\á\95ø[\9e\Ó\î\Ûm\Å\Ñ$\ÆcI\ 6\18ª¨l L\95_oY#-S;\á^½pO[ôú\í\ 3\80ø\87\8e¸{Lª\8fø\90u\î<Ô©ujñGû\1co\81\19U\123\ä\ç%v_\92Jy\Ê\ç{e\Ï϶3\8fcDDDDETOª;ŵ\97Gû±m\Ø\Þ<\Ö%D\ëomï­¶ú\9b\0eƬ\Öy\9afOu\ÈZ\83\9c\Ðg\10GpC\13\1c\Ùó\'Ø\90\Û1Z8\Ð+\â\8f1}V\êúd{\ÛEÜ\9f\19\1c[©I°°\93\1d]\8d\13\82ù\17\17SO>\Öкü\b\Òõý\94\93\13ó-¿\99 \9f[*\\æ°¡\8f$\í¯<\éVQ\çe\92#DDDDDDDDD^3\Ø\1eÀq\'W8\83y\ç^qܪô^4\ã\Ú9\×\Û\15õ¡\98\Ì6<\18¥\93\88Uñ\Üö\96\Æ\Ún\0ñ@¯\8d\îy%þ\Ø`\ØR²¥¯6\9esù\Ï\Ê\Ç*\ÜkTv7|q\Ô\1dR\à\81\ã~ \8d5\àÿ\0\12\86¶k\ß_»r\'\Ð\Ð\æ\Úú\Ç\"\8df*\8995m!\Ã\v\13\æW\Ã<lSñeâ\83²>Vù\Ð\\S\Âñ\19¬i4N\ 4¾R\æ\8bú\Ést\Þ9¦&q\9f¶@£\96#®\ïd³?ùn»\16tS\Ì{\87\83K\86\Ã\Çym\94ñ»â¿©þ08z³\8c:ý¦C\91²>,\7fñ\Ï0\ì5\Õ\ç\ä¾F¶\13O\82\Ûl7B\ f\Î;L\é2~ª\8a\ÇF¨\80\ 22\ 5|HÕ± Ã\8b²4DDDDDX·Ü®\9fp\8fzú÷\È\1dm\ç\íZ\1eÍ¡\ïµ%\86\18-u\8e¿n,¶E>\ËE+\ e\1c\88\174vA\8be\ 2\\CÆ\92\191DPH\8eq\86\1dò\Û\á\ï±þ\'y\97:§$À\91¸ð¾\Ûa%¼I\Î4ðd\ãY\Ù\ã\ã\12d\87]¼6@ÀQ\îñ G,£T\99\15´8\Ò\ìi\ÜLÀ¼¯£\ë^\"|¤ò¿\8a.\Ô\Õs\9e\8e       \9b7\1e\ì\Ñ#j<\Ý\ÆC\9cH\Ñw½\173\99+\ç\1cO8«Ý´kGɬu\89V\18À\ÆSXW6e[m\8di\12\à>\9c÷/\80;\ÛÁ\9a\97`z\ç½U\î\Ú>\Ó\ 29\ÊØ\87\Æ-µ\Ë7\8f?\99¯\ìu\85h§T\\WIa\áË\85>4Y!\95\16Ls\842£J\8c\f¨DDDDDDDD\\2$\ 2(\r*Q\85\Z4a\12D\89\12\b0\80\0\b\ÜC\18\Æ#\9a1\bCk\9eB=\Íc\18\×9\Î\Ãq\9cª¥}K\9ee.»û\Ù;\9e·p\Î\Íi\eª=|\Ø\ìµ\ÜF\8cCD\87\Ê\\\95I/5÷\ÛE\80òÀ¾u\r\15\9c)\10u¡9¹\812HMv\Ò\ÜE\ 6¯g\eM\Þ8<wsÇ\93N\Ì\ê}p\à\è,\86ù\ä\15§ r\15\9cSH\Ö8\ÃG\ 1\9bü¶\Ót\Ñ\12;§\ÌhZPkú\à%Å\97°Zýq\9d2®¨\16÷\957\1eô_£|\a\ã߯:_]zû«C£\Öõ\9a\ØL½¿tH\ãØ·Í\90q\Ú\ËM»j\9a,d\93m­e\æD·5\å ¢fA\ 6\1c¹\Ï1\8d\98\88\88\88\88\88\88\88¼¿\97øW\89{\ 1¡\ßq\875ñÞ¥\Éü\7f³À\95U}©\îT\Ñ.ª,k\æ\8f\99\18\80\9478m\90/q\15Àx\88ñg#\Ëþ\ e\146û\ç\è\Ì\à^M·º\Þú\'\Í3úûa%§\9c\Þ!\ä\n\Ë\1dÿ\0\8f\äJdiFt*-\8c\97Qv}iövE\13F\édº¦¨\84\11B\8bR69Ò\85©\8e¹økõ*ø\8f\ß[\Ì=E\×õ\8d¼\ï1£\ß\è|k\ËZ®\ï¢\î±\n\È\ì$\8d£\8ewi\ÚT;\'\ 5±¢¶- \81\ai\0\ZXUò±\ 6M\9cCÉ¿©\1e\92\b\ÔZ§\90\13ü¹\Ä\18¥«¯\83ºs\'\12\ e\ïMmw\n0£]\Ú\ 3\8ba\16\Ïd\×\Ý2v\1f6%%}\Î\Û\1c\ 3\É\á\Z\â\'\Ò\13\17%yc\Ôe\ã7\81\æG\89Í·ý\93\âQL\91\98P\í7\î ö7]¥\9d;\ 1t\8c¬¶\9bÇ­\85o! a\n\æ\Õ\16k\ZÁ\e\äüdD\Ã}?¬þ}|Iö\Êõ\9a¿\14w\1f\8f\à\ìòl\eWY®ò\94-\8f\86®n\æf.f\95´p¹B\9fU%°c\ÅnK\"\\?¶#\Z\Ã\ã\as¡\Í\Äm°\êÛ®\9b¼Au\9e\93¶\ë;\85c\1c\Ö>\ÃV¾ª\Ø ±\ï\Ær\Æ:]L¹q\Ú\ça®\Ë[\92c.\Ã]\9cc>\Ù]\9d\11\11\11\11\11\11FS\Õ\1d\ä¿=\19\èm\87\ fñ\î\Âú®\7f\í«-¸\ßP%M\Îj¶mGBüG\7f\8f¹\n¹ð\ì+¯!º¶\19\ 3GS}JR\1e\9fiº¡t\81´2>\Æ\Õ\aQQk\7fkYCCYawywa\n¢\9a\9a¢\14\9b+[{[)\"\87]YY]\fF\99>\Â|\Ã\ 6,(QBY2¤\94@\0\9eWµ¹¸\ f\Ó\ï\â\8b\85\Ò\Ív>\Ó[S/³\\\ç\ 6»{ç\9dª$_rG<\97Ì\99©\è5sd\96L\Ö\Òi\Ô3\áÀ\90Áº¶%­\ë,/MEW>d\807|\88\88\88\88\88\88\88\88\88\8b\Ì9k\84ø{\9eµ)ú\176ñv\83\ËZU¤y\11,5nD\Ô\èöú)Q¥µ\8c\96\ 2\Ö\ÞÂ\9b\e\"\961\fR\99\81\á²\ 4\b\ØxýÛ\98²y\1fô\8ct£²±owþ\9aÏ\91\1ec\94G\ÌfµN\ 6\\p\rÓ±ü[?\rüyõÆ\97¨\95°k\äÄ®&\99}ER\Ë\vS\\]T\Ü\18Oa¡)»\87˯§Ë°v\1cg\1f\91ù3®w·\98\91k\10\ÚF\É:ó\82¹\96®,ºqX]\Ô@´\89\8dKlp\9dYO\ 2\ÂTú\b\e\8dEik\98fVW\\V\96t\Îü-z¨¸Û¸7ú¯Z»\Í_¬ð\7f?]\Z\ 6½£rMQe\87\8b¹Z\ì\á\b¢V\Ê\Ä\âÉ\91¥m\97\16\ e,\nÚ\99²¦\×O>jÁ\12\êu\9d\99\ãA\98°\8a)\ 2\11ÀQ\98\ 6\e\f\13\ 5\í \8a\"7\ f\19\ 6Fe\Ì \È\Ça\Ì{s\96¹¹Ã\9b\9c\ã8\Ê\äDDDDDU\14ú ;\87s\Ú\Ï+\9c»®6c\89¡u\92¶¯\81t8Ñ­¤Î¨\93\8a\9c\97eÚ¶(\Õ\æc\ 3Qcm°l\'«µ\b2gJƹ\ 2A\8a<\å\90adÿ\0¤¯\Ç`»SÞ\99\9d \ä\ZY2x\97¨°\19²Ò¸ñ\9aú\9d\8f\9a-2\bº\Å1]&,¸3\85­\ÔL\9b±\ÚV\99\83.\1cj9\"8\9f\86|\í7DDDDDDDDDDE\87=\ä\è\9f\\¼\86pFÁÀ\1d\93\Ñ\ëö\Í^É\87\97¯\Üd\ 3fË¢ì\8e\8cX\Ñ6\9dFݸlÊ\9bh­&Z÷E8\9b,\1e\á6}ð\12\86\9f\ß+^2y\9f\Åwjv.\0\äø\96\16Ú\85\98\8d´p¿(~        \ 3E\É\Ü|i.\f{(\13X&\Â}\å\11ó\8a\8d¶¤Y\fº»&\ 6D\88\10¡Z\Õý\ÓHô­yÀعö¾\1f\8e\Î\Ön\ä¼\åmB\8aLοò\ e\Í//º\ä\1d\1fl\Í/`»\9b#\18·\Ûõ¸\ïkkd\1dÏ»\Ú*þ\83\98v\97\106+\99S\80DDDDE\ç<Á²\eN\â^RÛ£\1dѤj¼u»ì\80\92\Çe\8e\8ej=f\Î\ÐFkñ\9ce\8e\13\ã4\8dv3\8c·-÷\Æq\ì¨}\ä-\ëa\å\rÿ\0x佺H\æm\9c\87¸l\Û\Ö\Ï0Cp\85/a\Ûn¦\ß\ÝI\18\9cò¸c=\95\84\92°n!\1cÆ¿\r\Ëß\9c|³m\9f¦;¦\9a\ÇRüTp¶\ÉZI²6\î\ÔE\87\Ù\rüó\7f O\1d¦\ßO_\ 2\86¨p\ä\10\98\84\ÊMV®\9e³#\8fôG\92H\ï±$P\ØL\9cCHU\11\11\11\11\11\11\11\11\11\11\11i;\ÏG\8c\Ýo\É_C¹\eM®ª¬\1f:ñ]e\97\'pf\Îh\ãdð\íz\Ýd\édÔ\8d\9cѨ¶ø\ßmU®G\12\Â@\84g\12º.\'=\84U\nqW%òoYy·I\å=,öz_+p¯ Vl\95C°\r\95\\ê\8d§P¸adR\ß\×0Õ¶L\8eY\11$Rl\Ôr\v\15ò\ë\ÍcO9­\19\Î5w7CûAK\Üþ\9eõß³Ô­\1cvs\17\15j\e\8d­f\ f\f²(ö\v:x¦¾¦\9e8%4xs Yº@\Ï      \85#c\ã,h\Êadg.[\"\"\"\"-nù\82\ä9üO\âû½\1c\89V\ïk-S®|\83e_\8fµÁû&ÿ\0\eø\ÑC\935¯p\Ús\9d\81sð\Ç\ç\18&sñwþ\9c\Ò÷Áº(9C\9aø\7f\8d%2C\ãr\')qþ\8b!\91\1f\91\Êx6ݲ¢\80Í\8cL1ùd\8c\8eÁ\Ø\vð\Çe\84\Ë]ñw·¶oyд\Ê>:\Òu=\vZ\87\16\ 5\ 6\9d®\Ôku1\"F\14@\n\15D\10B\ e[\1c?\ì\Æ\â´?q}²ì¼¤{\Þ÷½\Î{»j\"\"\"\"\"\"\"\"\"\"\"*t=Eý<¦é\87\95\î\Ã\éºÁ\ÆýO\97d\Ã\ìn¹\r\99\92GT\83\97\ç\\[]Ö\98ò^ì\98\8cÛ¡lr\9a\Ø\â\8b\ 6\10%\86²\ 4\82\17\92k^\8d\Þd\Æý\â\çm\âü\Ç8\ßÁ\1d\8a\Þõ\ï¸ùn[$[\Ô\Z~Ec¢|Jüb\18\89~a|H0\9bó\9b9\Ùk\Â\à\11\Ò\ÕDDDDZ©ó\87¥\Ë\ß|Jw\ç]­\8ai¶\ä\ë\9e÷>\9e,|û\18öU°q4\11Ç\8c¹\83ve4$\8b\9c\e?[p|¿9c\98\Ò2«ÿ\0\ 6\1cw\ 3\95¼¶tcG²\87\16t[.bÅ\97\Ñ0_lf\É\Õõ=\9bk\83(\8dø\138\Ì\19Ô\91§\f­c\9e\ 2\Ça\87\8f\98Ú®\96DDDDDDDDDDDDUÀú\Ûø\ÓZ \ì\çJùJ¾¬\0\Ú9#\88yC^\Ùn0!6M\94\1e:Ù´\çk°Jv±¥$j¦\îV¥\8e\12¸\8d\ 1­&\10yn$¹¸\Ù\'¢A¥\ÇJû\8a÷78\ 3»EJÑ¿\Ûôâ·\89õl\99¸Ï·\ï,cÁ\9c\ã\ß>\ß<~±\ïû\9a\Ò\"\"\"\"\Æ\Þ\ãj Ýº\9d\1dZO\Ç!¶\á.J\13\9añ\à­&A©Z\Ë\18\9c<\å¸\Î\fH\í\16]ûø|þ\7f\aü~\ e©·\ÓM\0\Ö\1enú\'\81\0\86dM¯\95\ç\És\ 6\â28bð\a+½§3±\8c\àCü\8c\80-!2\Öý\å\bñ\9c\90\8ck®$DDDDDDDDDDDDPMõÀ\ë5\î\á\î\84\î?O½¨y+\995\9f¿8n~\15òu}F\Ó\éc¾\1f\92b|É\8c\93\âÿ\0¨Y\Ã1\91\å\Ù\Í\1fF®·\ 6§\Æ\ eùw\Z\10c\ËÚ»#»Î±\9214d°5m.½H\ 3\È#[\87\18\81\89\0\11\18÷\å\Îhc\88Xv\18Ƶ²\áDDDD^[\ÎQq;\859\86\v²\æ¶g\16ò\fW9¾ÿ\0,bF¥n\1c\å¾ß¿\960ÿ\0|{c\ß\ß\Û\Ûöª¥ô\9eid\Ûü\Ëp\ì±dmv\91\Æ<ú9\äù\7fH\âk\f¤.\19\96µ\ÙÁ\n;÷\ 1\9f¬5\Ù/Á\Îk\1c\çb\Ú\ÄDDDDDDDDDDDE  \8f[\9dn\v\ÓÞ\97\Ü}~ù\83\Ù]ª·\îöÿ\0/ù^/¶\95õü¿¾>\ß\áp\ïoõú}ÿ\0\Ý\Â\Ï\ fH\95~!øiФ`\7f\f\Ûs\Ï<Xe\ßû\Ù\1e\ e¯\ìþ\ØþØ­À¿\×ü¯\ïþ\98\93º\"\"\"\"\ê\Û\Ì\11Y\é[\85iÿ\0ȱն\b&ÿ\0ò\97S.9?þ     \95\\G¥+\82\ë5\8f4\9d\Ç-?\Ø\n~\ 4Ò¹Ã\8e*!·ú\82\Êû>Y\ 6¿\ 1\Ïq2\ãý\91a\é\í\0½ß\9fv\È7\Ûò~\19\9cY@\88\88\88\88\88\88\88\88\88\88\88\88¢¯\ë\ 3Ñ\83±x\9d\9b·\9a\e$;\8f\8c§E\92\ f/\81\'c\Ø!\ë\9fhð\ìý\8d\É\âÌ\97\19\es\ì\Ò\äosp\\a\Ù3\éu\Ñgh\1e\18z\Å\ 2Àoa¶\e\1e\82\ç³\á\93A\Ý÷«\8d\96¼\98\Çû\Ìl+\0\ 5\8fÿ\0}\82nT\83\11\11\11\17ø \Æa\90E\e\n\"±\Ã(\88Ö¼d\eÛ\96¼dc±\96½\8fnr\×5\Ø\Ë\\\Ü\ç\19\Æq\9c\áA7\Ó\17A\1e·Ì\9f\9clG\Æ\ 6*\ eG\ä\8a\b\Âo¶\Z\Ø\æ\í?#üq\8cc\ßô\ÆÒ\89­ö϶1\9cÿ\0\7f|)Ú¢\"\"\"\"\"\"\"\"\"\"\"(\àú°\ 1\83xJ\ìi2\Ügñ¹\ 3®\ç\Æs\8f\Ûr\îp\Ò#|±ÿ\0\fûH\Ë}ÿ\0\à\ì\ãýVsx7«\rW\88o\1d\10\86,\Ê\ê\Ï\16Z\e#c\e\93\ZÒ\84\13²R\ç\r\ÆHL°\Ãg\Í\Þ\îø1\8cò\Ö7\Ûk\b\88\88\88\88¡\Ñ\à[C¦\Ðü\ãú\84i©\0xð+ù\86\9aXG$\8f1²]Ë\969kl²3\88Owe²,e\Z@\ÚÏ\80\ 6\"±\80\18ÀÁ\r\93\17DDDDDDDDDDDDQ\âõO\Ñ\Ø\ßøL\í<jÀfA\à_ðe\áÇ\875¾\Õ\Ô\\Ù¢\ÚÚ\9f9{\9a\ßhµ±eJ\Ë}ò\çý\1f\ 1µ\Äs\e\9c\ãð±\18\91<Ix\ã\11\1dòsºwÁ\12q\9fø\ ef\85O0Mÿ\0 Gc?\é[:DDDDE¡\Ï\Z\Ýn\'\14ù(ò\ëÌ\92ª[\1eG=se%¤;?\ÆÀ\9f\"\8f]§«\87\16\v\8f\86\ã\ï\10®e\ì6C\Æ]\9c0Ö²²\Ö\ã\ä\ç?|h\88\88\88\88\88\88\88\88\88\88\88\8bWþf8>ϱ\9e6;I\Ãõ\ 5dk\r\Ã@\97_\16a\ 2\ÙC\81(\8fh\àO|W\Z;¥6%\89!\9dÀ\11\86G\á\99ø\948\ÆL<\98\è\æ\8aþ1\é\ÇXxù\ád|iü\1d\Æ\Ô\"\bþ¿¬q`jõÂ\89\86\àyø1¹\89\80»\ 3ǶE\8cýnk^\×7\19P\88\88\88\88\8b\áT\ë44s®¬ªk#Á\9d±Llû¹!û>\Ë\19\8cÁ0Ó\9f\æ÷7\ä\Ü\14\9e\ß^\18\ß\ëwôû¯º\88\88\88\88\88\88\88\88\88\88\88\88º¾\ç¨\Óo\9a½Î¡°\8c¦¦½\8b\88v\ 2\ 3\Ú2¼80\8f\8c1\ï\19Z\Üý\81f}ò7c\Û\19ý\7f®>\95\r4\1dr\8e\9b^¬k\Ù[CS]M^\Â;\ f# \Õ\Ã\f\18\8d{\Ú\Ö5\ÏÀ\0<9\Økp\çc9\Ãq\8f\Ö>²\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"ÿ\Ù',4,0,'','','',''),(56,2,15,'9305bf01a87c0b81','43713557095bf01a87be90d132625601','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','15820583805bf00e7fd7909940374120-4.jpg?ts=1542459007','image/jpeg',80,80,2356,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v     \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0*\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b \n\11\12\13\14\16!#\15\"\18BCÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91ù\ãõ1VüwZfº\9b\bJ®\Ø\í¨!¶\9d\85m³e\ÙMg Ü\91\13\ 4\a\14|\\qb½tÙ\99\11ö$\15[Q\àÁ\Õ\Û|\'¬\8fJ\18¢+\18\Å_\8aÎ\9fy®ód\à]±î§\91~\Ü\èN\9e\ÊM>et-e°¦µM§s¨2T9¸\Õ4ZO\ë4\Z] W\9a~?;\ 6J³&\Ñ&\ eðu\êôç´\84´f÷}v\ë\Õ+¬\9a\Ö3V\Ð\ì;j\Ó\v\1c\ç\ä*stn]\9d¼.\87\98±\Ç\19\â       ¶\í;E¦\\V\1eÀ\Èu0°\ÏEW\ 3}o¹\e\f\16H{\v÷^8\ã\8e9\13{\á\Ù\ 4õ\ 3¦\1d¢\ìòE\1có´v\8eØ»\ e\n4\Ì+\"J\Ú`kg¿R\88+\b\ÊUøò\Öl\Äƽ\9c)\1eÍ\94¬üÑ\8c|±Po\8bÞ©\Û<°yCÓº\7fhX\',\98\Ý;Jõ»\13t0\×U?-M\85̦\É\ÛR\84JcûX\9e·\8e\19ðqòXJ¿\1e\Ãc\8f#-ýh\Êqt\15F£X U+TjL\ 4MV\9dN\81\89«\Õ+0A1\e        ^®À\80\Ä\\4,Lx\Èlp£c#\Å\1c0\85a\bi\81\Ùm´\'      N1\È9\äo\Æö\87òa¢¤t\Æ\è2\ëX\90\10Igµ\î\Æ\×Ö¹\êå\92\81d\91dl72\88ø\é! m\Ñß\92\ 4z\äk6\à%b\ f`ofS\1f \91dÄ­\v\ 4òe\é\ç\ïýã­\97m©rÙ\9aÿ\0Ll@\ë{?D[\ìÓ³Ú«h\ëb\10\f\94E¯]\ae|õ\ë\é;e\1eB.\ÉO³W\90\ 1 <T|}\98Ixñ$ \9fµ\ßLm\9a^û\Ô:»xk\89\ 5J\ëýÁ¯©\Û6\95\"\â\12Ó¦U¯5øû,\13ï²\87\1dK\ 4®6H\7f\1f\ e/,?ö3\95+(\Îy\é|q\Ç1\8b\8bVØ·?\8a>þkÚ\90\84H\Ù$úͲ&a\ãDK\8b.P\Ê\\Vn\è\8a\r¶³\85¼\\\9akª\0Vq\9c\á\â\bm¥%I^S\9d\ 4ý\19¯Dµ\å\8aþ\83\Ö\Ú\ f#¦;q\984º¶\13ö\9c\9d\99¤\b)±\Ò\æp\ê\Ê\ÄS\aº\94\8f\î\æ\ 4hÕ¯\1fJ\1c\Î-&\ã\95Mz¼g\é\97\ f2\12\90T\ 6\98\90´V:ó£©\9b\fx\81\Òù¥lb\9cµXc\Ã!\ 2\8d\96ý\ eѯ\ÃB2\9c\95\86\90\188Gô6\9eX\ã\â\ãE\Üz\Ïã\9f¥:\1fb6H÷\íg\ÖýY^ºÇ\98¼­ø[^*\à\9d`¯)Y\Â\7fÒ¹*aPL\ã\Û\1f\16#\9bN?\8crzq\Ç\1c\â}\86Ie\á\88i·\Ç!§\18}\87\90\97Yy\97Q\96\ÝiÖ\97\85!\Æ\ÜB\94\87\10´\å+Nr\95c8\Îq\Ê\Ä{\8dÕ½\8d\é óA¥{³®ª²¶>\92^v}\8ev\8c¸D\7fXz\êò$\8cN\ß\ëÄ\82\Þs\è\Z\ßI«\Ø$M\×k\92y\"X\"À«\Í$\97\ e\8a³\v\11en \ÛZ\ï}j\Ý\7fºu%¢:\ë¬ö\8dN\12\ïFµE)j\ 6r·a\ 5\99\bÃ\9aC\Èl\81\ÜX\ï%\ 4\86SL\98  Hx3\18\1ei\11\Ûȧi\b\éGF»IÚ #\ 5\99\9b\Òzv\Ùo«\Ä\È%\Õ\Æ\É\\\Ò&\"\éAJ¡\87\19}Q$\Û$a\9a\94\Ã.´÷øõ\13õ8\87>*Æ\8cÞ\96~\86\ f\äc´ý\8aò½\ÝB\Ë\Ý\16m]·cÈ¢~Ú\94\98\r£²S\è\Å\î\7fcO\n\9c4\13¹\Ö\11E\Õܦ@ \\\Â\ 1)d\0\á\ 4\aôøv\15cG\1cq\Ï\ 5\ì\çft§O4nÁ\ìganñ\Úÿ\0TkHe\ÌY\'\Ïù:óªS\88\Z6\12\12\91\93vIù\'\86\88¯AG¶\éòÒ¥\8c\18Í©n{\ã\0]_\ì\1f\95ÿ\04\84\ãv\ëk9~,<l\1e{\ØÖ¶\18\9a\85R÷\Ý>\ËWX%c\æÁ\r-}\8b°\Ñ5EJM¦²ðV\88ªÁ\ä\f\90\ 5_\ã2\äø¹d\94ñcÓ\8d\81[¬W;\1dL¹w/\152\r\90\89\90\îV\Ñ\Ø\1d\8f@\ÓRL i\19\Ø\ê\9eÄ\9f\93\×5©c\ 6m#8õ:\95\\a\91~B\880\ã-m*tQh\94\9d_M¬k­oR­Ð¨4¨Xú\ÝB\97O\85\8f®\Õ\ë\15ø¡\Ð,l,\f\14H\â\Æ\ÅF\ 23hdP\82\19\91\Ùm8J\11\8csÇ»y\×\n·oú»¿:½t1ø\Ê\Þö\ÕW-jtȬ\à\82\1e²\Ã\12\fe\8c1\Ô\ã( \Ê\ìªÁ\9c\10w\1dm·É\8f\15\86Ö¬óO¯N\Ƴør\ß]\91ñ!\äJ,} j\ÙûQ\8d­\Ö=³g\Ê\â´öó\98L\14u*\É\15H\ØÒ\8d\ 3\ 3)û$-~\933H\1dd²k\Ò\19±\Ôf\86\87¹°\15x\Í\ä\12¤­8RU\85%XÂ\92¤\ç\19\9c{\ã8\Î=ñ\9cg\1f\Î3\8f\ã8\ç\Ï\1csQ?-\94Ù¯*~j:M\âJP\ÉDuO@kw»½Û\98\88Ò\88 \9b\8f\ÂD\Èz\Í^W(q¥8Ê\83Mv¢\ 1\82£\87\Ü\ÖY!ó\93\"\87pm¶a!!\ëP\Ñ5\Ê\ìTt\15~\ 20\bX8Hp\87\8d\89\87\87\8b\15 c\"¢\ã\83m\91\0\8e\8f  \86D\b1ZhqFe¶\19m\r¡)\Ç\Ùñ\Ç?!v\×\Ô-\99\ 6\ícc\Ò*\e\ 2¶úþ\×\ë\×j\Ô5®\r\ç0Û\8da\ÇbgB<\a\17\86\9du¿\9a\Çʾ·\1cG¿\Åj\Æ`·d|h\é]\ÍXùi\ë.\Å\évâ\80\87l\rsºú\9bn\9c\Óòµ2#Ò\97!E°\Ñ*2Pú\ëgS\Ç!\81Z\91¥\Þë\92±\æ\Å4¸ð\n\86uL\9c4Añ!\ß\Î\Älݯ\Ùÿ\0\e\Ýýj½ÿ\0;zHd)\12û\ 6©\Z\Ü%[²\9a\91?K\Þ0P\83²8\912E\8f#\0\å¬\0\ 4\8f\8dmv\9aó¢\ÇF\9eô\Ô4>u¸\æ\ 3úÉ­G\13\Ô7\å\ 3e:Û¥\18\ïK:@\0\85¯\å\94E\alv\ä\ 1\91m{ÿ\0®\11 F \16G\Û\1fú²þqÿ\0|s>\1cq\Ç\1cs\ 2²\Z\Ìx\ßRõceE\'\ 1.\Ï\á²\Ü-¡,!M¦`º\çnjQq¤\9a¤º\96\ß|peA\19µ)\95:\96\ 1\19\1f?­¶ð\Þz¸\ä\ eÕºý0\9eH;\99°S\1c\86Qy\ê\9fC#ñ&\96\14\9c\98]Wa÷¬SF[ÿ\0RP\ë¢\bl2\96\1dul²ð\ÙV\eK­\áSÇ\8e8\ã\8e@\Ùz:W\äò\81²\15\10¬©\8e\87\í\ÊSs\Øo?\ 4~G`t¤\ã\91+w\1f\14\18l\Æ\ÛW¶U\86\ÝS~ÿ\0\17\97\1c\àH£ \97\8c@\ì$²\19\1cg\ÊKM¤\97\11d¸+\ f?\84\á\Ç\19\19\vpv\96¬¡\95\94B\9bJTó\99W?\1cq\Ç\1c\ëd1T[g\ävrsC:\ee\å´\ä\84\nû¬¼ð\èw\Û\æ\96]xv\1cq¼gâµ²Ò\95\8c\å \Î;<ÿ\Ù',5,0,'','','',''),(57,2,15,'9305bf01a87c0b81','43713557095bf01a87be90d132625601','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','15820583805bf00e7fd7909940374120-4.jpg?ts=1542459007','image/jpeg',48,48,1488,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b        \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 1\ 5\0\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0  \11\12\n\13\15\16\"1\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿\ì.\é\1eY\Ö\Óû\8e\190\9c\ f\ÆK\ËŤ*X2 \7f|\Ë\Çf\Î\ä\8c\12Yys\82G!µ+\15\92\91c\91·Tଲ´\Û>¾\90\99\ 1³I¦\Ü\Õ]U¢\ 1n\å_Pf¿\89\Ø-5ô\e\84a.-¸\é\é\145\87\12Û®6B]e½W\87\87\91\1fò\1e\ì]\81\Ä~©:\'jjy3 6e½5\9d-M´G>\à\92u3v¬ªk²\Öx\93\Zøx\19¸J§\8d\82=\85!ð&\9b\8f1\87\ey\86Ö\99\íø\9cz\ì \è>\10®ö\íª\b\19¾\8f\ì<\Ø\ì¯]e\Æhû\rWQ\85k\93\86¬Ube\88ýb\86\1e\Þ\ì\17óû#\Ì:Ó³\ 4J\Ã\r\'\923\ 2\1e[dÿ\0 »\'°\ÞR\çÒ½\84ð·RZi¡sÓµ¢w?9\ÎÔ¨·\1dgt¡\ÊØ£«\Ä[@\1eZ¸\í\84Ih3¦Az\Î&f\9d\fº\Æ\ f\92\8dr\fø\959!@½Ew\ã~\Ìx\'Ju\89UÀ\ê\16\ÛX³U}\91Y\8dy\ç\âb¶5\ZX\8aÝ­P\8b\'\ä¦à¥\8d\r3Ð\82\96\ 5\83\15* D\96k\ã¬\Ç\ég\87\92\×\Ü÷\v\Ê{\16õ\É\Ñ\1c\ËUX­\ìy\88\10\9f\81C#gk©\16-\958r\8b\Ï\ÊB\Z\ÌTs\95bNs\nh&&\Ü)䩦V\9c¦\7f\8d\ fJC\í\ fZ\Ô\ e\88MC¢xbR\É\Î[óWM°¸\ë5FR¿m²»P8Ø¢s\83\e\12\91\85p\97\ZCY±\ÃXÀk\í\800¥r¿É\9f¦-\Âó\96¡õ\9b¥`\139\Ð>\Ðö\1c.\8f«\9e\1e\16¡I\8c¹\Ò     ·LÉ»ôyܪaù\bºò\7fHgp\1c)vI\7fº\v\8c\ 5\92«Ï¬þ\17§ú\à\â­\'\È\ÔùuY\7f\88\"I·Û\96Â\85þa°\ìò\ 4دVF\ 4Z\96\àQò\16)\ 3q\f\ 3®:ð\10¬\Ç\ 4ó\Ï::\Ý[\ã\ç*\Þ{\9a\87κog\ï}¡-\88M{¨\èöM\81o\93ú)\×\a\83¬Å\91(b\ 5a\1f+(\â\90>\ 4\8f\11¼e\Ò\Î|q\9aN\\u8̶\ã­Y\Ò\Ý\Å\ 5    \Øý\Ëq\Ø\Zò\91³\Ç\16\é\Ï|+®\í\ÓZþ\87­5<\Ò1\'G\96\è9\Z\99±\96½½·\ì\95÷¢flpV    \Ö(\15GJ~\11ªN\rÉ\89\16¦k\8d!¦ôù\1635^¬ k³®&7#o\91§T\á+òv\É\16\9c)Ö¤,òQ\81\ etùͺi\8e$\Éb\f\'\ e\16Jð\ç\Ù÷r©\á\ìÿ\0\Öü¯m\15\Ì[»O]àµ\9fYñ>\à\8d\Ü\Ú\ 2\Õp\8f6S_N¾\83á\89´k\8d\90\14N?|MN\Þ4\18,ª^   J\97\821\84\16 \å´\éb>\Äl¾\Ä{\9bhU­\83Õ\9a\92Û­)jd\ 1vvÓ¢\97\1f¶56§\95)öBT\9d¼ø5\ 3±£5\ê\8cwõ\\\Ø&kFk\Õ\È\Ü\âBòMXV\Þ}\ e\\d\9ct\Ôl|\Ì9\âJD\Ë\ 2$\9c\\\9cy\r\16\ 4\8cq\ì6PG\ 4[\v[\ 4\88Xδ@\Ä2µ´ó.!\ÆÔ¤+\19\Ì\éö\á®\ß\Û|\v·µ\8bH%\æow>p«\Ê\n+yq\Ã\ëòý=¦\84²Æ¸\9cc?õd«\îI\80\8c¡°\È}k\ÆP\95c4xa\87\fv\ 4\11\96\86\14VZ\18a\ØBZdq\ØBZe\96[F0\86\Úi´¥\r¡8\ÂP\84\á)\Æ1\8cc\Ïo\ f3öÚ´\ 5\æ«e¤\Ú\âÃ\9c«\\+ó5{$,\88\95\1f/\ 3?\1cDT\ÄY¼\95²@gÇ\96@¤°\êTÛ¬º¶Ö\9c¥YÇ\88Ǫj\Ô\í/\×\7f)R\ìfH\1d)M\Öm\Ô\7fZW.\äö\ãk\13\ÓppA?\97Ô·\7fó`À\8e\8ek\nV~¬\n\ÚSýp\9f\1dM\81G\8aصrj\93Ku¸òe+R\Ë[\18N]Á5k4=ª?\ë÷\ÆSñ\99\bQp¼ÿ\0¸FU\94ÿ\0o\8f6~\1e\1e\1ebµ\Õ\Z/[S!)\10®¾ô\\\v\e\84\19{-\95 \\\82\92¼\ãýú8ZÐ\9cÿ\0¹BSó\9c\ç\ç>\7fÿ\Ù',6,0,'','','',''),(58,4,16,'9305bf01b2f3b2a5','17505033475bf01b2f38ff6177578340','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007','image/jpeg',300,300,11008,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b        \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 1\ 2\ 3\ 5     \ 1\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b \n\11\12\13\14!\15\"1\163A#BQ\81\82\17\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/r9¸f3\9cDëº\9e±®\8fð±g\ë]L\ã\Íϵ[d_\å\"¾þW\äñ¿\19Ķ¬\94Hx\8c\ë»x\12.¯+\'=­\91\ 2ûY©´­\97\18f0Hð\96\11\åF÷\98}`\1e\ 2\Æø<|\Þ\r\á\íRľ\Õ\15\94\ 1v=¢¢/\ÄyÀ\8b¸\ÛZ\83\13d´\í{\Û.%\ 5F2\1c²9#\93\181\ f©\1e\\ó?\åC\9b¤\96VõÞ\8e\Â\r\å\95ùMÆ\95¼M\ãG\a\Û9À£\ eO\1d·W\9aøag\Ä,\8f\"Q\Ø\á\8cx7\Ú\æa\Ë\Ìõ\ eòù6\ä-\96§Nл\85\Þ\Ý\ãq¾\90ø\Ôz¶¡\Ø.À\ì\Û-Ì¡\80²\8b\1e¦\8e\9bn\9bic!±£\9eI\ 5\ e)\88\Ð\0¦sp1½Ø\95×\8f\ e\98ú°9J\92£h\87\Û^I\ê\×\e\\Î\8b\996\1d\83\Úuý«x\95L\è¸8®«x\êú\83\99\90\94\87üV\Ñm©Ø\82P¦bH£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8b\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)\ 1T\É2\Þ1\12CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ø\êy\ë¶WPKüg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ek¾º\ê8­5¼ù\Îo\Æ#\àÁº$\Z\Í;\Õ\äù¾G7\9fñ¯j¹\8a\ïs\8b\ e\ÆE\8e±\Çõ\Ï5/\19h\î>e{\aR\ÓA °¡b;\'N\f\8ben\18\ÓeEÅ\96c\19\â\Î\ 5¢\90¯\88\8fN\ßm|\9e˪ä\9d\80\13ºý\Õl\96\14¢òþ\ÑQ\92Zo\91[ &\9dU\Æt\ 6(¤J,\8a¼û\Ç\Û,\ã>\8a1l©\çÂ\83²ÁþDp\ì¯ñÿ\0\â+¢þ6õ\18\94\9dv\áº\0\î/\ 4\\l<½¶B\87±ò\8e\Ë2>\\|\Zf\×>9lb\Ã\f\ãÎ\93UY\fÃ\8dL9Æ\85\a-\8bñf6h\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88¢#\êAõ\ 2\13¡t6=:\êm¥|þ\Ø\ï\14$ÿ\0\16\82-}\9dw\ 1\ë6AÀ\Û9\Ð\1f\99 ±\ä+P\94\8d\Ö\é§\0\95µo\ 4«\8d\98\a\8b\ 6\1e·µ\Ö+µ\í{6÷³_n{\9dõ®Ñ¶m\16³o6-\8aòi\ì­\î­\ì\8eù3¬lgIy\ f&T\93\91\ä)Hü\ç9϶=\9b\8cc\1f\ 3\Û?¯\×÷ý\ãÿ\0\9c{\ç\1f¯ù\ã8ÿ\0\ï\vñO\a\Ó\Ï\é\9e\ eÿ\0\ 3M\î÷\91-\'.\Ôg\8e=ÿ\0\fõ¯e\86`\9a\â7\Ï/\83¸r\ÍL \8d\8f-­d\9am:G³\ãDx\ä\Þ\r·\'\Ä\rj\Â\Z:*mb\9e»_\×j RQ\ÔE\14\ZÊ\9aÈ¢\85\ 2\ 4@\ã\â0E\8a\ 60B\e\7fyökqòv\\÷g.s\9d\9f¬\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88µ\ 3\æ\çÉ\86»\âó£[\×3\ ePK\Ì;§\ß\Ç\\\ 3®=\8d).¹&\Þ\11\9f\ZyÀù\10ðú]V\eK°l/\14À\Í\15\\B¾´r§þ<CS{\É\\\95¾ó\16ý¶r\8f(mw\e\Ç \ïWs6-³k¿\95\99v·Vó\Éó<\99\ 4ö`\Ä67\f\8f\ e\14Q\82\rt\10Ư¯\8d\16\fXñ\Å\Ñ\×\îs\9cÿ\0|ÿ\0§·ü°¦\89\éjðt\Î\Ë\ï\15þ@ûQ¦}ü\ f\Ç7\"7\ 1\é×±2øü\9d\ÈT²\ÆW\îVUòÃ\80\17P\Õ$4\7fÁ\17.\96û;\àH\99\88µÃ®£·\9deh\0\b \f\14\820G\8e\ 1° \8e\0³\ 3\10B!µ£\10\84\83\e\Z\Ö1\8d\ÃZ\Ü7\18\Â\æDX{\Ý>øõ\7f\Ç\Ç\16F\æ^\Öò38\ãB\9bp:\186,¤»Ø§\ØZ\90.> \Ö\Ò\ë\Ðlm\ì\å}mùb%|93\1c̸Ì\8eð\ 2IC\1f\Înõ\89ø·\ã\È\í7\13Uóo`\8d\î6\12&½¢\Ùññpò\11\Ís\ÄNI\87A\1c\91\ÄÏ\81\18\123\8c½\82\88G1¸&,\Äõºu\ 5ò°\Éý,\ì\8ch_/lÈ\89·q\84\ÙXg¾?«\10\Íe^,»\Û\ß?\ f\Î\Æ=ñ\8c|ÿ\0~ø\Úw\ 1ú£¼:s|\Êj;>\Æ\Èá­\96\Ò+\8f&\1f/hÛ¶¥®U\95¹\Æ?\Z^û.\81º\83I\9c¼L\ÆKf\f9\Ï!\19ò\8b\1cò\99¿\8dKrÔ·\Ú8\9b6\91³P\í\Úôö±ð\îµ\ËX75\87\Ã\Â#á¬\99\0\Ç\aÙ\81\1cDx\\ü\14m#>ln]\8c\88\88\88\88\88\88\88\88\88\88\88¸\ÈA\84d1\88Á\bLy\nR?\f\18\Æ\Ìe\Ï!\1e\ì\á¬c\e\8c¹\ïvp\Ö7\19\Îs\8cc9U\ez\9aü\87\Ùw\8b\Èþÿ\0¥k\e#,ø\'«E\93\Ã|s\Zª\Ï3h.ö:¹%/!n\í\ 3¡E,k9·\å~ªX¦\91`\18ñõ6L\84øD¸±\89\88\ê\"\Ø÷\8a/\1fÛ\87\92¾\íñ\1f\19>\16©mhí\93\96\91_ :\8f\19\ë­üý\86|\87\8c\à,s[å\91µ\9a\É1ÿ\0$𬮣ٺ\14\98UópÛ¤ø\87\89´\ e\b\ã\r\13\86ø«[¯\Ô8\ç\8du\9a½CMÖª£\82%}=\15<vÆ\87\ e4h\Ã\fp±­n^\æ\0!\ e\b÷ýA\13>,Ç£¢\"ñ\1e}\ë_\0ö\9fD\91\Æ=\8d\áþ?\æ­\ 2L\80\Ì&§Èº\Ýv\ÉO\89\91\È3G\98\18ó\Â\\Æ\97\1c\ 4\98òc8G\ 4¨ñ¤\88\8c<`\10pHòù\é\14n\9fM·ö\a\Æ=\85͵mh\rwyÕ­ºÑ\96\96\83\0\ã\ró\9dÅ\9b\85\86b\9d\ 3£J\99\8d{j\97bs\16Í\91\á\\VV\Õü\v\ 3\9ak\8dr\â\×^\Øj¬¨¯è¬§S^Q\ÜÁ\95WqMqW(°l\ê­k\'\b\13k¬«¦\80ð\çA\98\0Ê\89(%\8f C(\Þ\Ì|Õ±Þ\83y]\ï\a\8dͲ\1d\ßZy\92ö£Qu\9c{\r\8b\88v9\126\ e+\Ú\Ø\12H)cYj²\8f\81Ö¾Y¤fD\Éú\é\é¬\'H\8f\ fù)3¢\ÆlWZ#\á·Î\87\\üµhÆ©«\fn&\ìÖ§S\1e\7f ðe½¤s\È(\9a\11b\Ça\ã\Ù\Å#$\íZ\9cinpó)\ÑÁg\16\9e\f2¾Th;\ÊDDDDDDDDDDE®¯,\9d¹¯\è\ç\8f^\Ïö:XbÊ°\Ôx\ÞÖ§U\812fk£Yî»\8e\e©\ê5\8f\9e\10\90\Éa{o\n$S\8a4Dzi£{D\92ß\90\9dI$¹r§Ê\93:t\99\13gM\90is&K1$Ê\97*I\1ci\12d\È3\9ec\È9\9eò\98\Å{\ÈR=\Ï{\9c\çg9þtV|ú?ü~?¯\1d-\Û;\8fºUÏ\81\Èý¾°\89\9dtS\ãÈ\89ø|\'¦É\90\Í8\91\86I2bL\8f³\Ûʸ\ÚAo\bpI*\14ø\15\11\Ìúh¦Ä¿\Ñ\11\11\14(}O¾\ 6\ê¹\ãD\Úü\85u7Mü~r\ã\Ê<Xso\1c\êu\99yykK«ø\à\Û-U$\ 6\áó·­^\e\88fÿ\0\e\18\17\Õ\0\Í;\ãZþ5\16(+eE\ï=e\ì¯0u\v\9c8û°¼\13´\ÉÔ¹\'\8d\ïa\Ý\ÓN\e\äf\ 5\80\9cd\99C}\124\98\84²\×\î@<õ\82\Ù1\8cð?\ï\85*\15\80\8d\8c>ÿ\0q¯\92\8e\9eqwg8ðø\8f/`ª\15G!j\æ\Î\19c§r5(\Ù\a\97\19\ 1[\1c7!\99\9aÉ\98\ 6 \ÙB\Ã%UÈ\9d\ 1Á\98m\82¢\"\"\"\"\"\"\"\"\"(\88ú\Êù\Êw\1ex\Ù\ã\Π\8aß²7a9\Û_¤²n>¼81x\à\f\äQJË\9cß³\"dú\88q^1»\18q&\ 4\8f\1ceµz¢õ\Î\0\â¹\\\ë\Ï\1c\'\Â0ffºo1ò\ç\eñ\\;\f1¥\Ì \\\85¹Sj1\æ`n\ËZL\Å-»\ f\86;8kòÏ\8es\8ce^\83À\9cC­p\a\bñ\1f\a\é\Õð*µ~$\ã\9d;\8f(\àU\83\11«£W\êt0iB\ØQðÁ´\11\ßøy \ÂÁ\8d£kðÖ\8cm\Æ\18\ß[DDD\\\12¢Æ\9d\ZD)±Á.\1c°\Z,¸\92\829\11¥F\907\bñ\ä\0­x\8c\ 3     \ï\11\82V8e\e\9cÇ·-\Îq\9a\81½G\9e9\a\ã\ÏȦ\ë\1fNªm\7f\bö4\16\1c\Ý\Ä\ì\0\Þ\È5\ f¸¸\92\r\çO\ 1\ f,¦;\è67b\Ó\Ü0\ëj`AÙ«©*cf5S\9c´\ e\8ac\9e\8e\ eê³\88;«È\9d@\Ú.L\1dg³ú\91n4h\13\'eµ\91¹3\8f+\ç[\Î\15]\7f\Ë\ä[Ý£S\8e\æ\É(FLf¯QÁ%}a\86\ e\Í\ÄDDDDDDDDDE\ 4¿[þ\Ä\Üq\ fCu,1ø~y#\97v,\93å\9c\8c\8df±¬\Ö5\99o\ÇÙ¯\ e^÷a\Ù~rö\9d\Ø\Ã[ð\Î_]\Ú)\13úZ8\ 3R\ç\ß0\\,\ÍÀY\93\v\87t\Ý÷\9cª¢<#\91\12^ä\82®¾\98S\ã\e\19\19\â²N\Çù-k¿Ê\96\b²>$úr\"[¢\88\88\88\88¢C\ë\12\ê\í\8f2x\ä\Óy·Y¤\87*û­|\ÃOµ\ì6!­\ 4\8b¢q\î\ËOq©\ÝW2n\1e)`«\81ioU³\Ì\Î\7f&(EK#\Þ;\v\aW*-\8fø\82\æ\É]xòq\ÒnU\85\1c\92¤\ÕsÎ¥¬\8cBú¾M\Ç%:O\19\12C°l\àn\fAn\ f\95!\8eùe\à      \18\11\Îk\1dv\Ê\"\"\"\"\"\"\"\"\"\"\83/­÷^    :ÿ\0\Ñ=­±±ù\11y\8b\955\ã\Ëþ¬\çé\9f¥RYE\8d\9f\ÞF\Üeõ³\v\8fl5\ïö\Ï\Ë.ÀÛ\86WB\8aZ~\8dmnlÿ\0*[\9e\ÐÆ\8f5º\ïV9*¶S²\ìý­\9f±m\Z\13\ëð\Æ|rÜ\8dÑ©->\×ü\Ú湡kXü\11\1d¤¨\88\88\88\8bR^xj\âZø{ò\12)a\11q\13­Û½¤w\11\8cs\81.°Q\æ\0Á\Ëñ\9f¬¸È\9c?\9b2\×\å\84 ñ\9fb;\19¥\Ñ\16eø\ë\Ò6nD\ï§N5=B´Ö·³;)\Ãv\"\88\a\ 5¤mv»½\Òl·³¿Û\90Lp\ê\èj,­\f6¹\Æ(a¼Q\84i\ f\10Iyj\"\"\"\"\"\"\"\"\"\"\8aG¬+\84 r\'\8a±ò´\91d³:ý\Í<}²Ö¹\84;\1d\1c»\í\Ü\1e4\93 \8c\17°\Ï\e\10ö3\Ç ¤\å\Ãl\891NÁ\äÁ\19\ 5Uò)rz46\81\×ù>\ä=I\â\Î_²õ\8f\11ÿ\0£\â7k\e.¤\'\a9\Î~xq\87°<\8d\Ã[\96\11\Ýó\Ës\86\14DDDDZBõ\18òö¯\Ä^\1d{¢ý\96ÀPI\È\Üq\9e)\×\Ú÷»%\95°oVpjk£\ 4\fa\nl\1c¯ür9­h£4ø\91 £\bÝ\9cÓ\88\8a\94^«\í\\ùå\8b\8d9^\f\ 3¿Jꦿ²ò®\Ûk\87\Æ\Ì8\Ö׺õÞ\91§U\Ì\13°Y\99}\9c»\9b[\b\'\8e\ 6\80S(D9s#fDaK¶i\11\11\11\11\11\11\11\11\11\11\7fº\ÍI\Ü^\98vG­WÌ\93ø¼±\Å;V¹\bð#\82M¤;¬×\92m\14º\86\11\Æ+@\ÛE\89\88G\È\ fô\95\Øvc\Ég\Ê9h\é\Ûu]\87EÚ¶m#m«\91Gµi»\ 5Ϋ³R\Ëȳ*\9fa׬d\Ô]U\É\È\b`fE}\9491\r\90\98¢\É\ 2ì\8c\8fg³³×\94\90=)¼Õ¬ð×\98~$\8f³\ÊdAò÷\eòo\ e\10¿6\ 5\×\Û\f\Z½\8e\ 3\r#\ 3xb³\ëÔ¤\93\ 5\94\84¤\18\á´Í\91(\r}·\b\88\88\88\8a\ 2þµ^\è\ë\ 5 \ëwBµ\Ùò\89¸\Ç\Ø\19Ø\8eG\Ä\v,\8e4=\7f\15;\1e£¦k×µ\ÌÈ\88\7f\ågM\9b²@ûq*\13\ÉJ\13ûG\9b\0\ e}}è­\93ô¿ø¼\99\Ð^\8f\a\95¹OZm?c;WüW n,\92\Ö\æ\ËY\ã¯\Åd\8e6\Ñ\ÊLÁ¯\94,ì\96ûûjé­\9d\8aý\9e\îó\15vr\ê\8f\1c¤\93*\"\"\"\"\"\"\"\"\"\"*¡½U\9e=gõ\ f\Èe\Ç:\ê\953\eÃ\9d¹\88þD­\9a(¸\ÅN¿\ÉQ3\9aý\ÓTc\âClX\f\96(°v\ZÀ\ØÏ\91oq&N\Ë9\83\1c\18lh\ã\0½Û«\Ü\È~»öG\819\à\19¶\Î8{\98x\ç\92%Ç¢>#\Ú\ØU\éûmM\å\ÅDGºT!9\×5P¦T\924\99@\870\13K\12i1\10\æW¡qG#\ë\Ü\Ã\Æ\1cy\Êú\94¨ó5\8eIÒµ\8d\86DYB\9a\17\Õm4\Ð\îa7\12\83\8c\f\10f4EsZ\Ïb\8d\ís\18æ¹\98ô\ 4DDE\85\Ýü\ï_\ 6ø\ì\ë>ÿ\0\Ù~w½\Å}\ 6§Zfkº\ì&\8eVǽmò°\Ø\Úþ¥­Ö¾D\\Ë\9difx\91\Îw\9e<:\è\Å|\ÉÒ£\85\98\81\î\Ïmù#½\1d¢\æ\1e\Ór¦Y\1f\9d²mö(\ãL\936³U¥Ë¾\9a=Z \92\Z,b\ 5-pÁ\1f/\8f\12¾<ɹ\99d\Ê\èO\9a@3\15\94Á}2þ    ö^\Úr¾\9fÞ\9e\Ë\ë3j:\Í\Ä\Û\1c\1d\83\8d5KºòGÿ\0¶\ÝÚ©\ì\99W`FI\13J\í\17^\93\88öC4\'\ 4÷\16\83\81)\93c\Ô\Å\14}\9a\Î\Øñ\ãÄ\8e\b±@\18\Ñ#\ 4Q\ãF\8e&\ 6<x\ácD\10\0\"kF \88mh\Ä!µ¬c\Z\Ö1¸n1\85Ì\88\88\88\88\88\88\88\88\88\88\8bRþi<ok>N:=\È\\ j\ê÷r\8e¼#o<\1d±\Ë\a\Ú}g\91\ê\â\14p\8d\1c\98\Î\n\18ö\Ñ^Z\9bfEö\95>ªDª±\91\8c\9c_\95\8d\Ç;\Ï\11o\9b_\18òf±m¥\ï\Ú5\ä\ísk\Õ\î\ãþ=\9d5\Íqr\191Nƹ\â+3\9c4\ÑfE)\áO\88PN\81&L9\09:J´C\Ò7\äj§±\Ý\'?Mwm\8a|\Þf\êC\Ç[N;l\88l´\á+³\È\Ç\1f\ 2\8f\"\8d\Z)\83¨\ e\r\86°h\91\É*\Ä1k#X\Û\fX\9d\Zu\94º\11\11\11q\18Â\8e\"È\90Q\80\0\e\Ìs\99\10B\117/!JG\å¬\18\Æƹ\ï{Ý\86±¸Ë\9d\9cc\19ʨ»Ô\83\å7lò\17\1dÃ\8f\89Ѻ\Ý\Ö\r\9bb\ãn1\Ö\ØóÃ\87y³\Ó\Ì-N\ë¿]\×|F\197\a¸\8faEM$\ä´l*h²$R\Ï\f\r\86L\\Guo\×\Ó\Û\â^\Ç\Ê\aq\ë3¿SN\ÇW8(\95\Û\Ï5Z\92>\a\125\84/\áxª\f\19\ÈIc²<ß\99p(ñ-s\17_\8aPXÆ\84+¸V\ 3·\8fT\Õ5­\17[¤Ó´\êJ\ÝoW\Ö\ë£TQQTF\1c:\êº\ècÀ\ãÅ\8b\1cX\ÃX\Æ7\1e\îv}\ÈR9\æ+\ÞR=\î\ì\b\88\88\88\88\88\88\88\88\88\88\88¡+\ê\9aðo\9ez\Ôo<\8augO\9de\Î\ZMlVs\97\1d\êµÏ\95c\Ê\ZdB¿$Ü«\ë\84F\â~Û©E!¤Hl1>öþ¤y¦\8d\1eþhõºú\9a\ÜVux\Ý\ïo&ø\á\í÷\15ö\9f\8cM\92\9bR²þ\1fz\×r/¸;§\18\ßH\8a\r\ßT ÿ\02¿\1f\93:´-\99LRM\fX\Û\ruD«\ 1Ì®\f¸\12®\8e\ê\×f8\9f¸\\\a\Æ}\8e\á-\86>\Ë\Ç\\£¬\×l\94r\Ä\ì¶\\?Í\8e2Ȩ¸\84V\ 6mU\Íi_\98ö\15vQaYD&0\Ùp£\11\ßV2\ 1\11\11k\ã\Ê\ç=Xu\9f\1fsy\9e\8eÀU»V¡×®P>\99 ¸Ï³¶ù:\8d¬j\ 1·8k¾\ f\Ì\â0\8d\7f»\1c߯9\13ðo¯Þ\91y³fYL\97cc.Lû        òO6t\é§,©\93fJ+\Ï*\\¹G{\Ï\"L\83½\æ9\Ì÷\94\Å{\ÈG¹\î\Îsü\Ê\à_MwN(ú\87â\9f\81LÊ·A\ß;\vV\ eÀr<\99µ\84ª¼u\Æñ\ 6)j)/\"\98a6%j\94\ 1\83B/\È\13%2<V\nG³\Çõ\8f~h\88\88\88\88\88\88\88\88\88\88\88\8b\84Á\f \9a4\90\8aDi\ 2 N\ 3\r\85     \82Vde    \84L9\84\19\18\ç0\83{rdz9k±\9cg8UWú±º\rÁ\Ý5\ï.\8fÈ\9c\Z\n}j¯µ\Z¾\Ù\È{\87\1dSe\8d\8d¬\ï\147\151\ï/\Û\10n\Ã+\99»\97`m\8ea\88\ 2\19¦@\9bnbJ±µ°\92H®©­ú1;M\Ïq;}\Ë]Bf\Ç>Ó®\97\9c\'·òü­jx¤Ì\87ªò&½³i4õÓ¨fd\99\ 5C6:ý\86\ß6µ\8e\e\Ûa&´S\à~\19[x\ëK\'Q\11\16\84ýL4×\97\9e\eûX\n\a\1c\98Uºõ\Ì÷\Çó\9cQ\ÒÛ\8e\Êõ\85ø\ç\1e\Ñ\ÍU\ZTsg>\í\Ã\v\9c»\19§\Íz\a\13\ÑWm\1c§Æ\9a\Õ\ÄRN©Ø¹\ 3M¢´\84\"\90%\99]o±\Ö\×Í\8a3\ 5\ã0\89\"4\82\89\84\11\ 6Q¹øx\Þ\×c\ e\Åð\9cqU]G\Ç\Ú==D \×VV\ê:\ì(0@&\0QcG©\881\ 5¢f0\Öe\8d\Çõc\18ý¿\å\97g\å\9c\ç=\Ñ\11\11\11\11\11\11\11\11\11\11\164vO¸\Ý_\ê\ e\95k¿öG\9c8\ï\89\81\8d\Ç.ײ\ÖÀ±9d7ÿ\0\ 5\12\ 5;\8f\9b9\92\ì\n\áF\82 Ev$J\91\18\r~\1f Xt`{3\ë6\è7\19J=g[ø\87\97;6rV\È4-\80¬\'\ e\êÀ³k2\Øñ,\99»Q\17hú^|\à\8f,\rvK]\15¹\ÎH\19\ eÀ[ªwú®üºw\ fgf¥Ð¾\8dj1®\85aU\12Ö»_\Ó÷\î\Ç\1e W\854\Zr[\Ø\Ö\Ö\éuz¬yrÀr>÷fÀ\éX\18\93\ÊOÅ\8d\14ç\8d¹N\ 4\ f«\97\99ß®J\å]\9f£ýf\Ô6\90gù¹[.\8dIµoúTY1\8f\86\95\9an£qe\1eU\9cy8\b\8d\18»\84l\80O$\ÈÆ\94P\864\9f<±ô\99\7f\Þc\96góÿ\0\92?\"|\Ó\Ú\Î^¸ú\ 3saA¦\Ññ\í\ 4úÈ\8d\94\Êú8ð\9des+]¥­Ì\97\Ê\rf¤}~\ 1l\äN±\ÄHÄ\9f8r²\1e\ f¤3Ä\9c\14\íc\95¬$\ f8\Éeç\94·¨®\91\8c\7f|<!\Ù2!ûþýò,3ûþ±\8fe·~\83ø\9bè\97\8d\b[`º\8d\Ã#\Ñî·£G~ݹ_lû6óº^F\86\11\8a\rYö-®\Ò\Î\\JX.i\äç­\Ä*\èó,-%\ e>\re1\æ\Øò\"\"\Ã_\"\1c\17#³]\13\í\Ï\0B~Ga\Ë=|\å-6¬­n\1eð\Û\ÚjvM¨0Y\96\13\ f\90\e&E$f¹\99c\8e\Ñ\áþ\Í\Î]\8a:¶\Z\v\9dRþóV\Ø\ë¤\Ó\ì\Z\ÕÅ\95\ 5õL\Æ`s*\îiæ\9aºÒºS1\97a\92aM\8cx\Çf\1c\ì4¢~1\9c\1e\ë³ñ6\É\aM\å>4\Û\ìß\91Vê¼\81¦\ì\96\ 5h\Èg\ e\r\1e\Ç[g-ø\bXR\97,\ 4R;\ 3\10\88G\ç\1f\161\î\Î\e\9b\âxú\Ú%þ\85¤^À0\ä@º\Ô5«hR\ 4\ì8G\89cM\nds\rø\Îp\á\94&c\Ø\ìg8s]\8cû\ç\19\11\11\11\11\11\11\11\11\11\17\9fò\97*ñ·\b\è[/(ò\îñ­q\Ï\1d\éµr®¶\9d\Ënµ\8bK¯\ÑUB     $Ë\9dca-\ã\b\8e\"\9c¯\Îs\96\ 4D&qðcó\88    ùjõx\í¶\16\ 5\89\Z\8aª\1cû­j\7fg¶*\áN\9ba\1cqY\18w\\GLi\ e\ 3\n;\17\98\Õû&\Å\ 5õ\Ø\Å~\7f\1e\8fg©µ\8bh\18u\ëô\1d\ÌòW\ØØ´u\r\å\8e\Öv?\91dH\Ìv\Ø\ÛKÙ¶\19\11\9d<\Ò\Þ\Ç\Ù\ÞM\rF©ª@°¶p\â\ 4ó)5JRØ\82\ 4&BĨ\Ñ\ß:/\19^\8e®1\ÒE­r¿\91\Ý\åü\9f´ý\15öÁ\ë÷\1fÈ\93Q¡\Ñ\Ø5\á\95ø[\9e\Ó\î\Ûm\Å\Ñ$\ÆcI\ 6\18ª¨l L\95_oY#-S;\á^½pO[ôú\í\ 3\80ø\87\8e¸{Lª\8fø\90u\î<Ô©ujñGû\1co\81\19U\123\ä\ç%v_\92Jy\Ê\ç{e\Ï϶3\8fcDDDDETOª;ŵ\97Gû±m\Ø\Þ<\Ö%D\ëomï­¶ú\9b\0eƬ\Öy\9afOu\ÈZ\83\9c\Ðg\10GpC\13\1c\Ùó\'Ø\90\Û1Z8\Ð+\â\8f1}V\êúd{\ÛEÜ\9f\19\1c[©I°°\93\1d]\8d\13\82ù\17\17SO>\Öкü\b\Òõý\94\93\13ó-¿\99 \9f[*\\æ°¡\8f$\í¯<\éVQ\çe\92#DDDDDDDDD^3\Ø\1eÀq\'W8\83y\ç^qܪô^4\ã\Ú9\×\Û\15õ¡\98\Ì6<\18¥\93\88Uñ\Üö\96\Æ\Ún\0ñ@¯\8d\îy%þ\Ø`\ØR²¥¯6\9esù\Ï\Ê\Ç*\ÜkTv7|q\Ô\1dR\à\81\ã~ \8d5\àÿ\0\12\86¶k\ß_»r\'\Ð\Ð\æ\Úú\Ç\"\8df*\8995m!\Ã\v\13\æW\Ã<lSñeâ\83²>Vù\Ð\\S\Âñ\19¬i4N\ 4¾R\æ\8bú\Ést\Þ9¦&q\9f¶@£\96#®\ïd³?ùn»\16tS\Ì{\87\83K\86\Ã\Çym\94ñ»â¿©þ08z³\8c:ý¦C\91²>,\7fñ\Ï0\ì5\Õ\ç\ä¾F¶\13O\82\Ûl7B\ f\Î;L\é2~ª\8a\ÇF¨\80\ 22\ 5|HÕ± Ã\8b²4DDDDDX·Ü®\9fp\8fzú÷\È\1dm\ç\íZ\1eÍ¡\ïµ%\86\18-u\8e¿n,¶E>\ËE+\ e\1c\88\174vA\8be\ 2\\CÆ\92\191DPH\8eq\86\1dò\Û\á\ï±þ\'y\97:§$À\91¸ð¾\Ûa%¼I\Î4ðd\ãY\Ù\ã\ã\12d\87]¼6@ÀQ\îñ G,£T\99\15´8\Ò\ìi\ÜLÀ¼¯£\ë^\"|¤ò¿\8a.\Ô\Õs\9e\8e       \9b7\1e\ì\Ñ#j<\Ý\ÆC\9cH\Ñw½\173\99+\ç\1cO8«Ý´kGɬu\89V\18À\ÆSXW6e[m\8di\12\à>\9c÷/\80;\ÛÁ\9a\97`z\ç½U\î\Ú>\Ó\ 29\ÊØ\87\Æ-µ\Ë7\8f?\99¯\ìu\85h§T\\WIa\áË\85>4Y!\95\16Ls\842£J\8c\f¨DDDDDDDD\\2$\ 2(\r*Q\85\Z4a\12D\89\12\b0\80\0\b\ÜC\18\Æ#\9a1\bCk\9eB=\Íc\18\×9\Î\Ãq\9cª¥}K\9ee.»û\Ù;\9e·p\Î\Íi\eª=|\Ø\ìµ\ÜF\8cCD\87\Ê\\\95I/5÷\ÛE\80òÀ¾u\r\15\9c)\10u¡9¹\812HMv\Ò\ÜE\ 6¯g\eM\Þ8<wsÇ\93N\Ì\ê}p\à\è,\86ù\ä\15§ r\15\9cSH\Ö8\ÃG\ 1\9bü¶\Ót\Ñ\12;§\ÌhZPkú\à%Å\97°Zýq\9d2®¨\16÷\957\1eô_£|\a\ã߯:_]zû«C£\Öõ\9a\ØL½¿tH\ãØ·Í\90q\Ú\ËM»j\9a,d\93m­e\æD·5\å ¢fA\ 6\1c¹\Ï1\8d\98\88\88\88\88\88\88\88¼¿\97øW\89{\ 1¡\ßq\875ñÞ¥\Éü\7f³À\95U}©\îT\Ñ.ª,k\æ\8f\99\18\80\9478m\90/q\15Àx\88ñg#\Ëþ\ e\146û\ç\è\Ì\à^M·º\Þú\'\Í3úûa%§\9c\Þ!\ä\n\Ë\1dÿ\0\8f\äJdiFt*-\8c\97Qv}iövE\13F\édº¦¨\84\11B\8bR69Ò\85©\8e¹økõ*ø\8f\ß[\Ì=E\×õ\8d¼\ï1£\ß\è|k\ËZ®\ï¢\î±\n\È\ì$\8d£\8ewi\ÚT;\'\ 5±¢¶- \81\ai\0\ZXUò±\ 6M\9cCÉ¿©\1e\92\b\ÔZ§\90\13ü¹\Ä\18¥«¯\83ºs\'\12\ e\ïMmw\n0£]\Ú\ 3\8ba\16\Ïd\×\Ý2v\1f6%%}\Î\Û\1c\ 3\É\á\Z\â\'\Ò\13\17%yc\Ôe\ã7\81\æG\89Í·ý\93\âQL\91\98P\í7\î ö7]¥\9d;\ 1t\8c¬¶\9bÇ­\85o! a\n\æ\Õ\16k\ZÁ\e\äüdD\Ã}?¬þ}|Iö\Êõ\9a¿\14w\1f\8f\à\ìòl\eWY®ò\94-\8f\86®n\æf.f\95´p¹B\9fU%°c\ÅnK\"\\?¶#\Z\Ã\ã\as¡\Í\Äm°\êÛ®\9b¼Au\9e\93¶\ë;\85c\1c\Ö>\ÃV¾ª\Ø ±\ï\Ær\Æ:]L¹q\Ú\ça®\Ë[\92c.\Ã]\9cc>\Ù]\9d\11\11\11\11\11\11FS\Õ\1d\ä¿=\19\èm\87\ fñ\î\Âú®\7f\í«-¸\ßP%M\Îj¶mGBüG\7f\8f¹\n¹ð\ì+¯!º¶\19\ 3GS}JR\1e\9fiº¡t\81´2>\Æ\Õ\aQQk\7fkYCCYawywa\n¢\9a\9a¢\14\9b+[{[)\"\87]YY]\fF\99>\Â|\Ã\ 6,(QBY2¤\94@\0\9eWµ¹¸\ f\Ó\ï\â\8b\85\Ò\Ív>\Ó[S/³\\\ç\ 6»{ç\9dª$_rG<\97Ì\99©\è5sd\96L\Ö\Òi\Ô3\áÀ\90Áº¶%­\ë,/MEW>d\807|\88\88\88\88\88\88\88\88\88\8b\Ì9k\84ø{\9eµ)ú\176ñv\83\ËZU¤y\11,5nD\Ô\èöú)Q¥µ\8c\96\ 2\Ö\ÞÂ\9b\e\"\961\fR\99\81\á²\ 4\b\ØxýÛ\98²y\1fô\8ct£²±owþ\9aÏ\91\1ec\94G\ÌfµN\ 6\\p\rÓ±ü[?\rüyõÆ\97¨\95°k\äÄ®&\99}ER\Ë\vS\\]T\Ü\18Oa¡)»\87˯§Ë°v\1cg\1f\91ù3®w·\98\91k\10\ÚF\É:ó\82¹\96®,ºqX]\Ô@´\89\8dKlp\9dYO\ 2\ÂTú\b\e\8dEik\98fVW\\V\96t\Îü-z¨¸Û¸7ú¯Z»\Í_¬ð\7f?]\Z\ 6½£rMQe\87\8b¹Z\ì\á\b¢V\Ê\Ä\âÉ\91¥m\97\16\ e,\nÚ\99²¦\×O>jÁ\12\êu\9d\99\ãA\98°\8a)\ 2\11ÀQ\98\ 6\e\f\13\ 5\í \8a\"7\ f\19\ 6Fe\Ì \È\Ça\Ì{s\96¹¹Ã\9b\9c\ã8\Ê\äDDDDDU\14ú ;\87s\Ú\Ï+\9c»®6c\89¡u\92¶¯\81t8Ñ­¤Î¨\93\8a\9c\97eÚ¶(\Õ\æc\ 3Qcm°l\'«µ\b2gJƹ\ 2A\8a<\å\90adÿ\0¤¯\Ç`»SÞ\99\9d \ä\ZY2x\97¨°\19²Ò¸ñ\9aú\9d\8f\9a-2\bº\Å1]&,¸3\85­\ÔL\9b±\ÚV\99\83.\1cj9\"8\9f\86|\í7DDDDDDDDDDE\87=\ä\è\9f\\¼\86pFÁÀ\1d\93\Ñ\ëö\Í^É\87\97¯\Üd\ 3fË¢ì\8e\8cX\Ñ6\9dFݸlÊ\9bh­&Z÷E8\9b,\1e\á6}ð\12\86\9f\ß+^2y\9f\Åwjv.\0\äø\96\16Ú\85\98\8d´p¿(~        \ 3E\É\Ü|i.\f{(\13X&\Â}\å\11ó\8a\8d¶¤Y\fº»&\ 6D\88\10¡Z\Õý\ÓHô­yÀعö¾\1f\8e\Î\Ön\ä¼\åmB\8aLοò\ e\Í//º\ä\1d\1fl\Í/`»\9b#\18·\Ûõ¸\ïkkd\1dÏ»\Ú*þ\83\98v\97\106+\99S\80DDDDE\ç<Á²\eN\â^RÛ£\1dѤj¼u»ì\80\92\Çe\8e\8ej=f\Î\ÐFkñ\9ce\8e\13\ã4\8dv3\8c·-÷\Æq\ì¨}\ä-\ëa\å\rÿ\0x佺H\æm\9c\87¸l\Û\Ö\Ï0Cp\85/a\Ûn¦\ß\ÝI\18\9cò¸c=\95\84\92°n!\1cÆ¿\r\Ëß\9c|³m\9f¦;¦\9a\ÇRüTp¶\ÉZI²6\î\ÔE\87\Ù\rüó\7f O\1d¦\ßO_\ 2\86¨p\ä\10\98\84\ÊMV®\9e³#\8fôG\92H\ï±$P\ØL\9cCHU\11\11\11\11\11\11\11\11\11\11\11i;\ÏG\8c\Ýo\É_C¹\eM®ª¬\1f:ñ]e\97\'pf\Îh\ãdð\íz\Ýd\édÔ\8d\9cѨ¶ø\ßmU®G\12\Â@\84g\12º.\'=\84U\nqW%òoYy·I\å=,öz_+p¯ Vl\95C°\r\95\\ê\8d§P¸adR\ß\×0Õ¶L\8eY\11$Rl\Ôr\v\15ò\ë\ÍcO9­\19\Î5w7CûAK\Üþ\9eõß³Ô­\1cvs\17\15j\e\8d­f\ f\f²(ö\v:x¦¾¦\9e8%4xs Yº@\Ï      \85#c\ã,h\Êadg.[\"\"\"\"-nù\82\ä9üO\âû½\1c\89V\ïk-S®|\83e_\8fµÁû&ÿ\0\eø\ÑC\935¯p\Ús\9d\81sð\Ç\ç\18&sñwþ\9c\Ò÷Áº(9C\9aø\7f\8d%2C\ãr\')qþ\8b!\91\1f\91\Êx6ݲ¢\80Í\8cL1ùd\8c\8eÁ\Ø\vð\Çe\84\Ë]ñw·¶oyд\Ê>:\Òu=\vZ\87\16\ 5\ 6\9d®\Ôku1\"F\14@\n\15D\10B\ e[\1c?\ì\Æ\â´?q}²ì¼¤{\Þ÷½\Î{»j\"\"\"\"\"\"\"\"\"\"\"*t=Eý<¦é\87\95\î\Ã\éºÁ\ÆýO\97d\Ã\ìn¹\r\99\92GT\83\97\ç\\[]Ö\98ò^ì\98\8cÛ¡lr\9a\Ø\â\8b\ 6\10%\86²\ 4\82\17\92k^\8d\Þd\Æý\â\çm\âü\Ç8\ßÁ\1d\8a\Þõ\ï¸ùn[$[\Ô\Z~Ec¢|Jüb\18\89~a|H0\9bó\9b9\Ùk\Â\à\11\Ò\ÕDDDDZ©ó\87¥\Ë\ß|Jw\ç]­\8ai¶\ä\ë\9e÷>\9e,|û\18öU°q4\11Ç\8c¹\83ve4$\8b\9c\e?[p|¿9c\98\Ò2«ÿ\0\ 6\1cw\ 3\95¼¶tcG²\87\16t[.bÅ\97\Ñ0_lf\É\Õõ=\9bk\83(\8dø\138\Ì\19Ô\91§\f­c\9e\ 2\Ça\87\8f\98Ú®\96DDDDDDDDDDDDUÀú\Ûø\ÓZ \ì\çJùJ¾¬\0\Ú9#\88yC^\Ùn0!6M\94\1e:Ù´\çk°Jv±¥$j¦\îV¥\8e\12¸\8d\ 1­&\10yn$¹¸\Ù\'¢A¥\ÇJû\8a÷78\ 3»EJÑ¿\Ûôâ·\89õl\99¸Ï·\ï,cÁ\9c\ã\ß>\ß<~±\ïû\9a\Ò\"\"\"\"\Æ\Þ\ãj Ýº\9d\1dZO\Ç!¶\á.J\13\9añ\à­&A©Z\Ë\18\9c<\å¸\Î\fH\í\16]ûø|þ\7f\aü~\ e©·\ÓM\0\Ö\1enú\'\81\0\86dM¯\95\ç\És\ 6\â28bð\a+½§3±\8c\àCü\8c\80-!2\Öý\å\bñ\9c\90\8ck®$DDDDDDDDDDDDPMõÀ\ë5\î\á\î\84\î?O½¨y+\995\9f¿8n~\15òu}F\Ó\éc¾\1f\92b|É\8c\93\âÿ\0¨Y\Ã1\91\å\Ù\Í\1fF®·\ 6§\Æ\ eùw\Z\10c\ËÚ»#»Î±\9214d°5m.½H\ 3\È#[\87\18\81\89\0\11\18÷\å\Îhc\88Xv\18Ƶ²\áDDDD^[\ÎQq;\859\86\v²\æ¶g\16ò\fW9¾ÿ\0,bF¥n\1c\å¾ß¿\960ÿ\0|{c\ß\ß\Û\Ûöª¥ô\9eid\Ûü\Ëp\ì±dmv\91\Æ<ú9\äù\7fH\âk\f¤.\19\96µ\ÙÁ\n;÷\ 1\9f¬5\Ù/Á\Îk\1c\çb\Ú\ÄDDDDDDDDDDDE  \8f[\9dn\v\ÓÞ\97\Ü}~ù\83\Ù]ª·\îöÿ\0/ù^/¶\95õü¿¾>\ß\áp\ïoõú}ÿ\0\Ý\Â\Ï\ fH\95~!øiФ`\7f\f\Ûs\Ï<Xe\ßû\Ù\1e\ e¯\ìþ\ØþØ­À¿\×ü¯\ïþ\98\93º\"\"\"\"\ê\Û\Ì\11Y\é[\85iÿ\0ȱն\b&ÿ\0ò\97S.9?þ     \95\\G¥+\82\ë5\8f4\9d\Ç-?\Ø\n~\ 4Ò¹Ã\8e*!·ú\82\Êû>Y\ 6¿\ 1\Ïq2\ãý\91a\é\í\0½ß\9fv\È7\Ûò~\19\9cY@\88\88\88\88\88\88\88\88\88\88\88\88¢¯\ë\ 3Ñ\83±x\9d\9b·\9a\e$;\8f\8c§E\92\ f/\81\'c\Ø!\ë\9fhð\ìý\8d\É\âÌ\97\19\es\ì\Ò\äosp\\a\Ù3\éu\Ñgh\1e\18z\Å\ 2Àoa¶\e\1e\82\ç³\á\93A\Ý÷«\8d\96¼\98\Çû\Ìl+\0\ 5\8fÿ\0}\82nT\83\11\11\11\17ø \Æa\90E\e\n\"±\Ã(\88Ö¼d\eÛ\96¼dc±\96½\8fnr\×5\Ø\Ë\\\Ü\ç\19\Æq\9c\áA7\Ó\17A\1e·Ì\9f\9clG\Æ\ 6*\ eG\ä\8a\b\Âo¶\Z\Ø\æ\í?#üq\8cc\ßô\ÆÒ\89­ö϶1\9cÿ\0\7f|)Ú¢\"\"\"\"\"\"\"\"\"\"\"(\àú°\ 1\83xJ\ìi2\Ügñ¹\ 3®\ç\Æs\8f\Ûr\îp\Ò#|±ÿ\0\fûH\Ë}ÿ\0\à\ì\ãýVsx7«\rW\88o\1d\10\86,\Ê\ê\Ï\16Z\e#c\e\93\ZÒ\84\13²R\ç\r\ÆHL°\Ãg\Í\Þ\îø1\8cò\Ö7\Ûk\b\88\88\88\88¡\Ñ\à[C¦\Ðü\ãú\84i©\0xð+ù\86\9aXG$\8f1²]Ë\969kl²3\88Owe²,e\Z@\ÚÏ\80\ 6\"±\80\18ÀÁ\r\93\17DDDDDDDDDDDDQ\âõO\Ñ\Ø\ßøL\í<jÀfA\à_ðe\áÇ\875¾\Õ\Ô\\Ù¢\ÚÚ\9f9{\9a\ßhµ±eJ\Ë}ò\çý\1f\ 1µ\Äs\e\9c\ãð±\18\91<Ix\ã\11\1dòsºwÁ\12q\9fø\ ef\85O0Mÿ\0 Gc?\é[:DDDDE¡\Ï\Z\Ýn\'\14ù(ò\ëÌ\92ª[\1eG=se%¤;?\ÆÀ\9f\"\8f]§«\87\16\v\8f\86\ã\ï\10®e\ì6C\Æ]\9c0Ö²²\Ö\ã\ä\ç?|h\88\88\88\88\88\88\88\88\88\88\88\8bWþf8>ϱ\9e6;I\Ãõ\ 5dk\r\Ã@\97_\16a\ 2\ÙC\81(\8fh\àO|W\Z;¥6%\89!\9dÀ\11\86G\á\99ø\948\ÆL<\98\è\æ\8aþ1\é\ÇXxù\ád|iü\1d\Æ\Ô\"\bþ¿¬q`jõÂ\89\86\àyø1¹\89\80»\ 3ǶE\8cýnk^\×7\19P\88\88\88\88\8b\áT\ë44s®¬ªk#Á\9d±Llû¹!û>\Ë\19\8cÁ0Ó\9f\æ÷7\ä\Ü\14\9e\ß^\18\ß\ëwôû¯º\88\88\88\88\88\88\88\88\88\88\88\88º¾\ç¨\Óo\9a½Î¡°\8c¦¦½\8b\88v\ 2\ 3\Ú2¼80\8f\8c1\ï\19Z\Üý\81f}ò7c\Û\19ý\7f®>\95\r4\1dr\8e\9b^¬k\Ù[CS]M^\Â;\ f# \Õ\Ã\f\18\8d{\Ú\Ö5\ÏÀ\0<9\Økp\çc9\Ãq\8f\Ö>²\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"ÿ\Ù',4,0,'','','',''),(59,4,16,'9305bf01b2f3b2a5','17505033475bf01b2f38ff6177578340','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007','image/jpeg',80,80,2356,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v     \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0*\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b \n\11\12\13\14\16!#\15\"\18BCÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91ù\ãõ1VüwZfº\9b\bJ®\Ø\í¨!¶\9d\85m³e\ÙMg Ü\91\13\ 4\a\14|\\qb½tÙ\99\11ö$\15[Q\àÁ\Õ\Û|\'¬\8fJ\18¢+\18\Å_\8aÎ\9fy®ód\à]±î§\91~\Ü\èN\9e\ÊM>et-e°¦µM§s¨2T9¸\Õ4ZO\ë4\Z] W\9a~?;\ 6J³&\Ñ&\ eðu\êôç´\84´f÷}v\ë\Õ+¬\9a\Ö3V\Ð\ì;j\Ó\v\1c\ç\ä*stn]\9d¼.\87\98±\Ç\19\â       ¶\í;E¦\\V\1eÀ\Èu0°\ÏEW\ 3}o¹\e\f\16H{\v÷^8\ã\8e9\13{\á\Ù\ 4õ\ 3¦\1d¢\ìòE\1có´v\8eØ»\ e\n4\Ì+\"J\Ú`kg¿R\88+\b\ÊUøò\Öl\Äƽ\9c)\1eÍ\94¬üÑ\8c|±Po\8bÞ©\Û<°yCÓº\7fhX\',\98\Ý;Jõ»\13t0\×U?-M\85̦\É\ÛR\84JcûX\9e·\8e\19ðqòXJ¿\1e\Ãc\8f#-ýh\Êqt\15F£X U+TjL\ 4MV\9dN\81\89«\Õ+0A1\e        ^®À\80\Ä\\4,Lx\Èlp£c#\Å\1c0\85a\bi\81\Ùm´\'      N1\È9\äo\Æö\87òa¢¤t\Æ\è2\ëX\90\10Igµ\î\Æ\×Ö¹\êå\92\81d\91dl72\88ø\é! m\Ñß\92\ 4z\äk6\à%b\ f`ofS\1f \91dÄ­\v\ 4òe\é\ç\ïýã­\97m©rÙ\9aÿ\0Ll@\ë{?D[\ìÓ³Ú«h\ëb\10\f\94E¯]\ae|õ\ë\é;e\1eB.\ÉO³W\90\ 1 <T|}\98Ixñ$ \9fµ\ßLm\9a^û\Ô:»xk\89\ 5J\ëýÁ¯©\Û6\95\"\â\12Ó¦U¯5øû,\13ï²\87\1dK\ 4®6H\7f\1f\ e/,?ö3\95+(\Îy\é|q\Ç1\8b\8bVØ·?\8a>þkÚ\90\84H\Ù$úͲ&a\ãDK\8b.P\Ê\\Vn\è\8a\r¶³\85¼\\\9akª\0Vq\9c\á\â\bm¥%I^S\9d\ 4ý\19¯Dµ\å\8aþ\83\Ö\Ú\ f#¦;q\984º¶\13ö\9c\9d\99¤\b)±\Ò\æp\ê\Ê\ÄS\aº\94\8f\î\æ\ 4hÕ¯\1fJ\1c\Î-&\ã\95Mz¼g\é\97\ f2\12\90T\ 6\98\90´V:ó£©\9b\fx\81\Òù¥lb\9cµXc\Ã!\ 2\8d\96ý\ eѯ\ÃB2\9c\95\86\90\188Gô6\9eX\ã\â\ãE\Üz\Ïã\9f¥:\1fb6H÷\íg\ÖýY^ºÇ\98¼­ø[^*\à\9d`¯)Y\Â\7fÒ¹*aPL\ã\Û\1f\16#\9bN?\8crzq\Ç\1c\â}\86Ie\á\88i·\Ç!§\18}\87\90\97Yy\97Q\96\ÝiÖ\97\85!\Æ\ÜB\94\87\10´\å+Nr\95c8\Îq\Ê\Ä{\8dÕ½\8d\é óA¥{³®ª²¶>\92^v}\8ev\8c¸D\7fXz\êò$\8cN\ß\ëÄ\82\Þs\è\Z\ßI«\Ø$M\×k\92y\"X\"À«\Í$\97\ e\8a³\v\11en \ÛZ\ï}j\Ý\7fºu%¢:\ë¬ö\8dN\12\ïFµE)j\ 6r·a\ 5\99\bÃ\9aC\Èl\81\ÜX\ï%\ 4\86SL\98  Hx3\18\1ei\11\Ûȧi\b\éGF»IÚ #\ 5\99\9b\Òzv\Ùo«\Ä\È%\Õ\Æ\É\\\Ò&\"\éAJ¡\87\19}Q$\Û$a\9a\94\Ã.´÷øõ\13õ8\87>*Æ\8cÞ\96~\86\ f\äc´ý\8aò½\ÝB\Ë\Ý\16m]·cÈ¢~Ú\94\98\r£²S\è\Å\î\7fcO\n\9c4\13¹\Ö\11E\Õܦ@ \\\Â\ 1)d\0\á\ 4\aôøv\15cG\1cq\Ï\ 5\ì\çft§O4nÁ\ìganñ\Úÿ\0TkHe\ÌY\'\Ïù:óªS\88\Z6\12\12\91\93vIù\'\86\88¯AG¶\éòÒ¥\8c\18Í©n{\ã\0]_\ì\1f\95ÿ\04\84\ãv\ëk9~,<l\1e{\ØÖ¶\18\9a\85R÷\Ý>\ËWX%c\æÁ\r-}\8b°\Ñ5EJM¦²ðV\88ªÁ\ä\f\90\ 5_\ã2\äø¹d\94ñcÓ\8d\81[¬W;\1dL¹w/\152\r\90\89\90\îV\Ñ\Ø\1d\8f@\ÓRL i\19\Ø\ê\9eÄ\9f\93\×5©c\ 6m#8õ:\95\\a\91~B\880\ã-m*tQh\94\9d_M¬k­oR­Ð¨4¨Xú\ÝB\97O\85\8f®\Õ\ë\15ø¡\Ð,l,\f\14H\â\Æ\ÅF\ 23hdP\82\19\91\Ùm8J\11\8csÇ»y\×\n·oú»¿:½t1ø\Ê\Þö\ÕW-jtȬ\à\82\1e²\Ã\12\fe\8c1\Ô\ã( \Ê\ìªÁ\9c\10w\1dm·É\8f\15\86Ö¬óO¯N\Ƴør\ß]\91ñ!\äJ,} j\ÙûQ\8d­\Ö=³g\Ê\â´öó\98L\14u*\É\15H\ØÒ\8d\ 3\ 3)û$-~\933H\1dd²k\Ò\19±\Ôf\86\87¹°\15x\Í\ä\12¤­8RU\85%XÂ\92¤\ç\19\9c{\ã8\Î=ñ\9cg\1f\Î3\8f\ã8\ç\Ï\1csQ?-\94Ù¯*~j:M\âJP\ÉDuO@kw»½Û\98\88Ò\88 \9b\8f\ÂD\Èz\Í^W(q¥8Ê\83Mv¢\ 1\82£\87\Ü\ÖY!ó\93\"\87pm¶a!!\ëP\Ñ5\Ê\ìTt\15~\ 20\bX8Hp\87\8d\89\87\87\8b\15 c\"¢\ã\83m\91\0\8e\8f  \86D\b1ZhqFe¶\19m\r¡)\Ç\Ùñ\Ç?!v\×\Ô-\99\ 6\ícc\Ò*\e\ 2¶úþ\×\ë\×j\Ô5®\r\ç0Û\8da\ÇbgB<\a\17\86\9du¿\9a\Çʾ·\1cG¿\Åj\Æ`·d|h\é]\ÍXùi\ë.\Å\évâ\80\87l\rsºú\9bn\9c\Óòµ2#Ò\97!E°\Ñ*2Pú\ëgS\Ç!\81Z\91¥\Þë\92±\æ\Å4¸ð\n\86uL\9c4Añ!\ß\Î\Älݯ\Ùÿ\0\e\Ýýj½ÿ\0;zHd)\12û\ 6©\Z\Ü%[²\9a\91?K\Þ0P\83²8\912E\8f#\0\å¬\0\ 4\8f\8dmv\9aó¢\ÇF\9eô\Ô4>u¸\æ\ 3úÉ­G\13\Ô7\å\ 3e:Û¥\18\ïK:@\0\85¯\å\94E\alv\ä\ 1\91m{ÿ\0®\11 F \16G\Û\1fú²þqÿ\0|s>\1cq\Ç\1cs\ 2²\Z\Ìx\ßRõceE\'\ 1.\Ï\á²\Ü-¡,!M¦`º\çnjQq¤\9a¤º\96\ß|peA\19µ)\95:\96\ 1\19\1f?­¶ð\Þz¸\ä\ eÕºý0\9eH;\99°S\1c\86Qy\ê\9fC#ñ&\96\14\9c\98]Wa÷¬SF[ÿ\0RP\ë¢\bl2\96\1dul²ð\ÙV\eK­\áSÇ\8e8\ã\8e@\Ùz:W\äò\81²\15\10¬©\8e\87\í\ÊSs\Øo?\ 4~G`t¤\ã\91+w\1f\14\18l\Æ\ÛW¶U\86\ÝS~ÿ\0\17\97\1c\àH£ \97\8c@\ì$²\19\1cg\ÊKM¤\97\11d¸+\ f?\84\á\Ç\19\19\vpv\96¬¡\95\94B\9bJTó\99W?\1cq\Ç\1c\ëd1T[g\ävrsC:\ee\å´\ä\84\nû¬¼ð\èw\Û\æ\96]xv\1cq¼gâµ²Ò\95\8c\å \Î;<ÿ\Ù',5,0,'','','',''),(60,4,16,'9305bf01b2f3b2a5','17505033475bf01b2f38ff6177578340','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007','image/jpeg',48,48,1488,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b        \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 1\ 5\0\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0  \11\12\n\13\15\16\"1\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿\ì.\é\1eY\Ö\Óû\8e\190\9c\ f\ÆK\ËŤ*X2 \7f|\Ë\Çf\Î\ä\8c\12Yys\82G!µ+\15\92\91c\91·Tଲ´\Û>¾\90\99\ 1³I¦\Ü\Õ]U¢\ 1n\å_Pf¿\89\Ø-5ô\e\84a.-¸\é\é\145\87\12Û®6B]e½W\87\87\91\1fò\1e\ì]\81\Ä~©:\'jjy3 6e½5\9d-M´G>\à\92u3v¬ªk²\Öx\93\Zøx\19¸J§\8d\82=\85!ð&\9b\8f1\87\ey\86Ö\99\íø\9cz\ì \è>\10®ö\íª\b\19¾\8f\ì<\Ø\ì¯]e\Æhû\rWQ\85k\93\86¬Ube\88ýb\86\1e\Þ\ì\17óû#\Ì:Ó³\ 4J\Ã\r\'\923\ 2\1e[dÿ\0 »\'°\ÞR\çÒ½\84ð·RZi¡sÓµ¢w?9\ÎÔ¨·\1dgt¡\ÊØ£«\Ä[@\1eZ¸\í\84Ih3¦Az\Î&f\9d\fº\Æ\ f\92\8dr\fø\959!@½Ew\ã~\Ìx\'Ju\89UÀ\ê\16\ÛX³U}\91Y\8dy\ç\âb¶5\ZX\8aÝ­P\8b\'\ä¦à¥\8d\r3Ð\82\96\ 5\83\15* D\96k\ã¬\Ç\ég\87\92\×\Ü÷\v\Ê{\16õ\É\Ñ\1c\ËUX­\ìy\88\10\9f\81C#gk©\16-\958r\8b\Ï\ÊB\Z\ÌTs\95bNs\nh&&\Ü)䩦V\9c¦\7f\8d\ fJC\í\ fZ\Ô\ e\88MC¢xbR\É\Î[óWM°¸\ë5FR¿m²»P8Ø¢s\83\e\12\91\85p\97\ZCY±\ÃXÀk\í\800¥r¿É\9f¦-\Âó\96¡õ\9b¥`\139\Ð>\Ðö\1c.\8f«\9e\1e\16¡I\8c¹\Ò     ·LÉ»ôyܪaù\bºò\7fHgp\1c)vI\7fº\v\8c\ 5\92«Ï¬þ\17§ú\à\â­\'\È\ÔùuY\7f\88\"I·Û\96Â\85þa°\ìò\ 4دVF\ 4Z\96\àQò\16)\ 3q\f\ 3®:ð\10¬\Ç\ 4ó\Ï::\Ý[\ã\ç*\Þ{\9a\87κog\ï}¡-\88M{¨\èöM\81o\93ú)\×\a\83¬Å\91(b\ 5a\1f+(\â\90>\ 4\8f\11¼e\Ò\Î|q\9aN\\u8̶\ã­Y\Ò\Ý\Å\ 5    \Øý\Ëq\Ø\Zò\91³\Ç\16\é\Ï|+®\í\ÓZþ\87­5<\Ò1\'G\96\è9\Z\99±\96½½·\ì\95÷¢flpV    \Ö(\15GJ~\11ªN\rÉ\89\16¦k\8d!¦ôù\1635^¬ k³®&7#o\91§T\á+òv\É\16\9c)Ö¤,òQ\81\ etùͺi\8e$\Éb\f\'\ e\16Jð\ç\Ù÷r©\á\ìÿ\0\Öü¯m\15\Ì[»O]àµ\9fYñ>\à\8d\Ü\Ú\ 2\Õp\8f6S_N¾\83á\89´k\8d\90\14N?|MN\Þ4\18,ª^   J\97\821\84\16 \å´\éb>\Äl¾\Ä{\9bhU­\83Õ\9a\92Û­)jd\ 1vvÓ¢\97\1f¶56§\95)öBT\9d¼ø5\ 3±£5\ê\8cwõ\\\Ø&kFk\Õ\È\Ü\âBòMXV\Þ}\ e\\d\9ct\Ôl|\Ì9\âJD\Ë\ 2$\9c\\\9cy\r\16\ 4\8cq\ì6PG\ 4[\v[\ 4\88Xδ@\Ä2µ´ó.!\ÆÔ¤+\19\Ì\éö\á®\ß\Û|\v·µ\8bH%\æow>p«\Ê\n+yq\Ã\ëòý=¦\84²Æ¸\9cc?õd«\îI\80\8c¡°\È}k\ÆP\95c4xa\87\fv\ 4\11\96\86\14VZ\18a\ØBZdq\ØBZe\96[F0\86\Úi´¥\r¡8\ÂP\84\á)\Æ1\8cc\Ïo\ f3öÚ´\ 5\æ«e¤\Ú\âÃ\9c«\\+ó5{$,\88\95\1f/\ 3?\1cDT\ÄY¼\95²@gÇ\96@¤°\êTÛ¬º¶Ö\9c¥YÇ\88Ǫj\Ô\í/\×\7f)R\ìfH\1d)M\Öm\Ô\7fZW.\äö\ãk\13\ÓppA?\97Ô·\7fó`À\8e\8ek\nV~¬\n\ÚSýp\9f\1dM\81G\8aصrj\93Ku¸òe+R\Ë[\18N]Á5k4=ª?\ë÷\ÆSñ\99\bQp¼ÿ\0¸FU\94ÿ\0o\8f6~\1e\1e\1ebµ\Õ\Z/[S!)\10®¾ô\\\v\e\84\19{-\95 \\\82\92¼\ãýú8ZÐ\9cÿ\0¹BSó\9c\ç\ç>\7fÿ\Ù',6,0,'','','',''),(61,2,17,'9305bf01b31f0b98','10942403815bf01b31eec59540800317','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','12242958235bf00e8006f72987476580-4.jpg?ts=1542459008','image/jpeg',300,300,11008,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b        \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 1\ 2\ 3\ 5     \ 1\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b \n\11\12\13\14!\15\"1\163A#BQ\81\82\17\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/r9¸f3\9cDëº\9e±®\8fð±g\ë]L\ã\Íϵ[d_\å\"¾þW\äñ¿\19Ķ¬\94Hx\8c\ë»x\12.¯+\'=­\91\ 2ûY©´­\97\18f0Hð\96\11\åF÷\98}`\1e\ 2\Æø<|\Þ\r\á\íRľ\Õ\15\94\ 1v=¢¢/\ÄyÀ\8b¸\ÛZ\83\13d´\í{\Û.%\ 5F2\1c²9#\93\181\ f©\1e\\ó?\åC\9b¤\96VõÞ\8e\Â\r\å\95ùMÆ\95¼M\ãG\a\Û9À£\ eO\1d·W\9aøag\Ä,\8f\"Q\Ø\á\8cx7\Ú\æa\Ë\Ìõ\ eòù6\ä-\96§Nл\85\Þ\Ý\ãq¾\90ø\Ôz¶¡\Ø.À\ì\Û-Ì¡\80²\8b\1e¦\8e\9bn\9bic!±£\9eI\ 5\ e)\88\Ð\0¦sp1½Ø\95×\8f\ e\98ú°9J\92£h\87\Û^I\ê\×\e\\Î\8b\996\1d\83\Úuý«x\95L\è¸8®«x\êú\83\99\90\94\87üV\Ñm©Ø\82P¦bH£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8b\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)\ 1T\É2\Þ1\12CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ø\êy\ë¶WPKüg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ek¾º\ê8­5¼ù\Îo\Æ#\àÁº$\Z\Í;\Õ\äù¾G7\9fñ¯j¹\8a\ïs\8b\ e\ÆE\8e±\Çõ\Ï5/\19h\î>e{\aR\ÓA °¡b;\'N\f\8ben\18\ÓeEÅ\96c\19\â\Î\ 5¢\90¯\88\8fN\ßm|\9e˪ä\9d\80\13ºý\Õl\96\14¢òþ\ÑQ\92Zo\91[ &\9dU\Æt\ 6(¤J,\8a¼û\Ç\Û,\ã>\8a1l©\çÂ\83²ÁþDp\ì¯ñÿ\0\â+¢þ6õ\18\94\9dv\áº\0\î/\ 4\\l<½¶B\87±ò\8e\Ë2>\\|\Zf\×>9lb\Ã\f\ãÎ\93UY\fÃ\8dL9Æ\85\a-\8bñf6h\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88¢#\êAõ\ 2\13¡t6=:\êm¥|þ\Ø\ï\14$ÿ\0\16\82-}\9dw\ 1\ë6AÀ\Û9\Ð\1f\99 ±\ä+P\94\8d\Ö\é§\0\95µo\ 4«\8d\98\a\8b\ 6\1e·µ\Ö+µ\í{6÷³_n{\9dõ®Ñ¶m\16³o6-\8aòi\ì­\î­\ì\8eù3¬lgIy\ f&T\93\91\ä)Hü\ç9϶=\9b\8cc\1f\ 3\Û?¯\×÷ý\ãÿ\0\9c{\ç\1f¯ù\ã8ÿ\0\ï\vñO\a\Ó\Ï\é\9e\ eÿ\0\ 3M\î÷\91-\'.\Ôg\8e=ÿ\0\fõ¯e\86`\9a\â7\Ï/\83¸r\ÍL \8d\8f-­d\9am:G³\ãDx\ä\Þ\r·\'\Ä\rj\Â\Z:*mb\9e»_\×j RQ\ÔE\14\ZÊ\9aÈ¢\85\ 2\ 4@\ã\â0E\8a\ 60B\e\7fyökqòv\\÷g.s\9d\9f¬\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88µ\ 3\æ\çÉ\86»\âó£[\×3\ ePK\Ì;§\ß\Ç\\\ 3®=\8d).¹&\Þ\11\9f\ZyÀù\10ðú]V\eK°l/\14À\Í\15\\B¾´r§þ<CS{\É\\\95¾ó\16ý¶r\8f(mw\e\Ç \ïWs6-³k¿\95\99v·Vó\Éó<\99\ 4ö`\Ä67\f\8f\ e\14Q\82\rt\10Ư¯\8d\16\fXñ\Å\Ñ\×\îs\9cÿ\0|ÿ\0§·ü°¦\89\éjðt\Î\Ë\ï\15þ@ûQ¦}ü\ f\Ç7\"7\ 1\é×±2øü\9d\ÈT²\ÆW\îVUòÃ\80\17P\Õ$4\7fÁ\17.\96û;\àH\99\88µÃ®£·\9deh\0\b \f\14\820G\8e\ 1° \8e\0³\ 3\10B!µ£\10\84\83\e\Z\Ö1\8d\ÃZ\Ü7\18\Â\æDX{\Ý>øõ\7f\Ç\Ç\16F\æ^\Öò38\ãB\9bp:\186,¤»Ø§\ØZ\90.> \Ö\Ò\ë\Ðlm\ì\å}mùb%|93\1c̸Ì\8eð\ 2IC\1f\Înõ\89ø·\ã\È\í7\13Uóo`\8d\î6\12&½¢\Ùññpò\11\Ís\ÄNI\87A\1c\91\ÄÏ\81\18\123\8c½\82\88G1¸&,\Äõºu\ 5ò°\Éý,\ì\8ch_/lÈ\89·q\84\ÙXg¾?«\10\Íe^,»\Û\ß?\ f\Î\Æ=ñ\8c|ÿ\0~ø\Úw\ 1ú£¼:s|\Êj;>\Æ\Èá­\96\Ò+\8f&\1f/hÛ¶¥®U\95¹\Æ?\Z^û.\81º\83I\9c¼L\ÆKf\f9\Ï!\19ò\8b\1cò\99¿\8dKrÔ·\Ú8\9b6\91³P\í\Úôö±ð\îµ\ËX75\87\Ã\Â#á¬\99\0\Ç\aÙ\81\1cDx\\ü\14m#>ln]\8c\88\88\88\88\88\88\88\88\88\88\88¸\ÈA\84d1\88Á\bLy\nR?\f\18\Æ\Ìe\Ï!\1e\ì\á¬c\e\8c¹\ïvp\Ö7\19\Îs\8cc9U\ez\9aü\87\Ùw\8b\Èþÿ\0¥k\e#,ø\'«E\93\Ã|s\Zª\Ï3h.ö:¹%/!n\í\ 3¡E,k9·\å~ªX¦\91`\18ñõ6L\84øD¸±\89\88\ê\"\Ø÷\8a/\1fÛ\87\92¾\íñ\1f\19>\16©mhí\93\96\91_ :\8f\19\ë­üý\86|\87\8c\à,s[å\91µ\9a\É1ÿ\0$𬮣ٺ\14\98UópÛ¤ø\87\89´\ e\b\ã\r\13\86ø«[¯\Ô8\ç\8du\9a½CMÖª£\82%}=\15<vÆ\87\ e4h\Ã\fp±­n^\æ\0!\ e\b÷ýA\13>,Ç£¢\"ñ\1e}\ë_\0ö\9fD\91\Æ=\8d\áþ?\æ­\ 2L\80\Ì&§Èº\Ýv\ÉO\89\91\È3G\98\18ó\Â\\Æ\97\1c\ 4\98òc8G\ 4¨ñ¤\88\8c<`\10pHòù\é\14n\9fM·ö\a\Æ=\85͵mh\rwyÕ­ºÑ\96\96\83\0\ã\ró\9dÅ\9b\85\86b\9d\ 3£J\99\8d{j\97bs\16Í\91\á\\VV\Õü\v\ 3\9ak\8dr\â\×^\Øj¬¨¯è¬§S^Q\ÜÁ\95WqMqW(°l\ê­k\'\b\13k¬«¦\80ð\çA\98\0Ê\89(%\8f C(\Þ\Ì|Õ±Þ\83y]\ï\a\8dͲ\1d\ßZy\92ö£Qu\9c{\r\8b\88v9\126\ e+\Ú\Ø\12H)cYj²\8f\81Ö¾Y¤fD\Éú\é\é¬\'H\8f\ fù)3¢\ÆlWZ#\á·Î\87\\üµhÆ©«\fn&\ìÖ§S\1e\7f ðe½¤s\È(\9a\11b\Ça\ã\Ù\Å#$\íZ\9cinpó)\ÑÁg\16\9e\f2¾Th;\ÊDDDDDDDDDDE®¯,\9d¹¯\è\ç\8f^\Ïö:XbÊ°\Ôx\ÞÖ§U\812fk£Yî»\8e\e©\ê5\8f\9e\10\90\Éa{o\n$S\8a4Dzi£{D\92ß\90\9dI$¹r§Ê\93:t\99\13gM\90is&K1$Ê\97*I\1ci\12d\È3\9ec\È9\9eò\98\Å{\ÈR=\Ï{\9c\çg9þtV|ú?ü~?¯\1d-\Û;\8fºUÏ\81\Èý¾°\89\9dtS\ãÈ\89ø|\'¦É\90\Í8\91\86I2bL\8f³\Ûʸ\ÚAo\bpI*\14ø\15\11\Ìúh¦Ä¿\Ñ\11\11\14(}O¾\ 6\ê¹\ãD\Úü\85u7Mü~r\ã\Ê<Xso\1c\êu\99yykK«ø\à\Û-U$\ 6\áó·­^\e\88fÿ\0\e\18\17\Õ\0\Í;\ãZþ5\16(+eE\ï=e\ì¯0u\v\9c8û°¼\13´\ÉÔ¹\'\8d\ïa\Ý\ÓN\e\äf\ 5\80\9cd\99C}\124\98\84²\×\î@<õ\82\Ù1\8cð?\ï\85*\15\80\8d\8c>ÿ\0q¯\92\8e\9eqwg8ðø\8f/`ª\15G!j\æ\Î\19c§r5(\Ù\a\97\19\ 1[\1c7!\99\9aÉ\98\ 6 \ÙB\Ã%UÈ\9d\ 1Á\98m\82¢\"\"\"\"\"\"\"\"\"(\88ú\Êù\Êw\1ex\Ù\ã\Π\8aß²7a9\Û_¤²n>¼81x\à\f\äQJË\9cß³\"dú\88q^1»\18q&\ 4\8f\1ceµz¢õ\Î\0\â¹\\\ë\Ï\1c\'\Â0ffºo1ò\ç\eñ\\;\f1¥\Ì \\\85¹Sj1\æ`n\ËZL\Å-»\ f\86;8kòÏ\8es\8ce^\83À\9cC­p\a\bñ\1f\a\é\Õð*µ~$\ã\9d;\8f(\àU\83\11«£W\êt0iB\ØQðÁ´\11\ßøy \ÂÁ\8d£kðÖ\8cm\Æ\18\ß[DDD\\\12¢Æ\9d\ZD)±Á.\1c°\Z,¸\92\829\11¥F\907\bñ\ä\0­x\8c\ 3     \ï\11\82V8e\e\9cÇ·-\Îq\9a\81½G\9e9\a\ã\ÏȦ\ë\1fNªm\7f\bö4\16\1c\Ý\Ä\ì\0\Þ\È5\ f¸¸\92\r\çO\ 1\ f,¦;\è67b\Ó\Ü0\ëj`AÙ«©*cf5S\9c´\ e\8ac\9e\8e\ eê³\88;«È\9d@\Ú.L\1dg³ú\91n4h\13\'eµ\91¹3\8f+\ç[\Î\15]\7f\Ë\ä[Ý£S\8e\æ\É(FLf¯QÁ%}a\86\ e\Í\ÄDDDDDDDDDE\ 4¿[þ\Ä\Üq\ fCu,1ø~y#\97v,\93å\9c\8c\8df±¬\Ö5\99o\ÇÙ¯\ e^÷a\Ù~rö\9d\Ø\Ã[ð\Î_]\Ú)\13úZ8\ 3R\ç\ß0\\,\ÍÀY\93\v\87t\Ý÷\9cª¢<#\91\12^ä\82®¾\98S\ã\e\19\19\â²N\Çù-k¿Ê\96\b²>$úr\"[¢\88\88\88\88¢C\ë\12\ê\í\8f2x\ä\Óy·Y¤\87*û­|\ÃOµ\ì6!­\ 4\8b¢q\î\ËOq©\ÝW2n\1e)`«\81ioU³\Ì\Î\7f&(EK#\Þ;\v\aW*-\8fø\82\æ\É]xòq\ÒnU\85\1c\92¤\ÕsÎ¥¬\8cBú¾M\Ç%:O\19\12C°l\àn\fAn\ f\95!\8eùe\à      \18\11\Îk\1dv\Ê\"\"\"\"\"\"\"\"\"\"\83/­÷^    :ÿ\0\Ñ=­±±ù\11y\8b\955\ã\Ëþ¬\çé\9f¥RYE\8d\9f\ÞF\Üeõ³\v\8fl5\ïö\Ï\Ë.ÀÛ\86WB\8aZ~\8dmnlÿ\0*[\9e\ÐÆ\8f5º\ïV9*¶S²\ìý­\9f±m\Z\13\ëð\Æ|rÜ\8dÑ©->\×ü\Ú湡kXü\11\1d¤¨\88\88\88\8bR^xj\âZø{ò\12)a\11q\13­Û½¤w\11\8cs\81.°Q\æ\0Á\Ëñ\9f¬¸È\9c?\9b2\×\å\84 ñ\9fb;\19¥\Ñ\16eø\ë\Ò6nD\ï§N5=B´Ö·³;)\Ãv\"\88\a\ 5¤mv»½\Òl·³¿Û\90Lp\ê\èj,­\f6¹\Æ(a¼Q\84i\ f\10Iyj\"\"\"\"\"\"\"\"\"\"\8aG¬+\84 r\'\8a±ò´\91d³:ý\Í<}²Ö¹\84;\1d\1c»\í\Ü\1e4\93 \8c\17°\Ï\e\10ö3\Ç ¤\å\Ãl\891NÁ\äÁ\19\ 5Uò)rz46\81\×ù>\ä=I\â\Î_²õ\8f\11ÿ\0£\â7k\e.¤\'\a9\Î~xq\87°<\8d\Ã[\96\11\Ýó\Ës\86\14DDDDZBõ\18òö¯\Ä^\1d{¢ý\96ÀPI\È\Üq\9e)\×\Ú÷»%\95°oVpjk£\ 4\fa\nl\1c¯ür9­h£4ø\91 £\bÝ\9cÓ\88\8a\94^«\í\\ùå\8b\8d9^\f\ 3¿Jꦿ²ò®\Ûk\87\Æ\Ì8\Ö׺õÞ\91§U\Ì\13°Y\99}\9c»\9b[\b\'\8e\ 6\80S(D9s#fDaK¶i\11\11\11\11\11\11\11\11\11\11\7fº\ÍI\Ü^\98vG­WÌ\93ø¼±\Å;V¹\bð#\82M¤;¬×\92m\14º\86\11\Æ+@\ÛE\89\88G\È\ fô\95\Øvc\Ég\Ê9h\é\Ûu]\87EÚ¶m#m«\91Gµi»\ 5Ϋ³R\Ëȳ*\9fa׬d\Ô]U\É\È\b`fE}\9491\r\90\98¢\É\ 2ì\8c\8fg³³×\94\90=)¼Õ¬ð×\98~$\8f³\ÊdAò÷\eòo\ e\10¿6\ 5\×\Û\f\Z½\8e\ 3\r#\ 3xb³\ëÔ¤\93\ 5\94\84¤\18\á´Í\91(\r}·\b\88\88\88\8a\ 2þµ^\è\ë\ 5 \ëwBµ\Ùò\89¸\Ç\Ø\19Ø\8eG\Ä\v,\8e4=\7f\15;\1e£¦k×µ\ÌÈ\88\7f\ågM\9b²@ûq*\13\ÉJ\13ûG\9b\0\ e}}è­\93ô¿ø¼\99\Ð^\8f\a\95¹OZm?c;WüW n,\92\Ö\æ\ËY\ã¯\Åd\8e6\Ñ\ÊLÁ¯\94,ì\96ûûjé­\9d\8aý\9e\îó\15vr\ê\8f\1c¤\93*\"\"\"\"\"\"\"\"\"\"*¡½U\9e=gõ\ f\Èe\Ç:\ê\953\eÃ\9d¹\88þD­\9a(¸\ÅN¿\ÉQ3\9aý\ÓTc\âClX\f\96(°v\ZÀ\ØÏ\91oq&N\Ë9\83\1c\18lh\ã\0½Û«\Ü\È~»öG\819\à\19¶\Î8{\98x\ç\92%Ç¢>#\Ú\ØU\éûmM\å\ÅDGºT!9\×5P¦T\924\99@\870\13K\12i1\10\æW¡qG#\ë\Ü\Ã\Æ\1cy\Êú\94¨ó5\8eIÒµ\8d\86DYB\9a\17\Õm4\Ð\îa7\12\83\8c\f\10f4EsZ\Ïb\8d\ís\18æ¹\98ô\ 4DDE\85\Ýü\ï_\ 6ø\ì\ë>ÿ\0\Ù~w½\Å}\ 6§Zfkº\ì&\8eVǽmò°\Ø\Úþ¥­Ö¾D\\Ë\9difx\91\Îw\9e<:\è\Å|\ÉÒ£\85\98\81\î\Ïmù#½\1d¢\æ\1e\Ór¦Y\1f\9d²mö(\ãL\936³U¥Ë¾\9a=Z \92\Z,b\ 5-pÁ\1f/\8f\12¾<ɹ\99d\Ê\èO\9a@3\15\94Á}2þ    ö^\Úr¾\9fÞ\9e\Ë\ë3j:\Í\Ä\Û\1c\1d\83\8d5KºòGÿ\0¶\ÝÚ©\ì\99W`FI\13J\í\17^\93\88öC4\'\ 4÷\16\83\81)\93c\Ô\Å\14}\9a\Î\Øñ\ãÄ\8e\b±@\18\Ñ#\ 4Q\ãF\8e&\ 6<x\ácD\10\0\"kF \88mh\Ä!µ¬c\Z\Ö1¸n1\85Ì\88\88\88\88\88\88\88\88\88\88\8bRþi<ok>N:=\È\\ j\ê÷r\8e¼#o<\1d±\Ë\a\Ú}g\91\ê\â\14p\8d\1c\98\Î\n\18ö\Ñ^Z\9bfEö\95>ªDª±\91\8c\9c_\95\8d\Ç;\Ï\11o\9b_\18òf±m¥\ï\Ú5\ä\ísk\Õ\î\ãþ=\9d5\Íqr\191Nƹ\â+3\9c4\ÑfE)\áO\88PN\81&L9\09:J´C\Ò7\äj§±\Ý\'?Mwm\8a|\Þf\êC\Ç[N;l\88l´\á+³\È\Ç\1f\ 2\8f\"\8d\Z)\83¨\ e\r\86°h\91\É*\Ä1k#X\Û\fX\9d\Zu\94º\11\11\11q\18Â\8e\"È\90Q\80\0\e\Ìs\99\10B\117/!JG\å¬\18\Æƹ\ï{Ý\86±¸Ë\9d\9cc\19ʨ»Ô\83\å7lò\17\1dÃ\8f\89Ѻ\Ý\Ö\r\9bb\ãn1\Ö\ØóÃ\87y³\Ó\Ì-N\ë¿]\×|F\197\a¸\8faEM$\ä´l*h²$R\Ï\f\r\86L\\Guo\×\Ó\Û\â^\Ç\Ê\aq\ë3¿SN\ÇW8(\95\Û\Ï5Z\92>\a\125\84/\áxª\f\19\ÈIc²<ß\99p(ñ-s\17_\8aPXÆ\84+¸V\ 3·\8fT\Õ5­\17[¤Ó´\êJ\ÝoW\Ö\ë£TQQTF\1c:\êº\ècÀ\ãÅ\8b\1cX\ÃX\Æ7\1e\îv}\ÈR9\æ+\ÞR=\î\ì\b\88\88\88\88\88\88\88\88\88\88\88¡+\ê\9aðo\9ez\Ôo<\8augO\9de\Î\ZMlVs\97\1d\êµÏ\95c\Ê\ZdB¿$Ü«\ë\84F\â~Û©E!¤Hl1>öþ¤y¦\8d\1eþhõºú\9a\ÜVux\Ý\ïo&ø\á\í÷\15ö\9f\8cM\92\9bR²þ\1fz\×r/¸;§\18\ßH\8a\r\ßT ÿ\02¿\1f\93:´-\99LRM\fX\Û\ruD«\ 1Ì®\f¸\12®\8e\ê\×f8\9f¸\\\a\Æ}\8e\á-\86>\Ë\Ç\\£¬\×l\94r\Ä\ì¶\\?Í\8e2Ȩ¸\84V\ 6mU\Íi_\98ö\15vQaYD&0\Ùp£\11\ßV2\ 1\11\11k\ã\Ê\ç=Xu\9f\1fsy\9e\8eÀU»V¡×®P>\99 ¸Ï³¶ù:\8d¬j\ 1·8k¾\ f\Ì\â0\8d\7f»\1c߯9\13ðo¯Þ\91y³fYL\97cc.Lû        òO6t\é§,©\93fJ+\Ï*\\¹G{\Ï\"L\83½\æ9\Ì÷\94\Å{\ÈG¹\î\Îsü\Ê\à_MwN(ú\87â\9f\81LÊ·A\ß;\vV\ eÀr<\99µ\84ª¼u\Æñ\ 6)j)/\"\98a6%j\94\ 1\83B/\È\13%2<V\nG³\Çõ\8f~h\88\88\88\88\88\88\88\88\88\88\88\8b\84Á\f \9a4\90\8aDi\ 2 N\ 3\r\85     \82Vde    \84L9\84\19\18\ç0\83{rdz9k±\9cg8UWú±º\rÁ\Ý5\ï.\8fÈ\9c\Z\n}j¯µ\Z¾\Ù\È{\87\1dSe\8d\8d¬\ï\147\151\ï/\Û\10n\Ã+\99»\97`m\8ea\88\ 2\19¦@\9bnbJ±µ°\92H®©­ú1;M\Ïq;}\Ë]Bf\Ç>Ó®\97\9c\'·òü­jx¤Ì\87ªò&½³i4õÓ¨fd\99\ 5C6:ý\86\ß6µ\8e\e\Ûa&´S\à~\19[x\ëK\'Q\11\16\84ýL4×\97\9e\eûX\n\a\1c\98Uºõ\Ì÷\Çó\9cQ\ÒÛ\8e\Êõ\85ø\ç\1e\Ñ\ÍU\ZTsg>\í\Ã\v\9c»\19§\Íz\a\13\ÑWm\1c§Æ\9a\Õ\ÄRN©Ø¹\ 3M¢´\84\"\90%\99]o±\Ö\×Í\8a3\ 5\ã0\89\"4\82\89\84\11\ 6Q¹øx\Þ\×c\ e\Åð\9cqU]G\Ç\Ú==D \×VV\ê:\ì(0@&\0QcG©\881\ 5¢f0\Öe\8d\Çõc\18ý¿\å\97g\å\9c\ç=\Ñ\11\11\11\11\11\11\11\11\11\11\164vO¸\Ý_\ê\ e\95k¿öG\9c8\ï\89\81\8d\Ç.ײ\ÖÀ±9d7ÿ\0\ 5\12\ 5;\8f\9b9\92\ì\n\áF\82 Ev$J\91\18\r~\1f Xt`{3\ë6\è7\19J=g[ø\87\97;6rV\È4-\80¬\'\ e\êÀ³k2\Øñ,\99»Q\17hú^|\à\8f,\rvK]\15¹\ÎH\19\ eÀ[ªwú®üºw\ fgf¥Ð¾\8dj1®\85aU\12Ö»_\Ó÷\î\Ç\1e W\854\Zr[\Ø\Ö\Ö\éuz¬yrÀr>÷fÀ\éX\18\93\ÊOÅ\8d\14ç\8d¹N\ 4\ f«\97\99ß®J\å]\9f£ýf\Ô6\90gù¹[.\8dIµoúTY1\8f\86\95\9an£qe\1eU\9cy8\b\8d\18»\84l\80O$\ÈÆ\94P\864\9f<±ô\99\7f\Þc\96góÿ\0\92?\"|\Ó\Ú\Î^¸ú\ 3saA¦\Ññ\í\ 4úÈ\8d\94\Êú8ð\9des+]¥­Ì\97\Ê\rf¤}~\ 1l\äN±\ÄHÄ\9f8r²\1e\ f¤3Ä\9c\14\íc\95¬$\ f8\Éeç\94·¨®\91\8c\7f|<!\Ù2!ûþýò,3ûþ±\8fe·~\83ø\9bè\97\8d\b[`º\8d\Ã#\Ñî·£G~ݹ_lû6óº^F\86\11\8a\rYö-®\Ò\Î\\JX.i\äç­\Ä*\èó,-%\ e>\re1\æ\Øò\"\"\Ã_\"\1c\17#³]\13\í\Ï\0B~Ga\Ë=|\å-6¬­n\1eð\Û\ÚjvM¨0Y\96\13\ f\90\e&E$f¹\99c\8e\Ñ\áþ\Í\Î]\8a:¶\Z\v\9dRþóV\Ø\ë¤\Ó\ì\Z\ÕÅ\95\ 5õL\Æ`s*\îiæ\9aºÒºS1\97a\92aM\8cx\Çf\1c\ì4¢~1\9c\1e\ë³ñ6\É\aM\å>4\Û\ìß\91Vê¼\81¦\ì\96\ 5h\Èg\ e\r\1e\Ç[g-ø\bXR\97,\ 4R;\ 3\10\88G\ç\1f\161\î\Î\e\9b\âxú\Ú%þ\85¤^À0\ä@º\Ô5«hR\ 4\ì8G\89cM\nds\rø\Îp\á\94&c\Ø\ìg8s]\8cû\ç\19\11\11\11\11\11\11\11\11\11\17\9fò\97*ñ·\b\è[/(ò\îñ­q\Ï\1d\éµr®¶\9d\Ënµ\8bK¯\ÑUB     $Ë\9dca-\ã\b\8e\"\9c¯\Îs\96\ 4D&qðcó\88    ùjõx\í¶\16\ 5\89\Z\8aª\1cû­j\7fg¶*\áN\9ba\1cqY\18w\\GLi\ e\ 3\n;\17\98\Õû&\Å\ 5õ\Ø\Å~\7f\1e\8fg©µ\8bh\18u\ëô\1d\ÌòW\ØØ´u\r\å\8e\Öv?\91dH\Ìv\Ø\ÛKÙ¶\19\11\9d<\Ò\Þ\Ç\Ù\ÞM\rF©ª@°¶p\â\ 4ó)5JRØ\82\ 4&BĨ\Ñ\ß:/\19^\8e®1\ÒE­r¿\91\Ý\åü\9f´ý\15öÁ\ë÷\1fÈ\93Q¡\Ñ\Ø5\á\95ø[\9e\Ó\î\Ûm\Å\Ñ$\ÆcI\ 6\18ª¨l L\95_oY#-S;\á^½pO[ôú\í\ 3\80ø\87\8e¸{Lª\8fø\90u\î<Ô©ujñGû\1co\81\19U\123\ä\ç%v_\92Jy\Ê\ç{e\Ï϶3\8fcDDDDETOª;ŵ\97Gû±m\Ø\Þ<\Ö%D\ëomï­¶ú\9b\0eƬ\Öy\9afOu\ÈZ\83\9c\Ðg\10GpC\13\1c\Ùó\'Ø\90\Û1Z8\Ð+\â\8f1}V\êúd{\ÛEÜ\9f\19\1c[©I°°\93\1d]\8d\13\82ù\17\17SO>\Öкü\b\Òõý\94\93\13ó-¿\99 \9f[*\\æ°¡\8f$\í¯<\éVQ\çe\92#DDDDDDDDD^3\Ø\1eÀq\'W8\83y\ç^qܪô^4\ã\Ú9\×\Û\15õ¡\98\Ì6<\18¥\93\88Uñ\Üö\96\Æ\Ún\0ñ@¯\8d\îy%þ\Ø`\ØR²¥¯6\9esù\Ï\Ê\Ç*\ÜkTv7|q\Ô\1dR\à\81\ã~ \8d5\àÿ\0\12\86¶k\ß_»r\'\Ð\Ð\æ\Úú\Ç\"\8df*\8995m!\Ã\v\13\æW\Ã<lSñeâ\83²>Vù\Ð\\S\Âñ\19¬i4N\ 4¾R\æ\8bú\Ést\Þ9¦&q\9f¶@£\96#®\ïd³?ùn»\16tS\Ì{\87\83K\86\Ã\Çym\94ñ»â¿©þ08z³\8c:ý¦C\91²>,\7fñ\Ï0\ì5\Õ\ç\ä¾F¶\13O\82\Ûl7B\ f\Î;L\é2~ª\8a\ÇF¨\80\ 22\ 5|HÕ± Ã\8b²4DDDDDX·Ü®\9fp\8fzú÷\È\1dm\ç\íZ\1eÍ¡\ïµ%\86\18-u\8e¿n,¶E>\ËE+\ e\1c\88\174vA\8be\ 2\\CÆ\92\191DPH\8eq\86\1dò\Û\á\ï±þ\'y\97:§$À\91¸ð¾\Ûa%¼I\Î4ðd\ãY\Ù\ã\ã\12d\87]¼6@ÀQ\îñ G,£T\99\15´8\Ò\ìi\ÜLÀ¼¯£\ë^\"|¤ò¿\8a.\Ô\Õs\9e\8e       \9b7\1e\ì\Ñ#j<\Ý\ÆC\9cH\Ñw½\173\99+\ç\1cO8«Ý´kGɬu\89V\18À\ÆSXW6e[m\8di\12\à>\9c÷/\80;\ÛÁ\9a\97`z\ç½U\î\Ú>\Ó\ 29\ÊØ\87\Æ-µ\Ë7\8f?\99¯\ìu\85h§T\\WIa\áË\85>4Y!\95\16Ls\842£J\8c\f¨DDDDDDDD\\2$\ 2(\r*Q\85\Z4a\12D\89\12\b0\80\0\b\ÜC\18\Æ#\9a1\bCk\9eB=\Íc\18\×9\Î\Ãq\9cª¥}K\9ee.»û\Ù;\9e·p\Î\Íi\eª=|\Ø\ìµ\ÜF\8cCD\87\Ê\\\95I/5÷\ÛE\80òÀ¾u\r\15\9c)\10u¡9¹\812HMv\Ò\ÜE\ 6¯g\eM\Þ8<wsÇ\93N\Ì\ê}p\à\è,\86ù\ä\15§ r\15\9cSH\Ö8\ÃG\ 1\9bü¶\Ót\Ñ\12;§\ÌhZPkú\à%Å\97°Zýq\9d2®¨\16÷\957\1eô_£|\a\ã߯:_]zû«C£\Öõ\9a\ØL½¿tH\ãØ·Í\90q\Ú\ËM»j\9a,d\93m­e\æD·5\å ¢fA\ 6\1c¹\Ï1\8d\98\88\88\88\88\88\88\88¼¿\97øW\89{\ 1¡\ßq\875ñÞ¥\Éü\7f³À\95U}©\îT\Ñ.ª,k\æ\8f\99\18\80\9478m\90/q\15Àx\88ñg#\Ëþ\ e\146û\ç\è\Ì\à^M·º\Þú\'\Í3úûa%§\9c\Þ!\ä\n\Ë\1dÿ\0\8f\äJdiFt*-\8c\97Qv}iövE\13F\édº¦¨\84\11B\8bR69Ò\85©\8e¹økõ*ø\8f\ß[\Ì=E\×õ\8d¼\ï1£\ß\è|k\ËZ®\ï¢\î±\n\È\ì$\8d£\8ewi\ÚT;\'\ 5±¢¶- \81\ai\0\ZXUò±\ 6M\9cCÉ¿©\1e\92\b\ÔZ§\90\13ü¹\Ä\18¥«¯\83ºs\'\12\ e\ïMmw\n0£]\Ú\ 3\8ba\16\Ïd\×\Ý2v\1f6%%}\Î\Û\1c\ 3\É\á\Z\â\'\Ò\13\17%yc\Ôe\ã7\81\æG\89Í·ý\93\âQL\91\98P\í7\î ö7]¥\9d;\ 1t\8c¬¶\9bÇ­\85o! a\n\æ\Õ\16k\ZÁ\e\äüdD\Ã}?¬þ}|Iö\Êõ\9a¿\14w\1f\8f\à\ìòl\eWY®ò\94-\8f\86®n\æf.f\95´p¹B\9fU%°c\ÅnK\"\\?¶#\Z\Ã\ã\as¡\Í\Äm°\êÛ®\9b¼Au\9e\93¶\ë;\85c\1c\Ö>\ÃV¾ª\Ø ±\ï\Ær\Æ:]L¹q\Ú\ça®\Ë[\92c.\Ã]\9cc>\Ù]\9d\11\11\11\11\11\11FS\Õ\1d\ä¿=\19\èm\87\ fñ\î\Âú®\7f\í«-¸\ßP%M\Îj¶mGBüG\7f\8f¹\n¹ð\ì+¯!º¶\19\ 3GS}JR\1e\9fiº¡t\81´2>\Æ\Õ\aQQk\7fkYCCYawywa\n¢\9a\9a¢\14\9b+[{[)\"\87]YY]\fF\99>\Â|\Ã\ 6,(QBY2¤\94@\0\9eWµ¹¸\ f\Ó\ï\â\8b\85\Ò\Ív>\Ó[S/³\\\ç\ 6»{ç\9dª$_rG<\97Ì\99©\è5sd\96L\Ö\Òi\Ô3\áÀ\90Áº¶%­\ë,/MEW>d\807|\88\88\88\88\88\88\88\88\88\8b\Ì9k\84ø{\9eµ)ú\176ñv\83\ËZU¤y\11,5nD\Ô\èöú)Q¥µ\8c\96\ 2\Ö\ÞÂ\9b\e\"\961\fR\99\81\á²\ 4\b\ØxýÛ\98²y\1fô\8ct£²±owþ\9aÏ\91\1ec\94G\ÌfµN\ 6\\p\rÓ±ü[?\rüyõÆ\97¨\95°k\äÄ®&\99}ER\Ë\vS\\]T\Ü\18Oa¡)»\87˯§Ë°v\1cg\1f\91ù3®w·\98\91k\10\ÚF\É:ó\82¹\96®,ºqX]\Ô@´\89\8dKlp\9dYO\ 2\ÂTú\b\e\8dEik\98fVW\\V\96t\Îü-z¨¸Û¸7ú¯Z»\Í_¬ð\7f?]\Z\ 6½£rMQe\87\8b¹Z\ì\á\b¢V\Ê\Ä\âÉ\91¥m\97\16\ e,\nÚ\99²¦\×O>jÁ\12\êu\9d\99\ãA\98°\8a)\ 2\11ÀQ\98\ 6\e\f\13\ 5\í \8a\"7\ f\19\ 6Fe\Ì \È\Ça\Ì{s\96¹¹Ã\9b\9c\ã8\Ê\äDDDDDU\14ú ;\87s\Ú\Ï+\9c»®6c\89¡u\92¶¯\81t8Ñ­¤Î¨\93\8a\9c\97eÚ¶(\Õ\æc\ 3Qcm°l\'«µ\b2gJƹ\ 2A\8a<\å\90adÿ\0¤¯\Ç`»SÞ\99\9d \ä\ZY2x\97¨°\19²Ò¸ñ\9aú\9d\8f\9a-2\bº\Å1]&,¸3\85­\ÔL\9b±\ÚV\99\83.\1cj9\"8\9f\86|\í7DDDDDDDDDDE\87=\ä\è\9f\\¼\86pFÁÀ\1d\93\Ñ\ëö\Í^É\87\97¯\Üd\ 3fË¢ì\8e\8cX\Ñ6\9dFݸlÊ\9bh­&Z÷E8\9b,\1e\á6}ð\12\86\9f\ß+^2y\9f\Åwjv.\0\äø\96\16Ú\85\98\8d´p¿(~        \ 3E\É\Ü|i.\f{(\13X&\Â}\å\11ó\8a\8d¶¤Y\fº»&\ 6D\88\10¡Z\Õý\ÓHô­yÀعö¾\1f\8e\Î\Ön\ä¼\åmB\8aLοò\ e\Í//º\ä\1d\1fl\Í/`»\9b#\18·\Ûõ¸\ïkkd\1dÏ»\Ú*þ\83\98v\97\106+\99S\80DDDDE\ç<Á²\eN\â^RÛ£\1dѤj¼u»ì\80\92\Çe\8e\8ej=f\Î\ÐFkñ\9ce\8e\13\ã4\8dv3\8c·-÷\Æq\ì¨}\ä-\ëa\å\rÿ\0x佺H\æm\9c\87¸l\Û\Ö\Ï0Cp\85/a\Ûn¦\ß\ÝI\18\9cò¸c=\95\84\92°n!\1cÆ¿\r\Ëß\9c|³m\9f¦;¦\9a\ÇRüTp¶\ÉZI²6\î\ÔE\87\Ù\rüó\7f O\1d¦\ßO_\ 2\86¨p\ä\10\98\84\ÊMV®\9e³#\8fôG\92H\ï±$P\ØL\9cCHU\11\11\11\11\11\11\11\11\11\11\11i;\ÏG\8c\Ýo\É_C¹\eM®ª¬\1f:ñ]e\97\'pf\Îh\ãdð\íz\Ýd\édÔ\8d\9cѨ¶ø\ßmU®G\12\Â@\84g\12º.\'=\84U\nqW%òoYy·I\å=,öz_+p¯ Vl\95C°\r\95\\ê\8d§P¸adR\ß\×0Õ¶L\8eY\11$Rl\Ôr\v\15ò\ë\ÍcO9­\19\Î5w7CûAK\Üþ\9eõß³Ô­\1cvs\17\15j\e\8d­f\ f\f²(ö\v:x¦¾¦\9e8%4xs Yº@\Ï      \85#c\ã,h\Êadg.[\"\"\"\"-nù\82\ä9üO\âû½\1c\89V\ïk-S®|\83e_\8fµÁû&ÿ\0\eø\ÑC\935¯p\Ús\9d\81sð\Ç\ç\18&sñwþ\9c\Ò÷Áº(9C\9aø\7f\8d%2C\ãr\')qþ\8b!\91\1f\91\Êx6ݲ¢\80Í\8cL1ùd\8c\8eÁ\Ø\vð\Çe\84\Ë]ñw·¶oyд\Ê>:\Òu=\vZ\87\16\ 5\ 6\9d®\Ôku1\"F\14@\n\15D\10B\ e[\1c?\ì\Æ\â´?q}²ì¼¤{\Þ÷½\Î{»j\"\"\"\"\"\"\"\"\"\"\"*t=Eý<¦é\87\95\î\Ã\éºÁ\ÆýO\97d\Ã\ìn¹\r\99\92GT\83\97\ç\\[]Ö\98ò^ì\98\8cÛ¡lr\9a\Ø\â\8b\ 6\10%\86²\ 4\82\17\92k^\8d\Þd\Æý\â\çm\âü\Ç8\ßÁ\1d\8a\Þõ\ï¸ùn[$[\Ô\Z~Ec¢|Jüb\18\89~a|H0\9bó\9b9\Ùk\Â\à\11\Ò\ÕDDDDZ©ó\87¥\Ë\ß|Jw\ç]­\8ai¶\ä\ë\9e÷>\9e,|û\18öU°q4\11Ç\8c¹\83ve4$\8b\9c\e?[p|¿9c\98\Ò2«ÿ\0\ 6\1cw\ 3\95¼¶tcG²\87\16t[.bÅ\97\Ñ0_lf\É\Õõ=\9bk\83(\8dø\138\Ì\19Ô\91§\f­c\9e\ 2\Ça\87\8f\98Ú®\96DDDDDDDDDDDDUÀú\Ûø\ÓZ \ì\çJùJ¾¬\0\Ú9#\88yC^\Ùn0!6M\94\1e:Ù´\çk°Jv±¥$j¦\îV¥\8e\12¸\8d\ 1­&\10yn$¹¸\Ù\'¢A¥\ÇJû\8a÷78\ 3»EJÑ¿\Ûôâ·\89õl\99¸Ï·\ï,cÁ\9c\ã\ß>\ß<~±\ïû\9a\Ò\"\"\"\"\Æ\Þ\ãj Ýº\9d\1dZO\Ç!¶\á.J\13\9añ\à­&A©Z\Ë\18\9c<\å¸\Î\fH\í\16]ûø|þ\7f\aü~\ e©·\ÓM\0\Ö\1enú\'\81\0\86dM¯\95\ç\És\ 6\â28bð\a+½§3±\8c\àCü\8c\80-!2\Öý\å\bñ\9c\90\8ck®$DDDDDDDDDDDDPMõÀ\ë5\î\á\î\84\î?O½¨y+\995\9f¿8n~\15òu}F\Ó\éc¾\1f\92b|É\8c\93\âÿ\0¨Y\Ã1\91\å\Ù\Í\1fF®·\ 6§\Æ\ eùw\Z\10c\ËÚ»#»Î±\9214d°5m.½H\ 3\È#[\87\18\81\89\0\11\18÷\å\Îhc\88Xv\18Ƶ²\áDDDD^[\ÎQq;\859\86\v²\æ¶g\16ò\fW9¾ÿ\0,bF¥n\1c\å¾ß¿\960ÿ\0|{c\ß\ß\Û\Ûöª¥ô\9eid\Ûü\Ëp\ì±dmv\91\Æ<ú9\äù\7fH\âk\f¤.\19\96µ\ÙÁ\n;÷\ 1\9f¬5\Ù/Á\Îk\1c\çb\Ú\ÄDDDDDDDDDDDE  \8f[\9dn\v\ÓÞ\97\Ü}~ù\83\Ù]ª·\îöÿ\0/ù^/¶\95õü¿¾>\ß\áp\ïoõú}ÿ\0\Ý\Â\Ï\ fH\95~!øiФ`\7f\f\Ûs\Ï<Xe\ßû\Ù\1e\ e¯\ìþ\ØþØ­À¿\×ü¯\ïþ\98\93º\"\"\"\"\ê\Û\Ì\11Y\é[\85iÿ\0ȱն\b&ÿ\0ò\97S.9?þ     \95\\G¥+\82\ë5\8f4\9d\Ç-?\Ø\n~\ 4Ò¹Ã\8e*!·ú\82\Êû>Y\ 6¿\ 1\Ïq2\ãý\91a\é\í\0½ß\9fv\È7\Ûò~\19\9cY@\88\88\88\88\88\88\88\88\88\88\88\88¢¯\ë\ 3Ñ\83±x\9d\9b·\9a\e$;\8f\8c§E\92\ f/\81\'c\Ø!\ë\9fhð\ìý\8d\É\âÌ\97\19\es\ì\Ò\äosp\\a\Ù3\éu\Ñgh\1e\18z\Å\ 2Àoa¶\e\1e\82\ç³\á\93A\Ý÷«\8d\96¼\98\Çû\Ìl+\0\ 5\8fÿ\0}\82nT\83\11\11\11\17ø \Æa\90E\e\n\"±\Ã(\88Ö¼d\eÛ\96¼dc±\96½\8fnr\×5\Ø\Ë\\\Ü\ç\19\Æq\9c\áA7\Ó\17A\1e·Ì\9f\9clG\Æ\ 6*\ eG\ä\8a\b\Âo¶\Z\Ø\æ\í?#üq\8cc\ßô\ÆÒ\89­ö϶1\9cÿ\0\7f|)Ú¢\"\"\"\"\"\"\"\"\"\"\"(\àú°\ 1\83xJ\ìi2\Ügñ¹\ 3®\ç\Æs\8f\Ûr\îp\Ò#|±ÿ\0\fûH\Ë}ÿ\0\à\ì\ãýVsx7«\rW\88o\1d\10\86,\Ê\ê\Ï\16Z\e#c\e\93\ZÒ\84\13²R\ç\r\ÆHL°\Ãg\Í\Þ\îø1\8cò\Ö7\Ûk\b\88\88\88\88¡\Ñ\à[C¦\Ðü\ãú\84i©\0xð+ù\86\9aXG$\8f1²]Ë\969kl²3\88Owe²,e\Z@\ÚÏ\80\ 6\"±\80\18ÀÁ\r\93\17DDDDDDDDDDDDQ\âõO\Ñ\Ø\ßøL\í<jÀfA\à_ðe\áÇ\875¾\Õ\Ô\\Ù¢\ÚÚ\9f9{\9a\ßhµ±eJ\Ë}ò\çý\1f\ 1µ\Äs\e\9c\ãð±\18\91<Ix\ã\11\1dòsºwÁ\12q\9fø\ ef\85O0Mÿ\0 Gc?\é[:DDDDE¡\Ï\Z\Ýn\'\14ù(ò\ëÌ\92ª[\1eG=se%¤;?\ÆÀ\9f\"\8f]§«\87\16\v\8f\86\ã\ï\10®e\ì6C\Æ]\9c0Ö²²\Ö\ã\ä\ç?|h\88\88\88\88\88\88\88\88\88\88\88\8bWþf8>ϱ\9e6;I\Ãõ\ 5dk\r\Ã@\97_\16a\ 2\ÙC\81(\8fh\àO|W\Z;¥6%\89!\9dÀ\11\86G\á\99ø\948\ÆL<\98\è\æ\8aþ1\é\ÇXxù\ád|iü\1d\Æ\Ô\"\bþ¿¬q`jõÂ\89\86\àyø1¹\89\80»\ 3ǶE\8cýnk^\×7\19P\88\88\88\88\8b\áT\ë44s®¬ªk#Á\9d±Llû¹!û>\Ë\19\8cÁ0Ó\9f\æ÷7\ä\Ü\14\9e\ß^\18\ß\ëwôû¯º\88\88\88\88\88\88\88\88\88\88\88\88º¾\ç¨\Óo\9a½Î¡°\8c¦¦½\8b\88v\ 2\ 3\Ú2¼80\8f\8c1\ï\19Z\Üý\81f}ò7c\Û\19ý\7f®>\95\r4\1dr\8e\9b^¬k\Ù[CS]M^\Â;\ f# \Õ\Ã\f\18\8d{\Ú\Ö5\ÏÀ\0<9\Økp\çc9\Ãq\8f\Ö>²\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"ÿ\Ù',4,0,'','','',''),(62,2,17,'9305bf01b31f0b98','10942403815bf01b31eec59540800317','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','12242958235bf00e8006f72987476580-4.jpg?ts=1542459008','image/jpeg',80,80,2356,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v     \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0*\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b \n\11\12\13\14\16!#\15\"\18BCÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91ù\ãõ1VüwZfº\9b\bJ®\Ø\í¨!¶\9d\85m³e\ÙMg Ü\91\13\ 4\a\14|\\qb½tÙ\99\11ö$\15[Q\àÁ\Õ\Û|\'¬\8fJ\18¢+\18\Å_\8aÎ\9fy®ód\à]±î§\91~\Ü\èN\9e\ÊM>et-e°¦µM§s¨2T9¸\Õ4ZO\ë4\Z] W\9a~?;\ 6J³&\Ñ&\ eðu\êôç´\84´f÷}v\ë\Õ+¬\9a\Ö3V\Ð\ì;j\Ó\v\1c\ç\ä*stn]\9d¼.\87\98±\Ç\19\â       ¶\í;E¦\\V\1eÀ\Èu0°\ÏEW\ 3}o¹\e\f\16H{\v÷^8\ã\8e9\13{\á\Ù\ 4õ\ 3¦\1d¢\ìòE\1có´v\8eØ»\ e\n4\Ì+\"J\Ú`kg¿R\88+\b\ÊUøò\Öl\Äƽ\9c)\1eÍ\94¬üÑ\8c|±Po\8bÞ©\Û<°yCÓº\7fhX\',\98\Ý;Jõ»\13t0\×U?-M\85̦\É\ÛR\84JcûX\9e·\8e\19ðqòXJ¿\1e\Ãc\8f#-ýh\Êqt\15F£X U+TjL\ 4MV\9dN\81\89«\Õ+0A1\e        ^®À\80\Ä\\4,Lx\Èlp£c#\Å\1c0\85a\bi\81\Ùm´\'      N1\È9\äo\Æö\87òa¢¤t\Æ\è2\ëX\90\10Igµ\î\Æ\×Ö¹\êå\92\81d\91dl72\88ø\é! m\Ñß\92\ 4z\äk6\à%b\ f`ofS\1f \91dÄ­\v\ 4òe\é\ç\ïýã­\97m©rÙ\9aÿ\0Ll@\ë{?D[\ìÓ³Ú«h\ëb\10\f\94E¯]\ae|õ\ë\é;e\1eB.\ÉO³W\90\ 1 <T|}\98Ixñ$ \9fµ\ßLm\9a^û\Ô:»xk\89\ 5J\ëýÁ¯©\Û6\95\"\â\12Ó¦U¯5øû,\13ï²\87\1dK\ 4®6H\7f\1f\ e/,?ö3\95+(\Îy\é|q\Ç1\8b\8bVØ·?\8a>þkÚ\90\84H\Ù$úͲ&a\ãDK\8b.P\Ê\\Vn\è\8a\r¶³\85¼\\\9akª\0Vq\9c\á\â\bm¥%I^S\9d\ 4ý\19¯Dµ\å\8aþ\83\Ö\Ú\ f#¦;q\984º¶\13ö\9c\9d\99¤\b)±\Ò\æp\ê\Ê\ÄS\aº\94\8f\î\æ\ 4hÕ¯\1fJ\1c\Î-&\ã\95Mz¼g\é\97\ f2\12\90T\ 6\98\90´V:ó£©\9b\fx\81\Òù¥lb\9cµXc\Ã!\ 2\8d\96ý\ eѯ\ÃB2\9c\95\86\90\188Gô6\9eX\ã\â\ãE\Üz\Ïã\9f¥:\1fb6H÷\íg\ÖýY^ºÇ\98¼­ø[^*\à\9d`¯)Y\Â\7fÒ¹*aPL\ã\Û\1f\16#\9bN?\8crzq\Ç\1c\â}\86Ie\á\88i·\Ç!§\18}\87\90\97Yy\97Q\96\ÝiÖ\97\85!\Æ\ÜB\94\87\10´\å+Nr\95c8\Îq\Ê\Ä{\8dÕ½\8d\é óA¥{³®ª²¶>\92^v}\8ev\8c¸D\7fXz\êò$\8cN\ß\ëÄ\82\Þs\è\Z\ßI«\Ø$M\×k\92y\"X\"À«\Í$\97\ e\8a³\v\11en \ÛZ\ï}j\Ý\7fºu%¢:\ë¬ö\8dN\12\ïFµE)j\ 6r·a\ 5\99\bÃ\9aC\Èl\81\ÜX\ï%\ 4\86SL\98  Hx3\18\1ei\11\Ûȧi\b\éGF»IÚ #\ 5\99\9b\Òzv\Ùo«\Ä\È%\Õ\Æ\É\\\Ò&\"\éAJ¡\87\19}Q$\Û$a\9a\94\Ã.´÷øõ\13õ8\87>*Æ\8cÞ\96~\86\ f\äc´ý\8aò½\ÝB\Ë\Ý\16m]·cÈ¢~Ú\94\98\r£²S\è\Å\î\7fcO\n\9c4\13¹\Ö\11E\Õܦ@ \\\Â\ 1)d\0\á\ 4\aôøv\15cG\1cq\Ï\ 5\ì\çft§O4nÁ\ìganñ\Úÿ\0TkHe\ÌY\'\Ïù:óªS\88\Z6\12\12\91\93vIù\'\86\88¯AG¶\éòÒ¥\8c\18Í©n{\ã\0]_\ì\1f\95ÿ\04\84\ãv\ëk9~,<l\1e{\ØÖ¶\18\9a\85R÷\Ý>\ËWX%c\æÁ\r-}\8b°\Ñ5EJM¦²ðV\88ªÁ\ä\f\90\ 5_\ã2\äø¹d\94ñcÓ\8d\81[¬W;\1dL¹w/\152\r\90\89\90\îV\Ñ\Ø\1d\8f@\ÓRL i\19\Ø\ê\9eÄ\9f\93\×5©c\ 6m#8õ:\95\\a\91~B\880\ã-m*tQh\94\9d_M¬k­oR­Ð¨4¨Xú\ÝB\97O\85\8f®\Õ\ë\15ø¡\Ð,l,\f\14H\â\Æ\ÅF\ 23hdP\82\19\91\Ùm8J\11\8csÇ»y\×\n·oú»¿:½t1ø\Ê\Þö\ÕW-jtȬ\à\82\1e²\Ã\12\fe\8c1\Ô\ã( \Ê\ìªÁ\9c\10w\1dm·É\8f\15\86Ö¬óO¯N\Ƴør\ß]\91ñ!\äJ,} j\ÙûQ\8d­\Ö=³g\Ê\â´öó\98L\14u*\É\15H\ØÒ\8d\ 3\ 3)û$-~\933H\1dd²k\Ò\19±\Ôf\86\87¹°\15x\Í\ä\12¤­8RU\85%XÂ\92¤\ç\19\9c{\ã8\Î=ñ\9cg\1f\Î3\8f\ã8\ç\Ï\1csQ?-\94Ù¯*~j:M\âJP\ÉDuO@kw»½Û\98\88Ò\88 \9b\8f\ÂD\Èz\Í^W(q¥8Ê\83Mv¢\ 1\82£\87\Ü\ÖY!ó\93\"\87pm¶a!!\ëP\Ñ5\Ê\ìTt\15~\ 20\bX8Hp\87\8d\89\87\87\8b\15 c\"¢\ã\83m\91\0\8e\8f  \86D\b1ZhqFe¶\19m\r¡)\Ç\Ùñ\Ç?!v\×\Ô-\99\ 6\ícc\Ò*\e\ 2¶úþ\×\ë\×j\Ô5®\r\ç0Û\8da\ÇbgB<\a\17\86\9du¿\9a\Çʾ·\1cG¿\Åj\Æ`·d|h\é]\ÍXùi\ë.\Å\évâ\80\87l\rsºú\9bn\9c\Óòµ2#Ò\97!E°\Ñ*2Pú\ëgS\Ç!\81Z\91¥\Þë\92±\æ\Å4¸ð\n\86uL\9c4Añ!\ß\Î\Älݯ\Ùÿ\0\e\Ýýj½ÿ\0;zHd)\12û\ 6©\Z\Ü%[²\9a\91?K\Þ0P\83²8\912E\8f#\0\å¬\0\ 4\8f\8dmv\9aó¢\ÇF\9eô\Ô4>u¸\æ\ 3úÉ­G\13\Ô7\å\ 3e:Û¥\18\ïK:@\0\85¯\å\94E\alv\ä\ 1\91m{ÿ\0®\11 F \16G\Û\1fú²þqÿ\0|s>\1cq\Ç\1cs\ 2²\Z\Ìx\ßRõceE\'\ 1.\Ï\á²\Ü-¡,!M¦`º\çnjQq¤\9a¤º\96\ß|peA\19µ)\95:\96\ 1\19\1f?­¶ð\Þz¸\ä\ eÕºý0\9eH;\99°S\1c\86Qy\ê\9fC#ñ&\96\14\9c\98]Wa÷¬SF[ÿ\0RP\ë¢\bl2\96\1dul²ð\ÙV\eK­\áSÇ\8e8\ã\8e@\Ùz:W\äò\81²\15\10¬©\8e\87\í\ÊSs\Øo?\ 4~G`t¤\ã\91+w\1f\14\18l\Æ\ÛW¶U\86\ÝS~ÿ\0\17\97\1c\àH£ \97\8c@\ì$²\19\1cg\ÊKM¤\97\11d¸+\ f?\84\á\Ç\19\19\vpv\96¬¡\95\94B\9bJTó\99W?\1cq\Ç\1c\ëd1T[g\ävrsC:\ee\å´\ä\84\nû¬¼ð\èw\Û\æ\96]xv\1cq¼gâµ²Ò\95\8c\å \Î;<ÿ\Ù',5,0,'','','',''),(63,2,17,'9305bf01b31f0b98','10942403815bf01b31eec59540800317','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','12242958235bf00e8006f72987476580-4.jpg?ts=1542459008','image/jpeg',48,48,1488,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b        \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 1\ 5\0\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0  \11\12\n\13\15\16\"1\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿\ì.\é\1eY\Ö\Óû\8e\190\9c\ f\ÆK\ËŤ*X2 \7f|\Ë\Çf\Î\ä\8c\12Yys\82G!µ+\15\92\91c\91·Tଲ´\Û>¾\90\99\ 1³I¦\Ü\Õ]U¢\ 1n\å_Pf¿\89\Ø-5ô\e\84a.-¸\é\é\145\87\12Û®6B]e½W\87\87\91\1fò\1e\ì]\81\Ä~©:\'jjy3 6e½5\9d-M´G>\à\92u3v¬ªk²\Öx\93\Zøx\19¸J§\8d\82=\85!ð&\9b\8f1\87\ey\86Ö\99\íø\9cz\ì \è>\10®ö\íª\b\19¾\8f\ì<\Ø\ì¯]e\Æhû\rWQ\85k\93\86¬Ube\88ýb\86\1e\Þ\ì\17óû#\Ì:Ó³\ 4J\Ã\r\'\923\ 2\1e[dÿ\0 »\'°\ÞR\çÒ½\84ð·RZi¡sÓµ¢w?9\ÎÔ¨·\1dgt¡\ÊØ£«\Ä[@\1eZ¸\í\84Ih3¦Az\Î&f\9d\fº\Æ\ f\92\8dr\fø\959!@½Ew\ã~\Ìx\'Ju\89UÀ\ê\16\ÛX³U}\91Y\8dy\ç\âb¶5\ZX\8aÝ­P\8b\'\ä¦à¥\8d\r3Ð\82\96\ 5\83\15* D\96k\ã¬\Ç\ég\87\92\×\Ü÷\v\Ê{\16õ\É\Ñ\1c\ËUX­\ìy\88\10\9f\81C#gk©\16-\958r\8b\Ï\ÊB\Z\ÌTs\95bNs\nh&&\Ü)䩦V\9c¦\7f\8d\ fJC\í\ fZ\Ô\ e\88MC¢xbR\É\Î[óWM°¸\ë5FR¿m²»P8Ø¢s\83\e\12\91\85p\97\ZCY±\ÃXÀk\í\800¥r¿É\9f¦-\Âó\96¡õ\9b¥`\139\Ð>\Ðö\1c.\8f«\9e\1e\16¡I\8c¹\Ò     ·LÉ»ôyܪaù\bºò\7fHgp\1c)vI\7fº\v\8c\ 5\92«Ï¬þ\17§ú\à\â­\'\È\ÔùuY\7f\88\"I·Û\96Â\85þa°\ìò\ 4دVF\ 4Z\96\àQò\16)\ 3q\f\ 3®:ð\10¬\Ç\ 4ó\Ï::\Ý[\ã\ç*\Þ{\9a\87κog\ï}¡-\88M{¨\èöM\81o\93ú)\×\a\83¬Å\91(b\ 5a\1f+(\â\90>\ 4\8f\11¼e\Ò\Î|q\9aN\\u8̶\ã­Y\Ò\Ý\Å\ 5    \Øý\Ëq\Ø\Zò\91³\Ç\16\é\Ï|+®\í\ÓZþ\87­5<\Ò1\'G\96\è9\Z\99±\96½½·\ì\95÷¢flpV    \Ö(\15GJ~\11ªN\rÉ\89\16¦k\8d!¦ôù\1635^¬ k³®&7#o\91§T\á+òv\É\16\9c)Ö¤,òQ\81\ etùͺi\8e$\Éb\f\'\ e\16Jð\ç\Ù÷r©\á\ìÿ\0\Öü¯m\15\Ì[»O]àµ\9fYñ>\à\8d\Ü\Ú\ 2\Õp\8f6S_N¾\83á\89´k\8d\90\14N?|MN\Þ4\18,ª^   J\97\821\84\16 \å´\éb>\Äl¾\Ä{\9bhU­\83Õ\9a\92Û­)jd\ 1vvÓ¢\97\1f¶56§\95)öBT\9d¼ø5\ 3±£5\ê\8cwõ\\\Ø&kFk\Õ\È\Ü\âBòMXV\Þ}\ e\\d\9ct\Ôl|\Ì9\âJD\Ë\ 2$\9c\\\9cy\r\16\ 4\8cq\ì6PG\ 4[\v[\ 4\88Xδ@\Ä2µ´ó.!\ÆÔ¤+\19\Ì\éö\á®\ß\Û|\v·µ\8bH%\æow>p«\Ê\n+yq\Ã\ëòý=¦\84²Æ¸\9cc?õd«\îI\80\8c¡°\È}k\ÆP\95c4xa\87\fv\ 4\11\96\86\14VZ\18a\ØBZdq\ØBZe\96[F0\86\Úi´¥\r¡8\ÂP\84\á)\Æ1\8cc\Ïo\ f3öÚ´\ 5\æ«e¤\Ú\âÃ\9c«\\+ó5{$,\88\95\1f/\ 3?\1cDT\ÄY¼\95²@gÇ\96@¤°\êTÛ¬º¶Ö\9c¥YÇ\88Ǫj\Ô\í/\×\7f)R\ìfH\1d)M\Öm\Ô\7fZW.\äö\ãk\13\ÓppA?\97Ô·\7fó`À\8e\8ek\nV~¬\n\ÚSýp\9f\1dM\81G\8aصrj\93Ku¸òe+R\Ë[\18N]Á5k4=ª?\ë÷\ÆSñ\99\bQp¼ÿ\0¸FU\94ÿ\0o\8f6~\1e\1e\1ebµ\Õ\Z/[S!)\10®¾ô\\\v\e\84\19{-\95 \\\82\92¼\ãýú8ZÐ\9cÿ\0¹BSó\9c\ç\ç>\7fÿ\Ù',6,0,'','','',''),(64,5,18,'9305bf01b7c2bcd7','18858997325bf01b7c29d79163158635','2018-11-17 13:50:06','2018-11-17 13:50:06','','','Contact Photos','12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007','image/jpeg',300,300,11008,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b        \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 1\ 2\ 3\ 5     \ 1\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b \n\11\12\13\14!\15\"1\163A#BQ\81\82\17\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/r9¸f3\9cDëº\9e±®\8fð±g\ë]L\ã\Íϵ[d_\å\"¾þW\äñ¿\19Ķ¬\94Hx\8c\ë»x\12.¯+\'=­\91\ 2ûY©´­\97\18f0Hð\96\11\åF÷\98}`\1e\ 2\Æø<|\Þ\r\á\íRľ\Õ\15\94\ 1v=¢¢/\ÄyÀ\8b¸\ÛZ\83\13d´\í{\Û.%\ 5F2\1c²9#\93\181\ f©\1e\\ó?\åC\9b¤\96VõÞ\8e\Â\r\å\95ùMÆ\95¼M\ãG\a\Û9À£\ eO\1d·W\9aøag\Ä,\8f\"Q\Ø\á\8cx7\Ú\æa\Ë\Ìõ\ eòù6\ä-\96§Nл\85\Þ\Ý\ãq¾\90ø\Ôz¶¡\Ø.À\ì\Û-Ì¡\80²\8b\1e¦\8e\9bn\9bic!±£\9eI\ 5\ e)\88\Ð\0¦sp1½Ø\95×\8f\ e\98ú°9J\92£h\87\Û^I\ê\×\e\\Î\8b\996\1d\83\Úuý«x\95L\è¸8®«x\êú\83\99\90\94\87üV\Ñm©Ø\82P¦bH£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8b\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)\ 1T\É2\Þ1\12CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ø\êy\ë¶WPKüg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ek¾º\ê8­5¼ù\Îo\Æ#\àÁº$\Z\Í;\Õ\äù¾G7\9fñ¯j¹\8a\ïs\8b\ e\ÆE\8e±\Çõ\Ï5/\19h\î>e{\aR\ÓA °¡b;\'N\f\8ben\18\ÓeEÅ\96c\19\â\Î\ 5¢\90¯\88\8fN\ßm|\9e˪ä\9d\80\13ºý\Õl\96\14¢òþ\ÑQ\92Zo\91[ &\9dU\Æt\ 6(¤J,\8a¼û\Ç\Û,\ã>\8a1l©\çÂ\83²ÁþDp\ì¯ñÿ\0\â+¢þ6õ\18\94\9dv\áº\0\î/\ 4\\l<½¶B\87±ò\8e\Ë2>\\|\Zf\×>9lb\Ã\f\ãÎ\93UY\fÃ\8dL9Æ\85\a-\8bñf6h\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88¢#\êAõ\ 2\13¡t6=:\êm¥|þ\Ø\ï\14$ÿ\0\16\82-}\9dw\ 1\ë6AÀ\Û9\Ð\1f\99 ±\ä+P\94\8d\Ö\é§\0\95µo\ 4«\8d\98\a\8b\ 6\1e·µ\Ö+µ\í{6÷³_n{\9dõ®Ñ¶m\16³o6-\8aòi\ì­\î­\ì\8eù3¬lgIy\ f&T\93\91\ä)Hü\ç9϶=\9b\8cc\1f\ 3\Û?¯\×÷ý\ãÿ\0\9c{\ç\1f¯ù\ã8ÿ\0\ï\vñO\a\Ó\Ï\é\9e\ eÿ\0\ 3M\î÷\91-\'.\Ôg\8e=ÿ\0\fõ¯e\86`\9a\â7\Ï/\83¸r\ÍL \8d\8f-­d\9am:G³\ãDx\ä\Þ\r·\'\Ä\rj\Â\Z:*mb\9e»_\×j RQ\ÔE\14\ZÊ\9aÈ¢\85\ 2\ 4@\ã\â0E\8a\ 60B\e\7fyökqòv\\÷g.s\9d\9f¬\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88µ\ 3\æ\çÉ\86»\âó£[\×3\ ePK\Ì;§\ß\Ç\\\ 3®=\8d).¹&\Þ\11\9f\ZyÀù\10ðú]V\eK°l/\14À\Í\15\\B¾´r§þ<CS{\É\\\95¾ó\16ý¶r\8f(mw\e\Ç \ïWs6-³k¿\95\99v·Vó\Éó<\99\ 4ö`\Ä67\f\8f\ e\14Q\82\rt\10Ư¯\8d\16\fXñ\Å\Ñ\×\îs\9cÿ\0|ÿ\0§·ü°¦\89\éjðt\Î\Ë\ï\15þ@ûQ¦}ü\ f\Ç7\"7\ 1\é×±2øü\9d\ÈT²\ÆW\îVUòÃ\80\17P\Õ$4\7fÁ\17.\96û;\àH\99\88µÃ®£·\9deh\0\b \f\14\820G\8e\ 1° \8e\0³\ 3\10B!µ£\10\84\83\e\Z\Ö1\8d\ÃZ\Ü7\18\Â\æDX{\Ý>øõ\7f\Ç\Ç\16F\æ^\Öò38\ãB\9bp:\186,¤»Ø§\ØZ\90.> \Ö\Ò\ë\Ðlm\ì\å}mùb%|93\1c̸Ì\8eð\ 2IC\1f\Înõ\89ø·\ã\È\í7\13Uóo`\8d\î6\12&½¢\Ùññpò\11\Ís\ÄNI\87A\1c\91\ÄÏ\81\18\123\8c½\82\88G1¸&,\Äõºu\ 5ò°\Éý,\ì\8ch_/lÈ\89·q\84\ÙXg¾?«\10\Íe^,»\Û\ß?\ f\Î\Æ=ñ\8c|ÿ\0~ø\Úw\ 1ú£¼:s|\Êj;>\Æ\Èá­\96\Ò+\8f&\1f/hÛ¶¥®U\95¹\Æ?\Z^û.\81º\83I\9c¼L\ÆKf\f9\Ï!\19ò\8b\1cò\99¿\8dKrÔ·\Ú8\9b6\91³P\í\Úôö±ð\îµ\ËX75\87\Ã\Â#á¬\99\0\Ç\aÙ\81\1cDx\\ü\14m#>ln]\8c\88\88\88\88\88\88\88\88\88\88\88¸\ÈA\84d1\88Á\bLy\nR?\f\18\Æ\Ìe\Ï!\1e\ì\á¬c\e\8c¹\ïvp\Ö7\19\Îs\8cc9U\ez\9aü\87\Ùw\8b\Èþÿ\0¥k\e#,ø\'«E\93\Ã|s\Zª\Ï3h.ö:¹%/!n\í\ 3¡E,k9·\å~ªX¦\91`\18ñõ6L\84øD¸±\89\88\ê\"\Ø÷\8a/\1fÛ\87\92¾\íñ\1f\19>\16©mhí\93\96\91_ :\8f\19\ë­üý\86|\87\8c\à,s[å\91µ\9a\É1ÿ\0$𬮣ٺ\14\98UópÛ¤ø\87\89´\ e\b\ã\r\13\86ø«[¯\Ô8\ç\8du\9a½CMÖª£\82%}=\15<vÆ\87\ e4h\Ã\fp±­n^\æ\0!\ e\b÷ýA\13>,Ç£¢\"ñ\1e}\ë_\0ö\9fD\91\Æ=\8d\áþ?\æ­\ 2L\80\Ì&§Èº\Ýv\ÉO\89\91\È3G\98\18ó\Â\\Æ\97\1c\ 4\98òc8G\ 4¨ñ¤\88\8c<`\10pHòù\é\14n\9fM·ö\a\Æ=\85͵mh\rwyÕ­ºÑ\96\96\83\0\ã\ró\9dÅ\9b\85\86b\9d\ 3£J\99\8d{j\97bs\16Í\91\á\\VV\Õü\v\ 3\9ak\8dr\â\×^\Øj¬¨¯è¬§S^Q\ÜÁ\95WqMqW(°l\ê­k\'\b\13k¬«¦\80ð\çA\98\0Ê\89(%\8f C(\Þ\Ì|Õ±Þ\83y]\ï\a\8dͲ\1d\ßZy\92ö£Qu\9c{\r\8b\88v9\126\ e+\Ú\Ø\12H)cYj²\8f\81Ö¾Y¤fD\Éú\é\é¬\'H\8f\ fù)3¢\ÆlWZ#\á·Î\87\\üµhÆ©«\fn&\ìÖ§S\1e\7f ðe½¤s\È(\9a\11b\Ça\ã\Ù\Å#$\íZ\9cinpó)\ÑÁg\16\9e\f2¾Th;\ÊDDDDDDDDDDE®¯,\9d¹¯\è\ç\8f^\Ïö:XbÊ°\Ôx\ÞÖ§U\812fk£Yî»\8e\e©\ê5\8f\9e\10\90\Éa{o\n$S\8a4Dzi£{D\92ß\90\9dI$¹r§Ê\93:t\99\13gM\90is&K1$Ê\97*I\1ci\12d\È3\9ec\È9\9eò\98\Å{\ÈR=\Ï{\9c\çg9þtV|ú?ü~?¯\1d-\Û;\8fºUÏ\81\Èý¾°\89\9dtS\ãÈ\89ø|\'¦É\90\Í8\91\86I2bL\8f³\Ûʸ\ÚAo\bpI*\14ø\15\11\Ìúh¦Ä¿\Ñ\11\11\14(}O¾\ 6\ê¹\ãD\Úü\85u7Mü~r\ã\Ê<Xso\1c\êu\99yykK«ø\à\Û-U$\ 6\áó·­^\e\88fÿ\0\e\18\17\Õ\0\Í;\ãZþ5\16(+eE\ï=e\ì¯0u\v\9c8û°¼\13´\ÉÔ¹\'\8d\ïa\Ý\ÓN\e\äf\ 5\80\9cd\99C}\124\98\84²\×\î@<õ\82\Ù1\8cð?\ï\85*\15\80\8d\8c>ÿ\0q¯\92\8e\9eqwg8ðø\8f/`ª\15G!j\æ\Î\19c§r5(\Ù\a\97\19\ 1[\1c7!\99\9aÉ\98\ 6 \ÙB\Ã%UÈ\9d\ 1Á\98m\82¢\"\"\"\"\"\"\"\"\"(\88ú\Êù\Êw\1ex\Ù\ã\Π\8aß²7a9\Û_¤²n>¼81x\à\f\äQJË\9cß³\"dú\88q^1»\18q&\ 4\8f\1ceµz¢õ\Î\0\â¹\\\ë\Ï\1c\'\Â0ffºo1ò\ç\eñ\\;\f1¥\Ì \\\85¹Sj1\æ`n\ËZL\Å-»\ f\86;8kòÏ\8es\8ce^\83À\9cC­p\a\bñ\1f\a\é\Õð*µ~$\ã\9d;\8f(\àU\83\11«£W\êt0iB\ØQðÁ´\11\ßøy \ÂÁ\8d£kðÖ\8cm\Æ\18\ß[DDD\\\12¢Æ\9d\ZD)±Á.\1c°\Z,¸\92\829\11¥F\907\bñ\ä\0­x\8c\ 3     \ï\11\82V8e\e\9cÇ·-\Îq\9a\81½G\9e9\a\ã\ÏȦ\ë\1fNªm\7f\bö4\16\1c\Ý\Ä\ì\0\Þ\È5\ f¸¸\92\r\çO\ 1\ f,¦;\è67b\Ó\Ü0\ëj`AÙ«©*cf5S\9c´\ e\8ac\9e\8e\ eê³\88;«È\9d@\Ú.L\1dg³ú\91n4h\13\'eµ\91¹3\8f+\ç[\Î\15]\7f\Ë\ä[Ý£S\8e\æ\É(FLf¯QÁ%}a\86\ e\Í\ÄDDDDDDDDDE\ 4¿[þ\Ä\Üq\ fCu,1ø~y#\97v,\93å\9c\8c\8df±¬\Ö5\99o\ÇÙ¯\ e^÷a\Ù~rö\9d\Ø\Ã[ð\Î_]\Ú)\13úZ8\ 3R\ç\ß0\\,\ÍÀY\93\v\87t\Ý÷\9cª¢<#\91\12^ä\82®¾\98S\ã\e\19\19\â²N\Çù-k¿Ê\96\b²>$úr\"[¢\88\88\88\88¢C\ë\12\ê\í\8f2x\ä\Óy·Y¤\87*û­|\ÃOµ\ì6!­\ 4\8b¢q\î\ËOq©\ÝW2n\1e)`«\81ioU³\Ì\Î\7f&(EK#\Þ;\v\aW*-\8fø\82\æ\É]xòq\ÒnU\85\1c\92¤\ÕsÎ¥¬\8cBú¾M\Ç%:O\19\12C°l\àn\fAn\ f\95!\8eùe\à      \18\11\Îk\1dv\Ê\"\"\"\"\"\"\"\"\"\"\83/­÷^    :ÿ\0\Ñ=­±±ù\11y\8b\955\ã\Ëþ¬\çé\9f¥RYE\8d\9f\ÞF\Üeõ³\v\8fl5\ïö\Ï\Ë.ÀÛ\86WB\8aZ~\8dmnlÿ\0*[\9e\ÐÆ\8f5º\ïV9*¶S²\ìý­\9f±m\Z\13\ëð\Æ|rÜ\8dÑ©->\×ü\Ú湡kXü\11\1d¤¨\88\88\88\8bR^xj\âZø{ò\12)a\11q\13­Û½¤w\11\8cs\81.°Q\æ\0Á\Ëñ\9f¬¸È\9c?\9b2\×\å\84 ñ\9fb;\19¥\Ñ\16eø\ë\Ò6nD\ï§N5=B´Ö·³;)\Ãv\"\88\a\ 5¤mv»½\Òl·³¿Û\90Lp\ê\èj,­\f6¹\Æ(a¼Q\84i\ f\10Iyj\"\"\"\"\"\"\"\"\"\"\8aG¬+\84 r\'\8a±ò´\91d³:ý\Í<}²Ö¹\84;\1d\1c»\í\Ü\1e4\93 \8c\17°\Ï\e\10ö3\Ç ¤\å\Ãl\891NÁ\äÁ\19\ 5Uò)rz46\81\×ù>\ä=I\â\Î_²õ\8f\11ÿ\0£\â7k\e.¤\'\a9\Î~xq\87°<\8d\Ã[\96\11\Ýó\Ës\86\14DDDDZBõ\18òö¯\Ä^\1d{¢ý\96ÀPI\È\Üq\9e)\×\Ú÷»%\95°oVpjk£\ 4\fa\nl\1c¯ür9­h£4ø\91 £\bÝ\9cÓ\88\8a\94^«\í\\ùå\8b\8d9^\f\ 3¿Jꦿ²ò®\Ûk\87\Æ\Ì8\Ö׺õÞ\91§U\Ì\13°Y\99}\9c»\9b[\b\'\8e\ 6\80S(D9s#fDaK¶i\11\11\11\11\11\11\11\11\11\11\7fº\ÍI\Ü^\98vG­WÌ\93ø¼±\Å;V¹\bð#\82M¤;¬×\92m\14º\86\11\Æ+@\ÛE\89\88G\È\ fô\95\Øvc\Ég\Ê9h\é\Ûu]\87EÚ¶m#m«\91Gµi»\ 5Ϋ³R\Ëȳ*\9fa׬d\Ô]U\É\È\b`fE}\9491\r\90\98¢\É\ 2ì\8c\8fg³³×\94\90=)¼Õ¬ð×\98~$\8f³\ÊdAò÷\eòo\ e\10¿6\ 5\×\Û\f\Z½\8e\ 3\r#\ 3xb³\ëÔ¤\93\ 5\94\84¤\18\á´Í\91(\r}·\b\88\88\88\8a\ 2þµ^\è\ë\ 5 \ëwBµ\Ùò\89¸\Ç\Ø\19Ø\8eG\Ä\v,\8e4=\7f\15;\1e£¦k×µ\ÌÈ\88\7f\ågM\9b²@ûq*\13\ÉJ\13ûG\9b\0\ e}}è­\93ô¿ø¼\99\Ð^\8f\a\95¹OZm?c;WüW n,\92\Ö\æ\ËY\ã¯\Åd\8e6\Ñ\ÊLÁ¯\94,ì\96ûûjé­\9d\8aý\9e\îó\15vr\ê\8f\1c¤\93*\"\"\"\"\"\"\"\"\"\"*¡½U\9e=gõ\ f\Èe\Ç:\ê\953\eÃ\9d¹\88þD­\9a(¸\ÅN¿\ÉQ3\9aý\ÓTc\âClX\f\96(°v\ZÀ\ØÏ\91oq&N\Ë9\83\1c\18lh\ã\0½Û«\Ü\È~»öG\819\à\19¶\Î8{\98x\ç\92%Ç¢>#\Ú\ØU\éûmM\å\ÅDGºT!9\×5P¦T\924\99@\870\13K\12i1\10\æW¡qG#\ë\Ü\Ã\Æ\1cy\Êú\94¨ó5\8eIÒµ\8d\86DYB\9a\17\Õm4\Ð\îa7\12\83\8c\f\10f4EsZ\Ïb\8d\ís\18æ¹\98ô\ 4DDE\85\Ýü\ï_\ 6ø\ì\ë>ÿ\0\Ù~w½\Å}\ 6§Zfkº\ì&\8eVǽmò°\Ø\Úþ¥­Ö¾D\\Ë\9difx\91\Îw\9e<:\è\Å|\ÉÒ£\85\98\81\î\Ïmù#½\1d¢\æ\1e\Ór¦Y\1f\9d²mö(\ãL\936³U¥Ë¾\9a=Z \92\Z,b\ 5-pÁ\1f/\8f\12¾<ɹ\99d\Ê\èO\9a@3\15\94Á}2þ    ö^\Úr¾\9fÞ\9e\Ë\ë3j:\Í\Ä\Û\1c\1d\83\8d5KºòGÿ\0¶\ÝÚ©\ì\99W`FI\13J\í\17^\93\88öC4\'\ 4÷\16\83\81)\93c\Ô\Å\14}\9a\Î\Øñ\ãÄ\8e\b±@\18\Ñ#\ 4Q\ãF\8e&\ 6<x\ácD\10\0\"kF \88mh\Ä!µ¬c\Z\Ö1¸n1\85Ì\88\88\88\88\88\88\88\88\88\88\8bRþi<ok>N:=\È\\ j\ê÷r\8e¼#o<\1d±\Ë\a\Ú}g\91\ê\â\14p\8d\1c\98\Î\n\18ö\Ñ^Z\9bfEö\95>ªDª±\91\8c\9c_\95\8d\Ç;\Ï\11o\9b_\18òf±m¥\ï\Ú5\ä\ísk\Õ\î\ãþ=\9d5\Íqr\191Nƹ\â+3\9c4\ÑfE)\áO\88PN\81&L9\09:J´C\Ò7\äj§±\Ý\'?Mwm\8a|\Þf\êC\Ç[N;l\88l´\á+³\È\Ç\1f\ 2\8f\"\8d\Z)\83¨\ e\r\86°h\91\É*\Ä1k#X\Û\fX\9d\Zu\94º\11\11\11q\18Â\8e\"È\90Q\80\0\e\Ìs\99\10B\117/!JG\å¬\18\Æƹ\ï{Ý\86±¸Ë\9d\9cc\19ʨ»Ô\83\å7lò\17\1dÃ\8f\89Ѻ\Ý\Ö\r\9bb\ãn1\Ö\ØóÃ\87y³\Ó\Ì-N\ë¿]\×|F\197\a¸\8faEM$\ä´l*h²$R\Ï\f\r\86L\\Guo\×\Ó\Û\â^\Ç\Ê\aq\ë3¿SN\ÇW8(\95\Û\Ï5Z\92>\a\125\84/\áxª\f\19\ÈIc²<ß\99p(ñ-s\17_\8aPXÆ\84+¸V\ 3·\8fT\Õ5­\17[¤Ó´\êJ\ÝoW\Ö\ë£TQQTF\1c:\êº\ècÀ\ãÅ\8b\1cX\ÃX\Æ7\1e\îv}\ÈR9\æ+\ÞR=\î\ì\b\88\88\88\88\88\88\88\88\88\88\88¡+\ê\9aðo\9ez\Ôo<\8augO\9de\Î\ZMlVs\97\1d\êµÏ\95c\Ê\ZdB¿$Ü«\ë\84F\â~Û©E!¤Hl1>öþ¤y¦\8d\1eþhõºú\9a\ÜVux\Ý\ïo&ø\á\í÷\15ö\9f\8cM\92\9bR²þ\1fz\×r/¸;§\18\ßH\8a\r\ßT ÿ\02¿\1f\93:´-\99LRM\fX\Û\ruD«\ 1Ì®\f¸\12®\8e\ê\×f8\9f¸\\\a\Æ}\8e\á-\86>\Ë\Ç\\£¬\×l\94r\Ä\ì¶\\?Í\8e2Ȩ¸\84V\ 6mU\Íi_\98ö\15vQaYD&0\Ùp£\11\ßV2\ 1\11\11k\ã\Ê\ç=Xu\9f\1fsy\9e\8eÀU»V¡×®P>\99 ¸Ï³¶ù:\8d¬j\ 1·8k¾\ f\Ì\â0\8d\7f»\1c߯9\13ðo¯Þ\91y³fYL\97cc.Lû        òO6t\é§,©\93fJ+\Ï*\\¹G{\Ï\"L\83½\æ9\Ì÷\94\Å{\ÈG¹\î\Îsü\Ê\à_MwN(ú\87â\9f\81LÊ·A\ß;\vV\ eÀr<\99µ\84ª¼u\Æñ\ 6)j)/\"\98a6%j\94\ 1\83B/\È\13%2<V\nG³\Çõ\8f~h\88\88\88\88\88\88\88\88\88\88\88\8b\84Á\f \9a4\90\8aDi\ 2 N\ 3\r\85     \82Vde    \84L9\84\19\18\ç0\83{rdz9k±\9cg8UWú±º\rÁ\Ý5\ï.\8fÈ\9c\Z\n}j¯µ\Z¾\Ù\È{\87\1dSe\8d\8d¬\ï\147\151\ï/\Û\10n\Ã+\99»\97`m\8ea\88\ 2\19¦@\9bnbJ±µ°\92H®©­ú1;M\Ïq;}\Ë]Bf\Ç>Ó®\97\9c\'·òü­jx¤Ì\87ªò&½³i4õÓ¨fd\99\ 5C6:ý\86\ß6µ\8e\e\Ûa&´S\à~\19[x\ëK\'Q\11\16\84ýL4×\97\9e\eûX\n\a\1c\98Uºõ\Ì÷\Çó\9cQ\ÒÛ\8e\Êõ\85ø\ç\1e\Ñ\ÍU\ZTsg>\í\Ã\v\9c»\19§\Íz\a\13\ÑWm\1c§Æ\9a\Õ\ÄRN©Ø¹\ 3M¢´\84\"\90%\99]o±\Ö\×Í\8a3\ 5\ã0\89\"4\82\89\84\11\ 6Q¹øx\Þ\×c\ e\Åð\9cqU]G\Ç\Ú==D \×VV\ê:\ì(0@&\0QcG©\881\ 5¢f0\Öe\8d\Çõc\18ý¿\å\97g\å\9c\ç=\Ñ\11\11\11\11\11\11\11\11\11\11\164vO¸\Ý_\ê\ e\95k¿öG\9c8\ï\89\81\8d\Ç.ײ\ÖÀ±9d7ÿ\0\ 5\12\ 5;\8f\9b9\92\ì\n\áF\82 Ev$J\91\18\r~\1f Xt`{3\ë6\è7\19J=g[ø\87\97;6rV\È4-\80¬\'\ e\êÀ³k2\Øñ,\99»Q\17hú^|\à\8f,\rvK]\15¹\ÎH\19\ eÀ[ªwú®üºw\ fgf¥Ð¾\8dj1®\85aU\12Ö»_\Ó÷\î\Ç\1e W\854\Zr[\Ø\Ö\Ö\éuz¬yrÀr>÷fÀ\éX\18\93\ÊOÅ\8d\14ç\8d¹N\ 4\ f«\97\99ß®J\å]\9f£ýf\Ô6\90gù¹[.\8dIµoúTY1\8f\86\95\9an£qe\1eU\9cy8\b\8d\18»\84l\80O$\ÈÆ\94P\864\9f<±ô\99\7f\Þc\96góÿ\0\92?\"|\Ó\Ú\Î^¸ú\ 3saA¦\Ññ\í\ 4úÈ\8d\94\Êú8ð\9des+]¥­Ì\97\Ê\rf¤}~\ 1l\äN±\ÄHÄ\9f8r²\1e\ f¤3Ä\9c\14\íc\95¬$\ f8\Éeç\94·¨®\91\8c\7f|<!\Ù2!ûþýò,3ûþ±\8fe·~\83ø\9bè\97\8d\b[`º\8d\Ã#\Ñî·£G~ݹ_lû6óº^F\86\11\8a\rYö-®\Ò\Î\\JX.i\äç­\Ä*\èó,-%\ e>\re1\æ\Øò\"\"\Ã_\"\1c\17#³]\13\í\Ï\0B~Ga\Ë=|\å-6¬­n\1eð\Û\ÚjvM¨0Y\96\13\ f\90\e&E$f¹\99c\8e\Ñ\áþ\Í\Î]\8a:¶\Z\v\9dRþóV\Ø\ë¤\Ó\ì\Z\ÕÅ\95\ 5õL\Æ`s*\îiæ\9aºÒºS1\97a\92aM\8cx\Çf\1c\ì4¢~1\9c\1e\ë³ñ6\É\aM\å>4\Û\ìß\91Vê¼\81¦\ì\96\ 5h\Èg\ e\r\1e\Ç[g-ø\bXR\97,\ 4R;\ 3\10\88G\ç\1f\161\î\Î\e\9b\âxú\Ú%þ\85¤^À0\ä@º\Ô5«hR\ 4\ì8G\89cM\nds\rø\Îp\á\94&c\Ø\ìg8s]\8cû\ç\19\11\11\11\11\11\11\11\11\11\17\9fò\97*ñ·\b\è[/(ò\îñ­q\Ï\1d\éµr®¶\9d\Ënµ\8bK¯\ÑUB     $Ë\9dca-\ã\b\8e\"\9c¯\Îs\96\ 4D&qðcó\88    ùjõx\í¶\16\ 5\89\Z\8aª\1cû­j\7fg¶*\áN\9ba\1cqY\18w\\GLi\ e\ 3\n;\17\98\Õû&\Å\ 5õ\Ø\Å~\7f\1e\8fg©µ\8bh\18u\ëô\1d\ÌòW\ØØ´u\r\å\8e\Öv?\91dH\Ìv\Ø\ÛKÙ¶\19\11\9d<\Ò\Þ\Ç\Ù\ÞM\rF©ª@°¶p\â\ 4ó)5JRØ\82\ 4&BĨ\Ñ\ß:/\19^\8e®1\ÒE­r¿\91\Ý\åü\9f´ý\15öÁ\ë÷\1fÈ\93Q¡\Ñ\Ø5\á\95ø[\9e\Ó\î\Ûm\Å\Ñ$\ÆcI\ 6\18ª¨l L\95_oY#-S;\á^½pO[ôú\í\ 3\80ø\87\8e¸{Lª\8fø\90u\î<Ô©ujñGû\1co\81\19U\123\ä\ç%v_\92Jy\Ê\ç{e\Ï϶3\8fcDDDDETOª;ŵ\97Gû±m\Ø\Þ<\Ö%D\ëomï­¶ú\9b\0eƬ\Öy\9afOu\ÈZ\83\9c\Ðg\10GpC\13\1c\Ùó\'Ø\90\Û1Z8\Ð+\â\8f1}V\êúd{\ÛEÜ\9f\19\1c[©I°°\93\1d]\8d\13\82ù\17\17SO>\Öкü\b\Òõý\94\93\13ó-¿\99 \9f[*\\æ°¡\8f$\í¯<\éVQ\çe\92#DDDDDDDDD^3\Ø\1eÀq\'W8\83y\ç^qܪô^4\ã\Ú9\×\Û\15õ¡\98\Ì6<\18¥\93\88Uñ\Üö\96\Æ\Ún\0ñ@¯\8d\îy%þ\Ø`\ØR²¥¯6\9esù\Ï\Ê\Ç*\ÜkTv7|q\Ô\1dR\à\81\ã~ \8d5\àÿ\0\12\86¶k\ß_»r\'\Ð\Ð\æ\Úú\Ç\"\8df*\8995m!\Ã\v\13\æW\Ã<lSñeâ\83²>Vù\Ð\\S\Âñ\19¬i4N\ 4¾R\æ\8bú\Ést\Þ9¦&q\9f¶@£\96#®\ïd³?ùn»\16tS\Ì{\87\83K\86\Ã\Çym\94ñ»â¿©þ08z³\8c:ý¦C\91²>,\7fñ\Ï0\ì5\Õ\ç\ä¾F¶\13O\82\Ûl7B\ f\Î;L\é2~ª\8a\ÇF¨\80\ 22\ 5|HÕ± Ã\8b²4DDDDDX·Ü®\9fp\8fzú÷\È\1dm\ç\íZ\1eÍ¡\ïµ%\86\18-u\8e¿n,¶E>\ËE+\ e\1c\88\174vA\8be\ 2\\CÆ\92\191DPH\8eq\86\1dò\Û\á\ï±þ\'y\97:§$À\91¸ð¾\Ûa%¼I\Î4ðd\ãY\Ù\ã\ã\12d\87]¼6@ÀQ\îñ G,£T\99\15´8\Ò\ìi\ÜLÀ¼¯£\ë^\"|¤ò¿\8a.\Ô\Õs\9e\8e       \9b7\1e\ì\Ñ#j<\Ý\ÆC\9cH\Ñw½\173\99+\ç\1cO8«Ý´kGɬu\89V\18À\ÆSXW6e[m\8di\12\à>\9c÷/\80;\ÛÁ\9a\97`z\ç½U\î\Ú>\Ó\ 29\ÊØ\87\Æ-µ\Ë7\8f?\99¯\ìu\85h§T\\WIa\áË\85>4Y!\95\16Ls\842£J\8c\f¨DDDDDDDD\\2$\ 2(\r*Q\85\Z4a\12D\89\12\b0\80\0\b\ÜC\18\Æ#\9a1\bCk\9eB=\Íc\18\×9\Î\Ãq\9cª¥}K\9ee.»û\Ù;\9e·p\Î\Íi\eª=|\Ø\ìµ\ÜF\8cCD\87\Ê\\\95I/5÷\ÛE\80òÀ¾u\r\15\9c)\10u¡9¹\812HMv\Ò\ÜE\ 6¯g\eM\Þ8<wsÇ\93N\Ì\ê}p\à\è,\86ù\ä\15§ r\15\9cSH\Ö8\ÃG\ 1\9bü¶\Ót\Ñ\12;§\ÌhZPkú\à%Å\97°Zýq\9d2®¨\16÷\957\1eô_£|\a\ã߯:_]zû«C£\Öõ\9a\ØL½¿tH\ãØ·Í\90q\Ú\ËM»j\9a,d\93m­e\æD·5\å ¢fA\ 6\1c¹\Ï1\8d\98\88\88\88\88\88\88\88¼¿\97øW\89{\ 1¡\ßq\875ñÞ¥\Éü\7f³À\95U}©\îT\Ñ.ª,k\æ\8f\99\18\80\9478m\90/q\15Àx\88ñg#\Ëþ\ e\146û\ç\è\Ì\à^M·º\Þú\'\Í3úûa%§\9c\Þ!\ä\n\Ë\1dÿ\0\8f\äJdiFt*-\8c\97Qv}iövE\13F\édº¦¨\84\11B\8bR69Ò\85©\8e¹økõ*ø\8f\ß[\Ì=E\×õ\8d¼\ï1£\ß\è|k\ËZ®\ï¢\î±\n\È\ì$\8d£\8ewi\ÚT;\'\ 5±¢¶- \81\ai\0\ZXUò±\ 6M\9cCÉ¿©\1e\92\b\ÔZ§\90\13ü¹\Ä\18¥«¯\83ºs\'\12\ e\ïMmw\n0£]\Ú\ 3\8ba\16\Ïd\×\Ý2v\1f6%%}\Î\Û\1c\ 3\É\á\Z\â\'\Ò\13\17%yc\Ôe\ã7\81\æG\89Í·ý\93\âQL\91\98P\í7\î ö7]¥\9d;\ 1t\8c¬¶\9bÇ­\85o! a\n\æ\Õ\16k\ZÁ\e\äüdD\Ã}?¬þ}|Iö\Êõ\9a¿\14w\1f\8f\à\ìòl\eWY®ò\94-\8f\86®n\æf.f\95´p¹B\9fU%°c\ÅnK\"\\?¶#\Z\Ã\ã\as¡\Í\Äm°\êÛ®\9b¼Au\9e\93¶\ë;\85c\1c\Ö>\ÃV¾ª\Ø ±\ï\Ær\Æ:]L¹q\Ú\ça®\Ë[\92c.\Ã]\9cc>\Ù]\9d\11\11\11\11\11\11FS\Õ\1d\ä¿=\19\èm\87\ fñ\î\Âú®\7f\í«-¸\ßP%M\Îj¶mGBüG\7f\8f¹\n¹ð\ì+¯!º¶\19\ 3GS}JR\1e\9fiº¡t\81´2>\Æ\Õ\aQQk\7fkYCCYawywa\n¢\9a\9a¢\14\9b+[{[)\"\87]YY]\fF\99>\Â|\Ã\ 6,(QBY2¤\94@\0\9eWµ¹¸\ f\Ó\ï\â\8b\85\Ò\Ív>\Ó[S/³\\\ç\ 6»{ç\9dª$_rG<\97Ì\99©\è5sd\96L\Ö\Òi\Ô3\áÀ\90Áº¶%­\ë,/MEW>d\807|\88\88\88\88\88\88\88\88\88\8b\Ì9k\84ø{\9eµ)ú\176ñv\83\ËZU¤y\11,5nD\Ô\èöú)Q¥µ\8c\96\ 2\Ö\ÞÂ\9b\e\"\961\fR\99\81\á²\ 4\b\ØxýÛ\98²y\1fô\8ct£²±owþ\9aÏ\91\1ec\94G\ÌfµN\ 6\\p\rÓ±ü[?\rüyõÆ\97¨\95°k\äÄ®&\99}ER\Ë\vS\\]T\Ü\18Oa¡)»\87˯§Ë°v\1cg\1f\91ù3®w·\98\91k\10\ÚF\É:ó\82¹\96®,ºqX]\Ô@´\89\8dKlp\9dYO\ 2\ÂTú\b\e\8dEik\98fVW\\V\96t\Îü-z¨¸Û¸7ú¯Z»\Í_¬ð\7f?]\Z\ 6½£rMQe\87\8b¹Z\ì\á\b¢V\Ê\Ä\âÉ\91¥m\97\16\ e,\nÚ\99²¦\×O>jÁ\12\êu\9d\99\ãA\98°\8a)\ 2\11ÀQ\98\ 6\e\f\13\ 5\í \8a\"7\ f\19\ 6Fe\Ì \È\Ça\Ì{s\96¹¹Ã\9b\9c\ã8\Ê\äDDDDDU\14ú ;\87s\Ú\Ï+\9c»®6c\89¡u\92¶¯\81t8Ñ­¤Î¨\93\8a\9c\97eÚ¶(\Õ\æc\ 3Qcm°l\'«µ\b2gJƹ\ 2A\8a<\å\90adÿ\0¤¯\Ç`»SÞ\99\9d \ä\ZY2x\97¨°\19²Ò¸ñ\9aú\9d\8f\9a-2\bº\Å1]&,¸3\85­\ÔL\9b±\ÚV\99\83.\1cj9\"8\9f\86|\í7DDDDDDDDDDE\87=\ä\è\9f\\¼\86pFÁÀ\1d\93\Ñ\ëö\Í^É\87\97¯\Üd\ 3fË¢ì\8e\8cX\Ñ6\9dFݸlÊ\9bh­&Z÷E8\9b,\1e\á6}ð\12\86\9f\ß+^2y\9f\Åwjv.\0\äø\96\16Ú\85\98\8d´p¿(~        \ 3E\É\Ü|i.\f{(\13X&\Â}\å\11ó\8a\8d¶¤Y\fº»&\ 6D\88\10¡Z\Õý\ÓHô­yÀعö¾\1f\8e\Î\Ön\ä¼\åmB\8aLοò\ e\Í//º\ä\1d\1fl\Í/`»\9b#\18·\Ûõ¸\ïkkd\1dÏ»\Ú*þ\83\98v\97\106+\99S\80DDDDE\ç<Á²\eN\â^RÛ£\1dѤj¼u»ì\80\92\Çe\8e\8ej=f\Î\ÐFkñ\9ce\8e\13\ã4\8dv3\8c·-÷\Æq\ì¨}\ä-\ëa\å\rÿ\0x佺H\æm\9c\87¸l\Û\Ö\Ï0Cp\85/a\Ûn¦\ß\ÝI\18\9cò¸c=\95\84\92°n!\1cÆ¿\r\Ëß\9c|³m\9f¦;¦\9a\ÇRüTp¶\ÉZI²6\î\ÔE\87\Ù\rüó\7f O\1d¦\ßO_\ 2\86¨p\ä\10\98\84\ÊMV®\9e³#\8fôG\92H\ï±$P\ØL\9cCHU\11\11\11\11\11\11\11\11\11\11\11i;\ÏG\8c\Ýo\É_C¹\eM®ª¬\1f:ñ]e\97\'pf\Îh\ãdð\íz\Ýd\édÔ\8d\9cѨ¶ø\ßmU®G\12\Â@\84g\12º.\'=\84U\nqW%òoYy·I\å=,öz_+p¯ Vl\95C°\r\95\\ê\8d§P¸adR\ß\×0Õ¶L\8eY\11$Rl\Ôr\v\15ò\ë\ÍcO9­\19\Î5w7CûAK\Üþ\9eõß³Ô­\1cvs\17\15j\e\8d­f\ f\f²(ö\v:x¦¾¦\9e8%4xs Yº@\Ï      \85#c\ã,h\Êadg.[\"\"\"\"-nù\82\ä9üO\âû½\1c\89V\ïk-S®|\83e_\8fµÁû&ÿ\0\eø\ÑC\935¯p\Ús\9d\81sð\Ç\ç\18&sñwþ\9c\Ò÷Áº(9C\9aø\7f\8d%2C\ãr\')qþ\8b!\91\1f\91\Êx6ݲ¢\80Í\8cL1ùd\8c\8eÁ\Ø\vð\Çe\84\Ë]ñw·¶oyд\Ê>:\Òu=\vZ\87\16\ 5\ 6\9d®\Ôku1\"F\14@\n\15D\10B\ e[\1c?\ì\Æ\â´?q}²ì¼¤{\Þ÷½\Î{»j\"\"\"\"\"\"\"\"\"\"\"*t=Eý<¦é\87\95\î\Ã\éºÁ\ÆýO\97d\Ã\ìn¹\r\99\92GT\83\97\ç\\[]Ö\98ò^ì\98\8cÛ¡lr\9a\Ø\â\8b\ 6\10%\86²\ 4\82\17\92k^\8d\Þd\Æý\â\çm\âü\Ç8\ßÁ\1d\8a\Þõ\ï¸ùn[$[\Ô\Z~Ec¢|Jüb\18\89~a|H0\9bó\9b9\Ùk\Â\à\11\Ò\ÕDDDDZ©ó\87¥\Ë\ß|Jw\ç]­\8ai¶\ä\ë\9e÷>\9e,|û\18öU°q4\11Ç\8c¹\83ve4$\8b\9c\e?[p|¿9c\98\Ò2«ÿ\0\ 6\1cw\ 3\95¼¶tcG²\87\16t[.bÅ\97\Ñ0_lf\É\Õõ=\9bk\83(\8dø\138\Ì\19Ô\91§\f­c\9e\ 2\Ça\87\8f\98Ú®\96DDDDDDDDDDDDUÀú\Ûø\ÓZ \ì\çJùJ¾¬\0\Ú9#\88yC^\Ùn0!6M\94\1e:Ù´\çk°Jv±¥$j¦\îV¥\8e\12¸\8d\ 1­&\10yn$¹¸\Ù\'¢A¥\ÇJû\8a÷78\ 3»EJÑ¿\Ûôâ·\89õl\99¸Ï·\ï,cÁ\9c\ã\ß>\ß<~±\ïû\9a\Ò\"\"\"\"\Æ\Þ\ãj Ýº\9d\1dZO\Ç!¶\á.J\13\9añ\à­&A©Z\Ë\18\9c<\å¸\Î\fH\í\16]ûø|þ\7f\aü~\ e©·\ÓM\0\Ö\1enú\'\81\0\86dM¯\95\ç\És\ 6\â28bð\a+½§3±\8c\àCü\8c\80-!2\Öý\å\bñ\9c\90\8ck®$DDDDDDDDDDDDPMõÀ\ë5\î\á\î\84\î?O½¨y+\995\9f¿8n~\15òu}F\Ó\éc¾\1f\92b|É\8c\93\âÿ\0¨Y\Ã1\91\å\Ù\Í\1fF®·\ 6§\Æ\ eùw\Z\10c\ËÚ»#»Î±\9214d°5m.½H\ 3\È#[\87\18\81\89\0\11\18÷\å\Îhc\88Xv\18Ƶ²\áDDDD^[\ÎQq;\859\86\v²\æ¶g\16ò\fW9¾ÿ\0,bF¥n\1c\å¾ß¿\960ÿ\0|{c\ß\ß\Û\Ûöª¥ô\9eid\Ûü\Ëp\ì±dmv\91\Æ<ú9\äù\7fH\âk\f¤.\19\96µ\ÙÁ\n;÷\ 1\9f¬5\Ù/Á\Îk\1c\çb\Ú\ÄDDDDDDDDDDDE  \8f[\9dn\v\ÓÞ\97\Ü}~ù\83\Ù]ª·\îöÿ\0/ù^/¶\95õü¿¾>\ß\áp\ïoõú}ÿ\0\Ý\Â\Ï\ fH\95~!øiФ`\7f\f\Ûs\Ï<Xe\ßû\Ù\1e\ e¯\ìþ\ØþØ­À¿\×ü¯\ïþ\98\93º\"\"\"\"\ê\Û\Ì\11Y\é[\85iÿ\0ȱն\b&ÿ\0ò\97S.9?þ     \95\\G¥+\82\ë5\8f4\9d\Ç-?\Ø\n~\ 4Ò¹Ã\8e*!·ú\82\Êû>Y\ 6¿\ 1\Ïq2\ãý\91a\é\í\0½ß\9fv\È7\Ûò~\19\9cY@\88\88\88\88\88\88\88\88\88\88\88\88¢¯\ë\ 3Ñ\83±x\9d\9b·\9a\e$;\8f\8c§E\92\ f/\81\'c\Ø!\ë\9fhð\ìý\8d\É\âÌ\97\19\es\ì\Ò\äosp\\a\Ù3\éu\Ñgh\1e\18z\Å\ 2Àoa¶\e\1e\82\ç³\á\93A\Ý÷«\8d\96¼\98\Çû\Ìl+\0\ 5\8fÿ\0}\82nT\83\11\11\11\17ø \Æa\90E\e\n\"±\Ã(\88Ö¼d\eÛ\96¼dc±\96½\8fnr\×5\Ø\Ë\\\Ü\ç\19\Æq\9c\áA7\Ó\17A\1e·Ì\9f\9clG\Æ\ 6*\ eG\ä\8a\b\Âo¶\Z\Ø\æ\í?#üq\8cc\ßô\ÆÒ\89­ö϶1\9cÿ\0\7f|)Ú¢\"\"\"\"\"\"\"\"\"\"\"(\àú°\ 1\83xJ\ìi2\Ügñ¹\ 3®\ç\Æs\8f\Ûr\îp\Ò#|±ÿ\0\fûH\Ë}ÿ\0\à\ì\ãýVsx7«\rW\88o\1d\10\86,\Ê\ê\Ï\16Z\e#c\e\93\ZÒ\84\13²R\ç\r\ÆHL°\Ãg\Í\Þ\îø1\8cò\Ö7\Ûk\b\88\88\88\88¡\Ñ\à[C¦\Ðü\ãú\84i©\0xð+ù\86\9aXG$\8f1²]Ë\969kl²3\88Owe²,e\Z@\ÚÏ\80\ 6\"±\80\18ÀÁ\r\93\17DDDDDDDDDDDDQ\âõO\Ñ\Ø\ßøL\í<jÀfA\à_ðe\áÇ\875¾\Õ\Ô\\Ù¢\ÚÚ\9f9{\9a\ßhµ±eJ\Ë}ò\çý\1f\ 1µ\Äs\e\9c\ãð±\18\91<Ix\ã\11\1dòsºwÁ\12q\9fø\ ef\85O0Mÿ\0 Gc?\é[:DDDDE¡\Ï\Z\Ýn\'\14ù(ò\ëÌ\92ª[\1eG=se%¤;?\ÆÀ\9f\"\8f]§«\87\16\v\8f\86\ã\ï\10®e\ì6C\Æ]\9c0Ö²²\Ö\ã\ä\ç?|h\88\88\88\88\88\88\88\88\88\88\88\8bWþf8>ϱ\9e6;I\Ãõ\ 5dk\r\Ã@\97_\16a\ 2\ÙC\81(\8fh\àO|W\Z;¥6%\89!\9dÀ\11\86G\á\99ø\948\ÆL<\98\è\æ\8aþ1\é\ÇXxù\ád|iü\1d\Æ\Ô\"\bþ¿¬q`jõÂ\89\86\àyø1¹\89\80»\ 3ǶE\8cýnk^\×7\19P\88\88\88\88\8b\áT\ë44s®¬ªk#Á\9d±Llû¹!û>\Ë\19\8cÁ0Ó\9f\æ÷7\ä\Ü\14\9e\ß^\18\ß\ëwôû¯º\88\88\88\88\88\88\88\88\88\88\88\88º¾\ç¨\Óo\9a½Î¡°\8c¦¦½\8b\88v\ 2\ 3\Ú2¼80\8f\8c1\ï\19Z\Üý\81f}ò7c\Û\19ý\7f®>\95\r4\1dr\8e\9b^¬k\Ù[CS]M^\Â;\ f# \Õ\Ã\f\18\8d{\Ú\Ö5\ÏÀ\0<9\Økp\çc9\Ãq\8f\Ö>²\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"ÿ\Ù',4,0,'','','',''),(65,5,18,'9305bf01b7c2bcd7','18858997325bf01b7c29d79163158635','2018-11-17 13:50:06','2018-11-17 13:50:06','','','Contact Photos','12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007','image/jpeg',80,80,2356,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v     \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0*\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b \n\11\12\13\14\16!#\15\"\18BCÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91ù\ãõ1VüwZfº\9b\bJ®\Ø\í¨!¶\9d\85m³e\ÙMg Ü\91\13\ 4\a\14|\\qb½tÙ\99\11ö$\15[Q\àÁ\Õ\Û|\'¬\8fJ\18¢+\18\Å_\8aÎ\9fy®ód\à]±î§\91~\Ü\èN\9e\ÊM>et-e°¦µM§s¨2T9¸\Õ4ZO\ë4\Z] W\9a~?;\ 6J³&\Ñ&\ eðu\êôç´\84´f÷}v\ë\Õ+¬\9a\Ö3V\Ð\ì;j\Ó\v\1c\ç\ä*stn]\9d¼.\87\98±\Ç\19\â       ¶\í;E¦\\V\1eÀ\Èu0°\ÏEW\ 3}o¹\e\f\16H{\v÷^8\ã\8e9\13{\á\Ù\ 4õ\ 3¦\1d¢\ìòE\1có´v\8eØ»\ e\n4\Ì+\"J\Ú`kg¿R\88+\b\ÊUøò\Öl\Äƽ\9c)\1eÍ\94¬üÑ\8c|±Po\8bÞ©\Û<°yCÓº\7fhX\',\98\Ý;Jõ»\13t0\×U?-M\85̦\É\ÛR\84JcûX\9e·\8e\19ðqòXJ¿\1e\Ãc\8f#-ýh\Êqt\15F£X U+TjL\ 4MV\9dN\81\89«\Õ+0A1\e        ^®À\80\Ä\\4,Lx\Èlp£c#\Å\1c0\85a\bi\81\Ùm´\'      N1\È9\äo\Æö\87òa¢¤t\Æ\è2\ëX\90\10Igµ\î\Æ\×Ö¹\êå\92\81d\91dl72\88ø\é! m\Ñß\92\ 4z\äk6\à%b\ f`ofS\1f \91dÄ­\v\ 4òe\é\ç\ïýã­\97m©rÙ\9aÿ\0Ll@\ë{?D[\ìÓ³Ú«h\ëb\10\f\94E¯]\ae|õ\ë\é;e\1eB.\ÉO³W\90\ 1 <T|}\98Ixñ$ \9fµ\ßLm\9a^û\Ô:»xk\89\ 5J\ëýÁ¯©\Û6\95\"\â\12Ó¦U¯5øû,\13ï²\87\1dK\ 4®6H\7f\1f\ e/,?ö3\95+(\Îy\é|q\Ç1\8b\8bVØ·?\8a>þkÚ\90\84H\Ù$úͲ&a\ãDK\8b.P\Ê\\Vn\è\8a\r¶³\85¼\\\9akª\0Vq\9c\á\â\bm¥%I^S\9d\ 4ý\19¯Dµ\å\8aþ\83\Ö\Ú\ f#¦;q\984º¶\13ö\9c\9d\99¤\b)±\Ò\æp\ê\Ê\ÄS\aº\94\8f\î\æ\ 4hÕ¯\1fJ\1c\Î-&\ã\95Mz¼g\é\97\ f2\12\90T\ 6\98\90´V:ó£©\9b\fx\81\Òù¥lb\9cµXc\Ã!\ 2\8d\96ý\ eѯ\ÃB2\9c\95\86\90\188Gô6\9eX\ã\â\ãE\Üz\Ïã\9f¥:\1fb6H÷\íg\ÖýY^ºÇ\98¼­ø[^*\à\9d`¯)Y\Â\7fÒ¹*aPL\ã\Û\1f\16#\9bN?\8crzq\Ç\1c\â}\86Ie\á\88i·\Ç!§\18}\87\90\97Yy\97Q\96\ÝiÖ\97\85!\Æ\ÜB\94\87\10´\å+Nr\95c8\Îq\Ê\Ä{\8dÕ½\8d\é óA¥{³®ª²¶>\92^v}\8ev\8c¸D\7fXz\êò$\8cN\ß\ëÄ\82\Þs\è\Z\ßI«\Ø$M\×k\92y\"X\"À«\Í$\97\ e\8a³\v\11en \ÛZ\ï}j\Ý\7fºu%¢:\ë¬ö\8dN\12\ïFµE)j\ 6r·a\ 5\99\bÃ\9aC\Èl\81\ÜX\ï%\ 4\86SL\98  Hx3\18\1ei\11\Ûȧi\b\éGF»IÚ #\ 5\99\9b\Òzv\Ùo«\Ä\È%\Õ\Æ\É\\\Ò&\"\éAJ¡\87\19}Q$\Û$a\9a\94\Ã.´÷øõ\13õ8\87>*Æ\8cÞ\96~\86\ f\äc´ý\8aò½\ÝB\Ë\Ý\16m]·cÈ¢~Ú\94\98\r£²S\è\Å\î\7fcO\n\9c4\13¹\Ö\11E\Õܦ@ \\\Â\ 1)d\0\á\ 4\aôøv\15cG\1cq\Ï\ 5\ì\çft§O4nÁ\ìganñ\Úÿ\0TkHe\ÌY\'\Ïù:óªS\88\Z6\12\12\91\93vIù\'\86\88¯AG¶\éòÒ¥\8c\18Í©n{\ã\0]_\ì\1f\95ÿ\04\84\ãv\ëk9~,<l\1e{\ØÖ¶\18\9a\85R÷\Ý>\ËWX%c\æÁ\r-}\8b°\Ñ5EJM¦²ðV\88ªÁ\ä\f\90\ 5_\ã2\äø¹d\94ñcÓ\8d\81[¬W;\1dL¹w/\152\r\90\89\90\îV\Ñ\Ø\1d\8f@\ÓRL i\19\Ø\ê\9eÄ\9f\93\×5©c\ 6m#8õ:\95\\a\91~B\880\ã-m*tQh\94\9d_M¬k­oR­Ð¨4¨Xú\ÝB\97O\85\8f®\Õ\ë\15ø¡\Ð,l,\f\14H\â\Æ\ÅF\ 23hdP\82\19\91\Ùm8J\11\8csÇ»y\×\n·oú»¿:½t1ø\Ê\Þö\ÕW-jtȬ\à\82\1e²\Ã\12\fe\8c1\Ô\ã( \Ê\ìªÁ\9c\10w\1dm·É\8f\15\86Ö¬óO¯N\Ƴør\ß]\91ñ!\äJ,} j\ÙûQ\8d­\Ö=³g\Ê\â´öó\98L\14u*\É\15H\ØÒ\8d\ 3\ 3)û$-~\933H\1dd²k\Ò\19±\Ôf\86\87¹°\15x\Í\ä\12¤­8RU\85%XÂ\92¤\ç\19\9c{\ã8\Î=ñ\9cg\1f\Î3\8f\ã8\ç\Ï\1csQ?-\94Ù¯*~j:M\âJP\ÉDuO@kw»½Û\98\88Ò\88 \9b\8f\ÂD\Èz\Í^W(q¥8Ê\83Mv¢\ 1\82£\87\Ü\ÖY!ó\93\"\87pm¶a!!\ëP\Ñ5\Ê\ìTt\15~\ 20\bX8Hp\87\8d\89\87\87\8b\15 c\"¢\ã\83m\91\0\8e\8f  \86D\b1ZhqFe¶\19m\r¡)\Ç\Ùñ\Ç?!v\×\Ô-\99\ 6\ícc\Ò*\e\ 2¶úþ\×\ë\×j\Ô5®\r\ç0Û\8da\ÇbgB<\a\17\86\9du¿\9a\Çʾ·\1cG¿\Åj\Æ`·d|h\é]\ÍXùi\ë.\Å\évâ\80\87l\rsºú\9bn\9c\Óòµ2#Ò\97!E°\Ñ*2Pú\ëgS\Ç!\81Z\91¥\Þë\92±\æ\Å4¸ð\n\86uL\9c4Añ!\ß\Î\Älݯ\Ùÿ\0\e\Ýýj½ÿ\0;zHd)\12û\ 6©\Z\Ü%[²\9a\91?K\Þ0P\83²8\912E\8f#\0\å¬\0\ 4\8f\8dmv\9aó¢\ÇF\9eô\Ô4>u¸\æ\ 3úÉ­G\13\Ô7\å\ 3e:Û¥\18\ïK:@\0\85¯\å\94E\alv\ä\ 1\91m{ÿ\0®\11 F \16G\Û\1fú²þqÿ\0|s>\1cq\Ç\1cs\ 2²\Z\Ìx\ßRõceE\'\ 1.\Ï\á²\Ü-¡,!M¦`º\çnjQq¤\9a¤º\96\ß|peA\19µ)\95:\96\ 1\19\1f?­¶ð\Þz¸\ä\ eÕºý0\9eH;\99°S\1c\86Qy\ê\9fC#ñ&\96\14\9c\98]Wa÷¬SF[ÿ\0RP\ë¢\bl2\96\1dul²ð\ÙV\eK­\áSÇ\8e8\ã\8e@\Ùz:W\äò\81²\15\10¬©\8e\87\í\ÊSs\Øo?\ 4~G`t¤\ã\91+w\1f\14\18l\Æ\ÛW¶U\86\ÝS~ÿ\0\17\97\1c\àH£ \97\8c@\ì$²\19\1cg\ÊKM¤\97\11d¸+\ f?\84\á\Ç\19\19\vpv\96¬¡\95\94B\9bJTó\99W?\1cq\Ç\1c\ëd1T[g\ävrsC:\ee\å´\ä\84\nû¬¼ð\èw\Û\æ\96]xv\1cq¼gâµ²Ò\95\8c\å \Î;<ÿ\Ù',5,0,'','','',''),(66,5,18,'9305bf01b7c2bcd7','18858997325bf01b7c29d79163158635','2018-11-17 13:50:06','2018-11-17 13:50:06','','','Contact Photos','12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007','image/jpeg',48,48,1488,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b        \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 1\ 5\0\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0  \11\12\n\13\15\16\"1\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿\ì.\é\1eY\Ö\Óû\8e\190\9c\ f\ÆK\ËŤ*X2 \7f|\Ë\Çf\Î\ä\8c\12Yys\82G!µ+\15\92\91c\91·Tଲ´\Û>¾\90\99\ 1³I¦\Ü\Õ]U¢\ 1n\å_Pf¿\89\Ø-5ô\e\84a.-¸\é\é\145\87\12Û®6B]e½W\87\87\91\1fò\1e\ì]\81\Ä~©:\'jjy3 6e½5\9d-M´G>\à\92u3v¬ªk²\Öx\93\Zøx\19¸J§\8d\82=\85!ð&\9b\8f1\87\ey\86Ö\99\íø\9cz\ì \è>\10®ö\íª\b\19¾\8f\ì<\Ø\ì¯]e\Æhû\rWQ\85k\93\86¬Ube\88ýb\86\1e\Þ\ì\17óû#\Ì:Ó³\ 4J\Ã\r\'\923\ 2\1e[dÿ\0 »\'°\ÞR\çÒ½\84ð·RZi¡sÓµ¢w?9\ÎÔ¨·\1dgt¡\ÊØ£«\Ä[@\1eZ¸\í\84Ih3¦Az\Î&f\9d\fº\Æ\ f\92\8dr\fø\959!@½Ew\ã~\Ìx\'Ju\89UÀ\ê\16\ÛX³U}\91Y\8dy\ç\âb¶5\ZX\8aÝ­P\8b\'\ä¦à¥\8d\r3Ð\82\96\ 5\83\15* D\96k\ã¬\Ç\ég\87\92\×\Ü÷\v\Ê{\16õ\É\Ñ\1c\ËUX­\ìy\88\10\9f\81C#gk©\16-\958r\8b\Ï\ÊB\Z\ÌTs\95bNs\nh&&\Ü)䩦V\9c¦\7f\8d\ fJC\í\ fZ\Ô\ e\88MC¢xbR\É\Î[óWM°¸\ë5FR¿m²»P8Ø¢s\83\e\12\91\85p\97\ZCY±\ÃXÀk\í\800¥r¿É\9f¦-\Âó\96¡õ\9b¥`\139\Ð>\Ðö\1c.\8f«\9e\1e\16¡I\8c¹\Ò     ·LÉ»ôyܪaù\bºò\7fHgp\1c)vI\7fº\v\8c\ 5\92«Ï¬þ\17§ú\à\â­\'\È\ÔùuY\7f\88\"I·Û\96Â\85þa°\ìò\ 4دVF\ 4Z\96\àQò\16)\ 3q\f\ 3®:ð\10¬\Ç\ 4ó\Ï::\Ý[\ã\ç*\Þ{\9a\87κog\ï}¡-\88M{¨\èöM\81o\93ú)\×\a\83¬Å\91(b\ 5a\1f+(\â\90>\ 4\8f\11¼e\Ò\Î|q\9aN\\u8̶\ã­Y\Ò\Ý\Å\ 5    \Øý\Ëq\Ø\Zò\91³\Ç\16\é\Ï|+®\í\ÓZþ\87­5<\Ò1\'G\96\è9\Z\99±\96½½·\ì\95÷¢flpV    \Ö(\15GJ~\11ªN\rÉ\89\16¦k\8d!¦ôù\1635^¬ k³®&7#o\91§T\á+òv\É\16\9c)Ö¤,òQ\81\ etùͺi\8e$\Éb\f\'\ e\16Jð\ç\Ù÷r©\á\ìÿ\0\Öü¯m\15\Ì[»O]àµ\9fYñ>\à\8d\Ü\Ú\ 2\Õp\8f6S_N¾\83á\89´k\8d\90\14N?|MN\Þ4\18,ª^   J\97\821\84\16 \å´\éb>\Äl¾\Ä{\9bhU­\83Õ\9a\92Û­)jd\ 1vvÓ¢\97\1f¶56§\95)öBT\9d¼ø5\ 3±£5\ê\8cwõ\\\Ø&kFk\Õ\È\Ü\âBòMXV\Þ}\ e\\d\9ct\Ôl|\Ì9\âJD\Ë\ 2$\9c\\\9cy\r\16\ 4\8cq\ì6PG\ 4[\v[\ 4\88Xδ@\Ä2µ´ó.!\ÆÔ¤+\19\Ì\éö\á®\ß\Û|\v·µ\8bH%\æow>p«\Ê\n+yq\Ã\ëòý=¦\84²Æ¸\9cc?õd«\îI\80\8c¡°\È}k\ÆP\95c4xa\87\fv\ 4\11\96\86\14VZ\18a\ØBZdq\ØBZe\96[F0\86\Úi´¥\r¡8\ÂP\84\á)\Æ1\8cc\Ïo\ f3öÚ´\ 5\æ«e¤\Ú\âÃ\9c«\\+ó5{$,\88\95\1f/\ 3?\1cDT\ÄY¼\95²@gÇ\96@¤°\êTÛ¬º¶Ö\9c¥YÇ\88Ǫj\Ô\í/\×\7f)R\ìfH\1d)M\Öm\Ô\7fZW.\äö\ãk\13\ÓppA?\97Ô·\7fó`À\8e\8ek\nV~¬\n\ÚSýp\9f\1dM\81G\8aصrj\93Ku¸òe+R\Ë[\18N]Á5k4=ª?\ë÷\ÆSñ\99\bQp¼ÿ\0¸FU\94ÿ\0o\8f6~\1e\1e\1ebµ\Õ\Z/[S!)\10®¾ô\\\v\e\84\19{-\95 \\\82\92¼\ãýú8ZÐ\9cÿ\0¹BSó\9c\ç\ç>\7fÿ\Ù',6,0,'','','',''),(67,2,19,'9305bf01b7eb4ee9','34785303845bf01b7eb2f18737560971','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','97971161215bf00e801fdd7464746900-4.jpg?ts=1542459008','image/jpeg',300,300,11008,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b        \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 1\ 2\ 3\ 5     \ 1\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b \n\11\12\13\14!\15\"1\163A#BQ\81\82\17\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/r9¸f3\9cDëº\9e±®\8fð±g\ë]L\ã\Íϵ[d_\å\"¾þW\äñ¿\19Ķ¬\94Hx\8c\ë»x\12.¯+\'=­\91\ 2ûY©´­\97\18f0Hð\96\11\åF÷\98}`\1e\ 2\Æø<|\Þ\r\á\íRľ\Õ\15\94\ 1v=¢¢/\ÄyÀ\8b¸\ÛZ\83\13d´\í{\Û.%\ 5F2\1c²9#\93\181\ f©\1e\\ó?\åC\9b¤\96VõÞ\8e\Â\r\å\95ùMÆ\95¼M\ãG\a\Û9À£\ eO\1d·W\9aøag\Ä,\8f\"Q\Ø\á\8cx7\Ú\æa\Ë\Ìõ\ eòù6\ä-\96§Nл\85\Þ\Ý\ãq¾\90ø\Ôz¶¡\Ø.À\ì\Û-Ì¡\80²\8b\1e¦\8e\9bn\9bic!±£\9eI\ 5\ e)\88\Ð\0¦sp1½Ø\95×\8f\ e\98ú°9J\92£h\87\Û^I\ê\×\e\\Î\8b\996\1d\83\Úuý«x\95L\è¸8®«x\êú\83\99\90\94\87üV\Ñm©Ø\82P¦bH£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8b\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)\ 1T\É2\Þ1\12CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ø\êy\ë¶WPKüg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ek¾º\ê8­5¼ù\Îo\Æ#\àÁº$\Z\Í;\Õ\äù¾G7\9fñ¯j¹\8a\ïs\8b\ e\ÆE\8e±\Çõ\Ï5/\19h\î>e{\aR\ÓA °¡b;\'N\f\8ben\18\ÓeEÅ\96c\19\â\Î\ 5¢\90¯\88\8fN\ßm|\9e˪ä\9d\80\13ºý\Õl\96\14¢òþ\ÑQ\92Zo\91[ &\9dU\Æt\ 6(¤J,\8a¼û\Ç\Û,\ã>\8a1l©\çÂ\83²ÁþDp\ì¯ñÿ\0\â+¢þ6õ\18\94\9dv\áº\0\î/\ 4\\l<½¶B\87±ò\8e\Ë2>\\|\Zf\×>9lb\Ã\f\ãÎ\93UY\fÃ\8dL9Æ\85\a-\8bñf6h\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88¢#\êAõ\ 2\13¡t6=:\êm¥|þ\Ø\ï\14$ÿ\0\16\82-}\9dw\ 1\ë6AÀ\Û9\Ð\1f\99 ±\ä+P\94\8d\Ö\é§\0\95µo\ 4«\8d\98\a\8b\ 6\1e·µ\Ö+µ\í{6÷³_n{\9dõ®Ñ¶m\16³o6-\8aòi\ì­\î­\ì\8eù3¬lgIy\ f&T\93\91\ä)Hü\ç9϶=\9b\8cc\1f\ 3\Û?¯\×÷ý\ãÿ\0\9c{\ç\1f¯ù\ã8ÿ\0\ï\vñO\a\Ó\Ï\é\9e\ eÿ\0\ 3M\î÷\91-\'.\Ôg\8e=ÿ\0\fõ¯e\86`\9a\â7\Ï/\83¸r\ÍL \8d\8f-­d\9am:G³\ãDx\ä\Þ\r·\'\Ä\rj\Â\Z:*mb\9e»_\×j RQ\ÔE\14\ZÊ\9aÈ¢\85\ 2\ 4@\ã\â0E\8a\ 60B\e\7fyökqòv\\÷g.s\9d\9f¬\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88µ\ 3\æ\çÉ\86»\âó£[\×3\ ePK\Ì;§\ß\Ç\\\ 3®=\8d).¹&\Þ\11\9f\ZyÀù\10ðú]V\eK°l/\14À\Í\15\\B¾´r§þ<CS{\É\\\95¾ó\16ý¶r\8f(mw\e\Ç \ïWs6-³k¿\95\99v·Vó\Éó<\99\ 4ö`\Ä67\f\8f\ e\14Q\82\rt\10Ư¯\8d\16\fXñ\Å\Ñ\×\îs\9cÿ\0|ÿ\0§·ü°¦\89\éjðt\Î\Ë\ï\15þ@ûQ¦}ü\ f\Ç7\"7\ 1\é×±2øü\9d\ÈT²\ÆW\îVUòÃ\80\17P\Õ$4\7fÁ\17.\96û;\àH\99\88µÃ®£·\9deh\0\b \f\14\820G\8e\ 1° \8e\0³\ 3\10B!µ£\10\84\83\e\Z\Ö1\8d\ÃZ\Ü7\18\Â\æDX{\Ý>øõ\7f\Ç\Ç\16F\æ^\Öò38\ãB\9bp:\186,¤»Ø§\ØZ\90.> \Ö\Ò\ë\Ðlm\ì\å}mùb%|93\1c̸Ì\8eð\ 2IC\1f\Înõ\89ø·\ã\È\í7\13Uóo`\8d\î6\12&½¢\Ùññpò\11\Ís\ÄNI\87A\1c\91\ÄÏ\81\18\123\8c½\82\88G1¸&,\Äõºu\ 5ò°\Éý,\ì\8ch_/lÈ\89·q\84\ÙXg¾?«\10\Íe^,»\Û\ß?\ f\Î\Æ=ñ\8c|ÿ\0~ø\Úw\ 1ú£¼:s|\Êj;>\Æ\Èá­\96\Ò+\8f&\1f/hÛ¶¥®U\95¹\Æ?\Z^û.\81º\83I\9c¼L\ÆKf\f9\Ï!\19ò\8b\1cò\99¿\8dKrÔ·\Ú8\9b6\91³P\í\Úôö±ð\îµ\ËX75\87\Ã\Â#á¬\99\0\Ç\aÙ\81\1cDx\\ü\14m#>ln]\8c\88\88\88\88\88\88\88\88\88\88\88¸\ÈA\84d1\88Á\bLy\nR?\f\18\Æ\Ìe\Ï!\1e\ì\á¬c\e\8c¹\ïvp\Ö7\19\Îs\8cc9U\ez\9aü\87\Ùw\8b\Èþÿ\0¥k\e#,ø\'«E\93\Ã|s\Zª\Ï3h.ö:¹%/!n\í\ 3¡E,k9·\å~ªX¦\91`\18ñõ6L\84øD¸±\89\88\ê\"\Ø÷\8a/\1fÛ\87\92¾\íñ\1f\19>\16©mhí\93\96\91_ :\8f\19\ë­üý\86|\87\8c\à,s[å\91µ\9a\É1ÿ\0$𬮣ٺ\14\98UópÛ¤ø\87\89´\ e\b\ã\r\13\86ø«[¯\Ô8\ç\8du\9a½CMÖª£\82%}=\15<vÆ\87\ e4h\Ã\fp±­n^\æ\0!\ e\b÷ýA\13>,Ç£¢\"ñ\1e}\ë_\0ö\9fD\91\Æ=\8d\áþ?\æ­\ 2L\80\Ì&§Èº\Ýv\ÉO\89\91\È3G\98\18ó\Â\\Æ\97\1c\ 4\98òc8G\ 4¨ñ¤\88\8c<`\10pHòù\é\14n\9fM·ö\a\Æ=\85͵mh\rwyÕ­ºÑ\96\96\83\0\ã\ró\9dÅ\9b\85\86b\9d\ 3£J\99\8d{j\97bs\16Í\91\á\\VV\Õü\v\ 3\9ak\8dr\â\×^\Øj¬¨¯è¬§S^Q\ÜÁ\95WqMqW(°l\ê­k\'\b\13k¬«¦\80ð\çA\98\0Ê\89(%\8f C(\Þ\Ì|Õ±Þ\83y]\ï\a\8dͲ\1d\ßZy\92ö£Qu\9c{\r\8b\88v9\126\ e+\Ú\Ø\12H)cYj²\8f\81Ö¾Y¤fD\Éú\é\é¬\'H\8f\ fù)3¢\ÆlWZ#\á·Î\87\\üµhÆ©«\fn&\ìÖ§S\1e\7f ðe½¤s\È(\9a\11b\Ça\ã\Ù\Å#$\íZ\9cinpó)\ÑÁg\16\9e\f2¾Th;\ÊDDDDDDDDDDE®¯,\9d¹¯\è\ç\8f^\Ïö:XbÊ°\Ôx\ÞÖ§U\812fk£Yî»\8e\e©\ê5\8f\9e\10\90\Éa{o\n$S\8a4Dzi£{D\92ß\90\9dI$¹r§Ê\93:t\99\13gM\90is&K1$Ê\97*I\1ci\12d\È3\9ec\È9\9eò\98\Å{\ÈR=\Ï{\9c\çg9þtV|ú?ü~?¯\1d-\Û;\8fºUÏ\81\Èý¾°\89\9dtS\ãÈ\89ø|\'¦É\90\Í8\91\86I2bL\8f³\Ûʸ\ÚAo\bpI*\14ø\15\11\Ìúh¦Ä¿\Ñ\11\11\14(}O¾\ 6\ê¹\ãD\Úü\85u7Mü~r\ã\Ê<Xso\1c\êu\99yykK«ø\à\Û-U$\ 6\áó·­^\e\88fÿ\0\e\18\17\Õ\0\Í;\ãZþ5\16(+eE\ï=e\ì¯0u\v\9c8û°¼\13´\ÉÔ¹\'\8d\ïa\Ý\ÓN\e\äf\ 5\80\9cd\99C}\124\98\84²\×\î@<õ\82\Ù1\8cð?\ï\85*\15\80\8d\8c>ÿ\0q¯\92\8e\9eqwg8ðø\8f/`ª\15G!j\æ\Î\19c§r5(\Ù\a\97\19\ 1[\1c7!\99\9aÉ\98\ 6 \ÙB\Ã%UÈ\9d\ 1Á\98m\82¢\"\"\"\"\"\"\"\"\"(\88ú\Êù\Êw\1ex\Ù\ã\Π\8aß²7a9\Û_¤²n>¼81x\à\f\äQJË\9cß³\"dú\88q^1»\18q&\ 4\8f\1ceµz¢õ\Î\0\â¹\\\ë\Ï\1c\'\Â0ffºo1ò\ç\eñ\\;\f1¥\Ì \\\85¹Sj1\æ`n\ËZL\Å-»\ f\86;8kòÏ\8es\8ce^\83À\9cC­p\a\bñ\1f\a\é\Õð*µ~$\ã\9d;\8f(\àU\83\11«£W\êt0iB\ØQðÁ´\11\ßøy \ÂÁ\8d£kðÖ\8cm\Æ\18\ß[DDD\\\12¢Æ\9d\ZD)±Á.\1c°\Z,¸\92\829\11¥F\907\bñ\ä\0­x\8c\ 3     \ï\11\82V8e\e\9cÇ·-\Îq\9a\81½G\9e9\a\ã\ÏȦ\ë\1fNªm\7f\bö4\16\1c\Ý\Ä\ì\0\Þ\È5\ f¸¸\92\r\çO\ 1\ f,¦;\è67b\Ó\Ü0\ëj`AÙ«©*cf5S\9c´\ e\8ac\9e\8e\ eê³\88;«È\9d@\Ú.L\1dg³ú\91n4h\13\'eµ\91¹3\8f+\ç[\Î\15]\7f\Ë\ä[Ý£S\8e\æ\É(FLf¯QÁ%}a\86\ e\Í\ÄDDDDDDDDDE\ 4¿[þ\Ä\Üq\ fCu,1ø~y#\97v,\93å\9c\8c\8df±¬\Ö5\99o\ÇÙ¯\ e^÷a\Ù~rö\9d\Ø\Ã[ð\Î_]\Ú)\13úZ8\ 3R\ç\ß0\\,\ÍÀY\93\v\87t\Ý÷\9cª¢<#\91\12^ä\82®¾\98S\ã\e\19\19\â²N\Çù-k¿Ê\96\b²>$úr\"[¢\88\88\88\88¢C\ë\12\ê\í\8f2x\ä\Óy·Y¤\87*û­|\ÃOµ\ì6!­\ 4\8b¢q\î\ËOq©\ÝW2n\1e)`«\81ioU³\Ì\Î\7f&(EK#\Þ;\v\aW*-\8fø\82\æ\É]xòq\ÒnU\85\1c\92¤\ÕsÎ¥¬\8cBú¾M\Ç%:O\19\12C°l\àn\fAn\ f\95!\8eùe\à      \18\11\Îk\1dv\Ê\"\"\"\"\"\"\"\"\"\"\83/­÷^    :ÿ\0\Ñ=­±±ù\11y\8b\955\ã\Ëþ¬\çé\9f¥RYE\8d\9f\ÞF\Üeõ³\v\8fl5\ïö\Ï\Ë.ÀÛ\86WB\8aZ~\8dmnlÿ\0*[\9e\ÐÆ\8f5º\ïV9*¶S²\ìý­\9f±m\Z\13\ëð\Æ|rÜ\8dÑ©->\×ü\Ú湡kXü\11\1d¤¨\88\88\88\8bR^xj\âZø{ò\12)a\11q\13­Û½¤w\11\8cs\81.°Q\æ\0Á\Ëñ\9f¬¸È\9c?\9b2\×\å\84 ñ\9fb;\19¥\Ñ\16eø\ë\Ò6nD\ï§N5=B´Ö·³;)\Ãv\"\88\a\ 5¤mv»½\Òl·³¿Û\90Lp\ê\èj,­\f6¹\Æ(a¼Q\84i\ f\10Iyj\"\"\"\"\"\"\"\"\"\"\8aG¬+\84 r\'\8a±ò´\91d³:ý\Í<}²Ö¹\84;\1d\1c»\í\Ü\1e4\93 \8c\17°\Ï\e\10ö3\Ç ¤\å\Ãl\891NÁ\äÁ\19\ 5Uò)rz46\81\×ù>\ä=I\â\Î_²õ\8f\11ÿ\0£\â7k\e.¤\'\a9\Î~xq\87°<\8d\Ã[\96\11\Ýó\Ës\86\14DDDDZBõ\18òö¯\Ä^\1d{¢ý\96ÀPI\È\Üq\9e)\×\Ú÷»%\95°oVpjk£\ 4\fa\nl\1c¯ür9­h£4ø\91 £\bÝ\9cÓ\88\8a\94^«\í\\ùå\8b\8d9^\f\ 3¿Jꦿ²ò®\Ûk\87\Æ\Ì8\Ö׺õÞ\91§U\Ì\13°Y\99}\9c»\9b[\b\'\8e\ 6\80S(D9s#fDaK¶i\11\11\11\11\11\11\11\11\11\11\7fº\ÍI\Ü^\98vG­WÌ\93ø¼±\Å;V¹\bð#\82M¤;¬×\92m\14º\86\11\Æ+@\ÛE\89\88G\È\ fô\95\Øvc\Ég\Ê9h\é\Ûu]\87EÚ¶m#m«\91Gµi»\ 5Ϋ³R\Ëȳ*\9fa׬d\Ô]U\É\È\b`fE}\9491\r\90\98¢\É\ 2ì\8c\8fg³³×\94\90=)¼Õ¬ð×\98~$\8f³\ÊdAò÷\eòo\ e\10¿6\ 5\×\Û\f\Z½\8e\ 3\r#\ 3xb³\ëÔ¤\93\ 5\94\84¤\18\á´Í\91(\r}·\b\88\88\88\8a\ 2þµ^\è\ë\ 5 \ëwBµ\Ùò\89¸\Ç\Ø\19Ø\8eG\Ä\v,\8e4=\7f\15;\1e£¦k×µ\ÌÈ\88\7f\ågM\9b²@ûq*\13\ÉJ\13ûG\9b\0\ e}}è­\93ô¿ø¼\99\Ð^\8f\a\95¹OZm?c;WüW n,\92\Ö\æ\ËY\ã¯\Åd\8e6\Ñ\ÊLÁ¯\94,ì\96ûûjé­\9d\8aý\9e\îó\15vr\ê\8f\1c¤\93*\"\"\"\"\"\"\"\"\"\"*¡½U\9e=gõ\ f\Èe\Ç:\ê\953\eÃ\9d¹\88þD­\9a(¸\ÅN¿\ÉQ3\9aý\ÓTc\âClX\f\96(°v\ZÀ\ØÏ\91oq&N\Ë9\83\1c\18lh\ã\0½Û«\Ü\È~»öG\819\à\19¶\Î8{\98x\ç\92%Ç¢>#\Ú\ØU\éûmM\å\ÅDGºT!9\×5P¦T\924\99@\870\13K\12i1\10\æW¡qG#\ë\Ü\Ã\Æ\1cy\Êú\94¨ó5\8eIÒµ\8d\86DYB\9a\17\Õm4\Ð\îa7\12\83\8c\f\10f4EsZ\Ïb\8d\ís\18æ¹\98ô\ 4DDE\85\Ýü\ï_\ 6ø\ì\ë>ÿ\0\Ù~w½\Å}\ 6§Zfkº\ì&\8eVǽmò°\Ø\Úþ¥­Ö¾D\\Ë\9difx\91\Îw\9e<:\è\Å|\ÉÒ£\85\98\81\î\Ïmù#½\1d¢\æ\1e\Ór¦Y\1f\9d²mö(\ãL\936³U¥Ë¾\9a=Z \92\Z,b\ 5-pÁ\1f/\8f\12¾<ɹ\99d\Ê\èO\9a@3\15\94Á}2þ    ö^\Úr¾\9fÞ\9e\Ë\ë3j:\Í\Ä\Û\1c\1d\83\8d5KºòGÿ\0¶\ÝÚ©\ì\99W`FI\13J\í\17^\93\88öC4\'\ 4÷\16\83\81)\93c\Ô\Å\14}\9a\Î\Øñ\ãÄ\8e\b±@\18\Ñ#\ 4Q\ãF\8e&\ 6<x\ácD\10\0\"kF \88mh\Ä!µ¬c\Z\Ö1¸n1\85Ì\88\88\88\88\88\88\88\88\88\88\8bRþi<ok>N:=\È\\ j\ê÷r\8e¼#o<\1d±\Ë\a\Ú}g\91\ê\â\14p\8d\1c\98\Î\n\18ö\Ñ^Z\9bfEö\95>ªDª±\91\8c\9c_\95\8d\Ç;\Ï\11o\9b_\18òf±m¥\ï\Ú5\ä\ísk\Õ\î\ãþ=\9d5\Íqr\191Nƹ\â+3\9c4\ÑfE)\áO\88PN\81&L9\09:J´C\Ò7\äj§±\Ý\'?Mwm\8a|\Þf\êC\Ç[N;l\88l´\á+³\È\Ç\1f\ 2\8f\"\8d\Z)\83¨\ e\r\86°h\91\É*\Ä1k#X\Û\fX\9d\Zu\94º\11\11\11q\18Â\8e\"È\90Q\80\0\e\Ìs\99\10B\117/!JG\å¬\18\Æƹ\ï{Ý\86±¸Ë\9d\9cc\19ʨ»Ô\83\å7lò\17\1dÃ\8f\89Ѻ\Ý\Ö\r\9bb\ãn1\Ö\ØóÃ\87y³\Ó\Ì-N\ë¿]\×|F\197\a¸\8faEM$\ä´l*h²$R\Ï\f\r\86L\\Guo\×\Ó\Û\â^\Ç\Ê\aq\ë3¿SN\ÇW8(\95\Û\Ï5Z\92>\a\125\84/\áxª\f\19\ÈIc²<ß\99p(ñ-s\17_\8aPXÆ\84+¸V\ 3·\8fT\Õ5­\17[¤Ó´\êJ\ÝoW\Ö\ë£TQQTF\1c:\êº\ècÀ\ãÅ\8b\1cX\ÃX\Æ7\1e\îv}\ÈR9\æ+\ÞR=\î\ì\b\88\88\88\88\88\88\88\88\88\88\88¡+\ê\9aðo\9ez\Ôo<\8augO\9de\Î\ZMlVs\97\1d\êµÏ\95c\Ê\ZdB¿$Ü«\ë\84F\â~Û©E!¤Hl1>öþ¤y¦\8d\1eþhõºú\9a\ÜVux\Ý\ïo&ø\á\í÷\15ö\9f\8cM\92\9bR²þ\1fz\×r/¸;§\18\ßH\8a\r\ßT ÿ\02¿\1f\93:´-\99LRM\fX\Û\ruD«\ 1Ì®\f¸\12®\8e\ê\×f8\9f¸\\\a\Æ}\8e\á-\86>\Ë\Ç\\£¬\×l\94r\Ä\ì¶\\?Í\8e2Ȩ¸\84V\ 6mU\Íi_\98ö\15vQaYD&0\Ùp£\11\ßV2\ 1\11\11k\ã\Ê\ç=Xu\9f\1fsy\9e\8eÀU»V¡×®P>\99 ¸Ï³¶ù:\8d¬j\ 1·8k¾\ f\Ì\â0\8d\7f»\1c߯9\13ðo¯Þ\91y³fYL\97cc.Lû        òO6t\é§,©\93fJ+\Ï*\\¹G{\Ï\"L\83½\æ9\Ì÷\94\Å{\ÈG¹\î\Îsü\Ê\à_MwN(ú\87â\9f\81LÊ·A\ß;\vV\ eÀr<\99µ\84ª¼u\Æñ\ 6)j)/\"\98a6%j\94\ 1\83B/\È\13%2<V\nG³\Çõ\8f~h\88\88\88\88\88\88\88\88\88\88\88\8b\84Á\f \9a4\90\8aDi\ 2 N\ 3\r\85     \82Vde    \84L9\84\19\18\ç0\83{rdz9k±\9cg8UWú±º\rÁ\Ý5\ï.\8fÈ\9c\Z\n}j¯µ\Z¾\Ù\È{\87\1dSe\8d\8d¬\ï\147\151\ï/\Û\10n\Ã+\99»\97`m\8ea\88\ 2\19¦@\9bnbJ±µ°\92H®©­ú1;M\Ïq;}\Ë]Bf\Ç>Ó®\97\9c\'·òü­jx¤Ì\87ªò&½³i4õÓ¨fd\99\ 5C6:ý\86\ß6µ\8e\e\Ûa&´S\à~\19[x\ëK\'Q\11\16\84ýL4×\97\9e\eûX\n\a\1c\98Uºõ\Ì÷\Çó\9cQ\ÒÛ\8e\Êõ\85ø\ç\1e\Ñ\ÍU\ZTsg>\í\Ã\v\9c»\19§\Íz\a\13\ÑWm\1c§Æ\9a\Õ\ÄRN©Ø¹\ 3M¢´\84\"\90%\99]o±\Ö\×Í\8a3\ 5\ã0\89\"4\82\89\84\11\ 6Q¹øx\Þ\×c\ e\Åð\9cqU]G\Ç\Ú==D \×VV\ê:\ì(0@&\0QcG©\881\ 5¢f0\Öe\8d\Çõc\18ý¿\å\97g\å\9c\ç=\Ñ\11\11\11\11\11\11\11\11\11\11\164vO¸\Ý_\ê\ e\95k¿öG\9c8\ï\89\81\8d\Ç.ײ\ÖÀ±9d7ÿ\0\ 5\12\ 5;\8f\9b9\92\ì\n\áF\82 Ev$J\91\18\r~\1f Xt`{3\ë6\è7\19J=g[ø\87\97;6rV\È4-\80¬\'\ e\êÀ³k2\Øñ,\99»Q\17hú^|\à\8f,\rvK]\15¹\ÎH\19\ eÀ[ªwú®üºw\ fgf¥Ð¾\8dj1®\85aU\12Ö»_\Ó÷\î\Ç\1e W\854\Zr[\Ø\Ö\Ö\éuz¬yrÀr>÷fÀ\éX\18\93\ÊOÅ\8d\14ç\8d¹N\ 4\ f«\97\99ß®J\å]\9f£ýf\Ô6\90gù¹[.\8dIµoúTY1\8f\86\95\9an£qe\1eU\9cy8\b\8d\18»\84l\80O$\ÈÆ\94P\864\9f<±ô\99\7f\Þc\96góÿ\0\92?\"|\Ó\Ú\Î^¸ú\ 3saA¦\Ññ\í\ 4úÈ\8d\94\Êú8ð\9des+]¥­Ì\97\Ê\rf¤}~\ 1l\äN±\ÄHÄ\9f8r²\1e\ f¤3Ä\9c\14\íc\95¬$\ f8\Éeç\94·¨®\91\8c\7f|<!\Ù2!ûþýò,3ûþ±\8fe·~\83ø\9bè\97\8d\b[`º\8d\Ã#\Ñî·£G~ݹ_lû6óº^F\86\11\8a\rYö-®\Ò\Î\\JX.i\äç­\Ä*\èó,-%\ e>\re1\æ\Øò\"\"\Ã_\"\1c\17#³]\13\í\Ï\0B~Ga\Ë=|\å-6¬­n\1eð\Û\ÚjvM¨0Y\96\13\ f\90\e&E$f¹\99c\8e\Ñ\áþ\Í\Î]\8a:¶\Z\v\9dRþóV\Ø\ë¤\Ó\ì\Z\ÕÅ\95\ 5õL\Æ`s*\îiæ\9aºÒºS1\97a\92aM\8cx\Çf\1c\ì4¢~1\9c\1e\ë³ñ6\É\aM\å>4\Û\ìß\91Vê¼\81¦\ì\96\ 5h\Èg\ e\r\1e\Ç[g-ø\bXR\97,\ 4R;\ 3\10\88G\ç\1f\161\î\Î\e\9b\âxú\Ú%þ\85¤^À0\ä@º\Ô5«hR\ 4\ì8G\89cM\nds\rø\Îp\á\94&c\Ø\ìg8s]\8cû\ç\19\11\11\11\11\11\11\11\11\11\17\9fò\97*ñ·\b\è[/(ò\îñ­q\Ï\1d\éµr®¶\9d\Ënµ\8bK¯\ÑUB     $Ë\9dca-\ã\b\8e\"\9c¯\Îs\96\ 4D&qðcó\88    ùjõx\í¶\16\ 5\89\Z\8aª\1cû­j\7fg¶*\áN\9ba\1cqY\18w\\GLi\ e\ 3\n;\17\98\Õû&\Å\ 5õ\Ø\Å~\7f\1e\8fg©µ\8bh\18u\ëô\1d\ÌòW\ØØ´u\r\å\8e\Öv?\91dH\Ìv\Ø\ÛKÙ¶\19\11\9d<\Ò\Þ\Ç\Ù\ÞM\rF©ª@°¶p\â\ 4ó)5JRØ\82\ 4&BĨ\Ñ\ß:/\19^\8e®1\ÒE­r¿\91\Ý\åü\9f´ý\15öÁ\ë÷\1fÈ\93Q¡\Ñ\Ø5\á\95ø[\9e\Ó\î\Ûm\Å\Ñ$\ÆcI\ 6\18ª¨l L\95_oY#-S;\á^½pO[ôú\í\ 3\80ø\87\8e¸{Lª\8fø\90u\î<Ô©ujñGû\1co\81\19U\123\ä\ç%v_\92Jy\Ê\ç{e\Ï϶3\8fcDDDDETOª;ŵ\97Gû±m\Ø\Þ<\Ö%D\ëomï­¶ú\9b\0eƬ\Öy\9afOu\ÈZ\83\9c\Ðg\10GpC\13\1c\Ùó\'Ø\90\Û1Z8\Ð+\â\8f1}V\êúd{\ÛEÜ\9f\19\1c[©I°°\93\1d]\8d\13\82ù\17\17SO>\Öкü\b\Òõý\94\93\13ó-¿\99 \9f[*\\æ°¡\8f$\í¯<\éVQ\çe\92#DDDDDDDDD^3\Ø\1eÀq\'W8\83y\ç^qܪô^4\ã\Ú9\×\Û\15õ¡\98\Ì6<\18¥\93\88Uñ\Üö\96\Æ\Ún\0ñ@¯\8d\îy%þ\Ø`\ØR²¥¯6\9esù\Ï\Ê\Ç*\ÜkTv7|q\Ô\1dR\à\81\ã~ \8d5\àÿ\0\12\86¶k\ß_»r\'\Ð\Ð\æ\Úú\Ç\"\8df*\8995m!\Ã\v\13\æW\Ã<lSñeâ\83²>Vù\Ð\\S\Âñ\19¬i4N\ 4¾R\æ\8bú\Ést\Þ9¦&q\9f¶@£\96#®\ïd³?ùn»\16tS\Ì{\87\83K\86\Ã\Çym\94ñ»â¿©þ08z³\8c:ý¦C\91²>,\7fñ\Ï0\ì5\Õ\ç\ä¾F¶\13O\82\Ûl7B\ f\Î;L\é2~ª\8a\ÇF¨\80\ 22\ 5|HÕ± Ã\8b²4DDDDDX·Ü®\9fp\8fzú÷\È\1dm\ç\íZ\1eÍ¡\ïµ%\86\18-u\8e¿n,¶E>\ËE+\ e\1c\88\174vA\8be\ 2\\CÆ\92\191DPH\8eq\86\1dò\Û\á\ï±þ\'y\97:§$À\91¸ð¾\Ûa%¼I\Î4ðd\ãY\Ù\ã\ã\12d\87]¼6@ÀQ\îñ G,£T\99\15´8\Ò\ìi\ÜLÀ¼¯£\ë^\"|¤ò¿\8a.\Ô\Õs\9e\8e       \9b7\1e\ì\Ñ#j<\Ý\ÆC\9cH\Ñw½\173\99+\ç\1cO8«Ý´kGɬu\89V\18À\ÆSXW6e[m\8di\12\à>\9c÷/\80;\ÛÁ\9a\97`z\ç½U\î\Ú>\Ó\ 29\ÊØ\87\Æ-µ\Ë7\8f?\99¯\ìu\85h§T\\WIa\áË\85>4Y!\95\16Ls\842£J\8c\f¨DDDDDDDD\\2$\ 2(\r*Q\85\Z4a\12D\89\12\b0\80\0\b\ÜC\18\Æ#\9a1\bCk\9eB=\Íc\18\×9\Î\Ãq\9cª¥}K\9ee.»û\Ù;\9e·p\Î\Íi\eª=|\Ø\ìµ\ÜF\8cCD\87\Ê\\\95I/5÷\ÛE\80òÀ¾u\r\15\9c)\10u¡9¹\812HMv\Ò\ÜE\ 6¯g\eM\Þ8<wsÇ\93N\Ì\ê}p\à\è,\86ù\ä\15§ r\15\9cSH\Ö8\ÃG\ 1\9bü¶\Ót\Ñ\12;§\ÌhZPkú\à%Å\97°Zýq\9d2®¨\16÷\957\1eô_£|\a\ã߯:_]zû«C£\Öõ\9a\ØL½¿tH\ãØ·Í\90q\Ú\ËM»j\9a,d\93m­e\æD·5\å ¢fA\ 6\1c¹\Ï1\8d\98\88\88\88\88\88\88\88¼¿\97øW\89{\ 1¡\ßq\875ñÞ¥\Éü\7f³À\95U}©\îT\Ñ.ª,k\æ\8f\99\18\80\9478m\90/q\15Àx\88ñg#\Ëþ\ e\146û\ç\è\Ì\à^M·º\Þú\'\Í3úûa%§\9c\Þ!\ä\n\Ë\1dÿ\0\8f\äJdiFt*-\8c\97Qv}iövE\13F\édº¦¨\84\11B\8bR69Ò\85©\8e¹økõ*ø\8f\ß[\Ì=E\×õ\8d¼\ï1£\ß\è|k\ËZ®\ï¢\î±\n\È\ì$\8d£\8ewi\ÚT;\'\ 5±¢¶- \81\ai\0\ZXUò±\ 6M\9cCÉ¿©\1e\92\b\ÔZ§\90\13ü¹\Ä\18¥«¯\83ºs\'\12\ e\ïMmw\n0£]\Ú\ 3\8ba\16\Ïd\×\Ý2v\1f6%%}\Î\Û\1c\ 3\É\á\Z\â\'\Ò\13\17%yc\Ôe\ã7\81\æG\89Í·ý\93\âQL\91\98P\í7\î ö7]¥\9d;\ 1t\8c¬¶\9bÇ­\85o! a\n\æ\Õ\16k\ZÁ\e\äüdD\Ã}?¬þ}|Iö\Êõ\9a¿\14w\1f\8f\à\ìòl\eWY®ò\94-\8f\86®n\æf.f\95´p¹B\9fU%°c\ÅnK\"\\?¶#\Z\Ã\ã\as¡\Í\Äm°\êÛ®\9b¼Au\9e\93¶\ë;\85c\1c\Ö>\ÃV¾ª\Ø ±\ï\Ær\Æ:]L¹q\Ú\ça®\Ë[\92c.\Ã]\9cc>\Ù]\9d\11\11\11\11\11\11FS\Õ\1d\ä¿=\19\èm\87\ fñ\î\Âú®\7f\í«-¸\ßP%M\Îj¶mGBüG\7f\8f¹\n¹ð\ì+¯!º¶\19\ 3GS}JR\1e\9fiº¡t\81´2>\Æ\Õ\aQQk\7fkYCCYawywa\n¢\9a\9a¢\14\9b+[{[)\"\87]YY]\fF\99>\Â|\Ã\ 6,(QBY2¤\94@\0\9eWµ¹¸\ f\Ó\ï\â\8b\85\Ò\Ív>\Ó[S/³\\\ç\ 6»{ç\9dª$_rG<\97Ì\99©\è5sd\96L\Ö\Òi\Ô3\áÀ\90Áº¶%­\ë,/MEW>d\807|\88\88\88\88\88\88\88\88\88\8b\Ì9k\84ø{\9eµ)ú\176ñv\83\ËZU¤y\11,5nD\Ô\èöú)Q¥µ\8c\96\ 2\Ö\ÞÂ\9b\e\"\961\fR\99\81\á²\ 4\b\ØxýÛ\98²y\1fô\8ct£²±owþ\9aÏ\91\1ec\94G\ÌfµN\ 6\\p\rÓ±ü[?\rüyõÆ\97¨\95°k\äÄ®&\99}ER\Ë\vS\\]T\Ü\18Oa¡)»\87˯§Ë°v\1cg\1f\91ù3®w·\98\91k\10\ÚF\É:ó\82¹\96®,ºqX]\Ô@´\89\8dKlp\9dYO\ 2\ÂTú\b\e\8dEik\98fVW\\V\96t\Îü-z¨¸Û¸7ú¯Z»\Í_¬ð\7f?]\Z\ 6½£rMQe\87\8b¹Z\ì\á\b¢V\Ê\Ä\âÉ\91¥m\97\16\ e,\nÚ\99²¦\×O>jÁ\12\êu\9d\99\ãA\98°\8a)\ 2\11ÀQ\98\ 6\e\f\13\ 5\í \8a\"7\ f\19\ 6Fe\Ì \È\Ça\Ì{s\96¹¹Ã\9b\9c\ã8\Ê\äDDDDDU\14ú ;\87s\Ú\Ï+\9c»®6c\89¡u\92¶¯\81t8Ñ­¤Î¨\93\8a\9c\97eÚ¶(\Õ\æc\ 3Qcm°l\'«µ\b2gJƹ\ 2A\8a<\å\90adÿ\0¤¯\Ç`»SÞ\99\9d \ä\ZY2x\97¨°\19²Ò¸ñ\9aú\9d\8f\9a-2\bº\Å1]&,¸3\85­\ÔL\9b±\ÚV\99\83.\1cj9\"8\9f\86|\í7DDDDDDDDDDE\87=\ä\è\9f\\¼\86pFÁÀ\1d\93\Ñ\ëö\Í^É\87\97¯\Üd\ 3fË¢ì\8e\8cX\Ñ6\9dFݸlÊ\9bh­&Z÷E8\9b,\1e\á6}ð\12\86\9f\ß+^2y\9f\Åwjv.\0\äø\96\16Ú\85\98\8d´p¿(~        \ 3E\É\Ü|i.\f{(\13X&\Â}\å\11ó\8a\8d¶¤Y\fº»&\ 6D\88\10¡Z\Õý\ÓHô­yÀعö¾\1f\8e\Î\Ön\ä¼\åmB\8aLοò\ e\Í//º\ä\1d\1fl\Í/`»\9b#\18·\Ûõ¸\ïkkd\1dÏ»\Ú*þ\83\98v\97\106+\99S\80DDDDE\ç<Á²\eN\â^RÛ£\1dѤj¼u»ì\80\92\Çe\8e\8ej=f\Î\ÐFkñ\9ce\8e\13\ã4\8dv3\8c·-÷\Æq\ì¨}\ä-\ëa\å\rÿ\0x佺H\æm\9c\87¸l\Û\Ö\Ï0Cp\85/a\Ûn¦\ß\ÝI\18\9cò¸c=\95\84\92°n!\1cÆ¿\r\Ëß\9c|³m\9f¦;¦\9a\ÇRüTp¶\ÉZI²6\î\ÔE\87\Ù\rüó\7f O\1d¦\ßO_\ 2\86¨p\ä\10\98\84\ÊMV®\9e³#\8fôG\92H\ï±$P\ØL\9cCHU\11\11\11\11\11\11\11\11\11\11\11i;\ÏG\8c\Ýo\É_C¹\eM®ª¬\1f:ñ]e\97\'pf\Îh\ãdð\íz\Ýd\édÔ\8d\9cѨ¶ø\ßmU®G\12\Â@\84g\12º.\'=\84U\nqW%òoYy·I\å=,öz_+p¯ Vl\95C°\r\95\\ê\8d§P¸adR\ß\×0Õ¶L\8eY\11$Rl\Ôr\v\15ò\ë\ÍcO9­\19\Î5w7CûAK\Üþ\9eõß³Ô­\1cvs\17\15j\e\8d­f\ f\f²(ö\v:x¦¾¦\9e8%4xs Yº@\Ï      \85#c\ã,h\Êadg.[\"\"\"\"-nù\82\ä9üO\âû½\1c\89V\ïk-S®|\83e_\8fµÁû&ÿ\0\eø\ÑC\935¯p\Ús\9d\81sð\Ç\ç\18&sñwþ\9c\Ò÷Áº(9C\9aø\7f\8d%2C\ãr\')qþ\8b!\91\1f\91\Êx6ݲ¢\80Í\8cL1ùd\8c\8eÁ\Ø\vð\Çe\84\Ë]ñw·¶oyд\Ê>:\Òu=\vZ\87\16\ 5\ 6\9d®\Ôku1\"F\14@\n\15D\10B\ e[\1c?\ì\Æ\â´?q}²ì¼¤{\Þ÷½\Î{»j\"\"\"\"\"\"\"\"\"\"\"*t=Eý<¦é\87\95\î\Ã\éºÁ\ÆýO\97d\Ã\ìn¹\r\99\92GT\83\97\ç\\[]Ö\98ò^ì\98\8cÛ¡lr\9a\Ø\â\8b\ 6\10%\86²\ 4\82\17\92k^\8d\Þd\Æý\â\çm\âü\Ç8\ßÁ\1d\8a\Þõ\ï¸ùn[$[\Ô\Z~Ec¢|Jüb\18\89~a|H0\9bó\9b9\Ùk\Â\à\11\Ò\ÕDDDDZ©ó\87¥\Ë\ß|Jw\ç]­\8ai¶\ä\ë\9e÷>\9e,|û\18öU°q4\11Ç\8c¹\83ve4$\8b\9c\e?[p|¿9c\98\Ò2«ÿ\0\ 6\1cw\ 3\95¼¶tcG²\87\16t[.bÅ\97\Ñ0_lf\É\Õõ=\9bk\83(\8dø\138\Ì\19Ô\91§\f­c\9e\ 2\Ça\87\8f\98Ú®\96DDDDDDDDDDDDUÀú\Ûø\ÓZ \ì\çJùJ¾¬\0\Ú9#\88yC^\Ùn0!6M\94\1e:Ù´\çk°Jv±¥$j¦\îV¥\8e\12¸\8d\ 1­&\10yn$¹¸\Ù\'¢A¥\ÇJû\8a÷78\ 3»EJÑ¿\Ûôâ·\89õl\99¸Ï·\ï,cÁ\9c\ã\ß>\ß<~±\ïû\9a\Ò\"\"\"\"\Æ\Þ\ãj Ýº\9d\1dZO\Ç!¶\á.J\13\9añ\à­&A©Z\Ë\18\9c<\å¸\Î\fH\í\16]ûø|þ\7f\aü~\ e©·\ÓM\0\Ö\1enú\'\81\0\86dM¯\95\ç\És\ 6\â28bð\a+½§3±\8c\àCü\8c\80-!2\Öý\å\bñ\9c\90\8ck®$DDDDDDDDDDDDPMõÀ\ë5\î\á\î\84\î?O½¨y+\995\9f¿8n~\15òu}F\Ó\éc¾\1f\92b|É\8c\93\âÿ\0¨Y\Ã1\91\å\Ù\Í\1fF®·\ 6§\Æ\ eùw\Z\10c\ËÚ»#»Î±\9214d°5m.½H\ 3\È#[\87\18\81\89\0\11\18÷\å\Îhc\88Xv\18Ƶ²\áDDDD^[\ÎQq;\859\86\v²\æ¶g\16ò\fW9¾ÿ\0,bF¥n\1c\å¾ß¿\960ÿ\0|{c\ß\ß\Û\Ûöª¥ô\9eid\Ûü\Ëp\ì±dmv\91\Æ<ú9\äù\7fH\âk\f¤.\19\96µ\ÙÁ\n;÷\ 1\9f¬5\Ù/Á\Îk\1c\çb\Ú\ÄDDDDDDDDDDDE  \8f[\9dn\v\ÓÞ\97\Ü}~ù\83\Ù]ª·\îöÿ\0/ù^/¶\95õü¿¾>\ß\áp\ïoõú}ÿ\0\Ý\Â\Ï\ fH\95~!øiФ`\7f\f\Ûs\Ï<Xe\ßû\Ù\1e\ e¯\ìþ\ØþØ­À¿\×ü¯\ïþ\98\93º\"\"\"\"\ê\Û\Ì\11Y\é[\85iÿ\0ȱն\b&ÿ\0ò\97S.9?þ     \95\\G¥+\82\ë5\8f4\9d\Ç-?\Ø\n~\ 4Ò¹Ã\8e*!·ú\82\Êû>Y\ 6¿\ 1\Ïq2\ãý\91a\é\í\0½ß\9fv\È7\Ûò~\19\9cY@\88\88\88\88\88\88\88\88\88\88\88\88¢¯\ë\ 3Ñ\83±x\9d\9b·\9a\e$;\8f\8c§E\92\ f/\81\'c\Ø!\ë\9fhð\ìý\8d\É\âÌ\97\19\es\ì\Ò\äosp\\a\Ù3\éu\Ñgh\1e\18z\Å\ 2Àoa¶\e\1e\82\ç³\á\93A\Ý÷«\8d\96¼\98\Çû\Ìl+\0\ 5\8fÿ\0}\82nT\83\11\11\11\17ø \Æa\90E\e\n\"±\Ã(\88Ö¼d\eÛ\96¼dc±\96½\8fnr\×5\Ø\Ë\\\Ü\ç\19\Æq\9c\áA7\Ó\17A\1e·Ì\9f\9clG\Æ\ 6*\ eG\ä\8a\b\Âo¶\Z\Ø\æ\í?#üq\8cc\ßô\ÆÒ\89­ö϶1\9cÿ\0\7f|)Ú¢\"\"\"\"\"\"\"\"\"\"\"(\àú°\ 1\83xJ\ìi2\Ügñ¹\ 3®\ç\Æs\8f\Ûr\îp\Ò#|±ÿ\0\fûH\Ë}ÿ\0\à\ì\ãýVsx7«\rW\88o\1d\10\86,\Ê\ê\Ï\16Z\e#c\e\93\ZÒ\84\13²R\ç\r\ÆHL°\Ãg\Í\Þ\îø1\8cò\Ö7\Ûk\b\88\88\88\88¡\Ñ\à[C¦\Ðü\ãú\84i©\0xð+ù\86\9aXG$\8f1²]Ë\969kl²3\88Owe²,e\Z@\ÚÏ\80\ 6\"±\80\18ÀÁ\r\93\17DDDDDDDDDDDDQ\âõO\Ñ\Ø\ßøL\í<jÀfA\à_ðe\áÇ\875¾\Õ\Ô\\Ù¢\ÚÚ\9f9{\9a\ßhµ±eJ\Ë}ò\çý\1f\ 1µ\Äs\e\9c\ãð±\18\91<Ix\ã\11\1dòsºwÁ\12q\9fø\ ef\85O0Mÿ\0 Gc?\é[:DDDDE¡\Ï\Z\Ýn\'\14ù(ò\ëÌ\92ª[\1eG=se%¤;?\ÆÀ\9f\"\8f]§«\87\16\v\8f\86\ã\ï\10®e\ì6C\Æ]\9c0Ö²²\Ö\ã\ä\ç?|h\88\88\88\88\88\88\88\88\88\88\88\8bWþf8>ϱ\9e6;I\Ãõ\ 5dk\r\Ã@\97_\16a\ 2\ÙC\81(\8fh\àO|W\Z;¥6%\89!\9dÀ\11\86G\á\99ø\948\ÆL<\98\è\æ\8aþ1\é\ÇXxù\ád|iü\1d\Æ\Ô\"\bþ¿¬q`jõÂ\89\86\àyø1¹\89\80»\ 3ǶE\8cýnk^\×7\19P\88\88\88\88\8b\áT\ë44s®¬ªk#Á\9d±Llû¹!û>\Ë\19\8cÁ0Ó\9f\æ÷7\ä\Ü\14\9e\ß^\18\ß\ëwôû¯º\88\88\88\88\88\88\88\88\88\88\88\88º¾\ç¨\Óo\9a½Î¡°\8c¦¦½\8b\88v\ 2\ 3\Ú2¼80\8f\8c1\ï\19Z\Üý\81f}ò7c\Û\19ý\7f®>\95\r4\1dr\8e\9b^¬k\Ù[CS]M^\Â;\ f# \Õ\Ã\f\18\8d{\Ú\Ö5\ÏÀ\0<9\Økp\çc9\Ãq\8f\Ö>²\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"ÿ\Ù',4,0,'','','',''),(68,2,19,'9305bf01b7eb4ee9','34785303845bf01b7eb2f18737560971','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','97971161215bf00e801fdd7464746900-4.jpg?ts=1542459008','image/jpeg',80,80,2356,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v     \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0*\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b \n\11\12\13\14\16!#\15\"\18BCÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91ù\ãõ1VüwZfº\9b\bJ®\Ø\í¨!¶\9d\85m³e\ÙMg Ü\91\13\ 4\a\14|\\qb½tÙ\99\11ö$\15[Q\àÁ\Õ\Û|\'¬\8fJ\18¢+\18\Å_\8aÎ\9fy®ód\à]±î§\91~\Ü\èN\9e\ÊM>et-e°¦µM§s¨2T9¸\Õ4ZO\ë4\Z] W\9a~?;\ 6J³&\Ñ&\ eðu\êôç´\84´f÷}v\ë\Õ+¬\9a\Ö3V\Ð\ì;j\Ó\v\1c\ç\ä*stn]\9d¼.\87\98±\Ç\19\â       ¶\í;E¦\\V\1eÀ\Èu0°\ÏEW\ 3}o¹\e\f\16H{\v÷^8\ã\8e9\13{\á\Ù\ 4õ\ 3¦\1d¢\ìòE\1có´v\8eØ»\ e\n4\Ì+\"J\Ú`kg¿R\88+\b\ÊUøò\Öl\Äƽ\9c)\1eÍ\94¬üÑ\8c|±Po\8bÞ©\Û<°yCÓº\7fhX\',\98\Ý;Jõ»\13t0\×U?-M\85̦\É\ÛR\84JcûX\9e·\8e\19ðqòXJ¿\1e\Ãc\8f#-ýh\Êqt\15F£X U+TjL\ 4MV\9dN\81\89«\Õ+0A1\e        ^®À\80\Ä\\4,Lx\Èlp£c#\Å\1c0\85a\bi\81\Ùm´\'      N1\È9\äo\Æö\87òa¢¤t\Æ\è2\ëX\90\10Igµ\î\Æ\×Ö¹\êå\92\81d\91dl72\88ø\é! m\Ñß\92\ 4z\äk6\à%b\ f`ofS\1f \91dÄ­\v\ 4òe\é\ç\ïýã­\97m©rÙ\9aÿ\0Ll@\ë{?D[\ìÓ³Ú«h\ëb\10\f\94E¯]\ae|õ\ë\é;e\1eB.\ÉO³W\90\ 1 <T|}\98Ixñ$ \9fµ\ßLm\9a^û\Ô:»xk\89\ 5J\ëýÁ¯©\Û6\95\"\â\12Ó¦U¯5øû,\13ï²\87\1dK\ 4®6H\7f\1f\ e/,?ö3\95+(\Îy\é|q\Ç1\8b\8bVØ·?\8a>þkÚ\90\84H\Ù$úͲ&a\ãDK\8b.P\Ê\\Vn\è\8a\r¶³\85¼\\\9akª\0Vq\9c\á\â\bm¥%I^S\9d\ 4ý\19¯Dµ\å\8aþ\83\Ö\Ú\ f#¦;q\984º¶\13ö\9c\9d\99¤\b)±\Ò\æp\ê\Ê\ÄS\aº\94\8f\î\æ\ 4hÕ¯\1fJ\1c\Î-&\ã\95Mz¼g\é\97\ f2\12\90T\ 6\98\90´V:ó£©\9b\fx\81\Òù¥lb\9cµXc\Ã!\ 2\8d\96ý\ eѯ\ÃB2\9c\95\86\90\188Gô6\9eX\ã\â\ãE\Üz\Ïã\9f¥:\1fb6H÷\íg\ÖýY^ºÇ\98¼­ø[^*\à\9d`¯)Y\Â\7fÒ¹*aPL\ã\Û\1f\16#\9bN?\8crzq\Ç\1c\â}\86Ie\á\88i·\Ç!§\18}\87\90\97Yy\97Q\96\ÝiÖ\97\85!\Æ\ÜB\94\87\10´\å+Nr\95c8\Îq\Ê\Ä{\8dÕ½\8d\é óA¥{³®ª²¶>\92^v}\8ev\8c¸D\7fXz\êò$\8cN\ß\ëÄ\82\Þs\è\Z\ßI«\Ø$M\×k\92y\"X\"À«\Í$\97\ e\8a³\v\11en \ÛZ\ï}j\Ý\7fºu%¢:\ë¬ö\8dN\12\ïFµE)j\ 6r·a\ 5\99\bÃ\9aC\Èl\81\ÜX\ï%\ 4\86SL\98  Hx3\18\1ei\11\Ûȧi\b\éGF»IÚ #\ 5\99\9b\Òzv\Ùo«\Ä\È%\Õ\Æ\É\\\Ò&\"\éAJ¡\87\19}Q$\Û$a\9a\94\Ã.´÷øõ\13õ8\87>*Æ\8cÞ\96~\86\ f\äc´ý\8aò½\ÝB\Ë\Ý\16m]·cÈ¢~Ú\94\98\r£²S\è\Å\î\7fcO\n\9c4\13¹\Ö\11E\Õܦ@ \\\Â\ 1)d\0\á\ 4\aôøv\15cG\1cq\Ï\ 5\ì\çft§O4nÁ\ìganñ\Úÿ\0TkHe\ÌY\'\Ïù:óªS\88\Z6\12\12\91\93vIù\'\86\88¯AG¶\éòÒ¥\8c\18Í©n{\ã\0]_\ì\1f\95ÿ\04\84\ãv\ëk9~,<l\1e{\ØÖ¶\18\9a\85R÷\Ý>\ËWX%c\æÁ\r-}\8b°\Ñ5EJM¦²ðV\88ªÁ\ä\f\90\ 5_\ã2\äø¹d\94ñcÓ\8d\81[¬W;\1dL¹w/\152\r\90\89\90\îV\Ñ\Ø\1d\8f@\ÓRL i\19\Ø\ê\9eÄ\9f\93\×5©c\ 6m#8õ:\95\\a\91~B\880\ã-m*tQh\94\9d_M¬k­oR­Ð¨4¨Xú\ÝB\97O\85\8f®\Õ\ë\15ø¡\Ð,l,\f\14H\â\Æ\ÅF\ 23hdP\82\19\91\Ùm8J\11\8csÇ»y\×\n·oú»¿:½t1ø\Ê\Þö\ÕW-jtȬ\à\82\1e²\Ã\12\fe\8c1\Ô\ã( \Ê\ìªÁ\9c\10w\1dm·É\8f\15\86Ö¬óO¯N\Ƴør\ß]\91ñ!\äJ,} j\ÙûQ\8d­\Ö=³g\Ê\â´öó\98L\14u*\É\15H\ØÒ\8d\ 3\ 3)û$-~\933H\1dd²k\Ò\19±\Ôf\86\87¹°\15x\Í\ä\12¤­8RU\85%XÂ\92¤\ç\19\9c{\ã8\Î=ñ\9cg\1f\Î3\8f\ã8\ç\Ï\1csQ?-\94Ù¯*~j:M\âJP\ÉDuO@kw»½Û\98\88Ò\88 \9b\8f\ÂD\Èz\Í^W(q¥8Ê\83Mv¢\ 1\82£\87\Ü\ÖY!ó\93\"\87pm¶a!!\ëP\Ñ5\Ê\ìTt\15~\ 20\bX8Hp\87\8d\89\87\87\8b\15 c\"¢\ã\83m\91\0\8e\8f  \86D\b1ZhqFe¶\19m\r¡)\Ç\Ùñ\Ç?!v\×\Ô-\99\ 6\ícc\Ò*\e\ 2¶úþ\×\ë\×j\Ô5®\r\ç0Û\8da\ÇbgB<\a\17\86\9du¿\9a\Çʾ·\1cG¿\Åj\Æ`·d|h\é]\ÍXùi\ë.\Å\évâ\80\87l\rsºú\9bn\9c\Óòµ2#Ò\97!E°\Ñ*2Pú\ëgS\Ç!\81Z\91¥\Þë\92±\æ\Å4¸ð\n\86uL\9c4Añ!\ß\Î\Älݯ\Ùÿ\0\e\Ýýj½ÿ\0;zHd)\12û\ 6©\Z\Ü%[²\9a\91?K\Þ0P\83²8\912E\8f#\0\å¬\0\ 4\8f\8dmv\9aó¢\ÇF\9eô\Ô4>u¸\æ\ 3úÉ­G\13\Ô7\å\ 3e:Û¥\18\ïK:@\0\85¯\å\94E\alv\ä\ 1\91m{ÿ\0®\11 F \16G\Û\1fú²þqÿ\0|s>\1cq\Ç\1cs\ 2²\Z\Ìx\ßRõceE\'\ 1.\Ï\á²\Ü-¡,!M¦`º\çnjQq¤\9a¤º\96\ß|peA\19µ)\95:\96\ 1\19\1f?­¶ð\Þz¸\ä\ eÕºý0\9eH;\99°S\1c\86Qy\ê\9fC#ñ&\96\14\9c\98]Wa÷¬SF[ÿ\0RP\ë¢\bl2\96\1dul²ð\ÙV\eK­\áSÇ\8e8\ã\8e@\Ùz:W\äò\81²\15\10¬©\8e\87\í\ÊSs\Øo?\ 4~G`t¤\ã\91+w\1f\14\18l\Æ\ÛW¶U\86\ÝS~ÿ\0\17\97\1c\àH£ \97\8c@\ì$²\19\1cg\ÊKM¤\97\11d¸+\ f?\84\á\Ç\19\19\vpv\96¬¡\95\94B\9bJTó\99W?\1cq\Ç\1c\ëd1T[g\ävrsC:\ee\å´\ä\84\nû¬¼ð\èw\Û\æ\96]xv\1cq¼gâµ²Ò\95\8c\å \Î;<ÿ\Ù',5,0,'','','',''),(69,2,19,'9305bf01b7eb4ee9','34785303845bf01b7eb2f18737560971','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','97971161215bf00e801fdd7464746900-4.jpg?ts=1542459008','image/jpeg',48,48,1488,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b        \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 1\ 5\0\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0  \11\12\n\13\15\16\"1\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿\ì.\é\1eY\Ö\Óû\8e\190\9c\ f\ÆK\ËŤ*X2 \7f|\Ë\Çf\Î\ä\8c\12Yys\82G!µ+\15\92\91c\91·Tଲ´\Û>¾\90\99\ 1³I¦\Ü\Õ]U¢\ 1n\å_Pf¿\89\Ø-5ô\e\84a.-¸\é\é\145\87\12Û®6B]e½W\87\87\91\1fò\1e\ì]\81\Ä~©:\'jjy3 6e½5\9d-M´G>\à\92u3v¬ªk²\Öx\93\Zøx\19¸J§\8d\82=\85!ð&\9b\8f1\87\ey\86Ö\99\íø\9cz\ì \è>\10®ö\íª\b\19¾\8f\ì<\Ø\ì¯]e\Æhû\rWQ\85k\93\86¬Ube\88ýb\86\1e\Þ\ì\17óû#\Ì:Ó³\ 4J\Ã\r\'\923\ 2\1e[dÿ\0 »\'°\ÞR\çÒ½\84ð·RZi¡sÓµ¢w?9\ÎÔ¨·\1dgt¡\ÊØ£«\Ä[@\1eZ¸\í\84Ih3¦Az\Î&f\9d\fº\Æ\ f\92\8dr\fø\959!@½Ew\ã~\Ìx\'Ju\89UÀ\ê\16\ÛX³U}\91Y\8dy\ç\âb¶5\ZX\8aÝ­P\8b\'\ä¦à¥\8d\r3Ð\82\96\ 5\83\15* D\96k\ã¬\Ç\ég\87\92\×\Ü÷\v\Ê{\16õ\É\Ñ\1c\ËUX­\ìy\88\10\9f\81C#gk©\16-\958r\8b\Ï\ÊB\Z\ÌTs\95bNs\nh&&\Ü)䩦V\9c¦\7f\8d\ fJC\í\ fZ\Ô\ e\88MC¢xbR\É\Î[óWM°¸\ë5FR¿m²»P8Ø¢s\83\e\12\91\85p\97\ZCY±\ÃXÀk\í\800¥r¿É\9f¦-\Âó\96¡õ\9b¥`\139\Ð>\Ðö\1c.\8f«\9e\1e\16¡I\8c¹\Ò     ·LÉ»ôyܪaù\bºò\7fHgp\1c)vI\7fº\v\8c\ 5\92«Ï¬þ\17§ú\à\â­\'\È\ÔùuY\7f\88\"I·Û\96Â\85þa°\ìò\ 4دVF\ 4Z\96\àQò\16)\ 3q\f\ 3®:ð\10¬\Ç\ 4ó\Ï::\Ý[\ã\ç*\Þ{\9a\87κog\ï}¡-\88M{¨\èöM\81o\93ú)\×\a\83¬Å\91(b\ 5a\1f+(\â\90>\ 4\8f\11¼e\Ò\Î|q\9aN\\u8̶\ã­Y\Ò\Ý\Å\ 5    \Øý\Ëq\Ø\Zò\91³\Ç\16\é\Ï|+®\í\ÓZþ\87­5<\Ò1\'G\96\è9\Z\99±\96½½·\ì\95÷¢flpV    \Ö(\15GJ~\11ªN\rÉ\89\16¦k\8d!¦ôù\1635^¬ k³®&7#o\91§T\á+òv\É\16\9c)Ö¤,òQ\81\ etùͺi\8e$\Éb\f\'\ e\16Jð\ç\Ù÷r©\á\ìÿ\0\Öü¯m\15\Ì[»O]àµ\9fYñ>\à\8d\Ü\Ú\ 2\Õp\8f6S_N¾\83á\89´k\8d\90\14N?|MN\Þ4\18,ª^   J\97\821\84\16 \å´\éb>\Äl¾\Ä{\9bhU­\83Õ\9a\92Û­)jd\ 1vvÓ¢\97\1f¶56§\95)öBT\9d¼ø5\ 3±£5\ê\8cwõ\\\Ø&kFk\Õ\È\Ü\âBòMXV\Þ}\ e\\d\9ct\Ôl|\Ì9\âJD\Ë\ 2$\9c\\\9cy\r\16\ 4\8cq\ì6PG\ 4[\v[\ 4\88Xδ@\Ä2µ´ó.!\ÆÔ¤+\19\Ì\éö\á®\ß\Û|\v·µ\8bH%\æow>p«\Ê\n+yq\Ã\ëòý=¦\84²Æ¸\9cc?õd«\îI\80\8c¡°\È}k\ÆP\95c4xa\87\fv\ 4\11\96\86\14VZ\18a\ØBZdq\ØBZe\96[F0\86\Úi´¥\r¡8\ÂP\84\á)\Æ1\8cc\Ïo\ f3öÚ´\ 5\æ«e¤\Ú\âÃ\9c«\\+ó5{$,\88\95\1f/\ 3?\1cDT\ÄY¼\95²@gÇ\96@¤°\êTÛ¬º¶Ö\9c¥YÇ\88Ǫj\Ô\í/\×\7f)R\ìfH\1d)M\Öm\Ô\7fZW.\äö\ãk\13\ÓppA?\97Ô·\7fó`À\8e\8ek\nV~¬\n\ÚSýp\9f\1dM\81G\8aصrj\93Ku¸òe+R\Ë[\18N]Á5k4=ª?\ë÷\ÆSñ\99\bQp¼ÿ\0¸FU\94ÿ\0o\8f6~\1e\1e\1ebµ\Õ\Z/[S!)\10®¾ô\\\v\e\84\19{-\95 \\\82\92¼\ãýú8ZÐ\9cÿ\0¹BSó\9c\ç\ç>\7fÿ\Ù',6,0,'','','',''),(70,6,20,'9305bf01b9732a1c','56404448515bf01b9730801345691622','2018-11-17 13:50:06','2018-11-17 13:50:06','','','Contact Photos','12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007','image/jpeg',300,300,11008,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b        \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 1\ 2\ 3\ 5     \ 1\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b \n\11\12\13\14!\15\"1\163A#BQ\81\82\17\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/r9¸f3\9cDëº\9e±®\8fð±g\ë]L\ã\Íϵ[d_\å\"¾þW\äñ¿\19Ķ¬\94Hx\8c\ë»x\12.¯+\'=­\91\ 2ûY©´­\97\18f0Hð\96\11\åF÷\98}`\1e\ 2\Æø<|\Þ\r\á\íRľ\Õ\15\94\ 1v=¢¢/\ÄyÀ\8b¸\ÛZ\83\13d´\í{\Û.%\ 5F2\1c²9#\93\181\ f©\1e\\ó?\åC\9b¤\96VõÞ\8e\Â\r\å\95ùMÆ\95¼M\ãG\a\Û9À£\ eO\1d·W\9aøag\Ä,\8f\"Q\Ø\á\8cx7\Ú\æa\Ë\Ìõ\ eòù6\ä-\96§Nл\85\Þ\Ý\ãq¾\90ø\Ôz¶¡\Ø.À\ì\Û-Ì¡\80²\8b\1e¦\8e\9bn\9bic!±£\9eI\ 5\ e)\88\Ð\0¦sp1½Ø\95×\8f\ e\98ú°9J\92£h\87\Û^I\ê\×\e\\Î\8b\996\1d\83\Úuý«x\95L\è¸8®«x\êú\83\99\90\94\87üV\Ñm©Ø\82P¦bH£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8b\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)\ 1T\É2\Þ1\12CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ø\êy\ë¶WPKüg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ek¾º\ê8­5¼ù\Îo\Æ#\àÁº$\Z\Í;\Õ\äù¾G7\9fñ¯j¹\8a\ïs\8b\ e\ÆE\8e±\Çõ\Ï5/\19h\î>e{\aR\ÓA °¡b;\'N\f\8ben\18\ÓeEÅ\96c\19\â\Î\ 5¢\90¯\88\8fN\ßm|\9e˪ä\9d\80\13ºý\Õl\96\14¢òþ\ÑQ\92Zo\91[ &\9dU\Æt\ 6(¤J,\8a¼û\Ç\Û,\ã>\8a1l©\çÂ\83²ÁþDp\ì¯ñÿ\0\â+¢þ6õ\18\94\9dv\áº\0\î/\ 4\\l<½¶B\87±ò\8e\Ë2>\\|\Zf\×>9lb\Ã\f\ãÎ\93UY\fÃ\8dL9Æ\85\a-\8bñf6h\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88¢#\êAõ\ 2\13¡t6=:\êm¥|þ\Ø\ï\14$ÿ\0\16\82-}\9dw\ 1\ë6AÀ\Û9\Ð\1f\99 ±\ä+P\94\8d\Ö\é§\0\95µo\ 4«\8d\98\a\8b\ 6\1e·µ\Ö+µ\í{6÷³_n{\9dõ®Ñ¶m\16³o6-\8aòi\ì­\î­\ì\8eù3¬lgIy\ f&T\93\91\ä)Hü\ç9϶=\9b\8cc\1f\ 3\Û?¯\×÷ý\ãÿ\0\9c{\ç\1f¯ù\ã8ÿ\0\ï\vñO\a\Ó\Ï\é\9e\ eÿ\0\ 3M\î÷\91-\'.\Ôg\8e=ÿ\0\fõ¯e\86`\9a\â7\Ï/\83¸r\ÍL \8d\8f-­d\9am:G³\ãDx\ä\Þ\r·\'\Ä\rj\Â\Z:*mb\9e»_\×j RQ\ÔE\14\ZÊ\9aÈ¢\85\ 2\ 4@\ã\â0E\8a\ 60B\e\7fyökqòv\\÷g.s\9d\9f¬\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88µ\ 3\æ\çÉ\86»\âó£[\×3\ ePK\Ì;§\ß\Ç\\\ 3®=\8d).¹&\Þ\11\9f\ZyÀù\10ðú]V\eK°l/\14À\Í\15\\B¾´r§þ<CS{\É\\\95¾ó\16ý¶r\8f(mw\e\Ç \ïWs6-³k¿\95\99v·Vó\Éó<\99\ 4ö`\Ä67\f\8f\ e\14Q\82\rt\10Ư¯\8d\16\fXñ\Å\Ñ\×\îs\9cÿ\0|ÿ\0§·ü°¦\89\éjðt\Î\Ë\ï\15þ@ûQ¦}ü\ f\Ç7\"7\ 1\é×±2øü\9d\ÈT²\ÆW\îVUòÃ\80\17P\Õ$4\7fÁ\17.\96û;\àH\99\88µÃ®£·\9deh\0\b \f\14\820G\8e\ 1° \8e\0³\ 3\10B!µ£\10\84\83\e\Z\Ö1\8d\ÃZ\Ü7\18\Â\æDX{\Ý>øõ\7f\Ç\Ç\16F\æ^\Öò38\ãB\9bp:\186,¤»Ø§\ØZ\90.> \Ö\Ò\ë\Ðlm\ì\å}mùb%|93\1c̸Ì\8eð\ 2IC\1f\Înõ\89ø·\ã\È\í7\13Uóo`\8d\î6\12&½¢\Ùññpò\11\Ís\ÄNI\87A\1c\91\ÄÏ\81\18\123\8c½\82\88G1¸&,\Äõºu\ 5ò°\Éý,\ì\8ch_/lÈ\89·q\84\ÙXg¾?«\10\Íe^,»\Û\ß?\ f\Î\Æ=ñ\8c|ÿ\0~ø\Úw\ 1ú£¼:s|\Êj;>\Æ\Èá­\96\Ò+\8f&\1f/hÛ¶¥®U\95¹\Æ?\Z^û.\81º\83I\9c¼L\ÆKf\f9\Ï!\19ò\8b\1cò\99¿\8dKrÔ·\Ú8\9b6\91³P\í\Úôö±ð\îµ\ËX75\87\Ã\Â#á¬\99\0\Ç\aÙ\81\1cDx\\ü\14m#>ln]\8c\88\88\88\88\88\88\88\88\88\88\88¸\ÈA\84d1\88Á\bLy\nR?\f\18\Æ\Ìe\Ï!\1e\ì\á¬c\e\8c¹\ïvp\Ö7\19\Îs\8cc9U\ez\9aü\87\Ùw\8b\Èþÿ\0¥k\e#,ø\'«E\93\Ã|s\Zª\Ï3h.ö:¹%/!n\í\ 3¡E,k9·\å~ªX¦\91`\18ñõ6L\84øD¸±\89\88\ê\"\Ø÷\8a/\1fÛ\87\92¾\íñ\1f\19>\16©mhí\93\96\91_ :\8f\19\ë­üý\86|\87\8c\à,s[å\91µ\9a\É1ÿ\0$𬮣ٺ\14\98UópÛ¤ø\87\89´\ e\b\ã\r\13\86ø«[¯\Ô8\ç\8du\9a½CMÖª£\82%}=\15<vÆ\87\ e4h\Ã\fp±­n^\æ\0!\ e\b÷ýA\13>,Ç£¢\"ñ\1e}\ë_\0ö\9fD\91\Æ=\8d\áþ?\æ­\ 2L\80\Ì&§Èº\Ýv\ÉO\89\91\È3G\98\18ó\Â\\Æ\97\1c\ 4\98òc8G\ 4¨ñ¤\88\8c<`\10pHòù\é\14n\9fM·ö\a\Æ=\85͵mh\rwyÕ­ºÑ\96\96\83\0\ã\ró\9dÅ\9b\85\86b\9d\ 3£J\99\8d{j\97bs\16Í\91\á\\VV\Õü\v\ 3\9ak\8dr\â\×^\Øj¬¨¯è¬§S^Q\ÜÁ\95WqMqW(°l\ê­k\'\b\13k¬«¦\80ð\çA\98\0Ê\89(%\8f C(\Þ\Ì|Õ±Þ\83y]\ï\a\8dͲ\1d\ßZy\92ö£Qu\9c{\r\8b\88v9\126\ e+\Ú\Ø\12H)cYj²\8f\81Ö¾Y¤fD\Éú\é\é¬\'H\8f\ fù)3¢\ÆlWZ#\á·Î\87\\üµhÆ©«\fn&\ìÖ§S\1e\7f ðe½¤s\È(\9a\11b\Ça\ã\Ù\Å#$\íZ\9cinpó)\ÑÁg\16\9e\f2¾Th;\ÊDDDDDDDDDDE®¯,\9d¹¯\è\ç\8f^\Ïö:XbÊ°\Ôx\ÞÖ§U\812fk£Yî»\8e\e©\ê5\8f\9e\10\90\Éa{o\n$S\8a4Dzi£{D\92ß\90\9dI$¹r§Ê\93:t\99\13gM\90is&K1$Ê\97*I\1ci\12d\È3\9ec\È9\9eò\98\Å{\ÈR=\Ï{\9c\çg9þtV|ú?ü~?¯\1d-\Û;\8fºUÏ\81\Èý¾°\89\9dtS\ãÈ\89ø|\'¦É\90\Í8\91\86I2bL\8f³\Ûʸ\ÚAo\bpI*\14ø\15\11\Ìúh¦Ä¿\Ñ\11\11\14(}O¾\ 6\ê¹\ãD\Úü\85u7Mü~r\ã\Ê<Xso\1c\êu\99yykK«ø\à\Û-U$\ 6\áó·­^\e\88fÿ\0\e\18\17\Õ\0\Í;\ãZþ5\16(+eE\ï=e\ì¯0u\v\9c8û°¼\13´\ÉÔ¹\'\8d\ïa\Ý\ÓN\e\äf\ 5\80\9cd\99C}\124\98\84²\×\î@<õ\82\Ù1\8cð?\ï\85*\15\80\8d\8c>ÿ\0q¯\92\8e\9eqwg8ðø\8f/`ª\15G!j\æ\Î\19c§r5(\Ù\a\97\19\ 1[\1c7!\99\9aÉ\98\ 6 \ÙB\Ã%UÈ\9d\ 1Á\98m\82¢\"\"\"\"\"\"\"\"\"(\88ú\Êù\Êw\1ex\Ù\ã\Π\8aß²7a9\Û_¤²n>¼81x\à\f\äQJË\9cß³\"dú\88q^1»\18q&\ 4\8f\1ceµz¢õ\Î\0\â¹\\\ë\Ï\1c\'\Â0ffºo1ò\ç\eñ\\;\f1¥\Ì \\\85¹Sj1\æ`n\ËZL\Å-»\ f\86;8kòÏ\8es\8ce^\83À\9cC­p\a\bñ\1f\a\é\Õð*µ~$\ã\9d;\8f(\àU\83\11«£W\êt0iB\ØQðÁ´\11\ßøy \ÂÁ\8d£kðÖ\8cm\Æ\18\ß[DDD\\\12¢Æ\9d\ZD)±Á.\1c°\Z,¸\92\829\11¥F\907\bñ\ä\0­x\8c\ 3     \ï\11\82V8e\e\9cÇ·-\Îq\9a\81½G\9e9\a\ã\ÏȦ\ë\1fNªm\7f\bö4\16\1c\Ý\Ä\ì\0\Þ\È5\ f¸¸\92\r\çO\ 1\ f,¦;\è67b\Ó\Ü0\ëj`AÙ«©*cf5S\9c´\ e\8ac\9e\8e\ eê³\88;«È\9d@\Ú.L\1dg³ú\91n4h\13\'eµ\91¹3\8f+\ç[\Î\15]\7f\Ë\ä[Ý£S\8e\æ\É(FLf¯QÁ%}a\86\ e\Í\ÄDDDDDDDDDE\ 4¿[þ\Ä\Üq\ fCu,1ø~y#\97v,\93å\9c\8c\8df±¬\Ö5\99o\ÇÙ¯\ e^÷a\Ù~rö\9d\Ø\Ã[ð\Î_]\Ú)\13úZ8\ 3R\ç\ß0\\,\ÍÀY\93\v\87t\Ý÷\9cª¢<#\91\12^ä\82®¾\98S\ã\e\19\19\â²N\Çù-k¿Ê\96\b²>$úr\"[¢\88\88\88\88¢C\ë\12\ê\í\8f2x\ä\Óy·Y¤\87*û­|\ÃOµ\ì6!­\ 4\8b¢q\î\ËOq©\ÝW2n\1e)`«\81ioU³\Ì\Î\7f&(EK#\Þ;\v\aW*-\8fø\82\æ\É]xòq\ÒnU\85\1c\92¤\ÕsÎ¥¬\8cBú¾M\Ç%:O\19\12C°l\àn\fAn\ f\95!\8eùe\à      \18\11\Îk\1dv\Ê\"\"\"\"\"\"\"\"\"\"\83/­÷^    :ÿ\0\Ñ=­±±ù\11y\8b\955\ã\Ëþ¬\çé\9f¥RYE\8d\9f\ÞF\Üeõ³\v\8fl5\ïö\Ï\Ë.ÀÛ\86WB\8aZ~\8dmnlÿ\0*[\9e\ÐÆ\8f5º\ïV9*¶S²\ìý­\9f±m\Z\13\ëð\Æ|rÜ\8dÑ©->\×ü\Ú湡kXü\11\1d¤¨\88\88\88\8bR^xj\âZø{ò\12)a\11q\13­Û½¤w\11\8cs\81.°Q\æ\0Á\Ëñ\9f¬¸È\9c?\9b2\×\å\84 ñ\9fb;\19¥\Ñ\16eø\ë\Ò6nD\ï§N5=B´Ö·³;)\Ãv\"\88\a\ 5¤mv»½\Òl·³¿Û\90Lp\ê\èj,­\f6¹\Æ(a¼Q\84i\ f\10Iyj\"\"\"\"\"\"\"\"\"\"\8aG¬+\84 r\'\8a±ò´\91d³:ý\Í<}²Ö¹\84;\1d\1c»\í\Ü\1e4\93 \8c\17°\Ï\e\10ö3\Ç ¤\å\Ãl\891NÁ\äÁ\19\ 5Uò)rz46\81\×ù>\ä=I\â\Î_²õ\8f\11ÿ\0£\â7k\e.¤\'\a9\Î~xq\87°<\8d\Ã[\96\11\Ýó\Ës\86\14DDDDZBõ\18òö¯\Ä^\1d{¢ý\96ÀPI\È\Üq\9e)\×\Ú÷»%\95°oVpjk£\ 4\fa\nl\1c¯ür9­h£4ø\91 £\bÝ\9cÓ\88\8a\94^«\í\\ùå\8b\8d9^\f\ 3¿Jꦿ²ò®\Ûk\87\Æ\Ì8\Ö׺õÞ\91§U\Ì\13°Y\99}\9c»\9b[\b\'\8e\ 6\80S(D9s#fDaK¶i\11\11\11\11\11\11\11\11\11\11\7fº\ÍI\Ü^\98vG­WÌ\93ø¼±\Å;V¹\bð#\82M¤;¬×\92m\14º\86\11\Æ+@\ÛE\89\88G\È\ fô\95\Øvc\Ég\Ê9h\é\Ûu]\87EÚ¶m#m«\91Gµi»\ 5Ϋ³R\Ëȳ*\9fa׬d\Ô]U\É\È\b`fE}\9491\r\90\98¢\É\ 2ì\8c\8fg³³×\94\90=)¼Õ¬ð×\98~$\8f³\ÊdAò÷\eòo\ e\10¿6\ 5\×\Û\f\Z½\8e\ 3\r#\ 3xb³\ëÔ¤\93\ 5\94\84¤\18\á´Í\91(\r}·\b\88\88\88\8a\ 2þµ^\è\ë\ 5 \ëwBµ\Ùò\89¸\Ç\Ø\19Ø\8eG\Ä\v,\8e4=\7f\15;\1e£¦k×µ\ÌÈ\88\7f\ågM\9b²@ûq*\13\ÉJ\13ûG\9b\0\ e}}è­\93ô¿ø¼\99\Ð^\8f\a\95¹OZm?c;WüW n,\92\Ö\æ\ËY\ã¯\Åd\8e6\Ñ\ÊLÁ¯\94,ì\96ûûjé­\9d\8aý\9e\îó\15vr\ê\8f\1c¤\93*\"\"\"\"\"\"\"\"\"\"*¡½U\9e=gõ\ f\Èe\Ç:\ê\953\eÃ\9d¹\88þD­\9a(¸\ÅN¿\ÉQ3\9aý\ÓTc\âClX\f\96(°v\ZÀ\ØÏ\91oq&N\Ë9\83\1c\18lh\ã\0½Û«\Ü\È~»öG\819\à\19¶\Î8{\98x\ç\92%Ç¢>#\Ú\ØU\éûmM\å\ÅDGºT!9\×5P¦T\924\99@\870\13K\12i1\10\æW¡qG#\ë\Ü\Ã\Æ\1cy\Êú\94¨ó5\8eIÒµ\8d\86DYB\9a\17\Õm4\Ð\îa7\12\83\8c\f\10f4EsZ\Ïb\8d\ís\18æ¹\98ô\ 4DDE\85\Ýü\ï_\ 6ø\ì\ë>ÿ\0\Ù~w½\Å}\ 6§Zfkº\ì&\8eVǽmò°\Ø\Úþ¥­Ö¾D\\Ë\9difx\91\Îw\9e<:\è\Å|\ÉÒ£\85\98\81\î\Ïmù#½\1d¢\æ\1e\Ór¦Y\1f\9d²mö(\ãL\936³U¥Ë¾\9a=Z \92\Z,b\ 5-pÁ\1f/\8f\12¾<ɹ\99d\Ê\èO\9a@3\15\94Á}2þ    ö^\Úr¾\9fÞ\9e\Ë\ë3j:\Í\Ä\Û\1c\1d\83\8d5KºòGÿ\0¶\ÝÚ©\ì\99W`FI\13J\í\17^\93\88öC4\'\ 4÷\16\83\81)\93c\Ô\Å\14}\9a\Î\Øñ\ãÄ\8e\b±@\18\Ñ#\ 4Q\ãF\8e&\ 6<x\ácD\10\0\"kF \88mh\Ä!µ¬c\Z\Ö1¸n1\85Ì\88\88\88\88\88\88\88\88\88\88\8bRþi<ok>N:=\È\\ j\ê÷r\8e¼#o<\1d±\Ë\a\Ú}g\91\ê\â\14p\8d\1c\98\Î\n\18ö\Ñ^Z\9bfEö\95>ªDª±\91\8c\9c_\95\8d\Ç;\Ï\11o\9b_\18òf±m¥\ï\Ú5\ä\ísk\Õ\î\ãþ=\9d5\Íqr\191Nƹ\â+3\9c4\ÑfE)\áO\88PN\81&L9\09:J´C\Ò7\äj§±\Ý\'?Mwm\8a|\Þf\êC\Ç[N;l\88l´\á+³\È\Ç\1f\ 2\8f\"\8d\Z)\83¨\ e\r\86°h\91\É*\Ä1k#X\Û\fX\9d\Zu\94º\11\11\11q\18Â\8e\"È\90Q\80\0\e\Ìs\99\10B\117/!JG\å¬\18\Æƹ\ï{Ý\86±¸Ë\9d\9cc\19ʨ»Ô\83\å7lò\17\1dÃ\8f\89Ѻ\Ý\Ö\r\9bb\ãn1\Ö\ØóÃ\87y³\Ó\Ì-N\ë¿]\×|F\197\a¸\8faEM$\ä´l*h²$R\Ï\f\r\86L\\Guo\×\Ó\Û\â^\Ç\Ê\aq\ë3¿SN\ÇW8(\95\Û\Ï5Z\92>\a\125\84/\áxª\f\19\ÈIc²<ß\99p(ñ-s\17_\8aPXÆ\84+¸V\ 3·\8fT\Õ5­\17[¤Ó´\êJ\ÝoW\Ö\ë£TQQTF\1c:\êº\ècÀ\ãÅ\8b\1cX\ÃX\Æ7\1e\îv}\ÈR9\æ+\ÞR=\î\ì\b\88\88\88\88\88\88\88\88\88\88\88¡+\ê\9aðo\9ez\Ôo<\8augO\9de\Î\ZMlVs\97\1d\êµÏ\95c\Ê\ZdB¿$Ü«\ë\84F\â~Û©E!¤Hl1>öþ¤y¦\8d\1eþhõºú\9a\ÜVux\Ý\ïo&ø\á\í÷\15ö\9f\8cM\92\9bR²þ\1fz\×r/¸;§\18\ßH\8a\r\ßT ÿ\02¿\1f\93:´-\99LRM\fX\Û\ruD«\ 1Ì®\f¸\12®\8e\ê\×f8\9f¸\\\a\Æ}\8e\á-\86>\Ë\Ç\\£¬\×l\94r\Ä\ì¶\\?Í\8e2Ȩ¸\84V\ 6mU\Íi_\98ö\15vQaYD&0\Ùp£\11\ßV2\ 1\11\11k\ã\Ê\ç=Xu\9f\1fsy\9e\8eÀU»V¡×®P>\99 ¸Ï³¶ù:\8d¬j\ 1·8k¾\ f\Ì\â0\8d\7f»\1c߯9\13ðo¯Þ\91y³fYL\97cc.Lû        òO6t\é§,©\93fJ+\Ï*\\¹G{\Ï\"L\83½\æ9\Ì÷\94\Å{\ÈG¹\î\Îsü\Ê\à_MwN(ú\87â\9f\81LÊ·A\ß;\vV\ eÀr<\99µ\84ª¼u\Æñ\ 6)j)/\"\98a6%j\94\ 1\83B/\È\13%2<V\nG³\Çõ\8f~h\88\88\88\88\88\88\88\88\88\88\88\8b\84Á\f \9a4\90\8aDi\ 2 N\ 3\r\85     \82Vde    \84L9\84\19\18\ç0\83{rdz9k±\9cg8UWú±º\rÁ\Ý5\ï.\8fÈ\9c\Z\n}j¯µ\Z¾\Ù\È{\87\1dSe\8d\8d¬\ï\147\151\ï/\Û\10n\Ã+\99»\97`m\8ea\88\ 2\19¦@\9bnbJ±µ°\92H®©­ú1;M\Ïq;}\Ë]Bf\Ç>Ó®\97\9c\'·òü­jx¤Ì\87ªò&½³i4õÓ¨fd\99\ 5C6:ý\86\ß6µ\8e\e\Ûa&´S\à~\19[x\ëK\'Q\11\16\84ýL4×\97\9e\eûX\n\a\1c\98Uºõ\Ì÷\Çó\9cQ\ÒÛ\8e\Êõ\85ø\ç\1e\Ñ\ÍU\ZTsg>\í\Ã\v\9c»\19§\Íz\a\13\ÑWm\1c§Æ\9a\Õ\ÄRN©Ø¹\ 3M¢´\84\"\90%\99]o±\Ö\×Í\8a3\ 5\ã0\89\"4\82\89\84\11\ 6Q¹øx\Þ\×c\ e\Åð\9cqU]G\Ç\Ú==D \×VV\ê:\ì(0@&\0QcG©\881\ 5¢f0\Öe\8d\Çõc\18ý¿\å\97g\å\9c\ç=\Ñ\11\11\11\11\11\11\11\11\11\11\164vO¸\Ý_\ê\ e\95k¿öG\9c8\ï\89\81\8d\Ç.ײ\ÖÀ±9d7ÿ\0\ 5\12\ 5;\8f\9b9\92\ì\n\áF\82 Ev$J\91\18\r~\1f Xt`{3\ë6\è7\19J=g[ø\87\97;6rV\È4-\80¬\'\ e\êÀ³k2\Øñ,\99»Q\17hú^|\à\8f,\rvK]\15¹\ÎH\19\ eÀ[ªwú®üºw\ fgf¥Ð¾\8dj1®\85aU\12Ö»_\Ó÷\î\Ç\1e W\854\Zr[\Ø\Ö\Ö\éuz¬yrÀr>÷fÀ\éX\18\93\ÊOÅ\8d\14ç\8d¹N\ 4\ f«\97\99ß®J\å]\9f£ýf\Ô6\90gù¹[.\8dIµoúTY1\8f\86\95\9an£qe\1eU\9cy8\b\8d\18»\84l\80O$\ÈÆ\94P\864\9f<±ô\99\7f\Þc\96góÿ\0\92?\"|\Ó\Ú\Î^¸ú\ 3saA¦\Ññ\í\ 4úÈ\8d\94\Êú8ð\9des+]¥­Ì\97\Ê\rf¤}~\ 1l\äN±\ÄHÄ\9f8r²\1e\ f¤3Ä\9c\14\íc\95¬$\ f8\Éeç\94·¨®\91\8c\7f|<!\Ù2!ûþýò,3ûþ±\8fe·~\83ø\9bè\97\8d\b[`º\8d\Ã#\Ñî·£G~ݹ_lû6óº^F\86\11\8a\rYö-®\Ò\Î\\JX.i\äç­\Ä*\èó,-%\ e>\re1\æ\Øò\"\"\Ã_\"\1c\17#³]\13\í\Ï\0B~Ga\Ë=|\å-6¬­n\1eð\Û\ÚjvM¨0Y\96\13\ f\90\e&E$f¹\99c\8e\Ñ\áþ\Í\Î]\8a:¶\Z\v\9dRþóV\Ø\ë¤\Ó\ì\Z\ÕÅ\95\ 5õL\Æ`s*\îiæ\9aºÒºS1\97a\92aM\8cx\Çf\1c\ì4¢~1\9c\1e\ë³ñ6\É\aM\å>4\Û\ìß\91Vê¼\81¦\ì\96\ 5h\Èg\ e\r\1e\Ç[g-ø\bXR\97,\ 4R;\ 3\10\88G\ç\1f\161\î\Î\e\9b\âxú\Ú%þ\85¤^À0\ä@º\Ô5«hR\ 4\ì8G\89cM\nds\rø\Îp\á\94&c\Ø\ìg8s]\8cû\ç\19\11\11\11\11\11\11\11\11\11\17\9fò\97*ñ·\b\è[/(ò\îñ­q\Ï\1d\éµr®¶\9d\Ënµ\8bK¯\ÑUB     $Ë\9dca-\ã\b\8e\"\9c¯\Îs\96\ 4D&qðcó\88    ùjõx\í¶\16\ 5\89\Z\8aª\1cû­j\7fg¶*\áN\9ba\1cqY\18w\\GLi\ e\ 3\n;\17\98\Õû&\Å\ 5õ\Ø\Å~\7f\1e\8fg©µ\8bh\18u\ëô\1d\ÌòW\ØØ´u\r\å\8e\Öv?\91dH\Ìv\Ø\ÛKÙ¶\19\11\9d<\Ò\Þ\Ç\Ù\ÞM\rF©ª@°¶p\â\ 4ó)5JRØ\82\ 4&BĨ\Ñ\ß:/\19^\8e®1\ÒE­r¿\91\Ý\åü\9f´ý\15öÁ\ë÷\1fÈ\93Q¡\Ñ\Ø5\á\95ø[\9e\Ó\î\Ûm\Å\Ñ$\ÆcI\ 6\18ª¨l L\95_oY#-S;\á^½pO[ôú\í\ 3\80ø\87\8e¸{Lª\8fø\90u\î<Ô©ujñGû\1co\81\19U\123\ä\ç%v_\92Jy\Ê\ç{e\Ï϶3\8fcDDDDETOª;ŵ\97Gû±m\Ø\Þ<\Ö%D\ëomï­¶ú\9b\0eƬ\Öy\9afOu\ÈZ\83\9c\Ðg\10GpC\13\1c\Ùó\'Ø\90\Û1Z8\Ð+\â\8f1}V\êúd{\ÛEÜ\9f\19\1c[©I°°\93\1d]\8d\13\82ù\17\17SO>\Öкü\b\Òõý\94\93\13ó-¿\99 \9f[*\\æ°¡\8f$\í¯<\éVQ\çe\92#DDDDDDDDD^3\Ø\1eÀq\'W8\83y\ç^qܪô^4\ã\Ú9\×\Û\15õ¡\98\Ì6<\18¥\93\88Uñ\Üö\96\Æ\Ún\0ñ@¯\8d\îy%þ\Ø`\ØR²¥¯6\9esù\Ï\Ê\Ç*\ÜkTv7|q\Ô\1dR\à\81\ã~ \8d5\àÿ\0\12\86¶k\ß_»r\'\Ð\Ð\æ\Úú\Ç\"\8df*\8995m!\Ã\v\13\æW\Ã<lSñeâ\83²>Vù\Ð\\S\Âñ\19¬i4N\ 4¾R\æ\8bú\Ést\Þ9¦&q\9f¶@£\96#®\ïd³?ùn»\16tS\Ì{\87\83K\86\Ã\Çym\94ñ»â¿©þ08z³\8c:ý¦C\91²>,\7fñ\Ï0\ì5\Õ\ç\ä¾F¶\13O\82\Ûl7B\ f\Î;L\é2~ª\8a\ÇF¨\80\ 22\ 5|HÕ± Ã\8b²4DDDDDX·Ü®\9fp\8fzú÷\È\1dm\ç\íZ\1eÍ¡\ïµ%\86\18-u\8e¿n,¶E>\ËE+\ e\1c\88\174vA\8be\ 2\\CÆ\92\191DPH\8eq\86\1dò\Û\á\ï±þ\'y\97:§$À\91¸ð¾\Ûa%¼I\Î4ðd\ãY\Ù\ã\ã\12d\87]¼6@ÀQ\îñ G,£T\99\15´8\Ò\ìi\ÜLÀ¼¯£\ë^\"|¤ò¿\8a.\Ô\Õs\9e\8e       \9b7\1e\ì\Ñ#j<\Ý\ÆC\9cH\Ñw½\173\99+\ç\1cO8«Ý´kGɬu\89V\18À\ÆSXW6e[m\8di\12\à>\9c÷/\80;\ÛÁ\9a\97`z\ç½U\î\Ú>\Ó\ 29\ÊØ\87\Æ-µ\Ë7\8f?\99¯\ìu\85h§T\\WIa\áË\85>4Y!\95\16Ls\842£J\8c\f¨DDDDDDDD\\2$\ 2(\r*Q\85\Z4a\12D\89\12\b0\80\0\b\ÜC\18\Æ#\9a1\bCk\9eB=\Íc\18\×9\Î\Ãq\9cª¥}K\9ee.»û\Ù;\9e·p\Î\Íi\eª=|\Ø\ìµ\ÜF\8cCD\87\Ê\\\95I/5÷\ÛE\80òÀ¾u\r\15\9c)\10u¡9¹\812HMv\Ò\ÜE\ 6¯g\eM\Þ8<wsÇ\93N\Ì\ê}p\à\è,\86ù\ä\15§ r\15\9cSH\Ö8\ÃG\ 1\9bü¶\Ót\Ñ\12;§\ÌhZPkú\à%Å\97°Zýq\9d2®¨\16÷\957\1eô_£|\a\ã߯:_]zû«C£\Öõ\9a\ØL½¿tH\ãØ·Í\90q\Ú\ËM»j\9a,d\93m­e\æD·5\å ¢fA\ 6\1c¹\Ï1\8d\98\88\88\88\88\88\88\88¼¿\97øW\89{\ 1¡\ßq\875ñÞ¥\Éü\7f³À\95U}©\îT\Ñ.ª,k\æ\8f\99\18\80\9478m\90/q\15Àx\88ñg#\Ëþ\ e\146û\ç\è\Ì\à^M·º\Þú\'\Í3úûa%§\9c\Þ!\ä\n\Ë\1dÿ\0\8f\äJdiFt*-\8c\97Qv}iövE\13F\édº¦¨\84\11B\8bR69Ò\85©\8e¹økõ*ø\8f\ß[\Ì=E\×õ\8d¼\ï1£\ß\è|k\ËZ®\ï¢\î±\n\È\ì$\8d£\8ewi\ÚT;\'\ 5±¢¶- \81\ai\0\ZXUò±\ 6M\9cCÉ¿©\1e\92\b\ÔZ§\90\13ü¹\Ä\18¥«¯\83ºs\'\12\ e\ïMmw\n0£]\Ú\ 3\8ba\16\Ïd\×\Ý2v\1f6%%}\Î\Û\1c\ 3\É\á\Z\â\'\Ò\13\17%yc\Ôe\ã7\81\æG\89Í·ý\93\âQL\91\98P\í7\î ö7]¥\9d;\ 1t\8c¬¶\9bÇ­\85o! a\n\æ\Õ\16k\ZÁ\e\äüdD\Ã}?¬þ}|Iö\Êõ\9a¿\14w\1f\8f\à\ìòl\eWY®ò\94-\8f\86®n\æf.f\95´p¹B\9fU%°c\ÅnK\"\\?¶#\Z\Ã\ã\as¡\Í\Äm°\êÛ®\9b¼Au\9e\93¶\ë;\85c\1c\Ö>\ÃV¾ª\Ø ±\ï\Ær\Æ:]L¹q\Ú\ça®\Ë[\92c.\Ã]\9cc>\Ù]\9d\11\11\11\11\11\11FS\Õ\1d\ä¿=\19\èm\87\ fñ\î\Âú®\7f\í«-¸\ßP%M\Îj¶mGBüG\7f\8f¹\n¹ð\ì+¯!º¶\19\ 3GS}JR\1e\9fiº¡t\81´2>\Æ\Õ\aQQk\7fkYCCYawywa\n¢\9a\9a¢\14\9b+[{[)\"\87]YY]\fF\99>\Â|\Ã\ 6,(QBY2¤\94@\0\9eWµ¹¸\ f\Ó\ï\â\8b\85\Ò\Ív>\Ó[S/³\\\ç\ 6»{ç\9dª$_rG<\97Ì\99©\è5sd\96L\Ö\Òi\Ô3\áÀ\90Áº¶%­\ë,/MEW>d\807|\88\88\88\88\88\88\88\88\88\8b\Ì9k\84ø{\9eµ)ú\176ñv\83\ËZU¤y\11,5nD\Ô\èöú)Q¥µ\8c\96\ 2\Ö\ÞÂ\9b\e\"\961\fR\99\81\á²\ 4\b\ØxýÛ\98²y\1fô\8ct£²±owþ\9aÏ\91\1ec\94G\ÌfµN\ 6\\p\rÓ±ü[?\rüyõÆ\97¨\95°k\äÄ®&\99}ER\Ë\vS\\]T\Ü\18Oa¡)»\87˯§Ë°v\1cg\1f\91ù3®w·\98\91k\10\ÚF\É:ó\82¹\96®,ºqX]\Ô@´\89\8dKlp\9dYO\ 2\ÂTú\b\e\8dEik\98fVW\\V\96t\Îü-z¨¸Û¸7ú¯Z»\Í_¬ð\7f?]\Z\ 6½£rMQe\87\8b¹Z\ì\á\b¢V\Ê\Ä\âÉ\91¥m\97\16\ e,\nÚ\99²¦\×O>jÁ\12\êu\9d\99\ãA\98°\8a)\ 2\11ÀQ\98\ 6\e\f\13\ 5\í \8a\"7\ f\19\ 6Fe\Ì \È\Ça\Ì{s\96¹¹Ã\9b\9c\ã8\Ê\äDDDDDU\14ú ;\87s\Ú\Ï+\9c»®6c\89¡u\92¶¯\81t8Ñ­¤Î¨\93\8a\9c\97eÚ¶(\Õ\æc\ 3Qcm°l\'«µ\b2gJƹ\ 2A\8a<\å\90adÿ\0¤¯\Ç`»SÞ\99\9d \ä\ZY2x\97¨°\19²Ò¸ñ\9aú\9d\8f\9a-2\bº\Å1]&,¸3\85­\ÔL\9b±\ÚV\99\83.\1cj9\"8\9f\86|\í7DDDDDDDDDDE\87=\ä\è\9f\\¼\86pFÁÀ\1d\93\Ñ\ëö\Í^É\87\97¯\Üd\ 3fË¢ì\8e\8cX\Ñ6\9dFݸlÊ\9bh­&Z÷E8\9b,\1e\á6}ð\12\86\9f\ß+^2y\9f\Åwjv.\0\äø\96\16Ú\85\98\8d´p¿(~        \ 3E\É\Ü|i.\f{(\13X&\Â}\å\11ó\8a\8d¶¤Y\fº»&\ 6D\88\10¡Z\Õý\ÓHô­yÀعö¾\1f\8e\Î\Ön\ä¼\åmB\8aLοò\ e\Í//º\ä\1d\1fl\Í/`»\9b#\18·\Ûõ¸\ïkkd\1dÏ»\Ú*þ\83\98v\97\106+\99S\80DDDDE\ç<Á²\eN\â^RÛ£\1dѤj¼u»ì\80\92\Çe\8e\8ej=f\Î\ÐFkñ\9ce\8e\13\ã4\8dv3\8c·-÷\Æq\ì¨}\ä-\ëa\å\rÿ\0x佺H\æm\9c\87¸l\Û\Ö\Ï0Cp\85/a\Ûn¦\ß\ÝI\18\9cò¸c=\95\84\92°n!\1cÆ¿\r\Ëß\9c|³m\9f¦;¦\9a\ÇRüTp¶\ÉZI²6\î\ÔE\87\Ù\rüó\7f O\1d¦\ßO_\ 2\86¨p\ä\10\98\84\ÊMV®\9e³#\8fôG\92H\ï±$P\ØL\9cCHU\11\11\11\11\11\11\11\11\11\11\11i;\ÏG\8c\Ýo\É_C¹\eM®ª¬\1f:ñ]e\97\'pf\Îh\ãdð\íz\Ýd\édÔ\8d\9cѨ¶ø\ßmU®G\12\Â@\84g\12º.\'=\84U\nqW%òoYy·I\å=,öz_+p¯ Vl\95C°\r\95\\ê\8d§P¸adR\ß\×0Õ¶L\8eY\11$Rl\Ôr\v\15ò\ë\ÍcO9­\19\Î5w7CûAK\Üþ\9eõß³Ô­\1cvs\17\15j\e\8d­f\ f\f²(ö\v:x¦¾¦\9e8%4xs Yº@\Ï      \85#c\ã,h\Êadg.[\"\"\"\"-nù\82\ä9üO\âû½\1c\89V\ïk-S®|\83e_\8fµÁû&ÿ\0\eø\ÑC\935¯p\Ús\9d\81sð\Ç\ç\18&sñwþ\9c\Ò÷Áº(9C\9aø\7f\8d%2C\ãr\')qþ\8b!\91\1f\91\Êx6ݲ¢\80Í\8cL1ùd\8c\8eÁ\Ø\vð\Çe\84\Ë]ñw·¶oyд\Ê>:\Òu=\vZ\87\16\ 5\ 6\9d®\Ôku1\"F\14@\n\15D\10B\ e[\1c?\ì\Æ\â´?q}²ì¼¤{\Þ÷½\Î{»j\"\"\"\"\"\"\"\"\"\"\"*t=Eý<¦é\87\95\î\Ã\éºÁ\ÆýO\97d\Ã\ìn¹\r\99\92GT\83\97\ç\\[]Ö\98ò^ì\98\8cÛ¡lr\9a\Ø\â\8b\ 6\10%\86²\ 4\82\17\92k^\8d\Þd\Æý\â\çm\âü\Ç8\ßÁ\1d\8a\Þõ\ï¸ùn[$[\Ô\Z~Ec¢|Jüb\18\89~a|H0\9bó\9b9\Ùk\Â\à\11\Ò\ÕDDDDZ©ó\87¥\Ë\ß|Jw\ç]­\8ai¶\ä\ë\9e÷>\9e,|û\18öU°q4\11Ç\8c¹\83ve4$\8b\9c\e?[p|¿9c\98\Ò2«ÿ\0\ 6\1cw\ 3\95¼¶tcG²\87\16t[.bÅ\97\Ñ0_lf\É\Õõ=\9bk\83(\8dø\138\Ì\19Ô\91§\f­c\9e\ 2\Ça\87\8f\98Ú®\96DDDDDDDDDDDDUÀú\Ûø\ÓZ \ì\çJùJ¾¬\0\Ú9#\88yC^\Ùn0!6M\94\1e:Ù´\çk°Jv±¥$j¦\îV¥\8e\12¸\8d\ 1­&\10yn$¹¸\Ù\'¢A¥\ÇJû\8a÷78\ 3»EJÑ¿\Ûôâ·\89õl\99¸Ï·\ï,cÁ\9c\ã\ß>\ß<~±\ïû\9a\Ò\"\"\"\"\Æ\Þ\ãj Ýº\9d\1dZO\Ç!¶\á.J\13\9añ\à­&A©Z\Ë\18\9c<\å¸\Î\fH\í\16]ûø|þ\7f\aü~\ e©·\ÓM\0\Ö\1enú\'\81\0\86dM¯\95\ç\És\ 6\â28bð\a+½§3±\8c\àCü\8c\80-!2\Öý\å\bñ\9c\90\8ck®$DDDDDDDDDDDDPMõÀ\ë5\î\á\î\84\î?O½¨y+\995\9f¿8n~\15òu}F\Ó\éc¾\1f\92b|É\8c\93\âÿ\0¨Y\Ã1\91\å\Ù\Í\1fF®·\ 6§\Æ\ eùw\Z\10c\ËÚ»#»Î±\9214d°5m.½H\ 3\È#[\87\18\81\89\0\11\18÷\å\Îhc\88Xv\18Ƶ²\áDDDD^[\ÎQq;\859\86\v²\æ¶g\16ò\fW9¾ÿ\0,bF¥n\1c\å¾ß¿\960ÿ\0|{c\ß\ß\Û\Ûöª¥ô\9eid\Ûü\Ëp\ì±dmv\91\Æ<ú9\äù\7fH\âk\f¤.\19\96µ\ÙÁ\n;÷\ 1\9f¬5\Ù/Á\Îk\1c\çb\Ú\ÄDDDDDDDDDDDE  \8f[\9dn\v\ÓÞ\97\Ü}~ù\83\Ù]ª·\îöÿ\0/ù^/¶\95õü¿¾>\ß\áp\ïoõú}ÿ\0\Ý\Â\Ï\ fH\95~!øiФ`\7f\f\Ûs\Ï<Xe\ßû\Ù\1e\ e¯\ìþ\ØþØ­À¿\×ü¯\ïþ\98\93º\"\"\"\"\ê\Û\Ì\11Y\é[\85iÿ\0ȱն\b&ÿ\0ò\97S.9?þ     \95\\G¥+\82\ë5\8f4\9d\Ç-?\Ø\n~\ 4Ò¹Ã\8e*!·ú\82\Êû>Y\ 6¿\ 1\Ïq2\ãý\91a\é\í\0½ß\9fv\È7\Ûò~\19\9cY@\88\88\88\88\88\88\88\88\88\88\88\88¢¯\ë\ 3Ñ\83±x\9d\9b·\9a\e$;\8f\8c§E\92\ f/\81\'c\Ø!\ë\9fhð\ìý\8d\É\âÌ\97\19\es\ì\Ò\äosp\\a\Ù3\éu\Ñgh\1e\18z\Å\ 2Àoa¶\e\1e\82\ç³\á\93A\Ý÷«\8d\96¼\98\Çû\Ìl+\0\ 5\8fÿ\0}\82nT\83\11\11\11\17ø \Æa\90E\e\n\"±\Ã(\88Ö¼d\eÛ\96¼dc±\96½\8fnr\×5\Ø\Ë\\\Ü\ç\19\Æq\9c\áA7\Ó\17A\1e·Ì\9f\9clG\Æ\ 6*\ eG\ä\8a\b\Âo¶\Z\Ø\æ\í?#üq\8cc\ßô\ÆÒ\89­ö϶1\9cÿ\0\7f|)Ú¢\"\"\"\"\"\"\"\"\"\"\"(\àú°\ 1\83xJ\ìi2\Ügñ¹\ 3®\ç\Æs\8f\Ûr\îp\Ò#|±ÿ\0\fûH\Ë}ÿ\0\à\ì\ãýVsx7«\rW\88o\1d\10\86,\Ê\ê\Ï\16Z\e#c\e\93\ZÒ\84\13²R\ç\r\ÆHL°\Ãg\Í\Þ\îø1\8cò\Ö7\Ûk\b\88\88\88\88¡\Ñ\à[C¦\Ðü\ãú\84i©\0xð+ù\86\9aXG$\8f1²]Ë\969kl²3\88Owe²,e\Z@\ÚÏ\80\ 6\"±\80\18ÀÁ\r\93\17DDDDDDDDDDDDQ\âõO\Ñ\Ø\ßøL\í<jÀfA\à_ðe\áÇ\875¾\Õ\Ô\\Ù¢\ÚÚ\9f9{\9a\ßhµ±eJ\Ë}ò\çý\1f\ 1µ\Äs\e\9c\ãð±\18\91<Ix\ã\11\1dòsºwÁ\12q\9fø\ ef\85O0Mÿ\0 Gc?\é[:DDDDE¡\Ï\Z\Ýn\'\14ù(ò\ëÌ\92ª[\1eG=se%¤;?\ÆÀ\9f\"\8f]§«\87\16\v\8f\86\ã\ï\10®e\ì6C\Æ]\9c0Ö²²\Ö\ã\ä\ç?|h\88\88\88\88\88\88\88\88\88\88\88\8bWþf8>ϱ\9e6;I\Ãõ\ 5dk\r\Ã@\97_\16a\ 2\ÙC\81(\8fh\àO|W\Z;¥6%\89!\9dÀ\11\86G\á\99ø\948\ÆL<\98\è\æ\8aþ1\é\ÇXxù\ád|iü\1d\Æ\Ô\"\bþ¿¬q`jõÂ\89\86\àyø1¹\89\80»\ 3ǶE\8cýnk^\×7\19P\88\88\88\88\8b\áT\ë44s®¬ªk#Á\9d±Llû¹!û>\Ë\19\8cÁ0Ó\9f\æ÷7\ä\Ü\14\9e\ß^\18\ß\ëwôû¯º\88\88\88\88\88\88\88\88\88\88\88\88º¾\ç¨\Óo\9a½Î¡°\8c¦¦½\8b\88v\ 2\ 3\Ú2¼80\8f\8c1\ï\19Z\Üý\81f}ò7c\Û\19ý\7f®>\95\r4\1dr\8e\9b^¬k\Ù[CS]M^\Â;\ f# \Õ\Ã\f\18\8d{\Ú\Ö5\ÏÀ\0<9\Økp\çc9\Ãq\8f\Ö>²\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"ÿ\Ù',4,0,'','','',''),(71,6,20,'9305bf01b9732a1c','56404448515bf01b9730801345691622','2018-11-17 13:50:06','2018-11-17 13:50:06','','','Contact Photos','12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007','image/jpeg',80,80,2356,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v     \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0*\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b \n\11\12\13\14\16!#\15\"\18BCÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91ù\ãõ1VüwZfº\9b\bJ®\Ø\í¨!¶\9d\85m³e\ÙMg Ü\91\13\ 4\a\14|\\qb½tÙ\99\11ö$\15[Q\àÁ\Õ\Û|\'¬\8fJ\18¢+\18\Å_\8aÎ\9fy®ód\à]±î§\91~\Ü\èN\9e\ÊM>et-e°¦µM§s¨2T9¸\Õ4ZO\ë4\Z] W\9a~?;\ 6J³&\Ñ&\ eðu\êôç´\84´f÷}v\ë\Õ+¬\9a\Ö3V\Ð\ì;j\Ó\v\1c\ç\ä*stn]\9d¼.\87\98±\Ç\19\â       ¶\í;E¦\\V\1eÀ\Èu0°\ÏEW\ 3}o¹\e\f\16H{\v÷^8\ã\8e9\13{\á\Ù\ 4õ\ 3¦\1d¢\ìòE\1có´v\8eØ»\ e\n4\Ì+\"J\Ú`kg¿R\88+\b\ÊUøò\Öl\Äƽ\9c)\1eÍ\94¬üÑ\8c|±Po\8bÞ©\Û<°yCÓº\7fhX\',\98\Ý;Jõ»\13t0\×U?-M\85̦\É\ÛR\84JcûX\9e·\8e\19ðqòXJ¿\1e\Ãc\8f#-ýh\Êqt\15F£X U+TjL\ 4MV\9dN\81\89«\Õ+0A1\e        ^®À\80\Ä\\4,Lx\Èlp£c#\Å\1c0\85a\bi\81\Ùm´\'      N1\È9\äo\Æö\87òa¢¤t\Æ\è2\ëX\90\10Igµ\î\Æ\×Ö¹\êå\92\81d\91dl72\88ø\é! m\Ñß\92\ 4z\äk6\à%b\ f`ofS\1f \91dÄ­\v\ 4òe\é\ç\ïýã­\97m©rÙ\9aÿ\0Ll@\ë{?D[\ìÓ³Ú«h\ëb\10\f\94E¯]\ae|õ\ë\é;e\1eB.\ÉO³W\90\ 1 <T|}\98Ixñ$ \9fµ\ßLm\9a^û\Ô:»xk\89\ 5J\ëýÁ¯©\Û6\95\"\â\12Ó¦U¯5øû,\13ï²\87\1dK\ 4®6H\7f\1f\ e/,?ö3\95+(\Îy\é|q\Ç1\8b\8bVØ·?\8a>þkÚ\90\84H\Ù$úͲ&a\ãDK\8b.P\Ê\\Vn\è\8a\r¶³\85¼\\\9akª\0Vq\9c\á\â\bm¥%I^S\9d\ 4ý\19¯Dµ\å\8aþ\83\Ö\Ú\ f#¦;q\984º¶\13ö\9c\9d\99¤\b)±\Ò\æp\ê\Ê\ÄS\aº\94\8f\î\æ\ 4hÕ¯\1fJ\1c\Î-&\ã\95Mz¼g\é\97\ f2\12\90T\ 6\98\90´V:ó£©\9b\fx\81\Òù¥lb\9cµXc\Ã!\ 2\8d\96ý\ eѯ\ÃB2\9c\95\86\90\188Gô6\9eX\ã\â\ãE\Üz\Ïã\9f¥:\1fb6H÷\íg\ÖýY^ºÇ\98¼­ø[^*\à\9d`¯)Y\Â\7fÒ¹*aPL\ã\Û\1f\16#\9bN?\8crzq\Ç\1c\â}\86Ie\á\88i·\Ç!§\18}\87\90\97Yy\97Q\96\ÝiÖ\97\85!\Æ\ÜB\94\87\10´\å+Nr\95c8\Îq\Ê\Ä{\8dÕ½\8d\é óA¥{³®ª²¶>\92^v}\8ev\8c¸D\7fXz\êò$\8cN\ß\ëÄ\82\Þs\è\Z\ßI«\Ø$M\×k\92y\"X\"À«\Í$\97\ e\8a³\v\11en \ÛZ\ï}j\Ý\7fºu%¢:\ë¬ö\8dN\12\ïFµE)j\ 6r·a\ 5\99\bÃ\9aC\Èl\81\ÜX\ï%\ 4\86SL\98  Hx3\18\1ei\11\Ûȧi\b\éGF»IÚ #\ 5\99\9b\Òzv\Ùo«\Ä\È%\Õ\Æ\É\\\Ò&\"\éAJ¡\87\19}Q$\Û$a\9a\94\Ã.´÷øõ\13õ8\87>*Æ\8cÞ\96~\86\ f\äc´ý\8aò½\ÝB\Ë\Ý\16m]·cÈ¢~Ú\94\98\r£²S\è\Å\î\7fcO\n\9c4\13¹\Ö\11E\Õܦ@ \\\Â\ 1)d\0\á\ 4\aôøv\15cG\1cq\Ï\ 5\ì\çft§O4nÁ\ìganñ\Úÿ\0TkHe\ÌY\'\Ïù:óªS\88\Z6\12\12\91\93vIù\'\86\88¯AG¶\éòÒ¥\8c\18Í©n{\ã\0]_\ì\1f\95ÿ\04\84\ãv\ëk9~,<l\1e{\ØÖ¶\18\9a\85R÷\Ý>\ËWX%c\æÁ\r-}\8b°\Ñ5EJM¦²ðV\88ªÁ\ä\f\90\ 5_\ã2\äø¹d\94ñcÓ\8d\81[¬W;\1dL¹w/\152\r\90\89\90\îV\Ñ\Ø\1d\8f@\ÓRL i\19\Ø\ê\9eÄ\9f\93\×5©c\ 6m#8õ:\95\\a\91~B\880\ã-m*tQh\94\9d_M¬k­oR­Ð¨4¨Xú\ÝB\97O\85\8f®\Õ\ë\15ø¡\Ð,l,\f\14H\â\Æ\ÅF\ 23hdP\82\19\91\Ùm8J\11\8csÇ»y\×\n·oú»¿:½t1ø\Ê\Þö\ÕW-jtȬ\à\82\1e²\Ã\12\fe\8c1\Ô\ã( \Ê\ìªÁ\9c\10w\1dm·É\8f\15\86Ö¬óO¯N\Ƴør\ß]\91ñ!\äJ,} j\ÙûQ\8d­\Ö=³g\Ê\â´öó\98L\14u*\É\15H\ØÒ\8d\ 3\ 3)û$-~\933H\1dd²k\Ò\19±\Ôf\86\87¹°\15x\Í\ä\12¤­8RU\85%XÂ\92¤\ç\19\9c{\ã8\Î=ñ\9cg\1f\Î3\8f\ã8\ç\Ï\1csQ?-\94Ù¯*~j:M\âJP\ÉDuO@kw»½Û\98\88Ò\88 \9b\8f\ÂD\Èz\Í^W(q¥8Ê\83Mv¢\ 1\82£\87\Ü\ÖY!ó\93\"\87pm¶a!!\ëP\Ñ5\Ê\ìTt\15~\ 20\bX8Hp\87\8d\89\87\87\8b\15 c\"¢\ã\83m\91\0\8e\8f  \86D\b1ZhqFe¶\19m\r¡)\Ç\Ùñ\Ç?!v\×\Ô-\99\ 6\ícc\Ò*\e\ 2¶úþ\×\ë\×j\Ô5®\r\ç0Û\8da\ÇbgB<\a\17\86\9du¿\9a\Çʾ·\1cG¿\Åj\Æ`·d|h\é]\ÍXùi\ë.\Å\évâ\80\87l\rsºú\9bn\9c\Óòµ2#Ò\97!E°\Ñ*2Pú\ëgS\Ç!\81Z\91¥\Þë\92±\æ\Å4¸ð\n\86uL\9c4Añ!\ß\Î\Älݯ\Ùÿ\0\e\Ýýj½ÿ\0;zHd)\12û\ 6©\Z\Ü%[²\9a\91?K\Þ0P\83²8\912E\8f#\0\å¬\0\ 4\8f\8dmv\9aó¢\ÇF\9eô\Ô4>u¸\æ\ 3úÉ­G\13\Ô7\å\ 3e:Û¥\18\ïK:@\0\85¯\å\94E\alv\ä\ 1\91m{ÿ\0®\11 F \16G\Û\1fú²þqÿ\0|s>\1cq\Ç\1cs\ 2²\Z\Ìx\ßRõceE\'\ 1.\Ï\á²\Ü-¡,!M¦`º\çnjQq¤\9a¤º\96\ß|peA\19µ)\95:\96\ 1\19\1f?­¶ð\Þz¸\ä\ eÕºý0\9eH;\99°S\1c\86Qy\ê\9fC#ñ&\96\14\9c\98]Wa÷¬SF[ÿ\0RP\ë¢\bl2\96\1dul²ð\ÙV\eK­\áSÇ\8e8\ã\8e@\Ùz:W\äò\81²\15\10¬©\8e\87\í\ÊSs\Øo?\ 4~G`t¤\ã\91+w\1f\14\18l\Æ\ÛW¶U\86\ÝS~ÿ\0\17\97\1c\àH£ \97\8c@\ì$²\19\1cg\ÊKM¤\97\11d¸+\ f?\84\á\Ç\19\19\vpv\96¬¡\95\94B\9bJTó\99W?\1cq\Ç\1c\ëd1T[g\ävrsC:\ee\å´\ä\84\nû¬¼ð\èw\Û\æ\96]xv\1cq¼gâµ²Ò\95\8c\å \Î;<ÿ\Ù',5,0,'','','',''),(72,6,20,'9305bf01b9732a1c','56404448515bf01b9730801345691622','2018-11-17 13:50:06','2018-11-17 13:50:06','','','Contact Photos','12287146285bf00e7fd3b7e500413187-4.jpg?ts=1542459007','image/jpeg',48,48,1488,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b        \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 1\ 5\0\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0  \11\12\n\13\15\16\"1\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿\ì.\é\1eY\Ö\Óû\8e\190\9c\ f\ÆK\ËŤ*X2 \7f|\Ë\Çf\Î\ä\8c\12Yys\82G!µ+\15\92\91c\91·Tଲ´\Û>¾\90\99\ 1³I¦\Ü\Õ]U¢\ 1n\å_Pf¿\89\Ø-5ô\e\84a.-¸\é\é\145\87\12Û®6B]e½W\87\87\91\1fò\1e\ì]\81\Ä~©:\'jjy3 6e½5\9d-M´G>\à\92u3v¬ªk²\Öx\93\Zøx\19¸J§\8d\82=\85!ð&\9b\8f1\87\ey\86Ö\99\íø\9cz\ì \è>\10®ö\íª\b\19¾\8f\ì<\Ø\ì¯]e\Æhû\rWQ\85k\93\86¬Ube\88ýb\86\1e\Þ\ì\17óû#\Ì:Ó³\ 4J\Ã\r\'\923\ 2\1e[dÿ\0 »\'°\ÞR\çÒ½\84ð·RZi¡sÓµ¢w?9\ÎÔ¨·\1dgt¡\ÊØ£«\Ä[@\1eZ¸\í\84Ih3¦Az\Î&f\9d\fº\Æ\ f\92\8dr\fø\959!@½Ew\ã~\Ìx\'Ju\89UÀ\ê\16\ÛX³U}\91Y\8dy\ç\âb¶5\ZX\8aÝ­P\8b\'\ä¦à¥\8d\r3Ð\82\96\ 5\83\15* D\96k\ã¬\Ç\ég\87\92\×\Ü÷\v\Ê{\16õ\É\Ñ\1c\ËUX­\ìy\88\10\9f\81C#gk©\16-\958r\8b\Ï\ÊB\Z\ÌTs\95bNs\nh&&\Ü)䩦V\9c¦\7f\8d\ fJC\í\ fZ\Ô\ e\88MC¢xbR\É\Î[óWM°¸\ë5FR¿m²»P8Ø¢s\83\e\12\91\85p\97\ZCY±\ÃXÀk\í\800¥r¿É\9f¦-\Âó\96¡õ\9b¥`\139\Ð>\Ðö\1c.\8f«\9e\1e\16¡I\8c¹\Ò     ·LÉ»ôyܪaù\bºò\7fHgp\1c)vI\7fº\v\8c\ 5\92«Ï¬þ\17§ú\à\â­\'\È\ÔùuY\7f\88\"I·Û\96Â\85þa°\ìò\ 4دVF\ 4Z\96\àQò\16)\ 3q\f\ 3®:ð\10¬\Ç\ 4ó\Ï::\Ý[\ã\ç*\Þ{\9a\87κog\ï}¡-\88M{¨\èöM\81o\93ú)\×\a\83¬Å\91(b\ 5a\1f+(\â\90>\ 4\8f\11¼e\Ò\Î|q\9aN\\u8̶\ã­Y\Ò\Ý\Å\ 5    \Øý\Ëq\Ø\Zò\91³\Ç\16\é\Ï|+®\í\ÓZþ\87­5<\Ò1\'G\96\è9\Z\99±\96½½·\ì\95÷¢flpV    \Ö(\15GJ~\11ªN\rÉ\89\16¦k\8d!¦ôù\1635^¬ k³®&7#o\91§T\á+òv\É\16\9c)Ö¤,òQ\81\ etùͺi\8e$\Éb\f\'\ e\16Jð\ç\Ù÷r©\á\ìÿ\0\Öü¯m\15\Ì[»O]àµ\9fYñ>\à\8d\Ü\Ú\ 2\Õp\8f6S_N¾\83á\89´k\8d\90\14N?|MN\Þ4\18,ª^   J\97\821\84\16 \å´\éb>\Äl¾\Ä{\9bhU­\83Õ\9a\92Û­)jd\ 1vvÓ¢\97\1f¶56§\95)öBT\9d¼ø5\ 3±£5\ê\8cwõ\\\Ø&kFk\Õ\È\Ü\âBòMXV\Þ}\ e\\d\9ct\Ôl|\Ì9\âJD\Ë\ 2$\9c\\\9cy\r\16\ 4\8cq\ì6PG\ 4[\v[\ 4\88Xδ@\Ä2µ´ó.!\ÆÔ¤+\19\Ì\éö\á®\ß\Û|\v·µ\8bH%\æow>p«\Ê\n+yq\Ã\ëòý=¦\84²Æ¸\9cc?õd«\îI\80\8c¡°\È}k\ÆP\95c4xa\87\fv\ 4\11\96\86\14VZ\18a\ØBZdq\ØBZe\96[F0\86\Úi´¥\r¡8\ÂP\84\á)\Æ1\8cc\Ïo\ f3öÚ´\ 5\æ«e¤\Ú\âÃ\9c«\\+ó5{$,\88\95\1f/\ 3?\1cDT\ÄY¼\95²@gÇ\96@¤°\êTÛ¬º¶Ö\9c¥YÇ\88Ǫj\Ô\í/\×\7f)R\ìfH\1d)M\Öm\Ô\7fZW.\äö\ãk\13\ÓppA?\97Ô·\7fó`À\8e\8ek\nV~¬\n\ÚSýp\9f\1dM\81G\8aصrj\93Ku¸òe+R\Ë[\18N]Á5k4=ª?\ë÷\ÆSñ\99\bQp¼ÿ\0¸FU\94ÿ\0o\8f6~\1e\1e\1ebµ\Õ\Z/[S!)\10®¾ô\\\v\e\84\19{-\95 \\\82\92¼\ãýú8ZÐ\9cÿ\0¹BSó\9c\ç\ç>\7fÿ\Ù',6,0,'','','',''),(73,2,21,'9305bf01b999ea44','14034074815bf01b999cc19093001643','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','63436871415bf00e80dfe9c308856934-4.jpg?ts=1542459008','image/jpeg',300,300,11008,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b        \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 1\ 2\ 3\ 5     \ 1\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b \n\11\12\13\14!\15\"1\163A#BQ\81\82\17\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/r9¸f3\9cDëº\9e±®\8fð±g\ë]L\ã\Íϵ[d_\å\"¾þW\äñ¿\19Ķ¬\94Hx\8c\ë»x\12.¯+\'=­\91\ 2ûY©´­\97\18f0Hð\96\11\åF÷\98}`\1e\ 2\Æø<|\Þ\r\á\íRľ\Õ\15\94\ 1v=¢¢/\ÄyÀ\8b¸\ÛZ\83\13d´\í{\Û.%\ 5F2\1c²9#\93\181\ f©\1e\\ó?\åC\9b¤\96VõÞ\8e\Â\r\å\95ùMÆ\95¼M\ãG\a\Û9À£\ eO\1d·W\9aøag\Ä,\8f\"Q\Ø\á\8cx7\Ú\æa\Ë\Ìõ\ eòù6\ä-\96§Nл\85\Þ\Ý\ãq¾\90ø\Ôz¶¡\Ø.À\ì\Û-Ì¡\80²\8b\1e¦\8e\9bn\9bic!±£\9eI\ 5\ e)\88\Ð\0¦sp1½Ø\95×\8f\ e\98ú°9J\92£h\87\Û^I\ê\×\e\\Î\8b\996\1d\83\Úuý«x\95L\è¸8®«x\êú\83\99\90\94\87üV\Ñm©Ø\82P¦bH£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8b\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)\ 1T\É2\Þ1\12CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ø\êy\ë¶WPKüg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ek¾º\ê8­5¼ù\Îo\Æ#\àÁº$\Z\Í;\Õ\äù¾G7\9fñ¯j¹\8a\ïs\8b\ e\ÆE\8e±\Çõ\Ï5/\19h\î>e{\aR\ÓA °¡b;\'N\f\8ben\18\ÓeEÅ\96c\19\â\Î\ 5¢\90¯\88\8fN\ßm|\9e˪ä\9d\80\13ºý\Õl\96\14¢òþ\ÑQ\92Zo\91[ &\9dU\Æt\ 6(¤J,\8a¼û\Ç\Û,\ã>\8a1l©\çÂ\83²ÁþDp\ì¯ñÿ\0\â+¢þ6õ\18\94\9dv\áº\0\î/\ 4\\l<½¶B\87±ò\8e\Ë2>\\|\Zf\×>9lb\Ã\f\ãÎ\93UY\fÃ\8dL9Æ\85\a-\8bñf6h\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88¢#\êAõ\ 2\13¡t6=:\êm¥|þ\Ø\ï\14$ÿ\0\16\82-}\9dw\ 1\ë6AÀ\Û9\Ð\1f\99 ±\ä+P\94\8d\Ö\é§\0\95µo\ 4«\8d\98\a\8b\ 6\1e·µ\Ö+µ\í{6÷³_n{\9dõ®Ñ¶m\16³o6-\8aòi\ì­\î­\ì\8eù3¬lgIy\ f&T\93\91\ä)Hü\ç9϶=\9b\8cc\1f\ 3\Û?¯\×÷ý\ãÿ\0\9c{\ç\1f¯ù\ã8ÿ\0\ï\vñO\a\Ó\Ï\é\9e\ eÿ\0\ 3M\î÷\91-\'.\Ôg\8e=ÿ\0\fõ¯e\86`\9a\â7\Ï/\83¸r\ÍL \8d\8f-­d\9am:G³\ãDx\ä\Þ\r·\'\Ä\rj\Â\Z:*mb\9e»_\×j RQ\ÔE\14\ZÊ\9aÈ¢\85\ 2\ 4@\ã\â0E\8a\ 60B\e\7fyökqòv\\÷g.s\9d\9f¬\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88µ\ 3\æ\çÉ\86»\âó£[\×3\ ePK\Ì;§\ß\Ç\\\ 3®=\8d).¹&\Þ\11\9f\ZyÀù\10ðú]V\eK°l/\14À\Í\15\\B¾´r§þ<CS{\É\\\95¾ó\16ý¶r\8f(mw\e\Ç \ïWs6-³k¿\95\99v·Vó\Éó<\99\ 4ö`\Ä67\f\8f\ e\14Q\82\rt\10Ư¯\8d\16\fXñ\Å\Ñ\×\îs\9cÿ\0|ÿ\0§·ü°¦\89\éjðt\Î\Ë\ï\15þ@ûQ¦}ü\ f\Ç7\"7\ 1\é×±2øü\9d\ÈT²\ÆW\îVUòÃ\80\17P\Õ$4\7fÁ\17.\96û;\àH\99\88µÃ®£·\9deh\0\b \f\14\820G\8e\ 1° \8e\0³\ 3\10B!µ£\10\84\83\e\Z\Ö1\8d\ÃZ\Ü7\18\Â\æDX{\Ý>øõ\7f\Ç\Ç\16F\æ^\Öò38\ãB\9bp:\186,¤»Ø§\ØZ\90.> \Ö\Ò\ë\Ðlm\ì\å}mùb%|93\1c̸Ì\8eð\ 2IC\1f\Înõ\89ø·\ã\È\í7\13Uóo`\8d\î6\12&½¢\Ùññpò\11\Ís\ÄNI\87A\1c\91\ÄÏ\81\18\123\8c½\82\88G1¸&,\Äõºu\ 5ò°\Éý,\ì\8ch_/lÈ\89·q\84\ÙXg¾?«\10\Íe^,»\Û\ß?\ f\Î\Æ=ñ\8c|ÿ\0~ø\Úw\ 1ú£¼:s|\Êj;>\Æ\Èá­\96\Ò+\8f&\1f/hÛ¶¥®U\95¹\Æ?\Z^û.\81º\83I\9c¼L\ÆKf\f9\Ï!\19ò\8b\1cò\99¿\8dKrÔ·\Ú8\9b6\91³P\í\Úôö±ð\îµ\ËX75\87\Ã\Â#á¬\99\0\Ç\aÙ\81\1cDx\\ü\14m#>ln]\8c\88\88\88\88\88\88\88\88\88\88\88¸\ÈA\84d1\88Á\bLy\nR?\f\18\Æ\Ìe\Ï!\1e\ì\á¬c\e\8c¹\ïvp\Ö7\19\Îs\8cc9U\ez\9aü\87\Ùw\8b\Èþÿ\0¥k\e#,ø\'«E\93\Ã|s\Zª\Ï3h.ö:¹%/!n\í\ 3¡E,k9·\å~ªX¦\91`\18ñõ6L\84øD¸±\89\88\ê\"\Ø÷\8a/\1fÛ\87\92¾\íñ\1f\19>\16©mhí\93\96\91_ :\8f\19\ë­üý\86|\87\8c\à,s[å\91µ\9a\É1ÿ\0$𬮣ٺ\14\98UópÛ¤ø\87\89´\ e\b\ã\r\13\86ø«[¯\Ô8\ç\8du\9a½CMÖª£\82%}=\15<vÆ\87\ e4h\Ã\fp±­n^\æ\0!\ e\b÷ýA\13>,Ç£¢\"ñ\1e}\ë_\0ö\9fD\91\Æ=\8d\áþ?\æ­\ 2L\80\Ì&§Èº\Ýv\ÉO\89\91\È3G\98\18ó\Â\\Æ\97\1c\ 4\98òc8G\ 4¨ñ¤\88\8c<`\10pHòù\é\14n\9fM·ö\a\Æ=\85͵mh\rwyÕ­ºÑ\96\96\83\0\ã\ró\9dÅ\9b\85\86b\9d\ 3£J\99\8d{j\97bs\16Í\91\á\\VV\Õü\v\ 3\9ak\8dr\â\×^\Øj¬¨¯è¬§S^Q\ÜÁ\95WqMqW(°l\ê­k\'\b\13k¬«¦\80ð\çA\98\0Ê\89(%\8f C(\Þ\Ì|Õ±Þ\83y]\ï\a\8dͲ\1d\ßZy\92ö£Qu\9c{\r\8b\88v9\126\ e+\Ú\Ø\12H)cYj²\8f\81Ö¾Y¤fD\Éú\é\é¬\'H\8f\ fù)3¢\ÆlWZ#\á·Î\87\\üµhÆ©«\fn&\ìÖ§S\1e\7f ðe½¤s\È(\9a\11b\Ça\ã\Ù\Å#$\íZ\9cinpó)\ÑÁg\16\9e\f2¾Th;\ÊDDDDDDDDDDE®¯,\9d¹¯\è\ç\8f^\Ïö:XbÊ°\Ôx\ÞÖ§U\812fk£Yî»\8e\e©\ê5\8f\9e\10\90\Éa{o\n$S\8a4Dzi£{D\92ß\90\9dI$¹r§Ê\93:t\99\13gM\90is&K1$Ê\97*I\1ci\12d\È3\9ec\È9\9eò\98\Å{\ÈR=\Ï{\9c\çg9þtV|ú?ü~?¯\1d-\Û;\8fºUÏ\81\Èý¾°\89\9dtS\ãÈ\89ø|\'¦É\90\Í8\91\86I2bL\8f³\Ûʸ\ÚAo\bpI*\14ø\15\11\Ìúh¦Ä¿\Ñ\11\11\14(}O¾\ 6\ê¹\ãD\Úü\85u7Mü~r\ã\Ê<Xso\1c\êu\99yykK«ø\à\Û-U$\ 6\áó·­^\e\88fÿ\0\e\18\17\Õ\0\Í;\ãZþ5\16(+eE\ï=e\ì¯0u\v\9c8û°¼\13´\ÉÔ¹\'\8d\ïa\Ý\ÓN\e\äf\ 5\80\9cd\99C}\124\98\84²\×\î@<õ\82\Ù1\8cð?\ï\85*\15\80\8d\8c>ÿ\0q¯\92\8e\9eqwg8ðø\8f/`ª\15G!j\æ\Î\19c§r5(\Ù\a\97\19\ 1[\1c7!\99\9aÉ\98\ 6 \ÙB\Ã%UÈ\9d\ 1Á\98m\82¢\"\"\"\"\"\"\"\"\"(\88ú\Êù\Êw\1ex\Ù\ã\Π\8aß²7a9\Û_¤²n>¼81x\à\f\äQJË\9cß³\"dú\88q^1»\18q&\ 4\8f\1ceµz¢õ\Î\0\â¹\\\ë\Ï\1c\'\Â0ffºo1ò\ç\eñ\\;\f1¥\Ì \\\85¹Sj1\æ`n\ËZL\Å-»\ f\86;8kòÏ\8es\8ce^\83À\9cC­p\a\bñ\1f\a\é\Õð*µ~$\ã\9d;\8f(\àU\83\11«£W\êt0iB\ØQðÁ´\11\ßøy \ÂÁ\8d£kðÖ\8cm\Æ\18\ß[DDD\\\12¢Æ\9d\ZD)±Á.\1c°\Z,¸\92\829\11¥F\907\bñ\ä\0­x\8c\ 3     \ï\11\82V8e\e\9cÇ·-\Îq\9a\81½G\9e9\a\ã\ÏȦ\ë\1fNªm\7f\bö4\16\1c\Ý\Ä\ì\0\Þ\È5\ f¸¸\92\r\çO\ 1\ f,¦;\è67b\Ó\Ü0\ëj`AÙ«©*cf5S\9c´\ e\8ac\9e\8e\ eê³\88;«È\9d@\Ú.L\1dg³ú\91n4h\13\'eµ\91¹3\8f+\ç[\Î\15]\7f\Ë\ä[Ý£S\8e\æ\É(FLf¯QÁ%}a\86\ e\Í\ÄDDDDDDDDDE\ 4¿[þ\Ä\Üq\ fCu,1ø~y#\97v,\93å\9c\8c\8df±¬\Ö5\99o\ÇÙ¯\ e^÷a\Ù~rö\9d\Ø\Ã[ð\Î_]\Ú)\13úZ8\ 3R\ç\ß0\\,\ÍÀY\93\v\87t\Ý÷\9cª¢<#\91\12^ä\82®¾\98S\ã\e\19\19\â²N\Çù-k¿Ê\96\b²>$úr\"[¢\88\88\88\88¢C\ë\12\ê\í\8f2x\ä\Óy·Y¤\87*û­|\ÃOµ\ì6!­\ 4\8b¢q\î\ËOq©\ÝW2n\1e)`«\81ioU³\Ì\Î\7f&(EK#\Þ;\v\aW*-\8fø\82\æ\É]xòq\ÒnU\85\1c\92¤\ÕsÎ¥¬\8cBú¾M\Ç%:O\19\12C°l\àn\fAn\ f\95!\8eùe\à      \18\11\Îk\1dv\Ê\"\"\"\"\"\"\"\"\"\"\83/­÷^    :ÿ\0\Ñ=­±±ù\11y\8b\955\ã\Ëþ¬\çé\9f¥RYE\8d\9f\ÞF\Üeõ³\v\8fl5\ïö\Ï\Ë.ÀÛ\86WB\8aZ~\8dmnlÿ\0*[\9e\ÐÆ\8f5º\ïV9*¶S²\ìý­\9f±m\Z\13\ëð\Æ|rÜ\8dÑ©->\×ü\Ú湡kXü\11\1d¤¨\88\88\88\8bR^xj\âZø{ò\12)a\11q\13­Û½¤w\11\8cs\81.°Q\æ\0Á\Ëñ\9f¬¸È\9c?\9b2\×\å\84 ñ\9fb;\19¥\Ñ\16eø\ë\Ò6nD\ï§N5=B´Ö·³;)\Ãv\"\88\a\ 5¤mv»½\Òl·³¿Û\90Lp\ê\èj,­\f6¹\Æ(a¼Q\84i\ f\10Iyj\"\"\"\"\"\"\"\"\"\"\8aG¬+\84 r\'\8a±ò´\91d³:ý\Í<}²Ö¹\84;\1d\1c»\í\Ü\1e4\93 \8c\17°\Ï\e\10ö3\Ç ¤\å\Ãl\891NÁ\äÁ\19\ 5Uò)rz46\81\×ù>\ä=I\â\Î_²õ\8f\11ÿ\0£\â7k\e.¤\'\a9\Î~xq\87°<\8d\Ã[\96\11\Ýó\Ës\86\14DDDDZBõ\18òö¯\Ä^\1d{¢ý\96ÀPI\È\Üq\9e)\×\Ú÷»%\95°oVpjk£\ 4\fa\nl\1c¯ür9­h£4ø\91 £\bÝ\9cÓ\88\8a\94^«\í\\ùå\8b\8d9^\f\ 3¿Jꦿ²ò®\Ûk\87\Æ\Ì8\Ö׺õÞ\91§U\Ì\13°Y\99}\9c»\9b[\b\'\8e\ 6\80S(D9s#fDaK¶i\11\11\11\11\11\11\11\11\11\11\7fº\ÍI\Ü^\98vG­WÌ\93ø¼±\Å;V¹\bð#\82M¤;¬×\92m\14º\86\11\Æ+@\ÛE\89\88G\È\ fô\95\Øvc\Ég\Ê9h\é\Ûu]\87EÚ¶m#m«\91Gµi»\ 5Ϋ³R\Ëȳ*\9fa׬d\Ô]U\É\È\b`fE}\9491\r\90\98¢\É\ 2ì\8c\8fg³³×\94\90=)¼Õ¬ð×\98~$\8f³\ÊdAò÷\eòo\ e\10¿6\ 5\×\Û\f\Z½\8e\ 3\r#\ 3xb³\ëÔ¤\93\ 5\94\84¤\18\á´Í\91(\r}·\b\88\88\88\8a\ 2þµ^\è\ë\ 5 \ëwBµ\Ùò\89¸\Ç\Ø\19Ø\8eG\Ä\v,\8e4=\7f\15;\1e£¦k×µ\ÌÈ\88\7f\ågM\9b²@ûq*\13\ÉJ\13ûG\9b\0\ e}}è­\93ô¿ø¼\99\Ð^\8f\a\95¹OZm?c;WüW n,\92\Ö\æ\ËY\ã¯\Åd\8e6\Ñ\ÊLÁ¯\94,ì\96ûûjé­\9d\8aý\9e\îó\15vr\ê\8f\1c¤\93*\"\"\"\"\"\"\"\"\"\"*¡½U\9e=gõ\ f\Èe\Ç:\ê\953\eÃ\9d¹\88þD­\9a(¸\ÅN¿\ÉQ3\9aý\ÓTc\âClX\f\96(°v\ZÀ\ØÏ\91oq&N\Ë9\83\1c\18lh\ã\0½Û«\Ü\È~»öG\819\à\19¶\Î8{\98x\ç\92%Ç¢>#\Ú\ØU\éûmM\å\ÅDGºT!9\×5P¦T\924\99@\870\13K\12i1\10\æW¡qG#\ë\Ü\Ã\Æ\1cy\Êú\94¨ó5\8eIÒµ\8d\86DYB\9a\17\Õm4\Ð\îa7\12\83\8c\f\10f4EsZ\Ïb\8d\ís\18æ¹\98ô\ 4DDE\85\Ýü\ï_\ 6ø\ì\ë>ÿ\0\Ù~w½\Å}\ 6§Zfkº\ì&\8eVǽmò°\Ø\Úþ¥­Ö¾D\\Ë\9difx\91\Îw\9e<:\è\Å|\ÉÒ£\85\98\81\î\Ïmù#½\1d¢\æ\1e\Ór¦Y\1f\9d²mö(\ãL\936³U¥Ë¾\9a=Z \92\Z,b\ 5-pÁ\1f/\8f\12¾<ɹ\99d\Ê\èO\9a@3\15\94Á}2þ    ö^\Úr¾\9fÞ\9e\Ë\ë3j:\Í\Ä\Û\1c\1d\83\8d5KºòGÿ\0¶\ÝÚ©\ì\99W`FI\13J\í\17^\93\88öC4\'\ 4÷\16\83\81)\93c\Ô\Å\14}\9a\Î\Øñ\ãÄ\8e\b±@\18\Ñ#\ 4Q\ãF\8e&\ 6<x\ácD\10\0\"kF \88mh\Ä!µ¬c\Z\Ö1¸n1\85Ì\88\88\88\88\88\88\88\88\88\88\8bRþi<ok>N:=\È\\ j\ê÷r\8e¼#o<\1d±\Ë\a\Ú}g\91\ê\â\14p\8d\1c\98\Î\n\18ö\Ñ^Z\9bfEö\95>ªDª±\91\8c\9c_\95\8d\Ç;\Ï\11o\9b_\18òf±m¥\ï\Ú5\ä\ísk\Õ\î\ãþ=\9d5\Íqr\191Nƹ\â+3\9c4\ÑfE)\áO\88PN\81&L9\09:J´C\Ò7\äj§±\Ý\'?Mwm\8a|\Þf\êC\Ç[N;l\88l´\á+³\È\Ç\1f\ 2\8f\"\8d\Z)\83¨\ e\r\86°h\91\É*\Ä1k#X\Û\fX\9d\Zu\94º\11\11\11q\18Â\8e\"È\90Q\80\0\e\Ìs\99\10B\117/!JG\å¬\18\Æƹ\ï{Ý\86±¸Ë\9d\9cc\19ʨ»Ô\83\å7lò\17\1dÃ\8f\89Ѻ\Ý\Ö\r\9bb\ãn1\Ö\ØóÃ\87y³\Ó\Ì-N\ë¿]\×|F\197\a¸\8faEM$\ä´l*h²$R\Ï\f\r\86L\\Guo\×\Ó\Û\â^\Ç\Ê\aq\ë3¿SN\ÇW8(\95\Û\Ï5Z\92>\a\125\84/\áxª\f\19\ÈIc²<ß\99p(ñ-s\17_\8aPXÆ\84+¸V\ 3·\8fT\Õ5­\17[¤Ó´\êJ\ÝoW\Ö\ë£TQQTF\1c:\êº\ècÀ\ãÅ\8b\1cX\ÃX\Æ7\1e\îv}\ÈR9\æ+\ÞR=\î\ì\b\88\88\88\88\88\88\88\88\88\88\88¡+\ê\9aðo\9ez\Ôo<\8augO\9de\Î\ZMlVs\97\1d\êµÏ\95c\Ê\ZdB¿$Ü«\ë\84F\â~Û©E!¤Hl1>öþ¤y¦\8d\1eþhõºú\9a\ÜVux\Ý\ïo&ø\á\í÷\15ö\9f\8cM\92\9bR²þ\1fz\×r/¸;§\18\ßH\8a\r\ßT ÿ\02¿\1f\93:´-\99LRM\fX\Û\ruD«\ 1Ì®\f¸\12®\8e\ê\×f8\9f¸\\\a\Æ}\8e\á-\86>\Ë\Ç\\£¬\×l\94r\Ä\ì¶\\?Í\8e2Ȩ¸\84V\ 6mU\Íi_\98ö\15vQaYD&0\Ùp£\11\ßV2\ 1\11\11k\ã\Ê\ç=Xu\9f\1fsy\9e\8eÀU»V¡×®P>\99 ¸Ï³¶ù:\8d¬j\ 1·8k¾\ f\Ì\â0\8d\7f»\1c߯9\13ðo¯Þ\91y³fYL\97cc.Lû        òO6t\é§,©\93fJ+\Ï*\\¹G{\Ï\"L\83½\æ9\Ì÷\94\Å{\ÈG¹\î\Îsü\Ê\à_MwN(ú\87â\9f\81LÊ·A\ß;\vV\ eÀr<\99µ\84ª¼u\Æñ\ 6)j)/\"\98a6%j\94\ 1\83B/\È\13%2<V\nG³\Çõ\8f~h\88\88\88\88\88\88\88\88\88\88\88\8b\84Á\f \9a4\90\8aDi\ 2 N\ 3\r\85     \82Vde    \84L9\84\19\18\ç0\83{rdz9k±\9cg8UWú±º\rÁ\Ý5\ï.\8fÈ\9c\Z\n}j¯µ\Z¾\Ù\È{\87\1dSe\8d\8d¬\ï\147\151\ï/\Û\10n\Ã+\99»\97`m\8ea\88\ 2\19¦@\9bnbJ±µ°\92H®©­ú1;M\Ïq;}\Ë]Bf\Ç>Ó®\97\9c\'·òü­jx¤Ì\87ªò&½³i4õÓ¨fd\99\ 5C6:ý\86\ß6µ\8e\e\Ûa&´S\à~\19[x\ëK\'Q\11\16\84ýL4×\97\9e\eûX\n\a\1c\98Uºõ\Ì÷\Çó\9cQ\ÒÛ\8e\Êõ\85ø\ç\1e\Ñ\ÍU\ZTsg>\í\Ã\v\9c»\19§\Íz\a\13\ÑWm\1c§Æ\9a\Õ\ÄRN©Ø¹\ 3M¢´\84\"\90%\99]o±\Ö\×Í\8a3\ 5\ã0\89\"4\82\89\84\11\ 6Q¹øx\Þ\×c\ e\Åð\9cqU]G\Ç\Ú==D \×VV\ê:\ì(0@&\0QcG©\881\ 5¢f0\Öe\8d\Çõc\18ý¿\å\97g\å\9c\ç=\Ñ\11\11\11\11\11\11\11\11\11\11\164vO¸\Ý_\ê\ e\95k¿öG\9c8\ï\89\81\8d\Ç.ײ\ÖÀ±9d7ÿ\0\ 5\12\ 5;\8f\9b9\92\ì\n\áF\82 Ev$J\91\18\r~\1f Xt`{3\ë6\è7\19J=g[ø\87\97;6rV\È4-\80¬\'\ e\êÀ³k2\Øñ,\99»Q\17hú^|\à\8f,\rvK]\15¹\ÎH\19\ eÀ[ªwú®üºw\ fgf¥Ð¾\8dj1®\85aU\12Ö»_\Ó÷\î\Ç\1e W\854\Zr[\Ø\Ö\Ö\éuz¬yrÀr>÷fÀ\éX\18\93\ÊOÅ\8d\14ç\8d¹N\ 4\ f«\97\99ß®J\å]\9f£ýf\Ô6\90gù¹[.\8dIµoúTY1\8f\86\95\9an£qe\1eU\9cy8\b\8d\18»\84l\80O$\ÈÆ\94P\864\9f<±ô\99\7f\Þc\96góÿ\0\92?\"|\Ó\Ú\Î^¸ú\ 3saA¦\Ññ\í\ 4úÈ\8d\94\Êú8ð\9des+]¥­Ì\97\Ê\rf¤}~\ 1l\äN±\ÄHÄ\9f8r²\1e\ f¤3Ä\9c\14\íc\95¬$\ f8\Éeç\94·¨®\91\8c\7f|<!\Ù2!ûþýò,3ûþ±\8fe·~\83ø\9bè\97\8d\b[`º\8d\Ã#\Ñî·£G~ݹ_lû6óº^F\86\11\8a\rYö-®\Ò\Î\\JX.i\äç­\Ä*\èó,-%\ e>\re1\æ\Øò\"\"\Ã_\"\1c\17#³]\13\í\Ï\0B~Ga\Ë=|\å-6¬­n\1eð\Û\ÚjvM¨0Y\96\13\ f\90\e&E$f¹\99c\8e\Ñ\áþ\Í\Î]\8a:¶\Z\v\9dRþóV\Ø\ë¤\Ó\ì\Z\ÕÅ\95\ 5õL\Æ`s*\îiæ\9aºÒºS1\97a\92aM\8cx\Çf\1c\ì4¢~1\9c\1e\ë³ñ6\É\aM\å>4\Û\ìß\91Vê¼\81¦\ì\96\ 5h\Èg\ e\r\1e\Ç[g-ø\bXR\97,\ 4R;\ 3\10\88G\ç\1f\161\î\Î\e\9b\âxú\Ú%þ\85¤^À0\ä@º\Ô5«hR\ 4\ì8G\89cM\nds\rø\Îp\á\94&c\Ø\ìg8s]\8cû\ç\19\11\11\11\11\11\11\11\11\11\17\9fò\97*ñ·\b\è[/(ò\îñ­q\Ï\1d\éµr®¶\9d\Ënµ\8bK¯\ÑUB     $Ë\9dca-\ã\b\8e\"\9c¯\Îs\96\ 4D&qðcó\88    ùjõx\í¶\16\ 5\89\Z\8aª\1cû­j\7fg¶*\áN\9ba\1cqY\18w\\GLi\ e\ 3\n;\17\98\Õû&\Å\ 5õ\Ø\Å~\7f\1e\8fg©µ\8bh\18u\ëô\1d\ÌòW\ØØ´u\r\å\8e\Öv?\91dH\Ìv\Ø\ÛKÙ¶\19\11\9d<\Ò\Þ\Ç\Ù\ÞM\rF©ª@°¶p\â\ 4ó)5JRØ\82\ 4&BĨ\Ñ\ß:/\19^\8e®1\ÒE­r¿\91\Ý\åü\9f´ý\15öÁ\ë÷\1fÈ\93Q¡\Ñ\Ø5\á\95ø[\9e\Ó\î\Ûm\Å\Ñ$\ÆcI\ 6\18ª¨l L\95_oY#-S;\á^½pO[ôú\í\ 3\80ø\87\8e¸{Lª\8fø\90u\î<Ô©ujñGû\1co\81\19U\123\ä\ç%v_\92Jy\Ê\ç{e\Ï϶3\8fcDDDDETOª;ŵ\97Gû±m\Ø\Þ<\Ö%D\ëomï­¶ú\9b\0eƬ\Öy\9afOu\ÈZ\83\9c\Ðg\10GpC\13\1c\Ùó\'Ø\90\Û1Z8\Ð+\â\8f1}V\êúd{\ÛEÜ\9f\19\1c[©I°°\93\1d]\8d\13\82ù\17\17SO>\Öкü\b\Òõý\94\93\13ó-¿\99 \9f[*\\æ°¡\8f$\í¯<\éVQ\çe\92#DDDDDDDDD^3\Ø\1eÀq\'W8\83y\ç^qܪô^4\ã\Ú9\×\Û\15õ¡\98\Ì6<\18¥\93\88Uñ\Üö\96\Æ\Ún\0ñ@¯\8d\îy%þ\Ø`\ØR²¥¯6\9esù\Ï\Ê\Ç*\ÜkTv7|q\Ô\1dR\à\81\ã~ \8d5\àÿ\0\12\86¶k\ß_»r\'\Ð\Ð\æ\Úú\Ç\"\8df*\8995m!\Ã\v\13\æW\Ã<lSñeâ\83²>Vù\Ð\\S\Âñ\19¬i4N\ 4¾R\æ\8bú\Ést\Þ9¦&q\9f¶@£\96#®\ïd³?ùn»\16tS\Ì{\87\83K\86\Ã\Çym\94ñ»â¿©þ08z³\8c:ý¦C\91²>,\7fñ\Ï0\ì5\Õ\ç\ä¾F¶\13O\82\Ûl7B\ f\Î;L\é2~ª\8a\ÇF¨\80\ 22\ 5|HÕ± Ã\8b²4DDDDDX·Ü®\9fp\8fzú÷\È\1dm\ç\íZ\1eÍ¡\ïµ%\86\18-u\8e¿n,¶E>\ËE+\ e\1c\88\174vA\8be\ 2\\CÆ\92\191DPH\8eq\86\1dò\Û\á\ï±þ\'y\97:§$À\91¸ð¾\Ûa%¼I\Î4ðd\ãY\Ù\ã\ã\12d\87]¼6@ÀQ\îñ G,£T\99\15´8\Ò\ìi\ÜLÀ¼¯£\ë^\"|¤ò¿\8a.\Ô\Õs\9e\8e       \9b7\1e\ì\Ñ#j<\Ý\ÆC\9cH\Ñw½\173\99+\ç\1cO8«Ý´kGɬu\89V\18À\ÆSXW6e[m\8di\12\à>\9c÷/\80;\ÛÁ\9a\97`z\ç½U\î\Ú>\Ó\ 29\ÊØ\87\Æ-µ\Ë7\8f?\99¯\ìu\85h§T\\WIa\áË\85>4Y!\95\16Ls\842£J\8c\f¨DDDDDDDD\\2$\ 2(\r*Q\85\Z4a\12D\89\12\b0\80\0\b\ÜC\18\Æ#\9a1\bCk\9eB=\Íc\18\×9\Î\Ãq\9cª¥}K\9ee.»û\Ù;\9e·p\Î\Íi\eª=|\Ø\ìµ\ÜF\8cCD\87\Ê\\\95I/5÷\ÛE\80òÀ¾u\r\15\9c)\10u¡9¹\812HMv\Ò\ÜE\ 6¯g\eM\Þ8<wsÇ\93N\Ì\ê}p\à\è,\86ù\ä\15§ r\15\9cSH\Ö8\ÃG\ 1\9bü¶\Ót\Ñ\12;§\ÌhZPkú\à%Å\97°Zýq\9d2®¨\16÷\957\1eô_£|\a\ã߯:_]zû«C£\Öõ\9a\ØL½¿tH\ãØ·Í\90q\Ú\ËM»j\9a,d\93m­e\æD·5\å ¢fA\ 6\1c¹\Ï1\8d\98\88\88\88\88\88\88\88¼¿\97øW\89{\ 1¡\ßq\875ñÞ¥\Éü\7f³À\95U}©\îT\Ñ.ª,k\æ\8f\99\18\80\9478m\90/q\15Àx\88ñg#\Ëþ\ e\146û\ç\è\Ì\à^M·º\Þú\'\Í3úûa%§\9c\Þ!\ä\n\Ë\1dÿ\0\8f\äJdiFt*-\8c\97Qv}iövE\13F\édº¦¨\84\11B\8bR69Ò\85©\8e¹økõ*ø\8f\ß[\Ì=E\×õ\8d¼\ï1£\ß\è|k\ËZ®\ï¢\î±\n\È\ì$\8d£\8ewi\ÚT;\'\ 5±¢¶- \81\ai\0\ZXUò±\ 6M\9cCÉ¿©\1e\92\b\ÔZ§\90\13ü¹\Ä\18¥«¯\83ºs\'\12\ e\ïMmw\n0£]\Ú\ 3\8ba\16\Ïd\×\Ý2v\1f6%%}\Î\Û\1c\ 3\É\á\Z\â\'\Ò\13\17%yc\Ôe\ã7\81\æG\89Í·ý\93\âQL\91\98P\í7\î ö7]¥\9d;\ 1t\8c¬¶\9bÇ­\85o! a\n\æ\Õ\16k\ZÁ\e\äüdD\Ã}?¬þ}|Iö\Êõ\9a¿\14w\1f\8f\à\ìòl\eWY®ò\94-\8f\86®n\æf.f\95´p¹B\9fU%°c\ÅnK\"\\?¶#\Z\Ã\ã\as¡\Í\Äm°\êÛ®\9b¼Au\9e\93¶\ë;\85c\1c\Ö>\ÃV¾ª\Ø ±\ï\Ær\Æ:]L¹q\Ú\ça®\Ë[\92c.\Ã]\9cc>\Ù]\9d\11\11\11\11\11\11FS\Õ\1d\ä¿=\19\èm\87\ fñ\î\Âú®\7f\í«-¸\ßP%M\Îj¶mGBüG\7f\8f¹\n¹ð\ì+¯!º¶\19\ 3GS}JR\1e\9fiº¡t\81´2>\Æ\Õ\aQQk\7fkYCCYawywa\n¢\9a\9a¢\14\9b+[{[)\"\87]YY]\fF\99>\Â|\Ã\ 6,(QBY2¤\94@\0\9eWµ¹¸\ f\Ó\ï\â\8b\85\Ò\Ív>\Ó[S/³\\\ç\ 6»{ç\9dª$_rG<\97Ì\99©\è5sd\96L\Ö\Òi\Ô3\áÀ\90Áº¶%­\ë,/MEW>d\807|\88\88\88\88\88\88\88\88\88\8b\Ì9k\84ø{\9eµ)ú\176ñv\83\ËZU¤y\11,5nD\Ô\èöú)Q¥µ\8c\96\ 2\Ö\ÞÂ\9b\e\"\961\fR\99\81\á²\ 4\b\ØxýÛ\98²y\1fô\8ct£²±owþ\9aÏ\91\1ec\94G\ÌfµN\ 6\\p\rÓ±ü[?\rüyõÆ\97¨\95°k\äÄ®&\99}ER\Ë\vS\\]T\Ü\18Oa¡)»\87˯§Ë°v\1cg\1f\91ù3®w·\98\91k\10\ÚF\É:ó\82¹\96®,ºqX]\Ô@´\89\8dKlp\9dYO\ 2\ÂTú\b\e\8dEik\98fVW\\V\96t\Îü-z¨¸Û¸7ú¯Z»\Í_¬ð\7f?]\Z\ 6½£rMQe\87\8b¹Z\ì\á\b¢V\Ê\Ä\âÉ\91¥m\97\16\ e,\nÚ\99²¦\×O>jÁ\12\êu\9d\99\ãA\98°\8a)\ 2\11ÀQ\98\ 6\e\f\13\ 5\í \8a\"7\ f\19\ 6Fe\Ì \È\Ça\Ì{s\96¹¹Ã\9b\9c\ã8\Ê\äDDDDDU\14ú ;\87s\Ú\Ï+\9c»®6c\89¡u\92¶¯\81t8Ñ­¤Î¨\93\8a\9c\97eÚ¶(\Õ\æc\ 3Qcm°l\'«µ\b2gJƹ\ 2A\8a<\å\90adÿ\0¤¯\Ç`»SÞ\99\9d \ä\ZY2x\97¨°\19²Ò¸ñ\9aú\9d\8f\9a-2\bº\Å1]&,¸3\85­\ÔL\9b±\ÚV\99\83.\1cj9\"8\9f\86|\í7DDDDDDDDDDE\87=\ä\è\9f\\¼\86pFÁÀ\1d\93\Ñ\ëö\Í^É\87\97¯\Üd\ 3fË¢ì\8e\8cX\Ñ6\9dFݸlÊ\9bh­&Z÷E8\9b,\1e\á6}ð\12\86\9f\ß+^2y\9f\Åwjv.\0\äø\96\16Ú\85\98\8d´p¿(~        \ 3E\É\Ü|i.\f{(\13X&\Â}\å\11ó\8a\8d¶¤Y\fº»&\ 6D\88\10¡Z\Õý\ÓHô­yÀعö¾\1f\8e\Î\Ön\ä¼\åmB\8aLοò\ e\Í//º\ä\1d\1fl\Í/`»\9b#\18·\Ûõ¸\ïkkd\1dÏ»\Ú*þ\83\98v\97\106+\99S\80DDDDE\ç<Á²\eN\â^RÛ£\1dѤj¼u»ì\80\92\Çe\8e\8ej=f\Î\ÐFkñ\9ce\8e\13\ã4\8dv3\8c·-÷\Æq\ì¨}\ä-\ëa\å\rÿ\0x佺H\æm\9c\87¸l\Û\Ö\Ï0Cp\85/a\Ûn¦\ß\ÝI\18\9cò¸c=\95\84\92°n!\1cÆ¿\r\Ëß\9c|³m\9f¦;¦\9a\ÇRüTp¶\ÉZI²6\î\ÔE\87\Ù\rüó\7f O\1d¦\ßO_\ 2\86¨p\ä\10\98\84\ÊMV®\9e³#\8fôG\92H\ï±$P\ØL\9cCHU\11\11\11\11\11\11\11\11\11\11\11i;\ÏG\8c\Ýo\É_C¹\eM®ª¬\1f:ñ]e\97\'pf\Îh\ãdð\íz\Ýd\édÔ\8d\9cѨ¶ø\ßmU®G\12\Â@\84g\12º.\'=\84U\nqW%òoYy·I\å=,öz_+p¯ Vl\95C°\r\95\\ê\8d§P¸adR\ß\×0Õ¶L\8eY\11$Rl\Ôr\v\15ò\ë\ÍcO9­\19\Î5w7CûAK\Üþ\9eõß³Ô­\1cvs\17\15j\e\8d­f\ f\f²(ö\v:x¦¾¦\9e8%4xs Yº@\Ï      \85#c\ã,h\Êadg.[\"\"\"\"-nù\82\ä9üO\âû½\1c\89V\ïk-S®|\83e_\8fµÁû&ÿ\0\eø\ÑC\935¯p\Ús\9d\81sð\Ç\ç\18&sñwþ\9c\Ò÷Áº(9C\9aø\7f\8d%2C\ãr\')qþ\8b!\91\1f\91\Êx6ݲ¢\80Í\8cL1ùd\8c\8eÁ\Ø\vð\Çe\84\Ë]ñw·¶oyд\Ê>:\Òu=\vZ\87\16\ 5\ 6\9d®\Ôku1\"F\14@\n\15D\10B\ e[\1c?\ì\Æ\â´?q}²ì¼¤{\Þ÷½\Î{»j\"\"\"\"\"\"\"\"\"\"\"*t=Eý<¦é\87\95\î\Ã\éºÁ\ÆýO\97d\Ã\ìn¹\r\99\92GT\83\97\ç\\[]Ö\98ò^ì\98\8cÛ¡lr\9a\Ø\â\8b\ 6\10%\86²\ 4\82\17\92k^\8d\Þd\Æý\â\çm\âü\Ç8\ßÁ\1d\8a\Þõ\ï¸ùn[$[\Ô\Z~Ec¢|Jüb\18\89~a|H0\9bó\9b9\Ùk\Â\à\11\Ò\ÕDDDDZ©ó\87¥\Ë\ß|Jw\ç]­\8ai¶\ä\ë\9e÷>\9e,|û\18öU°q4\11Ç\8c¹\83ve4$\8b\9c\e?[p|¿9c\98\Ò2«ÿ\0\ 6\1cw\ 3\95¼¶tcG²\87\16t[.bÅ\97\Ñ0_lf\É\Õõ=\9bk\83(\8dø\138\Ì\19Ô\91§\f­c\9e\ 2\Ça\87\8f\98Ú®\96DDDDDDDDDDDDUÀú\Ûø\ÓZ \ì\çJùJ¾¬\0\Ú9#\88yC^\Ùn0!6M\94\1e:Ù´\çk°Jv±¥$j¦\îV¥\8e\12¸\8d\ 1­&\10yn$¹¸\Ù\'¢A¥\ÇJû\8a÷78\ 3»EJÑ¿\Ûôâ·\89õl\99¸Ï·\ï,cÁ\9c\ã\ß>\ß<~±\ïû\9a\Ò\"\"\"\"\Æ\Þ\ãj Ýº\9d\1dZO\Ç!¶\á.J\13\9añ\à­&A©Z\Ë\18\9c<\å¸\Î\fH\í\16]ûø|þ\7f\aü~\ e©·\ÓM\0\Ö\1enú\'\81\0\86dM¯\95\ç\És\ 6\â28bð\a+½§3±\8c\àCü\8c\80-!2\Öý\å\bñ\9c\90\8ck®$DDDDDDDDDDDDPMõÀ\ë5\î\á\î\84\î?O½¨y+\995\9f¿8n~\15òu}F\Ó\éc¾\1f\92b|É\8c\93\âÿ\0¨Y\Ã1\91\å\Ù\Í\1fF®·\ 6§\Æ\ eùw\Z\10c\ËÚ»#»Î±\9214d°5m.½H\ 3\È#[\87\18\81\89\0\11\18÷\å\Îhc\88Xv\18Ƶ²\áDDDD^[\ÎQq;\859\86\v²\æ¶g\16ò\fW9¾ÿ\0,bF¥n\1c\å¾ß¿\960ÿ\0|{c\ß\ß\Û\Ûöª¥ô\9eid\Ûü\Ëp\ì±dmv\91\Æ<ú9\äù\7fH\âk\f¤.\19\96µ\ÙÁ\n;÷\ 1\9f¬5\Ù/Á\Îk\1c\çb\Ú\ÄDDDDDDDDDDDE  \8f[\9dn\v\ÓÞ\97\Ü}~ù\83\Ù]ª·\îöÿ\0/ù^/¶\95õü¿¾>\ß\áp\ïoõú}ÿ\0\Ý\Â\Ï\ fH\95~!øiФ`\7f\f\Ûs\Ï<Xe\ßû\Ù\1e\ e¯\ìþ\ØþØ­À¿\×ü¯\ïþ\98\93º\"\"\"\"\ê\Û\Ì\11Y\é[\85iÿ\0ȱն\b&ÿ\0ò\97S.9?þ     \95\\G¥+\82\ë5\8f4\9d\Ç-?\Ø\n~\ 4Ò¹Ã\8e*!·ú\82\Êû>Y\ 6¿\ 1\Ïq2\ãý\91a\é\í\0½ß\9fv\È7\Ûò~\19\9cY@\88\88\88\88\88\88\88\88\88\88\88\88¢¯\ë\ 3Ñ\83±x\9d\9b·\9a\e$;\8f\8c§E\92\ f/\81\'c\Ø!\ë\9fhð\ìý\8d\É\âÌ\97\19\es\ì\Ò\äosp\\a\Ù3\éu\Ñgh\1e\18z\Å\ 2Àoa¶\e\1e\82\ç³\á\93A\Ý÷«\8d\96¼\98\Çû\Ìl+\0\ 5\8fÿ\0}\82nT\83\11\11\11\17ø \Æa\90E\e\n\"±\Ã(\88Ö¼d\eÛ\96¼dc±\96½\8fnr\×5\Ø\Ë\\\Ü\ç\19\Æq\9c\áA7\Ó\17A\1e·Ì\9f\9clG\Æ\ 6*\ eG\ä\8a\b\Âo¶\Z\Ø\æ\í?#üq\8cc\ßô\ÆÒ\89­ö϶1\9cÿ\0\7f|)Ú¢\"\"\"\"\"\"\"\"\"\"\"(\àú°\ 1\83xJ\ìi2\Ügñ¹\ 3®\ç\Æs\8f\Ûr\îp\Ò#|±ÿ\0\fûH\Ë}ÿ\0\à\ì\ãýVsx7«\rW\88o\1d\10\86,\Ê\ê\Ï\16Z\e#c\e\93\ZÒ\84\13²R\ç\r\ÆHL°\Ãg\Í\Þ\îø1\8cò\Ö7\Ûk\b\88\88\88\88¡\Ñ\à[C¦\Ðü\ãú\84i©\0xð+ù\86\9aXG$\8f1²]Ë\969kl²3\88Owe²,e\Z@\ÚÏ\80\ 6\"±\80\18ÀÁ\r\93\17DDDDDDDDDDDDQ\âõO\Ñ\Ø\ßøL\í<jÀfA\à_ðe\áÇ\875¾\Õ\Ô\\Ù¢\ÚÚ\9f9{\9a\ßhµ±eJ\Ë}ò\çý\1f\ 1µ\Äs\e\9c\ãð±\18\91<Ix\ã\11\1dòsºwÁ\12q\9fø\ ef\85O0Mÿ\0 Gc?\é[:DDDDE¡\Ï\Z\Ýn\'\14ù(ò\ëÌ\92ª[\1eG=se%¤;?\ÆÀ\9f\"\8f]§«\87\16\v\8f\86\ã\ï\10®e\ì6C\Æ]\9c0Ö²²\Ö\ã\ä\ç?|h\88\88\88\88\88\88\88\88\88\88\88\8bWþf8>ϱ\9e6;I\Ãõ\ 5dk\r\Ã@\97_\16a\ 2\ÙC\81(\8fh\àO|W\Z;¥6%\89!\9dÀ\11\86G\á\99ø\948\ÆL<\98\è\æ\8aþ1\é\ÇXxù\ád|iü\1d\Æ\Ô\"\bþ¿¬q`jõÂ\89\86\àyø1¹\89\80»\ 3ǶE\8cýnk^\×7\19P\88\88\88\88\8b\áT\ë44s®¬ªk#Á\9d±Llû¹!û>\Ë\19\8cÁ0Ó\9f\æ÷7\ä\Ü\14\9e\ß^\18\ß\ëwôû¯º\88\88\88\88\88\88\88\88\88\88\88\88º¾\ç¨\Óo\9a½Î¡°\8c¦¦½\8b\88v\ 2\ 3\Ú2¼80\8f\8c1\ï\19Z\Üý\81f}ò7c\Û\19ý\7f®>\95\r4\1dr\8e\9b^¬k\Ù[CS]M^\Â;\ f# \Õ\Ã\f\18\8d{\Ú\Ö5\ÏÀ\0<9\Økp\çc9\Ãq\8f\Ö>²\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"ÿ\Ù',4,0,'','','',''),(74,2,21,'9305bf01b999ea44','14034074815bf01b999cc19093001643','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','63436871415bf00e80dfe9c308856934-4.jpg?ts=1542459008','image/jpeg',80,80,2356,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v     \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0*\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b \n\11\12\13\14\16!#\15\"\18BCÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91ù\ãõ1VüwZfº\9b\bJ®\Ø\í¨!¶\9d\85m³e\ÙMg Ü\91\13\ 4\a\14|\\qb½tÙ\99\11ö$\15[Q\àÁ\Õ\Û|\'¬\8fJ\18¢+\18\Å_\8aÎ\9fy®ód\à]±î§\91~\Ü\èN\9e\ÊM>et-e°¦µM§s¨2T9¸\Õ4ZO\ë4\Z] W\9a~?;\ 6J³&\Ñ&\ eðu\êôç´\84´f÷}v\ë\Õ+¬\9a\Ö3V\Ð\ì;j\Ó\v\1c\ç\ä*stn]\9d¼.\87\98±\Ç\19\â       ¶\í;E¦\\V\1eÀ\Èu0°\ÏEW\ 3}o¹\e\f\16H{\v÷^8\ã\8e9\13{\á\Ù\ 4õ\ 3¦\1d¢\ìòE\1có´v\8eØ»\ e\n4\Ì+\"J\Ú`kg¿R\88+\b\ÊUøò\Öl\Äƽ\9c)\1eÍ\94¬üÑ\8c|±Po\8bÞ©\Û<°yCÓº\7fhX\',\98\Ý;Jõ»\13t0\×U?-M\85̦\É\ÛR\84JcûX\9e·\8e\19ðqòXJ¿\1e\Ãc\8f#-ýh\Êqt\15F£X U+TjL\ 4MV\9dN\81\89«\Õ+0A1\e        ^®À\80\Ä\\4,Lx\Èlp£c#\Å\1c0\85a\bi\81\Ùm´\'      N1\È9\äo\Æö\87òa¢¤t\Æ\è2\ëX\90\10Igµ\î\Æ\×Ö¹\êå\92\81d\91dl72\88ø\é! m\Ñß\92\ 4z\äk6\à%b\ f`ofS\1f \91dÄ­\v\ 4òe\é\ç\ïýã­\97m©rÙ\9aÿ\0Ll@\ë{?D[\ìÓ³Ú«h\ëb\10\f\94E¯]\ae|õ\ë\é;e\1eB.\ÉO³W\90\ 1 <T|}\98Ixñ$ \9fµ\ßLm\9a^û\Ô:»xk\89\ 5J\ëýÁ¯©\Û6\95\"\â\12Ó¦U¯5øû,\13ï²\87\1dK\ 4®6H\7f\1f\ e/,?ö3\95+(\Îy\é|q\Ç1\8b\8bVØ·?\8a>þkÚ\90\84H\Ù$úͲ&a\ãDK\8b.P\Ê\\Vn\è\8a\r¶³\85¼\\\9akª\0Vq\9c\á\â\bm¥%I^S\9d\ 4ý\19¯Dµ\å\8aþ\83\Ö\Ú\ f#¦;q\984º¶\13ö\9c\9d\99¤\b)±\Ò\æp\ê\Ê\ÄS\aº\94\8f\î\æ\ 4hÕ¯\1fJ\1c\Î-&\ã\95Mz¼g\é\97\ f2\12\90T\ 6\98\90´V:ó£©\9b\fx\81\Òù¥lb\9cµXc\Ã!\ 2\8d\96ý\ eѯ\ÃB2\9c\95\86\90\188Gô6\9eX\ã\â\ãE\Üz\Ïã\9f¥:\1fb6H÷\íg\ÖýY^ºÇ\98¼­ø[^*\à\9d`¯)Y\Â\7fÒ¹*aPL\ã\Û\1f\16#\9bN?\8crzq\Ç\1c\â}\86Ie\á\88i·\Ç!§\18}\87\90\97Yy\97Q\96\ÝiÖ\97\85!\Æ\ÜB\94\87\10´\å+Nr\95c8\Îq\Ê\Ä{\8dÕ½\8d\é óA¥{³®ª²¶>\92^v}\8ev\8c¸D\7fXz\êò$\8cN\ß\ëÄ\82\Þs\è\Z\ßI«\Ø$M\×k\92y\"X\"À«\Í$\97\ e\8a³\v\11en \ÛZ\ï}j\Ý\7fºu%¢:\ë¬ö\8dN\12\ïFµE)j\ 6r·a\ 5\99\bÃ\9aC\Èl\81\ÜX\ï%\ 4\86SL\98  Hx3\18\1ei\11\Ûȧi\b\éGF»IÚ #\ 5\99\9b\Òzv\Ùo«\Ä\È%\Õ\Æ\É\\\Ò&\"\éAJ¡\87\19}Q$\Û$a\9a\94\Ã.´÷øõ\13õ8\87>*Æ\8cÞ\96~\86\ f\äc´ý\8aò½\ÝB\Ë\Ý\16m]·cÈ¢~Ú\94\98\r£²S\è\Å\î\7fcO\n\9c4\13¹\Ö\11E\Õܦ@ \\\Â\ 1)d\0\á\ 4\aôøv\15cG\1cq\Ï\ 5\ì\çft§O4nÁ\ìganñ\Úÿ\0TkHe\ÌY\'\Ïù:óªS\88\Z6\12\12\91\93vIù\'\86\88¯AG¶\éòÒ¥\8c\18Í©n{\ã\0]_\ì\1f\95ÿ\04\84\ãv\ëk9~,<l\1e{\ØÖ¶\18\9a\85R÷\Ý>\ËWX%c\æÁ\r-}\8b°\Ñ5EJM¦²ðV\88ªÁ\ä\f\90\ 5_\ã2\äø¹d\94ñcÓ\8d\81[¬W;\1dL¹w/\152\r\90\89\90\îV\Ñ\Ø\1d\8f@\ÓRL i\19\Ø\ê\9eÄ\9f\93\×5©c\ 6m#8õ:\95\\a\91~B\880\ã-m*tQh\94\9d_M¬k­oR­Ð¨4¨Xú\ÝB\97O\85\8f®\Õ\ë\15ø¡\Ð,l,\f\14H\â\Æ\ÅF\ 23hdP\82\19\91\Ùm8J\11\8csÇ»y\×\n·oú»¿:½t1ø\Ê\Þö\ÕW-jtȬ\à\82\1e²\Ã\12\fe\8c1\Ô\ã( \Ê\ìªÁ\9c\10w\1dm·É\8f\15\86Ö¬óO¯N\Ƴør\ß]\91ñ!\äJ,} j\ÙûQ\8d­\Ö=³g\Ê\â´öó\98L\14u*\É\15H\ØÒ\8d\ 3\ 3)û$-~\933H\1dd²k\Ò\19±\Ôf\86\87¹°\15x\Í\ä\12¤­8RU\85%XÂ\92¤\ç\19\9c{\ã8\Î=ñ\9cg\1f\Î3\8f\ã8\ç\Ï\1csQ?-\94Ù¯*~j:M\âJP\ÉDuO@kw»½Û\98\88Ò\88 \9b\8f\ÂD\Èz\Í^W(q¥8Ê\83Mv¢\ 1\82£\87\Ü\ÖY!ó\93\"\87pm¶a!!\ëP\Ñ5\Ê\ìTt\15~\ 20\bX8Hp\87\8d\89\87\87\8b\15 c\"¢\ã\83m\91\0\8e\8f  \86D\b1ZhqFe¶\19m\r¡)\Ç\Ùñ\Ç?!v\×\Ô-\99\ 6\ícc\Ò*\e\ 2¶úþ\×\ë\×j\Ô5®\r\ç0Û\8da\ÇbgB<\a\17\86\9du¿\9a\Çʾ·\1cG¿\Åj\Æ`·d|h\é]\ÍXùi\ë.\Å\évâ\80\87l\rsºú\9bn\9c\Óòµ2#Ò\97!E°\Ñ*2Pú\ëgS\Ç!\81Z\91¥\Þë\92±\æ\Å4¸ð\n\86uL\9c4Añ!\ß\Î\Älݯ\Ùÿ\0\e\Ýýj½ÿ\0;zHd)\12û\ 6©\Z\Ü%[²\9a\91?K\Þ0P\83²8\912E\8f#\0\å¬\0\ 4\8f\8dmv\9aó¢\ÇF\9eô\Ô4>u¸\æ\ 3úÉ­G\13\Ô7\å\ 3e:Û¥\18\ïK:@\0\85¯\å\94E\alv\ä\ 1\91m{ÿ\0®\11 F \16G\Û\1fú²þqÿ\0|s>\1cq\Ç\1cs\ 2²\Z\Ìx\ßRõceE\'\ 1.\Ï\á²\Ü-¡,!M¦`º\çnjQq¤\9a¤º\96\ß|peA\19µ)\95:\96\ 1\19\1f?­¶ð\Þz¸\ä\ eÕºý0\9eH;\99°S\1c\86Qy\ê\9fC#ñ&\96\14\9c\98]Wa÷¬SF[ÿ\0RP\ë¢\bl2\96\1dul²ð\ÙV\eK­\áSÇ\8e8\ã\8e@\Ùz:W\äò\81²\15\10¬©\8e\87\í\ÊSs\Øo?\ 4~G`t¤\ã\91+w\1f\14\18l\Æ\ÛW¶U\86\ÝS~ÿ\0\17\97\1c\àH£ \97\8c@\ì$²\19\1cg\ÊKM¤\97\11d¸+\ f?\84\á\Ç\19\19\vpv\96¬¡\95\94B\9bJTó\99W?\1cq\Ç\1c\ëd1T[g\ävrsC:\ee\å´\ä\84\nû¬¼ð\èw\Û\æ\96]xv\1cq¼gâµ²Ò\95\8c\å \Î;<ÿ\Ù',5,0,'','','',''),(75,2,21,'9305bf01b999ea44','14034074815bf01b999cc19093001643','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','63436871415bf00e80dfe9c308856934-4.jpg?ts=1542459008','image/jpeg',48,48,1488,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b        \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 1\ 5\0\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0  \11\12\n\13\15\16\"1\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿\ì.\é\1eY\Ö\Óû\8e\190\9c\ f\ÆK\ËŤ*X2 \7f|\Ë\Çf\Î\ä\8c\12Yys\82G!µ+\15\92\91c\91·Tଲ´\Û>¾\90\99\ 1³I¦\Ü\Õ]U¢\ 1n\å_Pf¿\89\Ø-5ô\e\84a.-¸\é\é\145\87\12Û®6B]e½W\87\87\91\1fò\1e\ì]\81\Ä~©:\'jjy3 6e½5\9d-M´G>\à\92u3v¬ªk²\Öx\93\Zøx\19¸J§\8d\82=\85!ð&\9b\8f1\87\ey\86Ö\99\íø\9cz\ì \è>\10®ö\íª\b\19¾\8f\ì<\Ø\ì¯]e\Æhû\rWQ\85k\93\86¬Ube\88ýb\86\1e\Þ\ì\17óû#\Ì:Ó³\ 4J\Ã\r\'\923\ 2\1e[dÿ\0 »\'°\ÞR\çÒ½\84ð·RZi¡sÓµ¢w?9\ÎÔ¨·\1dgt¡\ÊØ£«\Ä[@\1eZ¸\í\84Ih3¦Az\Î&f\9d\fº\Æ\ f\92\8dr\fø\959!@½Ew\ã~\Ìx\'Ju\89UÀ\ê\16\ÛX³U}\91Y\8dy\ç\âb¶5\ZX\8aÝ­P\8b\'\ä¦à¥\8d\r3Ð\82\96\ 5\83\15* D\96k\ã¬\Ç\ég\87\92\×\Ü÷\v\Ê{\16õ\É\Ñ\1c\ËUX­\ìy\88\10\9f\81C#gk©\16-\958r\8b\Ï\ÊB\Z\ÌTs\95bNs\nh&&\Ü)䩦V\9c¦\7f\8d\ fJC\í\ fZ\Ô\ e\88MC¢xbR\É\Î[óWM°¸\ë5FR¿m²»P8Ø¢s\83\e\12\91\85p\97\ZCY±\ÃXÀk\í\800¥r¿É\9f¦-\Âó\96¡õ\9b¥`\139\Ð>\Ðö\1c.\8f«\9e\1e\16¡I\8c¹\Ò     ·LÉ»ôyܪaù\bºò\7fHgp\1c)vI\7fº\v\8c\ 5\92«Ï¬þ\17§ú\à\â­\'\È\ÔùuY\7f\88\"I·Û\96Â\85þa°\ìò\ 4دVF\ 4Z\96\àQò\16)\ 3q\f\ 3®:ð\10¬\Ç\ 4ó\Ï::\Ý[\ã\ç*\Þ{\9a\87κog\ï}¡-\88M{¨\èöM\81o\93ú)\×\a\83¬Å\91(b\ 5a\1f+(\â\90>\ 4\8f\11¼e\Ò\Î|q\9aN\\u8̶\ã­Y\Ò\Ý\Å\ 5    \Øý\Ëq\Ø\Zò\91³\Ç\16\é\Ï|+®\í\ÓZþ\87­5<\Ò1\'G\96\è9\Z\99±\96½½·\ì\95÷¢flpV    \Ö(\15GJ~\11ªN\rÉ\89\16¦k\8d!¦ôù\1635^¬ k³®&7#o\91§T\á+òv\É\16\9c)Ö¤,òQ\81\ etùͺi\8e$\Éb\f\'\ e\16Jð\ç\Ù÷r©\á\ìÿ\0\Öü¯m\15\Ì[»O]àµ\9fYñ>\à\8d\Ü\Ú\ 2\Õp\8f6S_N¾\83á\89´k\8d\90\14N?|MN\Þ4\18,ª^   J\97\821\84\16 \å´\éb>\Äl¾\Ä{\9bhU­\83Õ\9a\92Û­)jd\ 1vvÓ¢\97\1f¶56§\95)öBT\9d¼ø5\ 3±£5\ê\8cwõ\\\Ø&kFk\Õ\È\Ü\âBòMXV\Þ}\ e\\d\9ct\Ôl|\Ì9\âJD\Ë\ 2$\9c\\\9cy\r\16\ 4\8cq\ì6PG\ 4[\v[\ 4\88Xδ@\Ä2µ´ó.!\ÆÔ¤+\19\Ì\éö\á®\ß\Û|\v·µ\8bH%\æow>p«\Ê\n+yq\Ã\ëòý=¦\84²Æ¸\9cc?õd«\îI\80\8c¡°\È}k\ÆP\95c4xa\87\fv\ 4\11\96\86\14VZ\18a\ØBZdq\ØBZe\96[F0\86\Úi´¥\r¡8\ÂP\84\á)\Æ1\8cc\Ïo\ f3öÚ´\ 5\æ«e¤\Ú\âÃ\9c«\\+ó5{$,\88\95\1f/\ 3?\1cDT\ÄY¼\95²@gÇ\96@¤°\êTÛ¬º¶Ö\9c¥YÇ\88Ǫj\Ô\í/\×\7f)R\ìfH\1d)M\Öm\Ô\7fZW.\äö\ãk\13\ÓppA?\97Ô·\7fó`À\8e\8ek\nV~¬\n\ÚSýp\9f\1dM\81G\8aصrj\93Ku¸òe+R\Ë[\18N]Á5k4=ª?\ë÷\ÆSñ\99\bQp¼ÿ\0¸FU\94ÿ\0o\8f6~\1e\1e\1ebµ\Õ\Z/[S!)\10®¾ô\\\v\e\84\19{-\95 \\\82\92¼\ãýú8ZÐ\9cÿ\0¹BSó\9c\ç\ç>\7fÿ\Ù',6,0,'','','',''),(76,4,22,'9305bf01bd73e275','11253258925bf01bd73be2b220663529','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','15820583805bf00e7fd7909940374120-4.jpg?ts=1542459007','image/jpeg',300,300,11008,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b        \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 1\ 2\ 3\ 5     \ 1\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b \n\11\12\13\14!\15\"1\163A#BQ\81\82\17\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/r9¸f3\9cDëº\9e±®\8fð±g\ë]L\ã\Íϵ[d_\å\"¾þW\äñ¿\19Ķ¬\94Hx\8c\ë»x\12.¯+\'=­\91\ 2ûY©´­\97\18f0Hð\96\11\åF÷\98}`\1e\ 2\Æø<|\Þ\r\á\íRľ\Õ\15\94\ 1v=¢¢/\ÄyÀ\8b¸\ÛZ\83\13d´\í{\Û.%\ 5F2\1c²9#\93\181\ f©\1e\\ó?\åC\9b¤\96VõÞ\8e\Â\r\å\95ùMÆ\95¼M\ãG\a\Û9À£\ eO\1d·W\9aøag\Ä,\8f\"Q\Ø\á\8cx7\Ú\æa\Ë\Ìõ\ eòù6\ä-\96§Nл\85\Þ\Ý\ãq¾\90ø\Ôz¶¡\Ø.À\ì\Û-Ì¡\80²\8b\1e¦\8e\9bn\9bic!±£\9eI\ 5\ e)\88\Ð\0¦sp1½Ø\95×\8f\ e\98ú°9J\92£h\87\Û^I\ê\×\e\\Î\8b\996\1d\83\Úuý«x\95L\è¸8®«x\êú\83\99\90\94\87üV\Ñm©Ø\82P¦bH£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8b\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)\ 1T\É2\Þ1\12CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ø\êy\ë¶WPKüg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ek¾º\ê8­5¼ù\Îo\Æ#\àÁº$\Z\Í;\Õ\äù¾G7\9fñ¯j¹\8a\ïs\8b\ e\ÆE\8e±\Çõ\Ï5/\19h\î>e{\aR\ÓA °¡b;\'N\f\8ben\18\ÓeEÅ\96c\19\â\Î\ 5¢\90¯\88\8fN\ßm|\9e˪ä\9d\80\13ºý\Õl\96\14¢òþ\ÑQ\92Zo\91[ &\9dU\Æt\ 6(¤J,\8a¼û\Ç\Û,\ã>\8a1l©\çÂ\83²ÁþDp\ì¯ñÿ\0\â+¢þ6õ\18\94\9dv\áº\0\î/\ 4\\l<½¶B\87±ò\8e\Ë2>\\|\Zf\×>9lb\Ã\f\ãÎ\93UY\fÃ\8dL9Æ\85\a-\8bñf6h\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88¢#\êAõ\ 2\13¡t6=:\êm¥|þ\Ø\ï\14$ÿ\0\16\82-}\9dw\ 1\ë6AÀ\Û9\Ð\1f\99 ±\ä+P\94\8d\Ö\é§\0\95µo\ 4«\8d\98\a\8b\ 6\1e·µ\Ö+µ\í{6÷³_n{\9dõ®Ñ¶m\16³o6-\8aòi\ì­\î­\ì\8eù3¬lgIy\ f&T\93\91\ä)Hü\ç9϶=\9b\8cc\1f\ 3\Û?¯\×÷ý\ãÿ\0\9c{\ç\1f¯ù\ã8ÿ\0\ï\vñO\a\Ó\Ï\é\9e\ eÿ\0\ 3M\î÷\91-\'.\Ôg\8e=ÿ\0\fõ¯e\86`\9a\â7\Ï/\83¸r\ÍL \8d\8f-­d\9am:G³\ãDx\ä\Þ\r·\'\Ä\rj\Â\Z:*mb\9e»_\×j RQ\ÔE\14\ZÊ\9aÈ¢\85\ 2\ 4@\ã\â0E\8a\ 60B\e\7fyökqòv\\÷g.s\9d\9f¬\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88µ\ 3\æ\çÉ\86»\âó£[\×3\ ePK\Ì;§\ß\Ç\\\ 3®=\8d).¹&\Þ\11\9f\ZyÀù\10ðú]V\eK°l/\14À\Í\15\\B¾´r§þ<CS{\É\\\95¾ó\16ý¶r\8f(mw\e\Ç \ïWs6-³k¿\95\99v·Vó\Éó<\99\ 4ö`\Ä67\f\8f\ e\14Q\82\rt\10Ư¯\8d\16\fXñ\Å\Ñ\×\îs\9cÿ\0|ÿ\0§·ü°¦\89\éjðt\Î\Ë\ï\15þ@ûQ¦}ü\ f\Ç7\"7\ 1\é×±2øü\9d\ÈT²\ÆW\îVUòÃ\80\17P\Õ$4\7fÁ\17.\96û;\àH\99\88µÃ®£·\9deh\0\b \f\14\820G\8e\ 1° \8e\0³\ 3\10B!µ£\10\84\83\e\Z\Ö1\8d\ÃZ\Ü7\18\Â\æDX{\Ý>øõ\7f\Ç\Ç\16F\æ^\Öò38\ãB\9bp:\186,¤»Ø§\ØZ\90.> \Ö\Ò\ë\Ðlm\ì\å}mùb%|93\1c̸Ì\8eð\ 2IC\1f\Înõ\89ø·\ã\È\í7\13Uóo`\8d\î6\12&½¢\Ùññpò\11\Ís\ÄNI\87A\1c\91\ÄÏ\81\18\123\8c½\82\88G1¸&,\Äõºu\ 5ò°\Éý,\ì\8ch_/lÈ\89·q\84\ÙXg¾?«\10\Íe^,»\Û\ß?\ f\Î\Æ=ñ\8c|ÿ\0~ø\Úw\ 1ú£¼:s|\Êj;>\Æ\Èá­\96\Ò+\8f&\1f/hÛ¶¥®U\95¹\Æ?\Z^û.\81º\83I\9c¼L\ÆKf\f9\Ï!\19ò\8b\1cò\99¿\8dKrÔ·\Ú8\9b6\91³P\í\Úôö±ð\îµ\ËX75\87\Ã\Â#á¬\99\0\Ç\aÙ\81\1cDx\\ü\14m#>ln]\8c\88\88\88\88\88\88\88\88\88\88\88¸\ÈA\84d1\88Á\bLy\nR?\f\18\Æ\Ìe\Ï!\1e\ì\á¬c\e\8c¹\ïvp\Ö7\19\Îs\8cc9U\ez\9aü\87\Ùw\8b\Èþÿ\0¥k\e#,ø\'«E\93\Ã|s\Zª\Ï3h.ö:¹%/!n\í\ 3¡E,k9·\å~ªX¦\91`\18ñõ6L\84øD¸±\89\88\ê\"\Ø÷\8a/\1fÛ\87\92¾\íñ\1f\19>\16©mhí\93\96\91_ :\8f\19\ë­üý\86|\87\8c\à,s[å\91µ\9a\É1ÿ\0$𬮣ٺ\14\98UópÛ¤ø\87\89´\ e\b\ã\r\13\86ø«[¯\Ô8\ç\8du\9a½CMÖª£\82%}=\15<vÆ\87\ e4h\Ã\fp±­n^\æ\0!\ e\b÷ýA\13>,Ç£¢\"ñ\1e}\ë_\0ö\9fD\91\Æ=\8d\áþ?\æ­\ 2L\80\Ì&§Èº\Ýv\ÉO\89\91\È3G\98\18ó\Â\\Æ\97\1c\ 4\98òc8G\ 4¨ñ¤\88\8c<`\10pHòù\é\14n\9fM·ö\a\Æ=\85͵mh\rwyÕ­ºÑ\96\96\83\0\ã\ró\9dÅ\9b\85\86b\9d\ 3£J\99\8d{j\97bs\16Í\91\á\\VV\Õü\v\ 3\9ak\8dr\â\×^\Øj¬¨¯è¬§S^Q\ÜÁ\95WqMqW(°l\ê­k\'\b\13k¬«¦\80ð\çA\98\0Ê\89(%\8f C(\Þ\Ì|Õ±Þ\83y]\ï\a\8dͲ\1d\ßZy\92ö£Qu\9c{\r\8b\88v9\126\ e+\Ú\Ø\12H)cYj²\8f\81Ö¾Y¤fD\Éú\é\é¬\'H\8f\ fù)3¢\ÆlWZ#\á·Î\87\\üµhÆ©«\fn&\ìÖ§S\1e\7f ðe½¤s\È(\9a\11b\Ça\ã\Ù\Å#$\íZ\9cinpó)\ÑÁg\16\9e\f2¾Th;\ÊDDDDDDDDDDE®¯,\9d¹¯\è\ç\8f^\Ïö:XbÊ°\Ôx\ÞÖ§U\812fk£Yî»\8e\e©\ê5\8f\9e\10\90\Éa{o\n$S\8a4Dzi£{D\92ß\90\9dI$¹r§Ê\93:t\99\13gM\90is&K1$Ê\97*I\1ci\12d\È3\9ec\È9\9eò\98\Å{\ÈR=\Ï{\9c\çg9þtV|ú?ü~?¯\1d-\Û;\8fºUÏ\81\Èý¾°\89\9dtS\ãÈ\89ø|\'¦É\90\Í8\91\86I2bL\8f³\Ûʸ\ÚAo\bpI*\14ø\15\11\Ìúh¦Ä¿\Ñ\11\11\14(}O¾\ 6\ê¹\ãD\Úü\85u7Mü~r\ã\Ê<Xso\1c\êu\99yykK«ø\à\Û-U$\ 6\áó·­^\e\88fÿ\0\e\18\17\Õ\0\Í;\ãZþ5\16(+eE\ï=e\ì¯0u\v\9c8û°¼\13´\ÉÔ¹\'\8d\ïa\Ý\ÓN\e\äf\ 5\80\9cd\99C}\124\98\84²\×\î@<õ\82\Ù1\8cð?\ï\85*\15\80\8d\8c>ÿ\0q¯\92\8e\9eqwg8ðø\8f/`ª\15G!j\æ\Î\19c§r5(\Ù\a\97\19\ 1[\1c7!\99\9aÉ\98\ 6 \ÙB\Ã%UÈ\9d\ 1Á\98m\82¢\"\"\"\"\"\"\"\"\"(\88ú\Êù\Êw\1ex\Ù\ã\Π\8aß²7a9\Û_¤²n>¼81x\à\f\äQJË\9cß³\"dú\88q^1»\18q&\ 4\8f\1ceµz¢õ\Î\0\â¹\\\ë\Ï\1c\'\Â0ffºo1ò\ç\eñ\\;\f1¥\Ì \\\85¹Sj1\æ`n\ËZL\Å-»\ f\86;8kòÏ\8es\8ce^\83À\9cC­p\a\bñ\1f\a\é\Õð*µ~$\ã\9d;\8f(\àU\83\11«£W\êt0iB\ØQðÁ´\11\ßøy \ÂÁ\8d£kðÖ\8cm\Æ\18\ß[DDD\\\12¢Æ\9d\ZD)±Á.\1c°\Z,¸\92\829\11¥F\907\bñ\ä\0­x\8c\ 3     \ï\11\82V8e\e\9cÇ·-\Îq\9a\81½G\9e9\a\ã\ÏȦ\ë\1fNªm\7f\bö4\16\1c\Ý\Ä\ì\0\Þ\È5\ f¸¸\92\r\çO\ 1\ f,¦;\è67b\Ó\Ü0\ëj`AÙ«©*cf5S\9c´\ e\8ac\9e\8e\ eê³\88;«È\9d@\Ú.L\1dg³ú\91n4h\13\'eµ\91¹3\8f+\ç[\Î\15]\7f\Ë\ä[Ý£S\8e\æ\É(FLf¯QÁ%}a\86\ e\Í\ÄDDDDDDDDDE\ 4¿[þ\Ä\Üq\ fCu,1ø~y#\97v,\93å\9c\8c\8df±¬\Ö5\99o\ÇÙ¯\ e^÷a\Ù~rö\9d\Ø\Ã[ð\Î_]\Ú)\13úZ8\ 3R\ç\ß0\\,\ÍÀY\93\v\87t\Ý÷\9cª¢<#\91\12^ä\82®¾\98S\ã\e\19\19\â²N\Çù-k¿Ê\96\b²>$úr\"[¢\88\88\88\88¢C\ë\12\ê\í\8f2x\ä\Óy·Y¤\87*û­|\ÃOµ\ì6!­\ 4\8b¢q\î\ËOq©\ÝW2n\1e)`«\81ioU³\Ì\Î\7f&(EK#\Þ;\v\aW*-\8fø\82\æ\É]xòq\ÒnU\85\1c\92¤\ÕsÎ¥¬\8cBú¾M\Ç%:O\19\12C°l\àn\fAn\ f\95!\8eùe\à      \18\11\Îk\1dv\Ê\"\"\"\"\"\"\"\"\"\"\83/­÷^    :ÿ\0\Ñ=­±±ù\11y\8b\955\ã\Ëþ¬\çé\9f¥RYE\8d\9f\ÞF\Üeõ³\v\8fl5\ïö\Ï\Ë.ÀÛ\86WB\8aZ~\8dmnlÿ\0*[\9e\ÐÆ\8f5º\ïV9*¶S²\ìý­\9f±m\Z\13\ëð\Æ|rÜ\8dÑ©->\×ü\Ú湡kXü\11\1d¤¨\88\88\88\8bR^xj\âZø{ò\12)a\11q\13­Û½¤w\11\8cs\81.°Q\æ\0Á\Ëñ\9f¬¸È\9c?\9b2\×\å\84 ñ\9fb;\19¥\Ñ\16eø\ë\Ò6nD\ï§N5=B´Ö·³;)\Ãv\"\88\a\ 5¤mv»½\Òl·³¿Û\90Lp\ê\èj,­\f6¹\Æ(a¼Q\84i\ f\10Iyj\"\"\"\"\"\"\"\"\"\"\8aG¬+\84 r\'\8a±ò´\91d³:ý\Í<}²Ö¹\84;\1d\1c»\í\Ü\1e4\93 \8c\17°\Ï\e\10ö3\Ç ¤\å\Ãl\891NÁ\äÁ\19\ 5Uò)rz46\81\×ù>\ä=I\â\Î_²õ\8f\11ÿ\0£\â7k\e.¤\'\a9\Î~xq\87°<\8d\Ã[\96\11\Ýó\Ës\86\14DDDDZBõ\18òö¯\Ä^\1d{¢ý\96ÀPI\È\Üq\9e)\×\Ú÷»%\95°oVpjk£\ 4\fa\nl\1c¯ür9­h£4ø\91 £\bÝ\9cÓ\88\8a\94^«\í\\ùå\8b\8d9^\f\ 3¿Jꦿ²ò®\Ûk\87\Æ\Ì8\Ö׺õÞ\91§U\Ì\13°Y\99}\9c»\9b[\b\'\8e\ 6\80S(D9s#fDaK¶i\11\11\11\11\11\11\11\11\11\11\7fº\ÍI\Ü^\98vG­WÌ\93ø¼±\Å;V¹\bð#\82M¤;¬×\92m\14º\86\11\Æ+@\ÛE\89\88G\È\ fô\95\Øvc\Ég\Ê9h\é\Ûu]\87EÚ¶m#m«\91Gµi»\ 5Ϋ³R\Ëȳ*\9fa׬d\Ô]U\É\È\b`fE}\9491\r\90\98¢\É\ 2ì\8c\8fg³³×\94\90=)¼Õ¬ð×\98~$\8f³\ÊdAò÷\eòo\ e\10¿6\ 5\×\Û\f\Z½\8e\ 3\r#\ 3xb³\ëÔ¤\93\ 5\94\84¤\18\á´Í\91(\r}·\b\88\88\88\8a\ 2þµ^\è\ë\ 5 \ëwBµ\Ùò\89¸\Ç\Ø\19Ø\8eG\Ä\v,\8e4=\7f\15;\1e£¦k×µ\ÌÈ\88\7f\ågM\9b²@ûq*\13\ÉJ\13ûG\9b\0\ e}}è­\93ô¿ø¼\99\Ð^\8f\a\95¹OZm?c;WüW n,\92\Ö\æ\ËY\ã¯\Åd\8e6\Ñ\ÊLÁ¯\94,ì\96ûûjé­\9d\8aý\9e\îó\15vr\ê\8f\1c¤\93*\"\"\"\"\"\"\"\"\"\"*¡½U\9e=gõ\ f\Èe\Ç:\ê\953\eÃ\9d¹\88þD­\9a(¸\ÅN¿\ÉQ3\9aý\ÓTc\âClX\f\96(°v\ZÀ\ØÏ\91oq&N\Ë9\83\1c\18lh\ã\0½Û«\Ü\È~»öG\819\à\19¶\Î8{\98x\ç\92%Ç¢>#\Ú\ØU\éûmM\å\ÅDGºT!9\×5P¦T\924\99@\870\13K\12i1\10\æW¡qG#\ë\Ü\Ã\Æ\1cy\Êú\94¨ó5\8eIÒµ\8d\86DYB\9a\17\Õm4\Ð\îa7\12\83\8c\f\10f4EsZ\Ïb\8d\ís\18æ¹\98ô\ 4DDE\85\Ýü\ï_\ 6ø\ì\ë>ÿ\0\Ù~w½\Å}\ 6§Zfkº\ì&\8eVǽmò°\Ø\Úþ¥­Ö¾D\\Ë\9difx\91\Îw\9e<:\è\Å|\ÉÒ£\85\98\81\î\Ïmù#½\1d¢\æ\1e\Ór¦Y\1f\9d²mö(\ãL\936³U¥Ë¾\9a=Z \92\Z,b\ 5-pÁ\1f/\8f\12¾<ɹ\99d\Ê\èO\9a@3\15\94Á}2þ    ö^\Úr¾\9fÞ\9e\Ë\ë3j:\Í\Ä\Û\1c\1d\83\8d5KºòGÿ\0¶\ÝÚ©\ì\99W`FI\13J\í\17^\93\88öC4\'\ 4÷\16\83\81)\93c\Ô\Å\14}\9a\Î\Øñ\ãÄ\8e\b±@\18\Ñ#\ 4Q\ãF\8e&\ 6<x\ácD\10\0\"kF \88mh\Ä!µ¬c\Z\Ö1¸n1\85Ì\88\88\88\88\88\88\88\88\88\88\8bRþi<ok>N:=\È\\ j\ê÷r\8e¼#o<\1d±\Ë\a\Ú}g\91\ê\â\14p\8d\1c\98\Î\n\18ö\Ñ^Z\9bfEö\95>ªDª±\91\8c\9c_\95\8d\Ç;\Ï\11o\9b_\18òf±m¥\ï\Ú5\ä\ísk\Õ\î\ãþ=\9d5\Íqr\191Nƹ\â+3\9c4\ÑfE)\áO\88PN\81&L9\09:J´C\Ò7\äj§±\Ý\'?Mwm\8a|\Þf\êC\Ç[N;l\88l´\á+³\È\Ç\1f\ 2\8f\"\8d\Z)\83¨\ e\r\86°h\91\É*\Ä1k#X\Û\fX\9d\Zu\94º\11\11\11q\18Â\8e\"È\90Q\80\0\e\Ìs\99\10B\117/!JG\å¬\18\Æƹ\ï{Ý\86±¸Ë\9d\9cc\19ʨ»Ô\83\å7lò\17\1dÃ\8f\89Ѻ\Ý\Ö\r\9bb\ãn1\Ö\ØóÃ\87y³\Ó\Ì-N\ë¿]\×|F\197\a¸\8faEM$\ä´l*h²$R\Ï\f\r\86L\\Guo\×\Ó\Û\â^\Ç\Ê\aq\ë3¿SN\ÇW8(\95\Û\Ï5Z\92>\a\125\84/\áxª\f\19\ÈIc²<ß\99p(ñ-s\17_\8aPXÆ\84+¸V\ 3·\8fT\Õ5­\17[¤Ó´\êJ\ÝoW\Ö\ë£TQQTF\1c:\êº\ècÀ\ãÅ\8b\1cX\ÃX\Æ7\1e\îv}\ÈR9\æ+\ÞR=\î\ì\b\88\88\88\88\88\88\88\88\88\88\88¡+\ê\9aðo\9ez\Ôo<\8augO\9de\Î\ZMlVs\97\1d\êµÏ\95c\Ê\ZdB¿$Ü«\ë\84F\â~Û©E!¤Hl1>öþ¤y¦\8d\1eþhõºú\9a\ÜVux\Ý\ïo&ø\á\í÷\15ö\9f\8cM\92\9bR²þ\1fz\×r/¸;§\18\ßH\8a\r\ßT ÿ\02¿\1f\93:´-\99LRM\fX\Û\ruD«\ 1Ì®\f¸\12®\8e\ê\×f8\9f¸\\\a\Æ}\8e\á-\86>\Ë\Ç\\£¬\×l\94r\Ä\ì¶\\?Í\8e2Ȩ¸\84V\ 6mU\Íi_\98ö\15vQaYD&0\Ùp£\11\ßV2\ 1\11\11k\ã\Ê\ç=Xu\9f\1fsy\9e\8eÀU»V¡×®P>\99 ¸Ï³¶ù:\8d¬j\ 1·8k¾\ f\Ì\â0\8d\7f»\1c߯9\13ðo¯Þ\91y³fYL\97cc.Lû        òO6t\é§,©\93fJ+\Ï*\\¹G{\Ï\"L\83½\æ9\Ì÷\94\Å{\ÈG¹\î\Îsü\Ê\à_MwN(ú\87â\9f\81LÊ·A\ß;\vV\ eÀr<\99µ\84ª¼u\Æñ\ 6)j)/\"\98a6%j\94\ 1\83B/\È\13%2<V\nG³\Çõ\8f~h\88\88\88\88\88\88\88\88\88\88\88\8b\84Á\f \9a4\90\8aDi\ 2 N\ 3\r\85     \82Vde    \84L9\84\19\18\ç0\83{rdz9k±\9cg8UWú±º\rÁ\Ý5\ï.\8fÈ\9c\Z\n}j¯µ\Z¾\Ù\È{\87\1dSe\8d\8d¬\ï\147\151\ï/\Û\10n\Ã+\99»\97`m\8ea\88\ 2\19¦@\9bnbJ±µ°\92H®©­ú1;M\Ïq;}\Ë]Bf\Ç>Ó®\97\9c\'·òü­jx¤Ì\87ªò&½³i4õÓ¨fd\99\ 5C6:ý\86\ß6µ\8e\e\Ûa&´S\à~\19[x\ëK\'Q\11\16\84ýL4×\97\9e\eûX\n\a\1c\98Uºõ\Ì÷\Çó\9cQ\ÒÛ\8e\Êõ\85ø\ç\1e\Ñ\ÍU\ZTsg>\í\Ã\v\9c»\19§\Íz\a\13\ÑWm\1c§Æ\9a\Õ\ÄRN©Ø¹\ 3M¢´\84\"\90%\99]o±\Ö\×Í\8a3\ 5\ã0\89\"4\82\89\84\11\ 6Q¹øx\Þ\×c\ e\Åð\9cqU]G\Ç\Ú==D \×VV\ê:\ì(0@&\0QcG©\881\ 5¢f0\Öe\8d\Çõc\18ý¿\å\97g\å\9c\ç=\Ñ\11\11\11\11\11\11\11\11\11\11\164vO¸\Ý_\ê\ e\95k¿öG\9c8\ï\89\81\8d\Ç.ײ\ÖÀ±9d7ÿ\0\ 5\12\ 5;\8f\9b9\92\ì\n\áF\82 Ev$J\91\18\r~\1f Xt`{3\ë6\è7\19J=g[ø\87\97;6rV\È4-\80¬\'\ e\êÀ³k2\Øñ,\99»Q\17hú^|\à\8f,\rvK]\15¹\ÎH\19\ eÀ[ªwú®üºw\ fgf¥Ð¾\8dj1®\85aU\12Ö»_\Ó÷\î\Ç\1e W\854\Zr[\Ø\Ö\Ö\éuz¬yrÀr>÷fÀ\éX\18\93\ÊOÅ\8d\14ç\8d¹N\ 4\ f«\97\99ß®J\å]\9f£ýf\Ô6\90gù¹[.\8dIµoúTY1\8f\86\95\9an£qe\1eU\9cy8\b\8d\18»\84l\80O$\ÈÆ\94P\864\9f<±ô\99\7f\Þc\96góÿ\0\92?\"|\Ó\Ú\Î^¸ú\ 3saA¦\Ññ\í\ 4úÈ\8d\94\Êú8ð\9des+]¥­Ì\97\Ê\rf¤}~\ 1l\äN±\ÄHÄ\9f8r²\1e\ f¤3Ä\9c\14\íc\95¬$\ f8\Éeç\94·¨®\91\8c\7f|<!\Ù2!ûþýò,3ûþ±\8fe·~\83ø\9bè\97\8d\b[`º\8d\Ã#\Ñî·£G~ݹ_lû6óº^F\86\11\8a\rYö-®\Ò\Î\\JX.i\äç­\Ä*\èó,-%\ e>\re1\æ\Øò\"\"\Ã_\"\1c\17#³]\13\í\Ï\0B~Ga\Ë=|\å-6¬­n\1eð\Û\ÚjvM¨0Y\96\13\ f\90\e&E$f¹\99c\8e\Ñ\áþ\Í\Î]\8a:¶\Z\v\9dRþóV\Ø\ë¤\Ó\ì\Z\ÕÅ\95\ 5õL\Æ`s*\îiæ\9aºÒºS1\97a\92aM\8cx\Çf\1c\ì4¢~1\9c\1e\ë³ñ6\É\aM\å>4\Û\ìß\91Vê¼\81¦\ì\96\ 5h\Èg\ e\r\1e\Ç[g-ø\bXR\97,\ 4R;\ 3\10\88G\ç\1f\161\î\Î\e\9b\âxú\Ú%þ\85¤^À0\ä@º\Ô5«hR\ 4\ì8G\89cM\nds\rø\Îp\á\94&c\Ø\ìg8s]\8cû\ç\19\11\11\11\11\11\11\11\11\11\17\9fò\97*ñ·\b\è[/(ò\îñ­q\Ï\1d\éµr®¶\9d\Ënµ\8bK¯\ÑUB     $Ë\9dca-\ã\b\8e\"\9c¯\Îs\96\ 4D&qðcó\88    ùjõx\í¶\16\ 5\89\Z\8aª\1cû­j\7fg¶*\áN\9ba\1cqY\18w\\GLi\ e\ 3\n;\17\98\Õû&\Å\ 5õ\Ø\Å~\7f\1e\8fg©µ\8bh\18u\ëô\1d\ÌòW\ØØ´u\r\å\8e\Öv?\91dH\Ìv\Ø\ÛKÙ¶\19\11\9d<\Ò\Þ\Ç\Ù\ÞM\rF©ª@°¶p\â\ 4ó)5JRØ\82\ 4&BĨ\Ñ\ß:/\19^\8e®1\ÒE­r¿\91\Ý\åü\9f´ý\15öÁ\ë÷\1fÈ\93Q¡\Ñ\Ø5\á\95ø[\9e\Ó\î\Ûm\Å\Ñ$\ÆcI\ 6\18ª¨l L\95_oY#-S;\á^½pO[ôú\í\ 3\80ø\87\8e¸{Lª\8fø\90u\î<Ô©ujñGû\1co\81\19U\123\ä\ç%v_\92Jy\Ê\ç{e\Ï϶3\8fcDDDDETOª;ŵ\97Gû±m\Ø\Þ<\Ö%D\ëomï­¶ú\9b\0eƬ\Öy\9afOu\ÈZ\83\9c\Ðg\10GpC\13\1c\Ùó\'Ø\90\Û1Z8\Ð+\â\8f1}V\êúd{\ÛEÜ\9f\19\1c[©I°°\93\1d]\8d\13\82ù\17\17SO>\Öкü\b\Òõý\94\93\13ó-¿\99 \9f[*\\æ°¡\8f$\í¯<\éVQ\çe\92#DDDDDDDDD^3\Ø\1eÀq\'W8\83y\ç^qܪô^4\ã\Ú9\×\Û\15õ¡\98\Ì6<\18¥\93\88Uñ\Üö\96\Æ\Ún\0ñ@¯\8d\îy%þ\Ø`\ØR²¥¯6\9esù\Ï\Ê\Ç*\ÜkTv7|q\Ô\1dR\à\81\ã~ \8d5\àÿ\0\12\86¶k\ß_»r\'\Ð\Ð\æ\Úú\Ç\"\8df*\8995m!\Ã\v\13\æW\Ã<lSñeâ\83²>Vù\Ð\\S\Âñ\19¬i4N\ 4¾R\æ\8bú\Ést\Þ9¦&q\9f¶@£\96#®\ïd³?ùn»\16tS\Ì{\87\83K\86\Ã\Çym\94ñ»â¿©þ08z³\8c:ý¦C\91²>,\7fñ\Ï0\ì5\Õ\ç\ä¾F¶\13O\82\Ûl7B\ f\Î;L\é2~ª\8a\ÇF¨\80\ 22\ 5|HÕ± Ã\8b²4DDDDDX·Ü®\9fp\8fzú÷\È\1dm\ç\íZ\1eÍ¡\ïµ%\86\18-u\8e¿n,¶E>\ËE+\ e\1c\88\174vA\8be\ 2\\CÆ\92\191DPH\8eq\86\1dò\Û\á\ï±þ\'y\97:§$À\91¸ð¾\Ûa%¼I\Î4ðd\ãY\Ù\ã\ã\12d\87]¼6@ÀQ\îñ G,£T\99\15´8\Ò\ìi\ÜLÀ¼¯£\ë^\"|¤ò¿\8a.\Ô\Õs\9e\8e       \9b7\1e\ì\Ñ#j<\Ý\ÆC\9cH\Ñw½\173\99+\ç\1cO8«Ý´kGɬu\89V\18À\ÆSXW6e[m\8di\12\à>\9c÷/\80;\ÛÁ\9a\97`z\ç½U\î\Ú>\Ó\ 29\ÊØ\87\Æ-µ\Ë7\8f?\99¯\ìu\85h§T\\WIa\áË\85>4Y!\95\16Ls\842£J\8c\f¨DDDDDDDD\\2$\ 2(\r*Q\85\Z4a\12D\89\12\b0\80\0\b\ÜC\18\Æ#\9a1\bCk\9eB=\Íc\18\×9\Î\Ãq\9cª¥}K\9ee.»û\Ù;\9e·p\Î\Íi\eª=|\Ø\ìµ\ÜF\8cCD\87\Ê\\\95I/5÷\ÛE\80òÀ¾u\r\15\9c)\10u¡9¹\812HMv\Ò\ÜE\ 6¯g\eM\Þ8<wsÇ\93N\Ì\ê}p\à\è,\86ù\ä\15§ r\15\9cSH\Ö8\ÃG\ 1\9bü¶\Ót\Ñ\12;§\ÌhZPkú\à%Å\97°Zýq\9d2®¨\16÷\957\1eô_£|\a\ã߯:_]zû«C£\Öõ\9a\ØL½¿tH\ãØ·Í\90q\Ú\ËM»j\9a,d\93m­e\æD·5\å ¢fA\ 6\1c¹\Ï1\8d\98\88\88\88\88\88\88\88¼¿\97øW\89{\ 1¡\ßq\875ñÞ¥\Éü\7f³À\95U}©\îT\Ñ.ª,k\æ\8f\99\18\80\9478m\90/q\15Àx\88ñg#\Ëþ\ e\146û\ç\è\Ì\à^M·º\Þú\'\Í3úûa%§\9c\Þ!\ä\n\Ë\1dÿ\0\8f\äJdiFt*-\8c\97Qv}iövE\13F\édº¦¨\84\11B\8bR69Ò\85©\8e¹økõ*ø\8f\ß[\Ì=E\×õ\8d¼\ï1£\ß\è|k\ËZ®\ï¢\î±\n\È\ì$\8d£\8ewi\ÚT;\'\ 5±¢¶- \81\ai\0\ZXUò±\ 6M\9cCÉ¿©\1e\92\b\ÔZ§\90\13ü¹\Ä\18¥«¯\83ºs\'\12\ e\ïMmw\n0£]\Ú\ 3\8ba\16\Ïd\×\Ý2v\1f6%%}\Î\Û\1c\ 3\É\á\Z\â\'\Ò\13\17%yc\Ôe\ã7\81\æG\89Í·ý\93\âQL\91\98P\í7\î ö7]¥\9d;\ 1t\8c¬¶\9bÇ­\85o! a\n\æ\Õ\16k\ZÁ\e\äüdD\Ã}?¬þ}|Iö\Êõ\9a¿\14w\1f\8f\à\ìòl\eWY®ò\94-\8f\86®n\æf.f\95´p¹B\9fU%°c\ÅnK\"\\?¶#\Z\Ã\ã\as¡\Í\Äm°\êÛ®\9b¼Au\9e\93¶\ë;\85c\1c\Ö>\ÃV¾ª\Ø ±\ï\Ær\Æ:]L¹q\Ú\ça®\Ë[\92c.\Ã]\9cc>\Ù]\9d\11\11\11\11\11\11FS\Õ\1d\ä¿=\19\èm\87\ fñ\î\Âú®\7f\í«-¸\ßP%M\Îj¶mGBüG\7f\8f¹\n¹ð\ì+¯!º¶\19\ 3GS}JR\1e\9fiº¡t\81´2>\Æ\Õ\aQQk\7fkYCCYawywa\n¢\9a\9a¢\14\9b+[{[)\"\87]YY]\fF\99>\Â|\Ã\ 6,(QBY2¤\94@\0\9eWµ¹¸\ f\Ó\ï\â\8b\85\Ò\Ív>\Ó[S/³\\\ç\ 6»{ç\9dª$_rG<\97Ì\99©\è5sd\96L\Ö\Òi\Ô3\áÀ\90Áº¶%­\ë,/MEW>d\807|\88\88\88\88\88\88\88\88\88\8b\Ì9k\84ø{\9eµ)ú\176ñv\83\ËZU¤y\11,5nD\Ô\èöú)Q¥µ\8c\96\ 2\Ö\ÞÂ\9b\e\"\961\fR\99\81\á²\ 4\b\ØxýÛ\98²y\1fô\8ct£²±owþ\9aÏ\91\1ec\94G\ÌfµN\ 6\\p\rÓ±ü[?\rüyõÆ\97¨\95°k\äÄ®&\99}ER\Ë\vS\\]T\Ü\18Oa¡)»\87˯§Ë°v\1cg\1f\91ù3®w·\98\91k\10\ÚF\É:ó\82¹\96®,ºqX]\Ô@´\89\8dKlp\9dYO\ 2\ÂTú\b\e\8dEik\98fVW\\V\96t\Îü-z¨¸Û¸7ú¯Z»\Í_¬ð\7f?]\Z\ 6½£rMQe\87\8b¹Z\ì\á\b¢V\Ê\Ä\âÉ\91¥m\97\16\ e,\nÚ\99²¦\×O>jÁ\12\êu\9d\99\ãA\98°\8a)\ 2\11ÀQ\98\ 6\e\f\13\ 5\í \8a\"7\ f\19\ 6Fe\Ì \È\Ça\Ì{s\96¹¹Ã\9b\9c\ã8\Ê\äDDDDDU\14ú ;\87s\Ú\Ï+\9c»®6c\89¡u\92¶¯\81t8Ñ­¤Î¨\93\8a\9c\97eÚ¶(\Õ\æc\ 3Qcm°l\'«µ\b2gJƹ\ 2A\8a<\å\90adÿ\0¤¯\Ç`»SÞ\99\9d \ä\ZY2x\97¨°\19²Ò¸ñ\9aú\9d\8f\9a-2\bº\Å1]&,¸3\85­\ÔL\9b±\ÚV\99\83.\1cj9\"8\9f\86|\í7DDDDDDDDDDE\87=\ä\è\9f\\¼\86pFÁÀ\1d\93\Ñ\ëö\Í^É\87\97¯\Üd\ 3fË¢ì\8e\8cX\Ñ6\9dFݸlÊ\9bh­&Z÷E8\9b,\1e\á6}ð\12\86\9f\ß+^2y\9f\Åwjv.\0\äø\96\16Ú\85\98\8d´p¿(~        \ 3E\É\Ü|i.\f{(\13X&\Â}\å\11ó\8a\8d¶¤Y\fº»&\ 6D\88\10¡Z\Õý\ÓHô­yÀعö¾\1f\8e\Î\Ön\ä¼\åmB\8aLοò\ e\Í//º\ä\1d\1fl\Í/`»\9b#\18·\Ûõ¸\ïkkd\1dÏ»\Ú*þ\83\98v\97\106+\99S\80DDDDE\ç<Á²\eN\â^RÛ£\1dѤj¼u»ì\80\92\Çe\8e\8ej=f\Î\ÐFkñ\9ce\8e\13\ã4\8dv3\8c·-÷\Æq\ì¨}\ä-\ëa\å\rÿ\0x佺H\æm\9c\87¸l\Û\Ö\Ï0Cp\85/a\Ûn¦\ß\ÝI\18\9cò¸c=\95\84\92°n!\1cÆ¿\r\Ëß\9c|³m\9f¦;¦\9a\ÇRüTp¶\ÉZI²6\î\ÔE\87\Ù\rüó\7f O\1d¦\ßO_\ 2\86¨p\ä\10\98\84\ÊMV®\9e³#\8fôG\92H\ï±$P\ØL\9cCHU\11\11\11\11\11\11\11\11\11\11\11i;\ÏG\8c\Ýo\É_C¹\eM®ª¬\1f:ñ]e\97\'pf\Îh\ãdð\íz\Ýd\édÔ\8d\9cѨ¶ø\ßmU®G\12\Â@\84g\12º.\'=\84U\nqW%òoYy·I\å=,öz_+p¯ Vl\95C°\r\95\\ê\8d§P¸adR\ß\×0Õ¶L\8eY\11$Rl\Ôr\v\15ò\ë\ÍcO9­\19\Î5w7CûAK\Üþ\9eõß³Ô­\1cvs\17\15j\e\8d­f\ f\f²(ö\v:x¦¾¦\9e8%4xs Yº@\Ï      \85#c\ã,h\Êadg.[\"\"\"\"-nù\82\ä9üO\âû½\1c\89V\ïk-S®|\83e_\8fµÁû&ÿ\0\eø\ÑC\935¯p\Ús\9d\81sð\Ç\ç\18&sñwþ\9c\Ò÷Áº(9C\9aø\7f\8d%2C\ãr\')qþ\8b!\91\1f\91\Êx6ݲ¢\80Í\8cL1ùd\8c\8eÁ\Ø\vð\Çe\84\Ë]ñw·¶oyд\Ê>:\Òu=\vZ\87\16\ 5\ 6\9d®\Ôku1\"F\14@\n\15D\10B\ e[\1c?\ì\Æ\â´?q}²ì¼¤{\Þ÷½\Î{»j\"\"\"\"\"\"\"\"\"\"\"*t=Eý<¦é\87\95\î\Ã\éºÁ\ÆýO\97d\Ã\ìn¹\r\99\92GT\83\97\ç\\[]Ö\98ò^ì\98\8cÛ¡lr\9a\Ø\â\8b\ 6\10%\86²\ 4\82\17\92k^\8d\Þd\Æý\â\çm\âü\Ç8\ßÁ\1d\8a\Þõ\ï¸ùn[$[\Ô\Z~Ec¢|Jüb\18\89~a|H0\9bó\9b9\Ùk\Â\à\11\Ò\ÕDDDDZ©ó\87¥\Ë\ß|Jw\ç]­\8ai¶\ä\ë\9e÷>\9e,|û\18öU°q4\11Ç\8c¹\83ve4$\8b\9c\e?[p|¿9c\98\Ò2«ÿ\0\ 6\1cw\ 3\95¼¶tcG²\87\16t[.bÅ\97\Ñ0_lf\É\Õõ=\9bk\83(\8dø\138\Ì\19Ô\91§\f­c\9e\ 2\Ça\87\8f\98Ú®\96DDDDDDDDDDDDUÀú\Ûø\ÓZ \ì\çJùJ¾¬\0\Ú9#\88yC^\Ùn0!6M\94\1e:Ù´\çk°Jv±¥$j¦\îV¥\8e\12¸\8d\ 1­&\10yn$¹¸\Ù\'¢A¥\ÇJû\8a÷78\ 3»EJÑ¿\Ûôâ·\89õl\99¸Ï·\ï,cÁ\9c\ã\ß>\ß<~±\ïû\9a\Ò\"\"\"\"\Æ\Þ\ãj Ýº\9d\1dZO\Ç!¶\á.J\13\9añ\à­&A©Z\Ë\18\9c<\å¸\Î\fH\í\16]ûø|þ\7f\aü~\ e©·\ÓM\0\Ö\1enú\'\81\0\86dM¯\95\ç\És\ 6\â28bð\a+½§3±\8c\àCü\8c\80-!2\Öý\å\bñ\9c\90\8ck®$DDDDDDDDDDDDPMõÀ\ë5\î\á\î\84\î?O½¨y+\995\9f¿8n~\15òu}F\Ó\éc¾\1f\92b|É\8c\93\âÿ\0¨Y\Ã1\91\å\Ù\Í\1fF®·\ 6§\Æ\ eùw\Z\10c\ËÚ»#»Î±\9214d°5m.½H\ 3\È#[\87\18\81\89\0\11\18÷\å\Îhc\88Xv\18Ƶ²\áDDDD^[\ÎQq;\859\86\v²\æ¶g\16ò\fW9¾ÿ\0,bF¥n\1c\å¾ß¿\960ÿ\0|{c\ß\ß\Û\Ûöª¥ô\9eid\Ûü\Ëp\ì±dmv\91\Æ<ú9\äù\7fH\âk\f¤.\19\96µ\ÙÁ\n;÷\ 1\9f¬5\Ù/Á\Îk\1c\çb\Ú\ÄDDDDDDDDDDDE  \8f[\9dn\v\ÓÞ\97\Ü}~ù\83\Ù]ª·\îöÿ\0/ù^/¶\95õü¿¾>\ß\áp\ïoõú}ÿ\0\Ý\Â\Ï\ fH\95~!øiФ`\7f\f\Ûs\Ï<Xe\ßû\Ù\1e\ e¯\ìþ\ØþØ­À¿\×ü¯\ïþ\98\93º\"\"\"\"\ê\Û\Ì\11Y\é[\85iÿ\0ȱն\b&ÿ\0ò\97S.9?þ     \95\\G¥+\82\ë5\8f4\9d\Ç-?\Ø\n~\ 4Ò¹Ã\8e*!·ú\82\Êû>Y\ 6¿\ 1\Ïq2\ãý\91a\é\í\0½ß\9fv\È7\Ûò~\19\9cY@\88\88\88\88\88\88\88\88\88\88\88\88¢¯\ë\ 3Ñ\83±x\9d\9b·\9a\e$;\8f\8c§E\92\ f/\81\'c\Ø!\ë\9fhð\ìý\8d\É\âÌ\97\19\es\ì\Ò\äosp\\a\Ù3\éu\Ñgh\1e\18z\Å\ 2Àoa¶\e\1e\82\ç³\á\93A\Ý÷«\8d\96¼\98\Çû\Ìl+\0\ 5\8fÿ\0}\82nT\83\11\11\11\17ø \Æa\90E\e\n\"±\Ã(\88Ö¼d\eÛ\96¼dc±\96½\8fnr\×5\Ø\Ë\\\Ü\ç\19\Æq\9c\áA7\Ó\17A\1e·Ì\9f\9clG\Æ\ 6*\ eG\ä\8a\b\Âo¶\Z\Ø\æ\í?#üq\8cc\ßô\ÆÒ\89­ö϶1\9cÿ\0\7f|)Ú¢\"\"\"\"\"\"\"\"\"\"\"(\àú°\ 1\83xJ\ìi2\Ügñ¹\ 3®\ç\Æs\8f\Ûr\îp\Ò#|±ÿ\0\fûH\Ë}ÿ\0\à\ì\ãýVsx7«\rW\88o\1d\10\86,\Ê\ê\Ï\16Z\e#c\e\93\ZÒ\84\13²R\ç\r\ÆHL°\Ãg\Í\Þ\îø1\8cò\Ö7\Ûk\b\88\88\88\88¡\Ñ\à[C¦\Ðü\ãú\84i©\0xð+ù\86\9aXG$\8f1²]Ë\969kl²3\88Owe²,e\Z@\ÚÏ\80\ 6\"±\80\18ÀÁ\r\93\17DDDDDDDDDDDDQ\âõO\Ñ\Ø\ßøL\í<jÀfA\à_ðe\áÇ\875¾\Õ\Ô\\Ù¢\ÚÚ\9f9{\9a\ßhµ±eJ\Ë}ò\çý\1f\ 1µ\Äs\e\9c\ãð±\18\91<Ix\ã\11\1dòsºwÁ\12q\9fø\ ef\85O0Mÿ\0 Gc?\é[:DDDDE¡\Ï\Z\Ýn\'\14ù(ò\ëÌ\92ª[\1eG=se%¤;?\ÆÀ\9f\"\8f]§«\87\16\v\8f\86\ã\ï\10®e\ì6C\Æ]\9c0Ö²²\Ö\ã\ä\ç?|h\88\88\88\88\88\88\88\88\88\88\88\8bWþf8>ϱ\9e6;I\Ãõ\ 5dk\r\Ã@\97_\16a\ 2\ÙC\81(\8fh\àO|W\Z;¥6%\89!\9dÀ\11\86G\á\99ø\948\ÆL<\98\è\æ\8aþ1\é\ÇXxù\ád|iü\1d\Æ\Ô\"\bþ¿¬q`jõÂ\89\86\àyø1¹\89\80»\ 3ǶE\8cýnk^\×7\19P\88\88\88\88\8b\áT\ë44s®¬ªk#Á\9d±Llû¹!û>\Ë\19\8cÁ0Ó\9f\æ÷7\ä\Ü\14\9e\ß^\18\ß\ëwôû¯º\88\88\88\88\88\88\88\88\88\88\88\88º¾\ç¨\Óo\9a½Î¡°\8c¦¦½\8b\88v\ 2\ 3\Ú2¼80\8f\8c1\ï\19Z\Üý\81f}ò7c\Û\19ý\7f®>\95\r4\1dr\8e\9b^¬k\Ù[CS]M^\Â;\ f# \Õ\Ã\f\18\8d{\Ú\Ö5\ÏÀ\0<9\Økp\çc9\Ãq\8f\Ö>²\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"ÿ\Ù',4,0,'','','',''),(77,4,22,'9305bf01bd73e275','11253258925bf01bd73be2b220663529','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','15820583805bf00e7fd7909940374120-4.jpg?ts=1542459007','image/jpeg',80,80,2356,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v     \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0*\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b \n\11\12\13\14\16!#\15\"\18BCÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91ù\ãõ1VüwZfº\9b\bJ®\Ø\í¨!¶\9d\85m³e\ÙMg Ü\91\13\ 4\a\14|\\qb½tÙ\99\11ö$\15[Q\àÁ\Õ\Û|\'¬\8fJ\18¢+\18\Å_\8aÎ\9fy®ód\à]±î§\91~\Ü\èN\9e\ÊM>et-e°¦µM§s¨2T9¸\Õ4ZO\ë4\Z] W\9a~?;\ 6J³&\Ñ&\ eðu\êôç´\84´f÷}v\ë\Õ+¬\9a\Ö3V\Ð\ì;j\Ó\v\1c\ç\ä*stn]\9d¼.\87\98±\Ç\19\â       ¶\í;E¦\\V\1eÀ\Èu0°\ÏEW\ 3}o¹\e\f\16H{\v÷^8\ã\8e9\13{\á\Ù\ 4õ\ 3¦\1d¢\ìòE\1có´v\8eØ»\ e\n4\Ì+\"J\Ú`kg¿R\88+\b\ÊUøò\Öl\Äƽ\9c)\1eÍ\94¬üÑ\8c|±Po\8bÞ©\Û<°yCÓº\7fhX\',\98\Ý;Jõ»\13t0\×U?-M\85̦\É\ÛR\84JcûX\9e·\8e\19ðqòXJ¿\1e\Ãc\8f#-ýh\Êqt\15F£X U+TjL\ 4MV\9dN\81\89«\Õ+0A1\e        ^®À\80\Ä\\4,Lx\Èlp£c#\Å\1c0\85a\bi\81\Ùm´\'      N1\È9\äo\Æö\87òa¢¤t\Æ\è2\ëX\90\10Igµ\î\Æ\×Ö¹\êå\92\81d\91dl72\88ø\é! m\Ñß\92\ 4z\äk6\à%b\ f`ofS\1f \91dÄ­\v\ 4òe\é\ç\ïýã­\97m©rÙ\9aÿ\0Ll@\ë{?D[\ìÓ³Ú«h\ëb\10\f\94E¯]\ae|õ\ë\é;e\1eB.\ÉO³W\90\ 1 <T|}\98Ixñ$ \9fµ\ßLm\9a^û\Ô:»xk\89\ 5J\ëýÁ¯©\Û6\95\"\â\12Ó¦U¯5øû,\13ï²\87\1dK\ 4®6H\7f\1f\ e/,?ö3\95+(\Îy\é|q\Ç1\8b\8bVØ·?\8a>þkÚ\90\84H\Ù$úͲ&a\ãDK\8b.P\Ê\\Vn\è\8a\r¶³\85¼\\\9akª\0Vq\9c\á\â\bm¥%I^S\9d\ 4ý\19¯Dµ\å\8aþ\83\Ö\Ú\ f#¦;q\984º¶\13ö\9c\9d\99¤\b)±\Ò\æp\ê\Ê\ÄS\aº\94\8f\î\æ\ 4hÕ¯\1fJ\1c\Î-&\ã\95Mz¼g\é\97\ f2\12\90T\ 6\98\90´V:ó£©\9b\fx\81\Òù¥lb\9cµXc\Ã!\ 2\8d\96ý\ eѯ\ÃB2\9c\95\86\90\188Gô6\9eX\ã\â\ãE\Üz\Ïã\9f¥:\1fb6H÷\íg\ÖýY^ºÇ\98¼­ø[^*\à\9d`¯)Y\Â\7fÒ¹*aPL\ã\Û\1f\16#\9bN?\8crzq\Ç\1c\â}\86Ie\á\88i·\Ç!§\18}\87\90\97Yy\97Q\96\ÝiÖ\97\85!\Æ\ÜB\94\87\10´\å+Nr\95c8\Îq\Ê\Ä{\8dÕ½\8d\é óA¥{³®ª²¶>\92^v}\8ev\8c¸D\7fXz\êò$\8cN\ß\ëÄ\82\Þs\è\Z\ßI«\Ø$M\×k\92y\"X\"À«\Í$\97\ e\8a³\v\11en \ÛZ\ï}j\Ý\7fºu%¢:\ë¬ö\8dN\12\ïFµE)j\ 6r·a\ 5\99\bÃ\9aC\Èl\81\ÜX\ï%\ 4\86SL\98  Hx3\18\1ei\11\Ûȧi\b\éGF»IÚ #\ 5\99\9b\Òzv\Ùo«\Ä\È%\Õ\Æ\É\\\Ò&\"\éAJ¡\87\19}Q$\Û$a\9a\94\Ã.´÷øõ\13õ8\87>*Æ\8cÞ\96~\86\ f\äc´ý\8aò½\ÝB\Ë\Ý\16m]·cÈ¢~Ú\94\98\r£²S\è\Å\î\7fcO\n\9c4\13¹\Ö\11E\Õܦ@ \\\Â\ 1)d\0\á\ 4\aôøv\15cG\1cq\Ï\ 5\ì\çft§O4nÁ\ìganñ\Úÿ\0TkHe\ÌY\'\Ïù:óªS\88\Z6\12\12\91\93vIù\'\86\88¯AG¶\éòÒ¥\8c\18Í©n{\ã\0]_\ì\1f\95ÿ\04\84\ãv\ëk9~,<l\1e{\ØÖ¶\18\9a\85R÷\Ý>\ËWX%c\æÁ\r-}\8b°\Ñ5EJM¦²ðV\88ªÁ\ä\f\90\ 5_\ã2\äø¹d\94ñcÓ\8d\81[¬W;\1dL¹w/\152\r\90\89\90\îV\Ñ\Ø\1d\8f@\ÓRL i\19\Ø\ê\9eÄ\9f\93\×5©c\ 6m#8õ:\95\\a\91~B\880\ã-m*tQh\94\9d_M¬k­oR­Ð¨4¨Xú\ÝB\97O\85\8f®\Õ\ë\15ø¡\Ð,l,\f\14H\â\Æ\ÅF\ 23hdP\82\19\91\Ùm8J\11\8csÇ»y\×\n·oú»¿:½t1ø\Ê\Þö\ÕW-jtȬ\à\82\1e²\Ã\12\fe\8c1\Ô\ã( \Ê\ìªÁ\9c\10w\1dm·É\8f\15\86Ö¬óO¯N\Ƴør\ß]\91ñ!\äJ,} j\ÙûQ\8d­\Ö=³g\Ê\â´öó\98L\14u*\É\15H\ØÒ\8d\ 3\ 3)û$-~\933H\1dd²k\Ò\19±\Ôf\86\87¹°\15x\Í\ä\12¤­8RU\85%XÂ\92¤\ç\19\9c{\ã8\Î=ñ\9cg\1f\Î3\8f\ã8\ç\Ï\1csQ?-\94Ù¯*~j:M\âJP\ÉDuO@kw»½Û\98\88Ò\88 \9b\8f\ÂD\Èz\Í^W(q¥8Ê\83Mv¢\ 1\82£\87\Ü\ÖY!ó\93\"\87pm¶a!!\ëP\Ñ5\Ê\ìTt\15~\ 20\bX8Hp\87\8d\89\87\87\8b\15 c\"¢\ã\83m\91\0\8e\8f  \86D\b1ZhqFe¶\19m\r¡)\Ç\Ùñ\Ç?!v\×\Ô-\99\ 6\ícc\Ò*\e\ 2¶úþ\×\ë\×j\Ô5®\r\ç0Û\8da\ÇbgB<\a\17\86\9du¿\9a\Çʾ·\1cG¿\Åj\Æ`·d|h\é]\ÍXùi\ë.\Å\évâ\80\87l\rsºú\9bn\9c\Óòµ2#Ò\97!E°\Ñ*2Pú\ëgS\Ç!\81Z\91¥\Þë\92±\æ\Å4¸ð\n\86uL\9c4Añ!\ß\Î\Älݯ\Ùÿ\0\e\Ýýj½ÿ\0;zHd)\12û\ 6©\Z\Ü%[²\9a\91?K\Þ0P\83²8\912E\8f#\0\å¬\0\ 4\8f\8dmv\9aó¢\ÇF\9eô\Ô4>u¸\æ\ 3úÉ­G\13\Ô7\å\ 3e:Û¥\18\ïK:@\0\85¯\å\94E\alv\ä\ 1\91m{ÿ\0®\11 F \16G\Û\1fú²þqÿ\0|s>\1cq\Ç\1cs\ 2²\Z\Ìx\ßRõceE\'\ 1.\Ï\á²\Ü-¡,!M¦`º\çnjQq¤\9a¤º\96\ß|peA\19µ)\95:\96\ 1\19\1f?­¶ð\Þz¸\ä\ eÕºý0\9eH;\99°S\1c\86Qy\ê\9fC#ñ&\96\14\9c\98]Wa÷¬SF[ÿ\0RP\ë¢\bl2\96\1dul²ð\ÙV\eK­\áSÇ\8e8\ã\8e@\Ùz:W\äò\81²\15\10¬©\8e\87\í\ÊSs\Øo?\ 4~G`t¤\ã\91+w\1f\14\18l\Æ\ÛW¶U\86\ÝS~ÿ\0\17\97\1c\àH£ \97\8c@\ì$²\19\1cg\ÊKM¤\97\11d¸+\ f?\84\á\Ç\19\19\vpv\96¬¡\95\94B\9bJTó\99W?\1cq\Ç\1c\ëd1T[g\ävrsC:\ee\å´\ä\84\nû¬¼ð\èw\Û\æ\96]xv\1cq¼gâµ²Ò\95\8c\å \Î;<ÿ\Ù',5,0,'','','',''),(78,4,22,'9305bf01bd73e275','11253258925bf01bd73be2b220663529','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','15820583805bf00e7fd7909940374120-4.jpg?ts=1542459007','image/jpeg',48,48,1488,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b        \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 1\ 5\0\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0  \11\12\n\13\15\16\"1\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿\ì.\é\1eY\Ö\Óû\8e\190\9c\ f\ÆK\ËŤ*X2 \7f|\Ë\Çf\Î\ä\8c\12Yys\82G!µ+\15\92\91c\91·Tଲ´\Û>¾\90\99\ 1³I¦\Ü\Õ]U¢\ 1n\å_Pf¿\89\Ø-5ô\e\84a.-¸\é\é\145\87\12Û®6B]e½W\87\87\91\1fò\1e\ì]\81\Ä~©:\'jjy3 6e½5\9d-M´G>\à\92u3v¬ªk²\Öx\93\Zøx\19¸J§\8d\82=\85!ð&\9b\8f1\87\ey\86Ö\99\íø\9cz\ì \è>\10®ö\íª\b\19¾\8f\ì<\Ø\ì¯]e\Æhû\rWQ\85k\93\86¬Ube\88ýb\86\1e\Þ\ì\17óû#\Ì:Ó³\ 4J\Ã\r\'\923\ 2\1e[dÿ\0 »\'°\ÞR\çÒ½\84ð·RZi¡sÓµ¢w?9\ÎÔ¨·\1dgt¡\ÊØ£«\Ä[@\1eZ¸\í\84Ih3¦Az\Î&f\9d\fº\Æ\ f\92\8dr\fø\959!@½Ew\ã~\Ìx\'Ju\89UÀ\ê\16\ÛX³U}\91Y\8dy\ç\âb¶5\ZX\8aÝ­P\8b\'\ä¦à¥\8d\r3Ð\82\96\ 5\83\15* D\96k\ã¬\Ç\ég\87\92\×\Ü÷\v\Ê{\16õ\É\Ñ\1c\ËUX­\ìy\88\10\9f\81C#gk©\16-\958r\8b\Ï\ÊB\Z\ÌTs\95bNs\nh&&\Ü)䩦V\9c¦\7f\8d\ fJC\í\ fZ\Ô\ e\88MC¢xbR\É\Î[óWM°¸\ë5FR¿m²»P8Ø¢s\83\e\12\91\85p\97\ZCY±\ÃXÀk\í\800¥r¿É\9f¦-\Âó\96¡õ\9b¥`\139\Ð>\Ðö\1c.\8f«\9e\1e\16¡I\8c¹\Ò     ·LÉ»ôyܪaù\bºò\7fHgp\1c)vI\7fº\v\8c\ 5\92«Ï¬þ\17§ú\à\â­\'\È\ÔùuY\7f\88\"I·Û\96Â\85þa°\ìò\ 4دVF\ 4Z\96\àQò\16)\ 3q\f\ 3®:ð\10¬\Ç\ 4ó\Ï::\Ý[\ã\ç*\Þ{\9a\87κog\ï}¡-\88M{¨\èöM\81o\93ú)\×\a\83¬Å\91(b\ 5a\1f+(\â\90>\ 4\8f\11¼e\Ò\Î|q\9aN\\u8̶\ã­Y\Ò\Ý\Å\ 5    \Øý\Ëq\Ø\Zò\91³\Ç\16\é\Ï|+®\í\ÓZþ\87­5<\Ò1\'G\96\è9\Z\99±\96½½·\ì\95÷¢flpV    \Ö(\15GJ~\11ªN\rÉ\89\16¦k\8d!¦ôù\1635^¬ k³®&7#o\91§T\á+òv\É\16\9c)Ö¤,òQ\81\ etùͺi\8e$\Éb\f\'\ e\16Jð\ç\Ù÷r©\á\ìÿ\0\Öü¯m\15\Ì[»O]àµ\9fYñ>\à\8d\Ü\Ú\ 2\Õp\8f6S_N¾\83á\89´k\8d\90\14N?|MN\Þ4\18,ª^   J\97\821\84\16 \å´\éb>\Äl¾\Ä{\9bhU­\83Õ\9a\92Û­)jd\ 1vvÓ¢\97\1f¶56§\95)öBT\9d¼ø5\ 3±£5\ê\8cwõ\\\Ø&kFk\Õ\È\Ü\âBòMXV\Þ}\ e\\d\9ct\Ôl|\Ì9\âJD\Ë\ 2$\9c\\\9cy\r\16\ 4\8cq\ì6PG\ 4[\v[\ 4\88Xδ@\Ä2µ´ó.!\ÆÔ¤+\19\Ì\éö\á®\ß\Û|\v·µ\8bH%\æow>p«\Ê\n+yq\Ã\ëòý=¦\84²Æ¸\9cc?õd«\îI\80\8c¡°\È}k\ÆP\95c4xa\87\fv\ 4\11\96\86\14VZ\18a\ØBZdq\ØBZe\96[F0\86\Úi´¥\r¡8\ÂP\84\á)\Æ1\8cc\Ïo\ f3öÚ´\ 5\æ«e¤\Ú\âÃ\9c«\\+ó5{$,\88\95\1f/\ 3?\1cDT\ÄY¼\95²@gÇ\96@¤°\êTÛ¬º¶Ö\9c¥YÇ\88Ǫj\Ô\í/\×\7f)R\ìfH\1d)M\Öm\Ô\7fZW.\äö\ãk\13\ÓppA?\97Ô·\7fó`À\8e\8ek\nV~¬\n\ÚSýp\9f\1dM\81G\8aصrj\93Ku¸òe+R\Ë[\18N]Á5k4=ª?\ë÷\ÆSñ\99\bQp¼ÿ\0¸FU\94ÿ\0o\8f6~\1e\1e\1ebµ\Õ\Z/[S!)\10®¾ô\\\v\e\84\19{-\95 \\\82\92¼\ãýú8ZÐ\9cÿ\0¹BSó\9c\ç\ç>\7fÿ\Ù',6,0,'','','',''),(79,3,23,'9305bf01bd94ffec','13931663105bf01bd94d90e243464200','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','12242958235bf00e8006f72987476580-4.jpg?ts=1542459008','image/jpeg',300,300,11008,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b        \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 1\ 2\ 3\ 5     \ 1\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b \n\11\12\13\14!\15\"1\163A#BQ\81\82\17\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/r9¸f3\9cDëº\9e±®\8fð±g\ë]L\ã\Íϵ[d_\å\"¾þW\äñ¿\19Ķ¬\94Hx\8c\ë»x\12.¯+\'=­\91\ 2ûY©´­\97\18f0Hð\96\11\åF÷\98}`\1e\ 2\Æø<|\Þ\r\á\íRľ\Õ\15\94\ 1v=¢¢/\ÄyÀ\8b¸\ÛZ\83\13d´\í{\Û.%\ 5F2\1c²9#\93\181\ f©\1e\\ó?\åC\9b¤\96VõÞ\8e\Â\r\å\95ùMÆ\95¼M\ãG\a\Û9À£\ eO\1d·W\9aøag\Ä,\8f\"Q\Ø\á\8cx7\Ú\æa\Ë\Ìõ\ eòù6\ä-\96§Nл\85\Þ\Ý\ãq¾\90ø\Ôz¶¡\Ø.À\ì\Û-Ì¡\80²\8b\1e¦\8e\9bn\9bic!±£\9eI\ 5\ e)\88\Ð\0¦sp1½Ø\95×\8f\ e\98ú°9J\92£h\87\Û^I\ê\×\e\\Î\8b\996\1d\83\Úuý«x\95L\è¸8®«x\êú\83\99\90\94\87üV\Ñm©Ø\82P¦bH£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8b\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)\ 1T\É2\Þ1\12CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ø\êy\ë¶WPKüg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ek¾º\ê8­5¼ù\Îo\Æ#\àÁº$\Z\Í;\Õ\äù¾G7\9fñ¯j¹\8a\ïs\8b\ e\ÆE\8e±\Çõ\Ï5/\19h\î>e{\aR\ÓA °¡b;\'N\f\8ben\18\ÓeEÅ\96c\19\â\Î\ 5¢\90¯\88\8fN\ßm|\9e˪ä\9d\80\13ºý\Õl\96\14¢òþ\ÑQ\92Zo\91[ &\9dU\Æt\ 6(¤J,\8a¼û\Ç\Û,\ã>\8a1l©\çÂ\83²ÁþDp\ì¯ñÿ\0\â+¢þ6õ\18\94\9dv\áº\0\î/\ 4\\l<½¶B\87±ò\8e\Ë2>\\|\Zf\×>9lb\Ã\f\ãÎ\93UY\fÃ\8dL9Æ\85\a-\8bñf6h\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88¢#\êAõ\ 2\13¡t6=:\êm¥|þ\Ø\ï\14$ÿ\0\16\82-}\9dw\ 1\ë6AÀ\Û9\Ð\1f\99 ±\ä+P\94\8d\Ö\é§\0\95µo\ 4«\8d\98\a\8b\ 6\1e·µ\Ö+µ\í{6÷³_n{\9dõ®Ñ¶m\16³o6-\8aòi\ì­\î­\ì\8eù3¬lgIy\ f&T\93\91\ä)Hü\ç9϶=\9b\8cc\1f\ 3\Û?¯\×÷ý\ãÿ\0\9c{\ç\1f¯ù\ã8ÿ\0\ï\vñO\a\Ó\Ï\é\9e\ eÿ\0\ 3M\î÷\91-\'.\Ôg\8e=ÿ\0\fõ¯e\86`\9a\â7\Ï/\83¸r\ÍL \8d\8f-­d\9am:G³\ãDx\ä\Þ\r·\'\Ä\rj\Â\Z:*mb\9e»_\×j RQ\ÔE\14\ZÊ\9aÈ¢\85\ 2\ 4@\ã\â0E\8a\ 60B\e\7fyökqòv\\÷g.s\9d\9f¬\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88µ\ 3\æ\çÉ\86»\âó£[\×3\ ePK\Ì;§\ß\Ç\\\ 3®=\8d).¹&\Þ\11\9f\ZyÀù\10ðú]V\eK°l/\14À\Í\15\\B¾´r§þ<CS{\É\\\95¾ó\16ý¶r\8f(mw\e\Ç \ïWs6-³k¿\95\99v·Vó\Éó<\99\ 4ö`\Ä67\f\8f\ e\14Q\82\rt\10Ư¯\8d\16\fXñ\Å\Ñ\×\îs\9cÿ\0|ÿ\0§·ü°¦\89\éjðt\Î\Ë\ï\15þ@ûQ¦}ü\ f\Ç7\"7\ 1\é×±2øü\9d\ÈT²\ÆW\îVUòÃ\80\17P\Õ$4\7fÁ\17.\96û;\àH\99\88µÃ®£·\9deh\0\b \f\14\820G\8e\ 1° \8e\0³\ 3\10B!µ£\10\84\83\e\Z\Ö1\8d\ÃZ\Ü7\18\Â\æDX{\Ý>øõ\7f\Ç\Ç\16F\æ^\Öò38\ãB\9bp:\186,¤»Ø§\ØZ\90.> \Ö\Ò\ë\Ðlm\ì\å}mùb%|93\1c̸Ì\8eð\ 2IC\1f\Înõ\89ø·\ã\È\í7\13Uóo`\8d\î6\12&½¢\Ùññpò\11\Ís\ÄNI\87A\1c\91\ÄÏ\81\18\123\8c½\82\88G1¸&,\Äõºu\ 5ò°\Éý,\ì\8ch_/lÈ\89·q\84\ÙXg¾?«\10\Íe^,»\Û\ß?\ f\Î\Æ=ñ\8c|ÿ\0~ø\Úw\ 1ú£¼:s|\Êj;>\Æ\Èá­\96\Ò+\8f&\1f/hÛ¶¥®U\95¹\Æ?\Z^û.\81º\83I\9c¼L\ÆKf\f9\Ï!\19ò\8b\1cò\99¿\8dKrÔ·\Ú8\9b6\91³P\í\Úôö±ð\îµ\ËX75\87\Ã\Â#á¬\99\0\Ç\aÙ\81\1cDx\\ü\14m#>ln]\8c\88\88\88\88\88\88\88\88\88\88\88¸\ÈA\84d1\88Á\bLy\nR?\f\18\Æ\Ìe\Ï!\1e\ì\á¬c\e\8c¹\ïvp\Ö7\19\Îs\8cc9U\ez\9aü\87\Ùw\8b\Èþÿ\0¥k\e#,ø\'«E\93\Ã|s\Zª\Ï3h.ö:¹%/!n\í\ 3¡E,k9·\å~ªX¦\91`\18ñõ6L\84øD¸±\89\88\ê\"\Ø÷\8a/\1fÛ\87\92¾\íñ\1f\19>\16©mhí\93\96\91_ :\8f\19\ë­üý\86|\87\8c\à,s[å\91µ\9a\É1ÿ\0$𬮣ٺ\14\98UópÛ¤ø\87\89´\ e\b\ã\r\13\86ø«[¯\Ô8\ç\8du\9a½CMÖª£\82%}=\15<vÆ\87\ e4h\Ã\fp±­n^\æ\0!\ e\b÷ýA\13>,Ç£¢\"ñ\1e}\ë_\0ö\9fD\91\Æ=\8d\áþ?\æ­\ 2L\80\Ì&§Èº\Ýv\ÉO\89\91\È3G\98\18ó\Â\\Æ\97\1c\ 4\98òc8G\ 4¨ñ¤\88\8c<`\10pHòù\é\14n\9fM·ö\a\Æ=\85͵mh\rwyÕ­ºÑ\96\96\83\0\ã\ró\9dÅ\9b\85\86b\9d\ 3£J\99\8d{j\97bs\16Í\91\á\\VV\Õü\v\ 3\9ak\8dr\â\×^\Øj¬¨¯è¬§S^Q\ÜÁ\95WqMqW(°l\ê­k\'\b\13k¬«¦\80ð\çA\98\0Ê\89(%\8f C(\Þ\Ì|Õ±Þ\83y]\ï\a\8dͲ\1d\ßZy\92ö£Qu\9c{\r\8b\88v9\126\ e+\Ú\Ø\12H)cYj²\8f\81Ö¾Y¤fD\Éú\é\é¬\'H\8f\ fù)3¢\ÆlWZ#\á·Î\87\\üµhÆ©«\fn&\ìÖ§S\1e\7f ðe½¤s\È(\9a\11b\Ça\ã\Ù\Å#$\íZ\9cinpó)\ÑÁg\16\9e\f2¾Th;\ÊDDDDDDDDDDE®¯,\9d¹¯\è\ç\8f^\Ïö:XbÊ°\Ôx\ÞÖ§U\812fk£Yî»\8e\e©\ê5\8f\9e\10\90\Éa{o\n$S\8a4Dzi£{D\92ß\90\9dI$¹r§Ê\93:t\99\13gM\90is&K1$Ê\97*I\1ci\12d\È3\9ec\È9\9eò\98\Å{\ÈR=\Ï{\9c\çg9þtV|ú?ü~?¯\1d-\Û;\8fºUÏ\81\Èý¾°\89\9dtS\ãÈ\89ø|\'¦É\90\Í8\91\86I2bL\8f³\Ûʸ\ÚAo\bpI*\14ø\15\11\Ìúh¦Ä¿\Ñ\11\11\14(}O¾\ 6\ê¹\ãD\Úü\85u7Mü~r\ã\Ê<Xso\1c\êu\99yykK«ø\à\Û-U$\ 6\áó·­^\e\88fÿ\0\e\18\17\Õ\0\Í;\ãZþ5\16(+eE\ï=e\ì¯0u\v\9c8û°¼\13´\ÉÔ¹\'\8d\ïa\Ý\ÓN\e\äf\ 5\80\9cd\99C}\124\98\84²\×\î@<õ\82\Ù1\8cð?\ï\85*\15\80\8d\8c>ÿ\0q¯\92\8e\9eqwg8ðø\8f/`ª\15G!j\æ\Î\19c§r5(\Ù\a\97\19\ 1[\1c7!\99\9aÉ\98\ 6 \ÙB\Ã%UÈ\9d\ 1Á\98m\82¢\"\"\"\"\"\"\"\"\"(\88ú\Êù\Êw\1ex\Ù\ã\Π\8aß²7a9\Û_¤²n>¼81x\à\f\äQJË\9cß³\"dú\88q^1»\18q&\ 4\8f\1ceµz¢õ\Î\0\â¹\\\ë\Ï\1c\'\Â0ffºo1ò\ç\eñ\\;\f1¥\Ì \\\85¹Sj1\æ`n\ËZL\Å-»\ f\86;8kòÏ\8es\8ce^\83À\9cC­p\a\bñ\1f\a\é\Õð*µ~$\ã\9d;\8f(\àU\83\11«£W\êt0iB\ØQðÁ´\11\ßøy \ÂÁ\8d£kðÖ\8cm\Æ\18\ß[DDD\\\12¢Æ\9d\ZD)±Á.\1c°\Z,¸\92\829\11¥F\907\bñ\ä\0­x\8c\ 3     \ï\11\82V8e\e\9cÇ·-\Îq\9a\81½G\9e9\a\ã\ÏȦ\ë\1fNªm\7f\bö4\16\1c\Ý\Ä\ì\0\Þ\È5\ f¸¸\92\r\çO\ 1\ f,¦;\è67b\Ó\Ü0\ëj`AÙ«©*cf5S\9c´\ e\8ac\9e\8e\ eê³\88;«È\9d@\Ú.L\1dg³ú\91n4h\13\'eµ\91¹3\8f+\ç[\Î\15]\7f\Ë\ä[Ý£S\8e\æ\É(FLf¯QÁ%}a\86\ e\Í\ÄDDDDDDDDDE\ 4¿[þ\Ä\Üq\ fCu,1ø~y#\97v,\93å\9c\8c\8df±¬\Ö5\99o\ÇÙ¯\ e^÷a\Ù~rö\9d\Ø\Ã[ð\Î_]\Ú)\13úZ8\ 3R\ç\ß0\\,\ÍÀY\93\v\87t\Ý÷\9cª¢<#\91\12^ä\82®¾\98S\ã\e\19\19\â²N\Çù-k¿Ê\96\b²>$úr\"[¢\88\88\88\88¢C\ë\12\ê\í\8f2x\ä\Óy·Y¤\87*û­|\ÃOµ\ì6!­\ 4\8b¢q\î\ËOq©\ÝW2n\1e)`«\81ioU³\Ì\Î\7f&(EK#\Þ;\v\aW*-\8fø\82\æ\É]xòq\ÒnU\85\1c\92¤\ÕsÎ¥¬\8cBú¾M\Ç%:O\19\12C°l\àn\fAn\ f\95!\8eùe\à      \18\11\Îk\1dv\Ê\"\"\"\"\"\"\"\"\"\"\83/­÷^    :ÿ\0\Ñ=­±±ù\11y\8b\955\ã\Ëþ¬\çé\9f¥RYE\8d\9f\ÞF\Üeõ³\v\8fl5\ïö\Ï\Ë.ÀÛ\86WB\8aZ~\8dmnlÿ\0*[\9e\ÐÆ\8f5º\ïV9*¶S²\ìý­\9f±m\Z\13\ëð\Æ|rÜ\8dÑ©->\×ü\Ú湡kXü\11\1d¤¨\88\88\88\8bR^xj\âZø{ò\12)a\11q\13­Û½¤w\11\8cs\81.°Q\æ\0Á\Ëñ\9f¬¸È\9c?\9b2\×\å\84 ñ\9fb;\19¥\Ñ\16eø\ë\Ò6nD\ï§N5=B´Ö·³;)\Ãv\"\88\a\ 5¤mv»½\Òl·³¿Û\90Lp\ê\èj,­\f6¹\Æ(a¼Q\84i\ f\10Iyj\"\"\"\"\"\"\"\"\"\"\8aG¬+\84 r\'\8a±ò´\91d³:ý\Í<}²Ö¹\84;\1d\1c»\í\Ü\1e4\93 \8c\17°\Ï\e\10ö3\Ç ¤\å\Ãl\891NÁ\äÁ\19\ 5Uò)rz46\81\×ù>\ä=I\â\Î_²õ\8f\11ÿ\0£\â7k\e.¤\'\a9\Î~xq\87°<\8d\Ã[\96\11\Ýó\Ës\86\14DDDDZBõ\18òö¯\Ä^\1d{¢ý\96ÀPI\È\Üq\9e)\×\Ú÷»%\95°oVpjk£\ 4\fa\nl\1c¯ür9­h£4ø\91 £\bÝ\9cÓ\88\8a\94^«\í\\ùå\8b\8d9^\f\ 3¿Jꦿ²ò®\Ûk\87\Æ\Ì8\Ö׺õÞ\91§U\Ì\13°Y\99}\9c»\9b[\b\'\8e\ 6\80S(D9s#fDaK¶i\11\11\11\11\11\11\11\11\11\11\7fº\ÍI\Ü^\98vG­WÌ\93ø¼±\Å;V¹\bð#\82M¤;¬×\92m\14º\86\11\Æ+@\ÛE\89\88G\È\ fô\95\Øvc\Ég\Ê9h\é\Ûu]\87EÚ¶m#m«\91Gµi»\ 5Ϋ³R\Ëȳ*\9fa׬d\Ô]U\É\È\b`fE}\9491\r\90\98¢\É\ 2ì\8c\8fg³³×\94\90=)¼Õ¬ð×\98~$\8f³\ÊdAò÷\eòo\ e\10¿6\ 5\×\Û\f\Z½\8e\ 3\r#\ 3xb³\ëÔ¤\93\ 5\94\84¤\18\á´Í\91(\r}·\b\88\88\88\8a\ 2þµ^\è\ë\ 5 \ëwBµ\Ùò\89¸\Ç\Ø\19Ø\8eG\Ä\v,\8e4=\7f\15;\1e£¦k×µ\ÌÈ\88\7f\ågM\9b²@ûq*\13\ÉJ\13ûG\9b\0\ e}}è­\93ô¿ø¼\99\Ð^\8f\a\95¹OZm?c;WüW n,\92\Ö\æ\ËY\ã¯\Åd\8e6\Ñ\ÊLÁ¯\94,ì\96ûûjé­\9d\8aý\9e\îó\15vr\ê\8f\1c¤\93*\"\"\"\"\"\"\"\"\"\"*¡½U\9e=gõ\ f\Èe\Ç:\ê\953\eÃ\9d¹\88þD­\9a(¸\ÅN¿\ÉQ3\9aý\ÓTc\âClX\f\96(°v\ZÀ\ØÏ\91oq&N\Ë9\83\1c\18lh\ã\0½Û«\Ü\È~»öG\819\à\19¶\Î8{\98x\ç\92%Ç¢>#\Ú\ØU\éûmM\å\ÅDGºT!9\×5P¦T\924\99@\870\13K\12i1\10\æW¡qG#\ë\Ü\Ã\Æ\1cy\Êú\94¨ó5\8eIÒµ\8d\86DYB\9a\17\Õm4\Ð\îa7\12\83\8c\f\10f4EsZ\Ïb\8d\ís\18æ¹\98ô\ 4DDE\85\Ýü\ï_\ 6ø\ì\ë>ÿ\0\Ù~w½\Å}\ 6§Zfkº\ì&\8eVǽmò°\Ø\Úþ¥­Ö¾D\\Ë\9difx\91\Îw\9e<:\è\Å|\ÉÒ£\85\98\81\î\Ïmù#½\1d¢\æ\1e\Ór¦Y\1f\9d²mö(\ãL\936³U¥Ë¾\9a=Z \92\Z,b\ 5-pÁ\1f/\8f\12¾<ɹ\99d\Ê\èO\9a@3\15\94Á}2þ    ö^\Úr¾\9fÞ\9e\Ë\ë3j:\Í\Ä\Û\1c\1d\83\8d5KºòGÿ\0¶\ÝÚ©\ì\99W`FI\13J\í\17^\93\88öC4\'\ 4÷\16\83\81)\93c\Ô\Å\14}\9a\Î\Øñ\ãÄ\8e\b±@\18\Ñ#\ 4Q\ãF\8e&\ 6<x\ácD\10\0\"kF \88mh\Ä!µ¬c\Z\Ö1¸n1\85Ì\88\88\88\88\88\88\88\88\88\88\8bRþi<ok>N:=\È\\ j\ê÷r\8e¼#o<\1d±\Ë\a\Ú}g\91\ê\â\14p\8d\1c\98\Î\n\18ö\Ñ^Z\9bfEö\95>ªDª±\91\8c\9c_\95\8d\Ç;\Ï\11o\9b_\18òf±m¥\ï\Ú5\ä\ísk\Õ\î\ãþ=\9d5\Íqr\191Nƹ\â+3\9c4\ÑfE)\áO\88PN\81&L9\09:J´C\Ò7\äj§±\Ý\'?Mwm\8a|\Þf\êC\Ç[N;l\88l´\á+³\È\Ç\1f\ 2\8f\"\8d\Z)\83¨\ e\r\86°h\91\É*\Ä1k#X\Û\fX\9d\Zu\94º\11\11\11q\18Â\8e\"È\90Q\80\0\e\Ìs\99\10B\117/!JG\å¬\18\Æƹ\ï{Ý\86±¸Ë\9d\9cc\19ʨ»Ô\83\å7lò\17\1dÃ\8f\89Ѻ\Ý\Ö\r\9bb\ãn1\Ö\ØóÃ\87y³\Ó\Ì-N\ë¿]\×|F\197\a¸\8faEM$\ä´l*h²$R\Ï\f\r\86L\\Guo\×\Ó\Û\â^\Ç\Ê\aq\ë3¿SN\ÇW8(\95\Û\Ï5Z\92>\a\125\84/\áxª\f\19\ÈIc²<ß\99p(ñ-s\17_\8aPXÆ\84+¸V\ 3·\8fT\Õ5­\17[¤Ó´\êJ\ÝoW\Ö\ë£TQQTF\1c:\êº\ècÀ\ãÅ\8b\1cX\ÃX\Æ7\1e\îv}\ÈR9\æ+\ÞR=\î\ì\b\88\88\88\88\88\88\88\88\88\88\88¡+\ê\9aðo\9ez\Ôo<\8augO\9de\Î\ZMlVs\97\1d\êµÏ\95c\Ê\ZdB¿$Ü«\ë\84F\â~Û©E!¤Hl1>öþ¤y¦\8d\1eþhõºú\9a\ÜVux\Ý\ïo&ø\á\í÷\15ö\9f\8cM\92\9bR²þ\1fz\×r/¸;§\18\ßH\8a\r\ßT ÿ\02¿\1f\93:´-\99LRM\fX\Û\ruD«\ 1Ì®\f¸\12®\8e\ê\×f8\9f¸\\\a\Æ}\8e\á-\86>\Ë\Ç\\£¬\×l\94r\Ä\ì¶\\?Í\8e2Ȩ¸\84V\ 6mU\Íi_\98ö\15vQaYD&0\Ùp£\11\ßV2\ 1\11\11k\ã\Ê\ç=Xu\9f\1fsy\9e\8eÀU»V¡×®P>\99 ¸Ï³¶ù:\8d¬j\ 1·8k¾\ f\Ì\â0\8d\7f»\1c߯9\13ðo¯Þ\91y³fYL\97cc.Lû        òO6t\é§,©\93fJ+\Ï*\\¹G{\Ï\"L\83½\æ9\Ì÷\94\Å{\ÈG¹\î\Îsü\Ê\à_MwN(ú\87â\9f\81LÊ·A\ß;\vV\ eÀr<\99µ\84ª¼u\Æñ\ 6)j)/\"\98a6%j\94\ 1\83B/\È\13%2<V\nG³\Çõ\8f~h\88\88\88\88\88\88\88\88\88\88\88\8b\84Á\f \9a4\90\8aDi\ 2 N\ 3\r\85     \82Vde    \84L9\84\19\18\ç0\83{rdz9k±\9cg8UWú±º\rÁ\Ý5\ï.\8fÈ\9c\Z\n}j¯µ\Z¾\Ù\È{\87\1dSe\8d\8d¬\ï\147\151\ï/\Û\10n\Ã+\99»\97`m\8ea\88\ 2\19¦@\9bnbJ±µ°\92H®©­ú1;M\Ïq;}\Ë]Bf\Ç>Ó®\97\9c\'·òü­jx¤Ì\87ªò&½³i4õÓ¨fd\99\ 5C6:ý\86\ß6µ\8e\e\Ûa&´S\à~\19[x\ëK\'Q\11\16\84ýL4×\97\9e\eûX\n\a\1c\98Uºõ\Ì÷\Çó\9cQ\ÒÛ\8e\Êõ\85ø\ç\1e\Ñ\ÍU\ZTsg>\í\Ã\v\9c»\19§\Íz\a\13\ÑWm\1c§Æ\9a\Õ\ÄRN©Ø¹\ 3M¢´\84\"\90%\99]o±\Ö\×Í\8a3\ 5\ã0\89\"4\82\89\84\11\ 6Q¹øx\Þ\×c\ e\Åð\9cqU]G\Ç\Ú==D \×VV\ê:\ì(0@&\0QcG©\881\ 5¢f0\Öe\8d\Çõc\18ý¿\å\97g\å\9c\ç=\Ñ\11\11\11\11\11\11\11\11\11\11\164vO¸\Ý_\ê\ e\95k¿öG\9c8\ï\89\81\8d\Ç.ײ\ÖÀ±9d7ÿ\0\ 5\12\ 5;\8f\9b9\92\ì\n\áF\82 Ev$J\91\18\r~\1f Xt`{3\ë6\è7\19J=g[ø\87\97;6rV\È4-\80¬\'\ e\êÀ³k2\Øñ,\99»Q\17hú^|\à\8f,\rvK]\15¹\ÎH\19\ eÀ[ªwú®üºw\ fgf¥Ð¾\8dj1®\85aU\12Ö»_\Ó÷\î\Ç\1e W\854\Zr[\Ø\Ö\Ö\éuz¬yrÀr>÷fÀ\éX\18\93\ÊOÅ\8d\14ç\8d¹N\ 4\ f«\97\99ß®J\å]\9f£ýf\Ô6\90gù¹[.\8dIµoúTY1\8f\86\95\9an£qe\1eU\9cy8\b\8d\18»\84l\80O$\ÈÆ\94P\864\9f<±ô\99\7f\Þc\96góÿ\0\92?\"|\Ó\Ú\Î^¸ú\ 3saA¦\Ññ\í\ 4úÈ\8d\94\Êú8ð\9des+]¥­Ì\97\Ê\rf¤}~\ 1l\äN±\ÄHÄ\9f8r²\1e\ f¤3Ä\9c\14\íc\95¬$\ f8\Éeç\94·¨®\91\8c\7f|<!\Ù2!ûþýò,3ûþ±\8fe·~\83ø\9bè\97\8d\b[`º\8d\Ã#\Ñî·£G~ݹ_lû6óº^F\86\11\8a\rYö-®\Ò\Î\\JX.i\äç­\Ä*\èó,-%\ e>\re1\æ\Øò\"\"\Ã_\"\1c\17#³]\13\í\Ï\0B~Ga\Ë=|\å-6¬­n\1eð\Û\ÚjvM¨0Y\96\13\ f\90\e&E$f¹\99c\8e\Ñ\áþ\Í\Î]\8a:¶\Z\v\9dRþóV\Ø\ë¤\Ó\ì\Z\ÕÅ\95\ 5õL\Æ`s*\îiæ\9aºÒºS1\97a\92aM\8cx\Çf\1c\ì4¢~1\9c\1e\ë³ñ6\É\aM\å>4\Û\ìß\91Vê¼\81¦\ì\96\ 5h\Èg\ e\r\1e\Ç[g-ø\bXR\97,\ 4R;\ 3\10\88G\ç\1f\161\î\Î\e\9b\âxú\Ú%þ\85¤^À0\ä@º\Ô5«hR\ 4\ì8G\89cM\nds\rø\Îp\á\94&c\Ø\ìg8s]\8cû\ç\19\11\11\11\11\11\11\11\11\11\17\9fò\97*ñ·\b\è[/(ò\îñ­q\Ï\1d\éµr®¶\9d\Ënµ\8bK¯\ÑUB     $Ë\9dca-\ã\b\8e\"\9c¯\Îs\96\ 4D&qðcó\88    ùjõx\í¶\16\ 5\89\Z\8aª\1cû­j\7fg¶*\áN\9ba\1cqY\18w\\GLi\ e\ 3\n;\17\98\Õû&\Å\ 5õ\Ø\Å~\7f\1e\8fg©µ\8bh\18u\ëô\1d\ÌòW\ØØ´u\r\å\8e\Öv?\91dH\Ìv\Ø\ÛKÙ¶\19\11\9d<\Ò\Þ\Ç\Ù\ÞM\rF©ª@°¶p\â\ 4ó)5JRØ\82\ 4&BĨ\Ñ\ß:/\19^\8e®1\ÒE­r¿\91\Ý\åü\9f´ý\15öÁ\ë÷\1fÈ\93Q¡\Ñ\Ø5\á\95ø[\9e\Ó\î\Ûm\Å\Ñ$\ÆcI\ 6\18ª¨l L\95_oY#-S;\á^½pO[ôú\í\ 3\80ø\87\8e¸{Lª\8fø\90u\î<Ô©ujñGû\1co\81\19U\123\ä\ç%v_\92Jy\Ê\ç{e\Ï϶3\8fcDDDDETOª;ŵ\97Gû±m\Ø\Þ<\Ö%D\ëomï­¶ú\9b\0eƬ\Öy\9afOu\ÈZ\83\9c\Ðg\10GpC\13\1c\Ùó\'Ø\90\Û1Z8\Ð+\â\8f1}V\êúd{\ÛEÜ\9f\19\1c[©I°°\93\1d]\8d\13\82ù\17\17SO>\Öкü\b\Òõý\94\93\13ó-¿\99 \9f[*\\æ°¡\8f$\í¯<\éVQ\çe\92#DDDDDDDDD^3\Ø\1eÀq\'W8\83y\ç^qܪô^4\ã\Ú9\×\Û\15õ¡\98\Ì6<\18¥\93\88Uñ\Üö\96\Æ\Ún\0ñ@¯\8d\îy%þ\Ø`\ØR²¥¯6\9esù\Ï\Ê\Ç*\ÜkTv7|q\Ô\1dR\à\81\ã~ \8d5\àÿ\0\12\86¶k\ß_»r\'\Ð\Ð\æ\Úú\Ç\"\8df*\8995m!\Ã\v\13\æW\Ã<lSñeâ\83²>Vù\Ð\\S\Âñ\19¬i4N\ 4¾R\æ\8bú\Ést\Þ9¦&q\9f¶@£\96#®\ïd³?ùn»\16tS\Ì{\87\83K\86\Ã\Çym\94ñ»â¿©þ08z³\8c:ý¦C\91²>,\7fñ\Ï0\ì5\Õ\ç\ä¾F¶\13O\82\Ûl7B\ f\Î;L\é2~ª\8a\ÇF¨\80\ 22\ 5|HÕ± Ã\8b²4DDDDDX·Ü®\9fp\8fzú÷\È\1dm\ç\íZ\1eÍ¡\ïµ%\86\18-u\8e¿n,¶E>\ËE+\ e\1c\88\174vA\8be\ 2\\CÆ\92\191DPH\8eq\86\1dò\Û\á\ï±þ\'y\97:§$À\91¸ð¾\Ûa%¼I\Î4ðd\ãY\Ù\ã\ã\12d\87]¼6@ÀQ\îñ G,£T\99\15´8\Ò\ìi\ÜLÀ¼¯£\ë^\"|¤ò¿\8a.\Ô\Õs\9e\8e       \9b7\1e\ì\Ñ#j<\Ý\ÆC\9cH\Ñw½\173\99+\ç\1cO8«Ý´kGɬu\89V\18À\ÆSXW6e[m\8di\12\à>\9c÷/\80;\ÛÁ\9a\97`z\ç½U\î\Ú>\Ó\ 29\ÊØ\87\Æ-µ\Ë7\8f?\99¯\ìu\85h§T\\WIa\áË\85>4Y!\95\16Ls\842£J\8c\f¨DDDDDDDD\\2$\ 2(\r*Q\85\Z4a\12D\89\12\b0\80\0\b\ÜC\18\Æ#\9a1\bCk\9eB=\Íc\18\×9\Î\Ãq\9cª¥}K\9ee.»û\Ù;\9e·p\Î\Íi\eª=|\Ø\ìµ\ÜF\8cCD\87\Ê\\\95I/5÷\ÛE\80òÀ¾u\r\15\9c)\10u¡9¹\812HMv\Ò\ÜE\ 6¯g\eM\Þ8<wsÇ\93N\Ì\ê}p\à\è,\86ù\ä\15§ r\15\9cSH\Ö8\ÃG\ 1\9bü¶\Ót\Ñ\12;§\ÌhZPkú\à%Å\97°Zýq\9d2®¨\16÷\957\1eô_£|\a\ã߯:_]zû«C£\Öõ\9a\ØL½¿tH\ãØ·Í\90q\Ú\ËM»j\9a,d\93m­e\æD·5\å ¢fA\ 6\1c¹\Ï1\8d\98\88\88\88\88\88\88\88¼¿\97øW\89{\ 1¡\ßq\875ñÞ¥\Éü\7f³À\95U}©\îT\Ñ.ª,k\æ\8f\99\18\80\9478m\90/q\15Àx\88ñg#\Ëþ\ e\146û\ç\è\Ì\à^M·º\Þú\'\Í3úûa%§\9c\Þ!\ä\n\Ë\1dÿ\0\8f\äJdiFt*-\8c\97Qv}iövE\13F\édº¦¨\84\11B\8bR69Ò\85©\8e¹økõ*ø\8f\ß[\Ì=E\×õ\8d¼\ï1£\ß\è|k\ËZ®\ï¢\î±\n\È\ì$\8d£\8ewi\ÚT;\'\ 5±¢¶- \81\ai\0\ZXUò±\ 6M\9cCÉ¿©\1e\92\b\ÔZ§\90\13ü¹\Ä\18¥«¯\83ºs\'\12\ e\ïMmw\n0£]\Ú\ 3\8ba\16\Ïd\×\Ý2v\1f6%%}\Î\Û\1c\ 3\É\á\Z\â\'\Ò\13\17%yc\Ôe\ã7\81\æG\89Í·ý\93\âQL\91\98P\í7\î ö7]¥\9d;\ 1t\8c¬¶\9bÇ­\85o! a\n\æ\Õ\16k\ZÁ\e\äüdD\Ã}?¬þ}|Iö\Êõ\9a¿\14w\1f\8f\à\ìòl\eWY®ò\94-\8f\86®n\æf.f\95´p¹B\9fU%°c\ÅnK\"\\?¶#\Z\Ã\ã\as¡\Í\Äm°\êÛ®\9b¼Au\9e\93¶\ë;\85c\1c\Ö>\ÃV¾ª\Ø ±\ï\Ær\Æ:]L¹q\Ú\ça®\Ë[\92c.\Ã]\9cc>\Ù]\9d\11\11\11\11\11\11FS\Õ\1d\ä¿=\19\èm\87\ fñ\î\Âú®\7f\í«-¸\ßP%M\Îj¶mGBüG\7f\8f¹\n¹ð\ì+¯!º¶\19\ 3GS}JR\1e\9fiº¡t\81´2>\Æ\Õ\aQQk\7fkYCCYawywa\n¢\9a\9a¢\14\9b+[{[)\"\87]YY]\fF\99>\Â|\Ã\ 6,(QBY2¤\94@\0\9eWµ¹¸\ f\Ó\ï\â\8b\85\Ò\Ív>\Ó[S/³\\\ç\ 6»{ç\9dª$_rG<\97Ì\99©\è5sd\96L\Ö\Òi\Ô3\áÀ\90Áº¶%­\ë,/MEW>d\807|\88\88\88\88\88\88\88\88\88\8b\Ì9k\84ø{\9eµ)ú\176ñv\83\ËZU¤y\11,5nD\Ô\èöú)Q¥µ\8c\96\ 2\Ö\ÞÂ\9b\e\"\961\fR\99\81\á²\ 4\b\ØxýÛ\98²y\1fô\8ct£²±owþ\9aÏ\91\1ec\94G\ÌfµN\ 6\\p\rÓ±ü[?\rüyõÆ\97¨\95°k\äÄ®&\99}ER\Ë\vS\\]T\Ü\18Oa¡)»\87˯§Ë°v\1cg\1f\91ù3®w·\98\91k\10\ÚF\É:ó\82¹\96®,ºqX]\Ô@´\89\8dKlp\9dYO\ 2\ÂTú\b\e\8dEik\98fVW\\V\96t\Îü-z¨¸Û¸7ú¯Z»\Í_¬ð\7f?]\Z\ 6½£rMQe\87\8b¹Z\ì\á\b¢V\Ê\Ä\âÉ\91¥m\97\16\ e,\nÚ\99²¦\×O>jÁ\12\êu\9d\99\ãA\98°\8a)\ 2\11ÀQ\98\ 6\e\f\13\ 5\í \8a\"7\ f\19\ 6Fe\Ì \È\Ça\Ì{s\96¹¹Ã\9b\9c\ã8\Ê\äDDDDDU\14ú ;\87s\Ú\Ï+\9c»®6c\89¡u\92¶¯\81t8Ñ­¤Î¨\93\8a\9c\97eÚ¶(\Õ\æc\ 3Qcm°l\'«µ\b2gJƹ\ 2A\8a<\å\90adÿ\0¤¯\Ç`»SÞ\99\9d \ä\ZY2x\97¨°\19²Ò¸ñ\9aú\9d\8f\9a-2\bº\Å1]&,¸3\85­\ÔL\9b±\ÚV\99\83.\1cj9\"8\9f\86|\í7DDDDDDDDDDE\87=\ä\è\9f\\¼\86pFÁÀ\1d\93\Ñ\ëö\Í^É\87\97¯\Üd\ 3fË¢ì\8e\8cX\Ñ6\9dFݸlÊ\9bh­&Z÷E8\9b,\1e\á6}ð\12\86\9f\ß+^2y\9f\Åwjv.\0\äø\96\16Ú\85\98\8d´p¿(~        \ 3E\É\Ü|i.\f{(\13X&\Â}\å\11ó\8a\8d¶¤Y\fº»&\ 6D\88\10¡Z\Õý\ÓHô­yÀعö¾\1f\8e\Î\Ön\ä¼\åmB\8aLοò\ e\Í//º\ä\1d\1fl\Í/`»\9b#\18·\Ûõ¸\ïkkd\1dÏ»\Ú*þ\83\98v\97\106+\99S\80DDDDE\ç<Á²\eN\â^RÛ£\1dѤj¼u»ì\80\92\Çe\8e\8ej=f\Î\ÐFkñ\9ce\8e\13\ã4\8dv3\8c·-÷\Æq\ì¨}\ä-\ëa\å\rÿ\0x佺H\æm\9c\87¸l\Û\Ö\Ï0Cp\85/a\Ûn¦\ß\ÝI\18\9cò¸c=\95\84\92°n!\1cÆ¿\r\Ëß\9c|³m\9f¦;¦\9a\ÇRüTp¶\ÉZI²6\î\ÔE\87\Ù\rüó\7f O\1d¦\ßO_\ 2\86¨p\ä\10\98\84\ÊMV®\9e³#\8fôG\92H\ï±$P\ØL\9cCHU\11\11\11\11\11\11\11\11\11\11\11i;\ÏG\8c\Ýo\É_C¹\eM®ª¬\1f:ñ]e\97\'pf\Îh\ãdð\íz\Ýd\édÔ\8d\9cѨ¶ø\ßmU®G\12\Â@\84g\12º.\'=\84U\nqW%òoYy·I\å=,öz_+p¯ Vl\95C°\r\95\\ê\8d§P¸adR\ß\×0Õ¶L\8eY\11$Rl\Ôr\v\15ò\ë\ÍcO9­\19\Î5w7CûAK\Üþ\9eõß³Ô­\1cvs\17\15j\e\8d­f\ f\f²(ö\v:x¦¾¦\9e8%4xs Yº@\Ï      \85#c\ã,h\Êadg.[\"\"\"\"-nù\82\ä9üO\âû½\1c\89V\ïk-S®|\83e_\8fµÁû&ÿ\0\eø\ÑC\935¯p\Ús\9d\81sð\Ç\ç\18&sñwþ\9c\Ò÷Áº(9C\9aø\7f\8d%2C\ãr\')qþ\8b!\91\1f\91\Êx6ݲ¢\80Í\8cL1ùd\8c\8eÁ\Ø\vð\Çe\84\Ë]ñw·¶oyд\Ê>:\Òu=\vZ\87\16\ 5\ 6\9d®\Ôku1\"F\14@\n\15D\10B\ e[\1c?\ì\Æ\â´?q}²ì¼¤{\Þ÷½\Î{»j\"\"\"\"\"\"\"\"\"\"\"*t=Eý<¦é\87\95\î\Ã\éºÁ\ÆýO\97d\Ã\ìn¹\r\99\92GT\83\97\ç\\[]Ö\98ò^ì\98\8cÛ¡lr\9a\Ø\â\8b\ 6\10%\86²\ 4\82\17\92k^\8d\Þd\Æý\â\çm\âü\Ç8\ßÁ\1d\8a\Þõ\ï¸ùn[$[\Ô\Z~Ec¢|Jüb\18\89~a|H0\9bó\9b9\Ùk\Â\à\11\Ò\ÕDDDDZ©ó\87¥\Ë\ß|Jw\ç]­\8ai¶\ä\ë\9e÷>\9e,|û\18öU°q4\11Ç\8c¹\83ve4$\8b\9c\e?[p|¿9c\98\Ò2«ÿ\0\ 6\1cw\ 3\95¼¶tcG²\87\16t[.bÅ\97\Ñ0_lf\É\Õõ=\9bk\83(\8dø\138\Ì\19Ô\91§\f­c\9e\ 2\Ça\87\8f\98Ú®\96DDDDDDDDDDDDUÀú\Ûø\ÓZ \ì\çJùJ¾¬\0\Ú9#\88yC^\Ùn0!6M\94\1e:Ù´\çk°Jv±¥$j¦\îV¥\8e\12¸\8d\ 1­&\10yn$¹¸\Ù\'¢A¥\ÇJû\8a÷78\ 3»EJÑ¿\Ûôâ·\89õl\99¸Ï·\ï,cÁ\9c\ã\ß>\ß<~±\ïû\9a\Ò\"\"\"\"\Æ\Þ\ãj Ýº\9d\1dZO\Ç!¶\á.J\13\9añ\à­&A©Z\Ë\18\9c<\å¸\Î\fH\í\16]ûø|þ\7f\aü~\ e©·\ÓM\0\Ö\1enú\'\81\0\86dM¯\95\ç\És\ 6\â28bð\a+½§3±\8c\àCü\8c\80-!2\Öý\å\bñ\9c\90\8ck®$DDDDDDDDDDDDPMõÀ\ë5\î\á\î\84\î?O½¨y+\995\9f¿8n~\15òu}F\Ó\éc¾\1f\92b|É\8c\93\âÿ\0¨Y\Ã1\91\å\Ù\Í\1fF®·\ 6§\Æ\ eùw\Z\10c\ËÚ»#»Î±\9214d°5m.½H\ 3\È#[\87\18\81\89\0\11\18÷\å\Îhc\88Xv\18Ƶ²\áDDDD^[\ÎQq;\859\86\v²\æ¶g\16ò\fW9¾ÿ\0,bF¥n\1c\å¾ß¿\960ÿ\0|{c\ß\ß\Û\Ûöª¥ô\9eid\Ûü\Ëp\ì±dmv\91\Æ<ú9\äù\7fH\âk\f¤.\19\96µ\ÙÁ\n;÷\ 1\9f¬5\Ù/Á\Îk\1c\çb\Ú\ÄDDDDDDDDDDDE  \8f[\9dn\v\ÓÞ\97\Ü}~ù\83\Ù]ª·\îöÿ\0/ù^/¶\95õü¿¾>\ß\áp\ïoõú}ÿ\0\Ý\Â\Ï\ fH\95~!øiФ`\7f\f\Ûs\Ï<Xe\ßû\Ù\1e\ e¯\ìþ\ØþØ­À¿\×ü¯\ïþ\98\93º\"\"\"\"\ê\Û\Ì\11Y\é[\85iÿ\0ȱն\b&ÿ\0ò\97S.9?þ     \95\\G¥+\82\ë5\8f4\9d\Ç-?\Ø\n~\ 4Ò¹Ã\8e*!·ú\82\Êû>Y\ 6¿\ 1\Ïq2\ãý\91a\é\í\0½ß\9fv\È7\Ûò~\19\9cY@\88\88\88\88\88\88\88\88\88\88\88\88¢¯\ë\ 3Ñ\83±x\9d\9b·\9a\e$;\8f\8c§E\92\ f/\81\'c\Ø!\ë\9fhð\ìý\8d\É\âÌ\97\19\es\ì\Ò\äosp\\a\Ù3\éu\Ñgh\1e\18z\Å\ 2Àoa¶\e\1e\82\ç³\á\93A\Ý÷«\8d\96¼\98\Çû\Ìl+\0\ 5\8fÿ\0}\82nT\83\11\11\11\17ø \Æa\90E\e\n\"±\Ã(\88Ö¼d\eÛ\96¼dc±\96½\8fnr\×5\Ø\Ë\\\Ü\ç\19\Æq\9c\áA7\Ó\17A\1e·Ì\9f\9clG\Æ\ 6*\ eG\ä\8a\b\Âo¶\Z\Ø\æ\í?#üq\8cc\ßô\ÆÒ\89­ö϶1\9cÿ\0\7f|)Ú¢\"\"\"\"\"\"\"\"\"\"\"(\àú°\ 1\83xJ\ìi2\Ügñ¹\ 3®\ç\Æs\8f\Ûr\îp\Ò#|±ÿ\0\fûH\Ë}ÿ\0\à\ì\ãýVsx7«\rW\88o\1d\10\86,\Ê\ê\Ï\16Z\e#c\e\93\ZÒ\84\13²R\ç\r\ÆHL°\Ãg\Í\Þ\îø1\8cò\Ö7\Ûk\b\88\88\88\88¡\Ñ\à[C¦\Ðü\ãú\84i©\0xð+ù\86\9aXG$\8f1²]Ë\969kl²3\88Owe²,e\Z@\ÚÏ\80\ 6\"±\80\18ÀÁ\r\93\17DDDDDDDDDDDDQ\âõO\Ñ\Ø\ßøL\í<jÀfA\à_ðe\áÇ\875¾\Õ\Ô\\Ù¢\ÚÚ\9f9{\9a\ßhµ±eJ\Ë}ò\çý\1f\ 1µ\Äs\e\9c\ãð±\18\91<Ix\ã\11\1dòsºwÁ\12q\9fø\ ef\85O0Mÿ\0 Gc?\é[:DDDDE¡\Ï\Z\Ýn\'\14ù(ò\ëÌ\92ª[\1eG=se%¤;?\ÆÀ\9f\"\8f]§«\87\16\v\8f\86\ã\ï\10®e\ì6C\Æ]\9c0Ö²²\Ö\ã\ä\ç?|h\88\88\88\88\88\88\88\88\88\88\88\8bWþf8>ϱ\9e6;I\Ãõ\ 5dk\r\Ã@\97_\16a\ 2\ÙC\81(\8fh\àO|W\Z;¥6%\89!\9dÀ\11\86G\á\99ø\948\ÆL<\98\è\æ\8aþ1\é\ÇXxù\ád|iü\1d\Æ\Ô\"\bþ¿¬q`jõÂ\89\86\àyø1¹\89\80»\ 3ǶE\8cýnk^\×7\19P\88\88\88\88\8b\áT\ë44s®¬ªk#Á\9d±Llû¹!û>\Ë\19\8cÁ0Ó\9f\æ÷7\ä\Ü\14\9e\ß^\18\ß\ëwôû¯º\88\88\88\88\88\88\88\88\88\88\88\88º¾\ç¨\Óo\9a½Î¡°\8c¦¦½\8b\88v\ 2\ 3\Ú2¼80\8f\8c1\ï\19Z\Üý\81f}ò7c\Û\19ý\7f®>\95\r4\1dr\8e\9b^¬k\Ù[CS]M^\Â;\ f# \Õ\Ã\f\18\8d{\Ú\Ö5\ÏÀ\0<9\Økp\çc9\Ãq\8f\Ö>²\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"ÿ\Ù',4,0,'','','',''),(80,3,23,'9305bf01bd94ffec','13931663105bf01bd94d90e243464200','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','12242958235bf00e8006f72987476580-4.jpg?ts=1542459008','image/jpeg',80,80,2356,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v     \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0*\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b \n\11\12\13\14\16!#\15\"\18BCÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91ù\ãõ1VüwZfº\9b\bJ®\Ø\í¨!¶\9d\85m³e\ÙMg Ü\91\13\ 4\a\14|\\qb½tÙ\99\11ö$\15[Q\àÁ\Õ\Û|\'¬\8fJ\18¢+\18\Å_\8aÎ\9fy®ód\à]±î§\91~\Ü\èN\9e\ÊM>et-e°¦µM§s¨2T9¸\Õ4ZO\ë4\Z] W\9a~?;\ 6J³&\Ñ&\ eðu\êôç´\84´f÷}v\ë\Õ+¬\9a\Ö3V\Ð\ì;j\Ó\v\1c\ç\ä*stn]\9d¼.\87\98±\Ç\19\â       ¶\í;E¦\\V\1eÀ\Èu0°\ÏEW\ 3}o¹\e\f\16H{\v÷^8\ã\8e9\13{\á\Ù\ 4õ\ 3¦\1d¢\ìòE\1có´v\8eØ»\ e\n4\Ì+\"J\Ú`kg¿R\88+\b\ÊUøò\Öl\Äƽ\9c)\1eÍ\94¬üÑ\8c|±Po\8bÞ©\Û<°yCÓº\7fhX\',\98\Ý;Jõ»\13t0\×U?-M\85̦\É\ÛR\84JcûX\9e·\8e\19ðqòXJ¿\1e\Ãc\8f#-ýh\Êqt\15F£X U+TjL\ 4MV\9dN\81\89«\Õ+0A1\e        ^®À\80\Ä\\4,Lx\Èlp£c#\Å\1c0\85a\bi\81\Ùm´\'      N1\È9\äo\Æö\87òa¢¤t\Æ\è2\ëX\90\10Igµ\î\Æ\×Ö¹\êå\92\81d\91dl72\88ø\é! m\Ñß\92\ 4z\äk6\à%b\ f`ofS\1f \91dÄ­\v\ 4òe\é\ç\ïýã­\97m©rÙ\9aÿ\0Ll@\ë{?D[\ìÓ³Ú«h\ëb\10\f\94E¯]\ae|õ\ë\é;e\1eB.\ÉO³W\90\ 1 <T|}\98Ixñ$ \9fµ\ßLm\9a^û\Ô:»xk\89\ 5J\ëýÁ¯©\Û6\95\"\â\12Ó¦U¯5øû,\13ï²\87\1dK\ 4®6H\7f\1f\ e/,?ö3\95+(\Îy\é|q\Ç1\8b\8bVØ·?\8a>þkÚ\90\84H\Ù$úͲ&a\ãDK\8b.P\Ê\\Vn\è\8a\r¶³\85¼\\\9akª\0Vq\9c\á\â\bm¥%I^S\9d\ 4ý\19¯Dµ\å\8aþ\83\Ö\Ú\ f#¦;q\984º¶\13ö\9c\9d\99¤\b)±\Ò\æp\ê\Ê\ÄS\aº\94\8f\î\æ\ 4hÕ¯\1fJ\1c\Î-&\ã\95Mz¼g\é\97\ f2\12\90T\ 6\98\90´V:ó£©\9b\fx\81\Òù¥lb\9cµXc\Ã!\ 2\8d\96ý\ eѯ\ÃB2\9c\95\86\90\188Gô6\9eX\ã\â\ãE\Üz\Ïã\9f¥:\1fb6H÷\íg\ÖýY^ºÇ\98¼­ø[^*\à\9d`¯)Y\Â\7fÒ¹*aPL\ã\Û\1f\16#\9bN?\8crzq\Ç\1c\â}\86Ie\á\88i·\Ç!§\18}\87\90\97Yy\97Q\96\ÝiÖ\97\85!\Æ\ÜB\94\87\10´\å+Nr\95c8\Îq\Ê\Ä{\8dÕ½\8d\é óA¥{³®ª²¶>\92^v}\8ev\8c¸D\7fXz\êò$\8cN\ß\ëÄ\82\Þs\è\Z\ßI«\Ø$M\×k\92y\"X\"À«\Í$\97\ e\8a³\v\11en \ÛZ\ï}j\Ý\7fºu%¢:\ë¬ö\8dN\12\ïFµE)j\ 6r·a\ 5\99\bÃ\9aC\Èl\81\ÜX\ï%\ 4\86SL\98  Hx3\18\1ei\11\Ûȧi\b\éGF»IÚ #\ 5\99\9b\Òzv\Ùo«\Ä\È%\Õ\Æ\É\\\Ò&\"\éAJ¡\87\19}Q$\Û$a\9a\94\Ã.´÷øõ\13õ8\87>*Æ\8cÞ\96~\86\ f\äc´ý\8aò½\ÝB\Ë\Ý\16m]·cÈ¢~Ú\94\98\r£²S\è\Å\î\7fcO\n\9c4\13¹\Ö\11E\Õܦ@ \\\Â\ 1)d\0\á\ 4\aôøv\15cG\1cq\Ï\ 5\ì\çft§O4nÁ\ìganñ\Úÿ\0TkHe\ÌY\'\Ïù:óªS\88\Z6\12\12\91\93vIù\'\86\88¯AG¶\éòÒ¥\8c\18Í©n{\ã\0]_\ì\1f\95ÿ\04\84\ãv\ëk9~,<l\1e{\ØÖ¶\18\9a\85R÷\Ý>\ËWX%c\æÁ\r-}\8b°\Ñ5EJM¦²ðV\88ªÁ\ä\f\90\ 5_\ã2\äø¹d\94ñcÓ\8d\81[¬W;\1dL¹w/\152\r\90\89\90\îV\Ñ\Ø\1d\8f@\ÓRL i\19\Ø\ê\9eÄ\9f\93\×5©c\ 6m#8õ:\95\\a\91~B\880\ã-m*tQh\94\9d_M¬k­oR­Ð¨4¨Xú\ÝB\97O\85\8f®\Õ\ë\15ø¡\Ð,l,\f\14H\â\Æ\ÅF\ 23hdP\82\19\91\Ùm8J\11\8csÇ»y\×\n·oú»¿:½t1ø\Ê\Þö\ÕW-jtȬ\à\82\1e²\Ã\12\fe\8c1\Ô\ã( \Ê\ìªÁ\9c\10w\1dm·É\8f\15\86Ö¬óO¯N\Ƴør\ß]\91ñ!\äJ,} j\ÙûQ\8d­\Ö=³g\Ê\â´öó\98L\14u*\É\15H\ØÒ\8d\ 3\ 3)û$-~\933H\1dd²k\Ò\19±\Ôf\86\87¹°\15x\Í\ä\12¤­8RU\85%XÂ\92¤\ç\19\9c{\ã8\Î=ñ\9cg\1f\Î3\8f\ã8\ç\Ï\1csQ?-\94Ù¯*~j:M\âJP\ÉDuO@kw»½Û\98\88Ò\88 \9b\8f\ÂD\Èz\Í^W(q¥8Ê\83Mv¢\ 1\82£\87\Ü\ÖY!ó\93\"\87pm¶a!!\ëP\Ñ5\Ê\ìTt\15~\ 20\bX8Hp\87\8d\89\87\87\8b\15 c\"¢\ã\83m\91\0\8e\8f  \86D\b1ZhqFe¶\19m\r¡)\Ç\Ùñ\Ç?!v\×\Ô-\99\ 6\ícc\Ò*\e\ 2¶úþ\×\ë\×j\Ô5®\r\ç0Û\8da\ÇbgB<\a\17\86\9du¿\9a\Çʾ·\1cG¿\Åj\Æ`·d|h\é]\ÍXùi\ë.\Å\évâ\80\87l\rsºú\9bn\9c\Óòµ2#Ò\97!E°\Ñ*2Pú\ëgS\Ç!\81Z\91¥\Þë\92±\æ\Å4¸ð\n\86uL\9c4Añ!\ß\Î\Älݯ\Ùÿ\0\e\Ýýj½ÿ\0;zHd)\12û\ 6©\Z\Ü%[²\9a\91?K\Þ0P\83²8\912E\8f#\0\å¬\0\ 4\8f\8dmv\9aó¢\ÇF\9eô\Ô4>u¸\æ\ 3úÉ­G\13\Ô7\å\ 3e:Û¥\18\ïK:@\0\85¯\å\94E\alv\ä\ 1\91m{ÿ\0®\11 F \16G\Û\1fú²þqÿ\0|s>\1cq\Ç\1cs\ 2²\Z\Ìx\ßRõceE\'\ 1.\Ï\á²\Ü-¡,!M¦`º\çnjQq¤\9a¤º\96\ß|peA\19µ)\95:\96\ 1\19\1f?­¶ð\Þz¸\ä\ eÕºý0\9eH;\99°S\1c\86Qy\ê\9fC#ñ&\96\14\9c\98]Wa÷¬SF[ÿ\0RP\ë¢\bl2\96\1dul²ð\ÙV\eK­\áSÇ\8e8\ã\8e@\Ùz:W\äò\81²\15\10¬©\8e\87\í\ÊSs\Øo?\ 4~G`t¤\ã\91+w\1f\14\18l\Æ\ÛW¶U\86\ÝS~ÿ\0\17\97\1c\àH£ \97\8c@\ì$²\19\1cg\ÊKM¤\97\11d¸+\ f?\84\á\Ç\19\19\vpv\96¬¡\95\94B\9bJTó\99W?\1cq\Ç\1c\ëd1T[g\ävrsC:\ee\å´\ä\84\nû¬¼ð\èw\Û\æ\96]xv\1cq¼gâµ²Ò\95\8c\å \Î;<ÿ\Ù',5,0,'','','',''),(81,3,23,'9305bf01bd94ffec','13931663105bf01bd94d90e243464200','2018-11-17 13:50:05','2018-11-17 13:50:05','','','Contact Photos','12242958235bf00e8006f72987476580-4.jpg?ts=1542459008','image/jpeg',48,48,1488,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b        \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 1\ 5\0\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0  \11\12\n\13\15\16\"1\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿\ì.\é\1eY\Ö\Óû\8e\190\9c\ f\ÆK\ËŤ*X2 \7f|\Ë\Çf\Î\ä\8c\12Yys\82G!µ+\15\92\91c\91·Tଲ´\Û>¾\90\99\ 1³I¦\Ü\Õ]U¢\ 1n\å_Pf¿\89\Ø-5ô\e\84a.-¸\é\é\145\87\12Û®6B]e½W\87\87\91\1fò\1e\ì]\81\Ä~©:\'jjy3 6e½5\9d-M´G>\à\92u3v¬ªk²\Öx\93\Zøx\19¸J§\8d\82=\85!ð&\9b\8f1\87\ey\86Ö\99\íø\9cz\ì \è>\10®ö\íª\b\19¾\8f\ì<\Ø\ì¯]e\Æhû\rWQ\85k\93\86¬Ube\88ýb\86\1e\Þ\ì\17óû#\Ì:Ó³\ 4J\Ã\r\'\923\ 2\1e[dÿ\0 »\'°\ÞR\çÒ½\84ð·RZi¡sÓµ¢w?9\ÎÔ¨·\1dgt¡\ÊØ£«\Ä[@\1eZ¸\í\84Ih3¦Az\Î&f\9d\fº\Æ\ f\92\8dr\fø\959!@½Ew\ã~\Ìx\'Ju\89UÀ\ê\16\ÛX³U}\91Y\8dy\ç\âb¶5\ZX\8aÝ­P\8b\'\ä¦à¥\8d\r3Ð\82\96\ 5\83\15* D\96k\ã¬\Ç\ég\87\92\×\Ü÷\v\Ê{\16õ\É\Ñ\1c\ËUX­\ìy\88\10\9f\81C#gk©\16-\958r\8b\Ï\ÊB\Z\ÌTs\95bNs\nh&&\Ü)䩦V\9c¦\7f\8d\ fJC\í\ fZ\Ô\ e\88MC¢xbR\É\Î[óWM°¸\ë5FR¿m²»P8Ø¢s\83\e\12\91\85p\97\ZCY±\ÃXÀk\í\800¥r¿É\9f¦-\Âó\96¡õ\9b¥`\139\Ð>\Ðö\1c.\8f«\9e\1e\16¡I\8c¹\Ò     ·LÉ»ôyܪaù\bºò\7fHgp\1c)vI\7fº\v\8c\ 5\92«Ï¬þ\17§ú\à\â­\'\È\ÔùuY\7f\88\"I·Û\96Â\85þa°\ìò\ 4دVF\ 4Z\96\àQò\16)\ 3q\f\ 3®:ð\10¬\Ç\ 4ó\Ï::\Ý[\ã\ç*\Þ{\9a\87κog\ï}¡-\88M{¨\èöM\81o\93ú)\×\a\83¬Å\91(b\ 5a\1f+(\â\90>\ 4\8f\11¼e\Ò\Î|q\9aN\\u8̶\ã­Y\Ò\Ý\Å\ 5    \Øý\Ëq\Ø\Zò\91³\Ç\16\é\Ï|+®\í\ÓZþ\87­5<\Ò1\'G\96\è9\Z\99±\96½½·\ì\95÷¢flpV    \Ö(\15GJ~\11ªN\rÉ\89\16¦k\8d!¦ôù\1635^¬ k³®&7#o\91§T\á+òv\É\16\9c)Ö¤,òQ\81\ etùͺi\8e$\Éb\f\'\ e\16Jð\ç\Ù÷r©\á\ìÿ\0\Öü¯m\15\Ì[»O]àµ\9fYñ>\à\8d\Ü\Ú\ 2\Õp\8f6S_N¾\83á\89´k\8d\90\14N?|MN\Þ4\18,ª^   J\97\821\84\16 \å´\éb>\Äl¾\Ä{\9bhU­\83Õ\9a\92Û­)jd\ 1vvÓ¢\97\1f¶56§\95)öBT\9d¼ø5\ 3±£5\ê\8cwõ\\\Ø&kFk\Õ\È\Ü\âBòMXV\Þ}\ e\\d\9ct\Ôl|\Ì9\âJD\Ë\ 2$\9c\\\9cy\r\16\ 4\8cq\ì6PG\ 4[\v[\ 4\88Xδ@\Ä2µ´ó.!\ÆÔ¤+\19\Ì\éö\á®\ß\Û|\v·µ\8bH%\æow>p«\Ê\n+yq\Ã\ëòý=¦\84²Æ¸\9cc?õd«\îI\80\8c¡°\È}k\ÆP\95c4xa\87\fv\ 4\11\96\86\14VZ\18a\ØBZdq\ØBZe\96[F0\86\Úi´¥\r¡8\ÂP\84\á)\Æ1\8cc\Ïo\ f3öÚ´\ 5\æ«e¤\Ú\âÃ\9c«\\+ó5{$,\88\95\1f/\ 3?\1cDT\ÄY¼\95²@gÇ\96@¤°\êTÛ¬º¶Ö\9c¥YÇ\88Ǫj\Ô\í/\×\7f)R\ìfH\1d)M\Öm\Ô\7fZW.\äö\ãk\13\ÓppA?\97Ô·\7fó`À\8e\8ek\nV~¬\n\ÚSýp\9f\1dM\81G\8aصrj\93Ku¸òe+R\Ë[\18N]Á5k4=ª?\ë÷\ÆSñ\99\bQp¼ÿ\0¸FU\94ÿ\0o\8f6~\1e\1e\1ebµ\Õ\Z/[S!)\10®¾ô\\\v\e\84\19{-\95 \\\82\92¼\ãýú8ZÐ\9cÿ\0¹BSó\9c\ç\ç>\7fÿ\Ù',6,0,'','','',''),(82,6,24,'9305bf01c3d40ea6','10196270915bf01c3d3dcff106620826','2018-11-17 13:50:06','2018-11-17 13:50:06','','','Contact Photos','97971161215bf00e801fdd7464746900-4.jpg?ts=1542459008','image/jpeg',300,300,11008,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b        \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 1\ 2\ 3\ 5     \ 1\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b \n\11\12\13\14!\15\"1\163A#BQ\81\82\17\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/r9¸f3\9cDëº\9e±®\8fð±g\ë]L\ã\Íϵ[d_\å\"¾þW\äñ¿\19Ķ¬\94Hx\8c\ë»x\12.¯+\'=­\91\ 2ûY©´­\97\18f0Hð\96\11\åF÷\98}`\1e\ 2\Æø<|\Þ\r\á\íRľ\Õ\15\94\ 1v=¢¢/\ÄyÀ\8b¸\ÛZ\83\13d´\í{\Û.%\ 5F2\1c²9#\93\181\ f©\1e\\ó?\åC\9b¤\96VõÞ\8e\Â\r\å\95ùMÆ\95¼M\ãG\a\Û9À£\ eO\1d·W\9aøag\Ä,\8f\"Q\Ø\á\8cx7\Ú\æa\Ë\Ìõ\ eòù6\ä-\96§Nл\85\Þ\Ý\ãq¾\90ø\Ôz¶¡\Ø.À\ì\Û-Ì¡\80²\8b\1e¦\8e\9bn\9bic!±£\9eI\ 5\ e)\88\Ð\0¦sp1½Ø\95×\8f\ e\98ú°9J\92£h\87\Û^I\ê\×\e\\Î\8b\996\1d\83\Úuý«x\95L\è¸8®«x\êú\83\99\90\94\87üV\Ñm©Ø\82P¦bH£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8b\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)\ 1T\É2\Þ1\12CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ø\êy\ë¶WPKüg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ek¾º\ê8­5¼ù\Îo\Æ#\àÁº$\Z\Í;\Õ\äù¾G7\9fñ¯j¹\8a\ïs\8b\ e\ÆE\8e±\Çõ\Ï5/\19h\î>e{\aR\ÓA °¡b;\'N\f\8ben\18\ÓeEÅ\96c\19\â\Î\ 5¢\90¯\88\8fN\ßm|\9e˪ä\9d\80\13ºý\Õl\96\14¢òþ\ÑQ\92Zo\91[ &\9dU\Æt\ 6(¤J,\8a¼û\Ç\Û,\ã>\8a1l©\çÂ\83²ÁþDp\ì¯ñÿ\0\â+¢þ6õ\18\94\9dv\áº\0\î/\ 4\\l<½¶B\87±ò\8e\Ë2>\\|\Zf\×>9lb\Ã\f\ãÎ\93UY\fÃ\8dL9Æ\85\a-\8bñf6h\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88¢#\êAõ\ 2\13¡t6=:\êm¥|þ\Ø\ï\14$ÿ\0\16\82-}\9dw\ 1\ë6AÀ\Û9\Ð\1f\99 ±\ä+P\94\8d\Ö\é§\0\95µo\ 4«\8d\98\a\8b\ 6\1e·µ\Ö+µ\í{6÷³_n{\9dõ®Ñ¶m\16³o6-\8aòi\ì­\î­\ì\8eù3¬lgIy\ f&T\93\91\ä)Hü\ç9϶=\9b\8cc\1f\ 3\Û?¯\×÷ý\ãÿ\0\9c{\ç\1f¯ù\ã8ÿ\0\ï\vñO\a\Ó\Ï\é\9e\ eÿ\0\ 3M\î÷\91-\'.\Ôg\8e=ÿ\0\fõ¯e\86`\9a\â7\Ï/\83¸r\ÍL \8d\8f-­d\9am:G³\ãDx\ä\Þ\r·\'\Ä\rj\Â\Z:*mb\9e»_\×j RQ\ÔE\14\ZÊ\9aÈ¢\85\ 2\ 4@\ã\â0E\8a\ 60B\e\7fyökqòv\\÷g.s\9d\9f¬\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88µ\ 3\æ\çÉ\86»\âó£[\×3\ ePK\Ì;§\ß\Ç\\\ 3®=\8d).¹&\Þ\11\9f\ZyÀù\10ðú]V\eK°l/\14À\Í\15\\B¾´r§þ<CS{\É\\\95¾ó\16ý¶r\8f(mw\e\Ç \ïWs6-³k¿\95\99v·Vó\Éó<\99\ 4ö`\Ä67\f\8f\ e\14Q\82\rt\10Ư¯\8d\16\fXñ\Å\Ñ\×\îs\9cÿ\0|ÿ\0§·ü°¦\89\éjðt\Î\Ë\ï\15þ@ûQ¦}ü\ f\Ç7\"7\ 1\é×±2øü\9d\ÈT²\ÆW\îVUòÃ\80\17P\Õ$4\7fÁ\17.\96û;\àH\99\88µÃ®£·\9deh\0\b \f\14\820G\8e\ 1° \8e\0³\ 3\10B!µ£\10\84\83\e\Z\Ö1\8d\ÃZ\Ü7\18\Â\æDX{\Ý>øõ\7f\Ç\Ç\16F\æ^\Öò38\ãB\9bp:\186,¤»Ø§\ØZ\90.> \Ö\Ò\ë\Ðlm\ì\å}mùb%|93\1c̸Ì\8eð\ 2IC\1f\Înõ\89ø·\ã\È\í7\13Uóo`\8d\î6\12&½¢\Ùññpò\11\Ís\ÄNI\87A\1c\91\ÄÏ\81\18\123\8c½\82\88G1¸&,\Äõºu\ 5ò°\Éý,\ì\8ch_/lÈ\89·q\84\ÙXg¾?«\10\Íe^,»\Û\ß?\ f\Î\Æ=ñ\8c|ÿ\0~ø\Úw\ 1ú£¼:s|\Êj;>\Æ\Èá­\96\Ò+\8f&\1f/hÛ¶¥®U\95¹\Æ?\Z^û.\81º\83I\9c¼L\ÆKf\f9\Ï!\19ò\8b\1cò\99¿\8dKrÔ·\Ú8\9b6\91³P\í\Úôö±ð\îµ\ËX75\87\Ã\Â#á¬\99\0\Ç\aÙ\81\1cDx\\ü\14m#>ln]\8c\88\88\88\88\88\88\88\88\88\88\88¸\ÈA\84d1\88Á\bLy\nR?\f\18\Æ\Ìe\Ï!\1e\ì\á¬c\e\8c¹\ïvp\Ö7\19\Îs\8cc9U\ez\9aü\87\Ùw\8b\Èþÿ\0¥k\e#,ø\'«E\93\Ã|s\Zª\Ï3h.ö:¹%/!n\í\ 3¡E,k9·\å~ªX¦\91`\18ñõ6L\84øD¸±\89\88\ê\"\Ø÷\8a/\1fÛ\87\92¾\íñ\1f\19>\16©mhí\93\96\91_ :\8f\19\ë­üý\86|\87\8c\à,s[å\91µ\9a\É1ÿ\0$𬮣ٺ\14\98UópÛ¤ø\87\89´\ e\b\ã\r\13\86ø«[¯\Ô8\ç\8du\9a½CMÖª£\82%}=\15<vÆ\87\ e4h\Ã\fp±­n^\æ\0!\ e\b÷ýA\13>,Ç£¢\"ñ\1e}\ë_\0ö\9fD\91\Æ=\8d\áþ?\æ­\ 2L\80\Ì&§Èº\Ýv\ÉO\89\91\È3G\98\18ó\Â\\Æ\97\1c\ 4\98òc8G\ 4¨ñ¤\88\8c<`\10pHòù\é\14n\9fM·ö\a\Æ=\85͵mh\rwyÕ­ºÑ\96\96\83\0\ã\ró\9dÅ\9b\85\86b\9d\ 3£J\99\8d{j\97bs\16Í\91\á\\VV\Õü\v\ 3\9ak\8dr\â\×^\Øj¬¨¯è¬§S^Q\ÜÁ\95WqMqW(°l\ê­k\'\b\13k¬«¦\80ð\çA\98\0Ê\89(%\8f C(\Þ\Ì|Õ±Þ\83y]\ï\a\8dͲ\1d\ßZy\92ö£Qu\9c{\r\8b\88v9\126\ e+\Ú\Ø\12H)cYj²\8f\81Ö¾Y¤fD\Éú\é\é¬\'H\8f\ fù)3¢\ÆlWZ#\á·Î\87\\üµhÆ©«\fn&\ìÖ§S\1e\7f ðe½¤s\È(\9a\11b\Ça\ã\Ù\Å#$\íZ\9cinpó)\ÑÁg\16\9e\f2¾Th;\ÊDDDDDDDDDDE®¯,\9d¹¯\è\ç\8f^\Ïö:XbÊ°\Ôx\ÞÖ§U\812fk£Yî»\8e\e©\ê5\8f\9e\10\90\Éa{o\n$S\8a4Dzi£{D\92ß\90\9dI$¹r§Ê\93:t\99\13gM\90is&K1$Ê\97*I\1ci\12d\È3\9ec\È9\9eò\98\Å{\ÈR=\Ï{\9c\çg9þtV|ú?ü~?¯\1d-\Û;\8fºUÏ\81\Èý¾°\89\9dtS\ãÈ\89ø|\'¦É\90\Í8\91\86I2bL\8f³\Ûʸ\ÚAo\bpI*\14ø\15\11\Ìúh¦Ä¿\Ñ\11\11\14(}O¾\ 6\ê¹\ãD\Úü\85u7Mü~r\ã\Ê<Xso\1c\êu\99yykK«ø\à\Û-U$\ 6\áó·­^\e\88fÿ\0\e\18\17\Õ\0\Í;\ãZþ5\16(+eE\ï=e\ì¯0u\v\9c8û°¼\13´\ÉÔ¹\'\8d\ïa\Ý\ÓN\e\äf\ 5\80\9cd\99C}\124\98\84²\×\î@<õ\82\Ù1\8cð?\ï\85*\15\80\8d\8c>ÿ\0q¯\92\8e\9eqwg8ðø\8f/`ª\15G!j\æ\Î\19c§r5(\Ù\a\97\19\ 1[\1c7!\99\9aÉ\98\ 6 \ÙB\Ã%UÈ\9d\ 1Á\98m\82¢\"\"\"\"\"\"\"\"\"(\88ú\Êù\Êw\1ex\Ù\ã\Π\8aß²7a9\Û_¤²n>¼81x\à\f\äQJË\9cß³\"dú\88q^1»\18q&\ 4\8f\1ceµz¢õ\Î\0\â¹\\\ë\Ï\1c\'\Â0ffºo1ò\ç\eñ\\;\f1¥\Ì \\\85¹Sj1\æ`n\ËZL\Å-»\ f\86;8kòÏ\8es\8ce^\83À\9cC­p\a\bñ\1f\a\é\Õð*µ~$\ã\9d;\8f(\àU\83\11«£W\êt0iB\ØQðÁ´\11\ßøy \ÂÁ\8d£kðÖ\8cm\Æ\18\ß[DDD\\\12¢Æ\9d\ZD)±Á.\1c°\Z,¸\92\829\11¥F\907\bñ\ä\0­x\8c\ 3     \ï\11\82V8e\e\9cÇ·-\Îq\9a\81½G\9e9\a\ã\ÏȦ\ë\1fNªm\7f\bö4\16\1c\Ý\Ä\ì\0\Þ\È5\ f¸¸\92\r\çO\ 1\ f,¦;\è67b\Ó\Ü0\ëj`AÙ«©*cf5S\9c´\ e\8ac\9e\8e\ eê³\88;«È\9d@\Ú.L\1dg³ú\91n4h\13\'eµ\91¹3\8f+\ç[\Î\15]\7f\Ë\ä[Ý£S\8e\æ\É(FLf¯QÁ%}a\86\ e\Í\ÄDDDDDDDDDE\ 4¿[þ\Ä\Üq\ fCu,1ø~y#\97v,\93å\9c\8c\8df±¬\Ö5\99o\ÇÙ¯\ e^÷a\Ù~rö\9d\Ø\Ã[ð\Î_]\Ú)\13úZ8\ 3R\ç\ß0\\,\ÍÀY\93\v\87t\Ý÷\9cª¢<#\91\12^ä\82®¾\98S\ã\e\19\19\â²N\Çù-k¿Ê\96\b²>$úr\"[¢\88\88\88\88¢C\ë\12\ê\í\8f2x\ä\Óy·Y¤\87*û­|\ÃOµ\ì6!­\ 4\8b¢q\î\ËOq©\ÝW2n\1e)`«\81ioU³\Ì\Î\7f&(EK#\Þ;\v\aW*-\8fø\82\æ\É]xòq\ÒnU\85\1c\92¤\ÕsÎ¥¬\8cBú¾M\Ç%:O\19\12C°l\àn\fAn\ f\95!\8eùe\à      \18\11\Îk\1dv\Ê\"\"\"\"\"\"\"\"\"\"\83/­÷^    :ÿ\0\Ñ=­±±ù\11y\8b\955\ã\Ëþ¬\çé\9f¥RYE\8d\9f\ÞF\Üeõ³\v\8fl5\ïö\Ï\Ë.ÀÛ\86WB\8aZ~\8dmnlÿ\0*[\9e\ÐÆ\8f5º\ïV9*¶S²\ìý­\9f±m\Z\13\ëð\Æ|rÜ\8dÑ©->\×ü\Ú湡kXü\11\1d¤¨\88\88\88\8bR^xj\âZø{ò\12)a\11q\13­Û½¤w\11\8cs\81.°Q\æ\0Á\Ëñ\9f¬¸È\9c?\9b2\×\å\84 ñ\9fb;\19¥\Ñ\16eø\ë\Ò6nD\ï§N5=B´Ö·³;)\Ãv\"\88\a\ 5¤mv»½\Òl·³¿Û\90Lp\ê\èj,­\f6¹\Æ(a¼Q\84i\ f\10Iyj\"\"\"\"\"\"\"\"\"\"\8aG¬+\84 r\'\8a±ò´\91d³:ý\Í<}²Ö¹\84;\1d\1c»\í\Ü\1e4\93 \8c\17°\Ï\e\10ö3\Ç ¤\å\Ãl\891NÁ\äÁ\19\ 5Uò)rz46\81\×ù>\ä=I\â\Î_²õ\8f\11ÿ\0£\â7k\e.¤\'\a9\Î~xq\87°<\8d\Ã[\96\11\Ýó\Ës\86\14DDDDZBõ\18òö¯\Ä^\1d{¢ý\96ÀPI\È\Üq\9e)\×\Ú÷»%\95°oVpjk£\ 4\fa\nl\1c¯ür9­h£4ø\91 £\bÝ\9cÓ\88\8a\94^«\í\\ùå\8b\8d9^\f\ 3¿Jꦿ²ò®\Ûk\87\Æ\Ì8\Ö׺õÞ\91§U\Ì\13°Y\99}\9c»\9b[\b\'\8e\ 6\80S(D9s#fDaK¶i\11\11\11\11\11\11\11\11\11\11\7fº\ÍI\Ü^\98vG­WÌ\93ø¼±\Å;V¹\bð#\82M¤;¬×\92m\14º\86\11\Æ+@\ÛE\89\88G\È\ fô\95\Øvc\Ég\Ê9h\é\Ûu]\87EÚ¶m#m«\91Gµi»\ 5Ϋ³R\Ëȳ*\9fa׬d\Ô]U\É\È\b`fE}\9491\r\90\98¢\É\ 2ì\8c\8fg³³×\94\90=)¼Õ¬ð×\98~$\8f³\ÊdAò÷\eòo\ e\10¿6\ 5\×\Û\f\Z½\8e\ 3\r#\ 3xb³\ëÔ¤\93\ 5\94\84¤\18\á´Í\91(\r}·\b\88\88\88\8a\ 2þµ^\è\ë\ 5 \ëwBµ\Ùò\89¸\Ç\Ø\19Ø\8eG\Ä\v,\8e4=\7f\15;\1e£¦k×µ\ÌÈ\88\7f\ågM\9b²@ûq*\13\ÉJ\13ûG\9b\0\ e}}è­\93ô¿ø¼\99\Ð^\8f\a\95¹OZm?c;WüW n,\92\Ö\æ\ËY\ã¯\Åd\8e6\Ñ\ÊLÁ¯\94,ì\96ûûjé­\9d\8aý\9e\îó\15vr\ê\8f\1c¤\93*\"\"\"\"\"\"\"\"\"\"*¡½U\9e=gõ\ f\Èe\Ç:\ê\953\eÃ\9d¹\88þD­\9a(¸\ÅN¿\ÉQ3\9aý\ÓTc\âClX\f\96(°v\ZÀ\ØÏ\91oq&N\Ë9\83\1c\18lh\ã\0½Û«\Ü\È~»öG\819\à\19¶\Î8{\98x\ç\92%Ç¢>#\Ú\ØU\éûmM\å\ÅDGºT!9\×5P¦T\924\99@\870\13K\12i1\10\æW¡qG#\ë\Ü\Ã\Æ\1cy\Êú\94¨ó5\8eIÒµ\8d\86DYB\9a\17\Õm4\Ð\îa7\12\83\8c\f\10f4EsZ\Ïb\8d\ís\18æ¹\98ô\ 4DDE\85\Ýü\ï_\ 6ø\ì\ë>ÿ\0\Ù~w½\Å}\ 6§Zfkº\ì&\8eVǽmò°\Ø\Úþ¥­Ö¾D\\Ë\9difx\91\Îw\9e<:\è\Å|\ÉÒ£\85\98\81\î\Ïmù#½\1d¢\æ\1e\Ór¦Y\1f\9d²mö(\ãL\936³U¥Ë¾\9a=Z \92\Z,b\ 5-pÁ\1f/\8f\12¾<ɹ\99d\Ê\èO\9a@3\15\94Á}2þ    ö^\Úr¾\9fÞ\9e\Ë\ë3j:\Í\Ä\Û\1c\1d\83\8d5KºòGÿ\0¶\ÝÚ©\ì\99W`FI\13J\í\17^\93\88öC4\'\ 4÷\16\83\81)\93c\Ô\Å\14}\9a\Î\Øñ\ãÄ\8e\b±@\18\Ñ#\ 4Q\ãF\8e&\ 6<x\ácD\10\0\"kF \88mh\Ä!µ¬c\Z\Ö1¸n1\85Ì\88\88\88\88\88\88\88\88\88\88\8bRþi<ok>N:=\È\\ j\ê÷r\8e¼#o<\1d±\Ë\a\Ú}g\91\ê\â\14p\8d\1c\98\Î\n\18ö\Ñ^Z\9bfEö\95>ªDª±\91\8c\9c_\95\8d\Ç;\Ï\11o\9b_\18òf±m¥\ï\Ú5\ä\ísk\Õ\î\ãþ=\9d5\Íqr\191Nƹ\â+3\9c4\ÑfE)\áO\88PN\81&L9\09:J´C\Ò7\äj§±\Ý\'?Mwm\8a|\Þf\êC\Ç[N;l\88l´\á+³\È\Ç\1f\ 2\8f\"\8d\Z)\83¨\ e\r\86°h\91\É*\Ä1k#X\Û\fX\9d\Zu\94º\11\11\11q\18Â\8e\"È\90Q\80\0\e\Ìs\99\10B\117/!JG\å¬\18\Æƹ\ï{Ý\86±¸Ë\9d\9cc\19ʨ»Ô\83\å7lò\17\1dÃ\8f\89Ѻ\Ý\Ö\r\9bb\ãn1\Ö\ØóÃ\87y³\Ó\Ì-N\ë¿]\×|F\197\a¸\8faEM$\ä´l*h²$R\Ï\f\r\86L\\Guo\×\Ó\Û\â^\Ç\Ê\aq\ë3¿SN\ÇW8(\95\Û\Ï5Z\92>\a\125\84/\áxª\f\19\ÈIc²<ß\99p(ñ-s\17_\8aPXÆ\84+¸V\ 3·\8fT\Õ5­\17[¤Ó´\êJ\ÝoW\Ö\ë£TQQTF\1c:\êº\ècÀ\ãÅ\8b\1cX\ÃX\Æ7\1e\îv}\ÈR9\æ+\ÞR=\î\ì\b\88\88\88\88\88\88\88\88\88\88\88¡+\ê\9aðo\9ez\Ôo<\8augO\9de\Î\ZMlVs\97\1d\êµÏ\95c\Ê\ZdB¿$Ü«\ë\84F\â~Û©E!¤Hl1>öþ¤y¦\8d\1eþhõºú\9a\ÜVux\Ý\ïo&ø\á\í÷\15ö\9f\8cM\92\9bR²þ\1fz\×r/¸;§\18\ßH\8a\r\ßT ÿ\02¿\1f\93:´-\99LRM\fX\Û\ruD«\ 1Ì®\f¸\12®\8e\ê\×f8\9f¸\\\a\Æ}\8e\á-\86>\Ë\Ç\\£¬\×l\94r\Ä\ì¶\\?Í\8e2Ȩ¸\84V\ 6mU\Íi_\98ö\15vQaYD&0\Ùp£\11\ßV2\ 1\11\11k\ã\Ê\ç=Xu\9f\1fsy\9e\8eÀU»V¡×®P>\99 ¸Ï³¶ù:\8d¬j\ 1·8k¾\ f\Ì\â0\8d\7f»\1c߯9\13ðo¯Þ\91y³fYL\97cc.Lû        òO6t\é§,©\93fJ+\Ï*\\¹G{\Ï\"L\83½\æ9\Ì÷\94\Å{\ÈG¹\î\Îsü\Ê\à_MwN(ú\87â\9f\81LÊ·A\ß;\vV\ eÀr<\99µ\84ª¼u\Æñ\ 6)j)/\"\98a6%j\94\ 1\83B/\È\13%2<V\nG³\Çõ\8f~h\88\88\88\88\88\88\88\88\88\88\88\8b\84Á\f \9a4\90\8aDi\ 2 N\ 3\r\85     \82Vde    \84L9\84\19\18\ç0\83{rdz9k±\9cg8UWú±º\rÁ\Ý5\ï.\8fÈ\9c\Z\n}j¯µ\Z¾\Ù\È{\87\1dSe\8d\8d¬\ï\147\151\ï/\Û\10n\Ã+\99»\97`m\8ea\88\ 2\19¦@\9bnbJ±µ°\92H®©­ú1;M\Ïq;}\Ë]Bf\Ç>Ó®\97\9c\'·òü­jx¤Ì\87ªò&½³i4õÓ¨fd\99\ 5C6:ý\86\ß6µ\8e\e\Ûa&´S\à~\19[x\ëK\'Q\11\16\84ýL4×\97\9e\eûX\n\a\1c\98Uºõ\Ì÷\Çó\9cQ\ÒÛ\8e\Êõ\85ø\ç\1e\Ñ\ÍU\ZTsg>\í\Ã\v\9c»\19§\Íz\a\13\ÑWm\1c§Æ\9a\Õ\ÄRN©Ø¹\ 3M¢´\84\"\90%\99]o±\Ö\×Í\8a3\ 5\ã0\89\"4\82\89\84\11\ 6Q¹øx\Þ\×c\ e\Åð\9cqU]G\Ç\Ú==D \×VV\ê:\ì(0@&\0QcG©\881\ 5¢f0\Öe\8d\Çõc\18ý¿\å\97g\å\9c\ç=\Ñ\11\11\11\11\11\11\11\11\11\11\164vO¸\Ý_\ê\ e\95k¿öG\9c8\ï\89\81\8d\Ç.ײ\ÖÀ±9d7ÿ\0\ 5\12\ 5;\8f\9b9\92\ì\n\áF\82 Ev$J\91\18\r~\1f Xt`{3\ë6\è7\19J=g[ø\87\97;6rV\È4-\80¬\'\ e\êÀ³k2\Øñ,\99»Q\17hú^|\à\8f,\rvK]\15¹\ÎH\19\ eÀ[ªwú®üºw\ fgf¥Ð¾\8dj1®\85aU\12Ö»_\Ó÷\î\Ç\1e W\854\Zr[\Ø\Ö\Ö\éuz¬yrÀr>÷fÀ\éX\18\93\ÊOÅ\8d\14ç\8d¹N\ 4\ f«\97\99ß®J\å]\9f£ýf\Ô6\90gù¹[.\8dIµoúTY1\8f\86\95\9an£qe\1eU\9cy8\b\8d\18»\84l\80O$\ÈÆ\94P\864\9f<±ô\99\7f\Þc\96góÿ\0\92?\"|\Ó\Ú\Î^¸ú\ 3saA¦\Ññ\í\ 4úÈ\8d\94\Êú8ð\9des+]¥­Ì\97\Ê\rf¤}~\ 1l\äN±\ÄHÄ\9f8r²\1e\ f¤3Ä\9c\14\íc\95¬$\ f8\Éeç\94·¨®\91\8c\7f|<!\Ù2!ûþýò,3ûþ±\8fe·~\83ø\9bè\97\8d\b[`º\8d\Ã#\Ñî·£G~ݹ_lû6óº^F\86\11\8a\rYö-®\Ò\Î\\JX.i\äç­\Ä*\èó,-%\ e>\re1\æ\Øò\"\"\Ã_\"\1c\17#³]\13\í\Ï\0B~Ga\Ë=|\å-6¬­n\1eð\Û\ÚjvM¨0Y\96\13\ f\90\e&E$f¹\99c\8e\Ñ\áþ\Í\Î]\8a:¶\Z\v\9dRþóV\Ø\ë¤\Ó\ì\Z\ÕÅ\95\ 5õL\Æ`s*\îiæ\9aºÒºS1\97a\92aM\8cx\Çf\1c\ì4¢~1\9c\1e\ë³ñ6\É\aM\å>4\Û\ìß\91Vê¼\81¦\ì\96\ 5h\Èg\ e\r\1e\Ç[g-ø\bXR\97,\ 4R;\ 3\10\88G\ç\1f\161\î\Î\e\9b\âxú\Ú%þ\85¤^À0\ä@º\Ô5«hR\ 4\ì8G\89cM\nds\rø\Îp\á\94&c\Ø\ìg8s]\8cû\ç\19\11\11\11\11\11\11\11\11\11\17\9fò\97*ñ·\b\è[/(ò\îñ­q\Ï\1d\éµr®¶\9d\Ënµ\8bK¯\ÑUB     $Ë\9dca-\ã\b\8e\"\9c¯\Îs\96\ 4D&qðcó\88    ùjõx\í¶\16\ 5\89\Z\8aª\1cû­j\7fg¶*\áN\9ba\1cqY\18w\\GLi\ e\ 3\n;\17\98\Õû&\Å\ 5õ\Ø\Å~\7f\1e\8fg©µ\8bh\18u\ëô\1d\ÌòW\ØØ´u\r\å\8e\Öv?\91dH\Ìv\Ø\ÛKÙ¶\19\11\9d<\Ò\Þ\Ç\Ù\ÞM\rF©ª@°¶p\â\ 4ó)5JRØ\82\ 4&BĨ\Ñ\ß:/\19^\8e®1\ÒE­r¿\91\Ý\åü\9f´ý\15öÁ\ë÷\1fÈ\93Q¡\Ñ\Ø5\á\95ø[\9e\Ó\î\Ûm\Å\Ñ$\ÆcI\ 6\18ª¨l L\95_oY#-S;\á^½pO[ôú\í\ 3\80ø\87\8e¸{Lª\8fø\90u\î<Ô©ujñGû\1co\81\19U\123\ä\ç%v_\92Jy\Ê\ç{e\Ï϶3\8fcDDDDETOª;ŵ\97Gû±m\Ø\Þ<\Ö%D\ëomï­¶ú\9b\0eƬ\Öy\9afOu\ÈZ\83\9c\Ðg\10GpC\13\1c\Ùó\'Ø\90\Û1Z8\Ð+\â\8f1}V\êúd{\ÛEÜ\9f\19\1c[©I°°\93\1d]\8d\13\82ù\17\17SO>\Öкü\b\Òõý\94\93\13ó-¿\99 \9f[*\\æ°¡\8f$\í¯<\éVQ\çe\92#DDDDDDDDD^3\Ø\1eÀq\'W8\83y\ç^qܪô^4\ã\Ú9\×\Û\15õ¡\98\Ì6<\18¥\93\88Uñ\Üö\96\Æ\Ún\0ñ@¯\8d\îy%þ\Ø`\ØR²¥¯6\9esù\Ï\Ê\Ç*\ÜkTv7|q\Ô\1dR\à\81\ã~ \8d5\àÿ\0\12\86¶k\ß_»r\'\Ð\Ð\æ\Úú\Ç\"\8df*\8995m!\Ã\v\13\æW\Ã<lSñeâ\83²>Vù\Ð\\S\Âñ\19¬i4N\ 4¾R\æ\8bú\Ést\Þ9¦&q\9f¶@£\96#®\ïd³?ùn»\16tS\Ì{\87\83K\86\Ã\Çym\94ñ»â¿©þ08z³\8c:ý¦C\91²>,\7fñ\Ï0\ì5\Õ\ç\ä¾F¶\13O\82\Ûl7B\ f\Î;L\é2~ª\8a\ÇF¨\80\ 22\ 5|HÕ± Ã\8b²4DDDDDX·Ü®\9fp\8fzú÷\È\1dm\ç\íZ\1eÍ¡\ïµ%\86\18-u\8e¿n,¶E>\ËE+\ e\1c\88\174vA\8be\ 2\\CÆ\92\191DPH\8eq\86\1dò\Û\á\ï±þ\'y\97:§$À\91¸ð¾\Ûa%¼I\Î4ðd\ãY\Ù\ã\ã\12d\87]¼6@ÀQ\îñ G,£T\99\15´8\Ò\ìi\ÜLÀ¼¯£\ë^\"|¤ò¿\8a.\Ô\Õs\9e\8e       \9b7\1e\ì\Ñ#j<\Ý\ÆC\9cH\Ñw½\173\99+\ç\1cO8«Ý´kGɬu\89V\18À\ÆSXW6e[m\8di\12\à>\9c÷/\80;\ÛÁ\9a\97`z\ç½U\î\Ú>\Ó\ 29\ÊØ\87\Æ-µ\Ë7\8f?\99¯\ìu\85h§T\\WIa\áË\85>4Y!\95\16Ls\842£J\8c\f¨DDDDDDDD\\2$\ 2(\r*Q\85\Z4a\12D\89\12\b0\80\0\b\ÜC\18\Æ#\9a1\bCk\9eB=\Íc\18\×9\Î\Ãq\9cª¥}K\9ee.»û\Ù;\9e·p\Î\Íi\eª=|\Ø\ìµ\ÜF\8cCD\87\Ê\\\95I/5÷\ÛE\80òÀ¾u\r\15\9c)\10u¡9¹\812HMv\Ò\ÜE\ 6¯g\eM\Þ8<wsÇ\93N\Ì\ê}p\à\è,\86ù\ä\15§ r\15\9cSH\Ö8\ÃG\ 1\9bü¶\Ót\Ñ\12;§\ÌhZPkú\à%Å\97°Zýq\9d2®¨\16÷\957\1eô_£|\a\ã߯:_]zû«C£\Öõ\9a\ØL½¿tH\ãØ·Í\90q\Ú\ËM»j\9a,d\93m­e\æD·5\å ¢fA\ 6\1c¹\Ï1\8d\98\88\88\88\88\88\88\88¼¿\97øW\89{\ 1¡\ßq\875ñÞ¥\Éü\7f³À\95U}©\îT\Ñ.ª,k\æ\8f\99\18\80\9478m\90/q\15Àx\88ñg#\Ëþ\ e\146û\ç\è\Ì\à^M·º\Þú\'\Í3úûa%§\9c\Þ!\ä\n\Ë\1dÿ\0\8f\äJdiFt*-\8c\97Qv}iövE\13F\édº¦¨\84\11B\8bR69Ò\85©\8e¹økõ*ø\8f\ß[\Ì=E\×õ\8d¼\ï1£\ß\è|k\ËZ®\ï¢\î±\n\È\ì$\8d£\8ewi\ÚT;\'\ 5±¢¶- \81\ai\0\ZXUò±\ 6M\9cCÉ¿©\1e\92\b\ÔZ§\90\13ü¹\Ä\18¥«¯\83ºs\'\12\ e\ïMmw\n0£]\Ú\ 3\8ba\16\Ïd\×\Ý2v\1f6%%}\Î\Û\1c\ 3\É\á\Z\â\'\Ò\13\17%yc\Ôe\ã7\81\æG\89Í·ý\93\âQL\91\98P\í7\î ö7]¥\9d;\ 1t\8c¬¶\9bÇ­\85o! a\n\æ\Õ\16k\ZÁ\e\äüdD\Ã}?¬þ}|Iö\Êõ\9a¿\14w\1f\8f\à\ìòl\eWY®ò\94-\8f\86®n\æf.f\95´p¹B\9fU%°c\ÅnK\"\\?¶#\Z\Ã\ã\as¡\Í\Äm°\êÛ®\9b¼Au\9e\93¶\ë;\85c\1c\Ö>\ÃV¾ª\Ø ±\ï\Ær\Æ:]L¹q\Ú\ça®\Ë[\92c.\Ã]\9cc>\Ù]\9d\11\11\11\11\11\11FS\Õ\1d\ä¿=\19\èm\87\ fñ\î\Âú®\7f\í«-¸\ßP%M\Îj¶mGBüG\7f\8f¹\n¹ð\ì+¯!º¶\19\ 3GS}JR\1e\9fiº¡t\81´2>\Æ\Õ\aQQk\7fkYCCYawywa\n¢\9a\9a¢\14\9b+[{[)\"\87]YY]\fF\99>\Â|\Ã\ 6,(QBY2¤\94@\0\9eWµ¹¸\ f\Ó\ï\â\8b\85\Ò\Ív>\Ó[S/³\\\ç\ 6»{ç\9dª$_rG<\97Ì\99©\è5sd\96L\Ö\Òi\Ô3\áÀ\90Áº¶%­\ë,/MEW>d\807|\88\88\88\88\88\88\88\88\88\8b\Ì9k\84ø{\9eµ)ú\176ñv\83\ËZU¤y\11,5nD\Ô\èöú)Q¥µ\8c\96\ 2\Ö\ÞÂ\9b\e\"\961\fR\99\81\á²\ 4\b\ØxýÛ\98²y\1fô\8ct£²±owþ\9aÏ\91\1ec\94G\ÌfµN\ 6\\p\rÓ±ü[?\rüyõÆ\97¨\95°k\äÄ®&\99}ER\Ë\vS\\]T\Ü\18Oa¡)»\87˯§Ë°v\1cg\1f\91ù3®w·\98\91k\10\ÚF\É:ó\82¹\96®,ºqX]\Ô@´\89\8dKlp\9dYO\ 2\ÂTú\b\e\8dEik\98fVW\\V\96t\Îü-z¨¸Û¸7ú¯Z»\Í_¬ð\7f?]\Z\ 6½£rMQe\87\8b¹Z\ì\á\b¢V\Ê\Ä\âÉ\91¥m\97\16\ e,\nÚ\99²¦\×O>jÁ\12\êu\9d\99\ãA\98°\8a)\ 2\11ÀQ\98\ 6\e\f\13\ 5\í \8a\"7\ f\19\ 6Fe\Ì \È\Ça\Ì{s\96¹¹Ã\9b\9c\ã8\Ê\äDDDDDU\14ú ;\87s\Ú\Ï+\9c»®6c\89¡u\92¶¯\81t8Ñ­¤Î¨\93\8a\9c\97eÚ¶(\Õ\æc\ 3Qcm°l\'«µ\b2gJƹ\ 2A\8a<\å\90adÿ\0¤¯\Ç`»SÞ\99\9d \ä\ZY2x\97¨°\19²Ò¸ñ\9aú\9d\8f\9a-2\bº\Å1]&,¸3\85­\ÔL\9b±\ÚV\99\83.\1cj9\"8\9f\86|\í7DDDDDDDDDDE\87=\ä\è\9f\\¼\86pFÁÀ\1d\93\Ñ\ëö\Í^É\87\97¯\Üd\ 3fË¢ì\8e\8cX\Ñ6\9dFݸlÊ\9bh­&Z÷E8\9b,\1e\á6}ð\12\86\9f\ß+^2y\9f\Åwjv.\0\äø\96\16Ú\85\98\8d´p¿(~        \ 3E\É\Ü|i.\f{(\13X&\Â}\å\11ó\8a\8d¶¤Y\fº»&\ 6D\88\10¡Z\Õý\ÓHô­yÀعö¾\1f\8e\Î\Ön\ä¼\åmB\8aLοò\ e\Í//º\ä\1d\1fl\Í/`»\9b#\18·\Ûõ¸\ïkkd\1dÏ»\Ú*þ\83\98v\97\106+\99S\80DDDDE\ç<Á²\eN\â^RÛ£\1dѤj¼u»ì\80\92\Çe\8e\8ej=f\Î\ÐFkñ\9ce\8e\13\ã4\8dv3\8c·-÷\Æq\ì¨}\ä-\ëa\å\rÿ\0x佺H\æm\9c\87¸l\Û\Ö\Ï0Cp\85/a\Ûn¦\ß\ÝI\18\9cò¸c=\95\84\92°n!\1cÆ¿\r\Ëß\9c|³m\9f¦;¦\9a\ÇRüTp¶\ÉZI²6\î\ÔE\87\Ù\rüó\7f O\1d¦\ßO_\ 2\86¨p\ä\10\98\84\ÊMV®\9e³#\8fôG\92H\ï±$P\ØL\9cCHU\11\11\11\11\11\11\11\11\11\11\11i;\ÏG\8c\Ýo\É_C¹\eM®ª¬\1f:ñ]e\97\'pf\Îh\ãdð\íz\Ýd\édÔ\8d\9cѨ¶ø\ßmU®G\12\Â@\84g\12º.\'=\84U\nqW%òoYy·I\å=,öz_+p¯ Vl\95C°\r\95\\ê\8d§P¸adR\ß\×0Õ¶L\8eY\11$Rl\Ôr\v\15ò\ë\ÍcO9­\19\Î5w7CûAK\Üþ\9eõß³Ô­\1cvs\17\15j\e\8d­f\ f\f²(ö\v:x¦¾¦\9e8%4xs Yº@\Ï      \85#c\ã,h\Êadg.[\"\"\"\"-nù\82\ä9üO\âû½\1c\89V\ïk-S®|\83e_\8fµÁû&ÿ\0\eø\ÑC\935¯p\Ús\9d\81sð\Ç\ç\18&sñwþ\9c\Ò÷Áº(9C\9aø\7f\8d%2C\ãr\')qþ\8b!\91\1f\91\Êx6ݲ¢\80Í\8cL1ùd\8c\8eÁ\Ø\vð\Çe\84\Ë]ñw·¶oyд\Ê>:\Òu=\vZ\87\16\ 5\ 6\9d®\Ôku1\"F\14@\n\15D\10B\ e[\1c?\ì\Æ\â´?q}²ì¼¤{\Þ÷½\Î{»j\"\"\"\"\"\"\"\"\"\"\"*t=Eý<¦é\87\95\î\Ã\éºÁ\ÆýO\97d\Ã\ìn¹\r\99\92GT\83\97\ç\\[]Ö\98ò^ì\98\8cÛ¡lr\9a\Ø\â\8b\ 6\10%\86²\ 4\82\17\92k^\8d\Þd\Æý\â\çm\âü\Ç8\ßÁ\1d\8a\Þõ\ï¸ùn[$[\Ô\Z~Ec¢|Jüb\18\89~a|H0\9bó\9b9\Ùk\Â\à\11\Ò\ÕDDDDZ©ó\87¥\Ë\ß|Jw\ç]­\8ai¶\ä\ë\9e÷>\9e,|û\18öU°q4\11Ç\8c¹\83ve4$\8b\9c\e?[p|¿9c\98\Ò2«ÿ\0\ 6\1cw\ 3\95¼¶tcG²\87\16t[.bÅ\97\Ñ0_lf\É\Õõ=\9bk\83(\8dø\138\Ì\19Ô\91§\f­c\9e\ 2\Ça\87\8f\98Ú®\96DDDDDDDDDDDDUÀú\Ûø\ÓZ \ì\çJùJ¾¬\0\Ú9#\88yC^\Ùn0!6M\94\1e:Ù´\çk°Jv±¥$j¦\îV¥\8e\12¸\8d\ 1­&\10yn$¹¸\Ù\'¢A¥\ÇJû\8a÷78\ 3»EJÑ¿\Ûôâ·\89õl\99¸Ï·\ï,cÁ\9c\ã\ß>\ß<~±\ïû\9a\Ò\"\"\"\"\Æ\Þ\ãj Ýº\9d\1dZO\Ç!¶\á.J\13\9añ\à­&A©Z\Ë\18\9c<\å¸\Î\fH\í\16]ûø|þ\7f\aü~\ e©·\ÓM\0\Ö\1enú\'\81\0\86dM¯\95\ç\És\ 6\â28bð\a+½§3±\8c\àCü\8c\80-!2\Öý\å\bñ\9c\90\8ck®$DDDDDDDDDDDDPMõÀ\ë5\î\á\î\84\î?O½¨y+\995\9f¿8n~\15òu}F\Ó\éc¾\1f\92b|É\8c\93\âÿ\0¨Y\Ã1\91\å\Ù\Í\1fF®·\ 6§\Æ\ eùw\Z\10c\ËÚ»#»Î±\9214d°5m.½H\ 3\È#[\87\18\81\89\0\11\18÷\å\Îhc\88Xv\18Ƶ²\áDDDD^[\ÎQq;\859\86\v²\æ¶g\16ò\fW9¾ÿ\0,bF¥n\1c\å¾ß¿\960ÿ\0|{c\ß\ß\Û\Ûöª¥ô\9eid\Ûü\Ëp\ì±dmv\91\Æ<ú9\äù\7fH\âk\f¤.\19\96µ\ÙÁ\n;÷\ 1\9f¬5\Ù/Á\Îk\1c\çb\Ú\ÄDDDDDDDDDDDE  \8f[\9dn\v\ÓÞ\97\Ü}~ù\83\Ù]ª·\îöÿ\0/ù^/¶\95õü¿¾>\ß\áp\ïoõú}ÿ\0\Ý\Â\Ï\ fH\95~!øiФ`\7f\f\Ûs\Ï<Xe\ßû\Ù\1e\ e¯\ìþ\ØþØ­À¿\×ü¯\ïþ\98\93º\"\"\"\"\ê\Û\Ì\11Y\é[\85iÿ\0ȱն\b&ÿ\0ò\97S.9?þ     \95\\G¥+\82\ë5\8f4\9d\Ç-?\Ø\n~\ 4Ò¹Ã\8e*!·ú\82\Êû>Y\ 6¿\ 1\Ïq2\ãý\91a\é\í\0½ß\9fv\È7\Ûò~\19\9cY@\88\88\88\88\88\88\88\88\88\88\88\88¢¯\ë\ 3Ñ\83±x\9d\9b·\9a\e$;\8f\8c§E\92\ f/\81\'c\Ø!\ë\9fhð\ìý\8d\É\âÌ\97\19\es\ì\Ò\äosp\\a\Ù3\éu\Ñgh\1e\18z\Å\ 2Àoa¶\e\1e\82\ç³\á\93A\Ý÷«\8d\96¼\98\Çû\Ìl+\0\ 5\8fÿ\0}\82nT\83\11\11\11\17ø \Æa\90E\e\n\"±\Ã(\88Ö¼d\eÛ\96¼dc±\96½\8fnr\×5\Ø\Ë\\\Ü\ç\19\Æq\9c\áA7\Ó\17A\1e·Ì\9f\9clG\Æ\ 6*\ eG\ä\8a\b\Âo¶\Z\Ø\æ\í?#üq\8cc\ßô\ÆÒ\89­ö϶1\9cÿ\0\7f|)Ú¢\"\"\"\"\"\"\"\"\"\"\"(\àú°\ 1\83xJ\ìi2\Ügñ¹\ 3®\ç\Æs\8f\Ûr\îp\Ò#|±ÿ\0\fûH\Ë}ÿ\0\à\ì\ãýVsx7«\rW\88o\1d\10\86,\Ê\ê\Ï\16Z\e#c\e\93\ZÒ\84\13²R\ç\r\ÆHL°\Ãg\Í\Þ\îø1\8cò\Ö7\Ûk\b\88\88\88\88¡\Ñ\à[C¦\Ðü\ãú\84i©\0xð+ù\86\9aXG$\8f1²]Ë\969kl²3\88Owe²,e\Z@\ÚÏ\80\ 6\"±\80\18ÀÁ\r\93\17DDDDDDDDDDDDQ\âõO\Ñ\Ø\ßøL\í<jÀfA\à_ðe\áÇ\875¾\Õ\Ô\\Ù¢\ÚÚ\9f9{\9a\ßhµ±eJ\Ë}ò\çý\1f\ 1µ\Äs\e\9c\ãð±\18\91<Ix\ã\11\1dòsºwÁ\12q\9fø\ ef\85O0Mÿ\0 Gc?\é[:DDDDE¡\Ï\Z\Ýn\'\14ù(ò\ëÌ\92ª[\1eG=se%¤;?\ÆÀ\9f\"\8f]§«\87\16\v\8f\86\ã\ï\10®e\ì6C\Æ]\9c0Ö²²\Ö\ã\ä\ç?|h\88\88\88\88\88\88\88\88\88\88\88\8bWþf8>ϱ\9e6;I\Ãõ\ 5dk\r\Ã@\97_\16a\ 2\ÙC\81(\8fh\àO|W\Z;¥6%\89!\9dÀ\11\86G\á\99ø\948\ÆL<\98\è\æ\8aþ1\é\ÇXxù\ád|iü\1d\Æ\Ô\"\bþ¿¬q`jõÂ\89\86\àyø1¹\89\80»\ 3ǶE\8cýnk^\×7\19P\88\88\88\88\8b\áT\ë44s®¬ªk#Á\9d±Llû¹!û>\Ë\19\8cÁ0Ó\9f\æ÷7\ä\Ü\14\9e\ß^\18\ß\ëwôû¯º\88\88\88\88\88\88\88\88\88\88\88\88º¾\ç¨\Óo\9a½Î¡°\8c¦¦½\8b\88v\ 2\ 3\Ú2¼80\8f\8c1\ï\19Z\Üý\81f}ò7c\Û\19ý\7f®>\95\r4\1dr\8e\9b^¬k\Ù[CS]M^\Â;\ f# \Õ\Ã\f\18\8d{\Ú\Ö5\ÏÀ\0<9\Økp\çc9\Ãq\8f\Ö>²\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"ÿ\Ù',4,0,'','','',''),(83,6,24,'9305bf01c3d40ea6','10196270915bf01c3d3dcff106620826','2018-11-17 13:50:06','2018-11-17 13:50:06','','','Contact Photos','97971161215bf00e801fdd7464746900-4.jpg?ts=1542459008','image/jpeg',80,80,2356,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v     \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0*\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b \n\11\12\13\14\16!#\15\"\18BCÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91ù\ãõ1VüwZfº\9b\bJ®\Ø\í¨!¶\9d\85m³e\ÙMg Ü\91\13\ 4\a\14|\\qb½tÙ\99\11ö$\15[Q\àÁ\Õ\Û|\'¬\8fJ\18¢+\18\Å_\8aÎ\9fy®ód\à]±î§\91~\Ü\èN\9e\ÊM>et-e°¦µM§s¨2T9¸\Õ4ZO\ë4\Z] W\9a~?;\ 6J³&\Ñ&\ eðu\êôç´\84´f÷}v\ë\Õ+¬\9a\Ö3V\Ð\ì;j\Ó\v\1c\ç\ä*stn]\9d¼.\87\98±\Ç\19\â       ¶\í;E¦\\V\1eÀ\Èu0°\ÏEW\ 3}o¹\e\f\16H{\v÷^8\ã\8e9\13{\á\Ù\ 4õ\ 3¦\1d¢\ìòE\1có´v\8eØ»\ e\n4\Ì+\"J\Ú`kg¿R\88+\b\ÊUøò\Öl\Äƽ\9c)\1eÍ\94¬üÑ\8c|±Po\8bÞ©\Û<°yCÓº\7fhX\',\98\Ý;Jõ»\13t0\×U?-M\85̦\É\ÛR\84JcûX\9e·\8e\19ðqòXJ¿\1e\Ãc\8f#-ýh\Êqt\15F£X U+TjL\ 4MV\9dN\81\89«\Õ+0A1\e        ^®À\80\Ä\\4,Lx\Èlp£c#\Å\1c0\85a\bi\81\Ùm´\'      N1\È9\äo\Æö\87òa¢¤t\Æ\è2\ëX\90\10Igµ\î\Æ\×Ö¹\êå\92\81d\91dl72\88ø\é! m\Ñß\92\ 4z\äk6\à%b\ f`ofS\1f \91dÄ­\v\ 4òe\é\ç\ïýã­\97m©rÙ\9aÿ\0Ll@\ë{?D[\ìÓ³Ú«h\ëb\10\f\94E¯]\ae|õ\ë\é;e\1eB.\ÉO³W\90\ 1 <T|}\98Ixñ$ \9fµ\ßLm\9a^û\Ô:»xk\89\ 5J\ëýÁ¯©\Û6\95\"\â\12Ó¦U¯5øû,\13ï²\87\1dK\ 4®6H\7f\1f\ e/,?ö3\95+(\Îy\é|q\Ç1\8b\8bVØ·?\8a>þkÚ\90\84H\Ù$úͲ&a\ãDK\8b.P\Ê\\Vn\è\8a\r¶³\85¼\\\9akª\0Vq\9c\á\â\bm¥%I^S\9d\ 4ý\19¯Dµ\å\8aþ\83\Ö\Ú\ f#¦;q\984º¶\13ö\9c\9d\99¤\b)±\Ò\æp\ê\Ê\ÄS\aº\94\8f\î\æ\ 4hÕ¯\1fJ\1c\Î-&\ã\95Mz¼g\é\97\ f2\12\90T\ 6\98\90´V:ó£©\9b\fx\81\Òù¥lb\9cµXc\Ã!\ 2\8d\96ý\ eѯ\ÃB2\9c\95\86\90\188Gô6\9eX\ã\â\ãE\Üz\Ïã\9f¥:\1fb6H÷\íg\ÖýY^ºÇ\98¼­ø[^*\à\9d`¯)Y\Â\7fÒ¹*aPL\ã\Û\1f\16#\9bN?\8crzq\Ç\1c\â}\86Ie\á\88i·\Ç!§\18}\87\90\97Yy\97Q\96\ÝiÖ\97\85!\Æ\ÜB\94\87\10´\å+Nr\95c8\Îq\Ê\Ä{\8dÕ½\8d\é óA¥{³®ª²¶>\92^v}\8ev\8c¸D\7fXz\êò$\8cN\ß\ëÄ\82\Þs\è\Z\ßI«\Ø$M\×k\92y\"X\"À«\Í$\97\ e\8a³\v\11en \ÛZ\ï}j\Ý\7fºu%¢:\ë¬ö\8dN\12\ïFµE)j\ 6r·a\ 5\99\bÃ\9aC\Èl\81\ÜX\ï%\ 4\86SL\98  Hx3\18\1ei\11\Ûȧi\b\éGF»IÚ #\ 5\99\9b\Òzv\Ùo«\Ä\È%\Õ\Æ\É\\\Ò&\"\éAJ¡\87\19}Q$\Û$a\9a\94\Ã.´÷øõ\13õ8\87>*Æ\8cÞ\96~\86\ f\äc´ý\8aò½\ÝB\Ë\Ý\16m]·cÈ¢~Ú\94\98\r£²S\è\Å\î\7fcO\n\9c4\13¹\Ö\11E\Õܦ@ \\\Â\ 1)d\0\á\ 4\aôøv\15cG\1cq\Ï\ 5\ì\çft§O4nÁ\ìganñ\Úÿ\0TkHe\ÌY\'\Ïù:óªS\88\Z6\12\12\91\93vIù\'\86\88¯AG¶\éòÒ¥\8c\18Í©n{\ã\0]_\ì\1f\95ÿ\04\84\ãv\ëk9~,<l\1e{\ØÖ¶\18\9a\85R÷\Ý>\ËWX%c\æÁ\r-}\8b°\Ñ5EJM¦²ðV\88ªÁ\ä\f\90\ 5_\ã2\äø¹d\94ñcÓ\8d\81[¬W;\1dL¹w/\152\r\90\89\90\îV\Ñ\Ø\1d\8f@\ÓRL i\19\Ø\ê\9eÄ\9f\93\×5©c\ 6m#8õ:\95\\a\91~B\880\ã-m*tQh\94\9d_M¬k­oR­Ð¨4¨Xú\ÝB\97O\85\8f®\Õ\ë\15ø¡\Ð,l,\f\14H\â\Æ\ÅF\ 23hdP\82\19\91\Ùm8J\11\8csÇ»y\×\n·oú»¿:½t1ø\Ê\Þö\ÕW-jtȬ\à\82\1e²\Ã\12\fe\8c1\Ô\ã( \Ê\ìªÁ\9c\10w\1dm·É\8f\15\86Ö¬óO¯N\Ƴør\ß]\91ñ!\äJ,} j\ÙûQ\8d­\Ö=³g\Ê\â´öó\98L\14u*\É\15H\ØÒ\8d\ 3\ 3)û$-~\933H\1dd²k\Ò\19±\Ôf\86\87¹°\15x\Í\ä\12¤­8RU\85%XÂ\92¤\ç\19\9c{\ã8\Î=ñ\9cg\1f\Î3\8f\ã8\ç\Ï\1csQ?-\94Ù¯*~j:M\âJP\ÉDuO@kw»½Û\98\88Ò\88 \9b\8f\ÂD\Èz\Í^W(q¥8Ê\83Mv¢\ 1\82£\87\Ü\ÖY!ó\93\"\87pm¶a!!\ëP\Ñ5\Ê\ìTt\15~\ 20\bX8Hp\87\8d\89\87\87\8b\15 c\"¢\ã\83m\91\0\8e\8f  \86D\b1ZhqFe¶\19m\r¡)\Ç\Ùñ\Ç?!v\×\Ô-\99\ 6\ícc\Ò*\e\ 2¶úþ\×\ë\×j\Ô5®\r\ç0Û\8da\ÇbgB<\a\17\86\9du¿\9a\Çʾ·\1cG¿\Åj\Æ`·d|h\é]\ÍXùi\ë.\Å\évâ\80\87l\rsºú\9bn\9c\Óòµ2#Ò\97!E°\Ñ*2Pú\ëgS\Ç!\81Z\91¥\Þë\92±\æ\Å4¸ð\n\86uL\9c4Añ!\ß\Î\Älݯ\Ùÿ\0\e\Ýýj½ÿ\0;zHd)\12û\ 6©\Z\Ü%[²\9a\91?K\Þ0P\83²8\912E\8f#\0\å¬\0\ 4\8f\8dmv\9aó¢\ÇF\9eô\Ô4>u¸\æ\ 3úÉ­G\13\Ô7\å\ 3e:Û¥\18\ïK:@\0\85¯\å\94E\alv\ä\ 1\91m{ÿ\0®\11 F \16G\Û\1fú²þqÿ\0|s>\1cq\Ç\1cs\ 2²\Z\Ìx\ßRõceE\'\ 1.\Ï\á²\Ü-¡,!M¦`º\çnjQq¤\9a¤º\96\ß|peA\19µ)\95:\96\ 1\19\1f?­¶ð\Þz¸\ä\ eÕºý0\9eH;\99°S\1c\86Qy\ê\9fC#ñ&\96\14\9c\98]Wa÷¬SF[ÿ\0RP\ë¢\bl2\96\1dul²ð\ÙV\eK­\áSÇ\8e8\ã\8e@\Ùz:W\äò\81²\15\10¬©\8e\87\í\ÊSs\Øo?\ 4~G`t¤\ã\91+w\1f\14\18l\Æ\ÛW¶U\86\ÝS~ÿ\0\17\97\1c\àH£ \97\8c@\ì$²\19\1cg\ÊKM¤\97\11d¸+\ f?\84\á\Ç\19\19\vpv\96¬¡\95\94B\9bJTó\99W?\1cq\Ç\1c\ëd1T[g\ävrsC:\ee\å´\ä\84\nû¬¼ð\èw\Û\æ\96]xv\1cq¼gâµ²Ò\95\8c\å \Î;<ÿ\Ù',5,0,'','','',''),(84,6,24,'9305bf01c3d40ea6','10196270915bf01c3d3dcff106620826','2018-11-17 13:50:06','2018-11-17 13:50:06','','','Contact Photos','97971161215bf00e801fdd7464746900-4.jpg?ts=1542459008','image/jpeg',48,48,1488,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b        \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 1\ 5\0\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0  \11\12\n\13\15\16\"1\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿\ì.\é\1eY\Ö\Óû\8e\190\9c\ f\ÆK\ËŤ*X2 \7f|\Ë\Çf\Î\ä\8c\12Yys\82G!µ+\15\92\91c\91·Tଲ´\Û>¾\90\99\ 1³I¦\Ü\Õ]U¢\ 1n\å_Pf¿\89\Ø-5ô\e\84a.-¸\é\é\145\87\12Û®6B]e½W\87\87\91\1fò\1e\ì]\81\Ä~©:\'jjy3 6e½5\9d-M´G>\à\92u3v¬ªk²\Öx\93\Zøx\19¸J§\8d\82=\85!ð&\9b\8f1\87\ey\86Ö\99\íø\9cz\ì \è>\10®ö\íª\b\19¾\8f\ì<\Ø\ì¯]e\Æhû\rWQ\85k\93\86¬Ube\88ýb\86\1e\Þ\ì\17óû#\Ì:Ó³\ 4J\Ã\r\'\923\ 2\1e[dÿ\0 »\'°\ÞR\çÒ½\84ð·RZi¡sÓµ¢w?9\ÎÔ¨·\1dgt¡\ÊØ£«\Ä[@\1eZ¸\í\84Ih3¦Az\Î&f\9d\fº\Æ\ f\92\8dr\fø\959!@½Ew\ã~\Ìx\'Ju\89UÀ\ê\16\ÛX³U}\91Y\8dy\ç\âb¶5\ZX\8aÝ­P\8b\'\ä¦à¥\8d\r3Ð\82\96\ 5\83\15* D\96k\ã¬\Ç\ég\87\92\×\Ü÷\v\Ê{\16õ\É\Ñ\1c\ËUX­\ìy\88\10\9f\81C#gk©\16-\958r\8b\Ï\ÊB\Z\ÌTs\95bNs\nh&&\Ü)䩦V\9c¦\7f\8d\ fJC\í\ fZ\Ô\ e\88MC¢xbR\É\Î[óWM°¸\ë5FR¿m²»P8Ø¢s\83\e\12\91\85p\97\ZCY±\ÃXÀk\í\800¥r¿É\9f¦-\Âó\96¡õ\9b¥`\139\Ð>\Ðö\1c.\8f«\9e\1e\16¡I\8c¹\Ò     ·LÉ»ôyܪaù\bºò\7fHgp\1c)vI\7fº\v\8c\ 5\92«Ï¬þ\17§ú\à\â­\'\È\ÔùuY\7f\88\"I·Û\96Â\85þa°\ìò\ 4دVF\ 4Z\96\àQò\16)\ 3q\f\ 3®:ð\10¬\Ç\ 4ó\Ï::\Ý[\ã\ç*\Þ{\9a\87κog\ï}¡-\88M{¨\èöM\81o\93ú)\×\a\83¬Å\91(b\ 5a\1f+(\â\90>\ 4\8f\11¼e\Ò\Î|q\9aN\\u8̶\ã­Y\Ò\Ý\Å\ 5    \Øý\Ëq\Ø\Zò\91³\Ç\16\é\Ï|+®\í\ÓZþ\87­5<\Ò1\'G\96\è9\Z\99±\96½½·\ì\95÷¢flpV    \Ö(\15GJ~\11ªN\rÉ\89\16¦k\8d!¦ôù\1635^¬ k³®&7#o\91§T\á+òv\É\16\9c)Ö¤,òQ\81\ etùͺi\8e$\Éb\f\'\ e\16Jð\ç\Ù÷r©\á\ìÿ\0\Öü¯m\15\Ì[»O]àµ\9fYñ>\à\8d\Ü\Ú\ 2\Õp\8f6S_N¾\83á\89´k\8d\90\14N?|MN\Þ4\18,ª^   J\97\821\84\16 \å´\éb>\Äl¾\Ä{\9bhU­\83Õ\9a\92Û­)jd\ 1vvÓ¢\97\1f¶56§\95)öBT\9d¼ø5\ 3±£5\ê\8cwõ\\\Ø&kFk\Õ\È\Ü\âBòMXV\Þ}\ e\\d\9ct\Ôl|\Ì9\âJD\Ë\ 2$\9c\\\9cy\r\16\ 4\8cq\ì6PG\ 4[\v[\ 4\88Xδ@\Ä2µ´ó.!\ÆÔ¤+\19\Ì\éö\á®\ß\Û|\v·µ\8bH%\æow>p«\Ê\n+yq\Ã\ëòý=¦\84²Æ¸\9cc?õd«\îI\80\8c¡°\È}k\ÆP\95c4xa\87\fv\ 4\11\96\86\14VZ\18a\ØBZdq\ØBZe\96[F0\86\Úi´¥\r¡8\ÂP\84\á)\Æ1\8cc\Ïo\ f3öÚ´\ 5\æ«e¤\Ú\âÃ\9c«\\+ó5{$,\88\95\1f/\ 3?\1cDT\ÄY¼\95²@gÇ\96@¤°\êTÛ¬º¶Ö\9c¥YÇ\88Ǫj\Ô\í/\×\7f)R\ìfH\1d)M\Öm\Ô\7fZW.\äö\ãk\13\ÓppA?\97Ô·\7fó`À\8e\8ek\nV~¬\n\ÚSýp\9f\1dM\81G\8aصrj\93Ku¸òe+R\Ë[\18N]Á5k4=ª?\ë÷\ÆSñ\99\bQp¼ÿ\0¸FU\94ÿ\0o\8f6~\1e\1e\1ebµ\Õ\Z/[S!)\10®¾ô\\\v\e\84\19{-\95 \\\82\92¼\ãýú8ZÐ\9cÿ\0¹BSó\9c\ç\ç>\7fÿ\Ù',6,0,'','','',''),(85,5,25,'9305bf01c3fdb20a','11789807665bf01c3fd8ccd829485384','2018-11-17 13:50:06','2018-11-17 13:50:06','','','Contact Photos','63436871415bf00e80dfe9c308856934-4.jpg?ts=1542459008','image/jpeg',300,300,11008,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\ 1,\ 1,\ 1\ 1\11\0ÿ\Ä\0\1f\0\ 1\0\ 2\ 2\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\n\v\b        \ 3\ 6\a\ 5\ 1\ 4\ 2ÿ\Ä\08\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 1\ 2\ 3\ 5     \ 1\0\0\ 3\0\ 2\ 4\ 5\ 1\ 6\a\b \n\11\12\13\14!\15\"1\163A#BQ\81\82\17\18$%2Saqs¢ÿ\Ú\0\b\ 1\ 1\0\0?\0\9f\Â\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"/6\å^b\â¾\f\Ómù\v\98¹\aS\ãm&\86\14«\em\97\85KY\ e\14!\à\Ò\Î\ãK òV\Æ\16~\Ó4\f+\Æ/r9¸f3\9cDëº\9e±®\8fð±g\ë]L\ã\Íϵ[d_\å\"¾þW\äñ¿\19Ķ¬\94Hx\8c\ë»x\12.¯+\'=­\91\ 2ûY©´­\97\18f0Hð\96\11\åF÷\98}`\1e\ 2\Æø<|\Þ\r\á\íRľ\Õ\15\94\ 1v=¢¢/\ÄyÀ\8b¸\ÛZ\83\13d´\í{\Û.%\ 5F2\1c²9#\93\181\ f©\1e\\ó?\åC\9b¤\96VõÞ\8e\Â\r\å\95ùMÆ\95¼M\ãG\a\Û9À£\ eO\1d·W\9aøag\Ä,\8f\"Q\Ø\á\8cx7\Ú\æa\Ë\Ìõ\ eòù6\ä-\96§Nл\85\Þ\Ý\ãq¾\90ø\Ôz¶¡\Ø.À\ì\Û-Ì¡\80²\8b\1e¦\8e\9bn\9bic!±£\9eI\ 5\ e)\88\Ð\0¦sp1½Ø\95×\8f\ e\98ú°9J\92£h\87\Û^I\ê\×\e\\Î\8b\996\1d\83\Úuý«x\95L\è¸8®«x\êú\83\99\90\94\87üV\Ñm©Ø\82P¦bH£· |©ñu\ÛJ\å\Þ=\â-KS\çNS\8b\ÌÜ\9bW\ 5\82\Ùy\ 2\1eº=^-\ÔϬM)\ 1T\É2\Þ1\12CO$\7fy\9eQ2Kaü\9e(¢#ý¹\11\11\11\11\11\11\11\11\11\11\11\11\11\11\14q¼\Ðú\89:\í\âþ¢O\16ñ\Ø\êy\ë¶WPKüg\1d\Ò\Ý\Æν\ÇC(\98@l<\9bk\17ò\7f\0\ ek¾º\ê8­5¼ù\Îo\Æ#\àÁº$\Z\Í;\Õ\äù¾G7\9fñ¯j¹\8a\ïs\8b\ e\ÆE\8e±\Çõ\Ï5/\19h\î>e{\aR\ÓA °¡b;\'N\f\8ben\18\ÓeEÅ\96c\19\â\Î\ 5¢\90¯\88\8fN\ßm|\9e˪ä\9d\80\13ºý\Õl\96\14¢òþ\ÑQ\92Zo\91[ &\9dU\Æt\ 6(¤J,\8a¼û\Ç\Û,\ã>\8a1l©\çÂ\83²ÁþDp\ì¯ñÿ\0\â+¢þ6õ\18\94\9dv\áº\0\î/\ 4\\l<½¶B\87±ò\8e\Ë2>\\|\Zf\×>9lb\Ã\f\ãÎ\93UY\fÃ\8dL9Æ\85\a-\8bñf6h\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88¢#\êAõ\ 2\13¡t6=:\êm¥|þ\Ø\ï\14$ÿ\0\16\82-}\9dw\ 1\ë6AÀ\Û9\Ð\1f\99 ±\ä+P\94\8d\Ö\é§\0\95µo\ 4«\8d\98\a\8b\ 6\1e·µ\Ö+µ\í{6÷³_n{\9dõ®Ñ¶m\16³o6-\8aòi\ì­\î­\ì\8eù3¬lgIy\ f&T\93\91\ä)Hü\ç9϶=\9b\8cc\1f\ 3\Û?¯\×÷ý\ãÿ\0\9c{\ç\1f¯ù\ã8ÿ\0\ï\vñO\a\Ó\Ï\é\9e\ eÿ\0\ 3M\î÷\91-\'.\Ôg\8e=ÿ\0\fõ¯e\86`\9a\â7\Ï/\83¸r\ÍL \8d\8f-­d\9am:G³\ãDx\ä\Þ\r·\'\Ä\rj\Â\Z:*mb\9e»_\×j RQ\ÔE\14\ZÊ\9aÈ¢\85\ 2\ 4@\ã\â0E\8a\ 60B\e\7fyökqòv\\÷g.s\9d\9f¬\88\88\88\88\88\88\88\88\88\88\88\88\88\88\88µ\ 3\æ\çÉ\86»\âó£[\×3\ ePK\Ì;§\ß\Ç\\\ 3®=\8d).¹&\Þ\11\9f\ZyÀù\10ðú]V\eK°l/\14À\Í\15\\B¾´r§þ<CS{\É\\\95¾ó\16ý¶r\8f(mw\e\Ç \ïWs6-³k¿\95\99v·Vó\Éó<\99\ 4ö`\Ä67\f\8f\ e\14Q\82\rt\10Ư¯\8d\16\fXñ\Å\Ñ\×\îs\9cÿ\0|ÿ\0§·ü°¦\89\éjðt\Î\Ë\ï\15þ@ûQ¦}ü\ f\Ç7\"7\ 1\é×±2øü\9d\ÈT²\ÆW\îVUòÃ\80\17P\Õ$4\7fÁ\17.\96û;\àH\99\88µÃ®£·\9deh\0\b \f\14\820G\8e\ 1° \8e\0³\ 3\10B!µ£\10\84\83\e\Z\Ö1\8d\ÃZ\Ü7\18\Â\æDX{\Ý>øõ\7f\Ç\Ç\16F\æ^\Öò38\ãB\9bp:\186,¤»Ø§\ØZ\90.> \Ö\Ò\ë\Ðlm\ì\å}mùb%|93\1c̸Ì\8eð\ 2IC\1f\Înõ\89ø·\ã\È\í7\13Uóo`\8d\î6\12&½¢\Ùññpò\11\Ís\ÄNI\87A\1c\91\ÄÏ\81\18\123\8c½\82\88G1¸&,\Äõºu\ 5ò°\Éý,\ì\8ch_/lÈ\89·q\84\ÙXg¾?«\10\Íe^,»\Û\ß?\ f\Î\Æ=ñ\8c|ÿ\0~ø\Úw\ 1ú£¼:s|\Êj;>\Æ\Èá­\96\Ò+\8f&\1f/hÛ¶¥®U\95¹\Æ?\Z^û.\81º\83I\9c¼L\ÆKf\f9\Ï!\19ò\8b\1cò\99¿\8dKrÔ·\Ú8\9b6\91³P\í\Úôö±ð\îµ\ËX75\87\Ã\Â#á¬\99\0\Ç\aÙ\81\1cDx\\ü\14m#>ln]\8c\88\88\88\88\88\88\88\88\88\88\88¸\ÈA\84d1\88Á\bLy\nR?\f\18\Æ\Ìe\Ï!\1e\ì\á¬c\e\8c¹\ïvp\Ö7\19\Îs\8cc9U\ez\9aü\87\Ùw\8b\Èþÿ\0¥k\e#,ø\'«E\93\Ã|s\Zª\Ï3h.ö:¹%/!n\í\ 3¡E,k9·\å~ªX¦\91`\18ñõ6L\84øD¸±\89\88\ê\"\Ø÷\8a/\1fÛ\87\92¾\íñ\1f\19>\16©mhí\93\96\91_ :\8f\19\ë­üý\86|\87\8c\à,s[å\91µ\9a\É1ÿ\0$𬮣ٺ\14\98UópÛ¤ø\87\89´\ e\b\ã\r\13\86ø«[¯\Ô8\ç\8du\9a½CMÖª£\82%}=\15<vÆ\87\ e4h\Ã\fp±­n^\æ\0!\ e\b÷ýA\13>,Ç£¢\"ñ\1e}\ë_\0ö\9fD\91\Æ=\8d\áþ?\æ­\ 2L\80\Ì&§Èº\Ýv\ÉO\89\91\È3G\98\18ó\Â\\Æ\97\1c\ 4\98òc8G\ 4¨ñ¤\88\8c<`\10pHòù\é\14n\9fM·ö\a\Æ=\85͵mh\rwyÕ­ºÑ\96\96\83\0\ã\ró\9dÅ\9b\85\86b\9d\ 3£J\99\8d{j\97bs\16Í\91\á\\VV\Õü\v\ 3\9ak\8dr\â\×^\Øj¬¨¯è¬§S^Q\ÜÁ\95WqMqW(°l\ê­k\'\b\13k¬«¦\80ð\çA\98\0Ê\89(%\8f C(\Þ\Ì|Õ±Þ\83y]\ï\a\8dͲ\1d\ßZy\92ö£Qu\9c{\r\8b\88v9\126\ e+\Ú\Ø\12H)cYj²\8f\81Ö¾Y¤fD\Éú\é\é¬\'H\8f\ fù)3¢\ÆlWZ#\á·Î\87\\üµhÆ©«\fn&\ìÖ§S\1e\7f ðe½¤s\È(\9a\11b\Ça\ã\Ù\Å#$\íZ\9cinpó)\ÑÁg\16\9e\f2¾Th;\ÊDDDDDDDDDDE®¯,\9d¹¯\è\ç\8f^\Ïö:XbÊ°\Ôx\ÞÖ§U\812fk£Yî»\8e\e©\ê5\8f\9e\10\90\Éa{o\n$S\8a4Dzi£{D\92ß\90\9dI$¹r§Ê\93:t\99\13gM\90is&K1$Ê\97*I\1ci\12d\È3\9ec\È9\9eò\98\Å{\ÈR=\Ï{\9c\çg9þtV|ú?ü~?¯\1d-\Û;\8fºUÏ\81\Èý¾°\89\9dtS\ãÈ\89ø|\'¦É\90\Í8\91\86I2bL\8f³\Ûʸ\ÚAo\bpI*\14ø\15\11\Ìúh¦Ä¿\Ñ\11\11\14(}O¾\ 6\ê¹\ãD\Úü\85u7Mü~r\ã\Ê<Xso\1c\êu\99yykK«ø\à\Û-U$\ 6\áó·­^\e\88fÿ\0\e\18\17\Õ\0\Í;\ãZþ5\16(+eE\ï=e\ì¯0u\v\9c8û°¼\13´\ÉÔ¹\'\8d\ïa\Ý\ÓN\e\äf\ 5\80\9cd\99C}\124\98\84²\×\î@<õ\82\Ù1\8cð?\ï\85*\15\80\8d\8c>ÿ\0q¯\92\8e\9eqwg8ðø\8f/`ª\15G!j\æ\Î\19c§r5(\Ù\a\97\19\ 1[\1c7!\99\9aÉ\98\ 6 \ÙB\Ã%UÈ\9d\ 1Á\98m\82¢\"\"\"\"\"\"\"\"\"(\88ú\Êù\Êw\1ex\Ù\ã\Π\8aß²7a9\Û_¤²n>¼81x\à\f\äQJË\9cß³\"dú\88q^1»\18q&\ 4\8f\1ceµz¢õ\Î\0\â¹\\\ë\Ï\1c\'\Â0ffºo1ò\ç\eñ\\;\f1¥\Ì \\\85¹Sj1\æ`n\ËZL\Å-»\ f\86;8kòÏ\8es\8ce^\83À\9cC­p\a\bñ\1f\a\é\Õð*µ~$\ã\9d;\8f(\àU\83\11«£W\êt0iB\ØQðÁ´\11\ßøy \ÂÁ\8d£kðÖ\8cm\Æ\18\ß[DDD\\\12¢Æ\9d\ZD)±Á.\1c°\Z,¸\92\829\11¥F\907\bñ\ä\0­x\8c\ 3     \ï\11\82V8e\e\9cÇ·-\Îq\9a\81½G\9e9\a\ã\ÏȦ\ë\1fNªm\7f\bö4\16\1c\Ý\Ä\ì\0\Þ\È5\ f¸¸\92\r\çO\ 1\ f,¦;\è67b\Ó\Ü0\ëj`AÙ«©*cf5S\9c´\ e\8ac\9e\8e\ eê³\88;«È\9d@\Ú.L\1dg³ú\91n4h\13\'eµ\91¹3\8f+\ç[\Î\15]\7f\Ë\ä[Ý£S\8e\æ\É(FLf¯QÁ%}a\86\ e\Í\ÄDDDDDDDDDE\ 4¿[þ\Ä\Üq\ fCu,1ø~y#\97v,\93å\9c\8c\8df±¬\Ö5\99o\ÇÙ¯\ e^÷a\Ù~rö\9d\Ø\Ã[ð\Î_]\Ú)\13úZ8\ 3R\ç\ß0\\,\ÍÀY\93\v\87t\Ý÷\9cª¢<#\91\12^ä\82®¾\98S\ã\e\19\19\â²N\Çù-k¿Ê\96\b²>$úr\"[¢\88\88\88\88¢C\ë\12\ê\í\8f2x\ä\Óy·Y¤\87*û­|\ÃOµ\ì6!­\ 4\8b¢q\î\ËOq©\ÝW2n\1e)`«\81ioU³\Ì\Î\7f&(EK#\Þ;\v\aW*-\8fø\82\æ\É]xòq\ÒnU\85\1c\92¤\ÕsÎ¥¬\8cBú¾M\Ç%:O\19\12C°l\àn\fAn\ f\95!\8eùe\à      \18\11\Îk\1dv\Ê\"\"\"\"\"\"\"\"\"\"\83/­÷^    :ÿ\0\Ñ=­±±ù\11y\8b\955\ã\Ëþ¬\çé\9f¥RYE\8d\9f\ÞF\Üeõ³\v\8fl5\ïö\Ï\Ë.ÀÛ\86WB\8aZ~\8dmnlÿ\0*[\9e\ÐÆ\8f5º\ïV9*¶S²\ìý­\9f±m\Z\13\ëð\Æ|rÜ\8dÑ©->\×ü\Ú湡kXü\11\1d¤¨\88\88\88\8bR^xj\âZø{ò\12)a\11q\13­Û½¤w\11\8cs\81.°Q\æ\0Á\Ëñ\9f¬¸È\9c?\9b2\×\å\84 ñ\9fb;\19¥\Ñ\16eø\ë\Ò6nD\ï§N5=B´Ö·³;)\Ãv\"\88\a\ 5¤mv»½\Òl·³¿Û\90Lp\ê\èj,­\f6¹\Æ(a¼Q\84i\ f\10Iyj\"\"\"\"\"\"\"\"\"\"\8aG¬+\84 r\'\8a±ò´\91d³:ý\Í<}²Ö¹\84;\1d\1c»\í\Ü\1e4\93 \8c\17°\Ï\e\10ö3\Ç ¤\å\Ãl\891NÁ\äÁ\19\ 5Uò)rz46\81\×ù>\ä=I\â\Î_²õ\8f\11ÿ\0£\â7k\e.¤\'\a9\Î~xq\87°<\8d\Ã[\96\11\Ýó\Ës\86\14DDDDZBõ\18òö¯\Ä^\1d{¢ý\96ÀPI\È\Üq\9e)\×\Ú÷»%\95°oVpjk£\ 4\fa\nl\1c¯ür9­h£4ø\91 £\bÝ\9cÓ\88\8a\94^«\í\\ùå\8b\8d9^\f\ 3¿Jꦿ²ò®\Ûk\87\Æ\Ì8\Ö׺õÞ\91§U\Ì\13°Y\99}\9c»\9b[\b\'\8e\ 6\80S(D9s#fDaK¶i\11\11\11\11\11\11\11\11\11\11\7fº\ÍI\Ü^\98vG­WÌ\93ø¼±\Å;V¹\bð#\82M¤;¬×\92m\14º\86\11\Æ+@\ÛE\89\88G\È\ fô\95\Øvc\Ég\Ê9h\é\Ûu]\87EÚ¶m#m«\91Gµi»\ 5Ϋ³R\Ëȳ*\9fa׬d\Ô]U\É\È\b`fE}\9491\r\90\98¢\É\ 2ì\8c\8fg³³×\94\90=)¼Õ¬ð×\98~$\8f³\ÊdAò÷\eòo\ e\10¿6\ 5\×\Û\f\Z½\8e\ 3\r#\ 3xb³\ëÔ¤\93\ 5\94\84¤\18\á´Í\91(\r}·\b\88\88\88\8a\ 2þµ^\è\ë\ 5 \ëwBµ\Ùò\89¸\Ç\Ø\19Ø\8eG\Ä\v,\8e4=\7f\15;\1e£¦k×µ\ÌÈ\88\7f\ågM\9b²@ûq*\13\ÉJ\13ûG\9b\0\ e}}è­\93ô¿ø¼\99\Ð^\8f\a\95¹OZm?c;WüW n,\92\Ö\æ\ËY\ã¯\Åd\8e6\Ñ\ÊLÁ¯\94,ì\96ûûjé­\9d\8aý\9e\îó\15vr\ê\8f\1c¤\93*\"\"\"\"\"\"\"\"\"\"*¡½U\9e=gõ\ f\Èe\Ç:\ê\953\eÃ\9d¹\88þD­\9a(¸\ÅN¿\ÉQ3\9aý\ÓTc\âClX\f\96(°v\ZÀ\ØÏ\91oq&N\Ë9\83\1c\18lh\ã\0½Û«\Ü\È~»öG\819\à\19¶\Î8{\98x\ç\92%Ç¢>#\Ú\ØU\éûmM\å\ÅDGºT!9\×5P¦T\924\99@\870\13K\12i1\10\æW¡qG#\ë\Ü\Ã\Æ\1cy\Êú\94¨ó5\8eIÒµ\8d\86DYB\9a\17\Õm4\Ð\îa7\12\83\8c\f\10f4EsZ\Ïb\8d\ís\18æ¹\98ô\ 4DDE\85\Ýü\ï_\ 6ø\ì\ë>ÿ\0\Ù~w½\Å}\ 6§Zfkº\ì&\8eVǽmò°\Ø\Úþ¥­Ö¾D\\Ë\9difx\91\Îw\9e<:\è\Å|\ÉÒ£\85\98\81\î\Ïmù#½\1d¢\æ\1e\Ór¦Y\1f\9d²mö(\ãL\936³U¥Ë¾\9a=Z \92\Z,b\ 5-pÁ\1f/\8f\12¾<ɹ\99d\Ê\èO\9a@3\15\94Á}2þ    ö^\Úr¾\9fÞ\9e\Ë\ë3j:\Í\Ä\Û\1c\1d\83\8d5KºòGÿ\0¶\ÝÚ©\ì\99W`FI\13J\í\17^\93\88öC4\'\ 4÷\16\83\81)\93c\Ô\Å\14}\9a\Î\Øñ\ãÄ\8e\b±@\18\Ñ#\ 4Q\ãF\8e&\ 6<x\ácD\10\0\"kF \88mh\Ä!µ¬c\Z\Ö1¸n1\85Ì\88\88\88\88\88\88\88\88\88\88\8bRþi<ok>N:=\È\\ j\ê÷r\8e¼#o<\1d±\Ë\a\Ú}g\91\ê\â\14p\8d\1c\98\Î\n\18ö\Ñ^Z\9bfEö\95>ªDª±\91\8c\9c_\95\8d\Ç;\Ï\11o\9b_\18òf±m¥\ï\Ú5\ä\ísk\Õ\î\ãþ=\9d5\Íqr\191Nƹ\â+3\9c4\ÑfE)\áO\88PN\81&L9\09:J´C\Ò7\äj§±\Ý\'?Mwm\8a|\Þf\êC\Ç[N;l\88l´\á+³\È\Ç\1f\ 2\8f\"\8d\Z)\83¨\ e\r\86°h\91\É*\Ä1k#X\Û\fX\9d\Zu\94º\11\11\11q\18Â\8e\"È\90Q\80\0\e\Ìs\99\10B\117/!JG\å¬\18\Æƹ\ï{Ý\86±¸Ë\9d\9cc\19ʨ»Ô\83\å7lò\17\1dÃ\8f\89Ѻ\Ý\Ö\r\9bb\ãn1\Ö\ØóÃ\87y³\Ó\Ì-N\ë¿]\×|F\197\a¸\8faEM$\ä´l*h²$R\Ï\f\r\86L\\Guo\×\Ó\Û\â^\Ç\Ê\aq\ë3¿SN\ÇW8(\95\Û\Ï5Z\92>\a\125\84/\áxª\f\19\ÈIc²<ß\99p(ñ-s\17_\8aPXÆ\84+¸V\ 3·\8fT\Õ5­\17[¤Ó´\êJ\ÝoW\Ö\ë£TQQTF\1c:\êº\ècÀ\ãÅ\8b\1cX\ÃX\Æ7\1e\îv}\ÈR9\æ+\ÞR=\î\ì\b\88\88\88\88\88\88\88\88\88\88\88¡+\ê\9aðo\9ez\Ôo<\8augO\9de\Î\ZMlVs\97\1d\êµÏ\95c\Ê\ZdB¿$Ü«\ë\84F\â~Û©E!¤Hl1>öþ¤y¦\8d\1eþhõºú\9a\ÜVux\Ý\ïo&ø\á\í÷\15ö\9f\8cM\92\9bR²þ\1fz\×r/¸;§\18\ßH\8a\r\ßT ÿ\02¿\1f\93:´-\99LRM\fX\Û\ruD«\ 1Ì®\f¸\12®\8e\ê\×f8\9f¸\\\a\Æ}\8e\á-\86>\Ë\Ç\\£¬\×l\94r\Ä\ì¶\\?Í\8e2Ȩ¸\84V\ 6mU\Íi_\98ö\15vQaYD&0\Ùp£\11\ßV2\ 1\11\11k\ã\Ê\ç=Xu\9f\1fsy\9e\8eÀU»V¡×®P>\99 ¸Ï³¶ù:\8d¬j\ 1·8k¾\ f\Ì\â0\8d\7f»\1c߯9\13ðo¯Þ\91y³fYL\97cc.Lû        òO6t\é§,©\93fJ+\Ï*\\¹G{\Ï\"L\83½\æ9\Ì÷\94\Å{\ÈG¹\î\Îsü\Ê\à_MwN(ú\87â\9f\81LÊ·A\ß;\vV\ eÀr<\99µ\84ª¼u\Æñ\ 6)j)/\"\98a6%j\94\ 1\83B/\È\13%2<V\nG³\Çõ\8f~h\88\88\88\88\88\88\88\88\88\88\88\8b\84Á\f \9a4\90\8aDi\ 2 N\ 3\r\85     \82Vde    \84L9\84\19\18\ç0\83{rdz9k±\9cg8UWú±º\rÁ\Ý5\ï.\8fÈ\9c\Z\n}j¯µ\Z¾\Ù\È{\87\1dSe\8d\8d¬\ï\147\151\ï/\Û\10n\Ã+\99»\97`m\8ea\88\ 2\19¦@\9bnbJ±µ°\92H®©­ú1;M\Ïq;}\Ë]Bf\Ç>Ó®\97\9c\'·òü­jx¤Ì\87ªò&½³i4õÓ¨fd\99\ 5C6:ý\86\ß6µ\8e\e\Ûa&´S\à~\19[x\ëK\'Q\11\16\84ýL4×\97\9e\eûX\n\a\1c\98Uºõ\Ì÷\Çó\9cQ\ÒÛ\8e\Êõ\85ø\ç\1e\Ñ\ÍU\ZTsg>\í\Ã\v\9c»\19§\Íz\a\13\ÑWm\1c§Æ\9a\Õ\ÄRN©Ø¹\ 3M¢´\84\"\90%\99]o±\Ö\×Í\8a3\ 5\ã0\89\"4\82\89\84\11\ 6Q¹øx\Þ\×c\ e\Åð\9cqU]G\Ç\Ú==D \×VV\ê:\ì(0@&\0QcG©\881\ 5¢f0\Öe\8d\Çõc\18ý¿\å\97g\å\9c\ç=\Ñ\11\11\11\11\11\11\11\11\11\11\164vO¸\Ý_\ê\ e\95k¿öG\9c8\ï\89\81\8d\Ç.ײ\ÖÀ±9d7ÿ\0\ 5\12\ 5;\8f\9b9\92\ì\n\áF\82 Ev$J\91\18\r~\1f Xt`{3\ë6\è7\19J=g[ø\87\97;6rV\È4-\80¬\'\ e\êÀ³k2\Øñ,\99»Q\17hú^|\à\8f,\rvK]\15¹\ÎH\19\ eÀ[ªwú®üºw\ fgf¥Ð¾\8dj1®\85aU\12Ö»_\Ó÷\î\Ç\1e W\854\Zr[\Ø\Ö\Ö\éuz¬yrÀr>÷fÀ\éX\18\93\ÊOÅ\8d\14ç\8d¹N\ 4\ f«\97\99ß®J\å]\9f£ýf\Ô6\90gù¹[.\8dIµoúTY1\8f\86\95\9an£qe\1eU\9cy8\b\8d\18»\84l\80O$\ÈÆ\94P\864\9f<±ô\99\7f\Þc\96góÿ\0\92?\"|\Ó\Ú\Î^¸ú\ 3saA¦\Ññ\í\ 4úÈ\8d\94\Êú8ð\9des+]¥­Ì\97\Ê\rf¤}~\ 1l\äN±\ÄHÄ\9f8r²\1e\ f¤3Ä\9c\14\íc\95¬$\ f8\Éeç\94·¨®\91\8c\7f|<!\Ù2!ûþýò,3ûþ±\8fe·~\83ø\9bè\97\8d\b[`º\8d\Ã#\Ñî·£G~ݹ_lû6óº^F\86\11\8a\rYö-®\Ò\Î\\JX.i\äç­\Ä*\èó,-%\ e>\re1\æ\Øò\"\"\Ã_\"\1c\17#³]\13\í\Ï\0B~Ga\Ë=|\å-6¬­n\1eð\Û\ÚjvM¨0Y\96\13\ f\90\e&E$f¹\99c\8e\Ñ\áþ\Í\Î]\8a:¶\Z\v\9dRþóV\Ø\ë¤\Ó\ì\Z\ÕÅ\95\ 5õL\Æ`s*\îiæ\9aºÒºS1\97a\92aM\8cx\Çf\1c\ì4¢~1\9c\1e\ë³ñ6\É\aM\å>4\Û\ìß\91Vê¼\81¦\ì\96\ 5h\Èg\ e\r\1e\Ç[g-ø\bXR\97,\ 4R;\ 3\10\88G\ç\1f\161\î\Î\e\9b\âxú\Ú%þ\85¤^À0\ä@º\Ô5«hR\ 4\ì8G\89cM\nds\rø\Îp\á\94&c\Ø\ìg8s]\8cû\ç\19\11\11\11\11\11\11\11\11\11\17\9fò\97*ñ·\b\è[/(ò\îñ­q\Ï\1d\éµr®¶\9d\Ënµ\8bK¯\ÑUB     $Ë\9dca-\ã\b\8e\"\9c¯\Îs\96\ 4D&qðcó\88    ùjõx\í¶\16\ 5\89\Z\8aª\1cû­j\7fg¶*\áN\9ba\1cqY\18w\\GLi\ e\ 3\n;\17\98\Õû&\Å\ 5õ\Ø\Å~\7f\1e\8fg©µ\8bh\18u\ëô\1d\ÌòW\ØØ´u\r\å\8e\Öv?\91dH\Ìv\Ø\ÛKÙ¶\19\11\9d<\Ò\Þ\Ç\Ù\ÞM\rF©ª@°¶p\â\ 4ó)5JRØ\82\ 4&BĨ\Ñ\ß:/\19^\8e®1\ÒE­r¿\91\Ý\åü\9f´ý\15öÁ\ë÷\1fÈ\93Q¡\Ñ\Ø5\á\95ø[\9e\Ó\î\Ûm\Å\Ñ$\ÆcI\ 6\18ª¨l L\95_oY#-S;\á^½pO[ôú\í\ 3\80ø\87\8e¸{Lª\8fø\90u\î<Ô©ujñGû\1co\81\19U\123\ä\ç%v_\92Jy\Ê\ç{e\Ï϶3\8fcDDDDETOª;ŵ\97Gû±m\Ø\Þ<\Ö%D\ëomï­¶ú\9b\0eƬ\Öy\9afOu\ÈZ\83\9c\Ðg\10GpC\13\1c\Ùó\'Ø\90\Û1Z8\Ð+\â\8f1}V\êúd{\ÛEÜ\9f\19\1c[©I°°\93\1d]\8d\13\82ù\17\17SO>\Öкü\b\Òõý\94\93\13ó-¿\99 \9f[*\\æ°¡\8f$\í¯<\éVQ\çe\92#DDDDDDDDD^3\Ø\1eÀq\'W8\83y\ç^qܪô^4\ã\Ú9\×\Û\15õ¡\98\Ì6<\18¥\93\88Uñ\Üö\96\Æ\Ún\0ñ@¯\8d\îy%þ\Ø`\ØR²¥¯6\9esù\Ï\Ê\Ç*\ÜkTv7|q\Ô\1dR\à\81\ã~ \8d5\àÿ\0\12\86¶k\ß_»r\'\Ð\Ð\æ\Úú\Ç\"\8df*\8995m!\Ã\v\13\æW\Ã<lSñeâ\83²>Vù\Ð\\S\Âñ\19¬i4N\ 4¾R\æ\8bú\Ést\Þ9¦&q\9f¶@£\96#®\ïd³?ùn»\16tS\Ì{\87\83K\86\Ã\Çym\94ñ»â¿©þ08z³\8c:ý¦C\91²>,\7fñ\Ï0\ì5\Õ\ç\ä¾F¶\13O\82\Ûl7B\ f\Î;L\é2~ª\8a\ÇF¨\80\ 22\ 5|HÕ± Ã\8b²4DDDDDX·Ü®\9fp\8fzú÷\È\1dm\ç\íZ\1eÍ¡\ïµ%\86\18-u\8e¿n,¶E>\ËE+\ e\1c\88\174vA\8be\ 2\\CÆ\92\191DPH\8eq\86\1dò\Û\á\ï±þ\'y\97:§$À\91¸ð¾\Ûa%¼I\Î4ðd\ãY\Ù\ã\ã\12d\87]¼6@ÀQ\îñ G,£T\99\15´8\Ò\ìi\ÜLÀ¼¯£\ë^\"|¤ò¿\8a.\Ô\Õs\9e\8e       \9b7\1e\ì\Ñ#j<\Ý\ÆC\9cH\Ñw½\173\99+\ç\1cO8«Ý´kGɬu\89V\18À\ÆSXW6e[m\8di\12\à>\9c÷/\80;\ÛÁ\9a\97`z\ç½U\î\Ú>\Ó\ 29\ÊØ\87\Æ-µ\Ë7\8f?\99¯\ìu\85h§T\\WIa\áË\85>4Y!\95\16Ls\842£J\8c\f¨DDDDDDDD\\2$\ 2(\r*Q\85\Z4a\12D\89\12\b0\80\0\b\ÜC\18\Æ#\9a1\bCk\9eB=\Íc\18\×9\Î\Ãq\9cª¥}K\9ee.»û\Ù;\9e·p\Î\Íi\eª=|\Ø\ìµ\ÜF\8cCD\87\Ê\\\95I/5÷\ÛE\80òÀ¾u\r\15\9c)\10u¡9¹\812HMv\Ò\ÜE\ 6¯g\eM\Þ8<wsÇ\93N\Ì\ê}p\à\è,\86ù\ä\15§ r\15\9cSH\Ö8\ÃG\ 1\9bü¶\Ót\Ñ\12;§\ÌhZPkú\à%Å\97°Zýq\9d2®¨\16÷\957\1eô_£|\a\ã߯:_]zû«C£\Öõ\9a\ØL½¿tH\ãØ·Í\90q\Ú\ËM»j\9a,d\93m­e\æD·5\å ¢fA\ 6\1c¹\Ï1\8d\98\88\88\88\88\88\88\88¼¿\97øW\89{\ 1¡\ßq\875ñÞ¥\Éü\7f³À\95U}©\îT\Ñ.ª,k\æ\8f\99\18\80\9478m\90/q\15Àx\88ñg#\Ëþ\ e\146û\ç\è\Ì\à^M·º\Þú\'\Í3úûa%§\9c\Þ!\ä\n\Ë\1dÿ\0\8f\äJdiFt*-\8c\97Qv}iövE\13F\édº¦¨\84\11B\8bR69Ò\85©\8e¹økõ*ø\8f\ß[\Ì=E\×õ\8d¼\ï1£\ß\è|k\ËZ®\ï¢\î±\n\È\ì$\8d£\8ewi\ÚT;\'\ 5±¢¶- \81\ai\0\ZXUò±\ 6M\9cCÉ¿©\1e\92\b\ÔZ§\90\13ü¹\Ä\18¥«¯\83ºs\'\12\ e\ïMmw\n0£]\Ú\ 3\8ba\16\Ïd\×\Ý2v\1f6%%}\Î\Û\1c\ 3\É\á\Z\â\'\Ò\13\17%yc\Ôe\ã7\81\æG\89Í·ý\93\âQL\91\98P\í7\î ö7]¥\9d;\ 1t\8c¬¶\9bÇ­\85o! a\n\æ\Õ\16k\ZÁ\e\äüdD\Ã}?¬þ}|Iö\Êõ\9a¿\14w\1f\8f\à\ìòl\eWY®ò\94-\8f\86®n\æf.f\95´p¹B\9fU%°c\ÅnK\"\\?¶#\Z\Ã\ã\as¡\Í\Äm°\êÛ®\9b¼Au\9e\93¶\ë;\85c\1c\Ö>\ÃV¾ª\Ø ±\ï\Ær\Æ:]L¹q\Ú\ça®\Ë[\92c.\Ã]\9cc>\Ù]\9d\11\11\11\11\11\11FS\Õ\1d\ä¿=\19\èm\87\ fñ\î\Âú®\7f\í«-¸\ßP%M\Îj¶mGBüG\7f\8f¹\n¹ð\ì+¯!º¶\19\ 3GS}JR\1e\9fiº¡t\81´2>\Æ\Õ\aQQk\7fkYCCYawywa\n¢\9a\9a¢\14\9b+[{[)\"\87]YY]\fF\99>\Â|\Ã\ 6,(QBY2¤\94@\0\9eWµ¹¸\ f\Ó\ï\â\8b\85\Ò\Ív>\Ó[S/³\\\ç\ 6»{ç\9dª$_rG<\97Ì\99©\è5sd\96L\Ö\Òi\Ô3\áÀ\90Áº¶%­\ë,/MEW>d\807|\88\88\88\88\88\88\88\88\88\8b\Ì9k\84ø{\9eµ)ú\176ñv\83\ËZU¤y\11,5nD\Ô\èöú)Q¥µ\8c\96\ 2\Ö\ÞÂ\9b\e\"\961\fR\99\81\á²\ 4\b\ØxýÛ\98²y\1fô\8ct£²±owþ\9aÏ\91\1ec\94G\ÌfµN\ 6\\p\rÓ±ü[?\rüyõÆ\97¨\95°k\äÄ®&\99}ER\Ë\vS\\]T\Ü\18Oa¡)»\87˯§Ë°v\1cg\1f\91ù3®w·\98\91k\10\ÚF\É:ó\82¹\96®,ºqX]\Ô@´\89\8dKlp\9dYO\ 2\ÂTú\b\e\8dEik\98fVW\\V\96t\Îü-z¨¸Û¸7ú¯Z»\Í_¬ð\7f?]\Z\ 6½£rMQe\87\8b¹Z\ì\á\b¢V\Ê\Ä\âÉ\91¥m\97\16\ e,\nÚ\99²¦\×O>jÁ\12\êu\9d\99\ãA\98°\8a)\ 2\11ÀQ\98\ 6\e\f\13\ 5\í \8a\"7\ f\19\ 6Fe\Ì \È\Ça\Ì{s\96¹¹Ã\9b\9c\ã8\Ê\äDDDDDU\14ú ;\87s\Ú\Ï+\9c»®6c\89¡u\92¶¯\81t8Ñ­¤Î¨\93\8a\9c\97eÚ¶(\Õ\æc\ 3Qcm°l\'«µ\b2gJƹ\ 2A\8a<\å\90adÿ\0¤¯\Ç`»SÞ\99\9d \ä\ZY2x\97¨°\19²Ò¸ñ\9aú\9d\8f\9a-2\bº\Å1]&,¸3\85­\ÔL\9b±\ÚV\99\83.\1cj9\"8\9f\86|\í7DDDDDDDDDDE\87=\ä\è\9f\\¼\86pFÁÀ\1d\93\Ñ\ëö\Í^É\87\97¯\Üd\ 3fË¢ì\8e\8cX\Ñ6\9dFݸlÊ\9bh­&Z÷E8\9b,\1e\á6}ð\12\86\9f\ß+^2y\9f\Åwjv.\0\äø\96\16Ú\85\98\8d´p¿(~        \ 3E\É\Ü|i.\f{(\13X&\Â}\å\11ó\8a\8d¶¤Y\fº»&\ 6D\88\10¡Z\Õý\ÓHô­yÀعö¾\1f\8e\Î\Ön\ä¼\åmB\8aLοò\ e\Í//º\ä\1d\1fl\Í/`»\9b#\18·\Ûõ¸\ïkkd\1dÏ»\Ú*þ\83\98v\97\106+\99S\80DDDDE\ç<Á²\eN\â^RÛ£\1dѤj¼u»ì\80\92\Çe\8e\8ej=f\Î\ÐFkñ\9ce\8e\13\ã4\8dv3\8c·-÷\Æq\ì¨}\ä-\ëa\å\rÿ\0x佺H\æm\9c\87¸l\Û\Ö\Ï0Cp\85/a\Ûn¦\ß\ÝI\18\9cò¸c=\95\84\92°n!\1cÆ¿\r\Ëß\9c|³m\9f¦;¦\9a\ÇRüTp¶\ÉZI²6\î\ÔE\87\Ù\rüó\7f O\1d¦\ßO_\ 2\86¨p\ä\10\98\84\ÊMV®\9e³#\8fôG\92H\ï±$P\ØL\9cCHU\11\11\11\11\11\11\11\11\11\11\11i;\ÏG\8c\Ýo\É_C¹\eM®ª¬\1f:ñ]e\97\'pf\Îh\ãdð\íz\Ýd\édÔ\8d\9cѨ¶ø\ßmU®G\12\Â@\84g\12º.\'=\84U\nqW%òoYy·I\å=,öz_+p¯ Vl\95C°\r\95\\ê\8d§P¸adR\ß\×0Õ¶L\8eY\11$Rl\Ôr\v\15ò\ë\ÍcO9­\19\Î5w7CûAK\Üþ\9eõß³Ô­\1cvs\17\15j\e\8d­f\ f\f²(ö\v:x¦¾¦\9e8%4xs Yº@\Ï      \85#c\ã,h\Êadg.[\"\"\"\"-nù\82\ä9üO\âû½\1c\89V\ïk-S®|\83e_\8fµÁû&ÿ\0\eø\ÑC\935¯p\Ús\9d\81sð\Ç\ç\18&sñwþ\9c\Ò÷Áº(9C\9aø\7f\8d%2C\ãr\')qþ\8b!\91\1f\91\Êx6ݲ¢\80Í\8cL1ùd\8c\8eÁ\Ø\vð\Çe\84\Ë]ñw·¶oyд\Ê>:\Òu=\vZ\87\16\ 5\ 6\9d®\Ôku1\"F\14@\n\15D\10B\ e[\1c?\ì\Æ\â´?q}²ì¼¤{\Þ÷½\Î{»j\"\"\"\"\"\"\"\"\"\"\"*t=Eý<¦é\87\95\î\Ã\éºÁ\ÆýO\97d\Ã\ìn¹\r\99\92GT\83\97\ç\\[]Ö\98ò^ì\98\8cÛ¡lr\9a\Ø\â\8b\ 6\10%\86²\ 4\82\17\92k^\8d\Þd\Æý\â\çm\âü\Ç8\ßÁ\1d\8a\Þõ\ï¸ùn[$[\Ô\Z~Ec¢|Jüb\18\89~a|H0\9bó\9b9\Ùk\Â\à\11\Ò\ÕDDDDZ©ó\87¥\Ë\ß|Jw\ç]­\8ai¶\ä\ë\9e÷>\9e,|û\18öU°q4\11Ç\8c¹\83ve4$\8b\9c\e?[p|¿9c\98\Ò2«ÿ\0\ 6\1cw\ 3\95¼¶tcG²\87\16t[.bÅ\97\Ñ0_lf\É\Õõ=\9bk\83(\8dø\138\Ì\19Ô\91§\f­c\9e\ 2\Ça\87\8f\98Ú®\96DDDDDDDDDDDDUÀú\Ûø\ÓZ \ì\çJùJ¾¬\0\Ú9#\88yC^\Ùn0!6M\94\1e:Ù´\çk°Jv±¥$j¦\îV¥\8e\12¸\8d\ 1­&\10yn$¹¸\Ù\'¢A¥\ÇJû\8a÷78\ 3»EJÑ¿\Ûôâ·\89õl\99¸Ï·\ï,cÁ\9c\ã\ß>\ß<~±\ïû\9a\Ò\"\"\"\"\Æ\Þ\ãj Ýº\9d\1dZO\Ç!¶\á.J\13\9añ\à­&A©Z\Ë\18\9c<\å¸\Î\fH\í\16]ûø|þ\7f\aü~\ e©·\ÓM\0\Ö\1enú\'\81\0\86dM¯\95\ç\És\ 6\â28bð\a+½§3±\8c\àCü\8c\80-!2\Öý\å\bñ\9c\90\8ck®$DDDDDDDDDDDDPMõÀ\ë5\î\á\î\84\î?O½¨y+\995\9f¿8n~\15òu}F\Ó\éc¾\1f\92b|É\8c\93\âÿ\0¨Y\Ã1\91\å\Ù\Í\1fF®·\ 6§\Æ\ eùw\Z\10c\ËÚ»#»Î±\9214d°5m.½H\ 3\È#[\87\18\81\89\0\11\18÷\å\Îhc\88Xv\18Ƶ²\áDDDD^[\ÎQq;\859\86\v²\æ¶g\16ò\fW9¾ÿ\0,bF¥n\1c\å¾ß¿\960ÿ\0|{c\ß\ß\Û\Ûöª¥ô\9eid\Ûü\Ëp\ì±dmv\91\Æ<ú9\äù\7fH\âk\f¤.\19\96µ\ÙÁ\n;÷\ 1\9f¬5\Ù/Á\Îk\1c\çb\Ú\ÄDDDDDDDDDDDE  \8f[\9dn\v\ÓÞ\97\Ü}~ù\83\Ù]ª·\îöÿ\0/ù^/¶\95õü¿¾>\ß\áp\ïoõú}ÿ\0\Ý\Â\Ï\ fH\95~!øiФ`\7f\f\Ûs\Ï<Xe\ßû\Ù\1e\ e¯\ìþ\ØþØ­À¿\×ü¯\ïþ\98\93º\"\"\"\"\ê\Û\Ì\11Y\é[\85iÿ\0ȱն\b&ÿ\0ò\97S.9?þ     \95\\G¥+\82\ë5\8f4\9d\Ç-?\Ø\n~\ 4Ò¹Ã\8e*!·ú\82\Êû>Y\ 6¿\ 1\Ïq2\ãý\91a\é\í\0½ß\9fv\È7\Ûò~\19\9cY@\88\88\88\88\88\88\88\88\88\88\88\88¢¯\ë\ 3Ñ\83±x\9d\9b·\9a\e$;\8f\8c§E\92\ f/\81\'c\Ø!\ë\9fhð\ìý\8d\É\âÌ\97\19\es\ì\Ò\äosp\\a\Ù3\éu\Ñgh\1e\18z\Å\ 2Àoa¶\e\1e\82\ç³\á\93A\Ý÷«\8d\96¼\98\Çû\Ìl+\0\ 5\8fÿ\0}\82nT\83\11\11\11\17ø \Æa\90E\e\n\"±\Ã(\88Ö¼d\eÛ\96¼dc±\96½\8fnr\×5\Ø\Ë\\\Ü\ç\19\Æq\9c\áA7\Ó\17A\1e·Ì\9f\9clG\Æ\ 6*\ eG\ä\8a\b\Âo¶\Z\Ø\æ\í?#üq\8cc\ßô\ÆÒ\89­ö϶1\9cÿ\0\7f|)Ú¢\"\"\"\"\"\"\"\"\"\"\"(\àú°\ 1\83xJ\ìi2\Ügñ¹\ 3®\ç\Æs\8f\Ûr\îp\Ò#|±ÿ\0\fûH\Ë}ÿ\0\à\ì\ãýVsx7«\rW\88o\1d\10\86,\Ê\ê\Ï\16Z\e#c\e\93\ZÒ\84\13²R\ç\r\ÆHL°\Ãg\Í\Þ\îø1\8cò\Ö7\Ûk\b\88\88\88\88¡\Ñ\à[C¦\Ðü\ãú\84i©\0xð+ù\86\9aXG$\8f1²]Ë\969kl²3\88Owe²,e\Z@\ÚÏ\80\ 6\"±\80\18ÀÁ\r\93\17DDDDDDDDDDDDQ\âõO\Ñ\Ø\ßøL\í<jÀfA\à_ðe\áÇ\875¾\Õ\Ô\\Ù¢\ÚÚ\9f9{\9a\ßhµ±eJ\Ë}ò\çý\1f\ 1µ\Äs\e\9c\ãð±\18\91<Ix\ã\11\1dòsºwÁ\12q\9fø\ ef\85O0Mÿ\0 Gc?\é[:DDDDE¡\Ï\Z\Ýn\'\14ù(ò\ëÌ\92ª[\1eG=se%¤;?\ÆÀ\9f\"\8f]§«\87\16\v\8f\86\ã\ï\10®e\ì6C\Æ]\9c0Ö²²\Ö\ã\ä\ç?|h\88\88\88\88\88\88\88\88\88\88\88\8bWþf8>ϱ\9e6;I\Ãõ\ 5dk\r\Ã@\97_\16a\ 2\ÙC\81(\8fh\àO|W\Z;¥6%\89!\9dÀ\11\86G\á\99ø\948\ÆL<\98\è\æ\8aþ1\é\ÇXxù\ád|iü\1d\Æ\Ô\"\bþ¿¬q`jõÂ\89\86\àyø1¹\89\80»\ 3ǶE\8cýnk^\×7\19P\88\88\88\88\8b\áT\ë44s®¬ªk#Á\9d±Llû¹!û>\Ë\19\8cÁ0Ó\9f\æ÷7\ä\Ü\14\9e\ß^\18\ß\ëwôû¯º\88\88\88\88\88\88\88\88\88\88\88\88º¾\ç¨\Óo\9a½Î¡°\8c¦¦½\8b\88v\ 2\ 3\Ú2¼80\8f\8c1\ï\19Z\Üý\81f}ò7c\Û\19ý\7f®>\95\r4\1dr\8e\9b^¬k\Ù[CS]M^\Â;\ f# \Õ\Ã\f\18\8d{\Ú\Ö5\ÏÀ\0<9\Økp\çc9\Ãq\8f\Ö>²\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"ÿ\Ù',4,0,'','','',''),(86,5,25,'9305bf01c3fdb20a','11789807665bf01c3fd8ccd829485384','2018-11-17 13:50:06','2018-11-17 13:50:06','','','Contact Photos','63436871415bf00e80dfe9c308856934-4.jpg?ts=1542459008','image/jpeg',80,80,2356,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\0P\0P\ 1\ 1\11\0ÿ\Ä\0\1e\0\ 1\0\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\0\b\v     \n\ 3\ 4\a\ 1\ 5\ 6ÿ\Ä\0*\10\0\ 1\ 4\ 2\ 2\ 1\ 4\ 2\ 2\ 2\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\0\b \n\11\12\13\14\16!#\15\"\18BCÿ\Ú\0\b\ 1\ 1\0\0?\0\ß\ã\8e8\ã\8e8\ã\8e\9a\91ù\ãõ1VüwZfº\9b\bJ®\Ø\í¨!¶\9d\85m³e\ÙMg Ü\91\13\ 4\a\14|\\qb½tÙ\99\11ö$\15[Q\àÁ\Õ\Û|\'¬\8fJ\18¢+\18\Å_\8aÎ\9fy®ód\à]±î§\91~\Ü\èN\9e\ÊM>et-e°¦µM§s¨2T9¸\Õ4ZO\ë4\Z] W\9a~?;\ 6J³&\Ñ&\ eðu\êôç´\84´f÷}v\ë\Õ+¬\9a\Ö3V\Ð\ì;j\Ó\v\1c\ç\ä*stn]\9d¼.\87\98±\Ç\19\â       ¶\í;E¦\\V\1eÀ\Èu0°\ÏEW\ 3}o¹\e\f\16H{\v÷^8\ã\8e9\13{\á\Ù\ 4õ\ 3¦\1d¢\ìòE\1có´v\8eØ»\ e\n4\Ì+\"J\Ú`kg¿R\88+\b\ÊUøò\Öl\Äƽ\9c)\1eÍ\94¬üÑ\8c|±Po\8bÞ©\Û<°yCÓº\7fhX\',\98\Ý;Jõ»\13t0\×U?-M\85̦\É\ÛR\84JcûX\9e·\8e\19ðqòXJ¿\1e\Ãc\8f#-ýh\Êqt\15F£X U+TjL\ 4MV\9dN\81\89«\Õ+0A1\e        ^®À\80\Ä\\4,Lx\Èlp£c#\Å\1c0\85a\bi\81\Ùm´\'      N1\È9\äo\Æö\87òa¢¤t\Æ\è2\ëX\90\10Igµ\î\Æ\×Ö¹\êå\92\81d\91dl72\88ø\é! m\Ñß\92\ 4z\äk6\à%b\ f`ofS\1f \91dÄ­\v\ 4òe\é\ç\ïýã­\97m©rÙ\9aÿ\0Ll@\ë{?D[\ìÓ³Ú«h\ëb\10\f\94E¯]\ae|õ\ë\é;e\1eB.\ÉO³W\90\ 1 <T|}\98Ixñ$ \9fµ\ßLm\9a^û\Ô:»xk\89\ 5J\ëýÁ¯©\Û6\95\"\â\12Ó¦U¯5øû,\13ï²\87\1dK\ 4®6H\7f\1f\ e/,?ö3\95+(\Îy\é|q\Ç1\8b\8bVØ·?\8a>þkÚ\90\84H\Ù$úͲ&a\ãDK\8b.P\Ê\\Vn\è\8a\r¶³\85¼\\\9akª\0Vq\9c\á\â\bm¥%I^S\9d\ 4ý\19¯Dµ\å\8aþ\83\Ö\Ú\ f#¦;q\984º¶\13ö\9c\9d\99¤\b)±\Ò\æp\ê\Ê\ÄS\aº\94\8f\î\æ\ 4hÕ¯\1fJ\1c\Î-&\ã\95Mz¼g\é\97\ f2\12\90T\ 6\98\90´V:ó£©\9b\fx\81\Òù¥lb\9cµXc\Ã!\ 2\8d\96ý\ eѯ\ÃB2\9c\95\86\90\188Gô6\9eX\ã\â\ãE\Üz\Ïã\9f¥:\1fb6H÷\íg\ÖýY^ºÇ\98¼­ø[^*\à\9d`¯)Y\Â\7fÒ¹*aPL\ã\Û\1f\16#\9bN?\8crzq\Ç\1c\â}\86Ie\á\88i·\Ç!§\18}\87\90\97Yy\97Q\96\ÝiÖ\97\85!\Æ\ÜB\94\87\10´\å+Nr\95c8\Îq\Ê\Ä{\8dÕ½\8d\é óA¥{³®ª²¶>\92^v}\8ev\8c¸D\7fXz\êò$\8cN\ß\ëÄ\82\Þs\è\Z\ßI«\Ø$M\×k\92y\"X\"À«\Í$\97\ e\8a³\v\11en \ÛZ\ï}j\Ý\7fºu%¢:\ë¬ö\8dN\12\ïFµE)j\ 6r·a\ 5\99\bÃ\9aC\Èl\81\ÜX\ï%\ 4\86SL\98  Hx3\18\1ei\11\Ûȧi\b\éGF»IÚ #\ 5\99\9b\Òzv\Ùo«\Ä\È%\Õ\Æ\É\\\Ò&\"\éAJ¡\87\19}Q$\Û$a\9a\94\Ã.´÷øõ\13õ8\87>*Æ\8cÞ\96~\86\ f\äc´ý\8aò½\ÝB\Ë\Ý\16m]·cÈ¢~Ú\94\98\r£²S\è\Å\î\7fcO\n\9c4\13¹\Ö\11E\Õܦ@ \\\Â\ 1)d\0\á\ 4\aôøv\15cG\1cq\Ï\ 5\ì\çft§O4nÁ\ìganñ\Úÿ\0TkHe\ÌY\'\Ïù:óªS\88\Z6\12\12\91\93vIù\'\86\88¯AG¶\éòÒ¥\8c\18Í©n{\ã\0]_\ì\1f\95ÿ\04\84\ãv\ëk9~,<l\1e{\ØÖ¶\18\9a\85R÷\Ý>\ËWX%c\æÁ\r-}\8b°\Ñ5EJM¦²ðV\88ªÁ\ä\f\90\ 5_\ã2\äø¹d\94ñcÓ\8d\81[¬W;\1dL¹w/\152\r\90\89\90\îV\Ñ\Ø\1d\8f@\ÓRL i\19\Ø\ê\9eÄ\9f\93\×5©c\ 6m#8õ:\95\\a\91~B\880\ã-m*tQh\94\9d_M¬k­oR­Ð¨4¨Xú\ÝB\97O\85\8f®\Õ\ë\15ø¡\Ð,l,\f\14H\â\Æ\ÅF\ 23hdP\82\19\91\Ùm8J\11\8csÇ»y\×\n·oú»¿:½t1ø\Ê\Þö\ÕW-jtȬ\à\82\1e²\Ã\12\fe\8c1\Ô\ã( \Ê\ìªÁ\9c\10w\1dm·É\8f\15\86Ö¬óO¯N\Ƴør\ß]\91ñ!\äJ,} j\ÙûQ\8d­\Ö=³g\Ê\â´öó\98L\14u*\É\15H\ØÒ\8d\ 3\ 3)û$-~\933H\1dd²k\Ò\19±\Ôf\86\87¹°\15x\Í\ä\12¤­8RU\85%XÂ\92¤\ç\19\9c{\ã8\Î=ñ\9cg\1f\Î3\8f\ã8\ç\Ï\1csQ?-\94Ù¯*~j:M\âJP\ÉDuO@kw»½Û\98\88Ò\88 \9b\8f\ÂD\Èz\Í^W(q¥8Ê\83Mv¢\ 1\82£\87\Ü\ÖY!ó\93\"\87pm¶a!!\ëP\Ñ5\Ê\ìTt\15~\ 20\bX8Hp\87\8d\89\87\87\8b\15 c\"¢\ã\83m\91\0\8e\8f  \86D\b1ZhqFe¶\19m\r¡)\Ç\Ùñ\Ç?!v\×\Ô-\99\ 6\ícc\Ò*\e\ 2¶úþ\×\ë\×j\Ô5®\r\ç0Û\8da\ÇbgB<\a\17\86\9du¿\9a\Çʾ·\1cG¿\Åj\Æ`·d|h\é]\ÍXùi\ë.\Å\évâ\80\87l\rsºú\9bn\9c\Óòµ2#Ò\97!E°\Ñ*2Pú\ëgS\Ç!\81Z\91¥\Þë\92±\æ\Å4¸ð\n\86uL\9c4Añ!\ß\Î\Älݯ\Ùÿ\0\e\Ýýj½ÿ\0;zHd)\12û\ 6©\Z\Ü%[²\9a\91?K\Þ0P\83²8\912E\8f#\0\å¬\0\ 4\8f\8dmv\9aó¢\ÇF\9eô\Ô4>u¸\æ\ 3úÉ­G\13\Ô7\å\ 3e:Û¥\18\ïK:@\0\85¯\å\94E\alv\ä\ 1\91m{ÿ\0®\11 F \16G\Û\1fú²þqÿ\0|s>\1cq\Ç\1cs\ 2²\Z\Ìx\ßRõceE\'\ 1.\Ï\á²\Ü-¡,!M¦`º\çnjQq¤\9a¤º\96\ß|peA\19µ)\95:\96\ 1\19\1f?­¶ð\Þz¸\ä\ eÕºý0\9eH;\99°S\1c\86Qy\ê\9fC#ñ&\96\14\9c\98]Wa÷¬SF[ÿ\0RP\ë¢\bl2\96\1dul²ð\ÙV\eK­\áSÇ\8e8\ã\8e@\Ùz:W\äò\81²\15\10¬©\8e\87\í\ÊSs\Øo?\ 4~G`t¤\ã\91+w\1f\14\18l\Æ\ÛW¶U\86\ÝS~ÿ\0\17\97\1c\àH£ \97\8c@\ì$²\19\1cg\ÊKM¤\97\11d¸+\ f?\84\á\Ç\19\19\vpv\96¬¡\95\94B\9bJTó\99W?\1cq\Ç\1c\ëd1T[g\ävrsC:\ee\å´\ä\84\nû¬¼ð\èw\Û\æ\96]xv\1cq¼gâµ²Ò\95\8c\å \Î;<ÿ\Ù',5,0,'','','',''),(87,5,25,'9305bf01c3fdb20a','11789807665bf01c3fd8ccd829485384','2018-11-17 13:50:06','2018-11-17 13:50:06','','','Contact Photos','63436871415bf00e80dfe9c308856934-4.jpg?ts=1542459008','image/jpeg',48,48,1488,_binary 'ÿ\Øÿ\à\0\10JFIF\0\ 1\ 1\ 1\0H\0H\0\0ÿ\Û\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÀ\0\v\b\00\00\ 1\ 1\11\0ÿ\Ä\0\Z\0\0\ 3\ 1\ 1\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\b        \ 6\a\ 3\nÿ\Ä\0(\10\0\ 1\ 4\ 3\0\ 2\ 2\ 1\ 5\0\ 3\0\0\0\0\0\ 4\ 2\ 3\ 5\ 6\ 1\a\b\0  \11\12\n\13\15\16\"1\17$%ÿ\Ú\0\b\ 1\ 1\0\0?\0ûøðò8\ï\Ï{\1e¿´\8eÿ\0\13\93«\96Ý\87\Òý<T¿\ì.\é\1eY\Ö\Óû\8e\190\9c\ f\ÆK\ËŤ*X2 \7f|\Ë\Çf\Î\ä\8c\12Yys\82G!µ+\15\92\91c\91·Tଲ´\Û>¾\90\99\ 1³I¦\Ü\Õ]U¢\ 1n\å_Pf¿\89\Ø-5ô\e\84a.-¸\é\é\145\87\12Û®6B]e½W\87\87\91\1fò\1e\ì]\81\Ä~©:\'jjy3 6e½5\9d-M´G>\à\92u3v¬ªk²\Öx\93\Zøx\19¸J§\8d\82=\85!ð&\9b\8f1\87\ey\86Ö\99\íø\9cz\ì \è>\10®ö\íª\b\19¾\8f\ì<\Ø\ì¯]e\Æhû\rWQ\85k\93\86¬Ube\88ýb\86\1e\Þ\ì\17óû#\Ì:Ó³\ 4J\Ã\r\'\923\ 2\1e[dÿ\0 »\'°\ÞR\çÒ½\84ð·RZi¡sÓµ¢w?9\ÎÔ¨·\1dgt¡\ÊØ£«\Ä[@\1eZ¸\í\84Ih3¦Az\Î&f\9d\fº\Æ\ f\92\8dr\fø\959!@½Ew\ã~\Ìx\'Ju\89UÀ\ê\16\ÛX³U}\91Y\8dy\ç\âb¶5\ZX\8aÝ­P\8b\'\ä¦à¥\8d\r3Ð\82\96\ 5\83\15* D\96k\ã¬\Ç\ég\87\92\×\Ü÷\v\Ê{\16õ\É\Ñ\1c\ËUX­\ìy\88\10\9f\81C#gk©\16-\958r\8b\Ï\ÊB\Z\ÌTs\95bNs\nh&&\Ü)䩦V\9c¦\7f\8d\ fJC\í\ fZ\Ô\ e\88MC¢xbR\É\Î[óWM°¸\ë5FR¿m²»P8Ø¢s\83\e\12\91\85p\97\ZCY±\ÃXÀk\í\800¥r¿É\9f¦-\Âó\96¡õ\9b¥`\139\Ð>\Ðö\1c.\8f«\9e\1e\16¡I\8c¹\Ò     ·LÉ»ôyܪaù\bºò\7fHgp\1c)vI\7fº\v\8c\ 5\92«Ï¬þ\17§ú\à\â­\'\È\ÔùuY\7f\88\"I·Û\96Â\85þa°\ìò\ 4دVF\ 4Z\96\àQò\16)\ 3q\f\ 3®:ð\10¬\Ç\ 4ó\Ï::\Ý[\ã\ç*\Þ{\9a\87κog\ï}¡-\88M{¨\èöM\81o\93ú)\×\a\83¬Å\91(b\ 5a\1f+(\â\90>\ 4\8f\11¼e\Ò\Î|q\9aN\\u8̶\ã­Y\Ò\Ý\Å\ 5    \Øý\Ëq\Ø\Zò\91³\Ç\16\é\Ï|+®\í\ÓZþ\87­5<\Ò1\'G\96\è9\Z\99±\96½½·\ì\95÷¢flpV    \Ö(\15GJ~\11ªN\rÉ\89\16¦k\8d!¦ôù\1635^¬ k³®&7#o\91§T\á+òv\É\16\9c)Ö¤,òQ\81\ etùͺi\8e$\Éb\f\'\ e\16Jð\ç\Ù÷r©\á\ìÿ\0\Öü¯m\15\Ì[»O]àµ\9fYñ>\à\8d\Ü\Ú\ 2\Õp\8f6S_N¾\83á\89´k\8d\90\14N?|MN\Þ4\18,ª^   J\97\821\84\16 \å´\éb>\Äl¾\Ä{\9bhU­\83Õ\9a\92Û­)jd\ 1vvÓ¢\97\1f¶56§\95)öBT\9d¼ø5\ 3±£5\ê\8cwõ\\\Ø&kFk\Õ\È\Ü\âBòMXV\Þ}\ e\\d\9ct\Ôl|\Ì9\âJD\Ë\ 2$\9c\\\9cy\r\16\ 4\8cq\ì6PG\ 4[\v[\ 4\88Xδ@\Ä2µ´ó.!\ÆÔ¤+\19\Ì\éö\á®\ß\Û|\v·µ\8bH%\æow>p«\Ê\n+yq\Ã\ëòý=¦\84²Æ¸\9cc?õd«\îI\80\8c¡°\È}k\ÆP\95c4xa\87\fv\ 4\11\96\86\14VZ\18a\ØBZdq\ØBZe\96[F0\86\Úi´¥\r¡8\ÂP\84\á)\Æ1\8cc\Ïo\ f3öÚ´\ 5\æ«e¤\Ú\âÃ\9c«\\+ó5{$,\88\95\1f/\ 3?\1cDT\ÄY¼\95²@gÇ\96@¤°\êTÛ¬º¶Ö\9c¥YÇ\88Ǫj\Ô\í/\×\7f)R\ìfH\1d)M\Öm\Ô\7fZW.\äö\ãk\13\ÓppA?\97Ô·\7fó`À\8e\8ek\nV~¬\n\ÚSýp\9f\1dM\81G\8aصrj\93Ku¸òe+R\Ë[\18N]Á5k4=ª?\ë÷\ÆSñ\99\bQp¼ÿ\0¸FU\94ÿ\0o\8f6~\1e\1e\1ebµ\Õ\Z/[S!)\10®¾ô\\\v\e\84\19{-\95 \\\82\92¼\ãýú8ZÐ\9cÿ\0¹BSó\9c\ç\ç>\7fÿ\Ù',6,0,'','','','');
 /*!40000 ALTER TABLE `photo` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -1295,8 +1504,8 @@ DROP TABLE IF EXISTS `poll`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `poll` (
-  `id` int(11) NOT NULL AUTO_INCREMENT,
-  `uid` int(11) NOT NULL DEFAULT '0',
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'User id',
   `q0` text,
   `q1` text,
   `q2` text,
@@ -1309,7 +1518,7 @@ CREATE TABLE `poll` (
   `q9` text,
   PRIMARY KEY (`id`),
   KEY `uid` (`uid`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Currently unused table for storing poll results';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -1329,13 +1538,12 @@ DROP TABLE IF EXISTS `poll_result`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `poll_result` (
-  `id` int(11) NOT NULL AUTO_INCREMENT,
-  `poll_id` int(11) NOT NULL DEFAULT '0',
-  `choice` int(11) NOT NULL DEFAULT '0',
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
+  `poll_id` int(10) unsigned NOT NULL DEFAULT '0',
+  `choice` tinyint(3) unsigned NOT NULL DEFAULT '0',
   PRIMARY KEY (`id`),
-  KEY `poll_id` (`poll_id`),
-  KEY `choice` (`choice`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+  KEY `poll_id` (`poll_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='data for polls - currently unused';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -1360,7 +1568,7 @@ CREATE TABLE `process` (
   `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
   PRIMARY KEY (`pid`),
   KEY `command` (`command`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Currently running system processes';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -1380,14 +1588,14 @@ DROP TABLE IF EXISTS `profile`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `profile` (
-  `id` int(11) NOT NULL AUTO_INCREMENT,
-  `uid` int(11) NOT NULL DEFAULT '0',
-  `profile-name` varchar(255) NOT NULL DEFAULT '',
-  `is-default` tinyint(1) NOT NULL DEFAULT '0',
-  `hide-friends` tinyint(1) NOT NULL DEFAULT '0',
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Owner User id',
+  `profile-name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Name of the profile',
+  `is-default` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Mark this profile as default profile',
+  `hide-friends` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Hide friend list from viewers of this profile',
   `name` varchar(255) NOT NULL DEFAULT '',
-  `pdesc` varchar(255) NOT NULL DEFAULT '',
-  `dob` varchar(32) NOT NULL DEFAULT '0001-01-01',
+  `pdesc` varchar(255) NOT NULL DEFAULT '' COMMENT 'Title or description',
+  `dob` varchar(32) NOT NULL DEFAULT '0000-00-00' COMMENT 'Day of birth',
   `address` varchar(255) NOT NULL DEFAULT '',
   `locality` varchar(255) NOT NULL DEFAULT '',
   `region` varchar(255) NOT NULL DEFAULT '',
@@ -1420,11 +1628,11 @@ CREATE TABLE `profile` (
   `xmpp` varchar(255) NOT NULL DEFAULT '',
   `photo` varchar(255) NOT NULL DEFAULT '',
   `thumb` varchar(255) NOT NULL DEFAULT '',
-  `publish` tinyint(1) NOT NULL DEFAULT '0',
-  `net-publish` tinyint(1) NOT NULL DEFAULT '0',
+  `publish` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'publish default profile in local directory',
+  `net-publish` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'publish profile in global directory',
   PRIMARY KEY (`id`),
   KEY `uid_is-default` (`uid`,`is-default`)
-) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COMMENT='user profiles data';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -1433,7 +1641,7 @@ CREATE TABLE `profile` (
 
 LOCK TABLES `profile` WRITE;
 /*!40000 ALTER TABLE `profile` DISABLE KEYS */;
-INSERT INTO `profile` VALUES (1,1,'default',1,0,'admin','','0001-01-01','','','','','','','','',NULL,'0001-01-01 00:00:00','','','',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','http://friendica.local/photo/profile/1.jpg','http://friendica.local/photo/avatar/1.jpg',0,0),(2,2,'default',1,0,'friendica1','','0001-01-01','','','','','','','','',NULL,'0001-01-01 00:00:00','','','',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','http://friendica.local/photo/profile/2.jpg','http://friendica.local/photo/avatar/2.jpg',0,0),(3,3,'default',1,0,'friendica2','','0001-01-01','','','','','','','','',NULL,'0001-01-01 00:00:00','','','',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','http://friendica.local/photo/profile/3.jpg','http://friendica.local/photo/avatar/3.jpg',0,0),(4,4,'default',1,0,'friendica3','','0001-01-01','','','','','','','','',NULL,'0001-01-01 00:00:00','','','',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','http://friendica.local/photo/profile/4.jpg','http://friendica.local/photo/avatar/4.jpg',0,0),(5,5,'default',1,0,'friendica4','','0001-01-01','','','','','','','','',NULL,'0001-01-01 00:00:00','','','',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','http://friendica.local/photo/profile/5.jpg','http://friendica.local/photo/avatar/5.jpg',0,0),(6,6,'default',1,0,'friendica5','','0001-01-01','','','','','','','','',NULL,'0001-01-01 00:00:00','','','',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','http://friendica.local/photo/profile/6.jpg','http://friendica.local/photo/avatar/6.jpg',0,0);
+INSERT INTO `profile` VALUES (1,1,'Standard',1,0,'admin','','0000-00-00','','','','','','','','',NULL,'0001-01-01 00:00:00','','','',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','http://192.168.22.10/photo/profile/1.jpg','http://192.168.22.10/photo/avatar/1.jpg',0,0),(2,2,'default',1,0,'friendica1','','0000-00-00','','','','','','','','',NULL,'0001-01-01 00:00:00','','','',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','http://192.168.22.10/photo/profile/2.jpg','http://192.168.22.10/photo/avatar/2.jpg',1,0),(3,3,'default',1,0,'friendica2','','0000-00-00','','','','','','','','',NULL,'0001-01-01 00:00:00','','','',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','http://192.168.22.10/photo/profile/3.jpg','http://192.168.22.10/photo/avatar/3.jpg',0,0),(4,4,'default',1,0,'friendica3','','0000-00-00','','','','','','','','',NULL,'0001-01-01 00:00:00','','','',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','http://192.168.22.10/photo/profile/4.jpg','http://192.168.22.10/photo/avatar/4.jpg',0,0),(5,5,'default',1,0,'friendica4','','0000-00-00','','','','','','','','',NULL,'0001-01-01 00:00:00','','','',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','http://192.168.22.10/photo/profile/5.jpg','http://192.168.22.10/photo/avatar/5.jpg',0,0),(6,6,'default',1,0,'friendica5','','0000-00-00','','','','','','','','',NULL,'0001-01-01 00:00:00','','','',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','http://192.168.22.10/photo/profile/6.jpg','http://192.168.22.10/photo/avatar/6.jpg',0,0);
 /*!40000 ALTER TABLE `profile` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -1445,14 +1653,14 @@ DROP TABLE IF EXISTS `profile_check`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `profile_check` (
-  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
-  `uid` int(10) unsigned NOT NULL DEFAULT '0',
-  `cid` int(10) unsigned NOT NULL DEFAULT '0',
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'User id',
+  `cid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'contact.id',
   `dfrn_id` varchar(255) NOT NULL DEFAULT '',
   `sec` varchar(255) NOT NULL DEFAULT '',
-  `expire` int(11) NOT NULL DEFAULT '0',
+  `expire` int(10) unsigned NOT NULL DEFAULT '0',
   PRIMARY KEY (`id`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='DFRN remote auth use';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -1472,16 +1680,19 @@ DROP TABLE IF EXISTS `push_subscriber`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `push_subscriber` (
-  `id` int(11) NOT NULL AUTO_INCREMENT,
-  `uid` int(11) NOT NULL DEFAULT '0',
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'User id',
   `callback_url` varchar(255) NOT NULL DEFAULT '',
   `topic` varchar(255) NOT NULL DEFAULT '',
   `nickname` varchar(255) NOT NULL DEFAULT '',
-  `push` int(11) NOT NULL DEFAULT '0',
-  `last_update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+  `push` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Retrial counter',
+  `last_update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of last successful trial',
+  `next_try` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Next retrial date',
+  `renewed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of last subscription renewal',
   `secret` varchar(255) NOT NULL DEFAULT '',
-  PRIMARY KEY (`id`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+  PRIMARY KEY (`id`),
+  KEY `next_try` (`next_try`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Used for OStatus: Contains feed subscribers';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -1501,20 +1712,20 @@ DROP TABLE IF EXISTS `queue`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `queue` (
-  `id` int(11) NOT NULL AUTO_INCREMENT,
-  `cid` int(11) NOT NULL DEFAULT '0',
-  `network` varchar(32) NOT NULL DEFAULT '',
-  `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  `last` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
+  `cid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Message receiver',
+  `network` char(4) NOT NULL DEFAULT '' COMMENT 'Receiver''s network',
+  `guid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Unique GUID of the message',
+  `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date, when the message was created',
+  `last` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of last trial',
+  `next` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Next retrial date',
+  `retrial` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Retrial counter',
   `content` mediumtext,
   `batch` tinyint(1) NOT NULL DEFAULT '0',
   PRIMARY KEY (`id`),
-  KEY `cid` (`cid`),
-  KEY `created` (`created`),
   KEY `last` (`last`),
-  KEY `network` (`network`),
-  KEY `batch` (`batch`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+  KEY `next` (`next`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Queue for messages that couldn''t be delivered';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -1534,15 +1745,15 @@ DROP TABLE IF EXISTS `register`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `register` (
-  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
   `hash` varchar(255) NOT NULL DEFAULT '',
   `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  `uid` int(11) unsigned NOT NULL DEFAULT '0',
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'User id',
   `password` varchar(255) NOT NULL DEFAULT '',
   `language` varchar(16) NOT NULL DEFAULT '',
   `note` text,
   PRIMARY KEY (`id`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='registrations requiring admin approval';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -1562,8 +1773,8 @@ DROP TABLE IF EXISTS `search`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `search` (
-  `id` int(11) NOT NULL AUTO_INCREMENT,
-  `uid` int(11) NOT NULL DEFAULT '0',
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'User id',
   `term` varchar(255) NOT NULL DEFAULT '',
   PRIMARY KEY (`id`),
   KEY `uid` (`uid`)
@@ -1587,14 +1798,14 @@ DROP TABLE IF EXISTS `session`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `session` (
-  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
+  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
   `sid` varbinary(255) NOT NULL DEFAULT '',
   `data` text,
   `expire` int(10) unsigned NOT NULL DEFAULT '0',
   PRIMARY KEY (`id`),
   KEY `sid` (`sid`(64)),
   KEY `expire` (`expire`)
-) ENGINE=InnoDB AUTO_INCREMENT=88 DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB AUTO_INCREMENT=253 DEFAULT CHARSET=utf8mb4 COMMENT='web session storage';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -1603,7 +1814,7 @@ CREATE TABLE `session` (
 
 LOCK TABLES `session` WRITE;
 /*!40000 ALTER TABLE `session` DISABLE KEYS */;
-INSERT INTO `session` VALUES (74,'5rl3d8078ac0sls01ppupet6g7','sysmsg|a:0:{}sysmsg_info|a:0:{}last_updated|a:0:{}',1504776068),(75,'rjf14g3p0uuat2osmm7gbj1nr7','sysmsg|a:0:{}sysmsg_info|a:0:{}last_updated|a:0:{}',1504776068),(76,'v5f8njmbdl519nscsm5qv5uk96','sysmsg|a:0:{}sysmsg_info|a:0:{}last_updated|a:0:{}',1504776068),(77,'a28an1q2tt22orpej8c5frsf94','sysmsg|a:0:{}sysmsg_info|a:0:{}last_updated|a:0:{}',1504776101),(78,'q1lfibeog56et85jpcn9f6erb3','sysmsg|a:0:{}sysmsg_info|a:0:{}last_updated|a:0:{}',1504776102),(79,'rgltohu3322ndt89els0ihpbj5','sysmsg|a:0:{}sysmsg_info|a:0:{}last_updated|a:0:{}',1504776102),(81,'h5l510son1mr019j19ph7rqcu0','sysmsg|a:0:{}sysmsg_info|a:0:{}last_updated|a:0:{}',1504776169),(82,'n748aact1vvotfhtbq007ht3s7','sysmsg|a:0:{}sysmsg_info|a:0:{}last_updated|a:0:{}',1504776204),(83,'jthe9pfisfe9urj1fnhjsra1r2','sysmsg|a:0:{}sysmsg_info|a:0:{}last_updated|a:0:{}',1504776204),(85,'c2n4jols70ctvq4bt5045psn65','sysmsg|a:0:{}sysmsg_info|a:0:{}last_updated|a:0:{}return_url|s:0:\"\";',1504955989),(86,'k2csn2mrorl3vcl5vf5i9m7li2','sysmsg|a:0:{}sysmsg_info|a:0:{}last_updated|a:0:{}return_url|s:0:\"\";',1504955996),(87,'688cugkgr5iuqlklrincrnvgq0','sysmsg|a:0:{}sysmsg_info|a:0:{}last_updated|a:0:{}return_url|s:0:\"\";',1504956003);
+INSERT INTO `session` VALUES (250,_binary 'aoaha9prgkkb6ls04ccpaqtp27','sysmsg|a:0:{}sysmsg_info|a:0:{}last_updated|a:0:{}return_path|s:0:\"\";',1542647933);
 /*!40000 ALTER TABLE `session` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -1615,14 +1826,14 @@ DROP TABLE IF EXISTS `sign`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `sign` (
-  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
-  `iid` int(10) unsigned NOT NULL DEFAULT '0',
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
+  `iid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'item.id',
   `signed_text` mediumtext,
   `signature` text,
   `signer` varchar(255) NOT NULL DEFAULT '',
   PRIMARY KEY (`id`),
   UNIQUE KEY `iid` (`iid`)
-) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Diaspora signatures';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -1631,41 +1842,9 @@ CREATE TABLE `sign` (
 
 LOCK TABLES `sign` WRITE;
 /*!40000 ALTER TABLE `sign` DISABLE KEYS */;
-INSERT INTO `sign` VALUES (1,12,'{\"author\":\"friendica3@friendica.local\",\"guid\":\"758d682b1059b10ee096f38798595234\",\"created_at\":\"2017-09-07T09:18:24Z\",\"parent_guid\":\"758d682b1859b10ebd6abab685903735\",\"text\":\"Cool!\",\"author_signature\":\"BBtHY+wQ2ZL6M0By6wk7Tw88x58BYHQ2zIJ1ufi6V9p5kWrYb3AEEOqHXbj4M28yzGUszVV1UtQ\\/V3emmAkhDzzTz5B3RNOwWjqFVpbMltzW4z7jP6vfY18w+ICorLTut+ynn0m+XSJJKQ4FGwqpwWDORssgk6hpuoq4QgzIYRUSS1pm0OSUP1Z3R2NQXGajTzR66e1+a7Ha4sLn6J06RTfnT8+1wYbMPno9AzFgaNtQ2OcJ3pNk\\/VuqNDCXAyDkaf7cbpLsB4QcDqk+p91GQ\\/\\/OgESwWT+KBVPv6VoA1bZubA0ngBHfdb4wDWCyt0wtLetpo2TuKSpkikN9hDv4vUflo6TKSldy7YQRU0CWAUHxwlKgSn8UuFn\\/oeq\\/1rnzs81EGqchw6NSWFe+nMZWXT6knngGQNrouZkWTJABLRVftPSEFqf98ysOhOt9qPCOq9ScGnKDHrZyiSO+aTh7Q7Ypexs8s\\/YbS6e3iDAf74QaqP14fKeCmt3s2zyhsOemxfb96943SZui4mwL3jt2XhJhu2GTNjjIBv+aQoBRveGZDqEjye6x+DfT5wP955e8g24dBX5JoF9DYssN8d+rOiUjmaOL3N3pwDnpbL12dzH3OMxlgf6GTu6APtVXkHL70f65p\\/pgp1cqQ7a4VTpuFXltuOEFTVARQA0RkHrFQmE=\"}',NULL,''),(2,13,'{\"author\":\"friendica3@friendica.local\",\"guid\":\"758d682b1059b10ee096f38798595234\",\"created_at\":\"2017-09-07T09:18:24Z\",\"parent_guid\":\"758d682b1859b10ebd6abab685903735\",\"text\":\"Cool!\",\"author_signature\":\"BBtHY+wQ2ZL6M0By6wk7Tw88x58BYHQ2zIJ1ufi6V9p5kWrYb3AEEOqHXbj4M28yzGUszVV1UtQ\\/V3emmAkhDzzTz5B3RNOwWjqFVpbMltzW4z7jP6vfY18w+ICorLTut+ynn0m+XSJJKQ4FGwqpwWDORssgk6hpuoq4QgzIYRUSS1pm0OSUP1Z3R2NQXGajTzR66e1+a7Ha4sLn6J06RTfnT8+1wYbMPno9AzFgaNtQ2OcJ3pNk\\/VuqNDCXAyDkaf7cbpLsB4QcDqk+p91GQ\\/\\/OgESwWT+KBVPv6VoA1bZubA0ngBHfdb4wDWCyt0wtLetpo2TuKSpkikN9hDv4vUflo6TKSldy7YQRU0CWAUHxwlKgSn8UuFn\\/oeq\\/1rnzs81EGqchw6NSWFe+nMZWXT6knngGQNrouZkWTJABLRVftPSEFqf98ysOhOt9qPCOq9ScGnKDHrZyiSO+aTh7Q7Ypexs8s\\/YbS6e3iDAf74QaqP14fKeCmt3s2zyhsOemxfb96943SZui4mwL3jt2XhJhu2GTNjjIBv+aQoBRveGZDqEjye6x+DfT5wP955e8g24dBX5JoF9DYssN8d+rOiUjmaOL3N3pwDnpbL12dzH3OMxlgf6GTu6APtVXkHL70f65p\\/pgp1cqQ7a4VTpuFXltuOEFTVARQA0RkHrFQmE=\"}','',''),(3,14,'{\"author\":\"friendica3@friendica.local\",\"guid\":\"758d682b1059b10ee096f38798595234\",\"created_at\":\"2017-09-07T09:18:24Z\",\"parent_guid\":\"758d682b1859b10ebd6abab685903735\",\"text\":\"Cool!\",\"author_signature\":\"BBtHY+wQ2ZL6M0By6wk7Tw88x58BYHQ2zIJ1ufi6V9p5kWrYb3AEEOqHXbj4M28yzGUszVV1UtQ\\/V3emmAkhDzzTz5B3RNOwWjqFVpbMltzW4z7jP6vfY18w+ICorLTut+ynn0m+XSJJKQ4FGwqpwWDORssgk6hpuoq4QgzIYRUSS1pm0OSUP1Z3R2NQXGajTzR66e1+a7Ha4sLn6J06RTfnT8+1wYbMPno9AzFgaNtQ2OcJ3pNk\\/VuqNDCXAyDkaf7cbpLsB4QcDqk+p91GQ\\/\\/OgESwWT+KBVPv6VoA1bZubA0ngBHfdb4wDWCyt0wtLetpo2TuKSpkikN9hDv4vUflo6TKSldy7YQRU0CWAUHxwlKgSn8UuFn\\/oeq\\/1rnzs81EGqchw6NSWFe+nMZWXT6knngGQNrouZkWTJABLRVftPSEFqf98ysOhOt9qPCOq9ScGnKDHrZyiSO+aTh7Q7Ypexs8s\\/YbS6e3iDAf74QaqP14fKeCmt3s2zyhsOemxfb96943SZui4mwL3jt2XhJhu2GTNjjIBv+aQoBRveGZDqEjye6x+DfT5wP955e8g24dBX5JoF9DYssN8d+rOiUjmaOL3N3pwDnpbL12dzH3OMxlgf6GTu6APtVXkHL70f65p\\/pgp1cqQ7a4VTpuFXltuOEFTVARQA0RkHrFQmE=\"}','',''),(4,18,'{\"author\":\"friendica2@friendica.local\",\"guid\":\"758d682b2059b10f204f9c2684001373\",\"created_at\":\"2017-09-07T09:19:28Z\",\"parent_guid\":\"758d682b1459b10f0be17c3206121357\",\"text\":\"Yay!\",\"author_signature\":\"Ty4OnkZUFKgrVkF0kN5J+21bjVCoyOwljoj68gwWQR3XETAJ4v\\/O1yFypLyzbrOZCBWzC9e9Wg3g+FT6oKdYLBzMR6Qu2VrAFYM5JI9e0G8IIVWWFGD2zFyhAhJLwzy93BqzCTTD5+3s5P2quTJkJyJqweGczNlLk2em26WShG9VpcgFuQAyVcQGAlTaUBqFYn7Mo3D5xWPgrhWEzU8AU1i3lKr7dBekcEMvFF5h51DebYCMmuMvyjBMWEDjv8cbm0ve\\/4uo0uU0D9vik3oCTAzZCV3rcLkthp0MFI1sxGepHzkk\\/HJSMkyB\\/VqDNgPdeMTtbCBCdKr0NmSim2dTlOVascmsvpQoy1tXDwv1+PMs2tET4O1+JrvRFJ6VNK9lKPs59RZ1YhFfLIneKn616mcJm9ZbHDi6y1uQRIGtDjLGgvs69TqVI028jRU2KhlvrNM8SktvRSfbHu8Dpj1n1xmedOwmdlJsJvzGMOd2fNr\\/EXg6mY7YpgYPBt7T42MfRqajaqDUjeN1XKnfvprODUDNhGmol2f7mMLi4RpQySPFjDCC+4vh6y8q6yc4T2CVzEMZXIrBeE3QW46HSgqVmrEpVP72VL4LSWGS46M8CmBXp9c+gf07C59dklSPgGa0D+5Z768L25tJPqAvlVJShSq1hQVVTW4qjNAfdvKGI90=\"}',NULL,''),(5,19,'{\"author\":\"friendica2@friendica.local\",\"guid\":\"758d682b2059b10f204f9c2684001373\",\"created_at\":\"2017-09-07T09:19:28Z\",\"parent_guid\":\"758d682b1459b10f0be17c3206121357\",\"text\":\"Yay!\",\"author_signature\":\"Ty4OnkZUFKgrVkF0kN5J+21bjVCoyOwljoj68gwWQR3XETAJ4v\\/O1yFypLyzbrOZCBWzC9e9Wg3g+FT6oKdYLBzMR6Qu2VrAFYM5JI9e0G8IIVWWFGD2zFyhAhJLwzy93BqzCTTD5+3s5P2quTJkJyJqweGczNlLk2em26WShG9VpcgFuQAyVcQGAlTaUBqFYn7Mo3D5xWPgrhWEzU8AU1i3lKr7dBekcEMvFF5h51DebYCMmuMvyjBMWEDjv8cbm0ve\\/4uo0uU0D9vik3oCTAzZCV3rcLkthp0MFI1sxGepHzkk\\/HJSMkyB\\/VqDNgPdeMTtbCBCdKr0NmSim2dTlOVascmsvpQoy1tXDwv1+PMs2tET4O1+JrvRFJ6VNK9lKPs59RZ1YhFfLIneKn616mcJm9ZbHDi6y1uQRIGtDjLGgvs69TqVI028jRU2KhlvrNM8SktvRSfbHu8Dpj1n1xmedOwmdlJsJvzGMOd2fNr\\/EXg6mY7YpgYPBt7T42MfRqajaqDUjeN1XKnfvprODUDNhGmol2f7mMLi4RpQySPFjDCC+4vh6y8q6yc4T2CVzEMZXIrBeE3QW46HSgqVmrEpVP72VL4LSWGS46M8CmBXp9c+gf07C59dklSPgGa0D+5Z768L25tJPqAvlVJShSq1hQVVTW4qjNAfdvKGI90=\"}','',''),(6,20,'{\"author\":\"friendica2@friendica.local\",\"guid\":\"758d682b2059b10f204f9c2684001373\",\"created_at\":\"2017-09-07T09:19:28Z\",\"parent_guid\":\"758d682b1459b10f0be17c3206121357\",\"text\":\"Yay!\",\"author_signature\":\"Ty4OnkZUFKgrVkF0kN5J+21bjVCoyOwljoj68gwWQR3XETAJ4v\\/O1yFypLyzbrOZCBWzC9e9Wg3g+FT6oKdYLBzMR6Qu2VrAFYM5JI9e0G8IIVWWFGD2zFyhAhJLwzy93BqzCTTD5+3s5P2quTJkJyJqweGczNlLk2em26WShG9VpcgFuQAyVcQGAlTaUBqFYn7Mo3D5xWPgrhWEzU8AU1i3lKr7dBekcEMvFF5h51DebYCMmuMvyjBMWEDjv8cbm0ve\\/4uo0uU0D9vik3oCTAzZCV3rcLkthp0MFI1sxGepHzkk\\/HJSMkyB\\/VqDNgPdeMTtbCBCdKr0NmSim2dTlOVascmsvpQoy1tXDwv1+PMs2tET4O1+JrvRFJ6VNK9lKPs59RZ1YhFfLIneKn616mcJm9ZbHDi6y1uQRIGtDjLGgvs69TqVI028jRU2KhlvrNM8SktvRSfbHu8Dpj1n1xmedOwmdlJsJvzGMOd2fNr\\/EXg6mY7YpgYPBt7T42MfRqajaqDUjeN1XKnfvprODUDNhGmol2f7mMLi4RpQySPFjDCC+4vh6y8q6yc4T2CVzEMZXIrBeE3QW46HSgqVmrEpVP72VL4LSWGS46M8CmBXp9c+gf07C59dklSPgGa0D+5Z768L25tJPqAvlVJShSq1hQVVTW4qjNAfdvKGI90=\"}','','');
 /*!40000 ALTER TABLE `sign` ENABLE KEYS */;
 UNLOCK TABLES;
 
---
--- Table structure for table `spam`
---
-
-DROP TABLE IF EXISTS `spam`;
-/*!40101 SET @saved_cs_client     = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `spam` (
-  `id` int(11) NOT NULL AUTO_INCREMENT,
-  `uid` int(11) NOT NULL DEFAULT '0',
-  `spam` int(11) NOT NULL DEFAULT '0',
-  `ham` int(11) NOT NULL DEFAULT '0',
-  `term` varchar(255) NOT NULL DEFAULT '',
-  `date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  PRIMARY KEY (`id`),
-  KEY `uid` (`uid`),
-  KEY `spam` (`spam`),
-  KEY `ham` (`ham`),
-  KEY `term` (`term`(191))
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `spam`
---
-
-LOCK TABLES `spam` WRITE;
-/*!40000 ALTER TABLE `spam` DISABLE KEYS */;
-/*!40000 ALTER TABLE `spam` ENABLE KEYS */;
-UNLOCK TABLES;
-
 --
 -- Table structure for table `term`
 --
@@ -1684,14 +1863,13 @@ CREATE TABLE `term` (
   `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
   `received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
   `global` tinyint(1) NOT NULL DEFAULT '0',
-  `aid` int(10) unsigned NOT NULL DEFAULT '0',
-  `uid` int(10) unsigned NOT NULL DEFAULT '0',
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'User id',
   PRIMARY KEY (`tid`),
   KEY `oid_otype_type_term` (`oid`,`otype`,`type`,`term`(32)),
   KEY `uid_otype_type_term_global_created` (`uid`,`otype`,`type`,`term`(32),`global`,`created`),
   KEY `uid_otype_type_url` (`uid`,`otype`,`type`,`url`(64)),
   KEY `guid` (`guid`(64))
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='item taxonomy (categories, tags, etc.) table';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -1711,12 +1889,11 @@ DROP TABLE IF EXISTS `thread`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `thread` (
-  `iid` int(10) unsigned NOT NULL DEFAULT '0',
-  `uid` int(10) unsigned NOT NULL DEFAULT '0',
-  `contact-id` int(11) unsigned NOT NULL DEFAULT '0',
-  `gcontact-id` int(11) unsigned NOT NULL DEFAULT '0',
-  `owner-id` int(11) unsigned NOT NULL DEFAULT '0',
-  `author-id` int(11) unsigned NOT NULL DEFAULT '0',
+  `iid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'sequential ID',
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'User id',
+  `contact-id` int(10) unsigned NOT NULL DEFAULT '0',
+  `owner-id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Item owner',
+  `author-id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Item author',
   `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
   `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
   `commented` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
@@ -1727,16 +1904,16 @@ CREATE TABLE `thread` (
   `pubmail` tinyint(1) NOT NULL DEFAULT '0',
   `moderated` tinyint(1) NOT NULL DEFAULT '0',
   `visible` tinyint(1) NOT NULL DEFAULT '0',
-  `spam` tinyint(1) NOT NULL DEFAULT '0',
   `starred` tinyint(1) NOT NULL DEFAULT '0',
   `ignored` tinyint(1) NOT NULL DEFAULT '0',
-  `bookmark` tinyint(1) NOT NULL DEFAULT '0',
+  `post-type` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Post type (personal note, bookmark, ...)',
   `unseen` tinyint(1) NOT NULL DEFAULT '1',
   `deleted` tinyint(1) NOT NULL DEFAULT '0',
   `origin` tinyint(1) NOT NULL DEFAULT '0',
-  `forum_mode` tinyint(1) NOT NULL DEFAULT '0',
+  `forum_mode` tinyint(3) unsigned NOT NULL DEFAULT '0',
   `mention` tinyint(1) NOT NULL DEFAULT '0',
-  `network` varchar(32) NOT NULL DEFAULT '',
+  `network` char(4) NOT NULL DEFAULT '',
+  `bookmark` tinyint(1) DEFAULT NULL,
   PRIMARY KEY (`iid`),
   KEY `uid_network_commented` (`uid`,`network`,`commented`),
   KEY `uid_network_created` (`uid`,`network`,`created`),
@@ -1748,8 +1925,8 @@ CREATE TABLE `thread` (
   KEY `uid_created` (`uid`,`created`),
   KEY `uid_commented` (`uid`,`commented`),
   KEY `uid_wall_created` (`uid`,`wall`,`created`),
-  KEY `private_wall_received` (`private`,`wall`,`received`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+  KEY `private_wall_origin_commented` (`private`,`wall`,`origin`,`commented`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Thread related data';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -1758,7 +1935,7 @@ CREATE TABLE `thread` (
 
 LOCK TABLES `thread` WRITE;
 /*!40000 ALTER TABLE `thread` DISABLE KEYS */;
-INSERT INTO `thread` VALUES (1,6,6,5,19,19,'2017-09-07 09:16:08','2017-09-07 09:16:08','2017-09-07 09:16:08','2017-09-07 09:16:08','2017-09-07 09:16:08',1,0,0,0,1,0,0,0,0,1,0,1,0,0,'dfrn'),(2,0,19,5,19,19,'2017-09-07 09:16:08','2017-09-07 09:16:08','2017-09-07 09:16:08','2017-09-07 09:16:08','2017-09-07 09:16:08',0,0,0,0,1,0,0,0,0,1,0,0,0,0,'dfrn'),(3,2,14,5,19,19,'2017-09-07 09:16:08','2017-09-07 09:16:08','2017-09-07 09:16:08','2017-09-07 09:16:08','2017-09-07 09:16:08',0,0,0,0,1,0,0,0,0,1,0,0,0,0,'dfrn'),(4,5,18,5,19,19,'2017-09-07 09:16:08','2017-09-07 09:16:08','2017-09-07 09:16:09','2017-09-07 09:16:09','2017-09-07 09:16:09',0,0,0,0,1,0,0,0,0,1,0,0,0,0,'dfrn'),(5,3,3,2,20,20,'2017-09-07 09:16:41','2017-09-07 09:16:41','2017-09-07 09:16:41','2017-09-07 09:16:41','2017-09-07 09:16:41',1,0,0,0,1,0,0,0,0,1,0,1,0,0,'dfrn'),(6,0,20,2,20,20,'2017-09-07 09:16:41','2017-09-07 09:16:41','2017-09-07 09:16:42','2017-09-07 09:16:41','2017-09-07 09:16:42',0,0,0,0,1,0,0,0,0,1,0,0,0,0,'dfrn'),(7,2,8,2,20,20,'2017-09-07 09:16:41','2017-09-07 09:16:41','2017-09-07 09:16:42','2017-09-07 09:16:42','2017-09-07 09:16:42',0,0,0,0,1,0,0,0,0,1,0,0,0,0,'dfrn'),(8,4,15,2,20,20,'2017-09-07 09:16:41','2017-09-07 09:16:41','2017-09-07 09:16:42','2017-09-07 09:16:42','2017-09-07 09:16:42',0,0,0,0,1,0,0,0,0,1,0,0,0,0,'dfrn'),(9,2,2,1,21,21,'2017-09-07 09:17:49','2017-09-07 09:17:49','2017-09-07 09:18:24','2017-09-07 09:17:49','2017-09-07 09:18:24',1,1,0,0,1,0,0,0,0,1,0,1,0,0,'dfrn'),(10,4,9,1,21,21,'2017-09-07 09:17:49','2017-09-07 09:17:49','2017-09-07 09:18:24','2017-09-07 09:17:49','2017-09-07 09:18:24',0,1,0,0,1,0,0,0,0,1,0,0,0,1,'dfrn'),(11,6,13,1,21,21,'2017-09-07 09:17:49','2017-09-07 09:17:49','2017-09-07 09:18:25','2017-09-07 09:17:49','2017-09-07 09:18:25',0,1,0,0,1,0,0,0,0,1,0,0,0,0,'dfrn'),(15,2,2,1,21,21,'2017-09-07 09:19:07','2017-09-07 09:19:07','2017-09-07 09:19:28','2017-09-07 09:19:07','2017-09-07 09:19:28',1,1,0,0,1,0,0,0,0,1,0,1,0,0,'dfrn'),(16,3,7,1,21,21,'2017-09-07 09:19:07','2017-09-07 09:19:07','2017-09-07 09:19:28','2017-09-07 09:19:08','2017-09-07 09:19:28',0,1,0,0,1,0,0,0,0,1,0,0,0,1,'dfrn'),(17,5,11,1,21,21,'2017-09-07 09:19:07','2017-09-07 09:19:07','2017-09-07 09:19:28','2017-09-07 09:19:08','2017-09-07 09:19:28',0,1,0,0,1,0,0,0,0,1,0,0,0,0,'dfrn');
+INSERT INTO `thread` VALUES (1,2,4,10,10,'2018-11-17 13:51:35','2018-11-17 13:51:35','2018-11-17 14:02:14','2018-11-17 13:51:35','2018-11-17 14:02:14',1,0,0,0,1,0,0,0,1,0,1,0,1,'dfrn',NULL),(2,0,10,10,10,'2018-11-17 13:51:35','2018-11-17 13:51:35','2018-11-17 14:03:07','2018-11-17 13:51:35','2018-11-17 14:03:07',0,0,0,0,1,0,0,0,1,0,0,0,0,'dfrn',NULL),(3,2,4,10,10,'2018-11-17 13:51:58','2018-11-17 13:51:58','2018-11-17 13:51:58','2018-11-17 13:51:58','2018-11-17 13:51:58',1,1,0,0,1,0,0,0,1,0,1,0,0,'dfrn',NULL),(6,3,14,10,10,'2018-11-17 13:51:35','2018-11-17 13:51:35','2018-11-17 14:03:08','2018-11-17 14:00:01','2018-11-17 14:03:08',0,0,0,0,1,0,0,0,1,0,0,0,1,'dfrn',NULL),(7,6,20,10,10,'2018-11-17 13:51:35','2018-11-17 13:51:35','2018-11-17 14:03:08','2018-11-17 14:00:02','2018-11-17 14:03:08',0,0,0,0,1,0,0,0,1,0,0,0,0,'dfrn',NULL),(8,5,18,10,10,'2018-11-17 13:51:35','2018-11-17 13:51:35','2018-11-17 14:03:08','2018-11-17 14:00:02','2018-11-17 14:03:08',0,0,0,0,1,0,0,0,1,0,0,0,1,'dfrn',NULL),(9,4,16,10,10,'2018-11-17 13:51:35','2018-11-17 13:51:35','2018-11-17 14:03:08','2018-11-17 14:00:02','2018-11-17 14:03:08',0,0,0,0,1,0,0,0,1,0,0,0,0,'dfrn',NULL),(10,5,18,10,10,'2018-11-17 13:51:58','2018-11-17 13:51:58','2018-11-17 14:00:02','2018-11-17 14:00:02','2018-11-17 14:00:02',0,1,0,0,1,0,0,0,1,0,0,0,0,'dfrn',NULL),(11,3,14,10,10,'2018-11-17 13:51:58','2018-11-17 13:51:58','2018-11-17 14:00:03','2018-11-17 14:00:02','2018-11-17 14:00:03',0,1,0,0,1,0,0,0,1,0,0,0,0,'dfrn',NULL),(26,5,7,11,11,'2018-11-17 14:02:58','2018-11-17 14:02:58','2018-11-17 14:02:58','2018-11-17 14:02:58','2018-11-17 14:02:58',1,0,0,0,1,0,0,0,1,0,1,0,0,'dfrn',NULL),(27,0,11,11,11,'2018-11-17 14:02:58','2018-11-17 14:02:58','2018-11-17 14:02:58','2018-11-17 14:02:58','2018-11-17 14:02:58',0,0,0,0,1,0,0,0,1,0,0,0,0,'dfrn',NULL),(33,2,19,11,11,'2018-11-17 14:02:58','2018-11-17 14:02:58','2018-11-17 14:03:08','2018-11-17 14:03:08','2018-11-17 14:03:08',0,0,0,0,1,0,0,0,1,0,0,0,0,'dfrn',NULL),(39,6,24,11,11,'2018-11-17 14:02:58','2018-11-17 14:02:58','2018-11-17 14:03:08','2018-11-17 14:03:08','2018-11-17 14:03:08',0,0,0,0,1,0,0,0,1,0,0,0,0,'dfrn',NULL);
 /*!40000 ALTER TABLE `thread` ENABLE KEYS */;
 UNLOCK TABLES;
 
@@ -1775,9 +1952,9 @@ CREATE TABLE `tokens` (
   `client_id` varchar(20) NOT NULL DEFAULT '',
   `expires` int(11) NOT NULL DEFAULT '0',
   `scope` varchar(200) NOT NULL DEFAULT '',
-  `uid` int(11) NOT NULL DEFAULT '0',
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'User id',
   PRIMARY KEY (`id`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='OAuth usage';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -1797,52 +1974,54 @@ DROP TABLE IF EXISTS `user`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `user` (
-  `uid` int(11) NOT NULL AUTO_INCREMENT,
-  `guid` varchar(64) NOT NULL DEFAULT '',
-  `username` varchar(255) NOT NULL DEFAULT '',
-  `password` varchar(255) NOT NULL DEFAULT '',
-  `nickname` varchar(255) NOT NULL DEFAULT '',
-  `email` varchar(255) NOT NULL DEFAULT '',
+  `uid` mediumint(8) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
+  `parent-uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'The parent user that has full control about this user',
+  `guid` varchar(64) NOT NULL DEFAULT '' COMMENT 'A unique identifier for this user',
+  `username` varchar(255) NOT NULL DEFAULT '' COMMENT 'Name that this user is known by',
+  `password` varchar(255) NOT NULL DEFAULT '' COMMENT 'encrypted password',
+  `legacy_password` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Is the password hash double-hashed?',
+  `nickname` varchar(255) NOT NULL DEFAULT '' COMMENT 'nick- and user name',
+  `email` varchar(255) NOT NULL DEFAULT '' COMMENT 'the users email address',
   `openid` varchar(255) NOT NULL DEFAULT '',
-  `timezone` varchar(128) NOT NULL DEFAULT '',
-  `language` varchar(32) NOT NULL DEFAULT 'en',
-  `register_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  `login_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  `default-location` varchar(255) NOT NULL DEFAULT '',
-  `allow_location` tinyint(1) NOT NULL DEFAULT '0',
-  `theme` varchar(255) NOT NULL DEFAULT '',
-  `pubkey` text,
-  `prvkey` text,
+  `timezone` varchar(128) NOT NULL DEFAULT '' COMMENT 'PHP-legal timezone',
+  `language` varchar(32) NOT NULL DEFAULT 'en' COMMENT 'default language',
+  `register_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'timestamp of registration',
+  `login_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'timestamp of last login',
+  `default-location` varchar(255) NOT NULL DEFAULT '' COMMENT 'Default for item.location',
+  `allow_location` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1 allows to display the location',
+  `theme` varchar(255) NOT NULL DEFAULT '' COMMENT 'user theme preference',
+  `pubkey` text COMMENT 'RSA public key 4096 bit',
+  `prvkey` text COMMENT 'RSA private key 4096 bit',
   `spubkey` text,
   `sprvkey` text,
-  `verified` tinyint(1) unsigned NOT NULL DEFAULT '0',
-  `blocked` tinyint(1) unsigned NOT NULL DEFAULT '0',
-  `blockwall` tinyint(1) unsigned NOT NULL DEFAULT '0',
-  `hidewall` tinyint(1) unsigned NOT NULL DEFAULT '0',
-  `blocktags` tinyint(1) unsigned NOT NULL DEFAULT '0',
-  `unkmail` tinyint(1) NOT NULL DEFAULT '0',
-  `cntunkmail` int(11) NOT NULL DEFAULT '10',
-  `notify-flags` int(11) unsigned NOT NULL DEFAULT '65535',
-  `page-flags` int(11) unsigned NOT NULL DEFAULT '0',
-  `account-type` int(11) unsigned NOT NULL DEFAULT '0',
+  `verified` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'user is verified through email',
+  `blocked` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1 for user is blocked',
+  `blockwall` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Prohibit contacts to post to the profile page of the user',
+  `hidewall` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Hide profile details from unkown viewers',
+  `blocktags` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Prohibit contacts to tag the post of this user',
+  `unkmail` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Permit unknown people to send private mails to this user',
+  `cntunkmail` int(10) unsigned NOT NULL DEFAULT '10',
+  `notify-flags` smallint(5) unsigned NOT NULL DEFAULT '65535' COMMENT 'email notification options',
+  `page-flags` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'page/profile type',
+  `account-type` tinyint(3) unsigned NOT NULL DEFAULT '0',
   `prvnets` tinyint(1) NOT NULL DEFAULT '0',
-  `pwdreset` varchar(255) NOT NULL DEFAULT '',
-  `maxreq` int(11) NOT NULL DEFAULT '10',
-  `expire` int(11) unsigned NOT NULL DEFAULT '0',
-  `account_removed` tinyint(1) NOT NULL DEFAULT '0',
+  `pwdreset` varchar(255) DEFAULT NULL COMMENT 'Password reset request token',
+  `pwdreset_time` datetime DEFAULT NULL COMMENT 'Timestamp of the last password reset request',
+  `maxreq` int(10) unsigned NOT NULL DEFAULT '10',
+  `expire` int(10) unsigned NOT NULL DEFAULT '0',
+  `account_removed` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'if 1 the account is removed',
   `account_expired` tinyint(1) NOT NULL DEFAULT '0',
-  `account_expires_on` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  `expire_notification_sent` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  `service_class` varchar(32) NOT NULL DEFAULT '',
-  `def_gid` int(11) NOT NULL DEFAULT '0',
-  `allow_cid` mediumtext,
-  `allow_gid` mediumtext,
-  `deny_cid` mediumtext,
-  `deny_gid` mediumtext,
+  `account_expires_on` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'timestamp when account expires and will be deleted',
+  `expire_notification_sent` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'timestamp of last warning of account expiration',
+  `def_gid` int(10) unsigned NOT NULL DEFAULT '0',
+  `allow_cid` mediumtext COMMENT 'default permission for this user',
+  `allow_gid` mediumtext COMMENT 'default permission for this user',
+  `deny_cid` mediumtext COMMENT 'default permission for this user',
+  `deny_gid` mediumtext COMMENT 'default permission for this user',
   `openidserver` text,
   PRIMARY KEY (`uid`),
   KEY `nickname` (`nickname`(32))
-) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COMMENT='The local users';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -1851,10 +2030,61 @@ CREATE TABLE `user` (
 
 LOCK TABLES `user` WRITE;
 /*!40000 ALTER TABLE `user` DISABLE KEYS */;
-INSERT INTO `user` VALUES (1,'758d682b8759b1098e3044f007138090','admin','6a4e012bd9583858a5a6fa15f58bd86a25af266d3a4344f1ec2018b778f29ba83be86eb45e6dc204e11276f4a99eff4e2144fbe15e756c2c88e999649aae7d94','admin','admin@friendica.local','','UTC','en','2017-09-07 08:55:42','2017-09-07 09:19:43','',0,'','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwQg7HphhbaW2328hhUgS\n9sxr551Y3jTlBR5zqxpYHcW4X0h0STElurfVgsDZldgUGNUh6hQDBpoeRQ+Fxi6X\nFRGd76BBlW9wXAoq/oxpezUgD3UWVBc1eybc4ChSexlBhB2PcDbymjaTDji1XoYf\nxDfdKyawCtnjOhvOqWKIjhpVlT10/1taqYSfVNHh3RyIAXKr5gdKKZibBN0DuMbI\ngR4UuD4GhdVtGvYamjEwf8z2beJYwTmkvInf1V0MyLr6wEMj7FerAoe59bng6GjL\nB8DvRyg38iST0SZfSXOeinaEbum6gFuRGdLS3Yz2e+yk4OxOoY/mXP3yjodCu0Ld\nU6Ld+y0qMw2AKewQBl7+BM0utgbZXmmX1RcHL/NrLsM2FS9626tUGMWwUnSOAP85\nIHMuODjDYgud14m6AgD1eOI0Rcm36QpM+YqcXvllCSR8aRdqX6yyjYdkDmAeHrPl\nHJos5usizcQGivq7QZU+svWq1tAt1BQLelXtmcoZpmHSaUNOYSlWekdWiouSmyZ8\nD9EhfIZhbw/nEyKmayh5mxSP4VxT+hW/l/6x2E75azpDo+oSj1vgBi8zg4d0NIIe\n6PNjZm+MP2JSyZs/hnTWAxGyVVQuvSjnqv+CM2KHKdBSZ7mNVi/mbK8ZFwtLX3qy\n84tUkMsLqWcBG29JDamlq8UCAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIJQQIBADANBgkqhkiG9w0BAQEFAASCCSswggknAgEAAoICAQDBCDsemGFtpbbf\nbyGFSBL2zGvnnVjeNOUFHnOrGlgdxbhfSHRJMSW6t9WCwNmV2BQY1SHqFAMGmh5F\nD4XGLpcVEZ3voEGVb3BcCir+jGl7NSAPdRZUFzV7JtzgKFJ7GUGEHY9wNvKaNpMO\nOLVehh/EN90rJrAK2eM6G86pYoiOGlWVPXT/W1qphJ9U0eHdHIgBcqvmB0opmJsE\n3QO4xsiBHhS4PgaF1W0a9hqaMTB/zPZt4ljBOaS8id/VXQzIuvrAQyPsV6sCh7n1\nueDoaMsHwO9HKDfyJJPRJl9Jc56KdoRu6bqAW5EZ0tLdjPZ77KTg7E6hj+Zc/fKO\nh0K7Qt1Tot37LSozDYAp7BAGXv4EzS62BtleaZfVFwcv82suwzYVL3rbq1QYxbBS\ndI4A/zkgcy44OMNiC53XiboCAPV44jRFybfpCkz5ipxe+WUJJHxpF2pfrLKNh2QO\nYB4es+Ucmizm6yLNxAaK+rtBlT6y9arW0C3UFAt6Ve2ZyhmmYdJpQ05hKVZ6R1aK\ni5KbJnwP0SF8hmFvD+cTIqZrKHmbFI/hXFP6Fb+X/rHYTvlrOkOj6hKPW+AGLzOD\nh3Q0gh7o82Nmb4w/YlLJmz+GdNYDEbJVVC69KOeq/4IzYocp0FJnuY1WL+ZsrxkX\nC0tferLzi1SQywupZwEbb0kNqaWrxQIDAQABAoICADPBpTha2ySvHg1imrZF0O/j\nd7sucTmDLTTmKVVjRuUUso65upQ1XUxnJhRc6PpIaXsPCnzcyMLoZ91UgCXXMCMy\nCgrKCUusCZBkGYsO0ul6IRKD7my1nF1c2jQwG41uBCcMVf1cfkfjAiL6CYdCpxnR\ncLe1M9Z0/XwDILJB/SM85F2TkN82+2Qgbygq7kh+8eiReo2+vp/QjyAKsojEo9Ya\n3qtX1h/kTdDA0/kr3zklF5325p1Ie2ciAKYQwPDBUaJjXipshymygqXkJO2ry2RU\n0tNdcUK3k/qsMzhai9PMW03x1VO9OXaXFHra5OvtU3gLZDnlf3rHjFWy5q2XDAh9\nj/vGv6mG8rq8CkJ4qbJ8RfhXEpMkLKhOAeAyiZpQ8qUtD3ASOErmcSyChkFTuAgd\n3JSf2QWIFT+/baU2H/yC/+YoKfzEbngzQGJZlvCpH8c1rx8CnqWp1sDICYjw2NtP\n5BgCx2UD+Zh9yoJJrG1tIkXMpb/evgM+/h+wH/bJ2n4n+AQ2KKjMapPAoj3oY3lK\n8rQOhbTP87cL1WqdbnvQzHY4LwkB1UjKbUaqk052UXgMeeN1I+s1bXrO3XkgyEO+\nmPEcoVddPUDpETM4CgiocqWrPkebBKSfQzjLzyOuPIozqKg5zduxgFBGGwZlliUn\nCCuMGyG4vM/oLDkWqOMBAoIBAQDj7Gg19t/W3IincZ0rJ4RKa+ALw/BFDuiQx55h\n7Dda/JkUmly/Xz0w2GUqWkHiJ4E0YPntIYx22VNePBcnGmKSofvR/L9fjJGpBoCK\n1UgGtzIabKt6T+08dSE3at3Ro459334U2ZI08WFGcsGHmtEApsYSngd2K5NBYU/g\nmoPUv2YQYWG20vo+w9Rj0mdxgu6xYtXK2w2OidmPWlXoX0aH+bD+YnGCPD/wQiyj\nDT+mCCJAhTMc7M81m1SKy/pPxsMBuCABvfgKsrCpJ88U/bO4a/kusYC7qJPNZhed\naXgrYwvjGbLLMvqbyGxmxq3+18oTCkMvGV4xh/M8YeusGJIVAoIBAQDYz4Wyj6+o\nNmYjJ5xiGvyqQ7rtHRcZSnJXmNAmL7NdFIH+uK2EZbgcVKZQ3QlErPv9pAHM3HA5\nwrZVmqMtOq1fiF2MCaUdkEMG0Hg/dPk71WkGVtqTCd6ymP3X1vYkI2zEQhsOloH2\ntwrxuBhDgSoFGqIXxvpL+LLaBTpDAujVMxA3cIVUmyy+VycLZnr/IvItf2ExcmcE\nanfCyME8PaBf8cClMejVRYjlB/v53XhNi+QPRXNWNe8aVbBZ81fiQT0YeEoE4Dox\nY2b/7mU/XigJGWZCOCOkIy6uhzdZE3HuH+UhLSC0vWOEIm3Tux1IZEziNs1I3cEo\njsR6Dd3xKw7xAoIBAHt6iyaZPcFYrswQODa17OyorrORDm1LW2F8U+j3ITIw4PoR\neqfPAAajZYNhbIoKHuxykVQPtdp5eLn30g9EMxz/lr63sDIipJMuy5rrW18QBpvc\nPbZA8OStDDbKtauqcTruRo8jJBt8ndedug0uKYax02MorCAwEVH9V1n2O++ZVcEQ\nEPEMMbipPTprNdGAPrJpOivxKtILCouoRBxk6YAnHOVkDdyhqX4PS8F2HwJjK7NK\ntls4TDXdlhqv0UdBBkq7JtPqyCN7lUu/Hmhf3erOzCuozHZeKNzBL4//ILRYr4r0\nVDHTx4N4PIodnwwOehKAn883bhllbrhK0HPmx9UCggEAPCc/me4ht1L4fZJ04gdI\nyNin2Tez+/FazhD4109uvUl+U7Tbd5tdPIcD6fWZp7My6wmA8lzKykvKmO+hjF/2\nUEYeZkcax5wJ7K8UXc7Pg5lPXVHlrNwVLIokC6l5e0dU2xLYPPDnOBNK9wuzt67z\ngJ0GEgDD2yYyQSkoJAV/of9b5XXTmEjBXkIB9DjHsVf5x0PLLJPoHyKG/cUDT/pt\nL5F8eJjjV6DGPX08nPOkeCdy7AXB3U5ze2QA3MQWQxEEqXBeYQHxQ1in8CQtdSpj\ngzrH02GOCfE093lOkulBN+cjhFPn+h19qeB/hjopArfJWQ4JYMkd2Wna+14zkMD4\nkQKCAQAaIlKP37v4MVohzMD/5u3ICy3742m1G+gy0cRdfSa4nHXp2lzQ5Mxa52fN\n+YnRF04j3WhZA35ibMzG5+NXSsEqmFGdqsAyDUO0brJwQsqC9/9RuGjri2Q/5djQ\ne2hIksSml0tXpnkRbcv11e8gqqGjwgBKeeaKdI+dZO18A3i+ckP+LJuz4hkUMBRD\ngyHr2Kqex6Ml1hTxBMg83f2btLBN7nJNiGUR9CvjnRQsAkCGEPOtImOt4ygQRTnt\nSpwDq1AyS2PJoAsaUrrkscBpOhTdyU8aC5OVLuDxQ+X2Bt5f1vC+AF4ABeY+9iyc\nEOHXovtAeaZeQuqlg74ZFuKysCKW\n-----END PRIVATE KEY-----\n','-----BEGIN PUBLIC KEY-----\nMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBALseuSzav2iKkkJrisHzK1+VhYV17WQN\nF8DZ0n+tjszcbqAO6a6vNV5MBG2ewLvBsWKkqaodG95fG2I/ooLK0O0CAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIBVAIBADANBgkqhkiG9w0BAQEFAASCAT4wggE6AgEAAkEAux65LNq/aIqSQmuK\nwfMrX5WFhXXtZA0XwNnSf62OzNxuoA7prq81XkwEbZ7Au8GxYqSpqh0b3l8bYj+i\ngsrQ7QIDAQABAkA3F/StoDp7LVGi/Mb+E/rRSdTmVrJuouw7e+becNt6tWrTFONR\n6rr7/GczmaOJFGKMfQhIOjoAnIUIHRqdqYKBAiEA8hLfEA/yxY9XBnPypVFF7Tj0\noRtmXnYysb5R4kYNIOsCIQDF4oYo62RijvcSkMx9cxTfUnMMTv+7WkoOTUsdSCYf\nhwIgNkDEfXUVk/FsL6YM28A7S89YBEN/zevvsKZW879/ccECIB8Ja29plCIdOEVS\nLrCSZzirrt3EWjnhbHIXz2s1UL1rAiEAtlZ3IPtPIYojIsMBfPgIL5YXSo+fgjzW\n67eAtyApGNA=\n-----END PRIVATE KEY-----\n',1,0,0,0,0,0,10,65535,0,0,0,'',10,0,0,0,'0001-01-01 00:00:00','0001-01-01 00:00:00','',1,NULL,NULL,NULL,NULL,NULL),(2,'758d682b8559b109d5ad831494500945','friendica1','dbfada587308ebdfd1da52a5acd46c889d8467ea5051e16fe3dd034d153f897d4878f4b99f43282c2b7425c5136482833a79070ed1846fe40804aecd77738435','friendica1','friendica1@friendica.local','','UTC','en','2017-09-07 08:56:53','2017-09-07 09:17:00','',0,'','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzNeTX2GGZAqTecUeOPNq\n+uFCfBuN4g6xKTkBlUDeVCLp2N3uVJq+TSjmoau8MpY3jCD2Nqn5KsMPh8XJV2s6\nb1kSjmVdpr4EeBXPyvi3asCcgmqi2IeoK/ihVGP9IrrYh8zwzVY9wW1/TPcC4N4W\nCcmeFTO08CSJh2P8ROq6irU0ndbmqfmFSs5uZ7UcEKUzkgSSPTxq5x3O7xSfTbOZ\nPNhSn3r5buSOd46KyWaBIJ2KgFNoY2AGJqbzZTZmJZB/qelrONtJ6XDnDI9GNQBI\nyL9935Scmo9WrXeZcqXNW3yI97s1tH27pCxhsyy5xqzEYfAPwPFry4gbO+wSGcNm\nFYfbCM19uPvJyN6TEgFNZD5401Pl8LQaVkSAnV9LQPzn/54CJYQb6KlE0rymROyQ\nvKPUZmEkw6ZnVJIF5pjxu6bGGPdv3xmBH6Xnmi0hhNA2AEDbv6wDrLZYLUCTSSqq\nhW8WK3HylsP9dqNT+a3X9l9dG7vqmRevGcbBQDDZPOKjkJkAa8IgIlk3UIWs3bYY\nST0VUtjRpsoLo3XmdYtY5qXxjGjtEy7NjRErlT31WoMzxcLhLwxKGWQz/xMC9OXe\np+uoyVUOd3U/Jvz6vpW9k5ua417IrF9XaxtcKvhp69m16br8JkMuKWvdGomWDXxA\nG1cAbsHJN6JJEU/3Vo35sh0CAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIJQgIBADANBgkqhkiG9w0BAQEFAASCCSwwggkoAgEAAoICAQDM15NfYYZkCpN5\nxR4482r64UJ8G43iDrEpOQGVQN5UIunY3e5Umr5NKOahq7wyljeMIPY2qfkqww+H\nxclXazpvWRKOZV2mvgR4Fc/K+LdqwJyCaqLYh6gr+KFUY/0iutiHzPDNVj3BbX9M\n9wLg3hYJyZ4VM7TwJImHY/xE6rqKtTSd1uap+YVKzm5ntRwQpTOSBJI9PGrnHc7v\nFJ9Ns5k82FKfevlu5I53jorJZoEgnYqAU2hjYAYmpvNlNmYlkH+p6Ws420npcOcM\nj0Y1AEjIv33flJyaj1atd5lypc1bfIj3uzW0fbukLGGzLLnGrMRh8A/A8WvLiBs7\n7BIZw2YVh9sIzX24+8nI3pMSAU1kPnjTU+XwtBpWRICdX0tA/Of/ngIlhBvoqUTS\nvKZE7JC8o9RmYSTDpmdUkgXmmPG7psYY92/fGYEfpeeaLSGE0DYAQNu/rAOstlgt\nQJNJKqqFbxYrcfKWw/12o1P5rdf2X10bu+qZF68ZxsFAMNk84qOQmQBrwiAiWTdQ\nhazdthhJPRVS2NGmygujdeZ1i1jmpfGMaO0TLs2NESuVPfVagzPFwuEvDEoZZDP/\nEwL05d6n66jJVQ53dT8m/Pq+lb2Tm5rjXsisX1drG1wq+Gnr2bXpuvwmQy4pa90a\niZYNfEAbVwBuwck3okkRT/dWjfmyHQIDAQABAoICABS5zzB8ZqOiqk9M0YUDpBRk\nTFzQUOfJgsVf/jgCyzwKGE0YD3BCA/U8qTE8dhtMNayY/TCEvDBGckDTk06kC9KO\nWaFMwlAHs94OnuqzhaNof612aqmr+CkSzAgE4ezsqNH8u3SbQD5c/N9lssXb0rEE\n1Fji1XDi0YOAa1rxwRQdx4gc4VPbalAqWONnYMKSZIhmrAFEJrDhxDlOhdvPyzZr\n0NhQEgLVX1DbfFFqbLBHIGdhiRNc+OJaTBA2k9lDKJehhXbIQU88XDRaHsloEPU2\n4t6HY90DmcqNalo+SmvySs1+BK4RdrXiw7PkV5uxiWE7b+yewMBkMhU7Co3OxnpC\n27jJGJD6YrN2wEgvlol64OgMfJsqCwx6gsOTdhC3sV7KscZ/uNwkDxhpNtokZ2KV\nMH3eO5T3Y37/bfUrMFcf222L1jlEdgVEHBia/7Jc/6YfJA+8k81oiqT+fftKQaPq\nGLBeXME/FEkWPHBHCSCXlP6XD/2T55AY6aqg4GxcMOBLR2t8ItxJFxcvHglpw9gZ\nBo6JIkx/60TejVll1kp2GcDXDiGWhnaIzSyQ+O3Gr7yUswOpcc2kOi1sDrHLaoUd\nrSLR8vtHcRc1+COJV+S+YdoVgB425/soUJwg8y2kOCcdXBuGfZkd/any0savveZo\nCNfoQ8ttA3rMtvz1lSaBAoIBAQDrqY44WCOcneRCoXy73V6jvLRLVQTKxnipq1To\n1c5Y1Px48E8KYvtKvwCGD++MfL1JqhBBY9e3h4BW5YHVWr31cBC1kvx9Vq9e5DEX\nU69i4z4fbyQUCbFt7RWtCrUH/e4aDH8u2SkbUMhqXkM+F0PBNzHVqyo/u9V1idpp\nGJTfju3sUEQLL+ZdK1rZvUye8UCRx3OVpifPXOOFlnPb2dp6p/I+VB6hL5x8bQyF\n87McUz8NKXEcGWonwL9MvjTfN/lhAzw9E6fmhUKA1eSAUsAIc081U6A1ugreltj5\nDLmuZS3MbJIYxs4gJnIrSvkMGhJ9qoYWchx68KUyAbS4AsH9AoIBAQDehR1HEh94\nH6kZWPlOSgfJ+W5ksdPpZYb9HbShK+U8Brd5NcXk4VqDWCGnTuXK4c857RDMHUyk\nxUC33bJvSsUCvGa3nyY45bDccf2Z06Y5FpDqU10kaALCX9Y/rlghtjKUSmXrQ8GY\njhkG1Ack/qz0Le/redHpeOJQwyHjlfynCJJMpWSdQHFDdE10cx4M805vq6Aw9Dm/\n0QphCQLWJ0iI3Ip/4WUawrDeucVw84ib00/8ztpzZVcsZZiPezrKX8eW89N4WW01\n1vAkTPHO3dT+HD/BInDFMQsjGz3I4NwtVLKboBtXuRoRCj5CPKjv/aV6bllbjVJU\ncQWb8NuH0hqhAoIBAQCHbIdy74t/a+iJNb21Q7AoDb/Z7oBzenxKnE+OAZezyqlP\nYmE5icn4mSxW3f99zw0DsPvoZ9TF/dMNnJPwpFW3HnArt8zqxg6/TAi96/REsmu3\nqqmj7jINBopHR3jin9TdGUNZC6gor1KMdaDUpI/mD67Op67+sxUml1JwxJSAp+Un\nwLRpbVxHPCvYJoVKbT76xxAv9iy4aBvDX8Myms2HYM2/bZ2waOjXQ99HdtT9uQTp\nrl/2ktBDCeuk0UUW5VaknjRWsN3yha/C06ec6nC6KnFhJq5RUZj/ctY6wEpP4org\nB6ApJs27AfznzgyyHKV1m7G0YlzldTapNvvAJq2NAoIBAH8GtmPv8I7+Y+XYaNlM\nYY3nGiHZcgN2tcygvJCVIlNV8j77d3DlRGpeUTfVTlC2/zkuH7ylrS8Se5N6t3XY\n1QZuzqRb8dHhLUlquT6rF+TXAPsDg9RYm9qiIwhPWnhELjOBFRVspIOV+qtvNnTj\n/Y+W+bMO48nH/EnmWt40rPodZobik8FBHGdJaT3kyW7TJh+Rdez8PktF5grmvfvK\niRm37Eh8Pt877QP4QMHuBDoQM0U6QHJHk7AAf0rJKhKFAsclgb7eLf3iKUxPsGpL\nMF+veKWkJ4QqLxVnY6nc01P9WciFaZZ2UG8RzeC6CCaYQXLWs6QT1L/nlTAkGu45\n/oECggEAC7vRhmJh2h1/IpB5q6kHGr4HJACYrMnjDcvUuW/Ka57uFVG5daZhkG9m\nuQVN/mnREHgcUaliXBCrpfWjoy8OGHgrhmotDJzcO1RRMNEPJ2Brnobnf0rYCb35\nO4IalJuA6yTpAaKQHIbLAXiDneZn5LgI2OL/EoEp6bSyxwdDeHOwYp5bLf9qpML2\nbTI6B3NZCW3xWTMt93txQ2FGEAiQqOah6ShleBWDyrVd60xjFFoKnSqgVH1IiGqp\nBfeXjHx2ckz6eZ+j/4V61PUJ/i9fsHvNks192RAIOurnSGr4WJPBoKgQxRP5X6GW\nRJsrImJTYQ7sYY2vXcN8lgyR8D3FaQ==\n-----END PRIVATE KEY-----\n','-----BEGIN PUBLIC KEY-----\nMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBALSEy8DcODTq3HN+rMu877pkZUjVBLOv\nL+wwHdVTLItQhlArGI2yrP/7b5UiqiNtuWBo/7Wjcl0mB/E2RGJdOSsCAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIBVAIBADANBgkqhkiG9w0BAQEFAASCAT4wggE6AgEAAkEAtITLwNw4NOrcc36s\ny7zvumRlSNUEs68v7DAd1VMsi1CGUCsYjbKs//tvlSKqI225YGj/taNyXSYH8TZE\nYl05KwIDAQABAkBhlmyj7SlBijn1AeUeGxyp8f5DOk1ZafqJP5XRLi6lfNDpy2VY\n8CdqBnS0B6z2W/VIRfo0mItuekan4JWgie0JAiEA4vi+mtI+BN/yAaMibthK+8C5\nvvai4zt8ubeQGp1FmL0CIQDLmyQYe6nV4mNP6WZJqHEmSzp/DKFAbcWfSD5IV0z8\nBwIgFMlXG3K5v1SLI18/XgttApVp7XVFAa6HA7Mt/WH957kCIE4bPNSblAJ17203\nd0LoeEedclpMyQtDUR2ShDoSK3k/AiEAvcBKoixId/L1Y5pfHCklculIIlbPAUlM\nXaqtsXcHyVA=\n-----END PRIVATE KEY-----\n',1,0,0,0,0,0,10,703,0,0,0,'',10,0,0,0,'0001-01-01 00:00:00','0001-01-01 00:00:00','',2,'','','','',''),(3,'758d682b1359b10a3a54a8c301503194','friendica2','2d8912fdf66ea84e9904308bc9fe9e1e6e822af2028749ef2f63e25189f30880fb0378912d08ddbfd100a900d3df2d1a40ca1f1f3a0fcf3571de7a8e9dba6beb','friendica2','friendica2@friendica.local','','UTC','en','2017-09-07 08:58:34','2017-09-07 09:05:38','',0,'','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzOHCS/TBWB72tguU5RWu\nG4KnESmdXWGSHHrCm0iWP88Xl17lkEw58o4yt+bQS3c8U46OwP8z9EyCxFyDyHPU\noVgii+jMmT4hhKw5TeDPWwHSUZM07OP2d0J0Kktr6wC16DfGLWqo+EnJcLxyjFGn\nV6KzYR2d/73m0bj26QWM4w2ZCfBZvEEZsreF0XsZuBOWVRlTB4GzDlsRwRt05kUi\nevFnrth0fq+aeEnZA/8eFY9X8F1LB+mZLRdmWX77pMDtzzxTJUBoQPCkOJ0BvdXi\nyAYybmcxFzR/x1u+kpsgxeDOOPDAQAPnbBQcNNwWtl+emd8wmqXcbmM3XeIa1HPb\nDi0CHXJ5Lr95JYP2brAZu4dEwUNeTzkVkvB8DlviOSFmlg6CWmSKXdaF8trK6j4d\nlv7nxGBvmrbx1CmeA3RblvHR1aRyoQdNhBh1eLJrkDcaTgtzhycrjqdz+vVVV/xi\n4yMY9x+voxENfurEo/XsbzGfPSigTIHImzBcMtG0RTgxTMke6CoqRZW1pXFxZast\ncpsO02JRdPrXt+DHpYzDf8oEMTa4TNKBvczcT8ar82RZYY0srVV0uxH77xhx1bvm\nVAPf40FA2qbHZzCAv64YU9LdIT4iPEUga+Y5m9t2LvS+RiA8Zw/mmOdMFp4hI6+K\nELuO8hQc3Ot0moqfpYCnSl0CAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIJQgIBADANBgkqhkiG9w0BAQEFAASCCSwwggkoAgEAAoICAQDM4cJL9MFYHva2\nC5TlFa4bgqcRKZ1dYZIcesKbSJY/zxeXXuWQTDnyjjK35tBLdzxTjo7A/zP0TILE\nXIPIc9ShWCKL6MyZPiGErDlN4M9bAdJRkzTs4/Z3QnQqS2vrALXoN8Ytaqj4Sclw\nvHKMUadXorNhHZ3/vebRuPbpBYzjDZkJ8Fm8QRmyt4XRexm4E5ZVGVMHgbMOWxHB\nG3TmRSJ68Weu2HR+r5p4SdkD/x4Vj1fwXUsH6ZktF2ZZfvukwO3PPFMlQGhA8KQ4\nnQG91eLIBjJuZzEXNH/HW76SmyDF4M448MBAA+dsFBw03Ba2X56Z3zCapdxuYzdd\n4hrUc9sOLQIdcnkuv3klg/ZusBm7h0TBQ15PORWS8HwOW+I5IWaWDoJaZIpd1oXy\n2srqPh2W/ufEYG+atvHUKZ4DdFuW8dHVpHKhB02EGHV4smuQNxpOC3OHJyuOp3P6\n9VVX/GLjIxj3H6+jEQ1+6sSj9exvMZ89KKBMgcibMFwy0bRFODFMyR7oKipFlbWl\ncXFlqy1ymw7TYlF0+te34MeljMN/ygQxNrhM0oG9zNxPxqvzZFlhjSytVXS7Efvv\nGHHVu+ZUA9/jQUDapsdnMIC/rhhT0t0hPiI8RSBr5jmb23Yu9L5GIDxnD+aY50wW\nniEjr4oQu47yFBzc63Saip+lgKdKXQIDAQABAoICAQCo2WniZV0ufZ4/m73jKoHp\nxDxhpZU+T1o2RGm7xg+lmMvNgXTZ/ihHoS9lZkDF4QeDqVo27lvn+2JN6Bznh6Z2\nLgeSnJJ5vL2s9K7pYtwhGZg2iIY2sQz/bnIEJVJUQ6qnLcgSx/NnZJAya+xPfj/W\ntoz0/Y6oJN5kevZqRpu8yAkXKtEZl+FQ63TKlpQ0o1fi3FMUPazOqPkx16n42IM5\nJViYvWUMvzYj6mCCra8if5cuzgQ3CiqmAcHlAgTr2+BhSUsQyUriMjB1Q9galnom\n9Qx89mh7wlWIfDDL7DMPQV1Tif43A8CmztAMNFI3jQhNsaYB3a2UAAqyQdRwwOaH\nBqsCSGgXdziDKSWJ2nryI+uukpyKPuudGyqag9mIZAREoooee6C5Nz8FPsLtk5Mi\nrQUfEHS4YQk7FR35iXqdsFgO7dhmv9/+MU4N3/bxasFcvIyocQs/UvS/CsH0Ql6m\n/OE+Uh3RNBM2FmXYHur+SzUdL+3RlJRrkBBon7LAguvRWomQBCFgQ8a5vt0+s7lk\nx9mUj6xJzWjbSjQoBvxFdDoSRF25hjI4m7T7ZekPRpUnLhV4uTfO+BBWF/2YRMbi\nXx07MIBorEqNwcqKVPptCiAGGeVPTnszWvepEi7xvMsUjtIeg4d2eECTOdMgZ1so\nnQgf2L75XWDvRfouNvlAVQKCAQEA93xFHko6drhbSAk+B3LSF3Lfm7rc4hyZXnYe\nA9Pu5bNdnpcatwcWXEfAWauY2ixSwi/Dy7VFtPXjruKezvDmEt+GIP8a2fNCaVe6\nXdM/F3ZGmOIPXS2batPmjhrcM1AhGA2zxS5S1S3kJojwZqt3eG5kCVf/TdZdQ7Cq\nMzpAazkTE01VUSSPXPxuNHqZHso1OEKqf93Fr4+m2RdbLcTWtbQmA/fouO5ean8M\n+NnZkyyaPZgcMuP4DmzAiRCvxwAJQoECvb4KTXfPWyuSrvfwDWrJZAnxcc6LVDer\nDLZigxXF+YJXtJqnGP70A74mWocgoeYJ/DJ/X7MF1g9NPoEYowKCAQEA0+5B/Z1I\nV7ZAbAgsce6np3Jai9DBPGDbPdsLnoWWxyj8j33jRu3KzEERN81LZZ3wq2JNT3nc\nx57SOUom7qBpJODcuKiN/eKLM4e1tDdQydtJrUS7I04X39Mt4cLZ/d67hf9WPWXD\nqrh6GNy6YtAnwCbP6aDOE1T03jf3F92AOw8PdBVGIZYfFDLm/HhQwBazEsnTZsq4\nDzE3rYk29zwkixufzWak1gyfKIM2Otj7bC/uf4n+T/5jHCIzEOjXkYeLD1US3s95\nYoiPaykMQaolf1v61sZtCcSZeke6mrJp8qz+AwEwLmWZ2LIHS5rum6jvN71ZjzxF\n37I4jhbEw+1A/wKCAQBH1gN+Ek+8DDE6zKv7n4GKGub7HhdlbqW5/JEjzU2n0ROY\nqAWyINWFvbIAlUWN9pWjFhhANgLgzwrixZcRPG2cBtO5GjNiFjEtwLAw8dN7bPJ7\nCAsrocReEtn2X6eRIW4pvDh1QMf8ZxC1esRFGPpZs7lH2QobPuDdeBc/PWZbeTqn\nPKhKIFGYzRD0HK37ePhPt1IkQWxTVGA63YOy2lL0dTEfr8MWguJXCT/rr9hu1uCC\nhneQ8gkbrseIQZa0LbeCXU49Yz88U02WCiTOsts0Gc4RQq2ZujlJHcuBqiMYJ6bK\nkOICY22jXMXZnEUnu9dmBw7Y7JN6ZM2J3/Es9m3/AoIBABYpMuNXQApT93aUgDlF\nsGhVD9zQ7nPm2OYl8pgX9gVLZuWGT27KTMuA/lDsebbdhh4VwGnQH2MMW4U8GMgZ\nJAWEMfBpR7fFqbKwvTJkGmGROaoRptPxRZPVHFYgLvVaBhfj9FulOYmvkqzo3+CX\nTaDNLi6K7yGcX6KhDYiEU/VZBM+prdSzQvq0u+yolCER/pW3XxC/n/GOvvi5gXLm\n6hdVwycSVahAV6A/4DrVF61fcbwKbPpmamy1sstQ3cHM/6CRz9BWt6WzC/QzraFs\nLlGcB6XPx/UehsH/oCavA18p8cHUrPodC7JaI2Mnh03lo2YbubK9pbzXgQxymw61\nz3cCggEAMxbSRrtDKhI8nWpaTLidk65YniNI5xt3Ii7gn0xsrTGgponQbgQDBJlD\nw+RgrTaBSHzD4RRMSnIzSLDQ+aR/WOoD1ZHt2gKMvsjwcOjtn+vCKj3iAfSIPsdJ\nIc+n54HP2iaI1fNFsDZb5YsGuALY/2F6vh1257wli/TooeigJlKLSInSIa9H7Zsm\nx2x6W53KnKhJizvUSJjjxbAA6J8cCWjQzcTrjdrh5OZA4cMrld0W3Q939cRs0MRa\nd2UaQawwT5B21U0GltpminPSCNxwrRrD9narRYMsg9u4C1mOM7l1DF1TpYRdkxdT\n+pED0vqpSjdN6VqCDyQHcrqkf5TlIw==\n-----END PRIVATE KEY-----\n','-----BEGIN PUBLIC KEY-----\nMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAKPPDl5cOaVkeHEWruSMLnyTdhblXDke\nRqPOigtuOGemqirHavIB0Zs7D7srlzzI5VdcNsSDG5zVxJGcEJudLLUCAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIBVAIBADANBgkqhkiG9w0BAQEFAASCAT4wggE6AgEAAkEAo88OXlw5pWR4cRau\n5IwufJN2FuVcOR5Go86KC244Z6aqKsdq8gHRmzsPuyuXPMjlV1w2xIMbnNXEkZwQ\nm50stQIDAQABAkEAhojq0yLJkYXXyYGIuFpNX7E4notXV+3+tFBQXhzzJGST+cJn\nsn9gB+x5r+fUgyPnYlcNBS1swRQ/3voOYIXP4QIhANNKFjATHnDuY7XPCZVkN1Fy\nmr8EdaHKD9NploHAeiFtAiEAxnjdGANlZhwqhiN33joulxMES3bt7bp5WCn+8McX\n82kCICfyvwUx6DSD7hhG39H+E7NzjqyFBFSlpp5bPVik8rJ1AiB7SgNV8m4fwylr\nUEcbBhuA/3AwjL16atcMPHJBEfw/2QIgbrelAi26UDn47lj3l66o57gZS98idlbs\nw0G3DkFNX8g=\n-----END PRIVATE KEY-----\n',1,0,0,0,0,0,10,703,0,0,0,'',10,0,0,0,'0001-01-01 00:00:00','0001-01-01 00:00:00','',3,'','','','',''),(4,'758d682b1359b10a642ef08222820194','friendica3','a4fe179880e01243799458e9090e87bc40746eac1c7f9c2373678d7cb3b15a547fdef510a3670988f567ceaef2aa5a52e98aaac0bf677d0ddff56cbe845814f2','friendica3','friendica3@friendica.local','','UTC','en','2017-09-07 08:59:16','2017-09-07 09:18:08','',0,'','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwIuhjeg03GoOuSYqulsa\nvd/spvniwjaYZhCJYTHgOM4ak9qG8SwPhguSBMqZS3baHEcZtYcYsu5vSQAO/zCB\niK8yefV8LguBhoNw36p/hoQ4TdApOH3cjKAJoaxZSJw0oa50ebCSbh23chRHESbv\nlvfGXq0Pmk060VcLf6h00Iivg/BFNmDfEqrVmgpl0G1PIOatNJ5QdEpCP0E5Bg/H\nvnqvBgpkVAZkKA4xY5rw6pB2NofK74gaeNklnVFqAwaQZUrBv+z1C7h3NQ5YRees\nuspiwZVyFy95xm+kGlKq6GJ7WPQi1mKSJisHLxh9uI7ylgIyRWi/GRA2NBLb15tJ\nL9PpyWEbKhEX/zCUQbos6cFC3+jgiJoYIIa5pOYU0Ekf5AcyF3dFsbcWGObn++wv\nk+5dIK/un+1KOv7X3e/bAnkVCHHjzWAzURQkvb0fwFVzw80ioP4L4V+mvw4jxh+x\ndpPBQmqgCglqE2cpCB4gAcYPlXICBC18YcUYOkYIlgz2WuslcJCnrHO6K5q6lAn3\nNqEI/LmJDrq3hbu96k8d/0zCMNO+u3xPIhDcQ6ZzyhZmVDTpVGFiJ7Yhtfih3ASC\nZqWowoSq5onVWLCsj4QquNCIvJK1NLrkrr6rxD4DbCzW7XbZkenuHumh3HoFb5Lc\nRN6UJNHe/4FNNUzcAVBgEe0CAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIJQgIBADANBgkqhkiG9w0BAQEFAASCCSwwggkoAgEAAoICAQDAi6GN6DTcag65\nJiq6Wxq93+ym+eLCNphmEIlhMeA4zhqT2obxLA+GC5IEyplLdtocRxm1hxiy7m9J\nAA7/MIGIrzJ59XwuC4GGg3Dfqn+GhDhN0Ck4fdyMoAmhrFlInDShrnR5sJJuHbdy\nFEcRJu+W98ZerQ+aTTrRVwt/qHTQiK+D8EU2YN8SqtWaCmXQbU8g5q00nlB0SkI/\nQTkGD8e+eq8GCmRUBmQoDjFjmvDqkHY2h8rviBp42SWdUWoDBpBlSsG/7PULuHc1\nDlhF56y6ymLBlXIXL3nGb6QaUqroYntY9CLWYpImKwcvGH24jvKWAjJFaL8ZEDY0\nEtvXm0kv0+nJYRsqERf/MJRBuizpwULf6OCImhgghrmk5hTQSR/kBzIXd0WxtxYY\n5uf77C+T7l0gr+6f7Uo6/tfd79sCeRUIcePNYDNRFCS9vR/AVXPDzSKg/gvhX6a/\nDiPGH7F2k8FCaqAKCWoTZykIHiABxg+VcgIELXxhxRg6RgiWDPZa6yVwkKesc7or\nmrqUCfc2oQj8uYkOureFu73qTx3/TMIw0767fE8iENxDpnPKFmZUNOlUYWIntiG1\n+KHcBIJmpajChKrmidVYsKyPhCq40Ii8krU0uuSuvqvEPgNsLNbtdtmR6e4e6aHc\negVvktxE3pQk0d7/gU01TNwBUGAR7QIDAQABAoICAQCEAXbiNne/QYsUjsEugHVm\nBdZWZ+153zo+h0nYc/xYlZ0NDv4C7IU8DkSuukO8xCAm0OwkUxmw2t06/CpL9HJq\nRkrh6FaZrtO/Z/ADt/20OIPtfTA1hbymQLY5vFJ+AHHpAxThtRe/HOp+8L4EWWBb\nbUX39MhErnwLt5Svkct8iKlkWF7rOCDXyH2nHUfOTJK6aMwIzh00jRC8EzhIGpuD\n0NKb3pYIMVWLTKe5tSlEd4REQHb2H6aegalTINUAfAiVGVqZ/ZfG0FIR8uK8EmiO\nq2BnfdD5algfnrywO0rnBVWxl7cmqe+u8UL8m9rdpEtWYu0aPwT85utyaheEyvax\n/aneyXlirYctkh62h0vieZPUFFzSdTta+JIOPXqaushji/8p35YUckf5BKJxvltO\nrHierwjY19Uf6WjPhozmxl+xwH9SVVoZk5yx0WwB0h2bx02fKwjguz/OW8RDKj4G\nWoX/04Rs3u2cw4+H/3vgcNWYD0uQB8p3cT3Ul3XFSWJTN2YOXFKTMB2OYor5MzDJ\n3p58RoYMnjB88opqXJMQadxdRkwIcO41wG0Ot0wdQDCKrmzwr1UN/KR7UrjePDMn\noHKyQ4L9Dk+WAGWcu/GIVefYPr4y9fil1EtLrolzIImPbCENcfNg9sIpgyk++MUv\ntIYPG3B7X4lXGckJSDIfNQKCAQEA68m8PC70F6bjDGwkJiE27KhY3xtxToLq50RX\n0ADwt3p57tzeq1UphQ/K4l7Ed7f8X9r1Zk4S0JxMSE46qAgKWtws7NdEgMEYNzYp\nMT8itmPdSYJF4e1nEbK9qeD/+ItnNCu2t2SLjAy+4/YHBthd9gvtbNx1XayyMay7\nwAJtvoiMFs5sUPZYDuje8ZUPtlNBtkuWVOMtaNWs3birFZLYFqKU4U2bjfbXRYT3\n1RCbiRyHCe06RRTif5swf7NcGaMSSfYL9U3DwLl0wuQZ4/r/hCd17YTMvICP37Av\nqQP3YLbs0JY8yUG4arf7jr0hlMcVlcd+F2rI6RsY83MGUNu5OwKCAQEA0Qz0vrqm\n6z0M12cCB71EL4fBekUifxic1fYnbAEgfzJSDfh3G3eg0v3WHQnyVR5YIFN80SAD\ndBqdusonA2eSpEvC8dyeXEXiNCqwELUHCcDeibnslWSK88YVtjkshmUREudMhxGU\nhTl7gBekHfPVfeZgeE8r5K3InOYxjAWGxajfLXGKWJAtj4Fxw1qEhnOyjexq2UDz\nnRK7YzkkOUpaqVG/XBXj4NZ6skFkyGubApqDxXMVuj9H52w0SSftIRDjceZgCOGe\nmVYeSLU8JRle1ay0ucoG/Cd2/ab/0WdB6uqwqYrJ86PyEdfd6iIFhMSco/rYEpfF\n8OL5CN+U88tu9wKCAQA8D7lJQ1SeKb6wTWOv6soI4qEww9bK/wJDQt9zdqnasvIY\nbF60Gg9ne6xcmXNGY7F/4VCdbMnSJd4wlOzQHKw2lNtEwVkLyyQV/E/l4YVAHJQj\nw3F1qXmVwogZm9zYPPpfCbuTX6NEW4LMosELd1YH9OXX0xh6ciE6EhwJPxUhcbrt\nnEtvHDE2Kw+PTj8gXHjirMJwgSXyDGvqVr4N0sgEjAmMkq5LLVOMu+A9f+t+s6ua\nVbmAG1/OzYM/JDsTtLxV5r0JEXQJxbP+aQhHUIqB6WNay3czlTQQ8NpTHVWIZ1BP\nmdWGFp2ZYaBMrdS+BzByZMyzvlnLN0HV0bkMI8w9AoIBAAEOSrIn6S3o+gage48k\ncpK24dBHRxxTOH+QJbTS8KIT0/xEE/3shcBrDcjJwxKQ+6r2IPxBaCMO+1r1KGtI\n+6GezFZCYf5fT/wpdwgukeGHutgBO2OpxVXj2zo3YbUwD30D9Av+l7xwhOIpvGd2\nUs62+ifBZpxaEFhShU+Ku5qF9tKY7zTxTXmbEsME0wSG0xEKb6O3Q0O40391y2wK\npxiR1CCX77Wz/5yk3ehxOrAxrZaytRpitW9CyaTQ8c6n8i4iFrwUv6NQnwiI+cvK\nLANyQttpXM2rOVugm0wodFnGY6wHimuTmWZjq7hCAbsg7xWY77xwTcygqNdVob/1\neBMCggEAR7azTgm6Wx6pH1UbTF8eQQZ/n9XcnHudgqUsjhsqykjlZQZnxt2LIr0W\nfMZIZMs1O4v/5Jaj1kPtBlEEEugEyMQUZokIW+IpmmTfzwEz+m4LG3QDTDD3n4oE\neWNdBQTTr9/hpwEYkQ4EBiydpY99uJSD1MklEj++KK7Xb7nil6LJoG1qylbssGsA\nfefQaNbIo9T32XRimuHCl4UHPyLm4DTSXDlolV9k8qb0VBjP6i/9HGPaQWAnWXyf\nnI0QeHi9grXeLmzPuEYzUGUIdxmbypNsQtYH4QrmER7Yl7285g5EijgKuIPA3T6W\nMBRrU5wxfSzObBkCMt8uO+DPbngUlA==\n-----END PRIVATE KEY-----\n','-----BEGIN PUBLIC KEY-----\nMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBALmwK+0+ZeVSUHvUGsBwvlKYzayQlDZA\n5pLoUjBrEeiy/QQG+BF38boxsdP6C9NGS3z5r9kiSkykqiv5+gYINp0CAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIBVAIBADANBgkqhkiG9w0BAQEFAASCAT4wggE6AgEAAkEAubAr7T5l5VJQe9Qa\nwHC+UpjNrJCUNkDmkuhSMGsR6LL9BAb4EXfxujGx0/oL00ZLfPmv2SJKTKSqK/n6\nBgg2nQIDAQABAkAlIX5XLYAQsDoZ2NsUmjbkq1uNY0fP5YB15fDxb6egITsYrPBZ\nbi6U+Cgcx1xXGLOpOTaU9+b0aNWi8WyraOB9AiEA6uWM+YXFIxneIhc1wBocCFVD\nZ6vvMiJ+X8G3HxHA/mMCIQDKXtyVqFhhreNzguBxVn7QACM11IDc5AtVBtRHI8GG\n/wIgGtafhOMD4z7RYpPEUG6rRUh4qx+59MB8L/SyN5qPsoECIBfN8sqT49mRl8i1\no2sRjpcu/PVPCt1w4bhdtkir9w7HAiEAskS31r05T9OVURXu9x4M9u6kHemNTm6y\nJHVMrRsGKRk=\n-----END PRIVATE KEY-----\n',1,0,0,0,0,0,10,703,0,0,0,'',10,0,0,0,'0001-01-01 00:00:00','0001-01-01 00:00:00','',4,'','','','',''),(5,'758d682b1359b10a89ad697631454583','friendica4','537485cc08fae106246d8990a7f6d615900611eea6356c8efa75fc6cd6b4221fec27c0a753bac3366eca50426a12fa186277036eaf5ab3fc8a533089cb43f954','friendica4','friendica4@friendica.local','','UTC','en','2017-09-07 08:59:53','2017-09-07 09:11:09','',0,'','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxAJ+t/FrD0sHO2ecwsoH\nmOst2aPHca5n4UEIpr2ZTl26WN1AbcNo9wahDHXG7pE50GQwvmnnTIlVDLAsBC23\n8sTSpGXrIC8L7YiyDeu3piBp/w4jy8JQrbXn4L8IQbnmi6nDCSr1szXjBcvdPPKK\nrCFgYJ4hjEkSp/wJcKZ1mlRTwtofWZHUMu3NsP2146wRj0roydFVkWGrfsH8grUO\nqMktmpCUOQNsOIAN8b6vQiYQQoamGWjV8wXO3W0fRhQ5Yjko19j1t+O1Jvy2CMhn\nRY2wiGZ91ZSfl8VNLrz38JyeR0cz7YJeNYzOggB1AjEzLhKtqw7zkyW8Qg1Kfo85\ndagFPZ5sQZ8R4nus7xabICMG/qJPL23/1tyenxqkVP0iDIhLo/f0uuG4riNOJZtf\nPYPT6sxSlqxbznuLQr1fYnjFyEnFtJpzuAuvybshT5QLyKntcGap67fWoj/7SrA4\n8T5RCdYHDacMdKEC1SDwpokpgWhWaRkUxJ5F0Q5Jpyvhui/UkxkevDWv5373pgVz\ngaZlxRKYKABWiJkQH9FPAdsr4nUVErl/zvI0+9GuzK/EJ5ToVs8bF98Jb4Y3o2pm\nNtPL1ao9r0ug/3F7RHTLs1tp0Bdm/Gxk/RJf4j6gKgAw9WcdHzkxcvikhAY43zMe\n5qExQo663i3hzw4v3p94i+sCAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIJQwIBADANBgkqhkiG9w0BAQEFAASCCS0wggkpAgEAAoICAQDEAn638WsPSwc7\nZ5zCygeY6y3Zo8dxrmfhQQimvZlOXbpY3UBtw2j3BqEMdcbukTnQZDC+aedMiVUM\nsCwELbfyxNKkZesgLwvtiLIN67emIGn/DiPLwlCttefgvwhBueaLqcMJKvWzNeMF\ny9088oqsIWBgniGMSRKn/AlwpnWaVFPC2h9ZkdQy7c2w/bXjrBGPSujJ0VWRYat+\nwfyCtQ6oyS2akJQ5A2w4gA3xvq9CJhBChqYZaNXzBc7dbR9GFDliOSjX2PW347Um\n/LYIyGdFjbCIZn3VlJ+XxU0uvPfwnJ5HRzPtgl41jM6CAHUCMTMuEq2rDvOTJbxC\nDUp+jzl1qAU9nmxBnxHie6zvFpsgIwb+ok8vbf/W3J6fGqRU/SIMiEuj9/S64biu\nI04lm189g9PqzFKWrFvOe4tCvV9ieMXIScW0mnO4C6/JuyFPlAvIqe1wZqnrt9ai\nP/tKsDjxPlEJ1gcNpwx0oQLVIPCmiSmBaFZpGRTEnkXRDkmnK+G6L9STGR68Na/n\nfvemBXOBpmXFEpgoAFaImRAf0U8B2yvidRUSuX/O8jT70a7Mr8QnlOhWzxsX3wlv\nhjejamY208vVqj2vS6D/cXtEdMuzW2nQF2b8bGT9El/iPqAqADD1Zx0fOTFy+KSE\nBjjfMx7moTFCjrreLeHPDi/en3iL6wIDAQABAoICAHVm4Suf6HYyhFRqjRSHGeHY\nC5BubsmCoyniYCIvMiIkNbeAXlTgVICRcekaqlq+lZhiSmfi2u2W3GBLLTIbiDBa\n/6gEe769LzHJTIzWARv6EkL43yvuaZCCgi61fWaQyKwitHVLS/tZbW9NWmhlBfZv\nz2BPltyF8Cy545Wbvpj/pWPybhCiLi2LDkbS0B1cNPBU9/XZ8pyvmZ7E5lALzon+\nZdhMfNthV3LIEJIZmrPORLL0H4zcpDl54xvxfmflOTHB9trCUvsf4qNFfmroTiL0\n6SXp7bj92lF3lfFGsmNmC8+5sDq0eWUtv4tSZsM3YOZZvbfVrsMWORp/B32in9Dy\nrX1+hoO6QdfYxiXFpN9dZIRh8AlZuZOk7SJFvbJxt3i6EIX46OXWJSTvxuBP0n3z\nFL2fwnTVMvY8rGFixOaE0P+K0ZDYCybv2GLCoRKi+vqjEvZ5vESVr4XE+x7KSTOu\n3XSnXTPTgBMBT7DjGs9ZJtFCv65hf0NeRQzOP9FZUX9Ha0NOX3/DpBGQpdp0DyJw\nAIkZ/w0xrnyj99FV7HLLQNjFt8OFPjiWyAvFfX1RMB06tAWEJ9VIdMAMZz3STAPH\nQJypC6wlLkWjvnE6Nft6CdspOPo6mVjJJEG2DGoLWrGxUdfJRLv6EuEJ7wFCZwwd\nrXLbQE3aNcB7boC3+l4BAoIBAQDmXcgQlTlBhL/XSGzbAnmaML9g1VPd2+P9gKVO\nB4KiDpUASv5L9GMy3t2X+MVroijems3aaGp6GtFrZ7JSIypgiR3+yc+qXI5rY3qx\ndp9uAs6vVUrhZBDIy5Yocx8mevW8daGdYO4cNbJfyTGPBnCYsjZOcn4SCELxe0VE\nuH8PnhUbn0HawfTEOdnTP+4RuQlLRCOM/Q2AdnTZCYonG+H0/9eRhhsL4HV/bWMk\nfQQBBlsoAocoSeUqhdjR8ZliOE3R+yZu5zos9H/TrFYu35Tx1WTxnp6wjeacI7HB\nRExbg7UDJYAwTBhax9iMAHWPphBXAJi6GHJqNp2DGdFgosJrAoIBAQDZ0ggA7wEp\nGBj1xP/J3jDKk2AzN4zmlcgFa4lE9oGEedPXZtdAxF1gSO+lfIfwEbhGnaiv6lNG\nsajsYiHbU72iJX9/yfQwHq6igb42PJTp9dgyTf+jb+Q74Vn7o76412QTGW5R94Fg\nDsNkwB0WvIERmEOXTuDinxFm0w5oOJvPSlu0Y5O6Op4uEVarUS2nrQTxHAPgrEK7\nsZoXucBYFK1NkXrSi+ubTGHhfJgUXxdG3l1lVmYrbqWZ7oA/zUvZ6n01mCfU/DC9\n0y3wgIV6tqto7pQpXmFWIbL9pLZnHokp4fqEhrmBXCt/x1Y8BEwMGl/aMMOm1P7Z\ni3sZfGoLiryBAoIBAFc/S4dkTOQQl+u8RWYJIO8R6VmOUg4jusyHDZRo6cPgy/Pp\nczhnHa7lk318PaEPMHVmofJHO5R1Vb1c77+GDAW1yMN3wYvfNB1d9tkBeU5cB9WF\n8y88C9NQr9UwDKsxRKKU1pnZXTUX7S+z7m4h3UEntcOuPysrL9dvfYOScKUElS/5\n+CIW9VHgKyyD+PGDaA62htRd/uAZfRW6NDWtrL1yrD00UkgEQdv6HONz6bFNq/aS\nRoguvHmHad/Rper6MhcGDL9SGclu7H7JtXZZPXr9/BY6ohVyGNYn+qmc6WJ7lnHT\noSIpn8u6Bry3a8708RlSY4WPvr2VY8CEZbU4z3MCggEBAMZBFqvS3hmLJ1y6253f\nMEWRciPr0cEmXxIf2Kb+PtBXGmuZ3R3EHMFAYW8cM5Zcan9LjHfhLb7QgVH1158L\nTzTAMJYdOLZ7lrOup3QyG8/+xbKzr5QQiYm/COmzFiqjUSDZKsJMJmNJzKps+Yzy\nMf/TuOGFF8bsxSfzvc86hwZbRbCgWZtNMx/3BA2WK5nMLw1NVHIwF+VCN2CU3u7M\nkxhg64urcty83vIfN0SDcGo+hn9v7jpl0TCUFgL8VqeXeDNJtCd1CuAb0FpwgA07\nKjStwgkNMEb3ETUvsB2Xe3y1hBEPltSZEbaRtnmV56m0b73mWI4Gm5diDr8ZsGOk\n+QECggEBAJR8QS4LpqkiH4f//ygU/9jkpqEIHjcXtI9bDvI2YB6DHmSDH/Q8XEA3\nMuJTr+j+LYjG4HyVPwvpKGzNrIQiOf+IE3JWaLf9ykFCVfuUPE5fkcHWQbF9lszS\ndi5XM65PzI51iM0GdOyKzzCPuWlseYTIWMZmdwTgpx4q6lu9hyjaGM1S0qRspl4e\nlP9m4tW1n6OdPVBY/s7PNGaqgRoNnpaM3jR28xf3M5xP3jmtJD0qhia6kXDsRVGi\nqsh8GLWd3Yscgp6OywjQXifur7XRf+ZORn7ICjlAptTZFHfD5paSEk6sYkNFIiHq\ncBwewuri+TruHM2ncoePQ46g1bTvP2E=\n-----END PRIVATE KEY-----\n','-----BEGIN PUBLIC KEY-----\nMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAMGwkmEBqKOKCl8bKY+Eg1UjN/e43nWW\nrBhl9qBvWQeXPpia3DKZLNdgYfKEz8xwqfViCjeU+u0yhvQhJQWuj8cCAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIBVAIBADANBgkqhkiG9w0BAQEFAASCAT4wggE6AgEAAkEAwbCSYQGoo4oKXxsp\nj4SDVSM397jedZasGGX2oG9ZB5c+mJrcMpks12Bh8oTPzHCp9WIKN5T67TKG9CEl\nBa6PxwIDAQABAkA/KpOCWWUi+HjLbXNPX7rpABRXkI3UMXAsgMw+pDGXvJT+1lAz\ntOcLeE/Vxu0QPfOvRGIGJeczr8kE0zdiEnoZAiEA6cVF1sGVmfcFe2q1OfN278Lc\nG4CreF9wSpXCuKkgo/MCIQDUG5oezE6UzOMSWA78QVA1GSQ9FyRgVpn4YC/Hjned\n3QIgC+RzRxeWCr0cVEj7azVNiaj6FZQYJQmF5uVzgH1qIa0CIBpBEGKfh1qDwdeT\nbsdqjjMEWaf2JVqHXaeQwFlDGStBAiEAlIEfAsqqsNbT6Pqm3WBTlzfjJeTprB1c\nfR0y+49IXrM=\n-----END PRIVATE KEY-----\n',1,0,0,0,0,0,10,703,0,0,0,'',10,0,0,0,'0001-01-01 00:00:00','0001-01-01 00:00:00','',5,'','','','',''),(6,'758d682b1959b10ab0768ff699049903','friendica5','c4020916e31735b16a8e851be06c5a94e7c95d544ad69c05a92b9ebf2992216a2dcb65d4c731405af0e4c098edaf53f49444f01842db3bed2c561ce982639600','friendica5','friendica5@friendica.local','','UTC','en','2017-09-07 09:00:32','2017-09-07 09:12:45','',0,'','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAmtBUbN/07wWbcUvp9QvR\nKLoM+WjC0K0rFsx6L/Mktk6Go5+DqofuHSQgfJZGBI3vbTlbwW76peX/0aqiZPGF\nrrhX1FMhU23AxYE9TixRR+oqIKETNzU8NuahpK/ZBokoPL7mzrY4o5dNcnG4S57O\nir4VfEpuYB99K7Uo4yVc6a50ZQfDoBy6nnCPbVmh+gokc28paK7Av0vnMwwD6TWQ\nrgXyrPsa+Af5YeDC7GOmhppeN+e5zycRTddfXWR8QFp+he43b7z54pB+ajAu3J+C\nTAagIp5UWrBmwclF2gmLWvyYYpwTF3kNz+Waf0s3khiZXcJZKxGKVqXoTkqEKV/i\nvHryaBlvvAkQKR1mfJpNasJfHrqhOlHigWi3ISlPJQB4h+85W+YAXj+3j26OnMpb\nCmjf0BXLnjuC+w9rXFW/kj3Q1PxNaAfx/BoV62unWBKnZAkkzHOkQ5yyATdXQaEY\nlDsFbc0itSm3zjsPa1gXtn9e9z8Mqn5MwKk5I9k7TIr6/FdgbX7gxl6mn59OQ0v+\ne8o7HECSQvT8c+WmvBk3tjQHDgw3FeiJ54w0IGiha530vPCk5Z840d/jVUL7Qc6j\nrNi7hLOBvx4jdxk+5tq6fZMG4Sbu+Iibc4b+f2QyVW7Pcxt3CM/ADh0kzfGJ7wQd\nzl4w/9+s8DPT43Tbn98QK+MCAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIJQwIBADANBgkqhkiG9w0BAQEFAASCCS0wggkpAgEAAoICAQCa0FRs3/TvBZtx\nS+n1C9Eougz5aMLQrSsWzHov8yS2Toajn4Oqh+4dJCB8lkYEje9tOVvBbvql5f/R\nqqJk8YWuuFfUUyFTbcDFgT1OLFFH6iogoRM3NTw25qGkr9kGiSg8vubOtjijl01y\ncbhLns6KvhV8Sm5gH30rtSjjJVzprnRlB8OgHLqecI9tWaH6CiRzbylorsC/S+cz\nDAPpNZCuBfKs+xr4B/lh4MLsY6aGml4357nPJxFN119dZHxAWn6F7jdvvPnikH5q\nMC7cn4JMBqAinlRasGbByUXaCYta/JhinBMXeQ3P5Zp/SzeSGJldwlkrEYpWpehO\nSoQpX+K8evJoGW+8CRApHWZ8mk1qwl8euqE6UeKBaLchKU8lAHiH7zlb5gBeP7eP\nbo6cylsKaN/QFcueO4L7D2tcVb+SPdDU/E1oB/H8GhXra6dYEqdkCSTMc6RDnLIB\nN1dBoRiUOwVtzSK1KbfOOw9rWBe2f173PwyqfkzAqTkj2TtMivr8V2BtfuDGXqaf\nn05DS/57yjscQJJC9Pxz5aa8GTe2NAcODDcV6InnjDQgaKFrnfS88KTlnzjR3+NV\nQvtBzqOs2LuEs4G/HiN3GT7m2rp9kwbhJu74iJtzhv5/ZDJVbs9zG3cIz8AOHSTN\n8YnvBB3OXjD/36zwM9PjdNuf3xAr4wIDAQABAoICAQCJpIgrdMM0cGvPw4rzT9pa\nt3Apn7b2CcCxuIM6dpdBb3fNqllKGSjfx+sKWiFOk1M4bTLjPGSlc2SLaYaQ8RvG\nSCfuoyqSHpayA0IaatSpd8yUziFjiHVM6qj031O5t+CKgcB8MQ8Sg8db5TfSJBPG\nz1IS+6o+1EBZx+veaK2/JlheKxUHGgPiMnmS44pb4QCfkUnjxNuiOT4J6Ljhc7p6\nvtcQbQGBXLWhDFDCE6dPLZhvZBuTzkxYRRCI3HqMTOkI8s9fDUmu4oFCsCw6A6e5\nKHrfzJ17NDNoQCdWv/2im8pwgguHZx2cpatDWgDCaBSTg+P7otC4UTHFygLPNm1D\nfIKeZ81/lnkMMzvE4r92AEZ3hT0rdjDjanL2hpa2gvLMDns2fQC4TnWy/RDUGHlc\nXEfUlYSA9uMERSW7P3R7J6GkqPZKIn7jfZLJpdpit9CkwT+HTxvWlbH+f+ciZ9L5\n9XS4laQK1qqbmrr2GNcQDbD0lwUm5xZsnY/aOAxS6iHGXUD94VORSHMV+ImCDKee\na8tRg8VZXzG6zWhDNbZs+3XhqsGBBuXrTqcv96z01S2383IyJzVk1KDM1hMcmWgC\nOu3XICZXBigL5j/KIbj+/CM9d2Y2r37y16W4Wb4FpeSO5/+KaxKtyF0njhvGh53V\nYSlBgVHGJW7vLyhsYD+jQQKCAQEAy9k+rF9I/rAZ6wbK3C+UVH6ko2rg0DsgObm5\n62pB7djOUPYNDg5YaBWJNsK+zC2GAHf2IJOzyfEwXWwyfh0wmTg4Lgl8nopJVCFI\nbi+qVrkjKa4Jdh+YKDL8W9XYqApnqyyUYm7Rj8C5X2cGPNTeY1yQWkrh5vuqOd1q\n/Zryry2BLUm1P/GsJUw2KRiWAmcBU/F3aEu4WymeWw+qow0+6/+RGV9luqwXANos\npWb3V+sdGLTJHkX5ZGSHwtwHV8E3mlqa22I0wRTN6tsiP0AgzeV+eKHHPQjVuTsF\nV6rsBbNw4TCepT5caGLT1r+dErd6IBtp8R1KEWNZwMpyeNEoOQKCAQEAwmufpy6J\n54X0ZS4nG63IXwZZhwPNx1VEWPsvR4lo36dWxs8syMPVKoDAGm5Z2Tad6wO6jBqO\nbdOKKbgpsk7yQjar6GuEh8A1rgKGBoAYFQQT6Q7cp39WX2wkx/BBqhtmQV4WDd/N\n5ztGrKLbAtiEiriQTEcOW9Kya+3nQO3bVTNa8CH0CjSqk5gIggEMkGPQoTsWQO77\nnd6ZlTD6ctZT2A2L0Dm3fPi171GX0hMEFu2bROeZOFFAuOi/8DWAG5XNSz4OJK/B\nj6gkk1YBgxbSAEHNad6yI9ku5o7XvPYPZae8XmD51t4GJzi+AUIeeLM6d0aodgrB\nyChJ4hPVQ1Oc+wKCAQBULLL6jqYftSwepsFhxqvjcCAf8uQ+WAvoik7BbTEoO9yG\nBfRCF55d7HaqjCQpP6sTynVx4kvdWaD1EtaOyRLmUhawu+4fsU6yVMQJ69jU0sI4\nVctGYal9AADBEz7RtOo1/sSPGN+kEpr5UBt9RxFFylU5U66QqN8T4eBqNG998rZi\nswsLCophJGVA9wwKleowdYcvJAVOb5MaWw/FIJUY8oFCDuh8+s7M5UqGSkxcm5N6\nPjzGKXLgB7sftae6juic7kj/yj+qcyLMlgxAPgTNwLRGr9cL1vgZ8ssz9jpb6Er2\nUhNQfL2/xP9gr+L2dZkSZP+MNuH86B+Jwo8eYI/RAoIBACa3ffyyBN5pS6kWjs0x\nR1S9E/kSJdmLPmgl5V1unMblMR+4RCfa78leCGN7FENwX/RcMrsR0slGNh5mwU7z\n78SF1KgdOTA7c7UqZXxH6APPYxOnVQO6FP49r/ls+/afLDbaQLQUnJFuuX1JlSm0\n6nghlwLJp69bfxKFNuc0Nth5uKNXb5zUrh9kSFVzVggvCG4DMURPEyZ2HMmcDlPu\nIJZG5E/cHpExijGVYxF/nfHe8WvAXz/a1nO8TfTNAqz7oP1Z50EhCv/LsTTyDK0J\nT1qjv/9UTM9cwb1CNu43ZguNYrK8xyQl5L3My/G+NAk/T+ZO2N9g9wQgGc5+upqE\nvR8CggEBAKPGtZ4MlncEy79ZNcSHhEhjsLCwVxRj2oErsXqL7cwggCcV+hNg2wC3\nxwVl1FEZ95CB4xXfDY4XCS3YizR22GWQ/hFNFSSJJknUzuV8pP6kGYmSXM+PjuUt\nv7RSNlJYmW0D1KUCXGUzKjUIg3OGrY7qvHa1rf2qbJ/Ge7b7O65TZ0WNUXHatkOB\nhFLfKas6lfBYXQGc4Dj7PtUkKCgoiwEU7g3+Jpe2/nezzgoeIP0egBqUJk2qaVYU\nEuS2vz4kgikhWqy/+6WkIPB4oadgt2snEG75ek/XtNnmyIoDXAaAuL+/W0bugoMu\nCVTdHW2Yr/Bp+YvLThy8IriVDW7ZbX8=\n-----END PRIVATE KEY-----\n','-----BEGIN PUBLIC KEY-----\nMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBALD2L78WaybaPZDo13Qrz3m+s+k1dJ0i\nXqowUneFvLtpALorl//dMAtnhpsedIEmxZ5bxw3PIr8lWpMwUukC4B8CAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIBVAIBADANBgkqhkiG9w0BAQEFAASCAT4wggE6AgEAAkEAsPYvvxZrJto9kOjX\ndCvPeb6z6TV0nSJeqjBSd4W8u2kAuiuX/90wC2eGmx50gSbFnlvHDc8ivyVakzBS\n6QLgHwIDAQABAkA+jhhcxVEFf/ppglW/ZElIcShqFRJvBZpPMRvF0onf+WzHT9S/\nRlAER0HDwLpPtvah0ZlmXnmVKFfiSQxLYOvBAiEA3UifsiEoQNkHH2sIWAalpES4\nmodXmO0YG9q2/GhoReECIQDMuXcqxx//HRRutoGx/nDWpGOy/AU2qSfgIo6A8QPl\n/wIgOEP3FzwHGDYW8Y4tmPRXueUfa2tugpwGvU5nqNaDbQECIQDH5Fc8x4ywVb57\nk2vzVZLroTtPqc+VXXj32gX2VF4QFQIgUOnMWnuYEDYLzbb1sU4CrgPsLyWYg1B/\n0IMq4EZY2o4=\n-----END PRIVATE KEY-----\n',1,0,0,0,0,0,10,703,0,0,0,'',10,0,0,0,'0001-01-01 00:00:00','0001-01-01 00:00:00','',6,'','','','','');
+INSERT INTO `user` VALUES (1,0,'930bb26b-675b-f00a-1f35-2cc901636033','admin','$2y$10$fNbcWW.kB9LO1LxSzTkr4ugtn2IMwhuMv37p37KpUytn8.5bpjjba',0,'admin','admin@friendica.local','','UTC','en','2018-11-17 12:31:27','2018-11-17 12:34:21','',0,'','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyYmalhhmPJg0qwLjbeoL\nKgykA6idu8HtZkKWPpXZHHD9J0InLId7Ht3G9dSBIBbHpWhaoFHkI06PRaqiT3sY\n4yXPBWDuhnIzzbV5VbxXShzRCe0LzBMhvusf/74sQkqH64g7xsaSBipHHaUEa7yD\nv+xCoGtoSOcqGEBzesSH//sIl94IrkkN+/grb1ZSFFjQYWMLMWMD7Py/awcqOtCB\nJ6NnmcBVMK5CxyV+YN+C+dhUsf+LjvH7WE0uigvTlMG+lGfXHxl4/en8bcAQ/GEr\n1xfbDJuknxr+ckGFZeHtj6Noz1IRD7y+7rlTgbZTmOrCJKg38Br2m3tMGGhIU3t7\nSmrKn8qqf9HuyR83+7Cu+t8x24LuhTjGW2Z6KE5TqYacMu+to58MFH8lDOnoOxHA\nGWpi9kYPXSbO9mLwDNF3pue3bLusvGQnns9h38w8m1Q25nivKKvgVbOrdNaB6wUy\nFIDcqjlZOVIyZ24QWZck77Em/cCkEf1c9kV4f1VjwmyQ4apSPf6q92AHcBlbv7yI\nFhVbGMhEaMIT7PQgxi2F48YInnlNjQlk3yHv3sdjlYJvcHHlf2PsMXlRb1CzrFRf\nX6Uv7e1obwy+SsywkAq+sT4tfsPEw2mIL56cXw0licP2hjOIgzYD1xi8pZx3xsQP\nTjdpqBmCKfnzs+TCZIbXIQ8CAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIJQwIBADANBgkqhkiG9w0BAQEFAASCCS0wggkpAgEAAoICAQDJiZqWGGY8mDSr\nAuNt6gsqDKQDqJ27we1mQpY+ldkccP0nQicsh3se3cb11IEgFselaFqgUeQjTo9F\nqqJPexjjJc8FYO6GcjPNtXlVvFdKHNEJ7QvMEyG+6x//vixCSofriDvGxpIGKkcd\npQRrvIO/7EKga2hI5yoYQHN6xIf/+wiX3giuSQ37+CtvVlIUWNBhYwsxYwPs/L9r\nByo60IEno2eZwFUwrkLHJX5g34L52FSx/4uO8ftYTS6KC9OUwb6UZ9cfGXj96fxt\nwBD8YSvXF9sMm6SfGv5yQYVl4e2Po2jPUhEPvL7uuVOBtlOY6sIkqDfwGvabe0wY\naEhTe3tKasqfyqp/0e7JHzf7sK763zHbgu6FOMZbZnooTlOphpwy762jnwwUfyUM\n6eg7EcAZamL2Rg9dJs72YvAM0Xem57dsu6y8ZCeez2HfzDybVDbmeK8oq+BVs6t0\n1oHrBTIUgNyqOVk5UjJnbhBZlyTvsSb9wKQR/Vz2RXh/VWPCbJDhqlI9/qr3YAdw\nGVu/vIgWFVsYyERowhPs9CDGLYXjxgieeU2NCWTfIe/ex2OVgm9wceV/Y+wxeVFv\nULOsVF9fpS/t7WhvDL5KzLCQCr6xPi1+w8TDaYgvnpxfDSWJw/aGM4iDNgPXGLyl\nnHfGxA9ON2moGYIp+fOz5MJkhtchDwIDAQABAoICAQCBBNFs0zPoCLx22gOEovcA\ntVTubqyDvXNgKrKKYF28Qm0eC9CORjFAolOznpYHV+35ayPRTHuTSsCXpdQAs9pL\n2DF+zP4GHegiAdIqW8c5z9bW1uTdgUXyNg2nKDSnP5Vh6DX0W7yxq7EZPkHlQqrJ\nW9OPZRM+0JX3LpN+/X/fFPL8Xg0KngQQ0V/lB8rF8dF89u38cNnbhjZ4qv6S5lY4\nbPhuylz/LB/d45fTJmNv1Njrlp/eI/V3IvnvMAEEUz/RO+TQqPr2+is6i2GUYBSz\nvzbhDGbH4H0R4fYnMgpmEQOQ7YW0oG1O4F+gQ3ujAm7FDte4o1pKURV27pOWtg9H\ngW6Omj+lUtGv3k91JCrjyzjeGpBjXfSyW5NJ95+JCJ0On9tznIK/CvrBQM2caowA\nOrB/qscrbbQc17Jm8fB8mwtS+yjNoAxa3cD8R5OigMZzze9LgvSU5Cg9WktNBAVf\n/pomQ7acOobmq/aoDY2XcXn1Tu6HElgKgE26aLYT5biji9XIFmDOb+yH7cwlGijm\nGtDSRkDxOVloEaz0y+E3lQWrGcgrteKXDg+VN5dsPQMNeXbl+KwI6XRPQcO/qjtI\n40I5tSLSHklZEvmUD8IqbR8anwknbRkq1+oF0W8gzRVuVIiYd6igmgujbXqHCsUG\nb0e67A83Tu1Huy8bIDDUqQKCAQEA+vWqW+bwetb89uZhIUt8W5q+aKz6Q6KhjvsM\nDz8UrumlR997ySgFbYG4AZHaRe8jLIVLpe55c3IIfJxT1cNJdF1q0Tgl2UtN092d\nOxm9+wyp7c66mnAQ+6ElOv7gTDvWu0Ui4u2mrtywcHmW80k+AtuLLovZ9+AO3j0k\nHxe4taqQDOLll1eR6HRUKQJWm2pKkURfWki6sIBxGZcWK2vvvWqQacrpKqNJbnEC\nkdQ20pK5h5HXYFS8Fj1rEPoOKukQWR26IMQ3tGwph9XGXPjsaArS4i1bs7ebChJO\noyGVYXnJNRDmYBHhyns3Bw3Y43bnMcTKkoqESnqT/eDaT7GTqwKCAQEAzZXUXLtM\n/JXTUizJ+rNMr618pctmkII45CwMtjoJRQdOONHTddvinO/Kpm7WuvXqZNbvH1Is\nF8bQ8R0NiI+4diDaHGsHI6+RAfxFARRzpp13CbB0f3P3kESifaCjw+mE3SAl8q5s\nmUWvKa83VEM/UJl45h33eLaRD58Ess0AWXW9SkWXYpqIMBYgms7aJpPVDHbCd0TJ\n3EeDnuewSKZoPyKfEQi6z/6BWQbXuS1zGdFWfF7ZtBLA6Wz9BJMNTlEysd9YIIzD\n+NM/V7ekL/uonS8wDpl4hnFsbhfEbQlBcVf6h9fTT5I+grxJ0EpDkBBNE0+cL0Dl\nk4X+zyJHIXSELQKCAQAcwBAoPyjFqeOJFZODEPbKN8wgidCR9wuzKaeUB5IDB9lb\nhorT3LXieb3u0BrFcEQDUbH87HkVdLbsL6ybDKhZoGogVeJgJnRgFT9yCdzt6eF9\n0PUnxDbt3OQ7AgAIO8K56Y25mahC2B2OhR9596YXBbfIOVVbRFvvsel1dm4+wa+H\nCmdrEykwDEOn/xCU9XRdeAvEeBiLJ+vNFrX/e3oXpSGuPQTBUbuT33Z/5mPxc8W1\ndkvKSWrS0W52n28IE3NAAlvUbSZEkS+g1CjJder/cF4Ac1nSGPK2EKrZnXtTk3Qt\nlCYQU3weikcfk8KJLJIH7ZeXei71qV1S9HOONbXJAoIBAQCvM2/OM0TRwTFdR5Q9\n1Y2V7ahbdrMKlh+7vBp9NYpuzGIKJC8sst411lkCa1UN8cL2ewE/1PyEqseno5XD\n+o8+BJM8Qq3L6LQQWBfKas6AgJNQq5MshvzEculzXHIT5K947wvH/IPKP0uen5bs\ndX7Axnn0yjb7JcML5/3ODsyscJ2HbTUtL/q92C2jIINi+vtGavMhR3ssAboWsuZV\nk5MlsvCSSLlDxmYfI6i2RBhiOTeWOBMZ1h2XEG2z90oQozwrv+XPn4bnR8gkjfkb\nd0Fj6zHuTzYahRDd5d1c+tVNradxGyoXFs+1BJd3LcLUREAbI+47ivfbOAdGKLUr\nuqtlAoIBAB+COxNh0eSLnradSSyFy42AjGPyXQ0sJkxh/UJLWh/H3/ww63iHlg3/\nPoacHF9GldCF4YP2pdV6ot6sbjDWDYeRMtJTPruo9irZwZDFL2PTntmoUfDWfhDX\n7qaKIh6Yqp644FGsz3ylPfjloCmHP3aS/mCHkZA6GjHXkzF6SJKVP14XZCw1dBw4\n0CWZOaWzrI37IkdLGHXF5A86PsgSjk7R0w4yh9We+xhev3e/dy0g0ng/2Y03dBza\n9MJ0T9wjCH86QsdPvZFsUDT2M2XDAyZ/Np9Cj7IYIuhGtvczg1EsKF8ofn7002ft\nHB+O/IlXJ5YQVCMXh1UYn96Cfxi2qrE=\n-----END PRIVATE KEY-----\n','-----BEGIN PUBLIC KEY-----\nMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAJ/QUrmHQ8M7vRU4vaV+uOHwP020+b/V\nB9X1/X8bJL1KGxW65DNS+I+KsEDVxBHGnj2PV06C92vFWDXW2NuwW5UCAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIBVAIBADANBgkqhkiG9w0BAQEFAASCAT4wggE6AgEAAkEAn9BSuYdDwzu9FTi9\npX644fA/TbT5v9UH1fX9fxskvUobFbrkM1L4j4qwQNXEEcaePY9XToL3a8VYNdbY\n27BblQIDAQABAkALiCPAAXOxTck6E8sTew5qN0TKHan73qpfFQ4Csvm2stoJXqdm\nqCvSh3lTkwM4s7/QBf5HqARo9YLi1KeGgv7tAiEAzgKXKBjAUrtMM7qKsMzf2nJq\ncRMRxYcYpfVxTyTu9/MCIQDGmABX8F8WELIf5gm/Gypnj7cnNkiJYAzmooMvI3uI\nVwIgB4WusUceFqdCJA1mrQf+EILnAhP5LSY+ryikJ4iotSMCICKEgvLF/dD4/+zZ\nb/I+h4VOjngLUFpITpW7w29rDGqrAiEAqSUeJpF7Z91DghIaZwG16NM54g4QiMXU\nvNh4VvnxfE4=\n-----END PRIVATE KEY-----\n',1,0,0,0,0,0,10,703,0,0,0,NULL,NULL,10,0,0,0,'0001-01-01 00:00:00','0001-01-01 00:00:00',1,'','','','',''),(2,0,'930bb26b-585b-f00c-1225-b79618332648','friendica1','$2y$10$n5IJMWAKgemqtSLhDnr0JessKoR2JkbclSZfaFZAbI/ZtnE8XRUQS',0,'friendica1','friendica1@friendica.local','','UTC','en','2018-11-17 12:39:46','2018-11-17 14:01:54','',0,'','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAmQR1Wmtv2KMZ5f5NTJMf\nRfX+1KXfhCKZaDgtL8/Trtb1ZXLq0tlBVhm29MI1F6cxZFhNlFyW6GZCeZFKX3FP\n2pFw03sEBTo5PCLso18EEl9kXV9cXoBMzINI3jIGnJiawq9PfIw5142jFBLOxiDS\nc/iNG6iFbq2qHwiQJjtp61BCFivIMZaHXqvtroakggjBH3EbRx+rZfeqjB8MRqOc\npXIqjc0lrHk8QGdXeuUAWsL2qUqHVNekLBXPnRcdMT8BxUmtBj0ccZ1IICLPFEzK\nr6DtqH5kE+aq9IcoMIEDjUhnyOAvFda8TlxX8D5SMFbrfJZDTypDqXHnSxHUS0Rd\nX06tLJZxMgqHspkxp6nzxk7JGPHKQmU6N0uqQb+i7dFlgC8QRLi79a1x019dvpAN\nRwbhGnn/pEU9Kn1JbYTAI6irBnHnlAUkpxmwSzRx5ncbNbhbniMD2/39IV1mztUh\nAyc262/cRRJAu8pEsPvc/pSijIyfrxJGYqF/uUcS5gbrY+wCjpYaBdzFxQEcD1Aq\nvXQGxi3sMRY9b1FJ+f3UTB7D9kIBCbwUNOXCjDCrOKZN6nxPLpKnfFsneHleUHa0\n+MRzI/vX78jQ1P4KgxPIiSktfrZitBpyzCC5O4ytiwqF2E8Ei0zE6OL2gm8yv7tB\n00ewnSBHzIpdnS51XuxxmIsCAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIJRAIBADANBgkqhkiG9w0BAQEFAASCCS4wggkqAgEAAoICAQCZBHVaa2/Yoxnl\n/k1Mkx9F9f7Upd+EIploOC0vz9Ou1vVlcurS2UFWGbb0wjUXpzFkWE2UXJboZkJ5\nkUpfcU/akXDTewQFOjk8IuyjXwQSX2RdX1xegEzMg0jeMgacmJrCr098jDnXjaMU\nEs7GINJz+I0bqIVuraofCJAmO2nrUEIWK8gxlodeq+2uhqSCCMEfcRtHH6tl96qM\nHwxGo5ylciqNzSWseTxAZ1d65QBawvapSodU16QsFc+dFx0xPwHFSa0GPRxxnUgg\nIs8UTMqvoO2ofmQT5qr0hygwgQONSGfI4C8V1rxOXFfwPlIwVut8lkNPKkOpcedL\nEdRLRF1fTq0slnEyCoeymTGnqfPGTskY8cpCZTo3S6pBv6Lt0WWALxBEuLv1rXHT\nX12+kA1HBuEaef+kRT0qfUlthMAjqKsGceeUBSSnGbBLNHHmdxs1uFueIwPb/f0h\nXWbO1SEDJzbrb9xFEkC7ykSw+9z+lKKMjJ+vEkZioX+5RxLmButj7AKOlhoF3MXF\nARwPUCq9dAbGLewxFj1vUUn5/dRMHsP2QgEJvBQ05cKMMKs4pk3qfE8ukqd8Wyd4\neV5QdrT4xHMj+9fvyNDU/gqDE8iJKS1+tmK0GnLMILk7jK2LCoXYTwSLTMTo4vaC\nbzK/u0HTR7CdIEfMil2dLnVe7HGYiwIDAQABAoICAAgzxfqf0bICJCxA8nHNXRrJ\n8ewCLDYQCLseb8WlVUqE+UiD3XSJ8sejvzvlgSUQcERZu2bdg7VXbe7IS/1LvKUR\nsMOVT4TcNx8zHA4x1K0LcfzTVMc4B2XbD7fhZJtWTs1qyk750UvtqrUzwOO79KwE\nwcOex/BD3N+m/NsfyjCz76byl9uYnw8DFk2JqB3UTE3cKUMpvm1L1leGfoj20jnI\nIeHSAlf5c7JcF8NdrSQwWTp/5Ts2B/XZAXUBPS5bm0OxDFZORk0MykX2t7T13NOH\nQ9YJWGH8tmM/L3dSIxearv2EjuGTzipBJvGY1Z0Du8HE6DzBHjliAqzyerfCJWMW\nQ5HJpbFulk5dWA4FTcewdmRcO2Y1aih1b+PZP1j6QLSLaCOD0tTiGKWwgCD5zZ4g\nKNUDtDGVd+jJdNlWcT8PYo+4f11kvmYjbA6hWWqfvosBZc9Pe0gcFE7XZErt2z3W\nIU6IJ9kymxbtN+tH2wg8Twwwue5cAWX/dnizXNyU6r93dmqFs/GQpU8yiGucKdvJ\nyBSPG+voxvTsGxnWWNze3kqLhF+/CwAv9qTx5HgCun4Q0pOyH/B0mS/GI9Pp5mB7\n0IqeNURprpR3NuiLWGZ+7GWXER2QzCsAzvr5wGfJXGpwSl7poNUz0z8FyrKjoSVN\ndV5WnHtAlXafrKNGyLlBAoIBAQDGQ6EFd5MHqpMJvtXcKDzXRLnHMkntJPa5wOT3\nBSgpQoI2eyFPA+8UbTy50UAQBJw6maYwRvRNlCsjScWvn3TvSUQmpM55fcq+8ELi\nEHsA+hzQj2Z8lokB3EOv1WygML6quRcHNjpFu7s3MbBjE+vRPUMpQwZy3jtiHHR1\nwZML3NP3WkDWQOxgAXDNPdJMlCA84vAziHa45ix7SsDD/MJzZyJB+0N94lMSdIig\nEc1y3HBL+dkTuxkj7qL23KBkR+umyOS1WeYGzsn5FzSLMGKXo3JMqoroYpkZzCo8\nYVSiCBBAPwsd52bBC46MISVbJ177pIJJpYZ3BURaq1GujPMhAoIBAQDFk7wCsYt2\nBVos0ma6f5rK8yZ/zHq0iktPyoRFNqQ80a51lNpAhVP+RYh/qyN822syYEp+P0Ln\nAmSeA9MGRhoqJIni+Xhdrz/pM3VPGQ9EMx1tiBpoOVK9bYiDJYJnynggJur3KK0g\nAphYRxHPoqm6xq4v1Rwz3Xovr6CAwL/w1KyBmc2hpR9GMd4D8jHlF/c9IAWMwTi/\nN81chHAjkJ4FM8Vd40lh67B+WRjglTMAirTBTVpmZF2jY/J9N0gHw/W1v1k8ccAW\nd6XjQZbN5lqmBi9uQkfO51UiCSOfxgP/ZRen0SU9GAl7J01MY7LWLAV8v/fceg7o\nFGo71OnLjoIrAoIBAQCiWtEqK+//8CO2cEqqnVytH39OapT1GDbeh+I3kkZ/+xGs\nUYpGLT+Dp6x5savXMh9JMXdQw1ndiX8Fx6yVk2trY8DmMEFQZb04PIFYpAxGEYq1\nEyjmz1Lkbh4TiB8K0r/gB++enT58yi2WFh+OEssiLhuoV1WZjPht8EVCBMFIjo4Z\nWRQNH18xgxx/RafHw+jeUyxF1vL5mKtGT0GpfHszi3oXNA3hsQs76qfTBKEL9Q4U\neUXVDXqZ3RogMy040Vhc3NfE1hgy7PWh/+msLXQfHt5Df8h+Yfdjk7fmeAGZKic8\npSOSWmLfpHoXsDDqA0SZpu52JpEFOA/we6hI2u1hAoIBAQCqS/Q5vh6e024uRAwX\no/UgCQSeEvmQs8LGO6BWqApYAcOFxY95HXKQMA6/PBuSeu2itix/NLfNtdpT+Kfj\nOHlE6cmPwcdluLA1qQzr6IWoGwa6ah2YyA/xBoAryiDkpTd1PxY3gu/2L0ZwkJFh\njqsNOkLZJ67vZW7zu0V0tK68PhOSgackNNcIAeODMzaeaFHKdddSwxjOeKKho+Wk\nQfpyMXVkv4t4w1WVEebHbNJRHT0/gBTzPH8ZXgScuRF04ArhZNTdrI4Mz4REpTv+\nrRZlE9++AZMzW2GdvJLgHCVF9TS2iSa3yggiBnYx6Z0zzS3NoQlbGDnRAAexGouJ\n0IORAoIBAQCiLTwdorP7TpLsqehqTTdytLhsJZG1LrsvVn48kMnqAV3mhZ4d8qIU\nV7fBAcN34khPJJhaBPeM5TPnb24f2gf6aJwrdrYxOh9TnPG2jKgTj/Uw9nIIQAc+\nMzSfyOfUrVkU6mRhZkHDhcZ0ddf3WEBvx4OfuBQnBnp4hkUxv0ENRGa6QDJwc7nW\n4wpzESMVnn1sBawKNTCfQQW5HtUmjn53mNFONj8zNPiznu1GBdnfRVXvg7xX1xYR\n6+FzsYExtYLoUTTU2vE7bNk8ISsUn31BG5YQG2r8SEufhX+0WmK1LiD/pqSX251O\nvQEVQxUlOK4eUVadLx32xaewnoNq/wsS\n-----END PRIVATE KEY-----\n','-----BEGIN PUBLIC KEY-----\nMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAMEO95wRb6UY9g/EL3amXnD5fji96Xsv\nynqlnwjNG/Ev+xbOG/Tsq2gM/+0OcwDJF1uxdarNpJWyijcasgPM4EsCAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIBVQIBADANBgkqhkiG9w0BAQEFAASCAT8wggE7AgEAAkEAwQ73nBFvpRj2D8Qv\ndqZecPl+OL3pey/KeqWfCM0b8S/7Fs4b9OyraAz/7Q5zAMkXW7F1qs2klbKKNxqy\nA8zgSwIDAQABAkB/gXcf6JQoIjhBaX0/i9nMG7u1lhhid8nu/vvuQCk4PSZrXSUR\ngoMzhfXWP8Tr0/lEnvcEYt0ZnGlmDo4dekPBAiEA5nXpl+18XxpUTT4ZISWU9R3s\ntm3CClxPP9fgYEeJEhkCIQDWc/ggG1xl0XbfzCRzZ7+vHpAKMJ0o1HqTV2W66tg6\nAwIhAISfAkgNwG6yJiU1QRzUFb5g9CGfU/TGXkytHFALmpOxAiEApIjxdGDJsWzW\nUbqktM6C6O8AAHFwAuWS7fz+Fj0cjNUCICoFCygiaJfMJ5ESX1lABlrpC0FGmfLm\nD/JR1LHwRZp+\n-----END PRIVATE KEY-----\n',1,0,0,0,0,0,10,703,0,0,0,NULL,NULL,10,0,0,0,'0001-01-01 00:00:00','0001-01-01 00:00:00',2,'','','','',''),(3,0,'930bb26b-155b-f00c-272b-7ee871449332','friendica2','$2y$10$eMcECTZ1DIgZb/TirrQjmOmdwLvyl.lVBpWtY//5MX34Dcy6G9HWG',0,'friendica2','friendica2@friendica.local','','UTC','en','2018-11-17 12:40:07','2018-11-17 13:53:11','',0,'','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwMWwwjqXtfQmCzLQmZ+D\ntRVdtv1Vq6DdjC/+aEP3UKLpp0nzNcsfT3U8Kejs23o0KpC+EVFXuWZqvxyeHoiZ\n+w9i1roJf2eSLBVeAjiEmLbI7wSfLBu+iA1x+X6+d9wxxAgzM7KHIBOghVCDussz\n4AaojP4Dx3Egsl1w+1j/ULUNCvf1wq9KLMMgJlnemC4cHfv+ObcxdisPezjVD9sg\nnvRLKyv6i8gm8csDwaHtHP6VNxc0JnauU6GIxBrDmlnpKYGb3rl3WLSvuiyzJYrr\nzKESnFINFKRLCG3m548OK+reRBDmgYbsZFJ57FS6YTa63268IwwtlRbRs8n8N7Mi\nO0jAXhRyZKRim6lkykIUjwlmIKfS2xl38k1kg5VLfPwZYAhiG6+JMcBlyj7hKU+4\nN9FKKfLlxtRz/g2kh81eHWEOXblEohpR/GbAhMF8h/tkHM+ze2TAbyEK1A+UWlWZ\n3olMRdt/awlAd657XqGVukYUg++GdEGkVyeWcCV3CwscbhiFAqpV/TWh6yARultJ\nvij/UQWi27yFY1v4EAactGL/V+zrmQSduKGd7jpHJe2XVS4DGuw+ThiDQc8gamlG\ndmZcPkVxChFqGpxGKXOr8uFWbYUG4Cj3iA4iV8XOlGUIN8uFtbWX/VyVHGNGDmGg\n60osshOegUJTNz8OBkZspvsCAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIJQwIBADANBgkqhkiG9w0BAQEFAASCCS0wggkpAgEAAoICAQDAxbDCOpe19CYL\nMtCZn4O1FV22/VWroN2ML/5oQ/dQoumnSfM1yx9PdTwp6OzbejQqkL4RUVe5Zmq/\nHJ4eiJn7D2LWugl/Z5IsFV4COISYtsjvBJ8sG76IDXH5fr533DHECDMzsocgE6CF\nUIO6yzPgBqiM/gPHcSCyXXD7WP9QtQ0K9/XCr0oswyAmWd6YLhwd+/45tzF2Kw97\nONUP2yCe9EsrK/qLyCbxywPBoe0c/pU3FzQmdq5ToYjEGsOaWekpgZveuXdYtK+6\nLLMliuvMoRKcUg0UpEsIbebnjw4r6t5EEOaBhuxkUnnsVLphNrrfbrwjDC2VFtGz\nyfw3syI7SMBeFHJkpGKbqWTKQhSPCWYgp9LbGXfyTWSDlUt8/BlgCGIbr4kxwGXK\nPuEpT7g30Uop8uXG1HP+DaSHzV4dYQ5duUSiGlH8ZsCEwXyH+2Qcz7N7ZMBvIQrU\nD5RaVZneiUxF239rCUB3rnteoZW6RhSD74Z0QaRXJ5ZwJXcLCxxuGIUCqlX9NaHr\nIBG6W0m+KP9RBaLbvIVjW/gQBpy0Yv9X7OuZBJ24oZ3uOkcl7ZdVLgMa7D5OGINB\nzyBqaUZ2Zlw+RXEKEWoanEYpc6vy4VZthQbgKPeIDiJXxc6UZQg3y4W1tZf9XJUc\nY0YOYaDrSiyyE56BQlM3Pw4GRmym+wIDAQABAoICAQCebZqQdiEa+/WMPI3tw4g1\n+cJUUq3m6MVLomH+hOUr00geIYuNiUtJPTtd4j1PP4bB+MUMbIKhL4fJWxakV3Xd\nPM7pVGnb2F3sdv8U6ignbgmDTpQWZxLWs94Yw058KW6JAog6E540AY1qIzqv+LLA\nihhaD6VBczsA/ASPvZvPU4zNl+3Vu8RFN3QjsLZc8YBQMDrGakVvLYKCrbmFV3ze\nxj1E1NcLrEo9a7DBoXfC3YP6i8pjViR9PQOuz6Q0JXKXlxpoGJr6Pz0wz+3Hi/2w\n5ivqZxCzBzdXTSN46TwnYdabsBwRFbcP2Cy1ywiGPrmkSVi7oRWRMvjTPsxXZpRZ\nIBxOYmkjNvquIrnL9GaAxzSuHBK+wdlLbt8zbOzyhmNKkKuvw5659SeKAjka1S5Y\nWXYWoJrgivYDwinwFLVmiR7XkZ3qh26eobxOBowy49NyvZAwiMLoHet12+EWBgUD\nrfmP7yb1OnQj8J0+qvWT5+AbKwhV0wIcEaFWX7iIw4Zx5SbIbmHpTyM8hm7M9l34\ntaqVlgceTJZtu3CD12s79uPD3KN6N64e+xb/s9GAK1sZUAlM8m/VkzLspSQ451U9\nOYixiGx3VzJ3TWC9CwHAVc6E7z0lt6cuQA7Kn06X4MDdvn6Dtg2A32lg+KM5Fajz\nExz0i0dnUkZSBiAVkxbSMQKCAQEA8vKh3rNGGZ6ntj54ct82dd91YqtfHhHh707P\naFOMDAYssPDGjDjZPzxSVGzGMBlo7VvqHaHwMBqpULOwaijwpdNv5r2gy5/Lg22E\n8mDfjgzEaDUKkFWhMQ9ckevwY9bAAnR9YAdHUloMrIQyYsGg9Fu7BIkAmFDPFOeJ\n0IuMrkHPiePR7LuMykILCcuYP73nIVgIfMvbAe3wcZnrpYBu2zRb8EiV/mZwFwiW\n0d19d1LwoKLXuu036DvIfUTnPcapnnAE29PdOTWp1/Ni4EkeflxIHl/6hiKpkg6l\nxVVuYRVG1LQWViw7JGzrMf3WJ+bqaUFt4sBAsFI32/QeLBPJEwKCAQEAyyD4wTN8\n+T59JHsr09N7PIGjjW70oiu77OT4W0K/AF57r9F+IYKYn2v8S/1qS12qhrkFNhmG\n2Y0VLi/GOyDaxzEO/IgnlhIetf7SCKfvZf8JgAUEGdZJ7xJc5q4L7N8GgCA0Y/Tz\naarPHuo+T33EOXyArULBb/8IY+oUOeZQuDgsyEevMViaNkzZzOaWSKXFlpQqaXnz\nybUVCQ1BL/u7HRvhkpnc7uVwUWe5LqOsRRFdzWjyPIjpCjhBcE93O4j64sl177bj\nz9rTVbd3KNNIjSuEOB/q3/IdVj44wfrnYkI8z3aFc7q4XyFU8IbSiAlTvKYfKMsJ\nsHLKu0XrrluPeQKCAQEAmBailOq/0JwMu78B4k+wJTxdnQZRRl7FhO1eVB4xRvm6\nko44jWGtRrP5ilaJ/2R41la7Cg/tb//QzO+gWeUFOZpSrC078x025zDxkFZqvN9r\nOR0zXsXsYe0O816zn5y5mQ/ZyPrlgD1VP86GSGKU40RloGIv2CqGaLzF/qLNz+zt\nApJ3QW7rpVaQ2HH2/rhgb/RPY+iuUtfktQk5huMPAvUVNSgLljYEp7a9y+WPfNqU\nPsuSp7eHTz/Vs+4loPu0BbZ0pDVOgVkB2WnJFUVQ7KPSlglZqQ0cAI5g4lcoAWiz\nbcbLUOjhoVz6I9KXdWVOi9Pk+ZWHKZpe07hQByHftwKCAQAsJ6CrLqwN6f19/qBK\nTYBOaMfKqMHYtrUFC8jI3btzMxaj42ANnLvce7a+NfnzJAs7eeCeH/JmO/rMrWnj\n1IJ6Jjnhvx8LyiiO2zOA2jB59XR1NaHsk95Cb7VuF4tUFC7vjxCUYdy/rXeUesrM\nsMQE0wGNqCMwWznRrkJzS5NkWCGz75Evotjy0MXPephUdmR7FP4bK31I7WoDK7Rt\n38SO0U65dWTHMWy25VslvkJmSR4g1p1Bd2lg5VWkOkHq2R3gSnaugw0GU8T4rwbi\nAvuUZE87fASsZY7m/mOMFyRRAaECX/smawJE+5PhLQ16sLxZF6tSTMBwcKONDefr\nYM/RAoIBAHt/RB8DkdmLxU+CECiSP9NEb1DKwRNrbO6lmCf7yPQEuW/VzaFelJme\nQwOtt0qSF/v+mCma2el3+gtzSr99Xmn2B/1JrhXDppLW0vYvIb/4LgOkK0vsexp2\nwYtotIN2FmyMFlNo/QldtYd5N6ntGxZ98I6SrLGxldVYLehBvw8f0PN8K94VHxQl\n6xbT2gJoKuif6uGp3hRMShZIBjpud4QpTIns/cKswtrKYZXAEPIalVkk6PZpZePy\n19qswGwwCKXYldHL/u665EltvPcgqmsS8tabpHlZZWDQiawtLgClJlVHhhFAiXxc\nOVpxbVPdTHhTdGnA/6LsObTIpx8Xepw=\n-----END PRIVATE KEY-----\n','-----BEGIN PUBLIC KEY-----\nMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBALAc4L4geDC9ql7gJ7vLsXzRbWWtbk6r\nUdL43r270lpO6Jk44dNIGdTUHVAPvTO/ff43mibgTftstJQXiSGBYM0CAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIBVAIBADANBgkqhkiG9w0BAQEFAASCAT4wggE6AgEAAkEAsBzgviB4ML2qXuAn\nu8uxfNFtZa1uTqtR0vjevbvSWk7omTjh00gZ1NQdUA+9M799/jeaJuBN+2y0lBeJ\nIYFgzQIDAQABAkBC9ogB4uiwZ72bG5IgFuBivGLjUWFq6jtPg6915y+hhFOPEf5P\nDv4XOXv2JCu08ucXgTJyD7gemTk87AMlJKDBAiEA49uvDAc38w2v7Q9pqbMUAKGS\ndehF+CDILIi0OQE8ql0CIQDF3SIkmlubcwnQpzdCgw6q5jDuQXpKh5cGE14icw2J\nMQIhAIEzayFt4mq+QxgvmiFwepIVC8AxsaMNq5Oc/FwqeGS9AiAdPXmvORRym4SG\nzj9PV/jR7qSqgQimfPUnk7MkmiYU8QIgMok5JKEacVtyZzef6lPJCkQwWnR5430b\nE6sYMImFBas=\n-----END PRIVATE KEY-----\n',1,0,0,0,0,0,10,65535,0,0,0,NULL,NULL,10,0,0,0,'0001-01-01 00:00:00','0001-01-01 00:00:00',3,NULL,NULL,NULL,NULL,NULL),(4,0,'930bb26b-425b-f00c-3ce7-94f334620775','friendica3','$2y$10$6It1MPumdaHd32nWpPdgWuZljJ2ECZsPLhd8GTl5HNi0g4DNZl17i',0,'friendica3','friendica3@friendica.local','','UTC','en','2018-11-17 12:40:28','2018-11-17 13:47:24','',0,'','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvAs4TR4AI+nlBt8d7BHD\nViq6w3UslHqURRUo0+sfAE5RL45im2z+ryPag1K5dbs5pcoa6hfk9+EREgoWlwnX\nX/8UdkvkoHE6/JDFimuaK7pequwUQbQoOXkkBAyPtN8YhjfGM19CI5FIVByY+O8p\nO/lGls1h5bxYEIgjA0tTDw5FuhPtiw9SJAPtQs5Gueoe9y7VwXNLNenKI6r6/Kfo\nzgYKJS98ibCllMiDIY0ixZZqhsh5+oEAsGPaNtQSgw09fWyyDNUKOenC4NhhMWsY\nBtTgDOPkM1AgidQKny7wtfo04YCn13SZuU6cWXqCx2pTgxLpBRgNbfkf6/DerVEO\nh2/Fxx2oMrRqLox+kAj03zrKnto3n5cYASlmfeEmUBHtjc/qPbuEzm+FEJKTXkrg\njt0+xzTQxPr+oFMinACdTMu6J4lB6dGCJxbx/Dx6FcRKymUYGdLvZWITfKZAikRh\nX8Pll3bFExOk5ieOdBLRt5ujGHuMbV204qpUsL0kDU9/4aMnpJei4EZuw21ovDH1\nVchVjJS4fzsJkaDfA81+83ADHXU10+UJ7PXAq7U416nC/dr30Gp2cxYb1qELYe4W\nGXE9k857z1o3BevJi4smy0FeydVVEVJ/1SPhPcdKHIA6sfP+TzuvWk7zK+xDwdyb\no4/nVNHD26NC1mVTTAjR7t0CAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIJQwIBADANBgkqhkiG9w0BAQEFAASCCS0wggkpAgEAAoICAQC8CzhNHgAj6eUG\n3x3sEcNWKrrDdSyUepRFFSjT6x8ATlEvjmKbbP6vI9qDUrl1uzmlyhrqF+T34RES\nChaXCddf/xR2S+SgcTr8kMWKa5orul6q7BRBtCg5eSQEDI+03xiGN8YzX0IjkUhU\nHJj47yk7+UaWzWHlvFgQiCMDS1MPDkW6E+2LD1IkA+1Czka56h73LtXBc0s16coj\nqvr8p+jOBgolL3yJsKWUyIMhjSLFlmqGyHn6gQCwY9o21BKDDT19bLIM1Qo56cLg\n2GExaxgG1OAM4+QzUCCJ1AqfLvC1+jThgKfXdJm5TpxZeoLHalODEukFGA1t+R/r\n8N6tUQ6Hb8XHHagytGoujH6QCPTfOsqe2jeflxgBKWZ94SZQEe2Nz+o9u4TOb4UQ\nkpNeSuCO3T7HNNDE+v6gUyKcAJ1My7oniUHp0YInFvH8PHoVxErKZRgZ0u9lYhN8\npkCKRGFfw+WXdsUTE6TmJ450EtG3m6MYe4xtXbTiqlSwvSQNT3/hoyekl6LgRm7D\nbWi8MfVVyFWMlLh/OwmRoN8DzX7zcAMddTXT5Qns9cCrtTjXqcL92vfQanZzFhvW\noQth7hYZcT2TznvPWjcF68mLiybLQV7J1VURUn/VI+E9x0ocgDqx8/5PO69aTvMr\n7EPB3Jujj+dU0cPbo0LWZVNMCNHu3QIDAQABAoICAAiz2Doxbj47P98uijr3o3uk\nZJpRHOwONDhyPz53firMdRNnWobo52yBk0ZKmMyrCoLytIYq7uzN3LViBCOfT/lg\nW7kR0BXgx6MSrCG40xy89k6guFtGFCp8wb7yOeBcBs2HXUPZX703pwpFfIrgvp7I\n7YxjGum/6q9xLXWkkcZ7mZx/+Zla7yk9iUhzNXC7Ng2ofDoEtPFczX8TFaSFvM90\nFhocdX4Fz9Pv56mw13AfgvST6JlASSDgriOlcunfvf3E/wR7A4skl2FCglUAKM+A\nIJJYJaJ+TdMzHf659GfnmXTqOFpPSiH6UmANvGmwMQc648/Zih2RzvljX1rUCoED\nuV2Tt3+ygaCGsGQ4gEcT6TJVtehB7mEHngqwuGYvGMH1C6WSo07DIbljoB07VQyJ\nzEhJSXNJayTUDHiA47u4jOtC/c+oKC8q5qjeRztA4cKxUq1c1R8WV4ysClc3PdAa\nlzgo51iFgJ+/tdC6Y8XP6Yxs1KII6TUOeXFUodekCQgleYO5DTHgIhaXpQplzjFG\nGjyT7uFJSqzfJh6hoXq8V7U4DyFzk4HDv+ruC9Yul49RiRQW7gghMReMDa1c/TdW\nvg3q5BUzSU4qUZ9zNA5hbWZC8pKj6+alWlGszaMsQ1I/wX7932eNS/lXx3GfKtwn\nW0HvkH6gpLRH9vsB+2ohAoIBAQDuanWxy/QZ4c01M9EbieC3YHS/MsDNP9sF3S5v\naDbk4NvMK7iglmz0qe0lwQ7zRSZW+Gs2pX8LQezM7hKjoLxuhHYbQ0c2JgTsbO7N\nSij7ermaUXM0topP9jIJlKt+4QMuxh9RJrt4t8jawOha+o57q97RbvH4KnJvEzrK\nUNU8HWjCAnt5MazUFtJXzMjzZ6paG8KPsNjnh3eNVW3hoTcqueniG70CQT09VUlZ\n9r6km9mqlF/YwkoqRXtka3mZgUUjHxsxUwqRchvxL3DvLfSBoWmnrCKLu/3j+3Pk\nNV+g7CESUPrgycMqByFC5vWf7CyS+p/TLoQR9ZjOwkAh2MIpAoIBAQDJ6a8E9uGs\nZjGKiF52MjmqTVyWZgXhrVvnr/EZiCv010M1J41EuL/57b91z3PEdzWkK1e5fFZ9\nq3Y65A1XkI79Wy9I702dJVPJ+aKVPtHZhhQTq6r2zm2O+tpjXABmX+vIlSaZ+F3H\nkGqry5FFg5UwkCNvHHsDW4MUo/pKAC8OAqhFszKGRGNcZrxamVR95EMqZ9EYZ4Pf\n4HPl4Ajm4H1nbrbYB/vRD/rRru9ma1o6mlyQPSbMcHZNOMtmDGrDm/neaw4ZfNQH\nxubNoc3mX9kSTmjXv+z2Utv0cU664L8TQjMZ6YgQaxVFNGgz+SqM1FKXWdFemYvN\ndFOPtSyR8SWVAoIBAQDG6JD63jLwaP/AtFNwS07tDw83+Ur7spuzv72e+u5Zc/RM\n2ek2KWoLkb2lsvUbJwT+qFEijV558O10Z+erFk4/UkoLIs1FsuCGs7dkFMwuS0yQ\nIAYi42xvm/JRJfUSbP4vxuGX3d2osIRlZW41gTbgnRrP1mUP67H/U6bH5jqQ5eRh\ngJqtGTGc3NFuqQ66bDGm7eQb56p/N/kZND3xcYRKJEOp/gRp3i4Ofpos8XxKbzBh\nbVqtyCMCM2fn9vbDiCM7UxdnxmVZxT7ksPTix49nm1g/qJBFznja/Q3KRnFbG8XX\ntzIn2oz2Am7Ql0ozu2HQ2kH/eZ58MU/kqBHDa0lJAoIBAHltbNEKfBuG9eI/MrfY\naq+NiNH2FzFqZWwHdnKJXw4G6ycrWxzqEqIGpe7+zLtpibvqSP6G1SkMlbTC83cm\nu6eIT/6H0+Be024TEAC7X852gNp3kgCNknu7Rt0cNi1bIFxnvmg4YoWix1P7v6jT\ngkRLWtP2h9A0F7exCdO5GpNNa89G/mqa9DpcmofN0G9JeE8nUitgDYH05R5oxlG6\nzhAHGDUBUCKhfpDdqKGqi//UVzhzXkLym2LDdicv7oEm63UkYr1XQdhPePxPg5k5\nKT2GJC0kAij9GcR+4/8lLCQz2rGJrUdabtdItiYTgdBh3C2jWXOP2fC8NYimR2CZ\naqUCggEBAIqxsD8oj7Jr1EuQK8MT7BkKYQ47h1XNbkAkSMGwp99/F4omtPiAJ8v9\n/XgpOCMmeKvMzDmI2qMrXMZaXmlLE4pMYgOJcXxPv3Iz3b+zHPzlh1jV3IY/sLH1\nxVbzrqiMFxYsRWPd7qK/hnpyD0KZtXxQ7H0PLeCL1il3rfBI4LOXRRmpucDtxwam\nBzFWvxTXxvTnAmefrimmkS27R9OVjj+d3UIrF/NFXCk3rNPD+p92GEVp3zmvVJTB\nlsWY2eN1K1bRSXgsWTFFrnoE+nmJLWrZgX0idwEhvJZoc4VDzDwdv06LthiRW2uX\nSrA58lT8mdYpYCll/RfIRO8HjUf1cn4=\n-----END PRIVATE KEY-----\n','-----BEGIN PUBLIC KEY-----\nMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAOJeVsCyW4oL0fq6ygm79aPI8Ifjsn2z\nsKCGKENPJJ2/MIHYAEkDUKPM0ZKrrFw8iEFHia09LmGbR+yQ7d0PRbcCAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIBVgIBADANBgkqhkiG9w0BAQEFAASCAUAwggE8AgEAAkEA4l5WwLJbigvR+rrK\nCbv1o8jwh+OyfbOwoIYoQ08knb8wgdgASQNQo8zRkqusXDyIQUeJrT0uYZtH7JDt\n3Q9FtwIDAQABAkB7YeI1K8H7L1AnMnJ29c0AlcCMwM4D99IY3KbLcTLLC2jKP2Bv\n9bOmcq7FTueJU2e4aPcT6DJ3aqjyGqLKaEM5AiEA/lV6JP2Btn1J6mI9JKeeDcNM\n3pSWtr34OVlEIDqk3L0CIQDj2faYNnFFqzprAWgRH9x76ZTge0pEA27ENW8nXicl\ngwIhAInNXHnwVTjAV61D/yb+HrgMSnkK/0ISWg0QncXsoGjtAiEAlTyU7Ft0U4p0\nR9PzAoxY0HxMe7+lA+kvqqnI9QMRJtsCIQCkMguxhDF2U4IOzqfYEUjBlChRTAGm\nI4LC6zsoApuyPQ==\n-----END PRIVATE KEY-----\n',1,0,0,0,0,0,10,65535,0,0,0,NULL,NULL,10,0,0,0,'0001-01-01 00:00:00','0001-01-01 00:00:00',4,NULL,NULL,NULL,NULL,NULL),(5,0,'930bb26b-485b-f00c-9705-875375530301','friendica4','$2y$10$EwYCtK8AOE/8pJBXBVHCEu6uCXpRfxIRO3QqRUvWMRPig9wfbKhCe',0,'friendica4','friendica4@friendica.local','','UTC','en','2018-11-17 12:41:59','2018-11-17 14:02:32','',0,'','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtOfQNRnGbzBy9Rc7gLAI\nrB5Fp2SBFfjRnd5g99HKWI3Amz5BXdcOWsgikVtwSVGDD8TGPj56qIlp+ctfYkPZ\nn5QSGfA3VS5eqWNfE9aG3XZAO7M7x2pKVaf79ciuYK0HQrmCeClB844x8rXDmW5m\n1k6Any22lpXHdDY8heR6O/uLIG9i/eRiD8tFMY3ATVkJ4MF5TY/m0ZGhHAMfK9dm\nkJzNvJc0cYe6kBmpDDmlJwObo75NfPBi3bqTaIZvTxda6lgWcuv/J1IR0fLhW8IJ\nbbXcd/fSNHV5zdqPmZsiu4+nx1xf+40J1v9+uKCCxH6UlUR9HLcCpYH6PDmoEkRk\n2WVPsU2+crVbY5cbNx08LVe6ZGl/onhTM35t2JBpo9ClgTSmpgEkRQsBebWNEKn3\n/y7Ib+/IywdomRUTgXVtKt5+90FdEhNwrba2CyD3dFW/CQCwx+363juCZr16EiKx\nbG5VJ1aIN8/My9feB9fklqyCpy0vkMI9NptQbtKntueETeLTqKlZ5uJJZJtd6S7z\nrTAd6vx5WLOMYlfQF2K7MVCwYUVfcIoWKxAg3SU+5sIG+cSrreT67wxt6k6sEEOw\npRZn3qZ13vPpO1mJelhqQeDZYutywYHjNj+L5TjCIZqIS129MZbqDJELkjTmckRV\nAZmzTHqCDXwd70IddYvuuJMCAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIJQQIBADANBgkqhkiG9w0BAQEFAASCCSswggknAgEAAoICAQC059A1GcZvMHL1\nFzuAsAisHkWnZIEV+NGd3mD30cpYjcCbPkFd1w5ayCKRW3BJUYMPxMY+PnqoiWn5\ny19iQ9mflBIZ8DdVLl6pY18T1obddkA7szvHakpVp/v1yK5grQdCuYJ4KUHzjjHy\ntcOZbmbWToCfLbaWlcd0NjyF5Ho7+4sgb2L95GIPy0UxjcBNWQngwXlNj+bRkaEc\nAx8r12aQnM28lzRxh7qQGakMOaUnA5ujvk188GLdupNohm9PF1rqWBZy6/8nUhHR\n8uFbwglttdx399I0dXnN2o+ZmyK7j6fHXF/7jQnW/364oILEfpSVRH0ctwKlgfo8\nOagSRGTZZU+xTb5ytVtjlxs3HTwtV7pkaX+ieFMzfm3YkGmj0KWBNKamASRFCwF5\ntY0Qqff/Lshv78jLB2iZFROBdW0q3n73QV0SE3CttrYLIPd0Vb8JALDH7freO4Jm\nvXoSIrFsblUnVog3z8zL194H1+SWrIKnLS+Qwj02m1Bu0qe254RN4tOoqVnm4klk\nm13pLvOtMB3q/HlYs4xiV9AXYrsxULBhRV9wihYrECDdJT7mwgb5xKut5PrvDG3q\nTqwQQ7ClFmfepnXe8+k7WYl6WGpB4Nli63LBgeM2P4vlOMIhmohLXb0xluoMkQuS\nNOZyRFUBmbNMeoINfB3vQh11i+64kwIDAQABAoICADL72fv9JaWUe/GC+KwN8IPB\njFPeyVqN41WgpKdzIpnOaWfXJcjyoQMIwGVC5eRj6pH5HP3R0fPJtmpF3L3u7VhB\n/M/+mTmSde87KEKJBT1I5FVu7/wFgqmdTC86vZpVaWRur8x5pDKl8oG6pEOLj8P6\nH9m8ombSE4I2/tulRqW9ALrFaZqwUMquuPN8RaQG4ffLzwoC8kRBzKv+XTyX2joL\nVxg9bPRKElQmRzRA0sCqDaUaLvB1NwfSW1Tr/lbF+ENvS/Rbem90e701vDmF9+5J\ngLb2yvEp4ogXfr0FscY2eEyBRjO4zfsfynDyG6iRHALtaG09TquidAmhHjL3v4vj\n08NrTSMQDtWNk7BW6APXd+U41uPZ54GF23q8N5wmgYUjDhl6nyw1cCEtqzm7DUYy\nQIDE4K4Bn5PSQJ/kBt9VPFZnl0zKV7YQ9ABSEbFy+RSCTtCdzBQZDm5DekBpgOiq\najbMoWByPWkX5SzFcMSflxQIz3jMGRCh5y4REAzpx9aNitl0OrgckoW/ZPK9R2CX\nlMgJQqVRmPshVugN0AWV5A299/Afh9icsjPOkRMhzcRvLUPAqYtXuJPFr6grnu4N\nAm6DZqWW0DRCK/D6NPaviB3838xhrSVGWUzlrS1IfoqTEx7ue8xmYMxzfbN7h+Rx\nA7CnXHpGSIFXGg+oSJJBAoIBAQDfniFJlBSgfiWzOsEXeQK+JtOVoPGiDisJPCLf\nbs08CRJXK5Wo8giK+9QDKfX3OS2ySZC1XlNtJ4kVCO74g3zAdHgo0FPy3d07z5rk\ntJDN5r6Xu4Cl2J1EJ0KWLopyejLoDXclegp4SwrP/q6ODBT4fYzb0cYncO1qGvuC\nNHTTQQip6/z8gkSzMKU7k8UF7WA9/ZCN8UzUc2g1QIjo/+IN6kDboazUStOS6mXl\noWOiLz955vsXkUyGgr1FNVqnWp3aMX8UCTYjo2e/AKTbsk5SosxfoRR5B8V5tnIc\nzZkS3dRY1t7lTtlW+vh58IO1jA6Mhc6Q7vG82QSJCh/EaRMxAoIBAQDPGkYZK4bX\njDEpIij6h9V6Hf4z+cq+qRzJLH1zS/GULA7/zzdde1oRzNbSEPLcHkxvEbGp/8Ic\nhOcPJJJ6mfbpBBkVwQvVRv4nixTP0Wg/bmexA25NzpEQKJ2ul5/raJ7aURivyqmX\nS0O3JXHsbwBFR7h+R9eVekAdOY2zcGAhcoeJ4pyUh2fCOp4jZ4mA8+xv4DaIcNYP\n9wJdFBjnAV40FkWkPHlmA8dq4M1WjkUg/pa2oixi1ik6U1to8QPK+YBY87Y6nf0J\nTAVpk71scobM9iwHn1FeqLnvPY0R5D99mxCuDiE3yqxdDzP2wIAvUuM891upsM1e\n0X5QIi7Mpa8DAoIBAAmivrx07Q6dYPKALaHdTQj0k1l3PfJFugUD2lzWYXGc0nV/\nI0vMYiHbCB+6xyaICDgOg3XNQrsJYRbO870xrUZ9vk/D6lokxUu2fm4sebDlqIDR\nS5HZ66zsJCpkhwK30Um+isvKnnjggu7DgrIMQzsR7efq+ibo7tILp5rMt9wCiWUJ\nDjWzR1KRXg1bKLpAqE0DiB8VrsHY1zy0MzIXFJ6U4YaVSOU89DD4eLuUYL60Wn/e\nPCOf1zRUneNFkUp01Sh5yYgLfZG7kNTiKjhtToKxES1tu3wboZ7FBdXH5jix5lyN\npb0r0KG23s4iVwqTpmzXtzb3lOMWVuOw0/2aqYECggEAVX1mBEvYbK+9N1qXidt6\nft9UqMXrMEsEy/Jmkqp9vYl2Y5h5JUifBIwG/U3rwntrV8n5CdC+oyEldDXHlX5q\n0wNTC4zVwqN8lHwwCh1KKCz99q8Q4GNttDrf5EtIw1c7g6lIRICnAwIZoMd/QHcN\nqIuTl+U2E8kUIDw6xyCTPhtV4dA+jH1ckmu6DalWtHl8Vy45tJbHdm2jdyKtqOYC\nqgOrmcEw57CVqAPGH325AYa2VguZwO7gs+fm6unag/X8SjvINGg1JJpR/aPz5Ile\nJctUn4zffPCvWBeTXRhYMRRKjV7dzXcHMZ7t92S9RUu069y75M9L52EZACEsKmQW\nWwKCAQBbgg1GcSFhYtPV7zQu7weVbRjSpLnPwJ9Z2JJgK/B54M87cmboTVb80Xb8\nN2eBPH6xHLUFfusNKZrxfr4hidngHOPtv0EEi2iosrM4LjVtPGlTF5BRT6vx+Kz3\n6RXuwDKshccea08kACzoO+izmyI5yOmUbyjS8EZn3h974fbageTJ7p8uoTWiiIjE\nPuxVlip1w9szT8Y27KyMu6Wfx13PMVmiHpCJQrgVb+Nz0nDr4NjMG68Ni3+Ehpyd\nMr7BmbmUXx/e1IJeHVPTdr2UytlOP+v8554ptSjaxLsKK5zjvtz3cVa7kMlC9vwK\nKWP6W8Y12pGv0k5BU1G/X2AxKnC9\n-----END PRIVATE KEY-----\n','-----BEGIN PUBLIC KEY-----\nMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAKzscQ9MBRDJjrtOSHtdMraPA2k7P1IQ\nD3S567UtNCLUb11f1NyGbRZ7zI5qaQXlyrGTJbjgoefvAwHzkOCHEp0CAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIBVAIBADANBgkqhkiG9w0BAQEFAASCAT4wggE6AgEAAkEArOxxD0wFEMmOu05I\ne10yto8DaTs/UhAPdLnrtS00ItRvXV/U3IZtFnvMjmppBeXKsZMluOCh5+8DAfOQ\n4IcSnQIDAQABAkARzWm6VG41EzsRh3ao1Khy6PhF7iaPsT2WG8nrZhL2/tJoDWf+\nH1X9sJVr13FspBZJ4STsTYzOLIFvMGh+Umt1AiEA4T5qqvUJpTTKDj769gdzi55c\nNu2qVS2iy4Y8iVu9hssCIQDEiSDyrWwoVMp6VrAEig5r7LljOScBMbEfGP5pa9y3\nNwIhAMWXLpWn/X0akQHsR9UZ9keNdRGObfTo4r2tlV9dxiX/AiAuGGeE443pi7GN\nrgVMm0C0qWn1zrLKQehj/c211hmHUwIgJZvGs4i6wOvL+yqJF+XLZ77p/C3c2zE0\nv/BubG15+e4=\n-----END PRIVATE KEY-----\n',1,0,0,0,0,0,10,65535,0,0,0,NULL,NULL,10,0,0,0,'0001-01-01 00:00:00','0001-01-01 00:00:00',5,NULL,NULL,NULL,NULL,NULL),(6,0,'930bb26b-545b-f00c-b13c-f57634480673','friendica5','$2y$10$rQNI.gu2VrX5ubWItitluekmuLJNtBRIAWLAU.IaGETqGDfVpDNwC',0,'friendica5','friendica5@friendica.local','','UTC','en','2018-11-17 12:42:25','2018-11-17 13:48:59','',0,'','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzbQgk0okIu48OTsuvI/j\nnTYfKREWuHx0Rkr/44zKv9NGOJItxb82OoK/59o4l2mkt3REOwEzsSeAUe8VjkFU\nnfmjTTg8GqDCQ07Bmux1lVdtyAIhqr3uMraS8bODUMRFnDSX39rYYUH+h7oBZ44k\nW2vGvnWKh8BYPmV+hAab8TuJBODrZy1z5A1lc9CSSoZCiEOSvO5tGgiTBWW/CUoC\n6jR/BqZy/jlbiuED/t1Hn8dKCyPkAUppFhVJgSiSaysLeQlGsw58QYvD4WJXWbGh\nOzBDyR5hmSPuRuCxWD0GkpCnZGtkLhrJHAhYysAvqlc6Oo+6leRuLq2S05cZI1cL\nwsjapgnIvPCSIm7OkFlEimqveMNTOKNbcyIHaq8kL3ZyUYWuygVndL9AdUhIEAkE\nOROFlAyv0fC0tbBhnsJ/SifvEGYOaO4eRB1mvvY2R+JU4gPXLWbeNSNrn4zpTdIL\n0pwDJvLAv+tgeheBz6fNyKqETeclMEuo+GUs3nB8zeO2ZJXwzAgqMt5/Vr27v8d7\nk+Cer7ydUT8QTlsRGTAjaWicDFPLlH9v2v15JEaDqjtIJ9kUdAaj+BnR3+j1x86g\nSrJa5SV4kdu/hduRtIfnhKTpu/ZnxhQzkWuu6gWtjCpLzTuaHybnh69rSz7CKoFU\nXnqm6IVFII/ny2a7I1KrMFECAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIJRQIBADANBgkqhkiG9w0BAQEFAASCCS8wggkrAgEAAoICAQDNtCCTSiQi7jw5\nOy68j+OdNh8pERa4fHRGSv/jjMq/00Y4ki3FvzY6gr/n2jiXaaS3dEQ7ATOxJ4BR\n7xWOQVSd+aNNODwaoMJDTsGa7HWVV23IAiGqve4ytpLxs4NQxEWcNJff2thhQf6H\nugFnjiRba8a+dYqHwFg+ZX6EBpvxO4kE4OtnLXPkDWVz0JJKhkKIQ5K87m0aCJMF\nZb8JSgLqNH8GpnL+OVuK4QP+3Uefx0oLI+QBSmkWFUmBKJJrKwt5CUazDnxBi8Ph\nYldZsaE7MEPJHmGZI+5G4LFYPQaSkKdka2QuGskcCFjKwC+qVzo6j7qV5G4urZLT\nlxkjVwvCyNqmCci88JIibs6QWUSKaq94w1M4o1tzIgdqryQvdnJRha7KBWd0v0B1\nSEgQCQQ5E4WUDK/R8LS1sGGewn9KJ+8QZg5o7h5EHWa+9jZH4lTiA9ctZt41I2uf\njOlN0gvSnAMm8sC/62B6F4HPp83IqoRN5yUwS6j4ZSzecHzN47ZklfDMCCoy3n9W\nvbu/x3uT4J6vvJ1RPxBOWxEZMCNpaJwMU8uUf2/a/XkkRoOqO0gn2RR0BqP4GdHf\n6PXHzqBKslrlJXiR27+F25G0h+eEpOm79mfGFDORa67qBa2MKkvNO5ofJueHr2tL\nPsIqgVReeqbohUUgj+fLZrsjUqswUQIDAQABAoICAQCEVefHGiGZX07bOtnccW1r\njJALaXUGhvp+5m0tRTyCoDdC2bgcyeDnT4qKbHeP4WUYqPHkS+enhtQk4f0qIZmA\ncEPAv/ba4qVXi+k98/XJeA+mZsimAb6mXZK3cFeAtGRcE/HJEA+4si4/v0h8CJQX\nRIT9rrzKjNG4gq8b3OyiCz0hKFoJbNJr2rp0AbC7xRg0ddSHO5Rw9Scwh76ZCUZK\nyi8WZisApoHgHNbnNhCIGDvoYtSih+6HSHabYzCfRXgCDBexxhXmTTZdX1j22THy\n1CAn2SXM0bLPYmp1a/04eVtXXUd76buMD0qgVXfUzH0ng6P0HptL6FrXSRPhCnUD\nWWhwDCDbaR44AtJrv/iUcbyBC1tmc0lncUaKdrd1PbZlSYa8OpYJNMetXauXTC7D\nGH52/rUJL6+7ImS4r4meuGdElXCMAPItUhnu/d5Nzr//68kHdPqeuBGloBhZAukf\n6d2R0NhRFHJEXbRgj+6nSZ2MQ9imVht/c/1XtP0I9M1oisb+vP9I4ZvdXIuTJt1S\n3DE/sm9fbnX6VZErKVw0+t2MapEGheJs59ysCSQYYqtWh+W5HYjExt9VEUv4bxAH\nH9UZTZ5b1HBdEVMG9nnimc6aQnNibFHfls7hPeHoiUo2dIBenCjKvPBkRwkELmLb\nmXOmfqVnDJt0VY18X2tniQKCAQEA8hSrV0XQh9nMMUkCCBnZbjwF/73jabeNsqfj\nGeHDz34zgZC5OFgLoZz7ExCmQvqDMYXgpuIbczTK64lGoFCscJtOMxCzL01Fom5N\nke8YQyIU3KvnHualHba683J2dEJgYXFmA3sZE5+PWk6mPgLZjCuVTDXzqUpKS++N\nXu2SXZJ2KcMpHf/6NsXV65BQWqQDCHm5llispfWhxQT0oDA6k4KTzBdenl3NQjb+\npLm+yrWxYb+jfLBVS5mon0ZGkhPAGFyw//IM5FOKYHIm3LF2i7t25Z4SdMrCDe9p\n0MWBB6Py7w7hIFTYcG5FI+OSKaqUsv1sFbXNUfUocEjV+8rXJwKCAQEA2YgAYIlQ\nVtWxflFJRzHgu6WSjo+/fW1IKJ/bJd3JVU1OYnkuSjX+AQK7Lie62ItideYa5yUv\nIgQerqW8NSkmXkpEtvYTMZjQ5DY2ArIynW04aCsMZHGCxPd3W1yg6zX7JGworNuT\n2HMhzGlL5jiewBUkexaeGDA7u6GsbFQkVKQDpgVuhvBrGCuP/38FkQC/HVBZ9b9w\nsnnQkgsFbD1E6kl0ZosGV+06tbL8fZBAn2lsEE2bdqsWhkF4Q72zzvliOYv/f+No\n0A0L4HL9lmqFbHE91W6VJ/Z6bfHfT52NSJmY/5KR/ube9cR84qYVVyvShX71mmpW\nZjaJvxKWH3EnxwKCAQEAiH1c6fUEEUScm4E1cwnYDQ4st7gBu75xVzTPl+0x8RCP\ny9Kki/8gd7vB2Er/4y3JwKdiNdWwcnFmpAyfVI6H22nFWodk8BuaUm3ssIZlYJyb\ntJv70PFsUWeQ2uhDn2M5YleElBvY1LaXJezIUJhcvmpoYDLfMikf4NatF8PNTZLh\nqsRNr4t/MVi0N4ADvkdRKnsvR3Sxy1TGJAaaQqNOs5Lg8CaRA6uRqm7Ffmz4BOUS\noTFi5U+ql9iIOV1vNreKDHJencCEwkvT7nMONEqes0Q8UlSgxVb4uNCvEbX5/SvU\nMjNqfUc5TZLuysBpzbJO6uh2A3ugyz/1z/FRLQl96wKCAQEAt1pzNuuG1Cp62UYa\nxe+8xW3iAlgXx9j9IYDcbyZqNYRbtZT+935bAu8SZu0GCNAzxbyWoI4vFDT0x7Da\n2tQ8iu1+zdjMhNmR+UnYbJ1XHGqbSPJAF8m1t9/+svt4h8mQTjr8bfcGv0MMEggO\n+ZZv+OfZQAboaur87kJv2z9xAAbfLGkXqJWtL0pIrcqbHoXKkSLRMNqUW1th+jdf\n8sQR+oi/nE9CoYpMGisrt4qHbdamR3eiunurGK7GeBLGJIb/zBG84kcEaZkVkbJb\nHRXcMHOi8uuqvWx79YASAkGCfNc6pvEcLgbbl7xup3vmMPu3Dt7clbNb7/u4T12T\nPB1csQKCAQEAsazmqFPObsV4AN3NUerk8RvtO2t3zSadTIBY4dQTCz1cxrFKlfkI\nNhdd8lAbnGdKYTs9wb6vIVaH4jGGHY0GJ6xJ4ZaGIKl8mbgAIS/9X9c1C/Val9Sl\nNLY+qjH1TuO7+Rynd2eO/rFzrERBMQKedpIdyfJrtW80Ve8gxi4PURaJzEtA7F9h\nsgR5eC5QybyOSfOGut+jHtWxm/hNxODgDQKE/h8K/vuaYrA1j7rwhlamut11gyHY\nBUK3n+LJvPg4SBlxPNiYL9Mra9HuRsNdyNLtFC/faQc+wmZzr+WriXTWMJ3dIZlo\nkZMVfloYaJzbknXvYD0eEyGEdY4gW3fWDg==\n-----END PRIVATE KEY-----\n','-----BEGIN PUBLIC KEY-----\nMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBANCm6Jn8BHt5iX1j7dT884Y2+rof1IHF\nfqMA2F1ik0gOhmL84qJDKZPLBSNF5J+Yn3xP7U1N0/f9cBfu8ZTCAWMCAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIBVAIBADANBgkqhkiG9w0BAQEFAASCAT4wggE6AgEAAkEA0KbomfwEe3mJfWPt\n1Pzzhjb6uh/UgcV+owDYXWKTSA6GYvziokMpk8sFI0Xkn5iffE/tTU3T9/1wF+7x\nlMIBYwIDAQABAkAsQCm2do9QzH7PPAE1mYvgHArirFt6RjNMSKKac4x+zEtvjMRK\nZSiQfJybSfUrDKy1B1uC5Bm+K7f9Wx+xuh5BAiEA+xrz3SrQtWgYQ1Bf8fPXrD92\nNLkjbxBuAKaipUWmMUMCIQDUuBvPrmsWTDQuzvb1UrPlVk3EQGet91FvdalBe0xd\nYQIgeKlm7awZRlKS9iW1NQq7ZGXKY2Njh4cZlO590XU6ewkCIGzFA3uLfTh2mMxC\niebhdhlTqwopwJok92Ad8wEHsgGhAiEAhJeRwJy9lSwiqqqoQPbIeSdN9f76bwEP\nP54D1sDdkqg=\n-----END PRIVATE KEY-----\n',1,0,0,0,0,0,10,65535,0,0,0,NULL,NULL,10,0,0,0,'0001-01-01 00:00:00','0001-01-01 00:00:00',6,NULL,NULL,NULL,NULL,NULL);
 /*!40000 ALTER TABLE `user` ENABLE KEYS */;
 UNLOCK TABLES;
 
+--
+-- Table structure for table `user-contact`
+--
+
+DROP TABLE IF EXISTS `user-contact`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `user-contact` (
+  `cid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Contact id of the linked public contact',
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'User id',
+  `blocked` tinyint(1) DEFAULT NULL COMMENT 'Contact is completely blocked for this user',
+  `ignored` tinyint(1) DEFAULT NULL COMMENT 'Posts from this contact are ignored',
+  `collapsed` tinyint(1) DEFAULT NULL COMMENT 'Posts from this contact are collapsed',
+  PRIMARY KEY (`uid`,`cid`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='User specific public contact data';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `user-contact`
+--
+
+LOCK TABLES `user-contact` WRITE;
+/*!40000 ALTER TABLE `user-contact` DISABLE KEYS */;
+/*!40000 ALTER TABLE `user-contact` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `user-item`
+--
+
+DROP TABLE IF EXISTS `user-item`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `user-item` (
+  `iid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Item id',
+  `uid` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'User id',
+  `hidden` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Marker to hide an item from the user',
+  `ignored` tinyint(1) DEFAULT NULL COMMENT 'Ignore this thread if set',
+  PRIMARY KEY (`uid`,`iid`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='User specific item data';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `user-item`
+--
+
+LOCK TABLES `user-item` WRITE;
+/*!40000 ALTER TABLE `user-item` DISABLE KEYS */;
+/*!40000 ALTER TABLE `user-item` ENABLE KEYS */;
+UNLOCK TABLES;
+
 --
 -- Table structure for table `userd`
 --
@@ -1863,11 +2093,11 @@ DROP TABLE IF EXISTS `userd`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `userd` (
-  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'sequential ID',
   `username` varchar(255) NOT NULL,
   PRIMARY KEY (`id`),
   KEY `username` (`username`(32))
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Deleted usernames';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -1879,6 +2109,29 @@ LOCK TABLES `userd` WRITE;
 /*!40000 ALTER TABLE `userd` ENABLE KEYS */;
 UNLOCK TABLES;
 
+--
+-- Table structure for table `worker-ipc`
+--
+
+DROP TABLE IF EXISTS `worker-ipc`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `worker-ipc` (
+  `key` int(11) NOT NULL,
+  `jobs` tinyint(1) DEFAULT NULL COMMENT 'Flag for outstanding jobs',
+  PRIMARY KEY (`key`)
+) ENGINE=MEMORY DEFAULT CHARSET=utf8mb4 COMMENT='Inter process communication between the frontend and the worker';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `worker-ipc`
+--
+
+LOCK TABLES `worker-ipc` WRITE;
+/*!40000 ALTER TABLE `worker-ipc` DISABLE KEYS */;
+/*!40000 ALTER TABLE `worker-ipc` ENABLE KEYS */;
+UNLOCK TABLES;
+
 --
 -- Table structure for table `workerqueue`
 --
@@ -1887,19 +2140,24 @@ DROP TABLE IF EXISTS `workerqueue`;
 /*!40101 SET @saved_cs_client     = @@character_set_client */;
 /*!40101 SET character_set_client = utf8 */;
 CREATE TABLE `workerqueue` (
-  `id` int(11) NOT NULL AUTO_INCREMENT,
-  `parameter` text,
-  `priority` tinyint(3) unsigned NOT NULL DEFAULT '0',
-  `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  `pid` int(11) NOT NULL DEFAULT '0',
-  `executed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
-  `done` tinyint(1) NOT NULL DEFAULT '0',
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Auto incremented worker task id',
+  `parameter` mediumblob COMMENT 'Task command',
+  `priority` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Task priority',
+  `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Creation date',
+  `pid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Process id of the worker',
+  `executed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Execution date',
+  `next_try` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Next retrial date',
+  `retrial` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Retrial counter',
+  `done` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Marked 1 when the task was done - will be deleted later',
   PRIMARY KEY (`id`),
   KEY `pid` (`pid`),
   KEY `parameter` (`parameter`(64)),
-  KEY `priority_created` (`priority`,`created`),
-  KEY `executed` (`executed`)
-) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8mb4;
+  KEY `priority_created_next_try` (`priority`,`created`,`next_try`),
+  KEY `done_priority_executed_next_try` (`done`,`priority`,`executed`,`next_try`),
+  KEY `done_executed_next_try` (`done`,`executed`,`next_try`),
+  KEY `done_priority_next_try` (`done`,`priority`,`next_try`),
+  KEY `done_next_try` (`done`,`next_try`)
+) ENGINE=InnoDB AUTO_INCREMENT=224 DEFAULT CHARSET=utf8mb4 COMMENT='Background tasks queue entries';
 /*!40101 SET character_set_client = @saved_cs_client */;
 
 --
@@ -1908,7 +2166,7 @@ CREATE TABLE `workerqueue` (
 
 LOCK TABLES `workerqueue` WRITE;
 /*!40000 ALTER TABLE `workerqueue` DISABLE KEYS */;
-INSERT INTO `workerqueue` VALUES (1,'[\"include\\/profile_update.php\",2]',40,'2017-09-07 09:02:27',1811,'2017-09-07 09:02:27',1),(2,'[\"include\\/gprobe.php\",\"http:\\/\\/friendica.local\\/profile\\/friendica1\"]',40,'2017-09-07 09:02:27',1811,'2017-09-07 09:02:27',1),(3,'[\"include\\/discover_poco.php\",\"poco_load\",0,0,1,\"http:\\/\\/friendica.local\\/poco\\/friendica1\"]',40,'2017-09-07 09:02:28',1811,'2017-09-07 09:02:28',1),(4,'[\"include\\/profile_update.php\",3]',40,'2017-09-07 09:06:02',1864,'2017-09-07 09:06:02',1),(5,'[\"include\\/gprobe.php\",\"http:\\/\\/friendica.local\\/profile\\/friendica2\"]',40,'2017-09-07 09:06:02',1864,'2017-09-07 09:06:02',1),(6,'[\"include\\/discover_poco.php\",\"poco_load\",0,0,2,\"http:\\/\\/friendica.local\\/poco\\/friendica2\"]',40,'2017-09-07 09:06:02',1864,'2017-09-07 09:06:02',1),(7,'[\"include\\/profile_update.php\",4]',40,'2017-09-07 09:09:50',1960,'2017-09-07 09:09:50',1),(8,'[\"include\\/gprobe.php\",\"http:\\/\\/friendica.local\\/profile\\/friendica3\"]',40,'2017-09-07 09:09:50',1960,'2017-09-07 09:09:50',1),(9,'[\"include\\/discover_poco.php\",\"poco_load\",0,0,3,\"http:\\/\\/friendica.local\\/poco\\/friendica3\"]',40,'2017-09-07 09:09:50',1960,'2017-09-07 09:09:50',1),(10,'[\"include\\/profile_update.php\",5]',40,'2017-09-07 09:11:41',1977,'2017-09-07 09:11:41',1),(11,'[\"include\\/gprobe.php\",\"http:\\/\\/friendica.local\\/profile\\/friendica4\"]',40,'2017-09-07 09:11:41',1977,'2017-09-07 09:11:41',1),(12,'[\"include\\/discover_poco.php\",\"poco_load\",0,0,4,\"http:\\/\\/friendica.local\\/poco\\/friendica4\"]',40,'2017-09-07 09:11:41',1977,'2017-09-07 09:11:41',1),(13,'[\"include\\/profile_update.php\",6]',40,'2017-09-07 09:13:25',1999,'2017-09-07 09:13:25',1),(14,'[\"include\\/gprobe.php\",\"http:\\/\\/friendica.local\\/profile\\/friendica5\"]',40,'2017-09-07 09:13:25',1999,'2017-09-07 09:13:25',1),(15,'[\"include\\/discover_poco.php\",\"poco_load\",0,0,5,\"http:\\/\\/friendica.local\\/poco\\/friendica5\"]',40,'2017-09-07 09:13:25',1999,'2017-09-07 09:13:25',1),(16,'[\"include\\/create_shadowentry.php\",\"1\"]',20,'2017-09-07 09:16:08',2016,'2017-09-07 09:16:08',1),(17,'[\"include\\/notifier.php\",\"wall-new\",\"1\"]',20,'2017-09-07 09:16:08',2016,'2017-09-07 09:16:08',1),(18,'[\"include\\/delivery.php\",\"wall-new\",1,13]',20,'2017-09-07 09:16:08',2016,'2017-09-07 09:16:08',1),(19,'[\"include\\/delivery.php\",\"wall-new\",1,17]',20,'2017-09-07 09:16:08',2016,'2017-09-07 09:16:08',1),(20,'[\"include\\/pubsubpublish.php\"]',20,'2017-09-07 09:16:08',2016,'2017-09-07 09:16:08',1),(21,'[\"include\\/create_shadowentry.php\",\"5\"]',20,'2017-09-07 09:16:41',2025,'2017-09-07 09:16:42',1),(22,'[\"include\\/notifier.php\",\"wall-new\",\"5\"]',20,'2017-09-07 09:16:41',2025,'2017-09-07 09:16:42',1),(23,'[\"include\\/delivery.php\",\"wall-new\",5,7]',20,'2017-09-07 09:16:41',2025,'2017-09-07 09:16:42',1),(24,'[\"include\\/delivery.php\",\"wall-new\",5,16]',20,'2017-09-07 09:16:41',2025,'2017-09-07 09:16:42',1),(25,'[\"include\\/pubsubpublish.php\"]',20,'2017-09-07 09:16:41',2025,'2017-09-07 09:16:42',1),(26,'[\"include\\/create_shadowentry.php\",\"9\"]',20,'2017-09-07 09:17:49',2038,'2017-09-07 09:17:49',1),(27,'[\"include\\/notifier.php\",\"wall-new\",\"9\"]',20,'2017-09-07 09:17:49',2038,'2017-09-07 09:17:49',1),(28,'[\"include\\/delivery.php\",\"wall-new\",9,10]',20,'2017-09-07 09:17:49',2038,'2017-09-07 09:17:49',1),(29,'[\"include\\/delivery.php\",\"wall-new\",9,14]',20,'2017-09-07 09:17:49',2038,'2017-09-07 09:17:49',1),(30,'[\"include\\/create_shadowentry.php\",\"12\"]',20,'2017-09-07 09:18:24',2043,'2017-09-07 09:18:24',1),(31,'[\"include\\/notifier.php\",\"comment-new\",\"12\"]',20,'2017-09-07 09:18:24',2043,'2017-09-07 09:18:24',1),(32,'[\"include\\/delivery.php\",\"comment-new\",12,9]',20,'2017-09-07 09:18:24',2043,'2017-09-07 09:18:24',1),(33,'[\"include\\/notifier.php\",\"comment-import\",\"13\"]',20,'2017-09-07 09:18:24',2043,'2017-09-07 09:18:24',1),(34,'[\"include\\/delivery.php\",\"comment-import\",13,10]',20,'2017-09-07 09:18:24',2043,'2017-09-07 09:18:24',1),(35,'[\"include\\/delivery.php\",\"comment-import\",13,14]',20,'2017-09-07 09:18:24',2043,'2017-09-07 09:18:24',1),(36,'[\"include\\/create_shadowentry.php\",\"15\"]',20,'2017-09-07 09:19:07',2048,'2017-09-07 09:19:08',1),(37,'[\"include\\/notifier.php\",\"wall-new\",\"15\"]',20,'2017-09-07 09:19:07',2048,'2017-09-07 09:19:08',1),(38,'[\"include\\/delivery.php\",\"wall-new\",15,8]',20,'2017-09-07 09:19:07',2048,'2017-09-07 09:19:08',1),(39,'[\"include\\/delivery.php\",\"wall-new\",15,12]',20,'2017-09-07 09:19:07',2048,'2017-09-07 09:19:08',1),(40,'[\"include\\/create_shadowentry.php\",\"18\"]',20,'2017-09-07 09:19:28',2051,'2017-09-07 09:19:28',1),(41,'[\"include\\/notifier.php\",\"comment-new\",\"18\"]',20,'2017-09-07 09:19:28',2051,'2017-09-07 09:19:28',1),(42,'[\"include\\/delivery.php\",\"comment-new\",18,7]',20,'2017-09-07 09:19:28',2051,'2017-09-07 09:19:28',1),(43,'[\"include\\/notifier.php\",\"comment-import\",\"19\"]',20,'2017-09-07 09:19:28',2051,'2017-09-07 09:19:28',1),(44,'[\"include\\/delivery.php\",\"comment-import\",19,8]',20,'2017-09-07 09:19:28',2051,'2017-09-07 09:19:28',1),(45,'[\"include\\/delivery.php\",\"comment-import\",19,12]',20,'2017-09-07 09:19:28',2051,'2017-09-07 09:19:28',1);
+INSERT INTO `workerqueue` VALUES (91,_binary '[\"Queue\"]',50,'2018-11-17 13:50:01',2276,'2018-11-17 13:50:03','0001-01-01 00:00:00',0,1),(93,_binary '[\"DiscoverPoCo\",\"checkcontact\"]',40,'2018-11-17 13:50:01',2274,'2018-11-17 13:50:02','0001-01-01 00:00:00',0,1),(95,_binary '[\"CronJobs\",\"post_update\"]',40,'2018-11-17 13:50:01',2274,'2018-11-17 13:50:02','0001-01-01 00:00:00',0,1),(96,_binary '[\"CronJobs\",\"clear_cache\"]',40,'2018-11-17 13:50:01',2274,'2018-11-17 13:50:02','0001-01-01 00:00:00',0,1),(97,_binary '[\"CronJobs\",\"repair_diaspora\"]',40,'2018-11-17 13:50:01',2274,'2018-11-17 13:50:02','0001-01-01 00:00:00',0,1),(98,_binary '[\"CronJobs\",\"repair_database\"]',40,'2018-11-17 13:50:01',2274,'2018-11-17 13:50:02','0001-01-01 00:00:00',0,1),(99,_binary '[\"OnePoll\",15]',40,'2018-11-17 13:50:01',2278,'2018-11-17 13:50:03','0001-01-01 00:00:00',0,1),(100,_binary '[\"OnePoll\",17]',40,'2018-11-17 13:50:01',2280,'2018-11-17 13:50:03','0001-01-01 00:00:00',0,1),(101,_binary '[\"OnePoll\",19]',40,'2018-11-17 13:50:01',2276,'2018-11-17 13:50:03','0001-01-01 00:00:00',0,1),(102,_binary '[\"OnePoll\",21]',40,'2018-11-17 13:50:01',2274,'2018-11-17 13:50:04','0001-01-01 00:00:00',0,1),(103,_binary '[\"OnePoll\",14]',40,'2018-11-17 13:50:01',2276,'2018-11-17 13:50:05','0001-01-01 00:00:00',0,1),(104,_binary '[\"OnePoll\",23]',40,'2018-11-17 13:50:01',2278,'2018-11-17 13:50:05','0001-01-01 00:00:00',0,1),(105,_binary '[\"OnePoll\",16]',40,'2018-11-17 13:50:01',2280,'2018-11-17 13:50:05','0001-01-01 00:00:00',0,1),(106,_binary '[\"OnePoll\",22]',40,'2018-11-17 13:50:01',2274,'2018-11-17 13:50:05','0001-01-01 00:00:00',0,1),(107,_binary '[\"OnePoll\",18]',40,'2018-11-17 13:50:01',2278,'2018-11-17 13:50:05','0001-01-01 00:00:00',0,1),(108,_binary '[\"OnePoll\",25]',40,'2018-11-17 13:50:01',2276,'2018-11-17 13:50:05','0001-01-01 00:00:00',0,1),(109,_binary '[\"OnePoll\",20]',40,'2018-11-17 13:50:01',2280,'2018-11-17 13:50:05','0001-01-01 00:00:00',0,1),(110,_binary '[\"OnePoll\",24]',40,'2018-11-17 13:50:01',2274,'2018-11-17 13:50:05','0001-01-01 00:00:00',0,1),(111,_binary '[\"Notifier\",\"wall-new\",\"1\"]',20,'2018-11-17 13:51:35',2355,'2018-11-17 14:00:01','0001-01-01 00:00:00',0,1),(112,_binary '[\"CreateShadowEntry\",\"1\"]',20,'2018-11-17 13:51:35',2355,'2018-11-17 14:00:01','0001-01-01 00:00:00',0,1),(113,_binary '[\"Notifier\",\"wall-new\",\"3\"]',20,'2018-11-17 13:51:58',2357,'2018-11-17 14:00:02','0001-01-01 00:00:00',0,1),(114,_binary '[\"CreateShadowEntry\",\"3\"]',20,'2018-11-17 13:51:58',2355,'2018-11-17 14:00:02','0001-01-01 00:00:00',0,1),(115,_binary '[\"Notifier\",\"comment-new\",\"4\"]',20,'2018-11-17 13:53:37',2355,'2018-11-17 14:00:02','0001-01-01 00:00:00',0,1),(116,_binary '[\"CreateShadowEntry\",\"4\"]',20,'2018-11-17 13:53:37',2359,'2018-11-17 14:00:02','0001-01-01 00:00:00',0,1),(117,_binary '[\"Notifier\",\"comment-new\",\"5\"]',20,'2018-11-17 13:54:22',2359,'2018-11-17 14:00:02','0001-01-01 00:00:00',0,1),(118,_binary '[\"CreateShadowEntry\",\"5\"]',20,'2018-11-17 13:54:22',2373,'2018-11-17 14:00:02','0001-01-01 00:00:00',0,1),(119,_binary '[\"SpoolPost\"]',20,'2018-11-17 14:00:01',2357,'2018-11-17 14:00:03','0001-01-01 00:00:00',0,1),(120,_binary '[\"Cron\"]',30,'2018-11-17 14:00:01',2357,'2018-11-17 14:00:01','0001-01-01 00:00:00',0,1),(121,_binary '[\"Delivery\",\"wall-new\",\"1\",15]',20,'2018-11-17 13:51:35',2355,'2018-11-17 14:00:01','0001-01-01 00:00:00',0,1),(122,_binary '[\"Delivery\",\"wall-new\",\"1\",17]',20,'2018-11-17 13:51:35',2361,'2018-11-17 14:00:01','0001-01-01 00:00:00',0,1),(123,_binary '[\"Delivery\",\"wall-new\",\"1\",19]',20,'2018-11-17 13:51:35',2359,'2018-11-17 14:00:02','0001-01-01 00:00:00',0,1),(124,_binary '[\"Delivery\",\"wall-new\",\"1\",21]',20,'2018-11-17 13:51:35',2355,'2018-11-17 14:00:02','0001-01-01 00:00:00',0,1),(125,_binary '[\"Queue\"]',50,'2018-11-17 14:00:02',2357,'2018-11-17 14:00:02','0001-01-01 00:00:00',0,1),(126,_binary '[\"DiscoverPoCo\"]',40,'2018-11-17 14:00:02',2357,'2018-11-17 14:00:02','0001-01-01 00:00:00',0,1),(127,_binary '[\"DiscoverPoCo\",\"checkcontact\"]',40,'2018-11-17 14:00:02',2357,'2018-11-17 14:00:02','0001-01-01 00:00:00',0,1),(128,_binary '[\"CronJobs\",\"expire_and_remove_users\"]',30,'2018-11-17 14:00:02',2357,'2018-11-17 14:00:02','0001-01-01 00:00:00',0,1),(129,_binary '[\"CronJobs\",\"post_update\"]',40,'2018-11-17 14:00:02',2357,'2018-11-17 14:00:02','0001-01-01 00:00:00',0,1),(130,_binary '[\"CronJobs\",\"clear_cache\"]',40,'2018-11-17 14:00:02',2357,'2018-11-17 14:00:02','0001-01-01 00:00:00',0,1),(131,_binary '[\"CronJobs\",\"repair_diaspora\"]',40,'2018-11-17 14:00:02',2357,'2018-11-17 14:00:02','0001-01-01 00:00:00',0,1),(132,_binary '[\"CronJobs\",\"repair_database\"]',40,'2018-11-17 14:00:02',2357,'2018-11-17 14:00:02','0001-01-01 00:00:00',0,1),(133,_binary '[\"Delivery\",\"wall-new\",\"3\",15]',20,'2018-11-17 13:51:58',2357,'2018-11-17 14:00:02','0001-01-01 00:00:00',0,1),(134,_binary '[\"Delivery\",\"wall-new\",\"3\",19]',20,'2018-11-17 13:51:58',2361,'2018-11-17 14:00:02','0001-01-01 00:00:00',0,1),(135,_binary '[\"APDelivery\",\"comment-new\",\"4\",\"http:\\/\\/192.168.22.10\\/inbox\",3]',20,'2018-11-17 13:53:37',2355,'2018-11-17 14:00:04','0001-01-01 00:00:00',0,1),(136,_binary '[\"Delivery\",\"comment-new\",\"4\",10]',20,'2018-11-17 13:53:37',2359,'2018-11-17 14:00:04','0001-01-01 00:00:00',0,1),(137,_binary '[\"APDelivery\",\"comment-new\",\"5\",\"http:\\/\\/192.168.22.10\\/inbox\",5]',20,'2018-11-17 13:54:22',2359,'2018-11-17 14:00:04','0001-01-01 00:00:00',0,1),(138,_binary '[\"Delivery\",\"comment-new\",\"5\",10]',20,'2018-11-17 13:54:22',2377,'2018-11-17 14:00:04','0001-01-01 00:00:00',0,1),(139,_binary '[\"Notifier\",\"comment-import\",\"12\"]',20,'2018-11-17 14:00:04',2377,'2018-11-17 14:00:04','0001-01-01 00:00:00',0,1),(140,_binary '[\"Notifier\",\"comment-import\",\"14\"]',20,'2018-11-17 14:00:04',2377,'2018-11-17 14:00:04','0001-01-01 00:00:00',0,1),(141,_binary '[\"Delivery\",\"comment-import\",\"12\",15]',20,'2018-11-17 14:00:04',2377,'2018-11-17 14:00:04','0001-01-01 00:00:00',0,1),(142,_binary '[\"Delivery\",\"comment-import\",\"12\",17]',20,'2018-11-17 14:00:04',2377,'2018-11-17 14:00:04','0001-01-01 00:00:00',0,1),(143,_binary '[\"Delivery\",\"comment-import\",\"12\",19]',20,'2018-11-17 14:00:04',2355,'2018-11-17 14:00:04','0001-01-01 00:00:00',0,1),(144,_binary '[\"Delivery\",\"comment-import\",\"12\",21]',20,'2018-11-17 14:00:04',2377,'2018-11-17 14:00:04','0001-01-01 00:00:00',0,1),(145,_binary '[\"Delivery\",\"comment-import\",\"14\",15]',20,'2018-11-17 14:00:04',2359,'2018-11-17 14:00:04','0001-01-01 00:00:00',0,1),(146,_binary '[\"Delivery\",\"comment-import\",\"14\",17]',20,'2018-11-17 14:00:04',2355,'2018-11-17 14:00:04','0001-01-01 00:00:00',0,1),(147,_binary '[\"Delivery\",\"comment-import\",\"14\",19]',20,'2018-11-17 14:00:04',2359,'2018-11-17 14:00:04','0001-01-01 00:00:00',0,1),(148,_binary '[\"Delivery\",\"comment-import\",\"14\",21]',20,'2018-11-17 14:00:04',2377,'2018-11-17 14:00:04','0001-01-01 00:00:00',0,1),(149,_binary '[\"SpoolPost\"]',20,'2018-11-17 14:01:40',2393,'2018-11-17 14:01:40','0001-01-01 00:00:00',0,1),(150,_binary '[\"Cron\"]',30,'2018-11-17 14:01:40',2393,'2018-11-17 14:01:40','0001-01-01 00:00:00',0,1),(151,_binary '[\"Notifier\",\"activity-new\",\"22\"]',20,'2018-11-17 14:02:02',2410,'2018-11-17 14:03:06','0001-01-01 00:00:00',0,1),(152,_binary '[\"Notifier\",\"comment-new\",\"24\"]',20,'2018-11-17 14:02:15',2414,'2018-11-17 14:03:07','0001-01-01 00:00:00',0,1),(153,_binary '[\"CreateShadowEntry\",\"24\"]',20,'2018-11-17 14:02:15',2410,'2018-11-17 14:03:07','0001-01-01 00:00:00',0,1),(154,_binary '[\"Notifier\",\"wall-new\",\"26\"]',20,'2018-11-17 14:02:58',2412,'2018-11-17 14:03:08','0001-01-01 00:00:00',0,1),(155,_binary '[\"CreateShadowEntry\",\"26\"]',20,'2018-11-17 14:02:58',2410,'2018-11-17 14:03:08','0001-01-01 00:00:00',0,1),(156,_binary '[\"SpoolPost\"]',20,'2018-11-17 14:03:06',2416,'2018-11-17 14:03:08','0001-01-01 00:00:00',0,1),(157,_binary '[\"Cron\"]',30,'2018-11-17 14:03:06',2414,'2018-11-17 14:03:07','0001-01-01 00:00:00',0,1),(158,_binary '[\"APDelivery\",\"activity-new\",\"22\",\"http:\\/\\/192.168.22.10\\/inbox\",2]',20,'2018-11-17 14:02:02',2410,'2018-11-17 14:03:07','0001-01-01 00:00:00',0,1),(159,_binary '[\"Delivery\",\"activity-new\",\"22\",15]',20,'2018-11-17 14:02:02',2414,'2018-11-17 14:03:07','0001-01-01 00:00:00',0,1),(160,_binary '[\"Delivery\",\"activity-new\",\"22\",17]',20,'2018-11-17 14:02:02',2412,'2018-11-17 14:03:07','0001-01-01 00:00:00',0,1),(161,_binary '[\"Delivery\",\"activity-new\",\"22\",19]',20,'2018-11-17 14:02:02',2416,'2018-11-17 14:03:07','0001-01-01 00:00:00',0,1),(162,_binary '[\"Delivery\",\"activity-new\",\"22\",21]',20,'2018-11-17 14:02:02',2410,'2018-11-17 14:03:07','0001-01-01 00:00:00',0,1),(163,_binary '[\"Delivery\",\"wall-new\",\"26\",18]',20,'2018-11-17 14:02:58',2412,'2018-11-17 14:03:08','0001-01-01 00:00:00',0,1),(164,_binary '[\"Delivery\",\"wall-new\",\"26\",25]',20,'2018-11-17 14:02:58',2428,'2018-11-17 14:03:08','0001-01-01 00:00:00',0,1),(165,_binary '[\"APDelivery\",\"comment-new\",\"24\",\"http:\\/\\/192.168.22.10\\/inbox\",2]',20,'2018-11-17 14:02:15',2414,'2018-11-17 14:03:08','0001-01-01 00:00:00',0,1),(166,_binary '[\"Delivery\",\"comment-new\",\"24\",15]',20,'2018-11-17 14:02:15',2412,'2018-11-17 14:03:08','0001-01-01 00:00:00',0,1),(167,_binary '[\"Delivery\",\"comment-new\",\"24\",17]',20,'2018-11-17 14:02:15',2412,'2018-11-17 14:03:08','0001-01-01 00:00:00',0,1),(168,_binary '[\"Delivery\",\"comment-new\",\"24\",19]',20,'2018-11-17 14:02:15',2414,'2018-11-17 14:03:08','0001-01-01 00:00:00',0,1),(169,_binary '[\"Delivery\",\"comment-new\",\"24\",21]',20,'2018-11-17 14:02:15',2412,'2018-11-17 14:03:08','0001-01-01 00:00:00',0,1),(170,_binary '[\"SpoolPost\"]',20,'2018-11-17 14:10:01',2477,'2018-11-17 14:10:01','0001-01-01 00:00:00',0,1),(171,_binary '[\"Cron\"]',30,'2018-11-17 14:10:01',2477,'2018-11-17 14:10:01','0001-01-01 00:00:00',0,1),(172,_binary '[\"SpoolPost\"]',20,'2018-11-17 14:20:01',2490,'2018-11-17 14:20:01','0001-01-01 00:00:00',0,1),(173,_binary '[\"Cron\"]',30,'2018-11-17 14:20:01',2490,'2018-11-17 14:20:01','0001-01-01 00:00:00',0,1),(174,_binary '[\"Queue\"]',50,'2018-11-17 14:20:01',2490,'2018-11-17 14:20:02','0001-01-01 00:00:00',0,1),(175,_binary '[\"DiscoverPoCo\"]',40,'2018-11-17 14:20:01',2490,'2018-11-17 14:20:01','0001-01-01 00:00:00',0,1),(176,_binary '[\"DiscoverPoCo\",\"checkcontact\"]',40,'2018-11-17 14:20:01',2490,'2018-11-17 14:20:01','0001-01-01 00:00:00',0,1),(177,_binary '[\"CronJobs\",\"expire_and_remove_users\"]',30,'2018-11-17 14:20:01',2490,'2018-11-17 14:20:01','0001-01-01 00:00:00',0,1),(178,_binary '[\"CronJobs\",\"post_update\"]',40,'2018-11-17 14:20:01',2490,'2018-11-17 14:20:01','0001-01-01 00:00:00',0,1),(179,_binary '[\"CronJobs\",\"clear_cache\"]',40,'2018-11-17 14:20:01',2490,'2018-11-17 14:20:01','0001-01-01 00:00:00',0,1),(180,_binary '[\"CronJobs\",\"repair_diaspora\"]',40,'2018-11-17 14:20:01',2490,'2018-11-17 14:20:01','0001-01-01 00:00:00',0,1),(181,_binary '[\"CronJobs\",\"repair_database\"]',40,'2018-11-17 14:20:01',2490,'2018-11-17 14:20:01','0001-01-01 00:00:00',0,1),(182,_binary '[\"SpoolPost\"]',20,'2018-11-17 14:30:01',2513,'2018-11-17 14:30:01','0001-01-01 00:00:00',0,1),(183,_binary '[\"Cron\"]',30,'2018-11-17 14:30:01',2513,'2018-11-17 14:30:01','0001-01-01 00:00:00',0,1),(184,_binary '[\"Queue\"]',50,'2018-11-17 14:30:01',2513,'2018-11-17 14:30:01','0001-01-01 00:00:00',0,1),(185,_binary '[\"DiscoverPoCo\"]',40,'2018-11-17 14:30:01',2513,'2018-11-17 14:30:01','0001-01-01 00:00:00',0,1),(186,_binary '[\"DiscoverPoCo\",\"checkcontact\"]',40,'2018-11-17 14:30:01',2513,'2018-11-17 14:30:01','0001-01-01 00:00:00',0,1),(187,_binary '[\"CronJobs\",\"expire_and_remove_users\"]',30,'2018-11-17 14:30:01',2513,'2018-11-17 14:30:01','0001-01-01 00:00:00',0,1),(188,_binary '[\"CronJobs\",\"post_update\"]',40,'2018-11-17 14:30:01',2513,'2018-11-17 14:30:01','0001-01-01 00:00:00',0,1),(189,_binary '[\"CronJobs\",\"clear_cache\"]',40,'2018-11-17 14:30:01',2513,'2018-11-17 14:30:01','0001-01-01 00:00:00',0,1),(190,_binary '[\"CronJobs\",\"repair_diaspora\"]',40,'2018-11-17 14:30:01',2513,'2018-11-17 14:30:01','0001-01-01 00:00:00',0,1),(191,_binary '[\"CronJobs\",\"repair_database\"]',40,'2018-11-17 14:30:01',2513,'2018-11-17 14:30:01','0001-01-01 00:00:00',0,1),(192,_binary '[\"SpoolPost\"]',20,'2018-11-17 14:40:01',2578,'2018-11-17 14:40:01','0001-01-01 00:00:00',0,1),(193,_binary '[\"Cron\"]',30,'2018-11-17 14:40:01',2578,'2018-11-17 14:40:01','0001-01-01 00:00:00',0,1),(194,_binary '[\"Queue\"]',50,'2018-11-17 14:40:01',2578,'2018-11-17 14:40:01','0001-01-01 00:00:00',0,1),(195,_binary '[\"DiscoverPoCo\"]',40,'2018-11-17 14:40:01',2578,'2018-11-17 14:40:01','0001-01-01 00:00:00',0,1),(196,_binary '[\"DiscoverPoCo\",\"checkcontact\"]',40,'2018-11-17 14:40:01',2578,'2018-11-17 14:40:01','0001-01-01 00:00:00',0,1),(197,_binary '[\"CronJobs\",\"expire_and_remove_users\"]',30,'2018-11-17 14:40:01',2578,'2018-11-17 14:40:01','0001-01-01 00:00:00',0,1),(198,_binary '[\"CronJobs\",\"post_update\"]',40,'2018-11-17 14:40:01',2578,'2018-11-17 14:40:01','0001-01-01 00:00:00',0,1),(199,_binary '[\"CronJobs\",\"clear_cache\"]',40,'2018-11-17 14:40:01',2578,'2018-11-17 14:40:01','0001-01-01 00:00:00',0,1),(200,_binary '[\"CronJobs\",\"repair_diaspora\"]',40,'2018-11-17 14:40:01',2578,'2018-11-17 14:40:01','0001-01-01 00:00:00',0,1),(201,_binary '[\"CronJobs\",\"repair_database\"]',40,'2018-11-17 14:40:01',2578,'2018-11-17 14:40:01','0001-01-01 00:00:00',0,1),(202,_binary '[\"SpoolPost\"]',20,'2018-11-17 14:50:02',2601,'2018-11-17 14:50:02','0001-01-01 00:00:00',0,1),(203,_binary '[\"Cron\"]',30,'2018-11-17 14:50:02',2601,'2018-11-17 14:50:02','0001-01-01 00:00:00',0,1),(204,_binary '[\"Queue\"]',50,'2018-11-17 14:50:02',2603,'2018-11-17 14:50:03','0001-01-01 00:00:00',0,1),(205,_binary '[\"DiscoverPoCo\"]',40,'2018-11-17 14:50:02',2601,'2018-11-17 14:50:02','0001-01-01 00:00:00',0,1),(206,_binary '[\"DiscoverPoCo\",\"checkcontact\"]',40,'2018-11-17 14:50:02',2601,'2018-11-17 14:50:02','0001-01-01 00:00:00',0,1),(207,_binary '[\"CronJobs\",\"expire_and_remove_users\"]',30,'2018-11-17 14:50:02',2601,'2018-11-17 14:50:02','0001-01-01 00:00:00',0,1),(208,_binary '[\"CronJobs\",\"post_update\"]',40,'2018-11-17 14:50:02',2601,'2018-11-17 14:50:02','0001-01-01 00:00:00',0,1),(209,_binary '[\"CronJobs\",\"clear_cache\"]',40,'2018-11-17 14:50:02',2601,'2018-11-17 14:50:02','0001-01-01 00:00:00',0,1),(210,_binary '[\"CronJobs\",\"repair_diaspora\"]',40,'2018-11-17 14:50:02',2605,'2018-11-17 14:50:03','0001-01-01 00:00:00',0,1),(211,_binary '[\"CronJobs\",\"repair_database\"]',40,'2018-11-17 14:50:02',2603,'2018-11-17 14:50:03','0001-01-01 00:00:00',0,1),(212,_binary '[\"SpoolPost\"]',20,'2018-11-17 15:00:02',2665,'2018-11-17 15:00:02','0001-01-01 00:00:00',0,1),(213,_binary '[\"Cron\"]',30,'2018-11-17 15:00:02',2665,'2018-11-17 15:00:02','0001-01-01 00:00:00',0,1),(214,_binary '[\"Queue\"]',50,'2018-11-17 15:00:02',2665,'2018-11-17 15:00:02','0001-01-01 00:00:00',0,1),(215,_binary '[\"DiscoverPoCo\"]',40,'2018-11-17 15:00:02',2665,'2018-11-17 15:00:02','0001-01-01 00:00:00',0,1),(216,_binary '[\"DiscoverPoCo\",\"checkcontact\"]',40,'2018-11-17 15:00:02',2665,'2018-11-17 15:00:02','0001-01-01 00:00:00',0,1),(217,_binary '[\"CronJobs\",\"expire_and_remove_users\"]',30,'2018-11-17 15:00:02',2665,'2018-11-17 15:00:02','0001-01-01 00:00:00',0,1),(218,_binary '[\"CronJobs\",\"post_update\"]',40,'2018-11-17 15:00:02',2665,'2018-11-17 15:00:02','0001-01-01 00:00:00',0,1),(219,_binary '[\"CronJobs\",\"clear_cache\"]',40,'2018-11-17 15:00:02',2665,'2018-11-17 15:00:02','0001-01-01 00:00:00',0,1),(220,_binary '[\"CronJobs\",\"repair_diaspora\"]',40,'2018-11-17 15:00:02',2665,'2018-11-17 15:00:02','0001-01-01 00:00:00',0,1),(221,_binary '[\"CronJobs\",\"repair_database\"]',40,'2018-11-17 15:00:02',2665,'2018-11-17 15:00:02','0001-01-01 00:00:00',0,1),(222,_binary '[\"SpoolPost\"]',20,'2018-11-17 15:10:01',2770,'2018-11-17 15:10:01','0001-01-01 00:00:00',0,1),(223,_binary '[\"Cron\"]',30,'2018-11-17 15:10:01',2770,'2018-11-17 15:10:01','0001-01-01 00:00:00',0,1);
 /*!40000 ALTER TABLE `workerqueue` ENABLE KEYS */;
 UNLOCK TABLES;
 /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
@@ -1921,4 +2179,4 @@ UNLOCK TABLES;
 /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
 /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
 
--- Dump completed on 2017-09-07 11:21:05
+-- Dump completed on 2018-11-17 15:19:01
index 5bfb2d65a2fdb7d153038f5acce84fd762c224af..f4d7c5f5a6c549b80f894bf3396821678455fb84 100644 (file)
@@ -1649,6 +1649,7 @@ function api_statuses_home_timeline($type)
        $data = ['status' => $ret];
        switch ($type) {
                case "atom":
+                       break;
                case "rss":
                        $data = api_rss_extra($a, $data, $user_info);
                        break;
@@ -1731,6 +1732,7 @@ function api_statuses_public_timeline($type)
        $data = ['status' => $ret];
        switch ($type) {
                case "atom":
+                       break;
                case "rss":
                        $data = api_rss_extra($a, $data, $user_info);
                        break;
@@ -1787,6 +1789,7 @@ function api_statuses_networkpublic_timeline($type)
        $data = ['status' => $ret];
        switch ($type) {
                case "atom":
+                       break;
                case "rss":
                        $data = api_rss_extra($a, $data, $user_info);
                        break;
@@ -2108,6 +2111,7 @@ function api_statuses_mentions($type)
        $data = ['status' => $ret];
        switch ($type) {
                case "atom":
+                       break;
                case "rss":
                        $data = api_rss_extra($a, $data, $user_info);
                        break;
@@ -2188,6 +2192,7 @@ function api_statuses_user_timeline($type)
        $data = ['status' => $ret];
        switch ($type) {
                case "atom":
+                       break;
                case "rss":
                        $data = api_rss_extra($a, $data, $user_info);
                        break;
@@ -2263,8 +2268,10 @@ function api_favorites_create_destroy($type)
        $data = ['status' => $ret];
        switch ($type) {
                case "atom":
+                       break;
                case "rss":
                        $data = api_rss_extra($a, $data, $user_info);
+                       break;
        }
 
        return api_format_data("status", $type, $data);
@@ -2330,8 +2337,10 @@ function api_favorites($type)
        $data = ['status' => $ret];
        switch ($type) {
                case "atom":
+                       break;
                case "rss":
                        $data = api_rss_extra($a, $data, $user_info);
+                       break;
        }
 
        return api_format_data("statuses", $type, $data);
@@ -2923,6 +2932,7 @@ function api_format_items($r, $user_info, $filter_user = false, $type = "json")
                        $retweeted_item = api_share_as_retweet($item);
                        if ($retweeted_item !== false) {
                                $retweeted_status = $status;
+                               $status['user'] = $status['friendica_owner'];
                                try {
                                        $retweeted_status["user"] = api_get_user($a, $retweeted_item["author-id"]);
                                } catch (BadRequestException $e) {
@@ -3144,6 +3154,7 @@ function api_lists_statuses($type)
        $data = ['status' => $items];
        switch ($type) {
                case "atom":
+                       break;
                case "rss":
                        $data = api_rss_extra($a, $data, $user_info);
                        break;
@@ -3540,8 +3551,10 @@ function api_direct_messages_new($type)
 
        switch ($type) {
                case "atom":
+                       break;
                case "rss":
                        $data = api_rss_extra($a, $data, $sender);
+                       break;
        }
 
        return api_format_data("direct-messages", $type, $data);
@@ -3806,8 +3819,10 @@ function api_direct_messages_box($type, $box, $verbose)
        $data = ['direct_message' => $ret];
        switch ($type) {
                case "atom":
+                       break;
                case "rss":
                        $data = api_rss_extra($a, $data, $user_info);
+                       break;
        }
 
        return api_format_data("direct-messages", $type, $data);
index adc5bf0133d2570afc71bae4246e394638788841..87f0a2d4e0e005fcba459cc2ab9408be6e2b1e45 100644 (file)
@@ -352,7 +352,7 @@ function drop_item($id, $return = '')
 
        // locate item to be deleted
 
-       $fields = ['id', 'uid', 'guid', 'contact-id', 'deleted'];
+       $fields = ['id', 'uid', 'guid', 'contact-id', 'deleted', 'gravity'];
        $item = Item::selectFirstForUser(local_user(), $fields, ['id' => $id]);
 
        if (!DBA::isResult($item)) {
@@ -407,6 +407,8 @@ function drop_item($id, $return = '')
                        $a->internalRedirect('display/' . $item['guid']);
                }
 
+               $is_comment = ($item['gravity'] == GRAVITY_COMMENT) ? true : false;
+
                // delete the item
                Item::deleteForUser(['id' => $item['id']], local_user());
 
@@ -415,7 +417,8 @@ function drop_item($id, $return = '')
                // removes update_* from return_url to ignore Ajax refresh
                $return_url = str_replace("update_", "", $return_url);
 
-               if (empty($return_url) || strpos($return_url, 'display') !== false) {
+               // if unknown location or top level post called from display
+               if (empty($return_url) || ((strpos($return_url, 'display') !== false) AND (!$is_comment))) {
                        $a->internalRedirect('network');
                        //NOTREACHED
                }
index 5adc8e9c47036b25b6cc5f859ca39cc9dbd74598..91b21ace5574eb6df1965a688c03b85a63afc8f8 100644 (file)
@@ -651,6 +651,29 @@ function admin_page_federation(App $a)
                                $v[$key] = ['total' => $v[$key]['total'], 'version' => L10n::t('unknown')];
                        }
                }
+
+               // Reformat and compact version numbers
+               if ($p == 'Pleroma') {
+                       $compacted = [];
+
+                       foreach ($v as $key => $value) {
+                               $version = $v[$key]['version'];
+                               $parts = explode(' ', trim($version));
+                               do {
+                                       $part = array_pop($parts);
+                               } while (!empty($parts) && ((strlen($part) >= 40) || (strlen($part) <= 3)));
+
+                               if (!empty($part)) {
+                                       $compacted[$part] += $v[$key]['total'];
+                               }
+                       }
+
+                       $v = [];
+                       foreach ($compacted as $version => $total) {
+                               $v[] = ['version' => $version, 'total' => $total];
+                       }
+               }
+
                // in the DB the Diaspora versions have the format x.x.x.x-xx the last
                // part (-xx) should be removed to clean up the versions from the "head
                // commit" information and combined into a single entry for x.x.x.x
index 9cd110917fb5161dfccbd57dd347b8836e862e27..ecca0adf7c3eade53825611dea2134120e9b8a18 100644 (file)
@@ -562,7 +562,11 @@ function dfrn_poll_content(App $a)
                                        break;
                                default:
                                        $appendix = (strstr($destination_url, '?') ? '&f=&redir=1' : '?f=&redir=1');
-                                       System::externalRedirect($destination_url . $appendix);
+                                       if (filter_var($url, FILTER_VALIDATE_URL)) {
+                                               System::externalRedirect($destination_url . $appendix);
+                                       } else {
+                                               $a->internalRedirect($destination_url . $appendix);
+                                       }
                                        break;
                        }
                        // NOTREACHED
index d3298b64db4a3201aff15fe498ae49dda59429c1..2609760e91df0fc50d86c1935699ec586a8a624a 100644 (file)
@@ -121,23 +121,23 @@ function dirfind_content(App $a, $prefix = "") {
 
                        /// @TODO These 2 SELECTs are not checked on validity with DBA::isResult()
                        $count = q("SELECT count(*) AS `total` FROM `gcontact`
-                                       WHERE NOT `hide` AND `network` IN ('%s', '%s', '%s') AND
+                                       WHERE NOT `hide` AND `network` IN ('%s', '%s', '%s', '%s') AND
                                                ((`last_contact` >= `last_failure`) OR (`updated` >= `last_failure`)) AND
                                                (`url` LIKE '%s' OR `name` LIKE '%s' OR `location` LIKE '%s' OR
                                                `addr` LIKE '%s' OR `about` LIKE '%s' OR `keywords` LIKE '%s') $extra_sql",
-                                       DBA::escape(Protocol::DFRN), DBA::escape($ostatus), DBA::escape($diaspora),
+                                       DBA::escape(Protocol::ACTIVITYPUB), DBA::escape(Protocol::DFRN), DBA::escape($ostatus), DBA::escape($diaspora),
                                        DBA::escape(Strings::escapeHtml($search2)), DBA::escape(Strings::escapeHtml($search2)), DBA::escape(Strings::escapeHtml($search2)),
                                        DBA::escape(Strings::escapeHtml($search2)), DBA::escape(Strings::escapeHtml($search2)), DBA::escape(Strings::escapeHtml($search2)));
 
                        $results = q("SELECT `nurl`
                                        FROM `gcontact`
-                                       WHERE NOT `hide` AND `network` IN ('%s', '%s', '%s') AND
+                                       WHERE NOT `hide` AND `network` IN ('%s', '%s', '%s', '%s') AND
                                                ((`last_contact` >= `last_failure`) OR (`updated` >= `last_failure`)) AND
                                                (`url` LIKE '%s' OR `name` LIKE '%s' OR `location` LIKE '%s' OR
                                                `addr` LIKE '%s' OR `about` LIKE '%s' OR `keywords` LIKE '%s') $extra_sql
                                                GROUP BY `nurl`
                                                ORDER BY `updated` DESC LIMIT %d, %d",
-                                       DBA::escape(Protocol::DFRN), DBA::escape($ostatus), DBA::escape($diaspora),
+                                       DBA::escape(Protocol::ACTIVITYPUB), DBA::escape(Protocol::DFRN), DBA::escape($ostatus), DBA::escape($diaspora),
                                        DBA::escape(Strings::escapeHtml($search2)), DBA::escape(Strings::escapeHtml($search2)), DBA::escape(Strings::escapeHtml($search2)),
                                        DBA::escape(Strings::escapeHtml($search2)), DBA::escape(Strings::escapeHtml($search2)), DBA::escape(Strings::escapeHtml($search2)),
                                        $pager->getStart(), $pager->getItemsPerPage());
index 335b27b32052b949fd3af790c898076c3b3211b2..30a7f69df9a9e925468d18cd3e0e1ad70d61c5a6 100644 (file)
@@ -14,7 +14,7 @@ function filerm_content(App $a)
        }
 
        $term = XML::unescape(trim($_GET['term']));
-       $cat = XML::unescape(trim($_GET['cat']));
+       $cat = XML::unescape(trim(defaults($_GET, 'cat', '')));
 
        $category = (($cat) ? true : false);
 
@@ -25,12 +25,17 @@ function filerm_content(App $a)
 
        $item_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
 
-       Logger::log('filerm: tag ' . $term . ' item ' . $item_id);
+       Logger::log('filerm: tag ' . $term . ' item ' . $item_id  . ' category ' . ($category ? 'true' :  'false'));
 
-       if ($item_id && strlen($term))
-       {
-               FileTag::unsaveFile(local_user(), $item_id, $term, $category);
+       if ($item_id && strlen($term)) {
+               if (FileTag::unsaveFile(local_user(), $item_id, $term, $category)) {
+                       info('Item removed');
+               }
+       }
+       else {
+               info('Item was not deleted');
        }
 
+       $a->internalRedirect('/network?f=&file=' . $term);
        killme();
 }
index b92424c2083730c339c248dc93e1111190104b6c..1ee61ce9e14802448c8a8b87e59a699a18b5ed4c 100644 (file)
@@ -22,7 +22,7 @@ function follow_post(App $a)
        }
 
        if (isset($_REQUEST['cancel'])) {
-               $a->internalRedirect('contacts');
+               $a->internalRedirect('contact');
        }
 
        $uid = local_user();
@@ -52,7 +52,7 @@ function follow_post(App $a)
 
 function follow_content(App $a)
 {
-       $return_path = 'contacts';
+       $return_path = 'contact';
 
        if (!local_user()) {
                notice(L10n::t('Permission denied.'));
index 507185e7c264ee04580818ad8977dde1541e36b2..5f9173fab817474b8e0f815682184c66e3b8d376 100644 (file)
@@ -468,7 +468,7 @@ function item_post(App $a) {
 
                                $fields = ['allow_cid' => $str_contact_allow, 'allow_gid' => $str_group_allow,
                                                'deny_cid' => $str_contact_deny, 'deny_gid' => $str_group_deny];
-                               $condition = ['resource-id' => $image_uri, 'uid' => $profile_uid, 'album' => L10n::t('Wall Photos')];
+                               $condition = ['resource-id' => $image_uri, 'uid' => $profile_uid];
                                DBA::update('photo', $fields, $condition);
                        }
                }
index 81a2f2b2ba63e8514b634664d50191099d10e03b..ba02ee5cc326dbf8dd88cf0a3b2a312f34f21b77 100644 (file)
@@ -346,6 +346,11 @@ function networkConversation(App $a, $items, Pager $pager, $mode, $update, $orde
        // Set this so that the conversation function can find out contact info for our wall-wall items
        $a->page_contact = $a->contact;
 
+       if (!is_array($items)) {
+               Logger::log("Expecting items to be an array. Got " . print_r($items, true));
+               $items = [];
+       }
+
        $o = conversation($a, $items, $pager, $mode, $update, false, $ordering, local_user());
 
        if (!$update) {
@@ -389,6 +394,10 @@ function network_content(App $a, $update = 0, $parent = 0)
                $o = networkThreadedView($a, $update, $parent);
        }
 
+       if ($o === '') {
+               info("No items found");
+       }
+
        return $o;
 }
 
@@ -463,6 +472,9 @@ function networkFlatView(App $a, $update = 0)
                }
                DBA::close($result);
 
+               if (count($posts) == 0) {
+                       return '';
+               }
                $condition = ['uid' => local_user(), 'id' => $posts];
        } else {
                $condition = ['uid' => local_user()];
index 0964e85ca1e4a26e1d6ef62ca39ba09e83575a2c..87367d5369e8f3c9c6e52ba72a7e558f4e40166b 100644 (file)
@@ -36,6 +36,11 @@ function noscrape_init(App $a)
                'account-type' => $a->profile['account-type'],
        ];
 
+       $dfrn_pages = ['request', 'confirm', 'notify', 'poll'];
+       foreach ($dfrn_pages as $dfrn) {
+               $json_info["dfrn-{$dfrn}"] = System::baseUrl()."/dfrn_{$dfrn}/{$which}";
+       }
+
        if (!$a->profile['net-publish'] || $a->profile['hidewall']) {
                header('Content-type: application/json; charset=utf-8');
                $json_info["hide"] = true;
@@ -99,11 +104,6 @@ function noscrape_init(App $a)
                }
        }
 
-       $dfrn_pages = ['request', 'confirm', 'notify', 'poll'];
-       foreach ($dfrn_pages as $dfrn) {
-               $json_info["dfrn-{$dfrn}"] = System::baseUrl()."/dfrn_{$dfrn}/{$which}";
-       }
-
        //Output all the JSON!
        header('Content-type: application/json; charset=utf-8');
        echo json_encode($json_info);
index 59f3bb5ae483866c9aa8028ac8a57c39722b4642..0aa42cf4462df9e29eb6f1d398978eb78016035a 100644 (file)
@@ -59,8 +59,8 @@ function profile_init(App $a)
                $user = DBA::selectFirst('user', ['uid'], ['nickname' => $which]);
                if (DBA::isResult($user)) {
                        $data = ActivityPub\Transmitter::getProfile($user['uid']);
-                       echo json_encode($data);
                        header('Content-Type: application/activity+json');
+                       echo json_encode($data);
                        exit();
                }
        }
@@ -92,7 +92,7 @@ function profile_init(App $a)
        }
 
        $a->page['htmlhead'] .= '<meta name="dfrn-global-visibility" content="' . ($a->profile['net-publish'] ? 'true' : 'false') . '" />' . "\r\n";
-       $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/dfrn_poll/' . $which . '" title="' . L10n::t('%s\'s timeline', $a->profile['username']) . '"/>' . "\r\n";
+       $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/dfrn_poll/' . $which . '" title="DFRN: ' . L10n::t('%s\'s timeline', $a->profile['username']) . '"/>' . "\r\n";
        $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/feed/' . $which . '/" title="' . L10n::t('%s\'s posts', $a->profile['username']) . '"/>' . "\r\n";
        $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/feed/' . $which . '/comments" title="' . L10n::t('%s\'s comments', $a->profile['username']) . '"/>' . "\r\n";
        $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/feed/' . $which . '/activity" title="' . L10n::t('%s\'s timeline', $a->profile['username']) . '"/>' . "\r\n";
@@ -268,6 +268,8 @@ function profile_content(App $a, $update = 0)
                if (!DBA::isResult($items)) {
                        return '';
                }
+
+               $pager = new Pager($a->query_string);
        } else {
                $sql_post_table = "";
 
index d38cbe227d5eac6e935d08e05ce6ffcc5936f733..c9cb54d2e055a2de70cedeef577935685af8d5ba 100644 (file)
@@ -50,13 +50,15 @@ function pubsubhubbub_init(App $a) {
 
                Logger::log("$hub_mode request from " . $_SERVER['REMOTE_ADDR']);
 
-               // get the nick name from the topic, a bit hacky but needed as a fallback
-               $nick = substr(strrchr($hub_topic, "/"), 1);
-
-               // Normally the url should now contain the nick name as last part of the url
                if ($a->argc > 1) {
+                       // Normally the url should now contain the nick name as last part of the url
                        $nick = $a->argv[1];
+               } else {
+                       // Get the nick name from the topic as a fallback
+                       $nick = $hub_topic;
                }
+               // Extract nick name and strip any .atom extension
+               $nick = basename($nick, '.atom');
 
                if (!$nick) {
                        Logger::log('Bad hub_topic=$hub_topic, ignoring.');
@@ -65,7 +67,7 @@ function pubsubhubbub_init(App $a) {
 
                // fetch user from database given the nickname
                $condition = ['nickname' => $nick, 'account_expired' => false, 'account_removed' => false];
-               $owner = DBA::selectFirst('user', ['uid', 'hidewall'], $condition);
+               $owner = DBA::selectFirst('user', ['uid', 'hidewall', 'nickname'], $condition);
                if (!DBA::isResult($owner)) {
                        Logger::log('Local account not found: ' . $nick . ' - topic: ' . $hub_topic . ' - callback: ' . $hub_callback);
                        System::httpExit(404);
@@ -88,25 +90,32 @@ function pubsubhubbub_init(App $a) {
 
                // sanity check that topic URLs are the same
                $hub_topic2 = str_replace('/feed/', '/dfrn_poll/', $hub_topic);
-               if (!Strings::compareLink($hub_topic, $contact['poll']) && !Strings::compareLink($hub_topic2, $contact['poll'])) {
+               $self = System::baseUrl() . '/api/statuses/user_timeline/' . $owner['nickname'] . '.atom';
+
+               if (!Strings::compareLink($hub_topic, $contact['poll']) && !Strings::compareLink($hub_topic2, $contact['poll']) && !Strings::compareLink($hub_topic, $self)) {
                        Logger::log('Hub topic ' . $hub_topic . ' != ' . $contact['poll']);
                        System::httpExit(404);
                }
 
                // do subscriber verification according to the PuSH protocol
                $hub_challenge = Strings::getRandomHex(40);
-               $params = 'hub.mode=' .
-                       ($subscribe == 1 ? 'subscribe' : 'unsubscribe') .
-                       '&hub.topic=' . urlencode($hub_topic) .
-                       '&hub.challenge=' . $hub_challenge .
-                       '&hub.lease_seconds=604800' .
-                       '&hub.verify_token=' . $hub_verify_token;
-
-               // lease time is hard coded to one week (in seconds)
-               // we don't actually enforce the lease time because GNU
-               // Social/StatusNet doesn't honour it (yet)
-
-               $fetchResult = Network::fetchUrlFull($hub_callback . "?" . $params);
+
+               $params = http_build_query([
+                       'hub.mode' => $subscribe == 1 ? 'subscribe' : 'unsubscribe',
+                       'hub.topic' => $hub_topic,
+                       'hub.challenge' => $hub_challenge,
+                       'hub.verify_token' => $hub_verify_token,
+
+                       // lease time is hard coded to one week (in seconds)
+                       // we don't actually enforce the lease time because GNU
+                       // Social/StatusNet doesn't honour it (yet)
+                       'hub.lease_seconds' => 604800,
+               ]);
+
+               $hub_callback = rtrim($hub_callback, ' ?&#');
+               $separator = parse_url($hub_callback, PHP_URL_QUERY) === null ? '?' : '&';
+
+               $fetchResult = Network::fetchUrlFull($hub_callback . $separator . $params);
                $body = $fetchResult->getBody();
                $ret = $fetchResult->getReturnCode();
 
index 9b1049286b8ed6e2b7b3fcdcf07aa8e062dcb29f..433a4782ff872c15b1fa0afabaffe1f09b155e38 100644 (file)
@@ -16,7 +16,7 @@ use Friendica\Util\Strings;
 
 function unfollow_post(App $a)
 {
-       $return_path = 'contacts';
+       $base_return_path = 'contact';
 
        if (!local_user()) {
                notice(L10n::t('Permission denied.'));
@@ -34,17 +34,17 @@ function unfollow_post(App $a)
 
        if (!DBA::isResult($contact)) {
                notice(L10n::t("You aren't following this contact."));
-               $a->internalRedirect($return_path);
+               $a->internalRedirect($base_return_path);
                // NOTREACHED
        }
 
        if (!empty($_REQUEST['cancel'])) {
-               $a->internalRedirect($return_path . '/' . $contact['id']);
+               $a->internalRedirect($base_return_path . '/' . $contact['id']);
        }
 
        if (!in_array($contact['network'], Protocol::NATIVE_SUPPORT)) {
                notice(L10n::t('Unfollowing is currently not supported by your network.'));
-               $a->internalRedirect($return_path . '/' . $contact['id']);
+               $a->internalRedirect($base_return_path . '/' . $contact['id']);
                // NOTREACHED
        }
 
@@ -58,10 +58,10 @@ function unfollow_post(App $a)
        // Sharing-only contacts get deleted as there no relationship any more
        if ($dissolve) {
                Contact::remove($contact['id']);
-               $return_path = 'contacts';
+               $return_path = $base_return_path;
        } else {
                DBA::update('contact', ['rel' => Contact::FOLLOWER], ['id' => $contact['id']]);
-               $return_path = 'contact/' . $contact['id'];
+               $return_path = $base_return_path . '/' . $contact['id'];
        }
 
        info(L10n::t('Contact unfollowed'));
@@ -71,7 +71,7 @@ function unfollow_post(App $a)
 
 function unfollow_content(App $a)
 {
-       $return_path = 'contacts';
+       $base_return_path = 'contact';
 
        if (!local_user()) {
                notice(L10n::t('Permission denied.'));
@@ -90,13 +90,13 @@ function unfollow_content(App $a)
 
        if (!DBA::isResult($contact)) {
                notice(L10n::t("You aren't following this contact."));
-               $a->internalRedirect($return_path);
+               $a->internalRedirect($base_return_path);
                // NOTREACHED
        }
 
        if (!in_array($contact['network'], Protocol::NATIVE_SUPPORT)) {
                notice(L10n::t('Unfollowing is currently not supported by your network.'));
-               $a->internalRedirect('contact/' . $contact['id']);
+               $a->internalRedirect($base_return_path . '/' . $contact['id']);
                // NOTREACHED
        }
 
@@ -107,7 +107,7 @@ function unfollow_content(App $a)
 
        if (!DBA::isResult($self)) {
                notice(L10n::t('Permission denied.'));
-               $a->internalRedirect($return_path);
+               $a->internalRedirect($base_return_path);
                // NOTREACHED
        }
 
index 1215591a20ebadf1ff66606889d04beee4b97149..17ed231f978f1d3a0e365bf738c84e472483ffc1 100644 (file)
@@ -4,6 +4,7 @@ namespace Friendica\Core\Console;
 
 use Friendica\Core\L10n;
 use Friendica\Core\Config;
+use Friendica\Core\Update;
 
 /**
  * Performs database post updates
@@ -54,6 +55,10 @@ HELP;
                        throw new \RuntimeException('Database isn\'t ready or populated yet');
                }
 
+               echo L10n::t('Check for pending update actions.') . "\n";
+               Update::run(true, true, false);
+               echo L10n::t('Done.') . "\n";
+
                echo L10n::t('Execute pending post updates.') . "\n";
 
                while (!\Friendica\Database\PostUpdate::update()) {
index 5488fe43f0f26f35d07b649763db9b0d1d161e5d..1e2693a944b04c85f475a09a74c36e5a23ec5120 100644 (file)
@@ -7,6 +7,7 @@ namespace Friendica\Core;
 use Friendica\App;
 use Friendica\Core\Logger;
 use Friendica\Core\Protocol;
+use Friendica\Core\System;
 use Friendica\Database\DBA;
 use Friendica\Model\Photo;
 use Friendica\Object\Image;
@@ -129,6 +130,9 @@ class UserImport
                        $old_handle = $account['user']['nickname'].$oldaddr;
                }
 
+               // Creating a new guid to avoid problems with Diaspora
+               $account['user']['guid'] = System::createUUID();
+
                $olduid = $account['user']['uid'];
 
                unset($account['user']['uid']);
index 4a9bc69f618e14f1a4a2896497da01f11c941fa0..d4a1ee937fcedc759ca5c0ae658b27e0794339b6 100644 (file)
@@ -329,8 +329,9 @@ class DBStructure
                                }
 
                                if (isset($database[$name]["table_status"]["Comment"])) {
-                                       if ($database[$name]["table_status"]["Comment"] != $structure['comment']) {
-                                               $sql2 = "COMMENT = '".DBA::escape($structure['comment'])."'";
+                                       $structurecomment = defaults($structure, "comment", "");
+                                       if ($database[$name]["table_status"]["Comment"] != $structurecomment) {
+                                               $sql2 = "COMMENT = '".DBA::escape($structurecomment)."'";
 
                                                if ($sql3 == "") {
                                                        $sql3 = "ALTER" . $ignore . " TABLE `".$temp_name."` ".$sql2;
index 737101b5c287ac911fa2649344bf41218cf423ba..5ef2a0ee612e30a00fb1fc6722736433dbcb9904 100644 (file)
@@ -65,7 +65,8 @@ class LegacyModule extends BaseModule
                $function_name = static::$moduleName . '_' . $function_suffix;
 
                if (\function_exists($function_name)) {
-                       return $function_name(self::getApp());
+                       $a = self::getApp();
+                       return $function_name($a);
                } else {
                        return parent::{$function_suffix}();
                }
index d3baffdd4fd02106e2ba307009ed068911be1d71..06040403a95101dce550baf2310aa6d79aa8dd08 100644 (file)
@@ -291,6 +291,7 @@ class FileTag
         }
 
         $fields = ['file' => str_replace($pattern, '', $item['file'])];
+
         Item::update($fields, ['id' => $item_id]);
 
         $r = q("SELECT `oid` FROM `term` WHERE `term` = '%s' AND `otype` = %d AND `type` = %d AND `uid` = %d",
index 6e2e520c89f58239f4cd3088412a002dc72b11ce..1fed1fc3ef5b8464f521814dc99b3976b17a9ec9 100644 (file)
@@ -430,7 +430,7 @@ class GContact
                //      return $list;
                //}
 
-               $network = [Protocol::DFRN];
+               $network = [Protocol::DFRN, Protocol::ACTIVITYPUB];
 
                if (Config::get('system', 'diaspora_enabled')) {
                        $network[] = Protocol::DIASPORA;
@@ -451,7 +451,7 @@ class GContact
                        where uid = %d and not gcontact.nurl in ( select nurl from contact where uid = %d )
                        AND NOT `gcontact`.`name` IN (SELECT `name` FROM `contact` WHERE `uid` = %d)
                        AND NOT `gcontact`.`id` IN (SELECT `gcid` FROM `gcign` WHERE `uid` = %d)
-                       AND `gcontact`.`updated` >= '%s'
+                       AND `gcontact`.`updated` >= '%s' AND NOT `gcontact`.`hide`
                        AND `gcontact`.`last_contact` >= `gcontact`.`last_failure`
                        AND `gcontact`.`network` IN (%s)
                        GROUP BY `glink`.`gcid` ORDER BY `gcontact`.`updated` DESC,`total` DESC LIMIT %d, %d",
index 30c29e1518b18cea736de93613f6a9c9657abd3a..9aaac7f7a0ce0a59a2ca514a5a59ade9a5b50b86 100644 (file)
@@ -832,7 +832,7 @@ class Item extends BaseObject
                        $files = $fields['file'];
                        $fields['file'] = null;
                } else {
-                       $files = '';
+                       $files = null;
                }
 
                $delivery_data = ['postopts' => defaults($fields, 'postopts', ''),
@@ -911,7 +911,7 @@ class Item extends BaseObject
                                }
                        }
 
-                       if (!empty($files)) {
+                       if (!is_null($files)) {
                                Term::insertFromFileFieldByItemId($item['id'], $files);
                                if (!empty($item['file'])) {
                                        DBA::update('item', ['file' => ''], ['id' => $item['id']]);
@@ -1011,10 +1011,8 @@ class Item extends BaseObject
                $matches = false;
                $cnt = preg_match_all('/<(.*?)>/', $item['file'], $matches, PREG_SET_ORDER);
 
-               if ($cnt)
-               {
-                       foreach ($matches as $mtch)
-                       {
+               if ($cnt) {
+                       foreach ($matches as $mtch) {
                                FileTag::unsaveFile($item['uid'], $item['id'], $mtch[1],true);
                        }
                }
@@ -1023,10 +1021,8 @@ class Item extends BaseObject
 
                $cnt = preg_match_all('/\[(.*?)\]/', $item['file'], $matches, PREG_SET_ORDER);
 
-               if ($cnt)
-               {
-                       foreach ($matches as $mtch)
-                       {
+               if ($cnt) {
+                       foreach ($matches as $mtch) {
                                FileTag::unsaveFile($item['uid'], $item['id'], $mtch[1],false);
                        }
                }
index b7e182dc1461d2ef3caac612fb87ad5143afe905..80e9c73b63b7528021c6771448dea494077d402f 100644 (file)
@@ -221,7 +221,7 @@ class Contact extends BaseModule
                        $priority = 0;
                }
 
-               $info = Strings::escapeHtml(trim($_POST['info']));
+               $info = Strings::escapeHtml(trim(defaults($_POST, 'info', '')));
 
                $r = DBA::update('contact', [
                        'profile-id' => $profile_id,
@@ -755,6 +755,14 @@ class Contact extends BaseModule
                                'id'    => 'showhidden-tab',
                                'accesskey' => 'h',
                        ],
+                       [
+                               'label' => L10n::t('Groups'),
+                               'url'   => 'group',
+                               'sel'   => ($hidden) ? 'active' : '',
+                               'title' => L10n::t('Organize your contact groups'),
+                               'id'    => 'contactgroups-tab',
+                               'accesskey' => 'e',
+                       ],
                ];
 
                $tab_tpl = Renderer::getMarkupTemplate('common_tabs.tpl');
index 5df68f223ed57b93a365f8f1cc8580e306111d70..9e44612717b5c62eaf78fc784845172270119a57 100644 (file)
@@ -54,7 +54,7 @@ class Feed extends BaseModule
 
                $nickname = $a->argv[1];
                header("Content-type: application/atom+xml");
-               echo OStatus::feed($nickname, $last_update, 10, $type, $nocache);
+               echo OStatus::feed($nickname, $last_update, 10, $type, $nocache, true);
                killme();
        }
 }
index 0cc65c3c32846b2b44cac98a67b849e63c3c6445..330988df50cc1b94ec8fb5314b38ae6715ce4e71 100644 (file)
@@ -46,7 +46,7 @@ class Login extends BaseModule
                        $a->internalRedirect();
                }
 
-               return self::form($_SESSION['return_path'], intval(Config::get('config', 'register_policy')) !== REGISTER_CLOSED);
+               return self::form(defaults($_SESSION, 'return_path', null), intval(Config::get('config', 'register_policy')) !== REGISTER_CLOSED);
        }
 
        public static function post()
index bbae881b8869c51173e057b7ef15399abd7abaae..dd98853ae888f052168863adf2d125429291c511 100644 (file)
@@ -133,6 +133,11 @@ class CurlResult
        {
                $this->isSuccess = ($this->returnCode >= 200 && $this->returnCode <= 299) || $this->errorNumber == 0;
 
+               // Everything higher or equal 400 is not a success
+               if ($this->returnCode >= 400) {
+                       $this->isSuccess = false;
+               }
+
                if (!$this->isSuccess) {
                        Logger::log('error: ' . $this->url . ': ' . $this->returnCode . ' - ' . $this->error, Logger::INFO);
                        Logger::log('debug: ' . print_r($this->info, true), Logger::DATA);
index 22016834375b19da3377aef636db75bb01e758a9..58b11a723cb9c830e079364fa30b928671b4eafa 100644 (file)
@@ -157,11 +157,13 @@ class Post extends BaseObject
 
                $shareable = in_array($conv->getProfileOwner(), [0, local_user()]) && $item['private'] != 1;
 
-               if (local_user() && Strings::compareLink($a->contact['url'], $item['author-link'])) {
-                       if ($item["event-id"] != 0) {
-                               $edpost = ["events/event/" . $item['event-id'], L10n::t("Edit")];
-                       } else {
-                               $edpost = ["editpost/" . $item['id'], L10n::t("Edit")];
+               if (local_user()) {
+                       if (Strings::compareLink($a->contact['url'], $item['author-link'])) {
+                               if ($item["event-id"] != 0) {
+                                       $edpost = ["events/event/" . $item['event-id'], L10n::t("Edit")];
+                               } else {
+                                       $edpost = ["editpost/" . $item['id'], L10n::t("Edit")];
+                               }
                        }
                        $dropping = in_array($item['uid'], [0, local_user()]);
                } else {
@@ -190,8 +192,13 @@ class Post extends BaseObject
                        }
                }
 
-               // Showing the one or the other text, depending upon if we can only hide it or really delete it.
-               $delete = $origin ? L10n::t('Delete globally') : L10n::t('Remove locally');
+               if ($origin && ($item['id'] != $item['parent']) && ($item['network'] == Protocol::ACTIVITYPUB)) {
+                       // ActivityPub doesn't allow removal of remote comments
+                       $delete = L10n::t('Delete locally');
+               } else {
+                       // Showing the one or the other text, depending upon if we can only hide it or really delete it.
+                       $delete = $origin ? L10n::t('Delete globally') : L10n::t('Remove locally');
+               }
 
                $drop = [
                        'dropping' => $dropping,
@@ -200,7 +207,7 @@ class Post extends BaseObject
                        'delete'   => $delete,
                ];
 
-               if (!local_user() || ($item['uid'] == 0)) {
+               if (!local_user()) {
                        $drop = false;
                }
 
index 0c096c25a8cedba197dec79d21a46611b789f5e2..5f5066d75c3bc7489151a6fe9aea091796c14163 100644 (file)
@@ -1320,7 +1320,7 @@ class OStatus
                $attributes = ["href" => System::baseUrl() . "/salmon/" . $owner["nick"], "rel" => "http://salmon-protocol.org/ns/salmon-mention"];
                XML::addElement($doc, $root, "link", "", $attributes);
 
-               $attributes = ["href" => System::baseUrl() . "/api/statuses/user_timeline/" . $owner["nick"] . ".atom",
+               $attributes = ["href" => System::baseUrl() . "/dfrn_poll/" . $owner["nick"],
                        "rel" => "self", "type" => "application/atom+xml"];
                XML::addElement($doc, $root, "link", "", $attributes);
 
@@ -1538,14 +1538,15 @@ class OStatus
        /**
         * @brief Adds an entry element to the XML document
         *
-        * @param object $doc      XML document
-        * @param array  $item     Data of the item that is to be posted
-        * @param array  $owner    Contact data of the poster
-        * @param bool   $toplevel optional default false
+        * @param object $doc       XML document
+        * @param array  $item      Data of the item that is to be posted
+        * @param array  $owner     Contact data of the poster
+        * @param bool   $toplevel  optional default false
+        * @param bool   $feed_mode Behave like a regular feed for users if true
         *
         * @return object Entry element
         */
-       private static function entry(DOMDocument $doc, array $item, array $owner, $toplevel = false)
+       private static function entry(DOMDocument $doc, array $item, array $owner, $toplevel = false, $feed_mode = false)
        {
                $xml = null;
 
@@ -1563,7 +1564,7 @@ class OStatus
                } elseif (in_array($item["verb"], [ACTIVITY_FOLLOW, NAMESPACE_OSTATUS."/unfollow"])) {
                        return self::followEntry($doc, $item, $owner, $toplevel);
                } else {
-                       return self::noteEntry($doc, $item, $owner, $toplevel);
+                       return self::noteEntry($doc, $item, $owner, $toplevel, $feed_mode);
                }
        }
 
@@ -1853,14 +1854,15 @@ class OStatus
        /**
         * @brief Adds a regular entry element
         *
-        * @param object $doc      XML document
-        * @param array  $item     Data of the item that is to be posted
-        * @param array  $owner    Contact data of the poster
-        * @param bool   $toplevel Is it for en entry element (false) or a feed entry (true)?
+        * @param object $doc       XML document
+        * @param array  $item      Data of the item that is to be posted
+        * @param array  $owner     Contact data of the poster
+        * @param bool   $toplevel  Is it for en entry element (false) or a feed entry (true)?
+        * @param bool   $feed_mode Behave like a regular feed for users if true
         *
         * @return object Entry element
         */
-       private static function noteEntry(DOMDocument $doc, array $item, array $owner, $toplevel)
+       private static function noteEntry(DOMDocument $doc, array $item, array $owner, $toplevel, $feed_mode)
        {
                if (($item["id"] != $item["parent"]) && (Strings::normaliseLink($item["author-link"]) != Strings::normaliseLink($owner["url"]))) {
                        Logger::log("OStatus entry is from author ".$owner["url"]." - not from ".$item["author-link"].". Quitting.", Logger::DEBUG);
@@ -1870,9 +1872,9 @@ class OStatus
 
                XML::addElement($doc, $entry, "activity:object-type", ACTIVITY_OBJ_NOTE);
 
-               self::entryContent($doc, $entry, $item, $owner, $title);
+               self::entryContent($doc, $entry, $item, $owner, $title, '', true, $feed_mode);
 
-               self::entryFooter($doc, $entry, $item, $owner);
+               self::entryFooter($doc, $entry, $item, $owner, !$feed_mode, $feed_mode);
 
                return $entry;
        }
@@ -1892,7 +1894,11 @@ class OStatus
                /// @todo Check if this title stuff is really needed (I guess not)
                if (!$toplevel) {
                        $entry = $doc->createElement("entry");
-                       $title = sprintf("New note by %s", $owner["nick"]);
+                       if (!empty($item['title'])) {
+                               $title = BBCode::convert($item['title'], false, 7);
+                       } else {
+                               $title = sprintf("New note by %s", $owner["nick"]);
+                       }
 
                        if ($owner['account-type'] == Contact::ACCOUNT_TYPE_COMMUNITY) {
                                $contact = self::contactEntry($item['author-link'], $owner);
@@ -1922,27 +1928,28 @@ class OStatus
        /**
         * @brief Adds elements to the XML document
         *
-        * @param object $doc      XML document
-        * @param object $entry    Entry element where the content is added
-        * @param array  $item     Data of the item that is to be posted
-        * @param array  $owner    Contact data of the poster
-        * @param string $title    Title for the post
-        * @param string $verb     The activity verb
-        * @param bool   $complete Add the "status_net" element?
+        * @param object $doc       XML document
+        * @param object $entry     Entry element where the content is added
+        * @param array  $item      Data of the item that is to be posted
+        * @param array  $owner     Contact data of the poster
+        * @param string $title     Title for the post
+        * @param string $verb      The activity verb
+        * @param bool   $complete  Add the "status_net" element?
+        * @param bool   $feed_mode Behave like a regular feed for users if true
         * @return void
         */
-       private static function entryContent(DOMDocument $doc, $entry, array $item, array $owner, $title, $verb = "", $complete = true)
+       private static function entryContent(DOMDocument $doc, $entry, array $item, array $owner, $title, $verb = "", $complete = true, $feed_mode = false)
        {
                if ($verb == "") {
                        $verb = self::constructVerb($item);
                }
 
                XML::addElement($doc, $entry, "id", $item["uri"]);
-               XML::addElement($doc, $entry, "title", $title);
+               XML::addElement($doc, $entry, "title", html_entity_decode($title, ENT_QUOTES, 'UTF-8'));
 
                $body = self::formatPicturePost($item['body']);
 
-               if ($item['title'] != "") {
+               if (!empty($item['title']) && !$feed_mode) {
                        $body = "[b]".$item['title']."[/b]\n\n".$body;
                }
 
@@ -1954,11 +1961,13 @@ class OStatus
                                                                "href" => System::baseUrl()."/display/".$item["guid"]]
                );
 
-               if ($complete && ($item["id"] > 0)) {
+               if (!$feed_mode && $complete && ($item["id"] > 0)) {
                        XML::addElement($doc, $entry, "status_net", "", ["notice_id" => $item["id"]]);
                }
 
-               XML::addElement($doc, $entry, "activity:verb", $verb);
+               if (!$feed_mode) {
+                       XML::addElement($doc, $entry, "activity:verb", $verb);
+               }
 
                XML::addElement($doc, $entry, "published", DateTimeFormat::utc($item["created"]."+00:00", DateTimeFormat::ATOM));
                XML::addElement($doc, $entry, "updated", DateTimeFormat::utc($item["edited"]."+00:00", DateTimeFormat::ATOM));
@@ -1967,14 +1976,15 @@ class OStatus
        /**
         * @brief Adds the elements at the foot of an entry to the XML document
         *
-        * @param object $doc      XML document
-        * @param object $entry    The entry element where the elements are added
-        * @param array  $item     Data of the item that is to be posted
-        * @param array  $owner    Contact data of the poster
-        * @param bool   $complete default true
+        * @param object $doc       XML document
+        * @param object $entry     The entry element where the elements are added
+        * @param array  $item      Data of the item that is to be posted
+        * @param array  $owner     Contact data of the poster
+        * @param bool   $complete  default true
+        * @param bool   $feed_mode Behave like a regular feed for users if true
         * @return void
         */
-       private static function entryFooter(DOMDocument $doc, $entry, array $item, array $owner, $complete = true)
+       private static function entryFooter(DOMDocument $doc, $entry, array $item, array $owner, $complete = true, $feed_mode = false)
        {
                $mentioned = [];
 
@@ -2005,7 +2015,7 @@ class OStatus
                        XML::addElement($doc, $entry, "link", "", $attributes);
                }
 
-               if (intval($item["parent"]) > 0) {
+               if (!$feed_mode && (intval($item["parent"]) > 0)) {
                        $conversation_href = $conversation_uri = str_replace('/objects/', '/context/', $item['parent-uri']);
 
                        if (isset($parent_item)) {
@@ -2077,7 +2087,7 @@ class OStatus
                        ]);
                }
 
-               if (!$item["private"]) {
+               if (!$item["private"] && !$feed_mode) {
                        XML::addElement($doc, $entry, "link", "", ["rel" => "ostatus:attention",
                                                                        "href" => "http://activityschema.org/collection/public"]);
                        XML::addElement($doc, $entry, "link", "", ["rel" => "mentioned",
@@ -2134,10 +2144,11 @@ class OStatus
         * @param integer $max_items   Number of maximum items to fetch
         * @param string  $filter      Feed items filter (activity, posts or comments)
         * @param boolean $nocache     Wether to bypass caching
+        * @param boolean $feed_mode   Behave like a regular feed for users if true
         *
         * @return string XML feed
         */
-       public static function feed($owner_nick, &$last_update, $max_items = 300, $filter = 'activity', $nocache = false)
+       public static function feed($owner_nick, &$last_update, $max_items = 300, $filter = 'activity', $nocache = false, $feed_mode = false)
        {
                $stamp = microtime(true);
 
@@ -2201,7 +2212,8 @@ class OStatus
                        if (Config::get('system', 'ostatus_debug')) {
                                $item['body'] .= '🍼';
                        }
-                       $entry = self::entry($doc, $item, $owner);
+
+                       $entry = self::entry($doc, $item, $owner, false, $feed_mode);
                        $root->appendChild($entry);
 
                        if ($last_update < $item['created']) {
index 7243da523f9d2e6078b1d4371f66b519838c68ea..0f4ef12f9dd4943a9b11bc360352f18afa593479 100644 (file)
@@ -1376,10 +1376,11 @@ class PortableContact
                                        }
 
                                        $info = $data['info'];
-                                       if (in_array($data['register_policy'], ['REGISTER_CLOSED', 'REGISTER_APPROVE', 'REGISTER_OPEN'])) {
+                                       $register_policy = defaults($data, 'register_policy', REGISTER_CLOSED);
+                                       if (in_array($register_policy, ['REGISTER_CLOSED', 'REGISTER_APPROVE', 'REGISTER_OPEN'])) {
                                                $register_policy = constant($data['register_policy']);
                                        } else {
-                                               Logger::log("Register policy '{$data['register_policy']}' from $server_url is invalid.");
+                                               Logger::log("Register policy '$register_policy' from $server_url is invalid.");
                                                $register_policy = REGISTER_CLOSED; // set a default value
                                        }
                                        $platform = $data['platform'];
index 40230e3bdb3ec1aeacf4abe08283d9ba27e021f3..3ae0be140dcdc15a1c68d48fd186e9f497e40b8f 100644 (file)
@@ -214,7 +214,7 @@ class Delivery extends BaseObject
         */
        private static function deliverDFRN($cmd, $contact, $owner, $items, $target_item, $public_message, $top_level, $followup)
        {
-               Logger::log('Deliver ' . $target_item["guid"] . ' via DFRN to ' . (empty($contact['addr']) ? $contact['url'] : $contact['addr']));
+               Logger::log('Deliver ' . defaults($target_item, 'guid', $target_item['id']) . ' via DFRN to ' . (empty($contact['addr']) ? $contact['url'] : $contact['addr']));
 
                if ($cmd == self::MAIL) {
                        $item = $target_item;
@@ -242,7 +242,7 @@ class Delivery extends BaseObject
                        $atom = DFRN::entries($msgitems, $owner);
                }
 
-               Logger::log('Notifier entry: ' . $contact["url"] . ' ' . $target_item["guid"] . ' entry: ' . $atom, Logger::DATA);
+               Logger::log('Notifier entry: ' . $contact["url"] . ' ' . defaults($target_item, 'guid', $target_item['id']) . ' entry: ' . $atom, Logger::DATA);
 
                $basepath =  implode('/', array_slice(explode('/', $contact['url']), 0, 3));
 
@@ -301,10 +301,10 @@ class Delivery extends BaseObject
                        $deliver_status = DFRN::deliver($owner, $contact, $atom, false, true);
                }
 
-               Logger::log('Delivery to ' . $contact["url"] . ' with guid ' . $target_item["guid"] . ' returns ' . $deliver_status);
+               Logger::log('Delivery to ' . $contact['url'] . ' with guid ' . defaults($target_item, 'guid', $target_item['id']) . ' returns ' . $deliver_status);
 
                if ($deliver_status < 0) {
-                       Logger::log('Delivery failed: queuing message ' . $target_item["guid"] );
+                       Logger::log('Delivery failed: queuing message ' . defaults($target_item, 'guid', $target_item['id']));
                        Queue::add($contact['id'], Protocol::DFRN, $atom, false, $target_item['guid']);
                }
 
@@ -344,7 +344,7 @@ class Delivery extends BaseObject
                        $loc = $contact['addr'];
                }
 
-               Logger::log('Deliver ' . $target_item["guid"] . ' via Diaspora to ' . $loc);
+               Logger::log('Deliver ' . defaults($target_item, 'guid', $target_item['id']) . ' via Diaspora to ' . $loc);
 
                if (Config::get('system', 'dfrn_only') || !Config::get('system', 'diaspora_enabled')) {
                        return;
@@ -360,14 +360,14 @@ class Delivery extends BaseObject
                if (!$contact['pubkey'] && !$public_message) {
                        return;
                }
-               if (($target_item['deleted']) && (($target_item['uri'] === $target_item['parent-uri']) || $followup)) {
+               if ($cmd == self::RELOCATION) {
+                       Diaspora::sendAccountMigration($owner, $contact, $owner['uid']);
+                       return;
+               } elseif ($target_item['deleted'] && (($target_item['uri'] === $target_item['parent-uri']) || $followup)) {
                        // top-level retraction
                        Logger::log('diaspora retract: ' . $loc);
                        Diaspora::sendRetraction($target_item, $owner, $contact, $public_message);
                        return;
-               } elseif ($cmd == self::RELOCATION) {
-                       Diaspora::sendAccountMigration($owner, $contact, $owner['uid']);
-                       return;
                } elseif ($followup) {
                        // send comments and likes to owner to relay
                        Logger::log('diaspora followup: ' . $loc);
index d8966e5a491f661c10bf536e799c60dd206f4b53..10ede55763d47ea2071866fdd6de59acac32239a 100644 (file)
@@ -24,7 +24,7 @@ class RemoveUser {
                do {
                        $items = Item::select(['id'], $condition, ['limit' => 100]);
                        while ($item = Item::fetch($items)) {
-                               Item::deleteById($item['id'], PRIORITY_LOW);
+                               Item::deleteById($item['id'], PRIORITY_NEGLIGIBLE);
                        }
                        DBA::close($items);
                } while (Item::exists($condition));
index 15d2841dffcead40348467cdec46bcc20581b004..c154653fd3901742d19f8a2f4983df4ad9d70258 100644 (file)
@@ -13,7 +13,7 @@ msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-10-31 09:45+0100\n"
-"PO-Revision-Date: 2018-10-31 19:03+0000\n"
+"PO-Revision-Date: 2018-11-01 17:16+0000\n"
 "Last-Translator: Aditoo\n"
 "Language-Team: Czech (http://www.transifex.com/Friendica/friendica/language/cs/)\n"
 "MIME-Version: 1.0\n"
@@ -3038,7 +3038,7 @@ msgstr "Nový uživatel"
 
 #: mod/admin.php:1935
 msgid "Delete in"
-msgstr ""
+msgstr "Smazat v"
 
 #: mod/admin.php:1940
 msgid ""
@@ -8931,7 +8931,7 @@ msgstr "Zadejte prosím požadované informace."
 msgid ""
 "system.username_min_length (%s) and system.username_max_length (%s) are "
 "excluding each other, swapping values."
-msgstr ""
+msgstr "system.username_min_length (%s) a system.username_max_length (%s) se vzájemně vylučují, čímž se vyměňují hodnoty."
 
 #: src/Model/User.php:481
 #, php-format
@@ -9763,7 +9763,7 @@ msgstr "Formulářový bezpečnostní token nebyl správný. To pravděpodobně
 #: src/LegacyModule.php:29
 #, php-format
 msgid "Legacy module file not found: %s"
-msgstr ""
+msgstr "Soubor legacy modulu nenalezen: %s"
 
 #: boot.php:549
 #, php-format
index 74d749ce20bed700255479c26d339a9c1e41aa7c..4540bda72d25cdfef27b3fd9a20d0e05be285e80 100644 (file)
@@ -696,7 +696,7 @@ $a->strings["User blocked"] = "Uživatel zablokován";
 $a->strings["Site admin"] = "Administrátor webu";
 $a->strings["Account expired"] = "Účtu vypršela platnost";
 $a->strings["New User"] = "Nový uživatel";
-$a->strings["Delete in"] = "";
+$a->strings["Delete in"] = "Smazat v";
 $a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Vybraní uživatelé budou smazáni!\\n\\n Vše, co tito uživatelé na těchto stránkách vytvořili, bude trvale odstraněno!\\n\\nOpravdu chcete pokračovat?";
 $a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Uživatel {0} bude smazán!\\n\\n Vše, co tento uživatel na těchto stránkách vytvořil, bude trvale odstraněno!\\n\\n Opravdu chcete pokračovat?";
 $a->strings["Name of the new user."] = "Jméno nového uživatele.";
@@ -2069,7 +2069,7 @@ $a->strings["Invalid OpenID url"] = "Neplatný odkaz OpenID";
 $a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Zaznamenali jsme problém s Vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. ";
 $a->strings["The error message was:"] = "Chybová zpráva byla:";
 $a->strings["Please enter the required information."] = "Zadejte prosím požadované informace.";
-$a->strings["system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values."] = "";
+$a->strings["system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values."] = "system.username_min_length (%s) a system.username_max_length (%s) se vzájemně vylučují, čímž se vyměňují hodnoty.";
 $a->strings["Username should be at least %s character."] = [
        0 => "Uživateleké jméno musí mít alespoň %s znak.",
        1 => "Uživateleké jméno musí mít alespoň %s znaky.",
@@ -2267,7 +2267,7 @@ $a->strings["show fewer"] = "zobrazit méně";
 $a->strings["toggle mobile"] = "přepínat mobilní zobrazení";
 $a->strings["No system theme config value set."] = "Není nastavena konfigurační hodnota systémového motivu.";
 $a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním.";
-$a->strings["Legacy module file not found: %s"] = "";
+$a->strings["Legacy module file not found: %s"] = "Soubor legacy modulu nenalezen: %s";
 $a->strings["Update %s failed. See error logs."] = "Aktualizace %s selhala. Zkontrolujte protokol chyb.";
 $a->strings["%s: Updating author-id and owner-id in item and thread table. "] = "%s: Aktualizuji author-id a owner-id v tabulce položek a vláken.";
 $a->strings["%s: Updating post-type."] = "%s: Aktualizuji post-type.";
index 9035bb0b2a52d6f0014eaeda1e73eb548224869d..70474a1ece882a9242aa3d5bab6f172a8d7b0deb 100644 (file)
@@ -12,6 +12,7 @@
 # Jak <inactive+Jak@transifex.com>, 2014
 # Lionel Triay <zapimax38@free.fr>, 2013
 # Thecross, 2017
+# Marie Olive <lacellule101@gmail.com>, 2018
 # Marquis_de_Carabas <olivier@free-beer.ch>, 2012
 # Olivier <olivier+transifex@migeot.org>, 2011-2012
 # PerigGouanvic <pierre.alain.gouanvic@gmail.com>, 2015
@@ -25,9 +26,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-20 14:22+0200\n"
-"PO-Revision-Date: 2018-05-20 13:51+0000\n"
-"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
+"POT-Creation-Date: 2018-10-31 09:45+0100\n"
+"PO-Revision-Date: 2018-11-13 12:42+0000\n"
+"Last-Translator: Marie Olive <lacellule101@gmail.com>\n"
 "Language-Team: French (http://www.transifex.com/Friendica/friendica/language/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -35,6137 +36,5518 @@ msgstr ""
 "Language: fr\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: include/enotify.php:31
-msgid "Friendica Notification"
-msgstr "Notification Friendica"
-
-#: include/enotify.php:34
-msgid "Thank You,"
-msgstr "Merci, "
-
-#: include/enotify.php:37
+#: include/api.php:1141
 #, php-format
-msgid "%s Administrator"
-msgstr "L'administrateur de %s"
+msgid "Daily posting limit of %d post reached. The post was rejected."
+msgid_plural "Daily posting limit of %d posts reached. The post was rejected."
+msgstr[0] "Limite quotidienne de publications de%d atteinte. La publication a été rejetée."
+msgstr[1] "Limite quotidienne de %dpublications atteinte.  La publication a été rejetée."
 
-#: include/enotify.php:39
+#: include/api.php:1155
 #, php-format
-msgid "%1$s, %2$s Administrator"
-msgstr "%1$s,, l'administrateur de %2$s"
+msgid "Weekly posting limit of %d post reached. The post was rejected."
+msgid_plural ""
+"Weekly posting limit of %d posts reached. The post was rejected."
+msgstr[0] ""
+msgstr[1] ""
 
-#: include/enotify.php:95
+#: include/api.php:1169
 #, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Notification] Nouveau courriel reçu sur %s"
+msgid "Monthly posting limit of %d post reached. The post was rejected."
+msgstr ""
 
-#: include/enotify.php:97
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s vous a envoyé un nouveau message privé sur %2$s."
+#: include/api.php:4319 mod/photos.php:92 mod/photos.php:200
+#: mod/photos.php:733 mod/photos.php:1166 mod/photos.php:1183
+#: mod/photos.php:1678 mod/profile_photo.php:86 mod/profile_photo.php:95
+#: mod/profile_photo.php:104 mod/profile_photo.php:213
+#: mod/profile_photo.php:302 mod/profile_photo.php:312 src/Model/User.php:650
+#: src/Model/User.php:658 src/Model/User.php:666
+msgid "Profile Photos"
+msgstr "Photos du profil"
 
-#: include/enotify.php:98
-msgid "a private message"
-msgstr "un message privé"
+#: include/conversation.php:153 include/conversation.php:289
+#: include/text.php:1351
+msgid "event"
+msgstr "événement"
 
-#: include/enotify.php:98
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s vous a envoyé %2$s."
+#: include/conversation.php:156 include/conversation.php:166
+#: include/conversation.php:292 include/conversation.php:301
+#: mod/subthread.php:88 mod/tagger.php:70
+msgid "status"
+msgstr "le statut"
 
-#: include/enotify.php:100
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Merci de visiter %s pour voir vos messages privés et/ou y répondre."
+#: include/conversation.php:161 include/conversation.php:297
+#: include/text.php:1353 mod/subthread.php:88 mod/tagger.php:70
+msgid "photo"
+msgstr "photo"
 
-#: include/enotify.php:138
+#: include/conversation.php:173
 #, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s a commenté sur [url=%2$s]un %3$s[/url]"
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s aime %3$s de %2$s"
 
-#: include/enotify.php:146
+#: include/conversation.php:175
 #, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s a commenté sur [url=%2$s]le %4$s de %3$s[/url]"
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s n'aime pas %3$s de %2$s"
 
-#: include/enotify.php:156
+#: include/conversation.php:177
 #, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgid "%1$s attends %2$s's %3$s"
+msgstr "%1$s participe à %3$s de %2$s"
 
-#: include/enotify.php:168
+#: include/conversation.php:179
 #, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica:Notification] Commentaire de %2$s sur la conversation #%1$d"
+msgid "%1$s doesn't attend %2$s's %3$s"
+msgstr "%1$s ne participe pas à %3$s de %2$s"
 
-#: include/enotify.php:170
+#: include/conversation.php:181
 #, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s a commenté un élément que vous suivez."
+msgid "%1$s attends maybe %2$s's %3$s"
+msgstr "%1$s participe peut-être à %3$s de %2$s"
 
-#: include/enotify.php:173 include/enotify.php:188 include/enotify.php:203
-#: include/enotify.php:218 include/enotify.php:237 include/enotify.php:252
+#: include/conversation.php:216
 #, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Merci de visiter %s pour voir la conversation et/ou y répondre."
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s est désormais lié à %2$s"
 
-#: include/enotify.php:180
+#: include/conversation.php:257
 #, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica:Notification] %s a posté sur votre mur"
+msgid "%1$s poked %2$s"
+msgstr "%1$s a sollicité %2$s"
 
-#: include/enotify.php:182
+#: include/conversation.php:311 mod/tagger.php:108
 #, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s a publié sur votre mur à %2$s"
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s a étiqueté %3$s de %2$s avec %4$s"
 
-#: include/enotify.php:183
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s a posté sur [url=%2$s]votre mur[/url]"
+#: include/conversation.php:333
+msgid "post/item"
+msgstr "publication/élément"
 
-#: include/enotify.php:195
+#: include/conversation.php:334
 #, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Notification] %s vous a étiqueté"
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s a marqué le %3$s de %2$s comme favori"
 
-#: include/enotify.php:197
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s vous a étiqueté sur %2$s"
+#: include/conversation.php:548 mod/photos.php:1507 mod/profiles.php:354
+msgid "Likes"
+msgstr "Derniers \"J'aime\""
 
-#: include/enotify.php:198
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]vous a étiqueté[/url]."
+#: include/conversation.php:548 mod/photos.php:1507 mod/profiles.php:358
+msgid "Dislikes"
+msgstr "Derniers \"Je n'aime pas\""
 
-#: include/enotify.php:210
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica:Notification] %s partage une nouvelle publication"
+#: include/conversation.php:549 include/conversation.php:1480
+#: mod/photos.php:1508
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] "Participe"
+msgstr[1] "Participent"
 
-#: include/enotify.php:212
-#, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr "%1$s a partagé une nouvelle publication sur %2$s"
+#: include/conversation.php:549 mod/photos.php:1508
+msgid "Not attending"
+msgstr "Ne participe pas"
 
-#: include/enotify.php:213
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr "%1$s [url=%2$s]partage une publication[/url]."
+#: include/conversation.php:549 mod/photos.php:1508
+msgid "Might attend"
+msgstr "Participera peut-être"
 
-#: include/enotify.php:225
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Notify] %1$s vous a sollicité"
+#: include/conversation.php:629 mod/photos.php:1564 src/Object/Post.php:196
+msgid "Select"
+msgstr "Sélectionner"
 
-#: include/enotify.php:227
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s vous a sollicité via %2$s"
+#: include/conversation.php:630 mod/admin.php:1926 mod/photos.php:1565
+#: mod/settings.php:739 src/Module/Contact.php:822 src/Module/Contact.php:1097
+msgid "Delete"
+msgstr "Supprimer"
 
-#: include/enotify.php:228
+#: include/conversation.php:664 src/Object/Post.php:369
+#: src/Object/Post.php:370
 #, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s vous a [url=%2$s]sollicité[/url]."
+msgid "View %s's profile @ %s"
+msgstr "Voir le profil de %s @ %s"
 
-#: include/enotify.php:244
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Notification] %s a étiqueté votre publication"
+#: include/conversation.php:676 src/Object/Post.php:357
+msgid "Categories:"
+msgstr "Catégories :"
 
-#: include/enotify.php:246
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s a étiqueté votre publication sur %2$s"
+#: include/conversation.php:677 src/Object/Post.php:358
+msgid "Filed under:"
+msgstr "Rangé sous :"
 
-#: include/enotify.php:247
+#: include/conversation.php:684 src/Object/Post.php:383
 #, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s a étiqueté [url=%2$s]votre publication[/url]"
+msgid "%s from %s"
+msgstr "%s de %s"
 
-#: include/enotify.php:259
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Notification] Introduction reçue"
+#: include/conversation.php:699
+msgid "View in context"
+msgstr "Voir dans le contexte"
 
-#: include/enotify.php:261
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Vous avez reçu une introduction de '%1$s' sur %2$s"
+#: include/conversation.php:701 include/conversation.php:1148
+#: mod/editpost.php:106 mod/message.php:262 mod/message.php:425
+#: mod/photos.php:1480 mod/wallmessage.php:139 src/Object/Post.php:408
+msgid "Please wait"
+msgstr "Patientez"
 
-#: include/enotify.php:262
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Vous avez reçu [url=%1$s]une introduction[/url] de %2$s."
+#: include/conversation.php:765
+msgid "remove"
+msgstr "enlever"
 
-#: include/enotify.php:267 include/enotify.php:313
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Vous pouvez visiter son profil sur %s"
+#: include/conversation.php:769
+msgid "Delete Selected Items"
+msgstr "Supprimer les éléments sélectionnés"
 
-#: include/enotify.php:269
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction."
+#: include/conversation.php:869 view/theme/frio/theme.php:367
+msgid "Follow Thread"
+msgstr "Suivre le fil"
 
-#: include/enotify.php:277
-msgid "[Friendica:Notify] A new person is sharing with you"
-msgstr "[Notification Friendica] Une nouvelle personne partage avec vous"
+#: include/conversation.php:870 src/Model/Contact.php:949
+msgid "View Status"
+msgstr "Voir les statuts"
 
-#: include/enotify.php:279 include/enotify.php:280
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
-msgstr "%1$s partage avec vous sur %2$s"
+#: include/conversation.php:871 include/conversation.php:887
+#: mod/allfriends.php:75 mod/directory.php:165 mod/dirfind.php:226
+#: mod/match.php:89 mod/suggest.php:85 src/Model/Contact.php:889
+#: src/Model/Contact.php:942 src/Model/Contact.php:950
+msgid "View Profile"
+msgstr "Voir le profil"
 
-#: include/enotify.php:287
-msgid "[Friendica:Notify] You have a new follower"
-msgstr "[Friendica:Notification] Vous avez un nouvel abonné"
+#: include/conversation.php:872 src/Model/Contact.php:951
+msgid "View Photos"
+msgstr "Voir les photos"
 
-#: include/enotify.php:289 include/enotify.php:290
-#, php-format
-msgid "You have a new follower at %2$s : %1$s"
-msgstr "Vous avez un nouvel abonné à %2$s : %1$s"
+#: include/conversation.php:873 src/Model/Contact.php:943
+#: src/Model/Contact.php:952
+msgid "Network Posts"
+msgstr "Publications du réseau"
 
-#: include/enotify.php:302
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica:Notification] Nouvelle suggestion d'amitié"
+#: include/conversation.php:874 src/Model/Contact.php:944
+#: src/Model/Contact.php:953
+msgid "View Contact"
+msgstr "Voir Contact"
+
+#: include/conversation.php:875 src/Model/Contact.php:955
+msgid "Send PM"
+msgstr "Message privé"
+
+#: include/conversation.php:879 src/Model/Contact.php:956
+msgid "Poke"
+msgstr "Sollicitations (pokes)"
 
-#: include/enotify.php:304
+#: include/conversation.php:884 mod/allfriends.php:76 mod/dirfind.php:227
+#: mod/follow.php:145 mod/match.php:90 mod/suggest.php:86
+#: view/theme/vier/theme.php:199 src/Content/Widget.php:61
+#: src/Model/Contact.php:945 src/Module/Contact.php:578
+msgid "Connect/Follow"
+msgstr "Se connecter/Suivre"
+
+#: include/conversation.php:1002
 #, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Vous avez reçu une suggestion de '%1$s' sur %2$s"
+msgid "%s likes this."
+msgstr "%s aime ça."
 
-#: include/enotify.php:305
+#: include/conversation.php:1005
 #, php-format
-msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "Vous avez reçu [url=%1$s]une suggestion[/url] de %3$s pour %2$s."
+msgid "%s doesn't like this."
+msgstr "%s n'aime pas ça."
 
-#: include/enotify.php:311
-msgid "Name:"
-msgstr "Nom :"
+#: include/conversation.php:1008
+#, php-format
+msgid "%s attends."
+msgstr "%s participe"
 
-#: include/enotify.php:312
-msgid "Photo:"
-msgstr "Photo :"
+#: include/conversation.php:1011
+#, php-format
+msgid "%s doesn't attend."
+msgstr "%s ne participe pas"
 
-#: include/enotify.php:315
+#: include/conversation.php:1014
 #, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion."
+msgid "%s attends maybe."
+msgstr "%s participe peut-être"
 
-#: include/enotify.php:323 include/enotify.php:338
-msgid "[Friendica:Notify] Connection accepted"
-msgstr "[Friendica:Notification] Connexion acceptée"
+#: include/conversation.php:1025
+msgid "and"
+msgstr "et"
 
-#: include/enotify.php:325 include/enotify.php:340
+#: include/conversation.php:1031
 #, php-format
-msgid "'%1$s' has accepted your connection request at %2$s"
-msgstr "'%1$s' a accepté votre demande de connexion à %2$s"
+msgid "and %d other people"
+msgstr "et %dautres personnes"
 
-#: include/enotify.php:326 include/enotify.php:341
+#: include/conversation.php:1040
 #, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
-msgstr "%2$s a accepté votre [url=%1$s]demande de connexion[/url]."
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d personnes</span> aiment ça"
 
-#: include/enotify.php:331
-msgid ""
-"You are now mutual friends and may exchange status updates, photos, and "
-"email without restriction."
-msgstr "Vous êtes désormais mutuellement amis, et pouvez échanger des mises-à-jour d'état, des photos, et des messages sans restriction."
+#: include/conversation.php:1041
+#, php-format
+msgid "%s like this."
+msgstr "%s aime ça."
 
-#: include/enotify.php:333
+#: include/conversation.php:1044
 #, php-format
-msgid "Please visit %s if you wish to make any changes to this relationship."
-msgstr "Veuillez visiter %s si vous souhaitez modifier cette relation."
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d personnes</span> n'aiment pas ça"
 
-#: include/enotify.php:346
+#: include/conversation.php:1045
 #, php-format
-msgid ""
-"'%1$s' has chosen to accept you a fan, which restricts some forms of "
-"communication - such as private messaging and some profile interactions. If "
-"this is a celebrity or community page, these settings were applied "
-"automatically."
-msgstr ""
+msgid "%s don't like this."
+msgstr "%s n'aiment pas ça."
 
-#: include/enotify.php:348
+#: include/conversation.php:1048
 #, php-format
-msgid ""
-"'%1$s' may choose to extend this into a two-way or more permissive "
-"relationship in the future."
-msgstr "%1$s peut choisir à l'avenir de rendre cette relation réciproque ou au moins plus permissive."
+msgid "<span  %1$s>%2$d people</span> attend"
+msgstr "<span %1$s>%2$d personnes</span> participent"
 
-#: include/enotify.php:350
+#: include/conversation.php:1049
 #, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
-msgstr "Veuillez visiter %s si vous souhaitez modifier cette relation."
-
-#: include/enotify.php:360 mod/removeme.php:44
-msgid "[Friendica System Notify]"
-msgstr ""
-
-#: include/enotify.php:360
-msgid "registration request"
-msgstr ""
+msgid "%s attend."
+msgstr "%s participent."
 
-#: include/enotify.php:362
+#: include/conversation.php:1052
 #, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
-msgstr "Vous avez reçu une demande d'inscription de %1$s sur %2$s"
+msgid "<span  %1$s>%2$d people</span> don't attend"
+msgstr "<span  %1$s>%2$d personnes</span> ne participent pas"
 
-#: include/enotify.php:363
+#: include/conversation.php:1053
 #, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
-msgstr "%2$s vous a envoyé une [url=%1$s]demande de création de compte[/url]."
+msgid "%s don't attend."
+msgstr "%s ne participent pas."
 
-#: include/enotify.php:368
+#: include/conversation.php:1056
 #, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-msgstr ""
+msgid "<span  %1$s>%2$d people</span> attend maybe"
+msgstr "<span  %1$s>%2$d personnes</span> vont peut-être participer"
 
-#: include/enotify.php:374
+#: include/conversation.php:1057
 #, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr "Veuillez visiter %s pour approuver ou rejeter la demande."
-
-#: include/security.php:81
-msgid "Welcome "
-msgstr "Bienvenue "
-
-#: include/security.php:82
-msgid "Please upload a profile photo."
-msgstr "Merci d'illustrer votre profil d'une image."
-
-#: include/security.php:84
-msgid "Welcome back "
-msgstr "Bienvenue à nouveau, "
+msgid "%s attend maybe."
+msgstr "%sparticipent peut-être"
 
-#: include/security.php:440
-msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
-msgstr "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé."
+#: include/conversation.php:1087
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Visible par <strong>tout le monde</strong>"
 
-#: include/dba.php:59
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Impossible de localiser les informations DNS pour le serveur de base de données '%s'"
+#: include/conversation.php:1088 src/Object/Post.php:811
+msgid "Please enter a image/video/audio/webpage URL:"
+msgstr ""
 
-#: include/api.php:1202
-#, php-format
-msgid "Daily posting limit of %d post reached. The post was rejected."
-msgid_plural "Daily posting limit of %d posts reached. The post was rejected."
-msgstr[0] ""
-msgstr[1] ""
+#: include/conversation.php:1089
+msgid "Tag term:"
+msgstr "Étiquette :"
 
-#: include/api.php:1226
-#, php-format
-msgid "Weekly posting limit of %d post reached. The post was rejected."
-msgid_plural ""
-"Weekly posting limit of %d posts reached. The post was rejected."
-msgstr[0] ""
-msgstr[1] ""
+#: include/conversation.php:1090 mod/filer.php:34
+msgid "Save to Folder:"
+msgstr "Sauver dans le Dossier :"
 
-#: include/api.php:1250
-#, php-format
-msgid "Monthly posting limit of %d post reached. The post was rejected."
-msgstr ""
+#: include/conversation.php:1091
+msgid "Where are you right now?"
+msgstr "Où êtes-vous actuellement ?"
 
-#: include/api.php:4522 mod/photos.php:88 mod/photos.php:194
-#: mod/photos.php:722 mod/photos.php:1149 mod/photos.php:1166
-#: mod/photos.php:1684 mod/profile_photo.php:85 mod/profile_photo.php:93
-#: mod/profile_photo.php:101 mod/profile_photo.php:211
-#: mod/profile_photo.php:302 mod/profile_photo.php:312 src/Model/User.php:553
-#: src/Model/User.php:561 src/Model/User.php:569
-msgid "Profile Photos"
-msgstr "Photos du profil"
+#: include/conversation.php:1092
+msgid "Delete item(s)?"
+msgstr "Supprimer les élément(s) ?"
 
-#: include/conversation.php:144 include/conversation.php:282
-#: include/text.php:1749 src/Model/Item.php:1970
-msgid "event"
-msgstr "événement"
+#: include/conversation.php:1124
+msgid "New Post"
+msgstr "Nouvelle publication"
 
-#: include/conversation.php:147 include/conversation.php:157
-#: include/conversation.php:285 include/conversation.php:294
-#: mod/subthread.php:97 mod/tagger.php:72 src/Model/Item.php:1968
-#: src/Protocol/Diaspora.php:1957
-msgid "status"
-msgstr "le statut"
+#: include/conversation.php:1127
+msgid "Share"
+msgstr "Partager"
 
-#: include/conversation.php:152 include/conversation.php:290
-#: include/text.php:1751 mod/subthread.php:97 mod/tagger.php:72
-#: src/Model/Item.php:1968
-msgid "photo"
-msgstr "photo"
+#: include/conversation.php:1128 mod/editpost.php:92 mod/message.php:260
+#: mod/message.php:422 mod/wallmessage.php:137
+msgid "Upload photo"
+msgstr "Joindre photo"
 
-#: include/conversation.php:164 src/Model/Item.php:1841
-#: src/Protocol/Diaspora.php:1953
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s aime %3$s de %2$s"
+#: include/conversation.php:1129 mod/editpost.php:93
+msgid "upload photo"
+msgstr "envoi image"
 
-#: include/conversation.php:167 src/Model/Item.php:1846
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s n'aime pas %3$s de %2$s"
+#: include/conversation.php:1130 mod/editpost.php:94
+msgid "Attach file"
+msgstr "Joindre fichier"
 
-#: include/conversation.php:170
-#, php-format
-msgid "%1$s attends %2$s's %3$s"
-msgstr "%1$s participe à %3$s de %2$s"
+#: include/conversation.php:1131 mod/editpost.php:95
+msgid "attach file"
+msgstr "ajout fichier"
 
-#: include/conversation.php:173
-#, php-format
-msgid "%1$s doesn't attend %2$s's %3$s"
-msgstr "%1$s ne participe pas à %3$s de %2$s"
+#: include/conversation.php:1132 src/Object/Post.php:803
+msgid "Bold"
+msgstr "Gras"
 
-#: include/conversation.php:176
-#, php-format
-msgid "%1$s attends maybe %2$s's %3$s"
-msgstr "%1$s participe peut-être à %3$s de %2$s"
+#: include/conversation.php:1133 src/Object/Post.php:804
+msgid "Italic"
+msgstr "Italique"
 
-#: include/conversation.php:209
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s est désormais lié à %2$s"
+#: include/conversation.php:1134 src/Object/Post.php:805
+msgid "Underline"
+msgstr "Souligné"
 
-#: include/conversation.php:250
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s a sollicité %2$s"
+#: include/conversation.php:1135 src/Object/Post.php:806
+msgid "Quote"
+msgstr "Citation"
 
-#: include/conversation.php:304 mod/tagger.php:110
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s a étiqueté %3$s de %2$s avec %4$s"
+#: include/conversation.php:1136 src/Object/Post.php:807
+msgid "Code"
+msgstr "Code"
 
-#: include/conversation.php:331
-msgid "post/item"
-msgstr "publication/élément"
+#: include/conversation.php:1137 src/Object/Post.php:808
+msgid "Image"
+msgstr "Image"
 
-#: include/conversation.php:332
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s a marqué le %3$s de %2$s comme favori"
+#: include/conversation.php:1138 src/Object/Post.php:809
+msgid "Link"
+msgstr "Lien"
 
-#: include/conversation.php:608 mod/photos.php:1501 mod/profiles.php:355
-msgid "Likes"
-msgstr "Derniers \"J'aime\""
+#: include/conversation.php:1139 src/Object/Post.php:810
+msgid "Link or Media"
+msgstr "Lien ou média"
 
-#: include/conversation.php:608 mod/photos.php:1501 mod/profiles.php:359
-msgid "Dislikes"
-msgstr "Derniers \"Je n'aime pas\""
+#: include/conversation.php:1140 mod/editpost.php:102
+msgid "Set your location"
+msgstr "Définir votre localisation"
 
-#: include/conversation.php:609 include/conversation.php:1639
-#: mod/photos.php:1502
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] "Participe"
-msgstr[1] "Participent"
+#: include/conversation.php:1141 mod/editpost.php:103
+msgid "set location"
+msgstr "spéc. localisation"
 
-#: include/conversation.php:609 mod/photos.php:1502
-msgid "Not attending"
-msgstr "Ne participe pas"
+#: include/conversation.php:1142 mod/editpost.php:104
+msgid "Clear browser location"
+msgstr "Effacer la localisation du navigateur"
 
-#: include/conversation.php:609 mod/photos.php:1502
-msgid "Might attend"
-msgstr "Participera peut-être"
+#: include/conversation.php:1143 mod/editpost.php:105
+msgid "clear location"
+msgstr "supp. localisation"
 
-#: include/conversation.php:721 mod/photos.php:1569 src/Object/Post.php:192
-msgid "Select"
-msgstr "Sélectionner"
+#: include/conversation.php:1145 mod/editpost.php:120
+msgid "Set title"
+msgstr "Définir un titre"
 
-#: include/conversation.php:722 mod/photos.php:1570 mod/contacts.php:830
-#: mod/contacts.php:1035 mod/admin.php:1827 mod/settings.php:730
-#: src/Object/Post.php:187
-msgid "Delete"
-msgstr "Supprimer"
+#: include/conversation.php:1147 mod/editpost.php:122
+msgid "Categories (comma-separated list)"
+msgstr "Catégories (séparées par des virgules)"
 
-#: include/conversation.php:760 src/Object/Post.php:371
-#: src/Object/Post.php:372
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Voir le profil de %s @ %s"
+#: include/conversation.php:1149 mod/editpost.php:107
+msgid "Permission settings"
+msgstr "Réglages des permissions"
 
-#: include/conversation.php:772 src/Object/Post.php:359
-msgid "Categories:"
-msgstr "Catégories :"
+#: include/conversation.php:1150 mod/editpost.php:137
+msgid "permissions"
+msgstr "permissions"
 
-#: include/conversation.php:773 src/Object/Post.php:360
-msgid "Filed under:"
-msgstr "Rangé sous :"
+#: include/conversation.php:1159 mod/editpost.php:117
+msgid "Public post"
+msgstr "Publication publique"
 
-#: include/conversation.php:780 src/Object/Post.php:385
-#, php-format
-msgid "%s from %s"
-msgstr "%s de %s"
+#: include/conversation.php:1163 mod/editpost.php:128 mod/events.php:555
+#: mod/photos.php:1498 mod/photos.php:1537 mod/photos.php:1597
+#: src/Object/Post.php:812
+msgid "Preview"
+msgstr "Aperçu"
 
-#: include/conversation.php:795
-msgid "View in context"
-msgstr "Voir dans le contexte"
+#: include/conversation.php:1167 include/items.php:400 mod/fbrowser.php:104
+#: mod/fbrowser.php:135 mod/dfrn_request.php:656 mod/editpost.php:131
+#: mod/follow.php:163 mod/message.php:153 mod/photos.php:256
+#: mod/photos.php:328 mod/settings.php:679 mod/settings.php:705
+#: mod/suggest.php:43 mod/tagrm.php:19 mod/tagrm.php:112 mod/unfollow.php:132
+#: mod/videos.php:141 src/Module/Contact.php:450
+msgid "Cancel"
+msgstr "Annuler"
 
-#: include/conversation.php:797 include/conversation.php:1312
-#: mod/wallmessage.php:145 mod/editpost.php:125 mod/photos.php:1473
-#: mod/message.php:245 mod/message.php:414 src/Object/Post.php:410
-msgid "Please wait"
-msgstr "Patientez"
+#: include/conversation.php:1172
+msgid "Post to Groups"
+msgstr "Publier aux groupes"
 
-#: include/conversation.php:868
-msgid "remove"
-msgstr "enlever"
+#: include/conversation.php:1173
+msgid "Post to Contacts"
+msgstr "Publier aux contacts"
 
-#: include/conversation.php:872
-msgid "Delete Selected Items"
-msgstr "Supprimer les éléments sélectionnés"
+#: include/conversation.php:1174
+msgid "Private post"
+msgstr "Message privé"
 
-#: include/conversation.php:1017 view/theme/frio/theme.php:352
-msgid "Follow Thread"
-msgstr "Suivre le fil"
+#: include/conversation.php:1179 mod/editpost.php:135
+#: src/Model/Profile.php:358
+msgid "Message"
+msgstr "Message"
 
-#: include/conversation.php:1018 src/Model/Contact.php:662
-msgid "View Status"
-msgstr "Voir les statuts"
+#: include/conversation.php:1180 mod/editpost.php:136
+msgid "Browser"
+msgstr "Navigateur"
 
-#: include/conversation.php:1019 include/conversation.php:1035
-#: mod/allfriends.php:73 mod/suggest.php:82 mod/match.php:89
-#: mod/directory.php:159 mod/dirfind.php:217 src/Model/Contact.php:602
-#: src/Model/Contact.php:615 src/Model/Contact.php:663
-msgid "View Profile"
-msgstr "Voir le profil"
+#: include/conversation.php:1451
+msgid "View all"
+msgstr "Voir tout"
 
-#: include/conversation.php:1020 src/Model/Contact.php:664
-msgid "View Photos"
-msgstr "Voir les photos"
+#: include/conversation.php:1474
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "Like"
+msgstr[1] "Likes"
 
-#: include/conversation.php:1021 src/Model/Contact.php:665
-msgid "Network Posts"
-msgstr "Publications du réseau"
+#: include/conversation.php:1477
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "Dislike"
+msgstr[1] "Dislikes"
 
-#: include/conversation.php:1022 src/Model/Contact.php:666
-msgid "View Contact"
-msgstr "Voir Contact"
+#: include/conversation.php:1483
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] "Ne participe pas"
+msgstr[1] "Ne participent pas"
 
-#: include/conversation.php:1023 src/Model/Contact.php:668
-msgid "Send PM"
-msgstr "Message privé"
+#: include/conversation.php:1486 src/Content/ContactSelector.php:147
+msgid "Undecided"
+msgid_plural "Undecided"
+msgstr[0] "Indécis"
+msgstr[1] "Indécis"
 
-#: include/conversation.php:1027 src/Model/Contact.php:669
-msgid "Poke"
-msgstr "Sollicitations (pokes)"
+#: include/enotify.php:53
+msgid "Friendica Notification"
+msgstr "Notification Friendica"
 
-#: include/conversation.php:1032 mod/allfriends.php:74 mod/suggest.php:83
-#: mod/match.php:90 mod/contacts.php:596 mod/dirfind.php:218
-#: mod/follow.php:143 view/theme/vier/theme.php:201 src/Content/Widget.php:61
-#: src/Model/Contact.php:616
-msgid "Connect/Follow"
-msgstr "Se connecter/Suivre"
+#: include/enotify.php:56
+msgid "Thank You,"
+msgstr "Merci, "
 
-#: include/conversation.php:1151
+#: include/enotify.php:59
 #, php-format
-msgid "%s likes this."
-msgstr "%s aime ça."
+msgid "%1$s, %2$s Administrator"
+msgstr "%1$s,, l'administrateur de %2$s"
 
-#: include/conversation.php:1154
+#: include/enotify.php:61
 #, php-format
-msgid "%s doesn't like this."
-msgstr "%s n'aime pas ça."
+msgid "%s Administrator"
+msgstr "L'administrateur de %s"
 
-#: include/conversation.php:1157
+#: include/enotify.php:124
 #, php-format
-msgid "%s attends."
-msgstr "%s participe"
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notification] Nouveau courriel reçu sur %s"
 
-#: include/conversation.php:1160
+#: include/enotify.php:126
 #, php-format
-msgid "%s doesn't attend."
-msgstr "%s ne participe pas"
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s vous a envoyé un nouveau message privé sur %2$s."
 
-#: include/conversation.php:1163
+#: include/enotify.php:127
+msgid "a private message"
+msgstr "un message privé"
+
+#: include/enotify.php:127
 #, php-format
-msgid "%s attends maybe."
-msgstr "%s participe peut-être"
+msgid "%1$s sent you %2$s."
+msgstr "%1$s vous a envoyé %2$s."
 
-#: include/conversation.php:1174
-msgid "and"
-msgstr "et"
+#: include/enotify.php:129
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Merci de visiter %s pour voir vos messages privés et/ou y répondre."
 
-#: include/conversation.php:1180
+#: include/enotify.php:163
 #, php-format
-msgid "and %d other people"
-msgstr ""
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s a commenté sur [url=%2$s]un %3$s[/url]"
 
-#: include/conversation.php:1189
+#: include/enotify.php:171
 #, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d personnes</span> aiment ça"
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s a commenté sur [url=%2$s]le %4$s de %3$s[/url]"
 
-#: include/conversation.php:1190
+#: include/enotify.php:181
 #, php-format
-msgid "%s like this."
-msgstr "%s aime ça."
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s commented on [url=%2$s]your %3$s[/url]"
 
-#: include/conversation.php:1193
+#: include/enotify.php:193
 #, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d personnes</span> n'aiment pas ça"
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica:Notification] Commentaire de %2$s sur la conversation #%1$d"
 
-#: include/conversation.php:1194
+#: include/enotify.php:195
 #, php-format
-msgid "%s don't like this."
-msgstr "%s n'aiment pas ça."
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s a commenté un élément que vous suivez."
 
-#: include/conversation.php:1197
+#: include/enotify.php:198 include/enotify.php:213 include/enotify.php:228
+#: include/enotify.php:243 include/enotify.php:262 include/enotify.php:278
 #, php-format
-msgid "<span  %1$s>%2$d people</span> attend"
-msgstr "<span %1$s>%2$d personnes</span> participent"
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Merci de visiter %s pour voir la conversation et/ou y répondre."
 
-#: include/conversation.php:1198
+#: include/enotify.php:205
 #, php-format
-msgid "%s attend."
-msgstr "%s participent."
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Notification] %s a posté sur votre mur"
 
-#: include/conversation.php:1201
+#: include/enotify.php:207
 #, php-format
-msgid "<span  %1$s>%2$d people</span> don't attend"
-msgstr "<span  %1$s>%2$d personnes</span> ne participent pas"
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s a publié sur votre mur à %2$s"
 
-#: include/conversation.php:1202
+#: include/enotify.php:208
 #, php-format
-msgid "%s don't attend."
-msgstr "%s ne participent pas."
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s a posté sur [url=%2$s]votre mur[/url]"
 
-#: include/conversation.php:1205
+#: include/enotify.php:220
 #, php-format
-msgid "<span  %1$s>%2$d people</span> attend maybe"
-msgstr "<span  %1$s>%2$d personnes</span> vont peut-être participer"
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notification] %s vous a étiqueté"
 
-#: include/conversation.php:1206
+#: include/enotify.php:222
 #, php-format
-msgid "%s attend maybe."
-msgstr ""
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s vous a étiqueté sur %2$s"
 
-#: include/conversation.php:1236 include/conversation.php:1252
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Visible par <strong>tout le monde</strong>"
+#: include/enotify.php:223
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]vous a étiqueté[/url]."
 
-#: include/conversation.php:1237 include/conversation.php:1253
-#: mod/wallmessage.php:120 mod/wallmessage.php:127 mod/message.php:181
-#: mod/message.php:188 mod/message.php:324 mod/message.php:331
-msgid "Please enter a link URL:"
-msgstr "Entrez un lien web :"
+#: include/enotify.php:235
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica:Notification] %s partage une nouvelle publication"
 
-#: include/conversation.php:1238 include/conversation.php:1254
-msgid "Please enter a video link/URL:"
-msgstr "Entrez un lien/URL video :"
+#: include/enotify.php:237
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s a partagé une nouvelle publication sur %2$s"
 
-#: include/conversation.php:1239 include/conversation.php:1255
-msgid "Please enter an audio link/URL:"
-msgstr "Entrez un lien/URL audio :"
+#: include/enotify.php:238
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]partage une publication[/url]."
 
-#: include/conversation.php:1240 include/conversation.php:1256
-msgid "Tag term:"
-msgstr "Étiquette :"
+#: include/enotify.php:250
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Notify] %1$s vous a sollicité"
 
-#: include/conversation.php:1241 include/conversation.php:1257
-#: mod/filer.php:34
-msgid "Save to Folder:"
-msgstr "Sauver dans le Dossier :"
+#: include/enotify.php:252
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s vous a sollicité via %2$s"
 
-#: include/conversation.php:1242 include/conversation.php:1258
-msgid "Where are you right now?"
-msgstr "Où êtes-vous actuellement ?"
+#: include/enotify.php:253
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s vous a [url=%2$s]sollicité[/url]."
 
-#: include/conversation.php:1243
-msgid "Delete item(s)?"
-msgstr "Supprimer les élément(s) ?"
+#: include/enotify.php:270
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notification] %s a étiqueté votre publication"
 
-#: include/conversation.php:1290
-msgid "New Post"
-msgstr ""
+#: include/enotify.php:272
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s a étiqueté votre publication sur %2$s"
 
-#: include/conversation.php:1293
-msgid "Share"
-msgstr "Partager"
+#: include/enotify.php:273
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s a étiqueté [url=%2$s]votre publication[/url]"
 
-#: include/conversation.php:1294 mod/wallmessage.php:143 mod/editpost.php:111
-#: mod/message.php:243 mod/message.php:411
-msgid "Upload photo"
-msgstr "Joindre photo"
+#: include/enotify.php:285
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Notification] Introduction reçue"
 
-#: include/conversation.php:1295 mod/editpost.php:112
-msgid "upload photo"
-msgstr "envoi image"
+#: include/enotify.php:287
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Vous avez reçu une introduction de '%1$s' sur %2$s"
 
-#: include/conversation.php:1296 mod/editpost.php:113
-msgid "Attach file"
-msgstr "Joindre fichier"
+#: include/enotify.php:288
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Vous avez reçu [url=%1$s]une introduction[/url] de %2$s."
 
-#: include/conversation.php:1297 mod/editpost.php:114
-msgid "attach file"
-msgstr "ajout fichier"
+#: include/enotify.php:293 include/enotify.php:339
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Vous pouvez visiter son profil sur %s"
 
-#: include/conversation.php:1298 mod/wallmessage.php:144 mod/editpost.php:115
-#: mod/message.php:244 mod/message.php:412
-msgid "Insert web link"
-msgstr "Insérer lien web"
+#: include/enotify.php:295
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction."
 
-#: include/conversation.php:1299 mod/editpost.php:116
-msgid "web link"
-msgstr "lien web"
+#: include/enotify.php:302
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr "[Notification Friendica] Une nouvelle personne partage avec vous"
 
-#: include/conversation.php:1300 mod/editpost.php:117
-msgid "Insert video link"
-msgstr "Insérer un lien video"
+#: include/enotify.php:304 include/enotify.php:305
+#, php-format
+msgid "%1$s is sharing with you at %2$s"
+msgstr "%1$s partage avec vous sur %2$s"
 
-#: include/conversation.php:1301 mod/editpost.php:118
-msgid "video link"
-msgstr "lien vidéo"
+#: include/enotify.php:312
+msgid "[Friendica:Notify] You have a new follower"
+msgstr "[Friendica:Notification] Vous avez un nouvel abonné"
 
-#: include/conversation.php:1302 mod/editpost.php:119
-msgid "Insert audio link"
-msgstr "Insérer un lien audio"
+#: include/enotify.php:314 include/enotify.php:315
+#, php-format
+msgid "You have a new follower at %2$s : %1$s"
+msgstr "Vous avez un nouvel abonné à %2$s : %1$s"
 
-#: include/conversation.php:1303 mod/editpost.php:120
-msgid "audio link"
-msgstr "lien audio"
+#: include/enotify.php:328
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Notification] Nouvelle suggestion d'amitié"
 
-#: include/conversation.php:1304 mod/editpost.php:121
-msgid "Set your location"
-msgstr "Définir votre localisation"
+#: include/enotify.php:330
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Vous avez reçu une suggestion de '%1$s' sur %2$s"
 
-#: include/conversation.php:1305 mod/editpost.php:122
-msgid "set location"
-msgstr "spéc. localisation"
+#: include/enotify.php:331
+#, php-format
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "Vous avez reçu [url=%1$s]une suggestion[/url] de %3$s pour %2$s."
 
-#: include/conversation.php:1306 mod/editpost.php:123
-msgid "Clear browser location"
-msgstr "Effacer la localisation du navigateur"
+#: include/enotify.php:337
+msgid "Name:"
+msgstr "Nom :"
 
-#: include/conversation.php:1307 mod/editpost.php:124
-msgid "clear location"
-msgstr "supp. localisation"
+#: include/enotify.php:338
+msgid "Photo:"
+msgstr "Photo :"
 
-#: include/conversation.php:1309 mod/editpost.php:138
-msgid "Set title"
-msgstr "Définir un titre"
+#: include/enotify.php:341
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion."
 
-#: include/conversation.php:1311 mod/editpost.php:140
-msgid "Categories (comma-separated list)"
-msgstr "Catégories (séparées par des virgules)"
+#: include/enotify.php:349 include/enotify.php:364
+msgid "[Friendica:Notify] Connection accepted"
+msgstr "[Friendica:Notification] Connexion acceptée"
 
-#: include/conversation.php:1313 mod/editpost.php:126
-msgid "Permission settings"
-msgstr "Réglages des permissions"
+#: include/enotify.php:351 include/enotify.php:366
+#, php-format
+msgid "'%1$s' has accepted your connection request at %2$s"
+msgstr "'%1$s' a accepté votre demande de connexion à %2$s"
 
-#: include/conversation.php:1314 mod/editpost.php:155
-msgid "permissions"
-msgstr "permissions"
+#: include/enotify.php:352 include/enotify.php:367
+#, php-format
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+msgstr "%2$s a accepté votre [url=%1$s]demande de connexion[/url]."
 
-#: include/conversation.php:1322 mod/editpost.php:135
-msgid "Public post"
-msgstr "Publication publique"
+#: include/enotify.php:357
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and "
+"email without restriction."
+msgstr "Vous êtes désormais mutuellement amis, et pouvez échanger des mises-à-jour d'état, des photos, et des messages sans restriction."
 
-#: include/conversation.php:1326 mod/editpost.php:146 mod/photos.php:1492
-#: mod/photos.php:1531 mod/photos.php:1604 mod/events.php:528
-#: src/Object/Post.php:813
-msgid "Preview"
-msgstr "Aperçu"
+#: include/enotify.php:359
+#, php-format
+msgid "Please visit %s if you wish to make any changes to this relationship."
+msgstr "Veuillez visiter %s si vous souhaitez modifier cette relation."
 
-#: include/conversation.php:1330 include/items.php:387 mod/fbrowser.php:103
-#: mod/fbrowser.php:134 mod/suggest.php:41 mod/tagrm.php:19 mod/tagrm.php:99
-#: mod/editpost.php:149 mod/photos.php:248 mod/photos.php:324
-#: mod/videos.php:147 mod/contacts.php:475 mod/unfollow.php:117
-#: mod/follow.php:161 mod/message.php:141 mod/dfrn_request.php:658
-#: mod/settings.php:670 mod/settings.php:696
-msgid "Cancel"
-msgstr "Annuler"
+#: include/enotify.php:372
+#, php-format
+msgid ""
+"'%1$s' has chosen to accept you a fan, which restricts some forms of "
+"communication - such as private messaging and some profile interactions. If "
+"this is a celebrity or community page, these settings were applied "
+"automatically."
+msgstr ""
 
-#: include/conversation.php:1335
-msgid "Post to Groups"
-msgstr "Publier aux groupes"
+#: include/enotify.php:374
+#, php-format
+msgid ""
+"'%1$s' may choose to extend this into a two-way or more permissive "
+"relationship in the future."
+msgstr "%1$s peut choisir à l'avenir de rendre cette relation réciproque ou au moins plus permissive."
 
-#: include/conversation.php:1336
-msgid "Post to Contacts"
-msgstr "Publier aux contacts"
+#: include/enotify.php:376
+#, php-format
+msgid "Please visit %s  if you wish to make any changes to this relationship."
+msgstr "Veuillez visiter %s si vous souhaitez modifier cette relation."
 
-#: include/conversation.php:1337
-msgid "Private post"
-msgstr "Message privé"
+#: include/enotify.php:386 mod/removeme.php:47
+msgid "[Friendica System Notify]"
+msgstr ""
 
-#: include/conversation.php:1342 mod/editpost.php:153
-#: src/Model/Profile.php:338
-msgid "Message"
-msgstr "Message"
+#: include/enotify.php:386
+msgid "registration request"
+msgstr "demande d'inscription"
 
-#: include/conversation.php:1343 mod/editpost.php:154
-msgid "Browser"
-msgstr "Navigateur"
+#: include/enotify.php:388
+#, php-format
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr "Vous avez reçu une demande d'inscription de %1$s sur %2$s"
 
-#: include/conversation.php:1610
-msgid "View all"
-msgstr "Voir tout"
+#: include/enotify.php:389
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+msgstr "%2$s vous a envoyé une [url=%1$s]demande de création de compte[/url]."
 
-#: include/conversation.php:1633
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] "Like"
-msgstr[1] "Likes"
+#: include/enotify.php:394
+#, php-format
+msgid ""
+"Full Name:\t%s\n"
+"Site Location:\t%s\n"
+"Login Name:\t%s (%s)"
+msgstr ""
 
-#: include/conversation.php:1636
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] "Dislike"
-msgstr[1] "Dislikes"
+#: include/enotify.php:400
+#, php-format
+msgid "Please visit %s to approve or reject the request."
+msgstr "Veuillez visiter %s pour approuver ou rejeter la demande."
 
-#: include/conversation.php:1642
-msgid "Not Attending"
-msgid_plural "Not Attending"
-msgstr[0] "Ne participe pas"
-msgstr[1] "Ne participent pas"
-
-#: include/conversation.php:1645 src/Content/ContactSelector.php:125
-msgid "Undecided"
-msgid_plural "Undecided"
-msgstr[0] "Indécis"
-msgstr[1] "Indécis"
-
-#: include/items.php:342 mod/notice.php:22 mod/viewsrc.php:21
-#: mod/admin.php:277 mod/admin.php:1883 mod/admin.php:2131 mod/display.php:72
-#: mod/display.php:255 mod/display.php:356
+#: include/items.php:357 mod/admin.php:292 mod/admin.php:1984
+#: mod/admin.php:2230 mod/display.php:73 mod/display.php:251
+#: mod/display.php:347 mod/notice.php:21 mod/viewsrc.php:22
 msgid "Item not found."
 msgstr "Élément introuvable."
 
-#: include/items.php:382
+#: include/items.php:395
 msgid "Do you really want to delete this item?"
 msgstr "Voulez-vous vraiment supprimer cet élément ?"
 
-#: include/items.php:384 mod/api.php:110 mod/suggest.php:38
-#: mod/contacts.php:472 mod/follow.php:150 mod/message.php:138
-#: mod/dfrn_request.php:648 mod/profiles.php:543 mod/profiles.php:546
-#: mod/profiles.php:568 mod/register.php:238 mod/settings.php:1094
-#: mod/settings.php:1100 mod/settings.php:1107 mod/settings.php:1111
+#: include/items.php:397 mod/api.php:111 mod/dfrn_request.php:646
+#: mod/follow.php:152 mod/message.php:150 mod/profiles.php:540
+#: mod/profiles.php:543 mod/profiles.php:565 mod/register.php:237
+#: mod/settings.php:1098 mod/settings.php:1104 mod/settings.php:1111
 #: mod/settings.php:1115 mod/settings.php:1119 mod/settings.php:1123
-#: mod/settings.php:1127 mod/settings.php:1147 mod/settings.php:1148
-#: mod/settings.php:1149 mod/settings.php:1150 mod/settings.php:1151
+#: mod/settings.php:1127 mod/settings.php:1131 mod/settings.php:1151
+#: mod/settings.php:1152 mod/settings.php:1153 mod/settings.php:1154
+#: mod/settings.php:1155 mod/suggest.php:40 src/Module/Contact.php:447
 msgid "Yes"
 msgstr "Oui"
 
-#: include/items.php:401 mod/allfriends.php:21 mod/api.php:35 mod/api.php:40
-#: mod/attach.php:38 mod/common.php:26 mod/nogroup.php:28
-#: mod/repair_ostatus.php:13 mod/suggest.php:60 mod/uimport.php:28
-#: mod/manage.php:131 mod/wall_attach.php:74 mod/wall_attach.php:77
-#: mod/poke.php:150 mod/regmod.php:108 mod/viewcontacts.php:57
-#: mod/wall_upload.php:103 mod/wall_upload.php:106 mod/wallmessage.php:16
-#: mod/wallmessage.php:40 mod/wallmessage.php:79 mod/wallmessage.php:103
-#: mod/editpost.php:18 mod/fsuggest.php:80 mod/notes.php:30 mod/photos.php:174
-#: mod/photos.php:1051 mod/cal.php:304 mod/contacts.php:386
-#: mod/delegate.php:25 mod/delegate.php:43 mod/delegate.php:54
-#: mod/events.php:194 mod/ostatus_subscribe.php:16 mod/profile_photo.php:30
-#: mod/profile_photo.php:176 mod/profile_photo.php:187
-#: mod/profile_photo.php:200 mod/unfollow.php:15 mod/unfollow.php:57
-#: mod/unfollow.php:90 mod/dirfind.php:25 mod/follow.php:17 mod/follow.php:54
-#: mod/follow.php:118 mod/invite.php:20 mod/invite.php:111 mod/network.php:32
-#: mod/crepair.php:98 mod/message.php:59 mod/message.php:104 mod/group.php:26
-#: mod/dfrn_confirm.php:68 mod/item.php:160 mod/notifications.php:73
-#: mod/profiles.php:182 mod/profiles.php:513 mod/register.php:54
-#: mod/settings.php:43 mod/settings.php:142 mod/settings.php:659 index.php:436
+#: include/items.php:414 mod/allfriends.php:23 mod/api.php:36 mod/api.php:41
+#: mod/attach.php:39 mod/cal.php:303 mod/common.php:28 mod/crepair.php:99
+#: mod/delegate.php:29 mod/delegate.php:47 mod/delegate.php:58
+#: mod/dfrn_confirm.php:68 mod/dirfind.php:27 mod/editpost.php:19
+#: mod/events.php:197 mod/follow.php:56 mod/follow.php:120 mod/fsuggest.php:80
+#: mod/group.php:28 mod/invite.php:23 mod/invite.php:109 mod/item.php:167
+#: mod/manage.php:131 mod/message.php:56 mod/message.php:101
+#: mod/network.php:36 mod/nogroup.php:23 mod/notes.php:33
+#: mod/notifications.php:69 mod/ostatus_subscribe.php:17 mod/photos.php:185
+#: mod/photos.php:1060 mod/poke.php:141 mod/profile_photo.php:31
+#: mod/profile_photo.php:178 mod/profile_photo.php:200 mod/profiles.php:181
+#: mod/profiles.php:513 mod/register.php:53 mod/regmod.php:91
+#: mod/repair_ostatus.php:16 mod/settings.php:46 mod/settings.php:152
+#: mod/settings.php:668 mod/suggest.php:61 mod/uimport.php:16
+#: mod/unfollow.php:20 mod/unfollow.php:75 mod/unfollow.php:107
+#: mod/viewcontacts.php:62 mod/wall_attach.php:80 mod/wall_attach.php:83
+#: mod/wall_upload.php:105 mod/wall_upload.php:108 mod/wallmessage.php:17
+#: mod/wallmessage.php:41 mod/wallmessage.php:80 mod/wallmessage.php:104
+#: src/Module/Contact.php:363 src/App.php:1876
 msgid "Permission denied."
 msgstr "Permission refusée."
 
-#: include/items.php:471 src/Content/Feature.php:96
+#: include/items.php:485 src/Content/Feature.php:96
 msgid "Archives"
 msgstr "Archives"
 
-#: include/items.php:477 view/theme/vier/theme.php:258
-#: src/Content/ForumManager.php:130 src/Content/Widget.php:317
-#: src/Object/Post.php:438 src/App.php:525
+#: include/items.php:491 view/theme/vier/theme.php:256
+#: src/Content/ForumManager.php:135 src/Content/Widget.php:307
+#: src/Object/Post.php:436 src/App.php:785
 msgid "show more"
 msgstr "montrer plus"
 
-#: include/text.php:303
-msgid "newer"
-msgstr "Plus récent"
-
-#: include/text.php:304
-msgid "older"
-msgstr "Plus ancien"
-
-#: include/text.php:309
-msgid "first"
-msgstr "premier"
-
-#: include/text.php:310
-msgid "prev"
-msgstr "précédent"
-
-#: include/text.php:344
-msgid "next"
-msgstr "suivant"
-
-#: include/text.php:345
-msgid "last"
-msgstr "dernier"
-
-#: include/text.php:399
+#: include/text.php:274
 msgid "Loading more entries..."
 msgstr "Chargement de résultats supplémentaires..."
 
-#: include/text.php:400
+#: include/text.php:275
 msgid "The end"
 msgstr "Fin"
 
-#: include/text.php:885
+#: include/text.php:510
 msgid "No contacts"
 msgstr "Aucun contact"
 
-#: include/text.php:909
+#: include/text.php:534
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
 msgstr[0] "%d contact"
 msgstr[1] "%d contacts"
 
-#: include/text.php:922
+#: include/text.php:547
 msgid "View Contacts"
 msgstr "Voir les contacts"
 
-#: include/text.php:1011 mod/filer.php:35 mod/editpost.php:110
-#: mod/notes.php:67
+#: include/text.php:632 mod/editpost.php:91 mod/filer.php:35 mod/notes.php:54
 msgid "Save"
 msgstr "Sauver"
 
-#: include/text.php:1011
+#: include/text.php:632
 msgid "Follow"
-msgstr ""
+msgstr "S'abonner"
 
-#: include/text.php:1017 mod/search.php:155 src/Content/Nav.php:142
+#: include/text.php:638 mod/search.php:163 src/Content/Nav.php:194
 msgid "Search"
 msgstr "Recherche"
 
-#: include/text.php:1020 src/Content/Nav.php:58
+#: include/text.php:641 src/Content/Nav.php:76
 msgid "@name, !forum, #tags, content"
 msgstr "@nom, !forum, #tags, contenu"
 
-#: include/text.php:1026 src/Content/Nav.php:145
+#: include/text.php:647 src/Content/Nav.php:197
 msgid "Full Text"
 msgstr "Texte Entier"
 
-#: include/text.php:1027 src/Content/Widget/TagCloud.php:54
-#: src/Content/Nav.php:146
+#: include/text.php:648 src/Content/Widget/TagCloud.php:54
+#: src/Content/Nav.php:198
 msgid "Tags"
 msgstr "Tags"
 
-#: include/text.php:1028 mod/viewcontacts.php:131 mod/contacts.php:814
-#: mod/contacts.php:875 view/theme/frio/theme.php:270 src/Content/Nav.php:147
-#: src/Content/Nav.php:213 src/Model/Profile.php:955 src/Model/Profile.php:958
+#: include/text.php:649 mod/viewcontacts.php:129 view/theme/frio/theme.php:282
+#: src/Content/Nav.php:199 src/Content/Nav.php:265 src/Model/Profile.php:968
+#: src/Model/Profile.php:971 src/Module/Contact.php:806
+#: src/Module/Contact.php:876
 msgid "Contacts"
 msgstr "Contacts"
 
-#: include/text.php:1031 view/theme/vier/theme.php:253
-#: src/Content/ForumManager.php:125 src/Content/Nav.php:151
+#: include/text.php:652 view/theme/vier/theme.php:251
+#: src/Content/ForumManager.php:130 src/Content/Nav.php:203
 msgid "Forums"
 msgstr "Forums"
 
-#: include/text.php:1075
+#: include/text.php:696
 msgid "poke"
 msgstr "titiller"
 
-#: include/text.php:1075
+#: include/text.php:696
 msgid "poked"
 msgstr "a titillé"
 
-#: include/text.php:1076
+#: include/text.php:697
 msgid "ping"
 msgstr "attirer l'attention"
 
-#: include/text.php:1076
+#: include/text.php:697
 msgid "pinged"
 msgstr "a attiré l'attention de"
 
-#: include/text.php:1077
+#: include/text.php:698
 msgid "prod"
 msgstr "aiguillonner"
 
-#: include/text.php:1077
+#: include/text.php:698
 msgid "prodded"
 msgstr "a aiguillonné"
 
-#: include/text.php:1078
+#: include/text.php:699
 msgid "slap"
 msgstr "gifler"
 
-#: include/text.php:1078
+#: include/text.php:699
 msgid "slapped"
 msgstr "a giflé"
 
-#: include/text.php:1079
+#: include/text.php:700
 msgid "finger"
 msgstr "tripoter"
 
-#: include/text.php:1079
+#: include/text.php:700
 msgid "fingered"
 msgstr "a tripoté"
 
-#: include/text.php:1080
+#: include/text.php:701
 msgid "rebuff"
 msgstr "rabrouer"
 
-#: include/text.php:1080
+#: include/text.php:701
 msgid "rebuffed"
 msgstr "a rabroué"
 
-#: include/text.php:1094 mod/settings.php:935 src/Model/Event.php:379
+#: include/text.php:715 mod/settings.php:944 src/Model/Event.php:390
 msgid "Monday"
 msgstr "Lundi"
 
-#: include/text.php:1094 src/Model/Event.php:380
+#: include/text.php:715 src/Model/Event.php:391
 msgid "Tuesday"
 msgstr "Mardi"
 
-#: include/text.php:1094 src/Model/Event.php:381
+#: include/text.php:715 src/Model/Event.php:392
 msgid "Wednesday"
 msgstr "Mercredi"
 
-#: include/text.php:1094 src/Model/Event.php:382
+#: include/text.php:715 src/Model/Event.php:393
 msgid "Thursday"
 msgstr "Jeudi"
 
-#: include/text.php:1094 src/Model/Event.php:383
+#: include/text.php:715 src/Model/Event.php:394
 msgid "Friday"
 msgstr "Vendredi"
 
-#: include/text.php:1094 src/Model/Event.php:384
+#: include/text.php:715 src/Model/Event.php:395
 msgid "Saturday"
 msgstr "Samedi"
 
-#: include/text.php:1094 mod/settings.php:935 src/Model/Event.php:378
+#: include/text.php:715 mod/settings.php:944 src/Model/Event.php:389
 msgid "Sunday"
 msgstr "Dimanche"
 
-#: include/text.php:1098 src/Model/Event.php:399
+#: include/text.php:719 src/Model/Event.php:410
 msgid "January"
 msgstr "Janvier"
 
-#: include/text.php:1098 src/Model/Event.php:400
+#: include/text.php:719 src/Model/Event.php:411
 msgid "February"
 msgstr "Février"
 
-#: include/text.php:1098 src/Model/Event.php:401
+#: include/text.php:719 src/Model/Event.php:412
 msgid "March"
 msgstr "Mars"
 
-#: include/text.php:1098 src/Model/Event.php:402
+#: include/text.php:719 src/Model/Event.php:413
 msgid "April"
 msgstr "Avril"
 
-#: include/text.php:1098 include/text.php:1115 src/Model/Event.php:390
-#: src/Model/Event.php:403
+#: include/text.php:719 include/text.php:736 src/Model/Event.php:401
+#: src/Model/Event.php:414
 msgid "May"
 msgstr "Mai"
 
-#: include/text.php:1098 src/Model/Event.php:404
+#: include/text.php:719 src/Model/Event.php:415
 msgid "June"
 msgstr "Juin"
 
-#: include/text.php:1098 src/Model/Event.php:405
+#: include/text.php:719 src/Model/Event.php:416
 msgid "July"
 msgstr "Juillet"
 
-#: include/text.php:1098 src/Model/Event.php:406
+#: include/text.php:719 src/Model/Event.php:417
 msgid "August"
 msgstr "Août"
 
-#: include/text.php:1098 src/Model/Event.php:407
+#: include/text.php:719 src/Model/Event.php:418
 msgid "September"
 msgstr "Septembre"
 
-#: include/text.php:1098 src/Model/Event.php:408
+#: include/text.php:719 src/Model/Event.php:419
 msgid "October"
 msgstr "Octobre"
 
-#: include/text.php:1098 src/Model/Event.php:409
+#: include/text.php:719 src/Model/Event.php:420
 msgid "November"
 msgstr "Novembre"
 
-#: include/text.php:1098 src/Model/Event.php:410
+#: include/text.php:719 src/Model/Event.php:421
 msgid "December"
 msgstr "Décembre"
 
-#: include/text.php:1112 src/Model/Event.php:371
+#: include/text.php:733 src/Model/Event.php:382
 msgid "Mon"
 msgstr "Lun"
 
-#: include/text.php:1112 src/Model/Event.php:372
+#: include/text.php:733 src/Model/Event.php:383
 msgid "Tue"
 msgstr "Mar"
 
-#: include/text.php:1112 src/Model/Event.php:373
+#: include/text.php:733 src/Model/Event.php:384
 msgid "Wed"
 msgstr "Mer"
 
-#: include/text.php:1112 src/Model/Event.php:374
+#: include/text.php:733 src/Model/Event.php:385
 msgid "Thu"
 msgstr "Jeu"
 
-#: include/text.php:1112 src/Model/Event.php:375
+#: include/text.php:733 src/Model/Event.php:386
 msgid "Fri"
 msgstr "Ven"
 
-#: include/text.php:1112 src/Model/Event.php:376
+#: include/text.php:733 src/Model/Event.php:387
 msgid "Sat"
 msgstr "Sam"
 
-#: include/text.php:1112 src/Model/Event.php:370
+#: include/text.php:733 src/Model/Event.php:381
 msgid "Sun"
 msgstr "Dim"
 
-#: include/text.php:1115 src/Model/Event.php:386
+#: include/text.php:736 src/Model/Event.php:397
 msgid "Jan"
 msgstr "Jan"
 
-#: include/text.php:1115 src/Model/Event.php:387
+#: include/text.php:736 src/Model/Event.php:398
 msgid "Feb"
 msgstr "Fév"
 
-#: include/text.php:1115 src/Model/Event.php:388
+#: include/text.php:736 src/Model/Event.php:399
 msgid "Mar"
 msgstr "Mar"
 
-#: include/text.php:1115 src/Model/Event.php:389
+#: include/text.php:736 src/Model/Event.php:400
 msgid "Apr"
 msgstr "Avr"
 
-#: include/text.php:1115 src/Model/Event.php:392
+#: include/text.php:736 src/Model/Event.php:403
 msgid "Jul"
 msgstr "Jul"
 
-#: include/text.php:1115 src/Model/Event.php:393
+#: include/text.php:736 src/Model/Event.php:404
 msgid "Aug"
 msgstr "Aoû"
 
-#: include/text.php:1115
+#: include/text.php:736
 msgid "Sep"
 msgstr ""
 
-#: include/text.php:1115 src/Model/Event.php:395
+#: include/text.php:736 src/Model/Event.php:406
 msgid "Oct"
 msgstr "Oct"
 
-#: include/text.php:1115 src/Model/Event.php:396
+#: include/text.php:736 src/Model/Event.php:407
 msgid "Nov"
 msgstr "Nov"
 
-#: include/text.php:1115 src/Model/Event.php:397
+#: include/text.php:736 src/Model/Event.php:408
 msgid "Dec"
 msgstr "Déc"
 
-#: include/text.php:1255
+#: include/text.php:882
 #, php-format
 msgid "Content warning: %s"
-msgstr ""
+msgstr "Avertissement de contenu: %s"
 
-#: include/text.php:1325 mod/videos.php:380
+#: include/text.php:944 mod/videos.php:371
 msgid "View Video"
 msgstr "Regarder la vidéo"
 
-#: include/text.php:1342
+#: include/text.php:961
 msgid "bytes"
 msgstr "octets"
 
-#: include/text.php:1375 include/text.php:1386 include/text.php:1419
+#: include/text.php:994 include/text.php:1005 include/text.php:1040
 msgid "Click to open/close"
 msgstr "Cliquer pour ouvrir/fermer"
 
-#: include/text.php:1534
+#: include/text.php:1155
 msgid "View on separate page"
 msgstr "Voir dans une nouvelle page"
 
-#: include/text.php:1535
+#: include/text.php:1156
 msgid "view on separate page"
 msgstr "voir dans une nouvelle page"
 
-#: include/text.php:1540 include/text.php:1547 src/Model/Event.php:594
+#: include/text.php:1161 include/text.php:1168 src/Model/Event.php:617
 msgid "link to source"
 msgstr "lien original"
 
-#: include/text.php:1753
+#: include/text.php:1355
 msgid "activity"
 msgstr "activité"
 
-#: include/text.php:1755 src/Object/Post.php:437 src/Object/Post.php:449
+#: include/text.php:1357 src/Object/Post.php:435 src/Object/Post.php:447
 msgid "comment"
 msgid_plural "comments"
 msgstr[0] ""
 msgstr[1] "commentaire"
 
-#: include/text.php:1758
+#: include/text.php:1360
 msgid "post"
 msgstr "publication"
 
-#: include/text.php:1915
+#: include/text.php:1515
 msgid "Item filed"
 msgstr "Élément classé"
 
-#: mod/allfriends.php:51
-msgid "No friends to display."
-msgstr "Pas d'amis à afficher."
-
-#: mod/allfriends.php:90 mod/suggest.php:101 mod/match.php:105
-#: mod/dirfind.php:215 src/Content/Widget.php:37 src/Model/Profile.php:293
-msgid "Connect"
-msgstr "Se connecter"
-
-#: mod/api.php:85 mod/api.php:107
-msgid "Authorize application connection"
-msgstr "Autoriser l'application à se connecter"
-
-#: mod/api.php:86
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Retournez à votre application et saisissez ce Code de Sécurité : "
-
-#: mod/api.php:95
-msgid "Please login to continue."
-msgstr "Merci de vous connecter pour continuer."
+#: mod/credits.php:18
+msgid "Credits"
+msgstr "Remerciements"
 
-#: mod/api.php:109
+#: mod/credits.php:19
 msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à créer des billets à votre place?"
+"Friendica is a community project, that would not be possible without the "
+"help of many people. Here is a list of those who have contributed to the "
+"code or the translation of Friendica. Thank you all!"
+msgstr "Friendica est un projet communautaire, qui ne serait pas possible sans l'aide de beaucoup de gens. Voici une liste de ceux qui ont contribué au code ou à la traduction de Friendica. Merci à tous!"
 
-#: mod/api.php:111 mod/follow.php:150 mod/dfrn_request.php:648
-#: mod/profiles.php:543 mod/profiles.php:547 mod/profiles.php:568
-#: mod/register.php:239 mod/settings.php:1094 mod/settings.php:1100
-#: mod/settings.php:1107 mod/settings.php:1111 mod/settings.php:1115
-#: mod/settings.php:1119 mod/settings.php:1123 mod/settings.php:1127
-#: mod/settings.php:1147 mod/settings.php:1148 mod/settings.php:1149
-#: mod/settings.php:1150 mod/settings.php:1151
-msgid "No"
-msgstr "Non"
+#: mod/maintenance.php:24
+msgid "System down for maintenance"
+msgstr "Système indisponible pour cause de maintenance"
 
-#: mod/apps.php:14 index.php:265
-msgid "You must be logged in to use addons. "
-msgstr "Vous devez être connecté pour utiliser les greffons."
+#: mod/localtime.php:19 src/Model/Event.php:36 src/Model/Event.php:837
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ g:i A"
 
-#: mod/apps.php:19
-msgid "Applications"
-msgstr "Applications"
+#: mod/localtime.php:33
+msgid "Time Conversion"
+msgstr "Conversion temporelle"
 
-#: mod/apps.php:22
-msgid "No installed applications."
-msgstr "Pas d'application installée."
+#: mod/localtime.php:35
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire."
 
-#: mod/attach.php:15
-msgid "Item not available."
-msgstr "Elément non disponible."
+#: mod/localtime.php:39
+#, php-format
+msgid "UTC time: %s"
+msgstr "Temps UTC : %s"
 
-#: mod/attach.php:25
-msgid "Item was not found."
-msgstr "Element introuvable."
+#: mod/localtime.php:42
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Zone de temps courante : %s"
 
-#: mod/common.php:91
-msgid "No contacts in common."
-msgstr "Pas de contacts en commun."
+#: mod/localtime.php:46
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Temps local converti : %s"
 
-#: mod/common.php:140 mod/contacts.php:886
-msgid "Common Friends"
-msgstr "Amis communs"
+#: mod/localtime.php:52
+msgid "Please select your timezone:"
+msgstr "Sélectionner votre zone :"
 
-#: mod/credits.php:18
-msgid "Credits"
-msgstr "Remerciements"
+#: mod/localtime.php:56 mod/crepair.php:149 mod/events.php:557
+#: mod/fsuggest.php:114 mod/invite.php:152 mod/manage.php:184
+#: mod/message.php:263 mod/message.php:424 mod/photos.php:1089
+#: mod/photos.php:1177 mod/photos.php:1452 mod/photos.php:1497
+#: mod/photos.php:1536 mod/photos.php:1596 mod/poke.php:191
+#: mod/profiles.php:576 view/theme/duepuntozero/config.php:71
+#: view/theme/frio/config.php:118 view/theme/quattro/config.php:73
+#: view/theme/vier/config.php:119 src/Module/Contact.php:598
+#: src/Module/Install.php:187 src/Module/Install.php:222
+#: src/Object/Post.php:802
+msgid "Submit"
+msgstr "Envoyer"
 
-#: mod/credits.php:19
-msgid ""
-"Friendica is a community project, that would not be possible without the "
-"help of many people. Here is a list of those who have contributed to the "
-"code or the translation of Friendica. Thank you all!"
-msgstr "Friendica est un projet communautaire, qui ne serait pas possible sans l'aide de beaucoup de gens. Voici une liste de ceux qui ont contribué au code ou à la traduction de Friendica. Merci à tous!"
+#: mod/update_community.php:23 mod/update_display.php:24
+#: mod/update_notes.php:36 mod/update_profile.php:35
+#: mod/update_contacts.php:23 mod/update_network.php:33
+msgid "[Embedded content - reload page to view]"
+msgstr "[Ccontenu incorporé - rechargez la page pour le voir]"
 
-#: mod/fbrowser.php:34 view/theme/frio/theme.php:261 src/Content/Nav.php:102
-#: src/Model/Profile.php:902
+#: mod/fbrowser.php:35 view/theme/frio/theme.php:273 src/Content/Nav.php:154
+#: src/Model/Profile.php:905
 msgid "Photos"
 msgstr "Photos"
 
-#: mod/fbrowser.php:43 mod/fbrowser.php:68 mod/photos.php:194
-#: mod/photos.php:1062 mod/photos.php:1149 mod/photos.php:1166
-#: mod/photos.php:1659 mod/photos.php:1673 src/Model/Photo.php:244
+#: mod/fbrowser.php:44 mod/fbrowser.php:69 mod/photos.php:200
+#: mod/photos.php:1071 mod/photos.php:1166 mod/photos.php:1183
+#: mod/photos.php:1652 mod/photos.php:1667 src/Model/Photo.php:244
 #: src/Model/Photo.php:253
 msgid "Contact Photos"
 msgstr "Photos du contact"
 
-#: mod/fbrowser.php:105 mod/fbrowser.php:136 mod/profile_photo.php:250
+#: mod/fbrowser.php:106 mod/fbrowser.php:137 mod/profile_photo.php:249
 msgid "Upload"
 msgstr "Téléverser"
 
-#: mod/fbrowser.php:131
+#: mod/fbrowser.php:132
 msgid "Files"
 msgstr "Fichiers"
 
-#: mod/fetch.php:16 mod/fetch.php:52 mod/fetch.php:65 mod/p.php:21
-#: mod/p.php:48 mod/p.php:57 mod/help.php:60 index.php:312
-msgid "Not Found"
-msgstr "Non trouvé"
+#: mod/oexchange.php:30
+msgid "Post successful."
+msgstr "Publication réussie."
 
-#: mod/hcard.php:18
-msgid "No profile"
-msgstr "Aucun profil"
+#: mod/uexport.php:44
+msgid "Export account"
+msgstr "Exporter le compte"
 
-#: mod/home.php:39
-#, php-format
-msgid "Welcome to %s"
-msgstr "Bienvenue sur %s"
+#: mod/uexport.php:44
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur."
 
-#: mod/lockview.php:38 mod/lockview.php:46
-msgid "Remote privacy information not available."
-msgstr "Informations de confidentialité indisponibles."
+#: mod/uexport.php:45
+msgid "Export all"
+msgstr "Tout exporter"
 
-#: mod/lockview.php:55
-msgid "Visible to:"
-msgstr "Visible par :"
+#: mod/uexport.php:45
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
+msgstr "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos)."
 
-#: mod/maintenance.php:24
-msgid "System down for maintenance"
-msgstr "Système indisponible pour cause de maintenance"
+#: mod/uexport.php:52 mod/settings.php:118
+msgid "Export personal data"
+msgstr "Exporter"
 
-#: mod/newmember.php:11
-msgid "Welcome to Friendica"
-msgstr "Bienvenue sur Friendica"
+#: mod/admin.php:113
+msgid "Theme settings updated."
+msgstr "Réglages du thème sauvés."
 
-#: mod/newmember.php:12
-msgid "New Member Checklist"
-msgstr "Checklist du nouvel utilisateur"
+#: mod/admin.php:186 src/Content/Nav.php:227
+msgid "Information"
+msgstr "Information"
 
-#: mod/newmember.php:14
-msgid ""
-"We would like to offer some tips and links to help make your experience "
-"enjoyable. Click any item to visit the relevant page. A link to this page "
-"will be visible from your home page for two weeks after your initial "
-"registration and then will quietly disappear."
-msgstr "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement."
+#: mod/admin.php:187
+msgid "Overview"
+msgstr ""
 
-#: mod/newmember.php:15
-msgid "Getting Started"
-msgstr "Bien démarrer"
+#: mod/admin.php:188 mod/admin.php:731
+msgid "Federation Statistics"
+msgstr "Statistiques Federation"
 
-#: mod/newmember.php:17
-msgid "Friendica Walk-Through"
-msgstr "Friendica pas-à-pas"
+#: mod/admin.php:189
+msgid "Configuration"
+msgstr "Configuration"
 
-#: mod/newmember.php:17
-msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr "Sur votre page d'accueil, dans <em>Conseils aux nouveaux venus</em> - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre."
+#: mod/admin.php:190 mod/admin.php:1454
+msgid "Site"
+msgstr "Site"
 
-#: mod/newmember.php:19 mod/admin.php:1935 mod/admin.php:2204
-#: mod/settings.php:124 view/theme/frio/theme.php:269 src/Content/Nav.php:207
-msgid "Settings"
-msgstr "Réglages"
+#: mod/admin.php:191 mod/admin.php:1383 mod/admin.php:1916 mod/admin.php:1933
+msgid "Users"
+msgstr "Utilisateurs"
 
-#: mod/newmember.php:21
-msgid "Go to Your Settings"
-msgstr "Éditer vos Réglages"
+#: mod/admin.php:192 mod/admin.php:2032 mod/admin.php:2092 mod/settings.php:97
+msgid "Addons"
+msgstr "Extensions"
 
-#: mod/newmember.php:21
-msgid ""
-"On your <em>Settings</em> page -  change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr "Sur la page des <em>Réglages</em> -     changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre."
+#: mod/admin.php:193 mod/admin.php:2302 mod/admin.php:2346
+msgid "Themes"
+msgstr "Thèmes"
 
-#: mod/newmember.php:22
-msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished"
-" directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
-msgstr "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver."
+#: mod/admin.php:194 mod/settings.php:75
+msgid "Additional features"
+msgstr "Fonctions supplémentaires"
 
-#: mod/newmember.php:24 mod/profperm.php:113 mod/contacts.php:671
-#: mod/contacts.php:863 view/theme/frio/theme.php:260 src/Content/Nav.php:101
-#: src/Model/Profile.php:728 src/Model/Profile.php:861
-#: src/Model/Profile.php:894
-msgid "Profile"
-msgstr "Profil"
+#: mod/admin.php:195 mod/admin.php:319 mod/register.php:290
+#: src/Content/Nav.php:230 src/Module/Tos.php:70
+msgid "Terms of Service"
+msgstr "Conditions de service"
 
-#: mod/newmember.php:26 mod/profile_photo.php:249 mod/profiles.php:598
-msgid "Upload Profile Photo"
-msgstr "Téléverser une photo de profil"
+#: mod/admin.php:196
+msgid "Database"
+msgstr "Base de données"
 
-#: mod/newmember.php:26
-msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make"
-" friends than people who do not."
-msgstr "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis."
+#: mod/admin.php:197
+msgid "DB updates"
+msgstr "Mise-à-jour de la base"
 
-#: mod/newmember.php:27
-msgid "Edit Your Profile"
-msgstr "Éditer votre Profil"
+#: mod/admin.php:198 mod/admin.php:774
+msgid "Inspect Queue"
+msgstr "Inspecter la file d'attente"
 
-#: mod/newmember.php:27
-msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr "Éditez votre profil <strong>par défaut</strong> à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus."
+#: mod/admin.php:199
+msgid "Inspect Deferred Workers"
+msgstr ""
 
-#: mod/newmember.php:28
-msgid "Profile Keywords"
-msgstr "Mots-clés du profil"
+#: mod/admin.php:200
+msgid "Inspect worker Queue"
+msgstr ""
 
-#: mod/newmember.php:28
-msgid ""
-"Set some public keywords for your default profile which describe your "
-"interests. We may be able to find other people with similar interests and "
-"suggest friendships."
-msgstr "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent."
+#: mod/admin.php:201
+msgid "Tools"
+msgstr "Outils"
 
-#: mod/newmember.php:30
-msgid "Connecting"
-msgstr "Connexions"
+#: mod/admin.php:202
+msgid "Contact Blocklist"
+msgstr "Liste de contacts bloqués"
 
-#: mod/newmember.php:36
-msgid "Importing Emails"
-msgstr "Importer courriels"
-
-#: mod/newmember.php:36
-msgid ""
-"Enter your email access information on your Connector Settings page if you "
-"wish to import and interact with friends or mailing lists from your email "
-"INBOX"
-msgstr "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception."
-
-#: mod/newmember.php:39
-msgid "Go to Your Contacts Page"
-msgstr "Consulter vos Contacts"
+#: mod/admin.php:203 mod/admin.php:381
+msgid "Server Blocklist"
+msgstr "Serveurs bloqués"
 
-#: mod/newmember.php:39
-msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the <em>Add New Contact</em> dialog."
-msgstr "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire <em>Ajouter un nouveau contact</em>."
+#: mod/admin.php:204 mod/admin.php:539
+msgid "Delete Item"
+msgstr "Supprimer un élément"
 
-#: mod/newmember.php:40
-msgid "Go to Your Site's Directory"
-msgstr "Consulter l'Annuaire de votre Site"
+#: mod/admin.php:205 mod/admin.php:206 mod/admin.php:2421
+msgid "Logs"
+msgstr "Journaux"
 
-#: mod/newmember.php:40
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien <em>Relier</em> ou <em>Suivre</em> sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité."
+#: mod/admin.php:207 mod/admin.php:2488
+msgid "View Logs"
+msgstr "Voir les logs"
 
-#: mod/newmember.php:41
-msgid "Finding New People"
-msgstr "Trouver de nouvelles personnes"
+#: mod/admin.php:209
+msgid "Diagnostics"
+msgstr ""
 
-#: mod/newmember.php:41
-msgid ""
-"On the side panel of the Contacts page are several tools to find new "
-"friends. We can match people by interest, look up people by name or "
-"interest, and provide suggestions based on network relationships. On a brand"
-" new site, friend suggestions will usually begin to be populated within 24 "
-"hours."
-msgstr "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures."
+#: mod/admin.php:210
+msgid "PHP Info"
+msgstr ""
 
-#: mod/newmember.php:43 src/Model/Group.php:414
-msgid "Groups"
-msgstr "Groupes"
+#: mod/admin.php:211
+msgid "probe address"
+msgstr "Tester une adresse"
 
-#: mod/newmember.php:45
-msgid "Group Your Contacts"
-msgstr "Grouper vos contacts"
+#: mod/admin.php:212
+msgid "check webfinger"
+msgstr "vérification de webfinger"
 
-#: mod/newmember.php:45
-msgid ""
-"Once you have made some friends, organize them into private conversation "
-"groups from the sidebar of your Contacts page and then you can interact with"
-" each group privately on your Network page."
-msgstr "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau."
+#: mod/admin.php:232 src/Content/Nav.php:270
+msgid "Admin"
+msgstr "Admin"
 
-#: mod/newmember.php:48
-msgid "Why Aren't My Posts Public?"
-msgstr "Pourquoi mes éléments ne sont pas publics ?"
+#: mod/admin.php:233
+msgid "Addon Features"
+msgstr ""
 
-#: mod/newmember.php:48
-msgid ""
-"Friendica respects your privacy. By default, your posts will only show up to"
-" people you've added as friends. For more information, see the help section "
-"from the link above."
-msgstr "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus."
+#: mod/admin.php:234
+msgid "User registrations waiting for confirmation"
+msgstr "Inscriptions en attente de confirmation"
 
-#: mod/newmember.php:52
-msgid "Getting Help"
-msgstr "Obtenir de l'aide"
+#: mod/admin.php:318 mod/admin.php:380 mod/admin.php:496 mod/admin.php:538
+#: mod/admin.php:730 mod/admin.php:773 mod/admin.php:824 mod/admin.php:942
+#: mod/admin.php:1453 mod/admin.php:1915 mod/admin.php:2031 mod/admin.php:2091
+#: mod/admin.php:2301 mod/admin.php:2345 mod/admin.php:2420 mod/admin.php:2487
+msgid "Administration"
+msgstr "Administration"
 
-#: mod/newmember.php:54
-msgid "Go to the Help Section"
-msgstr "Aller à la section Aide"
+#: mod/admin.php:320
+msgid "Display Terms of Service"
+msgstr ""
 
-#: mod/newmember.php:54
+#: mod/admin.php:320
 msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Nos pages d'<strong>aide</strong> peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources."
+"Enable the Terms of Service page. If this is enabled a link to the terms "
+"will be added to the registration form and the general information page."
+msgstr ""
+
+#: mod/admin.php:321
+msgid "Display Privacy Statement"
+msgstr ""
 
-#: mod/nogroup.php:42 mod/viewcontacts.php:112 mod/contacts.php:619
-#: mod/contacts.php:959
+#: mod/admin.php:321
 #, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Visiter le profil de %s [%s]"
+msgid ""
+"Show some informations regarding the needed information to operate the node "
+"according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."
+msgstr ""
 
-#: mod/nogroup.php:43 mod/contacts.php:960
-msgid "Edit contact"
-msgstr "Éditer le contact"
+#: mod/admin.php:322
+msgid "Privacy Statement Preview"
+msgstr ""
 
-#: mod/nogroup.php:63
-msgid "Contacts who are not members of a group"
-msgstr "Contacts qui n’appartiennent à aucun groupe"
+#: mod/admin.php:324
+msgid "The Terms of Service"
+msgstr ""
 
-#: mod/p.php:14
-msgid "Not Extended"
+#: mod/admin.php:324
+msgid ""
+"Enter the Terms of Service for your node here. You can use BBCode. Headers "
+"of sections should be [h2] and below."
 msgstr ""
 
-#: mod/repair_ostatus.php:18
-msgid "Resubscribing to OStatus contacts"
-msgstr "Réinscription aux contacts OStatus"
+#: mod/admin.php:326 mod/admin.php:1455 mod/admin.php:2093 mod/admin.php:2347
+#: mod/admin.php:2422 mod/admin.php:2569 mod/delegate.php:172
+#: mod/settings.php:678 mod/settings.php:785 mod/settings.php:873
+#: mod/settings.php:962 mod/settings.php:1187
+msgid "Save Settings"
+msgstr "Sauvegarder les paramètres"
 
-#: mod/repair_ostatus.php:34
-msgid "Error"
-msgstr "Erreur"
+#: mod/admin.php:372 mod/admin.php:390 mod/dfrn_request.php:346
+#: mod/friendica.php:113 src/Model/Contact.php:1597
+msgid "Blocked domain"
+msgstr "Domaine bloqué"
 
-#: mod/repair_ostatus.php:48 mod/ostatus_subscribe.php:64
-msgid "Done"
-msgstr "Terminé"
+#: mod/admin.php:372
+msgid "The blocked domain"
+msgstr "Domaine bloqué"
 
-#: mod/repair_ostatus.php:54 mod/ostatus_subscribe.php:88
-msgid "Keep this window open until done."
-msgstr "Veuillez garder cette fenêtre ouverte jusqu'à la fin."
+#: mod/admin.php:373 mod/admin.php:391 mod/friendica.php:113
+msgid "Reason for the block"
+msgstr "Raison du blocage."
 
-#: mod/suggest.php:36
-msgid "Do you really want to delete this suggestion?"
-msgstr "Voulez-vous vraiment supprimer cette suggestion ?"
+#: mod/admin.php:373 mod/admin.php:386
+msgid "The reason why you blocked this domain."
+msgstr "Raison pour laquelle vous souhaitez bloquer ce domaine."
+
+#: mod/admin.php:374
+msgid "Delete domain"
+msgstr "Supprimer le domaine."
+
+#: mod/admin.php:374
+msgid "Check to delete this entry from the blocklist"
+msgstr "Cochez la case pour retirer cette entrée de la liste noire"
 
-#: mod/suggest.php:73
+#: mod/admin.php:382
 msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h."
+"This page can be used to define a black list of servers from the federated "
+"network that are not allowed to interact with your node. For all entered "
+"domains you should also give a reason why you have blocked the remote "
+"server."
+msgstr "Cette page permet de créer une liste noire des serveurs de la fédération qui ne sont pas autorisés à interagir avec votre serveur. Pour chaque serveur bloqué, vous devez fournir la raison du blocage."
 
-#: mod/suggest.php:84 mod/suggest.php:104
-msgid "Ignore/Hide"
-msgstr "Ignorer/cacher"
+#: mod/admin.php:383
+msgid ""
+"The list of blocked servers will be made publically available on the "
+"/friendica page so that your users and people investigating communication "
+"problems can find the reason easily."
+msgstr "La liste des serveurs bloqués sera publiée sur la page /friendica pour que les utilisateurs rencontrant des problèmes de communication puissent en comprendre la raison."
 
-#: mod/suggest.php:114 view/theme/vier/theme.php:204 src/Content/Widget.php:64
-msgid "Friend Suggestions"
-msgstr "Suggestions d'amitiés/contacts"
+#: mod/admin.php:384
+msgid "Add new entry to block list"
+msgstr "Ajouter une nouvelle entrée à la liste noire"
 
-#: mod/update_community.php:27 mod/update_display.php:27
-#: mod/update_notes.php:40 mod/update_profile.php:39 mod/update_network.php:33
-msgid "[Embedded content - reload page to view]"
-msgstr "[Ccontenu incorporé - rechargez la page pour le voir]"
+#: mod/admin.php:385
+msgid "Server Domain"
+msgstr "Adresse du serveur"
 
-#: mod/uimport.php:55 mod/register.php:192
+#: mod/admin.php:385
 msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain."
+"The domain of the new server to add to the block list. Do not include the "
+"protocol."
+msgstr "Adresse du serveur à ajouter à la liste noire. Ne pas mettre le protocole."
 
-#: mod/uimport.php:70 mod/register.php:288
-msgid "Import"
-msgstr "Importer"
+#: mod/admin.php:386
+msgid "Block reason"
+msgstr "Raison du blocage."
 
-#: mod/uimport.php:72
-msgid "Move account"
-msgstr "Migrer le compte"
+#: mod/admin.php:387
+msgid "Add Entry"
+msgstr "Ajouter"
 
-#: mod/uimport.php:73
-msgid "You can import an account from another Friendica server."
-msgstr "Vous pouvez importer un compte d'un autre serveur Friendica."
+#: mod/admin.php:388
+msgid "Save changes to the blocklist"
+msgstr "Sauvegarder la liste noire"
 
-#: mod/uimport.php:74
-msgid ""
-"You need to export your account from the old server and upload it here. We "
-"will recreate your old account here with all your contacts. We will try also"
-" to inform your friends that you moved here."
-msgstr "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici."
+#: mod/admin.php:389
+msgid "Current Entries in the Blocklist"
+msgstr "Entrées de la liste noire"
 
-#: mod/uimport.php:75
-msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (GNU Social/Statusnet) or from Diaspora"
-msgstr "Cette fonctionalité est expérimentale. Il n'est pas possible d'importer des contacts depuis le réseau OStatus (GNU Social/Statusnet) ou depuis Diaspora."
+#: mod/admin.php:392
+msgid "Delete entry from blocklist"
+msgstr "Supprimer l'entrée de la liste noire"
 
-#: mod/uimport.php:76
-msgid "Account file"
-msgstr "Fichier du compte"
+#: mod/admin.php:395
+msgid "Delete entry from blocklist?"
+msgstr "Supprimer l'entrée de la liste noire ?"
 
-#: mod/uimport.php:76
-msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
-msgstr "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\""
+#: mod/admin.php:421
+msgid "Server added to blocklist."
+msgstr "Serveur ajouté à la liste noire."
 
-#: mod/match.php:48
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut."
+#: mod/admin.php:437
+msgid "Site blocklist updated."
+msgstr "Liste noire mise à jour."
 
-#: mod/match.php:104
-msgid "is interested in:"
-msgstr "s'intéresse à :"
+#: mod/admin.php:460 src/Core/Console/GlobalCommunityBlock.php:68
+msgid "The contact has been blocked from the node"
+msgstr ""
 
-#: mod/match.php:120
-msgid "Profile Match"
-msgstr "Correpondance de profils"
+#: mod/admin.php:462 src/Core/Console/GlobalCommunityBlock.php:65
+#, php-format
+msgid "Could not find any contact entry for this URL (%s)"
+msgstr ""
 
-#: mod/match.php:125 mod/dirfind.php:253
-msgid "No matches"
-msgstr "Aucune correspondance"
+#: mod/admin.php:469
+#, php-format
+msgid "%s contact unblocked"
+msgid_plural "%s contacts unblocked"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/manage.php:180
-msgid "Manage Identities and/or Pages"
-msgstr "Gérer les identités et/ou les pages"
+#: mod/admin.php:497
+msgid "Remote Contact Blocklist"
+msgstr ""
 
-#: mod/manage.php:181
+#: mod/admin.php:498
 msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer."
+"This page allows you to prevent any message from a remote contact to reach "
+"your node."
+msgstr ""
 
-#: mod/manage.php:182
-msgid "Select an identity to manage: "
-msgstr "Choisir une identité à gérer: "
+#: mod/admin.php:499
+msgid "Block Remote Contact"
+msgstr ""
 
-#: mod/manage.php:184 mod/localtime.php:56 mod/poke.php:199
-#: mod/fsuggest.php:114 mod/photos.php:1080 mod/photos.php:1160
-#: mod/photos.php:1445 mod/photos.php:1491 mod/photos.php:1530
-#: mod/photos.php:1603 mod/contacts.php:610 mod/events.php:530
-#: mod/invite.php:154 mod/crepair.php:148 mod/install.php:198
-#: mod/install.php:237 mod/message.php:246 mod/message.php:413
-#: mod/profiles.php:579 view/theme/duepuntozero/config.php:71
-#: view/theme/frio/config.php:118 view/theme/quattro/config.php:73
-#: view/theme/vier/config.php:119 src/Object/Post.php:804
-msgid "Submit"
-msgstr "Envoyer"
+#: mod/admin.php:500 mod/admin.php:1918
+msgid "select all"
+msgstr "tout sélectionner"
 
-#: mod/wall_attach.php:24 mod/wall_attach.php:32 mod/wall_attach.php:83
-#: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112
-#: mod/wall_upload.php:155 mod/wall_upload.php:158
-msgid "Invalid request."
-msgstr "Requête invalide."
+#: mod/admin.php:501
+msgid "select none"
+msgstr ""
 
-#: mod/wall_attach.php:101
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise"
-
-#: mod/wall_attach.php:101
-msgid "Or - did you try to upload an empty file?"
-msgstr "Ou — auriez-vous essayé de télécharger un fichier vide ?"
+#: mod/admin.php:502 mod/admin.php:1927 src/Module/Contact.php:625
+#: src/Module/Contact.php:819 src/Module/Contact.php:1072
+msgid "Block"
+msgstr "Bloquer"
 
-#: mod/wall_attach.php:112
-#, php-format
-msgid "File exceeds size limit of %s"
-msgstr "La taille du fichier dépasse la limite de %s"
+#: mod/admin.php:503 mod/admin.php:1929 src/Module/Contact.php:625
+#: src/Module/Contact.php:819 src/Module/Contact.php:1072
+msgid "Unblock"
+msgstr "Débloquer"
 
-#: mod/wall_attach.php:136 mod/wall_attach.php:152
-msgid "File upload failed."
-msgstr "Le téléversement a échoué."
+#: mod/admin.php:504
+msgid "No remote contact is blocked from this node."
+msgstr ""
 
-#: mod/filer.php:34
-msgid "- select -"
-msgstr "- choisir -"
+#: mod/admin.php:506
+msgid "Blocked Remote Contacts"
+msgstr ""
 
-#: mod/localtime.php:19 src/Model/Event.php:36 src/Model/Event.php:814
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ g:i A"
+#: mod/admin.php:507
+msgid "Block New Remote Contact"
+msgstr ""
 
-#: mod/localtime.php:33
-msgid "Time Conversion"
-msgstr "Conversion temporelle"
+#: mod/admin.php:508
+msgid "Photo"
+msgstr ""
 
-#: mod/localtime.php:35
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire."
+#: mod/admin.php:508 mod/admin.php:1910 mod/admin.php:1921 mod/admin.php:1935
+#: mod/admin.php:1951 mod/crepair.php:159 mod/settings.php:680
+#: mod/settings.php:706
+msgid "Name"
+msgstr "Nom"
 
-#: mod/localtime.php:39
-#, php-format
-msgid "UTC time: %s"
-msgstr "Temps UTC : %s"
+#: mod/admin.php:508 mod/profiles.php:393
+msgid "Address"
+msgstr "Adresse"
 
-#: mod/localtime.php:42
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Zone de temps courante : %s"
+#: mod/admin.php:508 mod/admin.php:518 mod/follow.php:168
+#: mod/notifications.php:176 mod/notifications.php:260 mod/unfollow.php:137
+#: src/Module/Contact.php:644
+msgid "Profile URL"
+msgstr "URL du Profil"
 
-#: mod/localtime.php:46
+#: mod/admin.php:516
 #, php-format
-msgid "Converted localtime: %s"
-msgstr "Temps local converti : %s"
+msgid "%s total blocked contact"
+msgid_plural "%s total blocked contacts"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/localtime.php:52
-msgid "Please select your timezone:"
-msgstr "Sélectionner votre zone :"
+#: mod/admin.php:518
+msgid "URL of the remote contact to block."
+msgstr ""
 
-#: mod/notify.php:77
-msgid "No more system notifications."
-msgstr "Pas plus de notifications système."
+#: mod/admin.php:540
+msgid "Delete this Item"
+msgstr "Supprimer l'élément"
 
-#: mod/notify.php:81 mod/notifications.php:113
-msgid "System Notifications"
-msgstr "Notifications du système"
+#: mod/admin.php:541
+msgid ""
+"On this page you can delete an item from your node. If the item is a top "
+"level posting, the entire thread will be deleted."
+msgstr "Sur cette page, vous pouvez supprimer un élément de votre noeud. Si cet élément est le premier post d'un fil de discussion, le fil de discussion entier sera supprimé."
 
-#: mod/ping.php:292
-msgid "{0} wants to be your friend"
-msgstr "{0} souhaite être votre ami(e)"
+#: mod/admin.php:542
+msgid ""
+"You need to know the GUID of the item. You can find it e.g. by looking at "
+"the display URL. The last part of http://example.com/display/123456 is the "
+"GUID, here 123456."
+msgstr "Vous devez connaître le GUID de l'élément. Vous pouvez le trouver en sélectionnant l'élément puis en lisant l'URL. La dernière partie de l'URL est le GUID. Exemple: http://example.com/display/123456 a pour GUID: 123456."
 
-#: mod/ping.php:307
-msgid "{0} sent you a message"
-msgstr "{0} vous a envoyé un message"
+#: mod/admin.php:543
+msgid "GUID"
+msgstr "GUID"
 
-#: mod/ping.php:322
-msgid "{0} requested registration"
-msgstr "{0} a demandé à s'inscrire"
+#: mod/admin.php:543
+msgid "The GUID of the item you want to delete."
+msgstr "GUID de l'élément à supprimer."
 
-#: mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Solliciter"
+#: mod/admin.php:577
+msgid "Item marked for deletion."
+msgstr "L'élément va être supprimé."
 
-#: mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "solliciter (poke/...) quelqu'un"
+#: mod/admin.php:648
+msgid "unknown"
+msgstr "inconnu"
 
-#: mod/poke.php:194
-msgid "Recipient"
-msgstr "Destinataire"
+#: mod/admin.php:724
+msgid ""
+"This page offers you some numbers to the known part of the federated social "
+"network your Friendica node is part of. These numbers are not complete but "
+"only reflect the part of the network your node is aware of."
+msgstr "Cette page montre quelques statistiques de la partie connue du réseau social fédéré dont votre instance Friendica fait partie. Ces chiffres sont partiels et ne reflètent que la portion du réseau dont votre instance a connaissance."
 
-#: mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Choisissez ce que vous voulez faire au destinataire"
+#: mod/admin.php:725
+msgid ""
+"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
+"will improve the data displayed here."
+msgstr "En activant la fonctionnalité <em>Répertoire de Contacts Découverts Automatiquement</em>, cela améliorera la qualité des chiffres présentés ici."
 
-#: mod/poke.php:198
-msgid "Make this post private"
-msgstr "Rendez ce message privé"
+#: mod/admin.php:737
+#, php-format
+msgid ""
+"Currently this node is aware of %d nodes with %d registered users from the "
+"following platforms:"
+msgstr ""
 
-#: mod/probe.php:13 mod/search.php:98 mod/search.php:104
-#: mod/viewcontacts.php:45 mod/webfinger.php:16 mod/photos.php:932
-#: mod/videos.php:199 mod/directory.php:42 mod/community.php:27
-#: mod/dfrn_request.php:602 mod/display.php:203
-msgid "Public access denied."
-msgstr "Accès public refusé."
+#: mod/admin.php:776 mod/admin.php:827
+msgid "ID"
+msgstr "ID"
 
-#: mod/probe.php:14 mod/webfinger.php:17
-msgid "Only logged in users are permitted to perform a probing."
-msgstr ""
+#: mod/admin.php:777
+msgid "Recipient Name"
+msgstr "Nom du destinataire"
 
-#: mod/profperm.php:28 mod/group.php:83 index.php:435
-msgid "Permission denied"
-msgstr "Permission refusée"
+#: mod/admin.php:778
+msgid "Recipient Profile"
+msgstr "Profil du destinataire"
 
-#: mod/profperm.php:34 mod/profperm.php:65
-msgid "Invalid profile identifier."
-msgstr "Identifiant de profil invalide."
+#: mod/admin.php:779 view/theme/frio/theme.php:278
+#: src/Core/NotificationsManager.php:180 src/Content/Nav.php:235
+msgid "Network"
+msgstr "Réseau"
 
-#: mod/profperm.php:111
-msgid "Profile Visibility Editor"
-msgstr "Éditer la visibilité du profil"
+#: mod/admin.php:780 mod/admin.php:829
+msgid "Created"
+msgstr "Créé"
 
-#: mod/profperm.php:115 mod/group.php:265
-msgid "Click on a contact to add or remove."
-msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer."
+#: mod/admin.php:781
+msgid "Last Tried"
+msgstr "Dernier essai"
 
-#: mod/profperm.php:124
-msgid "Visible To"
-msgstr "Visible par"
+#: mod/admin.php:782
+msgid ""
+"This page lists the content of the queue for outgoing postings. These are "
+"postings the initial delivery failed for. They will be resend later and "
+"eventually deleted if the delivery fails permanently."
+msgstr "Cette page présente le contenu de la file d'attente pour les publications sortantes. Ce sont des messages dont la première livraison a échoué. Ils seront réenvoyés plus tard et éventuellement supprimés si l'envoi échoue de façon permanente."
 
-#: mod/profperm.php:140
-msgid "All Contacts (with secure profile access)"
-msgstr "Tous les contacts (ayant un accès sécurisé)"
+#: mod/admin.php:803
+msgid "Inspect Deferred Worker Queue"
+msgstr ""
 
-#: mod/regmod.php:68
-msgid "Account approved."
-msgstr "Inscription validée."
+#: mod/admin.php:804
+msgid ""
+"This page lists the deferred worker jobs. This are jobs that couldn't be "
+"executed at the first time."
+msgstr ""
 
-#: mod/regmod.php:93
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Inscription révoquée pour %s"
+#: mod/admin.php:807
+msgid "Inspect Worker Queue"
+msgstr ""
 
-#: mod/regmod.php:102
-msgid "Please login."
-msgstr "Merci de vous connecter."
+#: mod/admin.php:808
+msgid ""
+"This page lists the currently queued worker jobs. These jobs are handled by "
+"the worker cronjob you've set up during install."
+msgstr ""
 
-#: mod/search.php:37 mod/network.php:194
-msgid "Remove term"
-msgstr "Retirer le terme"
+#: mod/admin.php:828
+msgid "Job Parameters"
+msgstr ""
 
-#: mod/search.php:46 mod/network.php:201 src/Content/Feature.php:100
-msgid "Saved Searches"
-msgstr "Recherches"
+#: mod/admin.php:830
+msgid "Priority"
+msgstr ""
 
-#: mod/search.php:105
-msgid "Only logged in users are permitted to perform a search."
-msgstr "Seuls les utilisateurs inscrits sont autorisés à lancer une recherche."
+#: mod/admin.php:855
+#, php-format
+msgid ""
+"Your DB still runs with MyISAM tables. You should change the engine type to "
+"InnoDB. As Friendica will use InnoDB only features in the future, you should"
+" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
+"converting the table engines. You may also use the command <tt>php "
+"bin/console.php dbstructure toinnodb</tt> of your Friendica installation for"
+" an automatic conversion.<br />"
+msgstr ""
 
-#: mod/search.php:129
-msgid "Too Many Requests"
-msgstr "Trop de requêtes"
+#: mod/admin.php:862
+#, php-format
+msgid ""
+"There is a new version of Friendica available for download. Your current "
+"version is %1$s, upstream version is %2$s"
+msgstr "Une nouvelle version de Friendica est disponible. Votre version est %1$s, la nouvelle version est %2$s"
 
-#: mod/search.php:130
-msgid "Only one search per minute is permitted for not logged in users."
-msgstr "Une seule recherche par minute pour les utilisateurs qui ne sont pas connectés."
+#: mod/admin.php:872
+msgid ""
+"The database update failed. Please run \"php bin/console.php dbstructure "
+"update\" from the command line and have a look at the errors that might "
+"appear."
+msgstr ""
 
-#: mod/search.php:228 mod/community.php:141
-msgid "No results."
-msgstr "Aucun résultat."
+#: mod/admin.php:878
+msgid "The worker was never executed. Please check your database structure!"
+msgstr "Le 'worker' n'a pas encore été exécuté. Vérifiez la structure de votre base de données."
 
-#: mod/search.php:234
+#: mod/admin.php:881
 #, php-format
-msgid "Items tagged with: %s"
-msgstr "Éléments taggés %s"
+msgid ""
+"The last worker execution was on %s UTC. This is older than one hour. Please"
+" check your crontab settings."
+msgstr "La dernière exécution du 'worker' s'est déroulée à %s, c'est-à-dire il y a plus d'une heure. Vérifiez les réglages de crontab."
 
-#: mod/search.php:236 mod/contacts.php:819
+#: mod/admin.php:887
 #, php-format
-msgid "Results for: %s"
-msgstr "Résultats pour : %s"
+msgid ""
+"Friendica's configuration now is stored in config/local.ini.php, please copy"
+" config/local-sample.ini.php and move your config from "
+"<code>.htconfig.php</code>. See <a href=\"%s\">the Config help page</a> for "
+"help with the transition."
+msgstr ""
 
-#: mod/subthread.php:113
+#: mod/admin.php:894
 #, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s suit les %3$s de %2$s"
+msgid ""
+"<a href=\"%s\">%s</a> is not reachable on your system. This is a severe "
+"configuration issue that prevents server to server communication. See <a "
+"href=\"%s\">the installation page</a> for help."
+msgstr ""
 
-#: mod/tagrm.php:47
-msgid "Tag removed"
-msgstr "Étiquette supprimée"
+#: mod/admin.php:900
+msgid "Normal Account"
+msgstr "Compte normal"
 
-#: mod/tagrm.php:85
-msgid "Remove Item Tag"
-msgstr "Enlever l'étiquette de l'élément"
+#: mod/admin.php:901
+msgid "Automatic Follower Account"
+msgstr ""
 
-#: mod/tagrm.php:87
-msgid "Select a tag to remove: "
-msgstr "Sélectionner une étiquette à supprimer :"
+#: mod/admin.php:902
+msgid "Public Forum Account"
+msgstr ""
 
-#: mod/tagrm.php:98 mod/delegate.php:177
-msgid "Remove"
-msgstr "Utiliser comme photo de profil"
+#: mod/admin.php:903
+msgid "Automatic Friend Account"
+msgstr "Compte auto-amical"
 
-#: mod/uexport.php:44
-msgid "Export account"
-msgstr "Exporter le compte"
+#: mod/admin.php:904
+msgid "Blog Account"
+msgstr "Compte de blog"
 
-#: mod/uexport.php:44
-msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
-msgstr "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur."
+#: mod/admin.php:905
+msgid "Private Forum Account"
+msgstr ""
 
-#: mod/uexport.php:45
-msgid "Export all"
-msgstr "Tout exporter"
+#: mod/admin.php:928
+msgid "Message queues"
+msgstr "Files d'attente des messages"
 
-#: mod/uexport.php:45
-msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
-msgstr "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos)."
+#: mod/admin.php:934
+msgid "Server Settings"
+msgstr ""
 
-#: mod/uexport.php:52 mod/settings.php:108
-msgid "Export personal data"
-msgstr "Exporter"
+#: mod/admin.php:943
+msgid "Summary"
+msgstr "Résumé"
 
-#: mod/viewcontacts.php:87
-msgid "No contacts."
-msgstr "Aucun contact."
-
-#: mod/viewsrc.php:12 mod/community.php:34
-msgid "Access denied."
-msgstr "Accès refusé."
+#: mod/admin.php:945
+msgid "Registered users"
+msgstr "Utilisateurs inscrits"
 
-#: mod/wall_upload.php:186 mod/photos.php:763 mod/photos.php:766
-#: mod/photos.php:795 mod/profile_photo.php:153
-#, php-format
-msgid "Image exceeds size limit of %s"
-msgstr "L'image dépasse la taille limite de %s"
+#: mod/admin.php:947
+msgid "Pending registrations"
+msgstr "Inscriptions en attente"
 
-#: mod/wall_upload.php:200 mod/photos.php:818 mod/profile_photo.php:162
-msgid "Unable to process image."
-msgstr "Impossible de traiter l'image."
+#: mod/admin.php:948
+msgid "Version"
+msgstr "Version"
 
-#: mod/wall_upload.php:231 mod/item.php:471 src/Object/Image.php:953
-#: src/Object/Image.php:969 src/Object/Image.php:977 src/Object/Image.php:1002
-msgid "Wall Photos"
-msgstr "Photos du mur"
+#: mod/admin.php:953
+msgid "Active addons"
+msgstr ""
 
-#: mod/wall_upload.php:239 mod/photos.php:847 mod/profile_photo.php:307
-msgid "Image upload failed."
-msgstr "Le téléversement de l'image a échoué."
+#: mod/admin.php:985
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "Impossible d'analyser l'URL de base. Doit contenir au moins <scheme>://<domain>"
 
-#: mod/wallmessage.php:49 mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message."
+#: mod/admin.php:1318
+msgid "Site settings updated."
+msgstr "Réglages du site mis-à-jour."
 
-#: mod/wallmessage.php:57 mod/message.php:73
-msgid "No recipient selected."
-msgstr "Pas de destinataire sélectionné."
+#: mod/admin.php:1345 mod/settings.php:906
+msgid "No special theme for mobile devices"
+msgstr "Pas de thème particulier pour les terminaux mobiles"
 
-#: mod/wallmessage.php:60
-msgid "Unable to check your home location."
-msgstr "Impossible de vérifier votre localisation."
+#: mod/admin.php:1374
+msgid "No community page for local users"
+msgstr ""
 
-#: mod/wallmessage.php:63 mod/message.php:80
-msgid "Message could not be sent."
-msgstr "Impossible d'envoyer le message."
+#: mod/admin.php:1375
+msgid "No community page"
+msgstr "Aucune page de communauté"
 
-#: mod/wallmessage.php:66 mod/message.php:83
-msgid "Message collection failure."
-msgstr "Récupération des messages infructueuse."
+#: mod/admin.php:1376
+msgid "Public postings from users of this site"
+msgstr "Publications publiques des utilisateurs de ce site"
 
-#: mod/wallmessage.php:69 mod/message.php:86
-msgid "Message sent."
-msgstr "Message envoyé."
+#: mod/admin.php:1377
+msgid "Public postings from the federated network"
+msgstr ""
 
-#: mod/wallmessage.php:86 mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Pas de destinataire."
+#: mod/admin.php:1378
+msgid "Public postings from local users and the federated network"
+msgstr ""
 
-#: mod/wallmessage.php:132 mod/message.php:231
-msgid "Send Private Message"
-msgstr "Envoyer un message privé"
+#: mod/admin.php:1382 mod/admin.php:1549 mod/admin.php:1559
+#: src/Module/Contact.php:550
+msgid "Disabled"
+msgstr "Désactivé"
 
-#: mod/wallmessage.php:133
-#, php-format
-msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
-msgstr "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus."
+#: mod/admin.php:1384
+msgid "Users, Global Contacts"
+msgstr "Utilisateurs, Contacts Globaux"
 
-#: mod/wallmessage.php:134 mod/message.php:232 mod/message.php:402
-msgid "To:"
-msgstr "À:"
+#: mod/admin.php:1385
+msgid "Users, Global Contacts/fallback"
+msgstr "Utilisateurs, Contacts Globaux/alternative"
 
-#: mod/wallmessage.php:135 mod/message.php:236 mod/message.php:404
-msgid "Subject:"
-msgstr "Sujet:"
+#: mod/admin.php:1389
+msgid "One month"
+msgstr "Un mois"
 
-#: mod/wallmessage.php:141 mod/invite.php:149 mod/message.php:240
-#: mod/message.php:407
-msgid "Your message:"
-msgstr "Votre message :"
+#: mod/admin.php:1390
+msgid "Three months"
+msgstr "Trois mois"
 
-#: mod/bookmarklet.php:23 src/Content/Nav.php:114 src/Module/Login.php:313
-msgid "Login"
-msgstr "Connexion"
+#: mod/admin.php:1391
+msgid "Half a year"
+msgstr "Six mois"
 
-#: mod/bookmarklet.php:51
-msgid "The post was created"
-msgstr "La publication a été créée"
+#: mod/admin.php:1392
+msgid "One year"
+msgstr "Un an"
 
-#: mod/editpost.php:25 mod/editpost.php:35
-msgid "Item not found"
-msgstr "Élément introuvable"
+#: mod/admin.php:1397
+msgid "Multi user instance"
+msgstr "Instance multi-utilisateurs"
 
-#: mod/editpost.php:42
-msgid "Edit post"
-msgstr "Éditer la publication"
+#: mod/admin.php:1423
+msgid "Closed"
+msgstr "Fermé"
 
-#: mod/editpost.php:134 src/Core/ACL.php:315
-msgid "CC: email addresses"
-msgstr "CC: adresses de courriel"
+#: mod/admin.php:1424
+msgid "Requires approval"
+msgstr "Demande une apptrobation"
 
-#: mod/editpost.php:141 src/Core/ACL.php:316
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Exemple : bob@exemple.com, mary@exemple.com"
+#: mod/admin.php:1425
+msgid "Open"
+msgstr "Ouvert"
 
-#: mod/fsuggest.php:30 mod/fsuggest.php:96 mod/crepair.php:110
-#: mod/dfrn_confirm.php:129
-msgid "Contact not found."
-msgstr "Contact introuvable."
+#: mod/admin.php:1429
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Pas de politique SSL, le liens conserveront l'état SSL de la page"
 
-#: mod/fsuggest.php:72
-msgid "Friend suggestion sent."
-msgstr "Suggestion d'amitié/contact envoyée."
+#: mod/admin.php:1430
+msgid "Force all links to use SSL"
+msgstr "Forcer tous les liens à utiliser SSL"
 
-#: mod/fsuggest.php:101
-msgid "Suggest Friends"
-msgstr "Suggérer des amis/contacts"
+#: mod/admin.php:1431
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)"
 
-#: mod/fsuggest.php:103
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Suggérer un ami/contact pour %s"
+#: mod/admin.php:1435
+msgid "Don't check"
+msgstr "Ne pas rechercher"
 
-#: mod/notes.php:52 src/Model/Profile.php:944
-msgid "Personal Notes"
-msgstr "Notes personnelles"
+#: mod/admin.php:1436
+msgid "check the stable version"
+msgstr "Rechercher les versions stables"
 
-#: mod/photos.php:108 src/Model/Profile.php:905
-msgid "Photo Albums"
-msgstr "Albums photo"
+#: mod/admin.php:1437
+msgid "check the development version"
+msgstr "Rechercher les versions de développement"
 
-#: mod/photos.php:109 mod/photos.php:1713
-msgid "Recent Photos"
-msgstr "Photos récentes"
+#: mod/admin.php:1456
+msgid "Republish users to directory"
+msgstr ""
 
-#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715
-msgid "Upload New Photos"
-msgstr "Téléverser de nouvelles photos"
+#: mod/admin.php:1457 mod/register.php:266
+msgid "Registration"
+msgstr "Inscription"
 
-#: mod/photos.php:126 mod/settings.php:51
-msgid "everybody"
-msgstr "tout le monde"
+#: mod/admin.php:1458
+msgid "File upload"
+msgstr "Téléversement de fichier"
 
-#: mod/photos.php:184
-msgid "Contact information unavailable"
-msgstr "Informations de contact indisponibles"
+#: mod/admin.php:1459
+msgid "Policies"
+msgstr "Politiques"
 
-#: mod/photos.php:204
-msgid "Album not found."
-msgstr "Album introuvable."
+#: mod/admin.php:1460 mod/events.php:559 src/Model/Profile.php:866
+#: src/Module/Contact.php:897
+msgid "Advanced"
+msgstr "Avancé"
 
-#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161
-msgid "Delete Album"
-msgstr "Effacer l'album"
+#: mod/admin.php:1461
+msgid "Auto Discovered Contact Directory"
+msgstr "Répertoire de Contacts Découverts Automatiquement"
 
-#: mod/photos.php:243
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?"
+#: mod/admin.php:1462
+msgid "Performance"
+msgstr "Performance"
 
-#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446
-msgid "Delete Photo"
-msgstr "Effacer la photo"
+#: mod/admin.php:1463
+msgid "Worker"
+msgstr "Worker"
 
-#: mod/photos.php:319
-msgid "Do you really want to delete this photo?"
-msgstr "Voulez-vous vraiment supprimer cette photo ?"
+#: mod/admin.php:1464
+msgid "Message Relay"
+msgstr ""
 
-#: mod/photos.php:667
-msgid "a photo"
-msgstr "une photo"
+#: mod/admin.php:1465
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Relocalisation - ATTENTION: fonction avancée. Peut rendre ce serveur inaccessible."
 
-#: mod/photos.php:667
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s a été étiqueté dans %2$s par %3$s"
+#: mod/admin.php:1468
+msgid "Site name"
+msgstr "Nom du site"
 
-#: mod/photos.php:769
-msgid "Image upload didn't complete, please try again"
-msgstr ""
+#: mod/admin.php:1469
+msgid "Host name"
+msgstr "Nom de la machine hôte"
 
-#: mod/photos.php:772
-msgid "Image file is missing"
-msgstr ""
+#: mod/admin.php:1470
+msgid "Sender Email"
+msgstr "Courriel de l'émetteur"
 
-#: mod/photos.php:777
+#: mod/admin.php:1470
 msgid ""
-"Server can't accept new file upload at this time, please contact your "
-"administrator"
-msgstr ""
+"The email address your server shall use to send notification emails from."
+msgstr "L'adresse courriel à partir de laquelle votre serveur enverra des courriels."
 
-#: mod/photos.php:803
-msgid "Image file is empty."
-msgstr "Fichier image vide."
+#: mod/admin.php:1471
+msgid "Banner/Logo"
+msgstr "Bannière/Logo"
 
-#: mod/photos.php:940
-msgid "No photos selected"
-msgstr "Aucune photo sélectionnée"
+#: mod/admin.php:1472
+msgid "Shortcut icon"
+msgstr "Icône de raccourci"
 
-#: mod/photos.php:1036 mod/videos.php:309
-msgid "Access to this item is restricted."
-msgstr "Accès restreint à cet élément."
+#: mod/admin.php:1472
+msgid "Link to an icon that will be used for browsers."
+msgstr "Lien vers une icône qui sera utilisée pour les navigateurs."
 
-#: mod/photos.php:1090
-msgid "Upload Photos"
-msgstr "Téléverser des photos"
+#: mod/admin.php:1473
+msgid "Touch icon"
+msgstr "Icône pour systèmes tactiles"
 
-#: mod/photos.php:1094 mod/photos.php:1156
-msgid "New album name: "
-msgstr "Nom du nouvel album : "
+#: mod/admin.php:1473
+msgid "Link to an icon that will be used for tablets and mobiles."
+msgstr "Lien vers une icône qui sera utilisée pour les tablettes et les mobiles."
 
-#: mod/photos.php:1095
-msgid "or existing album name: "
-msgstr "ou nom d'un album existant : "
+#: mod/admin.php:1474
+msgid "Additional Info"
+msgstr "Informations supplémentaires"
 
-#: mod/photos.php:1096
-msgid "Do not show a status post for this upload"
-msgstr "Ne pas publier de notice de statut pour cet envoi"
+#: mod/admin.php:1474
+#, php-format
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at %s/servers."
+msgstr ""
 
-#: mod/photos.php:1098 mod/photos.php:1441 mod/events.php:533
-#: src/Core/ACL.php:318
-msgid "Permissions"
-msgstr "Permissions"
+#: mod/admin.php:1475
+msgid "System language"
+msgstr "Langue du système"
 
-#: mod/photos.php:1106 mod/photos.php:1449 mod/settings.php:1218
-msgid "Show to Groups"
-msgstr "Montrer aux groupes"
+#: mod/admin.php:1476
+msgid "System theme"
+msgstr "Thème du système"
 
-#: mod/photos.php:1107 mod/photos.php:1450 mod/settings.php:1219
-msgid "Show to Contacts"
-msgstr "Montrer aux Contacts"
+#: mod/admin.php:1476
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Thème par défaut sur ce site - peut être changé au niveau du profile utilisateur - <a href='#' id='cnftheme'>changer les réglages du thème</a>"
 
-#: mod/photos.php:1167
-msgid "Edit Album"
-msgstr "Éditer l'album"
-
-#: mod/photos.php:1172
-msgid "Show Newest First"
-msgstr "Plus récent d'abord"
-
-#: mod/photos.php:1174
-msgid "Show Oldest First"
-msgstr "Plus ancien d'abord"
-
-#: mod/photos.php:1195 mod/photos.php:1698
-msgid "View Photo"
-msgstr "Voir la photo"
+#: mod/admin.php:1477
+msgid "Mobile system theme"
+msgstr "Thème mobile"
 
-#: mod/photos.php:1236
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Interdit. L'accès à cet élément peut avoir été restreint."
+#: mod/admin.php:1477
+msgid "Theme for mobile devices"
+msgstr "Thème pour les terminaux mobiles"
 
-#: mod/photos.php:1238
-msgid "Photo not available"
-msgstr "Photo indisponible"
+#: mod/admin.php:1478
+msgid "SSL link policy"
+msgstr "Politique SSL pour les liens"
 
-#: mod/photos.php:1301
-msgid "View photo"
-msgstr "Voir photo"
+#: mod/admin.php:1478
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Détermine si les liens générés doivent forcer l'utilisation de SSL"
 
-#: mod/photos.php:1301
-msgid "Edit photo"
-msgstr "Éditer la photo"
+#: mod/admin.php:1479
+msgid "Force SSL"
+msgstr "SSL obligatoire"
 
-#: mod/photos.php:1302
-msgid "Use as profile photo"
-msgstr "Utiliser comme photo de profil"
+#: mod/admin.php:1479
+msgid ""
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
+" to endless loops."
+msgstr "Redirige toutes les requêtes en clair vers des requêtes SSL. Attention : sur certains systèmes cela peut conduire à des boucles de redirection infinies."
 
-#: mod/photos.php:1308 src/Object/Post.php:149
-msgid "Private Message"
-msgstr "Message privé"
+#: mod/admin.php:1480
+msgid "Hide help entry from navigation menu"
+msgstr "Cacher l'aide du menu de navigation"
 
-#: mod/photos.php:1327
-msgid "View Full Size"
-msgstr "Voir en taille réelle"
+#: mod/admin.php:1480
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Cacher du menu de navigation l'entrée vers les pages d'aide. Vous pouvez toujours y accéder en tapant directement /help."
 
-#: mod/photos.php:1414
-msgid "Tags: "
-msgstr "Étiquettes :"
+#: mod/admin.php:1481
+msgid "Single user instance"
+msgstr "Instance mono-utilisateur"
 
-#: mod/photos.php:1417
-msgid "[Remove any tag]"
-msgstr "[Retirer toutes les étiquettes]"
+#: mod/admin.php:1481
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l'utilisateur."
 
-#: mod/photos.php:1432
-msgid "New album name"
-msgstr "Nom du nouvel album"
+#: mod/admin.php:1482
+msgid "Maximum image size"
+msgstr "Taille maximale des images"
 
-#: mod/photos.php:1433
-msgid "Caption"
-msgstr "Titre"
+#: mod/admin.php:1482
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Taille maximale des images envoyées (en octets). 0 par défaut, c'est à dire \"aucune limite\"."
 
-#: mod/photos.php:1434
-msgid "Add a Tag"
-msgstr "Ajouter une étiquette"
+#: mod/admin.php:1483
+msgid "Maximum image length"
+msgstr "Longueur maximale des images"
 
-#: mod/photos.php:1434
+#: mod/admin.php:1483
 msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Exemples : @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances"
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Longueur maximale en pixels du plus long côté des images téléversées. La valeur par défaut est -1 : absence de limite."
 
-#: mod/photos.php:1435
-msgid "Do not rotate"
-msgstr "Pas de rotation"
+#: mod/admin.php:1484
+msgid "JPEG image quality"
+msgstr "Qualité JPEG des images"
 
-#: mod/photos.php:1436
-msgid "Rotate CW (right)"
-msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)"
+#: mod/admin.php:1484
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale."
 
-#: mod/photos.php:1437
-msgid "Rotate CCW (left)"
-msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)"
+#: mod/admin.php:1486
+msgid "Register policy"
+msgstr "Politique d'inscription"
 
-#: mod/photos.php:1471 src/Object/Post.php:304
-msgid "I like this (toggle)"
-msgstr "J'aime"
+#: mod/admin.php:1487
+msgid "Maximum Daily Registrations"
+msgstr "Inscriptions maximum par jour"
 
-#: mod/photos.php:1472 src/Object/Post.php:305
-msgid "I don't like this (toggle)"
-msgstr "Je n'aime pas"
+#: mod/admin.php:1487
+msgid ""
+"If registration is permitted above, this sets the maximum number of new user"
+" registrations to accept per day.  If register is set to closed, this "
+"setting has no effect."
+msgstr "Si les inscriptions sont permises ci-dessus, ceci fixe le nombre maximum d'inscriptions de nouveaux utilisateurs acceptées par jour. Si les inscriptions ne sont pas ouvertes, ce paramètre n'a aucun effet."
 
-#: mod/photos.php:1488 mod/photos.php:1527 mod/photos.php:1600
-#: mod/contacts.php:953 src/Object/Post.php:801
-msgid "This is you"
-msgstr "C'est vous"
+#: mod/admin.php:1488
+msgid "Register text"
+msgstr "Texte d'inscription"
 
-#: mod/photos.php:1490 mod/photos.php:1529 mod/photos.php:1602
-#: src/Object/Post.php:407 src/Object/Post.php:803
-msgid "Comment"
-msgstr "Commenter"
+#: mod/admin.php:1488
+msgid ""
+"Will be displayed prominently on the registration page. You can use BBCode "
+"here."
+msgstr ""
 
-#: mod/photos.php:1634
-msgid "Map"
-msgstr "Carte"
+#: mod/admin.php:1489
+msgid "Forbidden Nicknames"
+msgstr ""
 
-#: mod/photos.php:1704 mod/videos.php:387
-msgid "View Album"
-msgstr "Voir l'album"
+#: mod/admin.php:1489
+msgid ""
+"Comma separated list of nicknames that are forbidden from registration. "
+"Preset is a list of role names according RFC 2142."
+msgstr ""
 
-#: mod/videos.php:139
-msgid "Do you really want to delete this video?"
-msgstr "Voulez-vous vraiment supprimer cette vidéo?"
+#: mod/admin.php:1490
+msgid "Accounts abandoned after x days"
+msgstr "Les comptes sont abandonnés après x jours"
 
-#: mod/videos.php:144
-msgid "Delete Video"
-msgstr "Supprimer la vidéo"
+#: mod/admin.php:1490
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Pour ne pas gaspiller les ressources système, on cesse d'interroger les sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette fonction."
 
-#: mod/videos.php:207
-msgid "No videos selected"
-msgstr "Pas de vidéo sélectionné"
+#: mod/admin.php:1491
+msgid "Allowed friend domains"
+msgstr "Domaines autorisés"
 
-#: mod/videos.php:396
-msgid "Recent Videos"
-msgstr "Vidéos récente"
+#: mod/admin.php:1491
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Une liste de domaines, séparés par des virgules, autorisés à établir des relations avec les utilisateurs de ce site. Les '*' sont acceptés. Laissez vide pour autoriser tous les domaines"
 
-#: mod/videos.php:398
-msgid "Upload New Videos"
-msgstr "Téléversé une nouvelle vidéo"
+#: mod/admin.php:1492
+msgid "Allowed email domains"
+msgstr "Domaines courriel autorisés"
 
-#: mod/cal.php:142 mod/display.php:316 mod/profile.php:174
-msgid "Access to this profile has been restricted."
-msgstr "L'accès au profil a été restreint."
+#: mod/admin.php:1492
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr "Liste de domaines - séparés par des virgules - dont les adresses e-mail sont autorisées à s'inscrire sur ce site. Les '*' sont acceptées. Laissez vide pour autoriser tous les domaines"
 
-#: mod/cal.php:274 mod/events.php:391 view/theme/frio/theme.php:263
-#: view/theme/frio/theme.php:267 src/Content/Nav.php:104
-#: src/Content/Nav.php:170 src/Model/Profile.php:922 src/Model/Profile.php:933
-msgid "Events"
-msgstr "Événements"
+#: mod/admin.php:1493
+msgid "No OEmbed rich content"
+msgstr ""
 
-#: mod/cal.php:275 mod/events.php:392
-msgid "View"
-msgstr "Vue"
+#: mod/admin.php:1493
+msgid ""
+"Don't show the rich content (e.g. embedded PDF), except from the domains "
+"listed below."
+msgstr ""
 
-#: mod/cal.php:276 mod/events.php:394
-msgid "Previous"
-msgstr "Précédent"
+#: mod/admin.php:1494
+msgid "Allowed OEmbed domains"
+msgstr ""
 
-#: mod/cal.php:277 mod/events.php:395 mod/install.php:156
-msgid "Next"
-msgstr "Suivant"
+#: mod/admin.php:1494
+msgid ""
+"Comma separated list of domains which oembed content is allowed to be "
+"displayed. Wildcards are accepted."
+msgstr ""
 
-#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412
-msgid "today"
-msgstr "aujourd'hui"
+#: mod/admin.php:1495
+msgid "Block public"
+msgstr "Interdire la publication globale"
 
-#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304
-#: src/Model/Event.php:413
-msgid "month"
-msgstr "mois"
+#: mod/admin.php:1495
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques."
 
-#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305
-#: src/Model/Event.php:414
-msgid "week"
-msgstr "semaine"
+#: mod/admin.php:1496
+msgid "Force publish"
+msgstr "Forcer la publication globale"
 
-#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306
-#: src/Model/Event.php:415
-msgid "day"
-msgstr "jour"
+#: mod/admin.php:1496
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site."
 
-#: mod/cal.php:284 mod/events.php:404
-msgid "list"
+#: mod/admin.php:1496
+msgid "Enabling this may violate privacy laws like the GDPR"
 msgstr ""
 
-#: mod/cal.php:297 src/Core/Console/NewPassword.php:73 src/Model/User.php:214
-msgid "User not found"
-msgstr "Utilisateur introuvable"
+#: mod/admin.php:1497
+msgid "Global directory URL"
+msgstr "URL de l'annuaire global"
 
-#: mod/cal.php:313
-msgid "This calendar format is not supported"
-msgstr "Format de calendrier inconnu"
+#: mod/admin.php:1497
+msgid ""
+"URL to the global directory. If this is not set, the global directory is "
+"completely unavailable to the application."
+msgstr "URL de l'annuaire global. Si ce champ n'est pas défini, l'annuaire global sera complètement indisponible pour l'application."
 
-#: mod/cal.php:315
-msgid "No exportable data found"
-msgstr "Rien à exporter"
+#: mod/admin.php:1498
+msgid "Private posts by default for new users"
+msgstr "Publications privées par défaut pour les nouveaux utilisateurs"
 
-#: mod/cal.php:332
-msgid "calendar"
-msgstr "calendrier"
+#: mod/admin.php:1498
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde."
 
-#: mod/contacts.php:71 mod/notifications.php:259 src/Model/Profile.php:516
-msgid "Network:"
-msgstr "Réseau"
+#: mod/admin.php:1499
+msgid "Don't include post content in email notifications"
+msgstr "Ne pas inclure le contenu posté dans l'e-mail de notification"
 
-#: mod/contacts.php:157
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] "%d contact mis à jour."
-msgstr[1] "%d contacts mis à jour."
+#: mod/admin.php:1499
+msgid ""
+"Don't include the content of a post/comment/private message/etc. in the "
+"email notifications that are sent out from this site, as a privacy measure."
+msgstr "Ne pas inclure le contenu de publication/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité."
 
-#: mod/contacts.php:184 mod/contacts.php:400
-msgid "Could not access contact record."
-msgstr "Impossible d'accéder à l'enregistrement du contact."
+#: mod/admin.php:1500
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Interdire l’accès public pour les greffons listées dans le menu apps."
 
-#: mod/contacts.php:194
-msgid "Could not locate selected profile."
-msgstr "Impossible de localiser le profil séléctionné."
+#: mod/admin.php:1500
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr "Cocher cette case restreint la liste des greffons dans le menu des applications seulement aux membres."
 
-#: mod/contacts.php:228
-msgid "Contact updated."
-msgstr "Contact mis à jour."
+#: mod/admin.php:1501
+msgid "Don't embed private images in posts"
+msgstr "Ne pas miniaturiser les images privées dans les publications"
 
-#: mod/contacts.php:230 mod/dfrn_request.php:415
-msgid "Failed to update contact record."
-msgstr "Échec de mise à jour du contact."
+#: mod/admin.php:1501
+msgid ""
+"Don't replace locally-hosted private photos in posts with an embedded copy "
+"of the image. This means that contacts who receive posts containing private "
+"photos will have to authenticate and load each image, which may take a "
+"while."
+msgstr "Ne remplacez pas les images privées hébergées localement dans les publications avec une image attaché en copie, car cela signifie que le contact qui reçoit les publications contenant ces photos privées devra s’authentifier pour charger chaque image, ce qui peut prendre du temps."
 
-#: mod/contacts.php:421
-msgid "Contact has been blocked"
-msgstr "Le contact a été bloqué"
+#: mod/admin.php:1502
+msgid "Explicit Content"
+msgstr ""
 
-#: mod/contacts.php:421
-msgid "Contact has been unblocked"
-msgstr "Le contact n'est plus bloqué"
+#: mod/admin.php:1502
+msgid ""
+"Set this to announce that your node is used mostly for explicit content that"
+" might not be suited for minors. This information will be published in the "
+"node information and might be used, e.g. by the global directory, to filter "
+"your node from listings of nodes to join. Additionally a note about this "
+"will be shown at the user registration page."
+msgstr ""
 
-#: mod/contacts.php:432
-msgid "Contact has been ignored"
-msgstr "Le contact a été ignoré"
+#: mod/admin.php:1503
+msgid "Allow Users to set remote_self"
+msgstr "Autoriser les utilisateurs à définir remote_self"
 
-#: mod/contacts.php:432
-msgid "Contact has been unignored"
-msgstr "Le contact n'est plus ignoré"
-
-#: mod/contacts.php:443
-msgid "Contact has been archived"
-msgstr "Contact archivé"
-
-#: mod/contacts.php:443
-msgid "Contact has been unarchived"
-msgstr "Contact désarchivé"
-
-#: mod/contacts.php:467
-msgid "Drop contact"
-msgstr "Supprimer contact"
+#: mod/admin.php:1503
+msgid ""
+"With checking this, every user is allowed to mark every contact as a "
+"remote_self in the repair contact dialog. Setting this flag on a contact "
+"causes mirroring every posting of that contact in the users stream."
+msgstr "Cocher cette case, permet à chaque utilisateur de marquer chaque contact comme un remote_self dans la boîte de dialogue de réparation des contacts. Activer cette fonction à un contact engendre la réplique de toutes les publications d'un contact dans le flux d'activités des utilisateurs."
 
-#: mod/contacts.php:470 mod/contacts.php:823
-msgid "Do you really want to delete this contact?"
-msgstr "Voulez-vous vraiment supprimer ce contact?"
+#: mod/admin.php:1504
+msgid "Block multiple registrations"
+msgstr "Interdire les inscriptions multiples"
 
-#: mod/contacts.php:488
-msgid "Contact has been removed."
-msgstr "Ce contact a été retiré."
+#: mod/admin.php:1504
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Ne pas permettre l'inscription de comptes multiples comme des pages."
 
-#: mod/contacts.php:519
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Vous êtes ami (et réciproquement) avec %s"
+#: mod/admin.php:1505
+msgid "OpenID support"
+msgstr "Support OpenID"
 
-#: mod/contacts.php:523
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Vous partagez avec %s"
+#: mod/admin.php:1505
+msgid "OpenID support for registration and logins."
+msgstr "Supporter OpenID pour les inscriptions et connexions."
 
-#: mod/contacts.php:527
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s partage avec vous"
+#: mod/admin.php:1506
+msgid "Fullname check"
+msgstr "Vérification du \"Prénom Nom\""
 
-#: mod/contacts.php:547
-msgid "Private communications are not available for this contact."
-msgstr "Les communications privées ne sont pas disponibles pour ce contact."
+#: mod/admin.php:1506
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Imposer l'utilisation d'un espace entre le prénom et le nom (dans le Nom complet), pour limiter les abus"
 
-#: mod/contacts.php:549
-msgid "Never"
-msgstr "Jamais"
+#: mod/admin.php:1507
+msgid "Community pages for visitors"
+msgstr ""
 
-#: mod/contacts.php:552
-msgid "(Update was successful)"
-msgstr "(Mise à jour effectuée avec succès)"
+#: mod/admin.php:1507
+msgid ""
+"Which community pages should be available for visitors. Local users always "
+"see both pages."
+msgstr ""
 
-#: mod/contacts.php:552
-msgid "(Update was not successful)"
-msgstr "(Échec de la mise à jour)"
+#: mod/admin.php:1508
+msgid "Posts per user on community page"
+msgstr "Nombre de publications par utilisateur sur la page de la communauté (n'est pas valide pour "
 
-#: mod/contacts.php:554 mod/contacts.php:992
-msgid "Suggest friends"
-msgstr "Suggérer amitié/contact"
+#: mod/admin.php:1508
+msgid ""
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
+msgstr "Nombre maximal de publications par utilisateurs sur la page de la communauté (ne s'applique pas pour « Communauté globale »)."
 
-#: mod/contacts.php:558
-#, php-format
-msgid "Network type: %s"
-msgstr "Type de réseau %s"
+#: mod/admin.php:1509
+msgid "Enable OStatus support"
+msgstr "Activer le support d'OStatus"
 
-#: mod/contacts.php:563
-msgid "Communications lost with this contact!"
-msgstr "Communications perdues avec ce contact !"
+#: mod/admin.php:1509
+msgid ""
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "Fourni nativement la compatibilité avec OStatus (StatusNet, GNU Social etc.). Touts les communications utilisant OStatus sont public, des avertissements liés à la vie privée seront affichés si utile."
 
-#: mod/contacts.php:569
-msgid "Fetch further information for feeds"
-msgstr "Chercher plus d'informations pour les flux"
+#: mod/admin.php:1510
+msgid "Only import OStatus/ActivityPub threads from our contacts"
+msgstr ""
 
-#: mod/contacts.php:571
+#: mod/admin.php:1510
 msgid ""
-"Fetch information like preview pictures, title and teaser from the feed "
-"item. You can activate this if the feed doesn't contain much text. Keywords "
-"are taken from the meta header in the feed item and are posted as hash tags."
+"Normally we import every content from our OStatus and ActivityPub contacts. "
+"With this option we only store threads that are started by a contact that is"
+" known on our system."
 msgstr ""
 
-#: mod/contacts.php:572 mod/admin.php:1288 mod/admin.php:1450
-#: mod/admin.php:1460
-msgid "Disabled"
-msgstr "Désactivé"
+#: mod/admin.php:1511
+msgid "OStatus support can only be enabled if threading is enabled."
+msgstr "Le support OStatus ne peut être activé que si l'imbrication des commentaires est activée."
 
-#: mod/contacts.php:573
-msgid "Fetch information"
-msgstr "Récupérer informations"
+#: mod/admin.php:1513
+msgid ""
+"Diaspora support can't be enabled because Friendica was installed into a sub"
+" directory."
+msgstr "Le support de Diaspora ne peut pas être activé parce que Friendica a été installé dans un sous-répertoire."
 
-#: mod/contacts.php:574
-msgid "Fetch keywords"
-msgstr ""
+#: mod/admin.php:1514
+msgid "Enable Diaspora support"
+msgstr "Activer le support de Diaspora"
 
-#: mod/contacts.php:575
-msgid "Fetch information and keywords"
-msgstr "Récupérer informations"
+#: mod/admin.php:1514
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Fournir une compatibilité Diaspora intégrée."
 
-#: mod/contacts.php:599 mod/unfollow.php:100
-msgid "Disconnect/Unfollow"
-msgstr "Se déconnecter/Ne plus suivre"
+#: mod/admin.php:1515
+msgid "Only allow Friendica contacts"
+msgstr "N'autoriser que les contacts Friendica"
 
-#: mod/contacts.php:608
-msgid "Contact"
-msgstr "Contact"
+#: mod/admin.php:1515
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Tous les contacts doivent utiliser les protocoles de Friendica. Tous les autres protocoles de communication intégrés sont désactivés."
 
-#: mod/contacts.php:611
-msgid "Profile Visibility"
-msgstr "Visibilité du profil"
+#: mod/admin.php:1516
+msgid "Verify SSL"
+msgstr "Vérifier SSL"
 
-#: mod/contacts.php:612
-#, php-format
+#: mod/admin.php:1516
 msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée."
+"If you wish, you can turn on strict certificate checking. This will mean you"
+" cannot connect (at all) to self-signed SSL sites."
+msgstr "Si vous le souhaitez, vous pouvez activier la vérification stricte des certificats. Cela signifie que vous ne pourrez pas vous connecter (du tout) aux sites SSL munis d'un certificat auto-signé."
 
-#: mod/contacts.php:613
-msgid "Contact Information / Notes"
-msgstr "Informations de contact / Notes"
+#: mod/admin.php:1517
+msgid "Proxy user"
+msgstr "Utilisateur du proxy"
 
-#: mod/contacts.php:614
-msgid "Their personal note"
-msgstr ""
+#: mod/admin.php:1518
+msgid "Proxy URL"
+msgstr "URL du proxy"
 
-#: mod/contacts.php:616
-msgid "Edit contact notes"
-msgstr "Éditer les notes des contacts"
+#: mod/admin.php:1519
+msgid "Network timeout"
+msgstr "Dépassement du délai d'attente du réseau"
 
-#: mod/contacts.php:620
-msgid "Block/Unblock contact"
-msgstr "Bloquer/débloquer ce contact"
+#: mod/admin.php:1519
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)."
 
-#: mod/contacts.php:621
-msgid "Ignore contact"
-msgstr "Ignorer ce contact"
+#: mod/admin.php:1520
+msgid "Maximum Load Average"
+msgstr "Plafond de la charge moyenne"
 
-#: mod/contacts.php:622
-msgid "Repair URL settings"
-msgstr "Réglages de réparation des URL"
+#: mod/admin.php:1520
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Charge système maximale à partir de laquelle l'émission et la réception seront soumises à un délai supplémentaire. Par défaut, 50."
 
-#: mod/contacts.php:623
-msgid "View conversations"
-msgstr "Voir les conversations"
+#: mod/admin.php:1521
+msgid "Maximum Load Average (Frontend)"
+msgstr "Plafond de la charge moyenne (frontale)"
 
-#: mod/contacts.php:628
-msgid "Last update:"
-msgstr "Dernière mise-à-jour :"
+#: mod/admin.php:1521
+msgid "Maximum system load before the frontend quits service - default 50."
+msgstr "Limite de charge système pour le rendu des pages - défaut 50."
 
-#: mod/contacts.php:630
-msgid "Update public posts"
-msgstr "Mettre à jour les publications publiques:"
+#: mod/admin.php:1522
+msgid "Minimal Memory"
+msgstr ""
 
-#: mod/contacts.php:632 mod/contacts.php:1002
-msgid "Update now"
-msgstr "Mettre à jour"
+#: mod/admin.php:1522
+msgid ""
+"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
+"default 0 (deactivated)."
+msgstr ""
 
-#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
-#: mod/admin.php:489 mod/admin.php:1829
-msgid "Unblock"
-msgstr "Débloquer"
+#: mod/admin.php:1523
+msgid "Maximum table size for optimization"
+msgstr "Limite de taille de table pour l'optimisation"
 
-#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
-#: mod/admin.php:488 mod/admin.php:1828
-msgid "Block"
-msgstr "Bloquer"
+#: mod/admin.php:1523
+msgid ""
+"Maximum table size (in MB) for the automatic optimization. Enter -1 to "
+"disable it."
+msgstr ""
 
-#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
-msgid "Unignore"
-msgstr "Ne plus ignorer"
+#: mod/admin.php:1524
+msgid "Minimum level of fragmentation"
+msgstr "Seuil de fragmentation"
 
-#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
-#: mod/notifications.php:62 mod/notifications.php:181
-#: mod/notifications.php:264
-msgid "Ignore"
-msgstr "Ignorer"
+#: mod/admin.php:1524
+msgid ""
+"Minimum fragmenation level to start the automatic optimization - default "
+"value is 30%."
+msgstr "Seuil de fragmentation pour que l'optimisation automatique se déclenche - défaut 30%."
 
-#: mod/contacts.php:642
-msgid "Currently blocked"
-msgstr "Actuellement bloqué"
+#: mod/admin.php:1526
+msgid "Periodical check of global contacts"
+msgstr "Vérification périodique des contacts globaux"
 
-#: mod/contacts.php:643
-msgid "Currently ignored"
-msgstr "Actuellement ignoré"
+#: mod/admin.php:1526
+msgid ""
+"If enabled, the global contacts are checked periodically for missing or "
+"outdated data and the vitality of the contacts and servers."
+msgstr "Si activé, les données manquantes et obsolètes et la vitalité des contacts et des serveurs seront vérifiées périodiquement dans les contacts globaux."
 
-#: mod/contacts.php:644
-msgid "Currently archived"
-msgstr "Actuellement archivé"
+#: mod/admin.php:1527
+msgid "Days between requery"
+msgstr "Nombre de jours entre les requêtes"
 
-#: mod/contacts.php:645
-msgid "Awaiting connection acknowledge"
-msgstr ""
+#: mod/admin.php:1527
+msgid "Number of days after which a server is requeried for his contacts."
+msgstr "Nombre de jours avant qu'une requête de contacts soient envoyée à nouveau à un serveur."
 
-#: mod/contacts.php:646 mod/notifications.php:175 mod/notifications.php:253
-msgid "Hide this contact from others"
-msgstr "Cacher ce contact aux autres"
+#: mod/admin.php:1528
+msgid "Discover contacts from other servers"
+msgstr "Découvrir des contacts des autres serveurs"
 
-#: mod/contacts.php:646
+#: mod/admin.php:1528
 msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Les réponses et \"j'aime\" à vos publications publiques <strong>peuvent</strong> être toujours visibles"
+"Periodically query other servers for contacts. You can choose between "
+"'users': the users on the remote system, 'Global Contacts': active contacts "
+"that are known on the system. The fallback is meant for Redmatrix servers "
+"and older friendica servers, where global contacts weren't available. The "
+"fallback increases the server load, so the recommened setting is 'Users, "
+"Global Contacts'."
+msgstr ""
 
-#: mod/contacts.php:647
-msgid "Notification for new posts"
-msgstr "Notification des nouvelles publications"
+#: mod/admin.php:1529
+msgid "Timeframe for fetching global contacts"
+msgstr "Fréquence de récupération des contacts globaux"
 
-#: mod/contacts.php:647
-msgid "Send a notification of every new post of this contact"
-msgstr "Envoyer une notification de chaque nouveau message en provenance de ce contact"
+#: mod/admin.php:1529
+msgid ""
+"When the discovery is activated, this value defines the timeframe for the "
+"activity of the global contacts that are fetched from other servers."
+msgstr "Quand la découverte de contacts est activée, cette valeur détermine la fréquence de récupération des données des contacts globaux présents sur d'autres serveurs."
 
-#: mod/contacts.php:650
-msgid "Blacklisted keywords"
-msgstr "Mots-clés sur la liste noire"
+#: mod/admin.php:1530
+msgid "Search the local directory"
+msgstr "Chercher dans le répertoire local"
 
-#: mod/contacts.php:650
+#: mod/admin.php:1530
 msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
-msgstr "Liste de mots-clés separés par des virgules qui ne doivent pas être converti en mots-dièse quand  « Récupérer informations et mots-clés » est sélectionné."
+"Search the local directory instead of the global directory. When searching "
+"locally, every search will be executed on the global directory in the "
+"background. This improves the search results when the search is repeated."
+msgstr "Cherche dans le répertoire local au lieu du répertoire local. Quand une recherche locale est effectuée, la même recherche est effectuée dans le répertoire global en tâche de fond. Cela améliore les résultats de la recherche si elle est réitérée."
 
-#: mod/contacts.php:656 mod/unfollow.php:122 mod/follow.php:166
-#: mod/admin.php:494 mod/admin.php:504 mod/notifications.php:256
-msgid "Profile URL"
-msgstr "URL du Profil"
+#: mod/admin.php:1532
+msgid "Publish server information"
+msgstr "Publier les informations du serveur"
 
-#: mod/contacts.php:660 mod/events.php:518 mod/directory.php:148
-#: mod/notifications.php:246 src/Model/Event.php:60 src/Model/Event.php:85
-#: src/Model/Event.php:421 src/Model/Event.php:900 src/Model/Profile.php:413
-msgid "Location:"
-msgstr "Localisation :"
+#: mod/admin.php:1532
+msgid ""
+"If enabled, general server and usage data will be published. The data "
+"contains the name and version of the server, number of users with public "
+"profiles, number of posts and the activated protocols and connectors. See <a"
+" href='http://the-federation.info/'>the-federation.info</a> for details."
+msgstr "Si cette option est activée, des informations sur le serveur et son utilisation seront publiées. Ces informations incluent le nom et la version du serveur, le nombre d’utilisateurs avec des profils publics, le nombre de messages, les protocoles supportés et les connecteurs disponibles. Plus de détails sur <a href='http://the-federation.info/'>the-federation.info</a>."
 
-#: mod/contacts.php:662 src/Model/Profile.php:420
-msgid "XMPP:"
-msgstr "XMPP"
+#: mod/admin.php:1534
+msgid "Check upstream version"
+msgstr "Mises à jour"
 
-#: mod/contacts.php:664 mod/directory.php:154 mod/notifications.php:248
-#: src/Model/Profile.php:419 src/Model/Profile.php:804
-msgid "About:"
-msgstr "À propos :"
+#: mod/admin.php:1534
+msgid ""
+"Enables checking for new Friendica versions at github. If there is a new "
+"version, you will be informed in the admin panel overview."
+msgstr "Permet de vérifier la présence de nouvelles versions de Friendica sur github. Si une nouvelle version est disponible, vous recevrez une notification dans l'interface d'administration."
 
-#: mod/contacts.php:666 mod/follow.php:174 mod/notifications.php:250
-#: src/Model/Profile.php:792
-msgid "Tags:"
-msgstr "Étiquette :"
+#: mod/admin.php:1535
+msgid "Suppress Tags"
+msgstr "Masquer les tags"
 
-#: mod/contacts.php:667
-msgid "Actions"
-msgstr "Actions"
+#: mod/admin.php:1535
+msgid "Suppress showing a list of hashtags at the end of the posting."
+msgstr "Ne pas afficher la liste des hashtags à la fin d’un message."
 
-#: mod/contacts.php:669 mod/contacts.php:855 view/theme/frio/theme.php:259
-#: src/Content/Nav.php:100 src/Model/Profile.php:886
-msgid "Status"
-msgstr "Statut"
+#: mod/admin.php:1536
+msgid "Clean database"
+msgstr ""
 
-#: mod/contacts.php:670
-msgid "Contact Settings"
-msgstr "Paramètres du Contact"
+#: mod/admin.php:1536
+msgid ""
+"Remove old remote items, orphaned database records and old content from some"
+" other helper tables."
+msgstr ""
 
-#: mod/contacts.php:711
-msgid "Suggestions"
-msgstr "Suggestions"
+#: mod/admin.php:1537
+msgid "Lifespan of remote items"
+msgstr ""
 
-#: mod/contacts.php:714
-msgid "Suggest potential friends"
-msgstr "Suggérer des amis potentiels"
+#: mod/admin.php:1537
+msgid ""
+"When the database cleanup is enabled, this defines the days after which "
+"remote items will be deleted. Own items, and marked or filed items are "
+"always kept. 0 disables this behaviour."
+msgstr ""
 
-#: mod/contacts.php:719 mod/group.php:215
-msgid "All Contacts"
-msgstr "Tous les contacts"
+#: mod/admin.php:1538
+msgid "Lifespan of unclaimed items"
+msgstr ""
 
-#: mod/contacts.php:722
-msgid "Show all contacts"
-msgstr "Montrer tous les contacts"
+#: mod/admin.php:1538
+msgid ""
+"When the database cleanup is enabled, this defines the days after which "
+"unclaimed remote items (mostly content from the relay) will be deleted. "
+"Default value is 90 days. Defaults to the general lifespan value of remote "
+"items if set to 0."
+msgstr ""
 
-#: mod/contacts.php:727
-msgid "Unblocked"
-msgstr "Non-bloqués"
+#: mod/admin.php:1539
+msgid "Path to item cache"
+msgstr "Chemin vers le cache des objets."
 
-#: mod/contacts.php:730
-msgid "Only show unblocked contacts"
-msgstr "Ne montrer que les contacts non-bloqués"
+#: mod/admin.php:1539
+msgid "The item caches buffers generated bbcode and external images."
+msgstr ""
 
-#: mod/contacts.php:735
-msgid "Blocked"
-msgstr "Bloqués"
+#: mod/admin.php:1540
+msgid "Cache duration in seconds"
+msgstr "Durée du cache en secondes"
 
-#: mod/contacts.php:738
-msgid "Only show blocked contacts"
-msgstr "Ne montrer que les contacts bloqués"
+#: mod/admin.php:1540
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day). To disable the item cache, set the value to -1."
+msgstr "Combien de temps les fichiers de cache doivent être maintenu? La valeur par défaut est 86400 secondes (une journée). Pour désactiver le cache de l'item, définissez la valeur à -1."
 
-#: mod/contacts.php:743
-msgid "Ignored"
-msgstr "Ignorés"
+#: mod/admin.php:1541
+msgid "Maximum numbers of comments per post"
+msgstr "Nombre maximum de commentaires par publication"
 
-#: mod/contacts.php:746
-msgid "Only show ignored contacts"
-msgstr "Ne montrer que les contacts ignorés"
+#: mod/admin.php:1541
+msgid "How much comments should be shown for each post? Default value is 100."
+msgstr "Combien de commentaires doivent être affichés pour chaque publication? Valeur par défaut: 100."
 
-#: mod/contacts.php:751
-msgid "Archived"
-msgstr "Archivés"
+#: mod/admin.php:1542
+msgid "Temp path"
+msgstr "Chemin des fichiers temporaires"
 
-#: mod/contacts.php:754
-msgid "Only show archived contacts"
-msgstr "Ne montrer que les contacts archivés"
+#: mod/admin.php:1542
+msgid ""
+"If you have a restricted system where the webserver can't access the system "
+"temp path, enter another path here."
+msgstr "Si vous n'avez pas la possibilité d'avoir accès au répertoire temp, entrez un autre répertoire ici."
 
-#: mod/contacts.php:759
-msgid "Hidden"
-msgstr "Cachés"
+#: mod/admin.php:1543
+msgid "Base path to installation"
+msgstr "Chemin de base de l'installation"
 
-#: mod/contacts.php:762
-msgid "Only show hidden contacts"
-msgstr "Ne montrer que les contacts masqués"
+#: mod/admin.php:1543
+msgid ""
+"If the system cannot detect the correct path to your installation, enter the"
+" correct path here. This setting should only be set if you are using a "
+"restricted system and symbolic links to your webroot."
+msgstr "Si le système ne peut pas détecter le chemin de l'installation, entrez le bon chemin ici. Ce paramètre doit être utilisé uniquement si vous avez des accès restreints à votre système et que vous n'avez qu'un lien symbolique vers le répertoire web."
 
-#: mod/contacts.php:818
-msgid "Search your contacts"
-msgstr "Rechercher dans vos contacts"
+#: mod/admin.php:1544
+msgid "Disable picture proxy"
+msgstr "Désactiver le proxy image "
 
-#: mod/contacts.php:820 mod/directory.php:209 view/theme/vier/theme.php:203
-#: src/Content/Widget.php:63
-msgid "Find"
-msgstr "Trouver"
+#: mod/admin.php:1544
+msgid ""
+"The picture proxy increases performance and privacy. It shouldn't be used on"
+" systems with very low bandwidth."
+msgstr ""
 
-#: mod/contacts.php:826 mod/settings.php:169 mod/settings.php:695
-msgid "Update"
-msgstr "Mises à jour"
+#: mod/admin.php:1545
+msgid "Only search in tags"
+msgstr "Rechercher seulement dans les étiquettes"
 
-#: mod/contacts.php:829 mod/contacts.php:1027
-msgid "Archive"
-msgstr "Archiver"
+#: mod/admin.php:1545
+msgid "On large systems the text search can slow down the system extremely."
+msgstr "La recherche textuelle peut ralentir considérablement les systèmes de grande taille."
 
-#: mod/contacts.php:829 mod/contacts.php:1027
-msgid "Unarchive"
-msgstr "Désarchiver"
+#: mod/admin.php:1547
+msgid "New base url"
+msgstr "Nouvelle URL de base"
 
-#: mod/contacts.php:832
-msgid "Batch Actions"
-msgstr "Actions multiples"
+#: mod/admin.php:1547
+msgid ""
+"Change base url for this server. Sends relocate message to all Friendica and"
+" Diaspora* contacts of all users."
+msgstr ""
 
-#: mod/contacts.php:858 mod/unfollow.php:132 mod/follow.php:186
-#: src/Model/Profile.php:889
-msgid "Status Messages and Posts"
-msgstr "Messages d'état et publications"
+#: mod/admin.php:1549
+msgid "RINO Encryption"
+msgstr "Chiffrement RINO"
 
-#: mod/contacts.php:866 src/Model/Profile.php:897
-msgid "Profile Details"
-msgstr "Détails du profil"
+#: mod/admin.php:1549
+msgid "Encryption layer between nodes."
+msgstr "Couche de chiffrement entre les nœuds du réseau."
 
-#: mod/contacts.php:878
-msgid "View all contacts"
-msgstr "Voir tous les contacts"
+#: mod/admin.php:1549
+msgid "Enabled"
+msgstr ""
 
-#: mod/contacts.php:889
-msgid "View all common friends"
-msgstr "Voir tous les amis communs"
+#: mod/admin.php:1551
+msgid "Maximum number of parallel workers"
+msgstr "Nombre maximum de processus simultanés"
 
-#: mod/contacts.php:895 mod/events.php:532 mod/admin.php:1363
-#: src/Model/Profile.php:863
-msgid "Advanced"
-msgstr "Avancé"
+#: mod/admin.php:1551
+#, php-format
+msgid ""
+"On shared hosters set this to %d. On larger systems, values of %d are great."
+" Default value is %d."
+msgstr ""
 
-#: mod/contacts.php:898
-msgid "Advanced Contact Settings"
-msgstr "Réglages avancés du contact"
+#: mod/admin.php:1552
+msgid "Don't use 'proc_open' with the worker"
+msgstr "Ne pas utiliser 'proc_open' pour les tâches de fond"
 
-#: mod/contacts.php:930
-msgid "Mutual Friendship"
-msgstr "Relation réciproque"
+#: mod/admin.php:1552
+msgid ""
+"Enable this if your system doesn't allow the use of 'proc_open'. This can "
+"happen on shared hosters. If this is enabled you should increase the "
+"frequency of worker calls in your crontab."
+msgstr "Activez cette option si votre système ne permet pas d'utiliser 'proc_open'. Cela peut être le cas sur les hébergements partagés. Si vous activez cette option, vous devriez augmenter la fréquence d'appel du \"worker\" dans crontab."
 
-#: mod/contacts.php:934
-msgid "is a fan of yours"
-msgstr "Vous suit"
+#: mod/admin.php:1553
+msgid "Enable fastlane"
+msgstr ""
 
-#: mod/contacts.php:938
-msgid "you are a fan of"
-msgstr "Vous le/la suivez"
+#: mod/admin.php:1553
+msgid ""
+"When enabed, the fastlane mechanism starts an additional worker if processes"
+" with higher priority are blocked by processes of lower priority."
+msgstr ""
 
-#: mod/contacts.php:1013
-msgid "Toggle Blocked status"
-msgstr "(dés)activer l'état \"bloqué\""
+#: mod/admin.php:1554
+msgid "Enable frontend worker"
+msgstr ""
 
-#: mod/contacts.php:1021
-msgid "Toggle Ignored status"
-msgstr "(dés)activer l'état \"ignoré\""
+#: mod/admin.php:1554
+#, php-format
+msgid ""
+"When enabled the Worker process is triggered when backend access is "
+"performed \\x28e.g. messages being delivered\\x29. On smaller sites you "
+"might want to call %s/worker on a regular basis via an external cron job. "
+"You should only enable this option if you cannot utilize cron/scheduled jobs"
+" on your server."
+msgstr ""
 
-#: mod/contacts.php:1029
-msgid "Toggle Archive status"
-msgstr "(dés)activer l'état \"archivé\""
+#: mod/admin.php:1556
+msgid "Subscribe to relay"
+msgstr ""
 
-#: mod/contacts.php:1037
-msgid "Delete contact"
-msgstr "Effacer ce contact"
+#: mod/admin.php:1556
+msgid ""
+"Enables the receiving of public posts from the relay. They will be included "
+"in the search, subscribed tags and on the global community page."
+msgstr ""
 
-#: mod/delegate.php:37
-msgid "Parent user not found."
+#: mod/admin.php:1557
+msgid "Relay server"
 msgstr ""
 
-#: mod/delegate.php:144
-msgid "No parent user"
+#: mod/admin.php:1557
+msgid ""
+"Address of the relay server where public posts should be send to. For "
+"example https://relay.diasp.org"
 msgstr ""
 
-#: mod/delegate.php:159
-msgid "Parent Password:"
+#: mod/admin.php:1558
+msgid "Direct relay transfer"
 msgstr ""
 
-#: mod/delegate.php:159
+#: mod/admin.php:1558
 msgid ""
-"Please enter the password of the parent account to legitimize your request."
+"Enables the direct transfer to other servers without using the relay servers"
 msgstr ""
 
-#: mod/delegate.php:164
-msgid "Parent User"
+#: mod/admin.php:1559
+msgid "Relay scope"
 msgstr ""
 
-#: mod/delegate.php:167
+#: mod/admin.php:1559
 msgid ""
-"Parent users have total control about this account, including the account "
-"settings. Please double check whom you give this access."
+"Can be 'all' or 'tags'. 'all' means that every public post should be "
+"received. 'tags' means that only posts with selected tags should be "
+"received."
 msgstr ""
 
-#: mod/delegate.php:168 mod/admin.php:311 mod/admin.php:1358
-#: mod/admin.php:1994 mod/admin.php:2247 mod/admin.php:2321 mod/admin.php:2468
-#: mod/settings.php:669 mod/settings.php:776 mod/settings.php:864
-#: mod/settings.php:953 mod/settings.php:1183
-msgid "Save Settings"
-msgstr "Sauvegarder les paramètres"
+#: mod/admin.php:1559
+msgid "all"
+msgstr ""
 
-#: mod/delegate.php:169 src/Content/Nav.php:205
-msgid "Delegate Page Management"
-msgstr "Déléguer la gestion de la page"
+#: mod/admin.php:1559
+msgid "tags"
+msgstr ""
 
-#: mod/delegate.php:170
-msgid "Delegates"
+#: mod/admin.php:1560
+msgid "Server tags"
 msgstr ""
 
-#: mod/delegate.php:172
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue."
+#: mod/admin.php:1560
+msgid "Comma separated list of tags for the 'tags' subscription."
+msgstr ""
 
-#: mod/delegate.php:173
-msgid "Existing Page Delegates"
-msgstr "Délégataires existants"
+#: mod/admin.php:1561
+msgid "Allow user tags"
+msgstr ""
 
-#: mod/delegate.php:175
-msgid "Potential Delegates"
-msgstr "Délégataires potentiels"
+#: mod/admin.php:1561
+msgid ""
+"If enabled, the tags from the saved searches will used for the 'tags' "
+"subscription in addition to the 'relay_server_tags'."
+msgstr ""
 
-#: mod/delegate.php:178
-msgid "Add"
-msgstr "Ajouter"
+#: mod/admin.php:1564
+msgid "Start Relocation"
+msgstr ""
 
-#: mod/delegate.php:179
-msgid "No entries."
-msgstr "Aucune entrée."
+#: mod/admin.php:1590
+msgid "Update has been marked successful"
+msgstr "Mise-à-jour validée comme 'réussie'"
 
-#: mod/events.php:105 mod/events.php:107
-msgid "Event can not end before it has started."
-msgstr "L'événement ne peut pas se terminer avant d'avoir commencé."
+#: mod/admin.php:1597
+#, php-format
+msgid "Database structure update %s was successfully applied."
+msgstr "La structure de base de données pour la mise à jour %s a été appliquée avec succès."
 
-#: mod/events.php:114 mod/events.php:116
-msgid "Event title and start time are required."
-msgstr "Vous devez donner un nom et un horaire de début à l'événement."
-
-#: mod/events.php:393
-msgid "Create New Event"
-msgstr "Créer un nouvel événement"
+#: mod/admin.php:1600
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
+msgstr "L'exécution de la mise à jour %s pour la structure de base de données a échoué avec l'erreur: %s"
 
-#: mod/events.php:506
-msgid "Event details"
-msgstr "Détails de l'événement"
+#: mod/admin.php:1616
+#, php-format
+msgid "Executing %s failed with error: %s"
+msgstr "L'exécution %s a échoué avec l'erreur: %s"
 
-#: mod/events.php:507
-msgid "Starting date and Title are required."
-msgstr "La date de début et le titre sont requis."
+#: mod/admin.php:1618
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Mise-à-jour %s appliquée avec succès."
 
-#: mod/events.php:508 mod/events.php:509
-msgid "Event Starts:"
-msgstr "Début de l'événement :"
+#: mod/admin.php:1621
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "La mise-à-jour %s n'a pas retourné de détails. Impossible de savoir si elle a réussi."
 
-#: mod/events.php:508 mod/events.php:520 mod/profiles.php:607
-msgid "Required"
-msgstr "Requis"
+#: mod/admin.php:1624
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
+msgstr "Il n'y avait aucune fonction supplémentaire de mise à jour %s qui devait être appelé"
 
-#: mod/events.php:510 mod/events.php:526
-msgid "Finish date/time is not known or not relevant"
-msgstr "Date / heure de fin inconnue ou sans objet"
+#: mod/admin.php:1647
+msgid "No failed updates."
+msgstr "Pas de mises-à-jour échouées."
 
-#: mod/events.php:512 mod/events.php:513
-msgid "Event Finishes:"
-msgstr "Fin de l'événement :"
+#: mod/admin.php:1648
+msgid "Check database structure"
+msgstr "Vérifier la structure de la base de données"
 
-#: mod/events.php:514 mod/events.php:527
-msgid "Adjust for viewer timezone"
-msgstr "Ajuster à la zone horaire du visiteur"
+#: mod/admin.php:1653
+msgid "Failed Updates"
+msgstr "Mises-à-jour échouées"
 
-#: mod/events.php:516
-msgid "Description:"
-msgstr "Description :"
+#: mod/admin.php:1654
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails."
 
-#: mod/events.php:520 mod/events.php:522
-msgid "Title:"
-msgstr "Titre :"
+#: mod/admin.php:1655
+msgid "Mark success (if update was manually applied)"
+msgstr "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)"
 
-#: mod/events.php:523 mod/events.php:524
-msgid "Share this event"
-msgstr "Partager cet événement"
+#: mod/admin.php:1656
+msgid "Attempt to execute this update step automatically"
+msgstr "Tenter d'éxecuter cette étape automatiquement"
 
-#: mod/events.php:531 src/Model/Profile.php:862
-msgid "Basic"
-msgstr "Simple"
+#: mod/admin.php:1695
+#, php-format
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tthe administrator of %2$s has set up an account for you."
+msgstr "\n\t\t\tChère/Cher %1$s,\n\t\t\t\tL’administrateur de %2$s vous a ouvert un compte."
 
-#: mod/events.php:552
-msgid "Failed to remove event"
-msgstr "La suppression de l'événement a échoué."
+#: mod/admin.php:1698
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%1$s\n"
+"\t\t\tLogin Name:\t\t%2$s\n"
+"\t\t\tPassword:\t\t%3$s\n"
+"\n"
+"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\t\tin.\n"
+"\n"
+"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\t\tthan that.\n"
+"\n"
+"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\t\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n"
+"\n"
+"\t\t\tThank you and welcome to %4$s."
+msgstr ""
 
-#: mod/events.php:554
-msgid "Event removed"
-msgstr "Événement supprimé."
+#: mod/admin.php:1735 src/Model/User.php:771
+#, php-format
+msgid "Registration details for %s"
+msgstr "Détails d'inscription pour %s"
 
-#: mod/feedtest.php:20
-msgid "You must be logged in to use this module"
-msgstr ""
+#: mod/admin.php:1745
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s utilisateur a (dé)bloqué"
+msgstr[1] "%s utilisateurs ont (dé)bloqué"
 
-#: mod/feedtest.php:48
-msgid "Source URL"
-msgstr ""
+#: mod/admin.php:1751
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s utilisateur supprimé"
+msgstr[1] "%s utilisateurs supprimés"
 
-#: mod/oexchange.php:30
-msgid "Post successful."
-msgstr "Publication réussie."
+#: mod/admin.php:1798
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Utilisateur '%s' supprimé"
 
-#: mod/ostatus_subscribe.php:21
-msgid "Subscribing to OStatus contacts"
-msgstr "Inscription aux contacts OStatus"
+#: mod/admin.php:1806
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Utilisateur '%s' débloqué"
 
-#: mod/ostatus_subscribe.php:33
-msgid "No contact provided."
-msgstr "Pas de contact fourni."
+#: mod/admin.php:1806
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Utilisateur '%s' bloqué"
 
-#: mod/ostatus_subscribe.php:40
-msgid "Couldn't fetch information for contact."
-msgstr "Impossible de récupérer les informations pour ce contact."
+#: mod/admin.php:1854 mod/settings.php:1062
+msgid "Normal Account Page"
+msgstr "Compte normal"
 
-#: mod/ostatus_subscribe.php:50
-msgid "Couldn't fetch friends for contact."
-msgstr "Impossible de récupérer les amis de ce contact."
+#: mod/admin.php:1855 mod/settings.php:1066
+msgid "Soapbox Page"
+msgstr "Compte \"boîte à savon\""
 
-#: mod/ostatus_subscribe.php:78
-msgid "success"
-msgstr "réussite"
+#: mod/admin.php:1856 mod/settings.php:1070
+msgid "Public Forum"
+msgstr "Forum public"
 
-#: mod/ostatus_subscribe.php:80
-msgid "failed"
-msgstr "échec"
+#: mod/admin.php:1857 mod/settings.php:1074
+msgid "Automatic Friend Page"
+msgstr "Compte d' \"amitié automatique\""
 
-#: mod/ostatus_subscribe.php:83 src/Object/Post.php:287
-msgid "ignored"
-msgstr "ignoré"
+#: mod/admin.php:1858
+msgid "Private Forum"
+msgstr ""
 
-#: mod/profile_photo.php:55
-msgid "Image uploaded but image cropping failed."
-msgstr "Image envoyée, mais impossible de la retailler."
+#: mod/admin.php:1861 mod/settings.php:1046
+msgid "Personal Page"
+msgstr "Page personnelle"
 
-#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104
-#: mod/profile_photo.php:315
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Réduction de la taille de l'image [%s] échouée."
+#: mod/admin.php:1862 mod/settings.php:1050
+msgid "Organisation Page"
+msgstr ""
 
-#: mod/profile_photo.php:125
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement."
+#: mod/admin.php:1863 mod/settings.php:1054
+msgid "News Page"
+msgstr "Page d'informations"
 
-#: mod/profile_photo.php:134
-msgid "Unable to process image"
-msgstr "Impossible de traiter l'image"
+#: mod/admin.php:1864 mod/settings.php:1058
+msgid "Community Forum"
+msgstr ""
 
-#: mod/profile_photo.php:247
-msgid "Upload File:"
-msgstr "Fichier à téléverser :"
+#: mod/admin.php:1910 mod/admin.php:1921 mod/admin.php:1935 mod/admin.php:1953
+#: src/Content/ContactSelector.php:83
+msgid "Email"
+msgstr "Courriel"
 
-#: mod/profile_photo.php:248
-msgid "Select a profile:"
-msgstr "Choisir un profil :"
+#: mod/admin.php:1910 mod/admin.php:1935
+msgid "Register date"
+msgstr "Date d'inscription"
 
-#: mod/profile_photo.php:253
-msgid "or"
-msgstr "ou"
+#: mod/admin.php:1910 mod/admin.php:1935
+msgid "Last login"
+msgstr "Dernière connexion"
 
-#: mod/profile_photo.php:253
-msgid "skip this step"
-msgstr "ignorer cette étape"
+#: mod/admin.php:1910 mod/admin.php:1935
+msgid "Last item"
+msgstr "Dernier élément"
 
-#: mod/profile_photo.php:253
-msgid "select a photo from your photo albums"
-msgstr "choisissez une photo depuis vos albums"
+#: mod/admin.php:1910
+msgid "Type"
+msgstr ""
 
-#: mod/profile_photo.php:266
-msgid "Crop Image"
-msgstr "(Re)cadrer l'image"
+#: mod/admin.php:1917
+msgid "Add User"
+msgstr "Ajouter l'utilisateur"
 
-#: mod/profile_photo.php:267
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Ajustez le cadre de l'image pour une visualisation optimale."
+#: mod/admin.php:1919
+msgid "User registrations waiting for confirm"
+msgstr "Inscriptions d'utilisateurs en attente de confirmation"
 
-#: mod/profile_photo.php:269
-msgid "Done Editing"
-msgstr "Édition terminée"
+#: mod/admin.php:1920
+msgid "User waiting for permanent deletion"
+msgstr "Utilisateur en attente de suppression définitive"
 
-#: mod/profile_photo.php:305
-msgid "Image uploaded successfully."
-msgstr "Image téléversée avec succès."
+#: mod/admin.php:1921
+msgid "Request date"
+msgstr "Date de la demande"
 
-#: mod/unfollow.php:34
-msgid "Contact wasn't found or can't be unfollowed."
-msgstr "Le contact n'a pas été trouvé ou ne peut pas être suivi."
+#: mod/admin.php:1922
+msgid "No registrations."
+msgstr "Pas d'inscriptions."
 
-#: mod/unfollow.php:47
-msgid "Contact unfollowed"
+#: mod/admin.php:1923
+msgid "Note from the user"
 msgstr ""
 
-#: mod/unfollow.php:65 mod/follow.php:62 mod/dfrn_request.php:657
-msgid "Submit Request"
-msgstr "Envoyer la requête"
+#: mod/admin.php:1924 mod/notifications.php:180 mod/notifications.php:266
+msgid "Approve"
+msgstr "Approuver"
 
-#: mod/unfollow.php:73
-msgid "You aren't a friend of this contact."
-msgstr "Vous n'êtes pas amis avec ce contact."
+#: mod/admin.php:1925
+msgid "Deny"
+msgstr "Rejetter"
 
-#: mod/unfollow.php:79
-msgid "Unfollowing is currently not supported by your network."
+#: mod/admin.php:1928
+msgid "User blocked"
 msgstr ""
 
-#: mod/unfollow.php:113 mod/follow.php:157 mod/dfrn_request.php:655
-msgid "Your Identity Address:"
-msgstr "Votre adresse d'identité :"
-
-#: mod/directory.php:151 mod/notifications.php:252 src/Model/Profile.php:416
-#: src/Model/Profile.php:743
-msgid "Gender:"
-msgstr "Genre :"
+#: mod/admin.php:1930
+msgid "Site admin"
+msgstr "Administration du Site"
 
-#: mod/directory.php:152 src/Model/Profile.php:417 src/Model/Profile.php:767
-msgid "Status:"
-msgstr "Statut :"
+#: mod/admin.php:1931
+msgid "Account expired"
+msgstr "Compte expiré"
 
-#: mod/directory.php:153 src/Model/Profile.php:418 src/Model/Profile.php:784
-msgid "Homepage:"
-msgstr "Page personnelle :"
+#: mod/admin.php:1934
+msgid "New User"
+msgstr "Nouvel utilisateur"
 
-#: mod/directory.php:202 view/theme/vier/theme.php:208
-#: src/Content/Widget.php:68
-msgid "Global Directory"
-msgstr "Annuaire global"
+#: mod/admin.php:1935
+msgid "Delete in"
+msgstr ""
 
-#: mod/directory.php:204
-msgid "Find on this site"
-msgstr "Trouver sur ce site"
+#: mod/admin.php:1940
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement effacé!\\n\\nÊtes-vous certain?"
 
-#: mod/directory.php:206
-msgid "Results for:"
-msgstr "Résultats pour :"
+#: mod/admin.php:1941
+msgid ""
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?"
 
-#: mod/directory.php:208
-msgid "Site Directory"
-msgstr "Annuaire local"
+#: mod/admin.php:1951
+msgid "Name of the new user."
+msgstr "Nom du nouvel utilisateur."
 
-#: mod/directory.php:213
-msgid "No entries (some entries may be hidden)."
-msgstr "Aucune entrée (certaines peuvent être cachées)."
+#: mod/admin.php:1952
+msgid "Nickname"
+msgstr "Pseudo"
 
-#: mod/dirfind.php:49
-#, php-format
-msgid "People Search - %s"
-msgstr "Recherche de personne - %s"
+#: mod/admin.php:1952
+msgid "Nickname of the new user."
+msgstr "Pseudo du nouvel utilisateur."
 
-#: mod/dirfind.php:60
-#, php-format
-msgid "Forum Search - %s"
-msgstr "Recherche de Forum - %s"
+#: mod/admin.php:1953
+msgid "Email address of the new user."
+msgstr "Adresse mail du nouvel utilisateur."
 
-#: mod/follow.php:45
-msgid "The contact could not be added."
+#: mod/admin.php:1994
+#, php-format
+msgid "Addon %s disabled."
 msgstr ""
 
-#: mod/follow.php:73
-msgid "You already added this contact."
-msgstr "Vous avez déjà ajouté ce contact."
-
-#: mod/follow.php:83
-msgid "Diaspora support isn't enabled. Contact can't be added."
-msgstr "Le support de Diaspora est désactivé. Le contact ne peut pas être ajouté."
-
-#: mod/follow.php:90
-msgid "OStatus support is disabled. Contact can't be added."
-msgstr "Le support d'OStatus est désactivé. Le contact ne peut pas être ajouté."
+#: mod/admin.php:1997
+#, php-format
+msgid "Addon %s enabled."
+msgstr ""
 
-#: mod/follow.php:97
-msgid "The network type couldn't be detected. Contact can't be added."
-msgstr "Impossible de détecter le type de réseau. Le contact ne peut pas être ajouté."
+#: mod/admin.php:2008 mod/admin.php:2257
+msgid "Disable"
+msgstr "Désactiver"
 
-#: mod/follow.php:149 mod/dfrn_request.php:647
-msgid "Please answer the following:"
-msgstr "Merci de répondre à ce qui suit :"
+#: mod/admin.php:2011 mod/admin.php:2260
+msgid "Enable"
+msgstr "Activer"
 
-#: mod/follow.php:150 mod/dfrn_request.php:648
-#, php-format
-msgid "Does %s know you?"
-msgstr "Est-ce que %s vous connaît?"
+#: mod/admin.php:2033 mod/admin.php:2303
+msgid "Toggle"
+msgstr "Activer/Désactiver"
 
-#: mod/follow.php:151 mod/dfrn_request.php:649
-msgid "Add a personal note:"
-msgstr "Ajouter une note personnelle :"
+#: mod/admin.php:2034 mod/admin.php:2304 mod/newmember.php:19
+#: mod/settings.php:134 view/theme/frio/theme.php:281 src/Content/Nav.php:259
+msgid "Settings"
+msgstr "Réglages"
 
-#: mod/lostpass.php:27
-msgid "No valid account found."
-msgstr "Impossible de trouver un compte valide."
+#: mod/admin.php:2041 mod/admin.php:2312
+msgid "Author: "
+msgstr "Auteur : "
 
-#: mod/lostpass.php:39
-msgid "Password reset request issued. Check your email."
-msgstr "Réinitialisation du mot de passe en cours. Vérifiez votre courriel."
+#: mod/admin.php:2042 mod/admin.php:2313
+msgid "Maintainer: "
+msgstr "Mainteneur : "
 
-#: mod/lostpass.php:45
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
-"\t\tpassword. In order to confirm this request, please select the verification link\n"
-"\t\tbelow or paste it into your web browser address bar.\n"
-"\n"
-"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
-"\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n"
-"\n"
-"\t\tYour password will not be changed unless we can verify that you\n"
-"\t\tissued this request."
+#: mod/admin.php:2094
+msgid "Reload active addons"
 msgstr ""
 
-#: mod/lostpass.php:56
+#: mod/admin.php:2099
 #, php-format
 msgid ""
-"\n"
-"\t\tFollow this link soon to verify your identity:\n"
-"\n"
-"\t\t%1$s\n"
-"\n"
-"\t\tYou will then receive a follow-up message containing the new password.\n"
-"\t\tYou may change that password from your account settings page after logging in.\n"
-"\n"
-"\t\tThe login details are as follows:\n"
-"\n"
-"\t\tSite Location:\t%2$s\n"
-"\t\tLogin Name:\t%3$s"
+"There are currently no addons available on your node. You can find the "
+"official addon repository at %1$s and might find other interesting addons in"
+" the open addon registry at %2$s"
 msgstr ""
 
-#: mod/lostpass.php:73
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Requête de réinitialisation de mot de passe à %s"
+#: mod/admin.php:2219
+msgid "No themes found."
+msgstr "Aucun thème trouvé."
 
-#: mod/lostpass.php:89
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué."
+#: mod/admin.php:2294
+msgid "Screenshot"
+msgstr "Capture d'écran"
 
-#: mod/lostpass.php:102
-msgid "Request has expired, please make a new one."
+#: mod/admin.php:2348
+msgid "Reload active themes"
+msgstr "Recharger les thèmes actifs"
+
+#: mod/admin.php:2353
+#, php-format
+msgid "No themes found on the system. They should be placed in %1$s"
 msgstr ""
 
-#: mod/lostpass.php:117
-msgid "Forgot your Password?"
-msgstr "Mot de passe oublié ?"
+#: mod/admin.php:2354
+msgid "[Experimental]"
+msgstr "[Expérimental]"
 
-#: mod/lostpass.php:118
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel."
+#: mod/admin.php:2355
+msgid "[Unsupported]"
+msgstr "[Non supporté]"
 
-#: mod/lostpass.php:119 src/Module/Login.php:315
-msgid "Nickname or Email: "
-msgstr "Pseudo ou eMail : "
+#: mod/admin.php:2379
+msgid "Log settings updated."
+msgstr "Réglages des journaux mis-à-jour."
 
-#: mod/lostpass.php:120
-msgid "Reset"
-msgstr "Réinitialiser"
+#: mod/admin.php:2412
+msgid "PHP log currently enabled."
+msgstr "Log PHP actuellement activé."
 
-#: mod/lostpass.php:136 src/Module/Login.php:327
-msgid "Password Reset"
-msgstr "Réinitialiser le mot de passe"
+#: mod/admin.php:2414
+msgid "PHP log currently disabled."
+msgstr "Log PHP actuellement desactivé."
 
-#: mod/lostpass.php:137
-msgid "Your password has been reset as requested."
-msgstr "Votre mot de passe a bien été réinitialisé."
+#: mod/admin.php:2423
+msgid "Clear"
+msgstr "Effacer"
 
-#: mod/lostpass.php:138
-msgid "Your new password is"
-msgstr "Votre nouveau mot de passe est "
+#: mod/admin.php:2427
+msgid "Enable Debugging"
+msgstr "Activer le déboggage"
 
-#: mod/lostpass.php:139
-msgid "Save or copy your new password - and then"
-msgstr "Sauvez ou copiez ce nouveau mot de passe - puis"
+#: mod/admin.php:2428
+msgid "Log file"
+msgstr "Fichier de journaux"
 
-#: mod/lostpass.php:140
-msgid "click here to login"
-msgstr "cliquez ici pour vous connecter"
+#: mod/admin.php:2428
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica."
 
-#: mod/lostpass.php:141
+#: mod/admin.php:2429
+msgid "Log level"
+msgstr "Niveau de journalisaton"
+
+#: mod/admin.php:2431
+msgid "PHP logging"
+msgstr "Log PHP"
+
+#: mod/admin.php:2432
 msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Votre mot de passe peut être changé depuis la page &lt;em&gt;Réglages&lt;/em&gt;, une fois que vous serez connecté."
+"To temporarily enable logging of PHP errors and warnings you can prepend the"
+" following to the index.php file of your installation. The filename set in "
+"the 'error_log' line is relative to the friendica top-level directory and "
+"must be writeable by the web server. The option '1' for 'log_errors' and "
+"'display_errors' is to enable these options, set to '0' to disable them."
+msgstr ""
 
-#: mod/lostpass.php:149
+#: mod/admin.php:2463
 #, php-format
 msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tYour password has been changed as requested. Please retain this\n"
-"\t\t\tinformation for your records (or change your password immediately to\n"
-"\t\t\tsomething that you will remember).\n"
-"\t\t"
+"Error trying to open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see "
+"if file %1$s exist and is readable."
 msgstr ""
 
-#: mod/lostpass.php:155
+#: mod/admin.php:2467
 #, php-format
 msgid ""
-"\n"
-"\t\t\tYour login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%1$s\n"
-"\t\t\tLogin Name:\t%2$s\n"
-"\t\t\tPassword:\t%3$s\n"
-"\n"
-"\t\t\tYou may change that password from your account settings page after logging in.\n"
-"\t\t"
+"Couldn't open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see if file"
+" %1$s is readable."
 msgstr ""
 
-#: mod/lostpass.php:169
+#: mod/admin.php:2558 mod/admin.php:2559 mod/settings.php:776
+msgid "Off"
+msgstr "Éteint"
+
+#: mod/admin.php:2558 mod/admin.php:2559 mod/settings.php:776
+msgid "On"
+msgstr "Allumé"
+
+#: mod/admin.php:2559
 #, php-format
-msgid "Your password has been changed at %s"
-msgstr "Votre mot de passe a été modifié à %s"
+msgid "Lock feature %s"
+msgstr "Verouiller la fonctionnalité %s"
+
+#: mod/admin.php:2567
+msgid "Manage Additional Features"
+msgstr "Gérer les fonctionnalités avancées"
+
+#: mod/allfriends.php:53
+msgid "No friends to display."
+msgstr "Pas d'amis à afficher."
+
+#: mod/allfriends.php:92 mod/dirfind.php:217 mod/match.php:105
+#: mod/suggest.php:104 src/Content/Widget.php:37 src/Model/Profile.php:306
+msgid "Connect"
+msgstr "Se connecter"
+
+#: mod/api.php:86 mod/api.php:108
+msgid "Authorize application connection"
+msgstr "Autoriser l'application à se connecter"
+
+#: mod/api.php:87
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Retournez à votre application et saisissez ce Code de Sécurité : "
+
+#: mod/api.php:96
+msgid "Please login to continue."
+msgstr "Merci de vous connecter pour continuer."
+
+#: mod/api.php:110
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à créer des billets à votre place?"
+
+#: mod/api.php:112 mod/dfrn_request.php:646 mod/follow.php:152
+#: mod/profiles.php:540 mod/profiles.php:544 mod/profiles.php:565
+#: mod/register.php:238 mod/settings.php:1098 mod/settings.php:1104
+#: mod/settings.php:1111 mod/settings.php:1115 mod/settings.php:1119
+#: mod/settings.php:1123 mod/settings.php:1127 mod/settings.php:1131
+#: mod/settings.php:1151 mod/settings.php:1152 mod/settings.php:1153
+#: mod/settings.php:1154 mod/settings.php:1155
+msgid "No"
+msgstr "Non"
+
+#: mod/apps.php:14 src/App.php:1746
+msgid "You must be logged in to use addons. "
+msgstr "Vous devez être connecté pour utiliser les greffons."
+
+#: mod/apps.php:19
+msgid "Applications"
+msgstr "Applications"
+
+#: mod/apps.php:24
+msgid "No installed applications."
+msgstr "Pas d'application installée."
+
+#: mod/attach.php:16
+msgid "Item not available."
+msgstr "Elément non disponible."
+
+#: mod/attach.php:26
+msgid "Item was not found."
+msgstr "Element introuvable."
 
-#: mod/babel.php:22
+#: mod/babel.php:24
 msgid "Source input"
 msgstr ""
 
-#: mod/babel.php:28
+#: mod/babel.php:30
 msgid "BBCode::toPlaintext"
 msgstr ""
 
-#: mod/babel.php:34
+#: mod/babel.php:36
 msgid "BBCode::convert (raw HTML)"
 msgstr ""
 
-#: mod/babel.php:39
+#: mod/babel.php:41
 msgid "BBCode::convert"
 msgstr ""
 
-#: mod/babel.php:45
+#: mod/babel.php:47
 msgid "BBCode::convert => HTML::toBBCode"
 msgstr ""
 
-#: mod/babel.php:51
+#: mod/babel.php:53
 msgid "BBCode::toMarkdown"
 msgstr ""
 
-#: mod/babel.php:57
+#: mod/babel.php:59
 msgid "BBCode::toMarkdown => Markdown::convert"
 msgstr ""
 
-#: mod/babel.php:63
+#: mod/babel.php:65
 msgid "BBCode::toMarkdown => Markdown::toBBCode"
 msgstr ""
 
-#: mod/babel.php:69
+#: mod/babel.php:71
 msgid "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
 msgstr ""
 
-#: mod/babel.php:76
-msgid "Source input \\x28Diaspora format\\x29"
+#: mod/babel.php:78
+msgid "Source input (Diaspora format)"
 msgstr ""
 
-#: mod/babel.php:82
-msgid "Markdown::toBBCode"
+#: mod/babel.php:84
+msgid "Markdown::convert (raw HTML)"
 msgstr ""
 
 #: mod/babel.php:89
+msgid "Markdown::convert"
+msgstr ""
+
+#: mod/babel.php:95
+msgid "Markdown::toBBCode"
+msgstr ""
+
+#: mod/babel.php:102
 msgid "Raw HTML input"
 msgstr ""
 
-#: mod/babel.php:94
+#: mod/babel.php:107
 msgid "HTML Input"
 msgstr ""
 
-#: mod/babel.php:100
+#: mod/babel.php:113
 msgid "HTML::toBBCode"
 msgstr ""
 
-#: mod/babel.php:106
-msgid "HTML::toPlaintext"
+#: mod/babel.php:119
+msgid "HTML::toBBCode => BBCode::convert"
 msgstr ""
 
-#: mod/babel.php:114
-msgid "Source text"
+#: mod/babel.php:124
+msgid "HTML::toBBCode => BBCode::convert (raw HTML)"
 msgstr ""
 
-#: mod/babel.php:115
-msgid "BBCode"
+#: mod/babel.php:130
+msgid "HTML::toMarkdown"
 msgstr ""
 
-#: mod/babel.php:116
-msgid "Markdown"
+#: mod/babel.php:136
+msgid "HTML::toPlaintext"
 msgstr ""
 
-#: mod/babel.php:117
-msgid "HTML"
+#: mod/babel.php:144
+msgid "Source text"
 msgstr ""
 
-#: mod/community.php:51
-msgid "Community option not available."
+#: mod/babel.php:145
+msgid "BBCode"
 msgstr ""
 
-#: mod/community.php:68
-msgid "Not available."
-msgstr "Indisponible."
-
-#: mod/community.php:81
-msgid "Local Community"
+#: mod/babel.php:146
+msgid "Markdown"
 msgstr ""
 
-#: mod/community.php:84
-msgid "Posts from local users on this server"
+#: mod/babel.php:147
+msgid "HTML"
 msgstr ""
 
-#: mod/community.php:92
-msgid "Global Community"
-msgstr ""
+#: mod/bookmarklet.php:24 src/Content/Nav.php:166 src/Module/Login.php:320
+msgid "Login"
+msgstr "Connexion"
 
-#: mod/community.php:95
-msgid "Posts from users of the whole federated network"
+#: mod/bookmarklet.php:34
+msgid "Bad Request"
 msgstr ""
 
-#: mod/community.php:185
-msgid ""
-"This community stream shows all public posts received by this node. They may"
-" not reflect the opinions of this node’s users."
-msgstr ""
-
-#: mod/friendica.php:77
-msgid "This is Friendica, version"
-msgstr "Service reposant sur Friendica version"
-
-#: mod/friendica.php:78
-msgid "running at web location"
-msgstr "hébergé sur"
-
-#: mod/friendica.php:82
-msgid ""
-"Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
-"about the Friendica project."
-msgstr "Rendez-vous sur <a href=\"https://friendi.ca\">Friendi.ca</a> pour en savoir plus sur le projet Friendica."
-
-#: mod/friendica.php:86
-msgid "Bug reports and issues: please visit"
-msgstr "Pour les rapports de bugs : rendez vous sur"
-
-#: mod/friendica.php:86
-msgid "the bugtracker at github"
-msgstr "le bugtracker sur GitHub"
-
-#: mod/friendica.php:89
-msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
-msgstr ""
+#: mod/bookmarklet.php:56
+msgid "The post was created"
+msgstr "La publication a été créée"
 
-#: mod/friendica.php:103
-msgid "Installed addons/apps:"
-msgstr ""
+#: mod/cal.php:34 mod/cal.php:38 mod/community.php:37 mod/follow.php:19
+#: mod/viewcontacts.php:22 mod/viewcontacts.php:26 mod/viewsrc.php:13
+msgid "Access denied."
+msgstr "Accès refusé."
 
-#: mod/friendica.php:117
-msgid "No installed addons/apps"
-msgstr ""
+#: mod/cal.php:46 mod/dfrn_poll.php:492 mod/help.php:65
+#: mod/viewcontacts.php:37 src/App.php:1797
+msgid "Page not found."
+msgstr "Page introuvable."
 
-#: mod/friendica.php:122
-#, php-format
-msgid "Read about the <a href=\"%1$s/tos\">Terms of Service</a> of this node."
-msgstr ""
+#: mod/cal.php:141 mod/display.php:309 mod/profile.php:188
+msgid "Access to this profile has been restricted."
+msgstr "L'accès au profil a été restreint."
 
-#: mod/friendica.php:127
-msgid "On this server the following remote servers are blocked."
-msgstr "Sur ce serveur, les serveurs suivants sont sur liste noire."
+#: mod/cal.php:273 mod/events.php:388 view/theme/frio/theme.php:275
+#: view/theme/frio/theme.php:279 src/Content/Nav.php:156
+#: src/Content/Nav.php:222 src/Model/Profile.php:925 src/Model/Profile.php:936
+msgid "Events"
+msgstr "Événements"
 
-#: mod/friendica.php:128 mod/admin.php:357 mod/admin.php:375
-#: mod/dfrn_request.php:347 src/Model/Contact.php:1281
-msgid "Blocked domain"
-msgstr "Domaine bloqué"
+#: mod/cal.php:274 mod/events.php:389
+msgid "View"
+msgstr "Vue"
 
-#: mod/friendica.php:128 mod/admin.php:358 mod/admin.php:376
-msgid "Reason for the block"
-msgstr "Raison du blocage."
+#: mod/cal.php:275 mod/events.php:391
+msgid "Previous"
+msgstr "Précédent"
 
-#: mod/invite.php:33
-msgid "Total invitation limit exceeded."
-msgstr "La limite d'invitation totale est éxédée."
+#: mod/cal.php:276 mod/events.php:392 src/Module/Install.php:133
+msgid "Next"
+msgstr "Suivant"
 
-#: mod/invite.php:55
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : Adresse de courriel invalide."
+#: mod/cal.php:279 mod/events.php:397 src/Model/Event.php:423
+msgid "today"
+msgstr "aujourd'hui"
 
-#: mod/invite.php:87
-msgid "Please join us on Friendica"
-msgstr "Rejoignez-nous sur Friendica"
+#: mod/cal.php:280 mod/events.php:398 src/Util/Temporal.php:311
+#: src/Model/Event.php:424
+msgid "month"
+msgstr "mois"
 
-#: mod/invite.php:96
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site."
+#: mod/cal.php:281 mod/events.php:399 src/Util/Temporal.php:312
+#: src/Model/Event.php:425
+msgid "week"
+msgstr "semaine"
 
-#: mod/invite.php:100
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : L'envoi du message a échoué."
+#: mod/cal.php:282 mod/events.php:400 src/Util/Temporal.php:313
+#: src/Model/Event.php:426
+msgid "day"
+msgstr "jour"
 
-#: mod/invite.php:104
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d message envoyé."
-msgstr[1] "%d messages envoyés."
+#: mod/cal.php:283 mod/events.php:401
+msgid "list"
+msgstr ""
 
-#: mod/invite.php:122
-msgid "You have no more invitations available"
-msgstr "Vous n'avez plus d'invitations disponibles"
+#: mod/cal.php:296 src/Core/Console/NewPassword.php:68 src/Model/User.php:258
+msgid "User not found"
+msgstr "Utilisateur introuvable"
 
-#: mod/invite.php:130
-#, php-format
-msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many"
-" other social networks."
-msgstr "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux."
+#: mod/cal.php:312
+msgid "This calendar format is not supported"
+msgstr "Format de calendrier inconnu"
 
-#: mod/invite.php:132
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public."
+#: mod/cal.php:314
+msgid "No exportable data found"
+msgstr "Rien à exporter"
 
-#: mod/invite.php:133
-#, php-format
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
-msgstr "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre."
+#: mod/cal.php:331
+msgid "calendar"
+msgstr "calendrier"
 
-#: mod/invite.php:137
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres."
+#: mod/common.php:91
+msgid "No contacts in common."
+msgstr "Pas de contacts en commun."
 
-#: mod/invite.php:141
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks."
-msgstr "Les instances Friendica sont interconnectées pour créer un immense réseau social possédé et contrôlé par ses membres, et qui respecte leur vie privée. Ils peuvent aussi s'interconnecter avec d'autres réseaux sociaux traditionnels."
+#: mod/common.php:142 src/Module/Contact.php:887
+msgid "Common Friends"
+msgstr "Amis communs"
 
-#: mod/invite.php:140
-#, php-format
-msgid "To accept this invitation, please visit and register at %s."
-msgstr "Pour accepter cette invitation, rendez-vous sur %s et inscrivez-vous."
+#: mod/community.php:30 mod/dfrn_request.php:600 mod/directory.php:41
+#: mod/display.php:201 mod/photos.php:941 mod/probe.php:13 mod/search.php:106
+#: mod/search.php:112 mod/videos.php:193 mod/viewcontacts.php:50
+#: mod/webfinger.php:16
+msgid "Public access denied."
+msgstr "Accès public refusé."
 
-#: mod/invite.php:147
-msgid "Send invitations"
-msgstr "Envoyer des invitations"
+#: mod/community.php:73
+msgid "Community option not available."
+msgstr ""
 
-#: mod/invite.php:148
-msgid "Enter email addresses, one per line:"
-msgstr "Entrez les adresses email, une par ligne :"
+#: mod/community.php:90
+msgid "Not available."
+msgstr "Indisponible."
 
-#: mod/invite.php:149
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social."
+#: mod/community.php:102
+msgid "Local Community"
+msgstr ""
 
-#: mod/invite.php:151
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Vous devrez fournir ce code d'invitation : $invite_code"
+#: mod/community.php:105
+msgid "Posts from local users on this server"
+msgstr ""
 
-#: mod/invite.php:151
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Une fois inscrit, connectez-vous à la page de mon profil sur :"
+#: mod/community.php:113
+msgid "Global Community"
+msgstr ""
 
-#: mod/invite.php:153
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendi.ca"
+#: mod/community.php:116
+msgid "Posts from users of the whole federated network"
 msgstr ""
 
-#: mod/network.php:202 src/Model/Group.php:413
-msgid "add"
-msgstr "ajouter"
+#: mod/community.php:162 mod/search.php:243
+msgid "No results."
+msgstr "Aucun résultat."
 
-#: mod/network.php:547
-#, php-format
+#: mod/community.php:206
 msgid ""
-"Warning: This group contains %s member from a network that doesn't allow non"
-" public messages."
-msgid_plural ""
-"Warning: This group contains %s members from a network that doesn't allow "
-"non public messages."
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/network.php:550
-msgid "Messages in this group won't be send to these receivers."
-msgstr "Les messages dans ce groupe ne seront pas envoyés à ces destinataires."
-
-#: mod/network.php:618
-msgid "No such group"
-msgstr "Groupe inexistant"
-
-#: mod/network.php:639 mod/group.php:216
-msgid "Group is empty"
-msgstr "Groupe vide"
-
-#: mod/network.php:643
-#, php-format
-msgid "Group: %s"
-msgstr "Group : %s"
-
-#: mod/network.php:669
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée."
-
-#: mod/network.php:672
-msgid "Invalid contact."
-msgstr "Contact invalide."
-
-#: mod/network.php:937
-msgid "Commented Order"
-msgstr "Tri par commentaires"
-
-#: mod/network.php:940
-msgid "Sort by Comment Date"
-msgstr "Trier par date de commentaire"
-
-#: mod/network.php:945
-msgid "Posted Order"
-msgstr "Tri des publications"
-
-#: mod/network.php:948
-msgid "Sort by Post Date"
-msgstr "Trier par date de publication"
-
-#: mod/network.php:956 mod/profiles.php:594
-#: src/Core/NotificationsManager.php:185
-msgid "Personal"
-msgstr "Personnel"
-
-#: mod/network.php:959
-msgid "Posts that mention or involve you"
-msgstr "Publications qui vous concernent"
-
-#: mod/network.php:967
-msgid "New"
-msgstr "Nouveau"
-
-#: mod/network.php:970
-msgid "Activity Stream - by date"
-msgstr "Flux d'activités - par date"
-
-#: mod/network.php:978
-msgid "Shared Links"
-msgstr "Liens partagés"
-
-#: mod/network.php:981
-msgid "Interesting Links"
-msgstr "Liens intéressants"
-
-#: mod/network.php:989
-msgid "Starred"
-msgstr "Mis en avant"
-
-#: mod/network.php:992
-msgid "Favourite Posts"
-msgstr "Publications favorites"
+"This community stream shows all public posts received by this node. They may"
+" not reflect the opinions of this node’s users."
+msgstr ""
 
-#: mod/crepair.php:87
+#: mod/crepair.php:88
 msgid "Contact settings applied."
 msgstr "Réglages du contact appliqués."
 
-#: mod/crepair.php:89
+#: mod/crepair.php:90
 msgid "Contact update failed."
 msgstr "Impossible d'appliquer les réglages."
 
-#: mod/crepair.php:114
+#: mod/crepair.php:111 mod/dfrn_confirm.php:129 mod/fsuggest.php:30
+#: mod/fsuggest.php:96 mod/redir.php:30 mod/redir.php:128
+msgid "Contact not found."
+msgstr "Contact introuvable."
+
+#: mod/crepair.php:115
 msgid ""
 "<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
 " information your communications with this contact may stop working."
 msgstr "<strong>ATTENTION: Manipulation réservée aux experts</strong>, toute information incorrecte pourrait empêcher la communication avec ce contact."
 
-#: mod/crepair.php:115
+#: mod/crepair.php:116
 msgid ""
 "Please use your browser 'Back' button <strong>now</strong> if you are "
 "uncertain what to do on this page."
 msgstr "une photo"
 
-#: mod/crepair.php:129 mod/crepair.php:131
+#: mod/crepair.php:130 mod/crepair.php:132
 msgid "No mirroring"
 msgstr "Pas de miroir"
 
-#: mod/crepair.php:129
+#: mod/crepair.php:130
 msgid "Mirror as forwarded posting"
 msgstr ""
 
-#: mod/crepair.php:129 mod/crepair.php:131
+#: mod/crepair.php:130 mod/crepair.php:132
 msgid "Mirror as my own posting"
 msgstr ""
 
-#: mod/crepair.php:144
+#: mod/crepair.php:145
 msgid "Return to contact editor"
 msgstr "Retour à l'éditeur de contact"
 
-#: mod/crepair.php:146
+#: mod/crepair.php:147
 msgid "Refetch contact data"
 msgstr "Récupérer à nouveau les données de contact"
 
-#: mod/crepair.php:149
+#: mod/crepair.php:150
 msgid "Remote Self"
 msgstr "Identité à distance"
 
-#: mod/crepair.php:152
+#: mod/crepair.php:153
 msgid "Mirror postings from this contact"
 msgstr "Copier les publications de ce contact"
 
-#: mod/crepair.php:154
+#: mod/crepair.php:155
 msgid ""
 "Mark this contact as remote_self, this will cause friendica to repost new "
 "entries from this contact."
 msgstr "Marquer ce contact comme étant remote_self, friendica republiera alors les nouvelles entrées de ce contact."
 
-#: mod/crepair.php:158 mod/admin.php:494 mod/admin.php:1811 mod/admin.php:1822
-#: mod/admin.php:1835 mod/admin.php:1851 mod/settings.php:671
-#: mod/settings.php:697
-msgid "Name"
-msgstr "Nom"
-
-#: mod/crepair.php:159
+#: mod/crepair.php:160
 msgid "Account Nickname"
 msgstr "Pseudo du compte"
 
-#: mod/crepair.php:160
+#: mod/crepair.php:161
 msgid "@Tagname - overrides Name/Nickname"
 msgstr "@NomEtiquette - prend le pas sur Nom/Pseudo"
 
-#: mod/crepair.php:161
+#: mod/crepair.php:162
 msgid "Account URL"
 msgstr "URL du compte"
 
-#: mod/crepair.php:162
+#: mod/crepair.php:163
 msgid "Friend Request URL"
 msgstr "Echec du téléversement de l'image."
 
-#: mod/crepair.php:163
+#: mod/crepair.php:164
 msgid "Friend Confirm URL"
 msgstr "Accès public refusé."
 
-#: mod/crepair.php:164
+#: mod/crepair.php:165
 msgid "Notification Endpoint URL"
 msgstr "Aucune photo sélectionnée"
 
-#: mod/crepair.php:165
+#: mod/crepair.php:166
 msgid "Poll/Feed URL"
 msgstr "Téléverser des photos"
 
-#: mod/crepair.php:166
+#: mod/crepair.php:167
 msgid "New photo from this URL"
 msgstr "Nouvelle photo depuis cette URL"
 
-#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:539
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s accueille %2$s"
-
-#: mod/help.php:48
-msgid "Help:"
-msgstr "Aide :"
+#: mod/delegate.php:41
+msgid "Parent user not found."
+msgstr ""
 
-#: mod/help.php:54 view/theme/vier/theme.php:297 src/Content/Nav.php:134
-msgid "Help"
-msgstr "Aide"
+#: mod/delegate.php:148
+msgid "No parent user"
+msgstr ""
 
-#: mod/help.php:63 index.php:317
-msgid "Page not found."
-msgstr "Page introuvable."
+#: mod/delegate.php:163
+msgid "Parent Password:"
+msgstr ""
 
-#: mod/install.php:87
-msgid "Friendica Communications Server - Setup"
-msgstr "Serveur de communications Friendica - Configuration"
+#: mod/delegate.php:163
+msgid ""
+"Please enter the password of the parent account to legitimize your request."
+msgstr ""
 
-#: mod/install.php:93
-msgid "Could not connect to database."
-msgstr "Impossible de se connecter à la base."
+#: mod/delegate.php:168
+msgid "Parent User"
+msgstr ""
+
+#: mod/delegate.php:171
+msgid ""
+"Parent users have total control about this account, including the account "
+"settings. Please double check whom you give this access."
+msgstr ""
 
-#: mod/install.php:97
-msgid "Could not create table."
-msgstr "Impossible de créer une table."
+#: mod/delegate.php:173 src/Content/Nav.php:257
+msgid "Delegate Page Management"
+msgstr "Déléguer la gestion de la page"
 
-#: mod/install.php:103
-msgid "Your Friendica site database has been installed."
-msgstr "La base de données de votre site Friendica a bien été installée."
+#: mod/delegate.php:174
+msgid "Delegates"
+msgstr ""
 
-#: mod/install.php:108
+#: mod/delegate.php:176
 msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql."
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue."
 
-#: mod/install.php:109 mod/install.php:155 mod/install.php:267
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Référez-vous au fichier \"INSTALL.txt\"."
+#: mod/delegate.php:177
+msgid "Existing Page Delegates"
+msgstr "Délégataires existants"
 
-#: mod/install.php:121
-msgid "Database already in use."
-msgstr "Base de données déjà en cours d'utilisation."
+#: mod/delegate.php:179
+msgid "Potential Delegates"
+msgstr "Délégataires potentiels"
 
-#: mod/install.php:152
-msgid "System check"
-msgstr "Vérifications système"
+#: mod/delegate.php:181 mod/tagrm.php:111
+msgid "Remove"
+msgstr "Utiliser comme photo de profil"
 
-#: mod/install.php:157
-msgid "Check again"
-msgstr "Vérifier à nouveau"
+#: mod/delegate.php:182
+msgid "Add"
+msgstr "Ajouter"
 
-#: mod/install.php:177
-msgid "Database connection"
-msgstr "Connexion à la base de données"
+#: mod/delegate.php:183
+msgid "No entries."
+msgstr "Aucune entrée."
 
-#: mod/install.php:178
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données."
+#: mod/dfrn_confirm.php:74 mod/profiles.php:40 mod/profiles.php:150
+#: mod/profiles.php:195 mod/profiles.php:525
+msgid "Profile not found."
+msgstr "Profil introuvable."
 
-#: mod/install.php:179
+#: mod/dfrn_confirm.php:130
 msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages."
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "Ceci peut se produire lorsque le contact a été requis par les deux personnes et a déjà été approuvé."
 
-#: mod/install.php:180
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer."
+#: mod/dfrn_confirm.php:240
+msgid "Response from remote site was not understood."
+msgstr "Réponse du site distant incomprise."
 
-#: mod/install.php:184
-msgid "Database Server Name"
-msgstr "Serveur de base de données"
+#: mod/dfrn_confirm.php:247 mod/dfrn_confirm.php:253
+msgid "Unexpected response from remote site: "
+msgstr "Réponse inattendue du site distant : "
 
-#: mod/install.php:185
-msgid "Database Login Name"
-msgstr "Nom d'utilisateur de la base"
+#: mod/dfrn_confirm.php:262
+msgid "Confirmation completed successfully."
+msgstr "Confirmation achevée avec succès."
 
-#: mod/install.php:186
-msgid "Database Login Password"
-msgstr "Mot de passe de la base"
+#: mod/dfrn_confirm.php:274
+msgid "Temporary failure. Please wait and try again."
+msgstr "Échec temporaire. Merci de recommencer ultérieurement."
 
-#: mod/install.php:186
-msgid "For security reasons the password must not be empty"
-msgstr "Pour des raisons de sécurité, le mot de passe ne peut pas être vide."
+#: mod/dfrn_confirm.php:277
+msgid "Introduction failed or was revoked."
+msgstr "Introduction échouée ou annulée."
 
-#: mod/install.php:187
-msgid "Database Name"
-msgstr "Nom de la base"
+#: mod/dfrn_confirm.php:282
+msgid "Remote site reported: "
+msgstr "Alerte du site distant : "
 
-#: mod/install.php:188 mod/install.php:228
-msgid "Site administrator email address"
-msgstr "Adresse électronique de l'administrateur du site"
+#: mod/dfrn_confirm.php:383
+msgid "Unable to set contact photo."
+msgstr "Impossible de définir la photo du contact."
 
-#: mod/install.php:188 mod/install.php:228
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration."
+#: mod/dfrn_confirm.php:445
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Pas d'utilisateur trouvé pour '%s' "
 
-#: mod/install.php:192 mod/install.php:231
-msgid "Please select a default timezone for your website"
-msgstr "Sélectionner un fuseau horaire par défaut pour votre site"
+#: mod/dfrn_confirm.php:455
+msgid "Our site encryption key is apparently messed up."
+msgstr "Notre clé de chiffrement de site est apparemment corrompue."
 
-#: mod/install.php:218
-msgid "Site settings"
-msgstr "Réglages du site"
+#: mod/dfrn_confirm.php:466
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "URL de site absente ou indéchiffrable."
 
-#: mod/install.php:232
-msgid "System Language:"
-msgstr "Langue système :"
+#: mod/dfrn_confirm.php:482
+msgid "Contact record was not found for you on our site."
+msgstr "Pas d'entrée pour ce contact sur notre site."
 
-#: mod/install.php:232
-msgid ""
-"Set the default language for your Friendica installation interface and to "
-"send emails."
-msgstr "Définit la langue par défaut pour l'interface de votre instance Friendica et les mails envoyés."
+#: mod/dfrn_confirm.php:496
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "La clé publique du site ne se trouve pas dans l'enregistrement du contact pour l'URL %s."
 
-#: mod/install.php:248
+#: mod/dfrn_confirm.php:512
 msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement."
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "L'identifiant fourni par votre système fait doublon sur le notre. Cela peut fonctionner si vous réessayez."
 
-#: mod/install.php:265
-msgid "<h1>What next</h1>"
-msgstr "<h1>Ensuite</h1>"
+#: mod/dfrn_confirm.php:523
+msgid "Unable to set your contact credentials on our system."
+msgstr "Impossible de vous définir des permissions sur notre système."
 
-#: mod/install.php:266
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"worker."
-msgstr "IMPORTANT: vous devrez ajouter [manuellement] une tâche planifiée pour le 'worker'."
+#: mod/dfrn_confirm.php:579
+msgid "Unable to update your contact profile details on our system"
+msgstr "Impossible de mettre les détails de votre profil à jour sur notre système"
+
+#: mod/dfrn_confirm.php:609 mod/dfrn_request.php:562
+#: src/Model/Contact.php:1913
+msgid "[Name Withheld]"
+msgstr "[Nom non-publié]"
 
-#: mod/install.php:269
+#: mod/dfrn_poll.php:127 mod/dfrn_poll.php:536
 #, php-format
-msgid ""
-"Go to your new Friendica node <a href=\"%s/register\">registration page</a> "
-"and register as new user. Remember to use the same email you have entered as"
-" administrator email. This will allow you to enter the site admin panel."
-msgstr ""
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s accueille %2$s"
 
-#: mod/message.php:30 src/Content/Nav.php:199
-msgid "New Message"
-msgstr "Nouveau message"
+#: mod/dfrn_request.php:95
+msgid "This introduction has already been accepted."
+msgstr "Cette introduction a déjà été acceptée."
 
-#: mod/message.php:77
-msgid "Unable to locate contact information."
-msgstr "Impossible de localiser les informations du contact."
+#: mod/dfrn_request.php:113 mod/dfrn_request.php:354
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "L'emplacement du profil est invalide ou ne contient pas de profil valide."
 
-#: mod/message.php:112 view/theme/frio/theme.php:268 src/Content/Nav.php:196
-msgid "Messages"
-msgstr "Messages"
+#: mod/dfrn_request.php:117 mod/dfrn_request.php:358
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Attention: l'emplacement du profil n'a pas de nom identifiable."
 
-#: mod/message.php:136
-msgid "Do you really want to delete this message?"
-msgstr "Voulez-vous vraiment supprimer ce message ?"
+#: mod/dfrn_request.php:120 mod/dfrn_request.php:361
+msgid "Warning: profile location has no profile photo."
+msgstr "Attention: l'emplacement du profil n'a pas de photo de profil."
 
-#: mod/message.php:152
-msgid "Message deleted."
-msgstr "Message supprimé."
+#: mod/dfrn_request.php:124 mod/dfrn_request.php:365
+#, php-format
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] "%d paramètre requis n'a pas été trouvé à l'endroit indiqué"
+msgstr[1] "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué"
 
-#: mod/message.php:166
-msgid "Conversation removed."
-msgstr "Conversation supprimée."
+#: mod/dfrn_request.php:162
+msgid "Introduction complete."
+msgstr "Phase d'introduction achevée."
 
-#: mod/message.php:272
-msgid "No messages."
-msgstr "Aucun message."
+#: mod/dfrn_request.php:198
+msgid "Unrecoverable protocol error."
+msgstr "Erreur de protocole non-récupérable."
 
-#: mod/message.php:311
-msgid "Message not available."
-msgstr "Message indisponible."
+#: mod/dfrn_request.php:225
+msgid "Profile unavailable."
+msgstr "Profil indisponible."
 
-#: mod/message.php:378
-msgid "Delete message"
-msgstr "Effacer message"
+#: mod/dfrn_request.php:247
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s a reçu trop de demandes d'introduction aujourd'hui."
 
-#: mod/message.php:380 mod/message.php:481
-msgid "D, d M Y - g:i A"
-msgstr "D, d M Y - g:i A"
+#: mod/dfrn_request.php:248
+msgid "Spam protection measures have been invoked."
+msgstr "Des mesures de protection contre le spam ont été déclenchées."
 
-#: mod/message.php:395 mod/message.php:478
-msgid "Delete conversation"
-msgstr "Effacer conversation"
+#: mod/dfrn_request.php:249
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Les relations sont encouragées à attendre 24 heures pour recommencer."
 
-#: mod/message.php:397
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Pas de communications sécurisées possibles. Vous serez <strong>peut-être</strong> en mesure de répondre depuis la page de profil de l'émetteur."
+#: mod/dfrn_request.php:275
+msgid "Invalid locator"
+msgstr "Localisateur invalide"
 
-#: mod/message.php:401
-msgid "Send Reply"
-msgstr "Répondre"
+#: mod/dfrn_request.php:311
+msgid "You have already introduced yourself here."
+msgstr "Vous vous êtes déjà présenté ici."
 
-#: mod/message.php:452
+#: mod/dfrn_request.php:314
 #, php-format
-msgid "Unknown sender - %s"
-msgstr "Émetteur inconnu - %s"
+msgid "Apparently you are already friends with %s."
+msgstr "Il semblerait que vous soyez déjà ami avec %s."
 
-#: mod/message.php:454
-#, php-format
-msgid "You and %s"
-msgstr "Vous et %s"
+#: mod/dfrn_request.php:334
+msgid "Invalid profile URL."
+msgstr "URL de profil invalide."
 
-#: mod/message.php:456
-#, php-format
-msgid "%s and You"
-msgstr "%s et vous"
+#: mod/dfrn_request.php:340 src/Model/Contact.php:1592
+msgid "Disallowed profile URL."
+msgstr "URL de profil interdite."
 
-#: mod/message.php:484
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d message"
-msgstr[1] "%d messages"
+#: mod/dfrn_request.php:413 src/Module/Contact.php:238
+msgid "Failed to update contact record."
+msgstr "Échec de mise à jour du contact."
 
-#: mod/group.php:36
-msgid "Group created."
-msgstr "Groupe créé."
+#: mod/dfrn_request.php:433
+msgid "Your introduction has been sent."
+msgstr "Votre introduction a été envoyée."
 
-#: mod/group.php:42
-msgid "Could not create group."
-msgstr "Impossible de créer le groupe."
+#: mod/dfrn_request.php:471
+msgid ""
+"Remote subscription can't be done for your network. Please subscribe "
+"directly on your system."
+msgstr ""
 
-#: mod/group.php:56 mod/group.php:157
-msgid "Group not found."
-msgstr "Groupe introuvable."
+#: mod/dfrn_request.php:487
+msgid "Please login to confirm introduction."
+msgstr "Connectez-vous pour confirmer l'introduction."
 
-#: mod/group.php:70
-msgid "Group name changed."
-msgstr "Groupe renommé."
+#: mod/dfrn_request.php:495
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Identité incorrecte actuellement connectée. Merci de vous connecter à <strong>ce</strong> profil."
 
-#: mod/group.php:97
-msgid "Save Group"
-msgstr "Sauvegarder le groupe"
+#: mod/dfrn_request.php:509 mod/dfrn_request.php:526
+msgid "Confirm"
+msgstr "Confirmer"
 
-#: mod/group.php:102
-msgid "Create a group of contacts/friends."
-msgstr "Créez un groupe de contacts/amis."
+#: mod/dfrn_request.php:521
+msgid "Hide this contact"
+msgstr "Cacher ce contact"
 
-#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:421
-msgid "Group Name: "
-msgstr "Nom du groupe : "
+#: mod/dfrn_request.php:524
+#, php-format
+msgid "Welcome home %s."
+msgstr "Bienvenue chez vous, %s."
 
-#: mod/group.php:127
-msgid "Group removed."
-msgstr "Groupe enlevé."
+#: mod/dfrn_request.php:525
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Merci de confirmer votre demande d'introduction auprès de %s."
 
-#: mod/group.php:129
-msgid "Unable to remove group."
-msgstr "Impossible d'enlever le groupe."
+#: mod/dfrn_request.php:635
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:"
 
-#: mod/group.php:192
-msgid "Delete Group"
-msgstr "Supprimer le groupe"
+#: mod/dfrn_request.php:638
+#, php-format
+msgid ""
+"If you are not yet a member of the free social web, <a href=\"%s\">follow "
+"this link to find a public Friendica site and join us today</a>."
+msgstr ""
 
-#: mod/group.php:198
-msgid "Group Editor"
-msgstr "Éditeur de groupe"
+#: mod/dfrn_request.php:643
+msgid "Friend/Connection Request"
+msgstr "Requête de relation/amitié"
 
-#: mod/group.php:203
-msgid "Edit Group Name"
-msgstr "Éditer le nom du groupe"
+#: mod/dfrn_request.php:644
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@gnusocial.de"
+msgstr ""
 
-#: mod/group.php:213
-msgid "Members"
-msgstr "Membres"
+#: mod/dfrn_request.php:645 mod/follow.php:151
+msgid "Please answer the following:"
+msgstr "Merci de répondre à ce qui suit :"
 
-#: mod/group.php:229
-msgid "Remove contact from group"
-msgstr ""
+#: mod/dfrn_request.php:646 mod/follow.php:152
+#, php-format
+msgid "Does %s know you?"
+msgstr "Est-ce que %s vous connaît?"
 
-#: mod/group.php:253
-msgid "Add contact to group"
+#: mod/dfrn_request.php:647 mod/follow.php:153
+msgid "Add a personal note:"
+msgstr "Ajouter une note personnelle :"
+
+#: mod/dfrn_request.php:649 src/Content/ContactSelector.php:80
+msgid "Friendica"
+msgstr "Friendica"
+
+#: mod/dfrn_request.php:650
+msgid "GNU Social (Pleroma, Mastodon)"
 msgstr ""
 
-#: mod/openid.php:29
-msgid "OpenID protocol error. No ID returned."
-msgstr "Erreur de protocole OpenID. Pas d'ID en retour."
+#: mod/dfrn_request.php:651
+msgid "Diaspora (Socialhome, Hubzilla)"
+msgstr ""
 
-#: mod/openid.php:66
+#: mod/dfrn_request.php:652
+#, php-format
 msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site."
-
-#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:135
-msgid "Login failed."
-msgstr "Échec de connexion."
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - merci de ne pas utiliser ce formulaire.   Entrez plutôt %s dans votre barre de recherche Diaspora."
 
-#: mod/admin.php:107
-msgid "Theme settings updated."
-msgstr "Réglages du thème sauvés."
+#: mod/dfrn_request.php:653 mod/follow.php:159 mod/unfollow.php:128
+msgid "Your Identity Address:"
+msgstr "Votre adresse d'identité :"
 
-#: mod/admin.php:180 src/Content/Nav.php:175
-msgid "Information"
-msgstr "Information"
+#: mod/dfrn_request.php:655 mod/follow.php:64 mod/unfollow.php:131
+msgid "Submit Request"
+msgstr "Envoyer la requête"
 
-#: mod/admin.php:181
-msgid "Overview"
-msgstr ""
+#: mod/directory.php:152 mod/events.php:545 mod/notifications.php:250
+#: src/Model/Event.php:68 src/Model/Event.php:95 src/Model/Event.php:432
+#: src/Model/Event.php:923 src/Model/Profile.php:431
+#: src/Module/Contact.php:648
+msgid "Location:"
+msgstr "Localisation :"
 
-#: mod/admin.php:182 mod/admin.php:722
-msgid "Federation Statistics"
-msgstr "Statistiques Federation"
+#: mod/directory.php:157 mod/notifications.php:256 src/Model/Profile.php:434
+#: src/Model/Profile.php:746
+msgid "Gender:"
+msgstr "Genre :"
 
-#: mod/admin.php:183
-msgid "Configuration"
-msgstr ""
+#: mod/directory.php:158 src/Model/Profile.php:435 src/Model/Profile.php:770
+msgid "Status:"
+msgstr "Statut :"
 
-#: mod/admin.php:184 mod/admin.php:1357
-msgid "Site"
-msgstr "Site"
+#: mod/directory.php:159 src/Model/Profile.php:436 src/Model/Profile.php:787
+msgid "Homepage:"
+msgstr "Page personnelle :"
 
-#: mod/admin.php:185 mod/admin.php:1289 mod/admin.php:1817 mod/admin.php:1833
-msgid "Users"
-msgstr "Utilisateurs"
+#: mod/directory.php:160 mod/notifications.php:252 src/Model/Profile.php:437
+#: src/Model/Profile.php:807 src/Module/Contact.php:652
+msgid "About:"
+msgstr "À propos :"
 
-#: mod/admin.php:186 mod/admin.php:1933 mod/admin.php:1993 mod/settings.php:87
-msgid "Addons"
-msgstr ""
+#: mod/directory.php:208 view/theme/vier/theme.php:206
+#: src/Content/Widget.php:68
+msgid "Global Directory"
+msgstr "Annuaire global"
 
-#: mod/admin.php:187 mod/admin.php:2202 mod/admin.php:2246
-msgid "Themes"
-msgstr "Thèmes"
+#: mod/directory.php:210
+msgid "Find on this site"
+msgstr "Trouver sur ce site"
 
-#: mod/admin.php:188 mod/settings.php:65
-msgid "Additional features"
-msgstr "Fonctions supplémentaires"
+#: mod/directory.php:212
+msgid "Results for:"
+msgstr "Résultats pour :"
 
-#: mod/admin.php:189 mod/admin.php:304 mod/register.php:291
-#: src/Content/Nav.php:178 src/Module/Tos.php:70
-msgid "Terms of Service"
-msgstr ""
+#: mod/directory.php:214
+msgid "Site Directory"
+msgstr "Annuaire local"
 
-#: mod/admin.php:190
-msgid "Database"
-msgstr ""
+#: mod/directory.php:215 view/theme/vier/theme.php:201
+#: src/Content/Widget.php:63 src/Module/Contact.php:812
+msgid "Find"
+msgstr "Trouver"
 
-#: mod/admin.php:191
-msgid "DB updates"
-msgstr "Mise-à-jour de la base"
+#: mod/directory.php:219
+msgid "No entries (some entries may be hidden)."
+msgstr "Aucune entrée (certaines peuvent être cachées)."
 
-#: mod/admin.php:192 mod/admin.php:757
-msgid "Inspect Queue"
-msgstr "Inspecter la file d'attente"
+#: mod/dirfind.php:53
+#, php-format
+msgid "People Search - %s"
+msgstr "Recherche de personne - %s"
 
-#: mod/admin.php:193
-msgid "Tools"
-msgstr ""
+#: mod/dirfind.php:64
+#, php-format
+msgid "Forum Search - %s"
+msgstr "Recherche de Forum - %s"
 
-#: mod/admin.php:194
-msgid "Contact Blocklist"
-msgstr ""
+#: mod/dirfind.php:259 mod/match.php:123
+msgid "No matches"
+msgstr "Aucune correspondance"
 
-#: mod/admin.php:195 mod/admin.php:366
-msgid "Server Blocklist"
-msgstr "Serveurs bloqués"
+#: mod/editpost.php:26 mod/editpost.php:36
+msgid "Item not found"
+msgstr "Élément introuvable"
 
-#: mod/admin.php:196 mod/admin.php:525
-msgid "Delete Item"
-msgstr "Supprimer un élément"
+#: mod/editpost.php:43
+msgid "Edit post"
+msgstr "Éditer la publication"
 
-#: mod/admin.php:197 mod/admin.php:198 mod/admin.php:2320
-msgid "Logs"
-msgstr "Journaux"
+#: mod/editpost.php:96 mod/message.php:261 mod/message.php:423
+#: mod/wallmessage.php:138
+msgid "Insert web link"
+msgstr "Insérer lien web"
 
-#: mod/admin.php:199 mod/admin.php:2387
-msgid "View Logs"
-msgstr "Voir les logs"
+#: mod/editpost.php:97
+msgid "web link"
+msgstr "lien web"
 
-#: mod/admin.php:201
-msgid "Diagnostics"
-msgstr ""
+#: mod/editpost.php:98
+msgid "Insert video link"
+msgstr "Insérer un lien video"
 
-#: mod/admin.php:202
-msgid "PHP Info"
-msgstr ""
+#: mod/editpost.php:99
+msgid "video link"
+msgstr "lien vidéo"
 
-#: mod/admin.php:203
-msgid "probe address"
-msgstr "Tester une adresse"
+#: mod/editpost.php:100
+msgid "Insert audio link"
+msgstr "Insérer un lien audio"
 
-#: mod/admin.php:204
-msgid "check webfinger"
-msgstr "vérification de webfinger"
+#: mod/editpost.php:101
+msgid "audio link"
+msgstr "lien audio"
 
-#: mod/admin.php:223 src/Content/Nav.php:218
-msgid "Admin"
-msgstr "Admin"
+#: mod/editpost.php:116 src/Core/ACL.php:304
+msgid "CC: email addresses"
+msgstr "CC: adresses de courriel"
 
-#: mod/admin.php:224
-msgid "Addon Features"
-msgstr ""
+#: mod/editpost.php:123 src/Core/ACL.php:305
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Exemple : bob@exemple.com, mary@exemple.com"
 
-#: mod/admin.php:225
-msgid "User registrations waiting for confirmation"
-msgstr "Inscriptions en attente de confirmation"
+#: mod/events.php:107 mod/events.php:109
+msgid "Event can not end before it has started."
+msgstr "L'événement ne peut pas se terminer avant d'avoir commencé."
 
-#: mod/admin.php:303 mod/admin.php:365 mod/admin.php:482 mod/admin.php:524
-#: mod/admin.php:721 mod/admin.php:756 mod/admin.php:852 mod/admin.php:1356
-#: mod/admin.php:1816 mod/admin.php:1932 mod/admin.php:1992 mod/admin.php:2201
-#: mod/admin.php:2245 mod/admin.php:2319 mod/admin.php:2386
-msgid "Administration"
-msgstr "Administration"
+#: mod/events.php:116 mod/events.php:118
+msgid "Event title and start time are required."
+msgstr "Vous devez donner un nom et un horaire de début à l'événement."
 
-#: mod/admin.php:305
-msgid "Display Terms of Service"
-msgstr ""
+#: mod/events.php:390
+msgid "Create New Event"
+msgstr "Créer un nouvel événement"
 
-#: mod/admin.php:305
-msgid ""
-"Enable the Terms of Service page. If this is enabled a link to the terms "
-"will be added to the registration form and the general information page."
-msgstr ""
+#: mod/events.php:513
+msgid "Event details"
+msgstr "Détails de l'événement"
 
-#: mod/admin.php:306
-msgid "Display Privacy Statement"
-msgstr ""
+#: mod/events.php:514
+msgid "Starting date and Title are required."
+msgstr "La date de début et le titre sont requis."
 
-#: mod/admin.php:306
-#, php-format
-msgid ""
-"Show some informations regarding the needed information to operate the node "
-"according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."
-msgstr ""
+#: mod/events.php:515 mod/events.php:520
+msgid "Event Starts:"
+msgstr "Début de l'événement :"
 
-#: mod/admin.php:307
-msgid "Privacy Statement Preview"
-msgstr ""
+#: mod/events.php:515 mod/events.php:547 mod/profiles.php:606
+msgid "Required"
+msgstr "Requis"
 
-#: mod/admin.php:309
-msgid "The Terms of Service"
-msgstr ""
+#: mod/events.php:528 mod/events.php:553
+msgid "Finish date/time is not known or not relevant"
+msgstr "Date / heure de fin inconnue ou sans objet"
 
-#: mod/admin.php:309
-msgid ""
-"Enter the Terms of Service for your node here. You can use BBCode. Headers "
-"of sections should be [h2] and below."
-msgstr ""
+#: mod/events.php:530 mod/events.php:535
+msgid "Event Finishes:"
+msgstr "Fin de l'événement :"
 
-#: mod/admin.php:357
-msgid "The blocked domain"
-msgstr "Domaine bloqué"
+#: mod/events.php:541 mod/events.php:554
+msgid "Adjust for viewer timezone"
+msgstr "Ajuster à la zone horaire du visiteur"
 
-#: mod/admin.php:358 mod/admin.php:371
-msgid "The reason why you blocked this domain."
-msgstr "Raison pour laquelle vous souhaitez bloquer ce domaine."
+#: mod/events.php:543
+msgid "Description:"
+msgstr "Description :"
 
-#: mod/admin.php:359
-msgid "Delete domain"
-msgstr "Supprimer le domaine."
+#: mod/events.php:547 mod/events.php:549
+msgid "Title:"
+msgstr "Titre :"
 
-#: mod/admin.php:359
-msgid "Check to delete this entry from the blocklist"
-msgstr "Cochez la case pour retirer cette entrée de la liste noire"
+#: mod/events.php:550 mod/events.php:551
+msgid "Share this event"
+msgstr "Partager cet événement"
 
-#: mod/admin.php:367
-msgid ""
-"This page can be used to define a black list of servers from the federated "
-"network that are not allowed to interact with your node. For all entered "
-"domains you should also give a reason why you have blocked the remote "
-"server."
-msgstr "Cette page permet de créer une liste noire des serveurs de la fédération qui ne sont pas autorisés à interagir avec votre serveur. Pour chaque serveur bloqué, vous devez fournir la raison du blocage."
+#: mod/events.php:558 src/Model/Profile.php:865
+msgid "Basic"
+msgstr "Simple"
 
-#: mod/admin.php:368
-msgid ""
-"The list of blocked servers will be made publically available on the "
-"/friendica page so that your users and people investigating communication "
-"problems can find the reason easily."
-msgstr "La liste des serveurs bloqués sera publiée sur la page /friendica pour que les utilisateurs rencontrant des problèmes de communication puissent en comprendre la raison."
+#: mod/events.php:560 mod/photos.php:1107 mod/photos.php:1448
+#: src/Core/ACL.php:307
+msgid "Permissions"
+msgstr "Permissions"
 
-#: mod/admin.php:369
-msgid "Add new entry to block list"
-msgstr "Ajouter une nouvelle entrée à la liste noire"
+#: mod/events.php:576
+msgid "Failed to remove event"
+msgstr "La suppression de l'événement a échoué."
 
-#: mod/admin.php:370
-msgid "Server Domain"
-msgstr "Adresse du serveur"
+#: mod/events.php:578
+msgid "Event removed"
+msgstr "Événement supprimé."
 
-#: mod/admin.php:370
-msgid ""
-"The domain of the new server to add to the block list. Do not include the "
-"protocol."
-msgstr "Adresse du serveur à ajouter à la liste noire. Ne pas mettre le protocole."
+#: mod/feedtest.php:21
+msgid "You must be logged in to use this module"
+msgstr ""
 
-#: mod/admin.php:371
-msgid "Block reason"
-msgstr "Raison du blocage."
+#: mod/feedtest.php:48
+msgid "Source URL"
+msgstr ""
 
-#: mod/admin.php:372
-msgid "Add Entry"
-msgstr "Ajouter"
+#: mod/fetch.php:20 mod/fetch.php:47 mod/fetch.php:54 mod/help.php:62
+#: src/App.php:1794
+msgid "Not Found"
+msgstr "Non trouvé"
 
-#: mod/admin.php:373
-msgid "Save changes to the blocklist"
-msgstr "Sauvegarder la liste noire"
+#: mod/filer.php:34
+msgid "- select -"
+msgstr "- choisir -"
 
-#: mod/admin.php:374
-msgid "Current Entries in the Blocklist"
-msgstr "Entrées de la liste noire"
+#: mod/follow.php:45
+msgid "The contact could not be added."
+msgstr ""
 
-#: mod/admin.php:377
-msgid "Delete entry from blocklist"
-msgstr "Supprimer l'entrée de la liste noire"
+#: mod/follow.php:75
+msgid "You already added this contact."
+msgstr "Vous avez déjà ajouté ce contact."
 
-#: mod/admin.php:380
-msgid "Delete entry from blocklist?"
-msgstr "Supprimer l'entrée de la liste noire ?"
+#: mod/follow.php:85
+msgid "Diaspora support isn't enabled. Contact can't be added."
+msgstr "Le support de Diaspora est désactivé. Le contact ne peut pas être ajouté."
 
-#: mod/admin.php:406
-msgid "Server added to blocklist."
-msgstr "Serveur ajouté à la liste noire."
+#: mod/follow.php:92
+msgid "OStatus support is disabled. Contact can't be added."
+msgstr "Le support d'OStatus est désactivé. Le contact ne peut pas être ajouté."
 
-#: mod/admin.php:422
-msgid "Site blocklist updated."
-msgstr "Liste noire mise à jour."
+#: mod/follow.php:99
+msgid "The network type couldn't be detected. Contact can't be added."
+msgstr "Impossible de détecter le type de réseau. Le contact ne peut pas être ajouté."
 
-#: mod/admin.php:445 src/Core/Console/GlobalCommunityBlock.php:72
-msgid "The contact has been blocked from the node"
-msgstr ""
+#: mod/follow.php:179 mod/notifications.php:254 src/Model/Profile.php:795
+#: src/Module/Contact.php:654
+msgid "Tags:"
+msgstr "Étiquette :"
 
-#: mod/admin.php:447 src/Core/Console/GlobalCommunityBlock.php:69
-#, php-format
-msgid "Could not find any contact entry for this URL (%s)"
-msgstr ""
+#: mod/follow.php:191 mod/unfollow.php:147 src/Model/Profile.php:892
+#: src/Module/Contact.php:859
+msgid "Status Messages and Posts"
+msgstr "Messages d'état et publications"
 
-#: mod/admin.php:454
+#: mod/friendica.php:70
 #, php-format
-msgid "%s contact unblocked"
-msgid_plural "%s contacts unblocked"
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/admin.php:483
-msgid "Remote Contact Blocklist"
+msgid ""
+"This is Friendica, version %s that is running at the web location %s. The "
+"database version is %s, the post update version is %s."
 msgstr ""
 
-#: mod/admin.php:484
+#: mod/friendica.php:76
 msgid ""
-"This page allows you to prevent any message from a remote contact to reach "
-"your node."
-msgstr ""
+"Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
+"about the Friendica project."
+msgstr "Rendez-vous sur <a href=\"https://friendi.ca\">Friendi.ca</a> pour en savoir plus sur le projet Friendica."
 
-#: mod/admin.php:485
-msgid "Block Remote Contact"
-msgstr ""
+#: mod/friendica.php:80
+msgid "Bug reports and issues: please visit"
+msgstr "Pour les rapports de bugs : rendez vous sur"
 
-#: mod/admin.php:486 mod/admin.php:1819
-msgid "select all"
-msgstr "tout sélectionner"
+#: mod/friendica.php:80
+msgid "the bugtracker at github"
+msgstr "le bugtracker sur GitHub"
 
-#: mod/admin.php:487
-msgid "select none"
+#: mod/friendica.php:83
+msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
 msgstr ""
 
-#: mod/admin.php:490
-msgid "No remote contact is blocked from this node."
+#: mod/friendica.php:88
+msgid "Installed addons/apps:"
 msgstr ""
 
-#: mod/admin.php:492
-msgid "Blocked Remote Contacts"
+#: mod/friendica.php:102
+msgid "No installed addons/apps"
 msgstr ""
 
-#: mod/admin.php:493
-msgid "Block New Remote Contact"
+#: mod/friendica.php:107
+#, php-format
+msgid "Read about the <a href=\"%1$s/tos\">Terms of Service</a> of this node."
 msgstr ""
 
-#: mod/admin.php:494
-msgid "Photo"
-msgstr ""
+#: mod/friendica.php:112
+msgid "On this server the following remote servers are blocked."
+msgstr "Sur ce serveur, les serveurs suivants sont sur liste noire."
 
-#: mod/admin.php:494 mod/profiles.php:394
-msgid "Address"
-msgstr "Adresse"
+#: mod/fsuggest.php:72
+msgid "Friend suggestion sent."
+msgstr "Suggestion d'amitié/contact envoyée."
 
-#: mod/admin.php:502
-#, php-format
-msgid "%s total blocked contact"
-msgid_plural "%s total blocked contacts"
-msgstr[0] ""
-msgstr[1] ""
+#: mod/fsuggest.php:101
+msgid "Suggest Friends"
+msgstr "Suggérer des amis/contacts"
 
-#: mod/admin.php:504
-msgid "URL of the remote contact to block."
-msgstr ""
+#: mod/fsuggest.php:103
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Suggérer un ami/contact pour %s"
 
-#: mod/admin.php:526
-msgid "Delete this Item"
-msgstr "Supprimer l'élément"
+#: mod/group.php:38
+msgid "Group created."
+msgstr "Groupe créé."
 
-#: mod/admin.php:527
-msgid ""
-"On this page you can delete an item from your node. If the item is a top "
-"level posting, the entire thread will be deleted."
-msgstr "Sur cette page, vous pouvez supprimer un élément de votre noeud. Si cet élément est le premier post d'un fil de discussion, le fil de discussion entier sera supprimé."
+#: mod/group.php:44
+msgid "Could not create group."
+msgstr "Impossible de créer le groupe."
 
-#: mod/admin.php:528
-msgid ""
-"You need to know the GUID of the item. You can find it e.g. by looking at "
-"the display URL. The last part of http://example.com/display/123456 is the "
-"GUID, here 123456."
-msgstr "Vous devez connaître le GUID de l'élément. Vous pouvez le trouver en sélectionnant l'élément puis en lisant l'URL. La dernière partie de l'URL est le GUID. Exemple: http://example.com/display/123456 a pour GUID: 123456."
+#: mod/group.php:58 mod/group.php:185
+msgid "Group not found."
+msgstr "Groupe introuvable."
 
-#: mod/admin.php:529
-msgid "GUID"
-msgstr "GUID"
+#: mod/group.php:72
+msgid "Group name changed."
+msgstr "Groupe renommé."
 
-#: mod/admin.php:529
-msgid "The GUID of the item you want to delete."
-msgstr "GUID de l'élément à supprimer."
+#: mod/group.php:85 mod/profperm.php:29 src/App.php:1875
+msgid "Permission denied"
+msgstr "Permission refusée"
 
-#: mod/admin.php:568
-msgid "Item marked for deletion."
-msgstr "L'élément va être supprimé."
+#: mod/group.php:103
+msgid "Save Group"
+msgstr "Sauvegarder le groupe"
 
-#: mod/admin.php:639
-msgid "unknown"
-msgstr "inconnu"
+#: mod/group.php:104
+msgid "Filter"
+msgstr ""
 
-#: mod/admin.php:715
-msgid ""
-"This page offers you some numbers to the known part of the federated social "
-"network your Friendica node is part of. These numbers are not complete but "
-"only reflect the part of the network your node is aware of."
-msgstr "Cette page montre quelques statistiques de la partie connue du réseau social fédéré dont votre instance Friendica fait partie. Ces chiffres sont partiels et ne reflètent que la portion du réseau dont votre instance a connaissance."
+#: mod/group.php:109
+msgid "Create a group of contacts/friends."
+msgstr "Créez un groupe de contacts/amis."
 
-#: mod/admin.php:716
-msgid ""
-"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
-"will improve the data displayed here."
-msgstr "En activant la fonctionnalité <em>Répertoire de Contacts Découverts Automatiquement</em>, cela améliorera la qualité des chiffres présentés ici."
+#: mod/group.php:110 mod/group.php:134 mod/group.php:227
+#: src/Model/Group.php:413
+msgid "Group Name: "
+msgstr "Nom du groupe : "
 
-#: mod/admin.php:728
-#, php-format
-msgid ""
-"Currently this node is aware of %d nodes with %d registered users from the "
-"following platforms:"
-msgstr ""
+#: mod/group.php:125 src/Model/Group.php:410
+msgid "Contacts not in any group"
+msgstr "Contacts n'appartenant à aucun groupe"
 
-#: mod/admin.php:759
-msgid "ID"
-msgstr "ID"
+#: mod/group.php:157
+msgid "Group removed."
+msgstr "Groupe enlevé."
 
-#: mod/admin.php:760
-msgid "Recipient Name"
-msgstr "Nom du destinataire"
+#: mod/group.php:159
+msgid "Unable to remove group."
+msgstr "Impossible d'enlever le groupe."
 
-#: mod/admin.php:761
-msgid "Recipient Profile"
-msgstr "Profil du destinataire"
+#: mod/group.php:220
+msgid "Delete Group"
+msgstr "Supprimer le groupe"
 
-#: mod/admin.php:762 view/theme/frio/theme.php:266
-#: src/Core/NotificationsManager.php:178 src/Content/Nav.php:183
-msgid "Network"
-msgstr "Réseau"
+#: mod/group.php:231
+msgid "Edit Group Name"
+msgstr "Éditer le nom du groupe"
 
-#: mod/admin.php:763
-msgid "Created"
-msgstr "Créé"
+#: mod/group.php:242
+msgid "Members"
+msgstr "Membres"
 
-#: mod/admin.php:764
-msgid "Last Tried"
-msgstr "Dernier essai"
+#: mod/group.php:244 src/Module/Contact.php:709
+msgid "All Contacts"
+msgstr "Tous les contacts"
 
-#: mod/admin.php:765
-msgid ""
-"This page lists the content of the queue for outgoing postings. These are "
-"postings the initial delivery failed for. They will be resend later and "
-"eventually deleted if the delivery fails permanently."
-msgstr "Cette page présente le contenu de la file d'attente pour les publications sortantes. Ce sont des messages dont la première livraison a échoué. Ils seront réenvoyés plus tard et éventuellement supprimés si l'envoi échoue de façon permanente."
+#: mod/group.php:245 mod/network.php:653
+msgid "Group is empty"
+msgstr "Groupe vide"
 
-#: mod/admin.php:789
-#, php-format
-msgid ""
-"Your DB still runs with MyISAM tables. You should change the engine type to "
-"InnoDB. As Friendica will use InnoDB only features in the future, you should"
-" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
-"converting the table engines. You may also use the command <tt>php "
-"bin/console.php dbstructure toinnodb</tt> of your Friendica installation for"
-" an automatic conversion.<br />"
+#: mod/group.php:258
+msgid "Remove contact from group"
 msgstr ""
 
-#: mod/admin.php:796
-#, php-format
-msgid ""
-"There is a new version of Friendica available for download. Your current "
-"version is %1$s, upstream version is %2$s"
-msgstr "Une nouvelle version de Friendica est disponible. Votre version est %1$s, la nouvelle version est %2$s"
+#: mod/group.php:276 mod/profperm.php:118
+msgid "Click on a contact to add or remove."
+msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer."
 
-#: mod/admin.php:806
-msgid ""
-"The database update failed. Please run \"php bin/console.php dbstructure "
-"update\" from the command line and have a look at the errors that might "
-"appear."
+#: mod/group.php:290
+msgid "Add contact to group"
 msgstr ""
 
-#: mod/admin.php:812
-msgid "The worker was never executed. Please check your database structure!"
-msgstr "Le 'worker' n'a pas encore été exécuté. Vérifiez la structure de votre base de données."
-
-#: mod/admin.php:815
-#, php-format
-msgid ""
-"The last worker execution was on %s UTC. This is older than one hour. Please"
-" check your crontab settings."
-msgstr "La dernière exécution du 'worker' s'est déroulée à %s, c'est-à-dire il y a plus d'une heure. Vérifiez les réglages de crontab."
+#: mod/hcard.php:19
+msgid "No profile"
+msgstr "Aucun profil"
 
-#: mod/admin.php:820
-msgid "Normal Account"
-msgstr "Compte normal"
+#: mod/help.php:49
+msgid "Help:"
+msgstr "Aide :"
 
-#: mod/admin.php:821
-msgid "Automatic Follower Account"
-msgstr ""
+#: mod/help.php:56 view/theme/vier/theme.php:295 src/Content/Nav.php:186
+msgid "Help"
+msgstr "Aide"
 
-#: mod/admin.php:822
-msgid "Public Forum Account"
-msgstr ""
+#: mod/home.php:39
+#, php-format
+msgid "Welcome to %s"
+msgstr "Bienvenue sur %s"
 
-#: mod/admin.php:823
-msgid "Automatic Friend Account"
-msgstr "Compte auto-amical"
+#: mod/invite.php:36
+msgid "Total invitation limit exceeded."
+msgstr "La limite d'invitation totale est éxédée."
 
-#: mod/admin.php:824
-msgid "Blog Account"
-msgstr "Compte de blog"
+#: mod/invite.php:58
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s : Adresse de courriel invalide."
 
-#: mod/admin.php:825
-msgid "Private Forum Account"
-msgstr ""
+#: mod/invite.php:85
+msgid "Please join us on Friendica"
+msgstr "Rejoignez-nous sur Friendica"
 
-#: mod/admin.php:847
-msgid "Message queues"
-msgstr "Files d'attente des messages"
+#: mod/invite.php:94
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site."
 
-#: mod/admin.php:853
-msgid "Summary"
-msgstr "Résumé"
+#: mod/invite.php:98
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : L'envoi du message a échoué."
 
-#: mod/admin.php:855
-msgid "Registered users"
-msgstr "Utilisateurs inscrits"
-
-#: mod/admin.php:857
-msgid "Pending registrations"
-msgstr "Inscriptions en attente"
-
-#: mod/admin.php:858
-msgid "Version"
-msgstr "Version"
+#: mod/invite.php:102
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d message envoyé."
+msgstr[1] "%d messages envoyés."
 
-#: mod/admin.php:863
-msgid "Active addons"
-msgstr ""
+#: mod/invite.php:120
+msgid "You have no more invitations available"
+msgstr "Vous n'avez plus d'invitations disponibles"
 
-#: mod/admin.php:894
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr "Impossible d'analyser l'URL de base. Doit contenir au moins <scheme>://<domain>"
+#: mod/invite.php:128
+#, php-format
+msgid ""
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many"
+" other social networks."
+msgstr "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux."
 
-#: mod/admin.php:1224
-msgid "Site settings updated."
-msgstr "Réglages du site mis-à-jour."
+#: mod/invite.php:130
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public."
 
-#: mod/admin.php:1251 mod/settings.php:897
-msgid "No special theme for mobile devices"
-msgstr "Pas de thème particulier pour les terminaux mobiles"
+#: mod/invite.php:131
+#, php-format
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
+msgstr "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre."
 
-#: mod/admin.php:1280
-msgid "No community page for local users"
-msgstr ""
+#: mod/invite.php:135
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres."
 
-#: mod/admin.php:1281
-msgid "No community page"
-msgstr "Aucune page de communauté"
+#: mod/invite.php:139
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks."
+msgstr "Les instances Friendica sont interconnectées pour créer un immense réseau social possédé et contrôlé par ses membres, et qui respecte leur vie privée. Ils peuvent aussi s'interconnecter avec d'autres réseaux sociaux traditionnels."
 
-#: mod/admin.php:1282
-msgid "Public postings from users of this site"
-msgstr "Publications publiques des utilisateurs de ce site"
+#: mod/invite.php:138
+#, php-format
+msgid "To accept this invitation, please visit and register at %s."
+msgstr "Pour accepter cette invitation, rendez-vous sur %s et inscrivez-vous."
 
-#: mod/admin.php:1283
-msgid "Public postings from the federated network"
-msgstr ""
+#: mod/invite.php:145
+msgid "Send invitations"
+msgstr "Envoyer des invitations"
 
-#: mod/admin.php:1284
-msgid "Public postings from local users and the federated network"
-msgstr ""
+#: mod/invite.php:146
+msgid "Enter email addresses, one per line:"
+msgstr "Entrez les adresses email, une par ligne :"
 
-#: mod/admin.php:1290
-msgid "Users, Global Contacts"
-msgstr "Utilisateurs, Contacts Globaux"
+#: mod/invite.php:147 mod/message.php:257 mod/message.php:418
+#: mod/wallmessage.php:135
+msgid "Your message:"
+msgstr "Votre message :"
 
-#: mod/admin.php:1291
-msgid "Users, Global Contacts/fallback"
-msgstr "Utilisateurs, Contacts Globaux/alternative"
+#: mod/invite.php:147
+msgid ""
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social."
 
-#: mod/admin.php:1295
-msgid "One month"
-msgstr "Un mois"
+#: mod/invite.php:149
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Vous devrez fournir ce code d'invitation : $invite_code"
 
-#: mod/admin.php:1296
-msgid "Three months"
-msgstr "Trois mois"
+#: mod/invite.php:149
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Une fois inscrit, connectez-vous à la page de mon profil sur :"
 
-#: mod/admin.php:1297
-msgid "Half a year"
-msgstr "Six mois"
+#: mod/invite.php:151
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendi.ca"
+msgstr ""
 
-#: mod/admin.php:1298
-msgid "One year"
-msgstr "Un an"
+#: mod/item.php:118
+msgid "Unable to locate original post."
+msgstr "Impossible de localiser la publication originale."
 
-#: mod/admin.php:1303
-msgid "Multi user instance"
-msgstr "Instance multi-utilisateurs"
+#: mod/item.php:286
+msgid "Empty post discarded."
+msgstr "Publication vide rejetée."
 
-#: mod/admin.php:1326
-msgid "Closed"
-msgstr "Fermé"
+#: mod/item.php:465 mod/wall_upload.php:241 src/Object/Image.php:968
+#: src/Object/Image.php:984 src/Object/Image.php:992 src/Object/Image.php:1017
+msgid "Wall Photos"
+msgstr "Photos du mur"
 
-#: mod/admin.php:1327
-msgid "Requires approval"
-msgstr "Demande une apptrobation"
+#: mod/item.php:805
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Ce message vous a été envoyé par %s, membre du réseau social Friendica."
 
-#: mod/admin.php:1328
-msgid "Open"
-msgstr "Ouvert"
+#: mod/item.php:807
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Vous pouvez leur rendre visite sur %s"
 
-#: mod/admin.php:1332
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Pas de politique SSL, le liens conserveront l'état SSL de la page"
+#: mod/item.php:808
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages."
 
-#: mod/admin.php:1333
-msgid "Force all links to use SSL"
-msgstr "Forcer tous les liens à utiliser SSL"
+#: mod/item.php:812
+#, php-format
+msgid "%s posted an update."
+msgstr "%s a publié une mise à jour."
 
-#: mod/admin.php:1334
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)"
+#: mod/lockview.php:46 mod/lockview.php:57
+msgid "Remote privacy information not available."
+msgstr "Informations de confidentialité indisponibles."
 
-#: mod/admin.php:1338
-msgid "Don't check"
-msgstr "Ne pas rechercher"
+#: mod/lockview.php:66
+msgid "Visible to:"
+msgstr "Visible par :"
 
-#: mod/admin.php:1339
-msgid "check the stable version"
-msgstr "Rechercher les versions stables"
+#: mod/lostpass.php:28
+msgid "No valid account found."
+msgstr "Impossible de trouver un compte valide."
 
-#: mod/admin.php:1340
-msgid "check the development version"
-msgstr "Rechercher les versions de développement"
+#: mod/lostpass.php:40
+msgid "Password reset request issued. Check your email."
+msgstr "Réinitialisation du mot de passe en cours. Vérifiez votre courriel."
 
-#: mod/admin.php:1359
-msgid "Republish users to directory"
+#: mod/lostpass.php:46
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
+"\t\tpassword. In order to confirm this request, please select the verification link\n"
+"\t\tbelow or paste it into your web browser address bar.\n"
+"\n"
+"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
+"\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n"
+"\n"
+"\t\tYour password will not be changed unless we can verify that you\n"
+"\t\tissued this request."
 msgstr ""
 
-#: mod/admin.php:1360 mod/register.php:267
-msgid "Registration"
-msgstr "Inscription"
-
-#: mod/admin.php:1361
-msgid "File upload"
-msgstr "Téléversement de fichier"
-
-#: mod/admin.php:1362
-msgid "Policies"
-msgstr "Politiques"
-
-#: mod/admin.php:1364
-msgid "Auto Discovered Contact Directory"
-msgstr "Répertoire de Contacts Découverts Automatiquement"
+#: mod/lostpass.php:57
+#, php-format
+msgid ""
+"\n"
+"\t\tFollow this link soon to verify your identity:\n"
+"\n"
+"\t\t%1$s\n"
+"\n"
+"\t\tYou will then receive a follow-up message containing the new password.\n"
+"\t\tYou may change that password from your account settings page after logging in.\n"
+"\n"
+"\t\tThe login details are as follows:\n"
+"\n"
+"\t\tSite Location:\t%2$s\n"
+"\t\tLogin Name:\t%3$s"
+msgstr ""
 
-#: mod/admin.php:1365
-msgid "Performance"
-msgstr "Performance"
+#: mod/lostpass.php:76
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Requête de réinitialisation de mot de passe à %s"
 
-#: mod/admin.php:1366
-msgid "Worker"
-msgstr "Worker"
+#: mod/lostpass.php:92
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué."
 
-#: mod/admin.php:1367
-msgid "Message Relay"
+#: mod/lostpass.php:105
+msgid "Request has expired, please make a new one."
 msgstr ""
 
-#: mod/admin.php:1368
+#: mod/lostpass.php:120
+msgid "Forgot your Password?"
+msgstr "Mot de passe oublié ?"
+
+#: mod/lostpass.php:121
 msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Relocalisation - ATTENTION: fonction avancée. Peut rendre ce serveur inaccessible."
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel."
 
-#: mod/admin.php:1371
-msgid "Site name"
-msgstr "Nom du site"
+#: mod/lostpass.php:122 src/Module/Login.php:322
+msgid "Nickname or Email: "
+msgstr "Pseudo ou eMail : "
 
-#: mod/admin.php:1372
-msgid "Host name"
-msgstr "Nom de la machine hôte"
+#: mod/lostpass.php:123
+msgid "Reset"
+msgstr "Réinitialiser"
 
-#: mod/admin.php:1373
-msgid "Sender Email"
-msgstr "Courriel de l'émetteur"
+#: mod/lostpass.php:139 src/Module/Login.php:334
+msgid "Password Reset"
+msgstr "Réinitialiser le mot de passe"
 
-#: mod/admin.php:1373
-msgid ""
-"The email address your server shall use to send notification emails from."
-msgstr "L'adresse courriel à partir de laquelle votre serveur enverra des courriels."
+#: mod/lostpass.php:140
+msgid "Your password has been reset as requested."
+msgstr "Votre mot de passe a bien été réinitialisé."
 
-#: mod/admin.php:1374
-msgid "Banner/Logo"
-msgstr "Bannière/Logo"
+#: mod/lostpass.php:141
+msgid "Your new password is"
+msgstr "Votre nouveau mot de passe est "
 
-#: mod/admin.php:1375
-msgid "Shortcut icon"
-msgstr "Icône de raccourci"
+#: mod/lostpass.php:142
+msgid "Save or copy your new password - and then"
+msgstr "Sauvez ou copiez ce nouveau mot de passe - puis"
 
-#: mod/admin.php:1375
-msgid "Link to an icon that will be used for browsers."
-msgstr "Lien vers une icône qui sera utilisée pour les navigateurs."
+#: mod/lostpass.php:143
+msgid "click here to login"
+msgstr "cliquez ici pour vous connecter"
 
-#: mod/admin.php:1376
-msgid "Touch icon"
-msgstr "Icône pour systèmes tactiles"
+#: mod/lostpass.php:144
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Votre mot de passe peut être changé depuis la page &lt;em&gt;Réglages&lt;/em&gt;, une fois que vous serez connecté."
 
-#: mod/admin.php:1376
-msgid "Link to an icon that will be used for tablets and mobiles."
-msgstr "Lien vers une icône qui sera utilisée pour les tablettes et les mobiles."
-
-#: mod/admin.php:1377
-msgid "Additional Info"
-msgstr "Informations supplémentaires"
+#: mod/lostpass.php:152
+#, php-format
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tYour password has been changed as requested. Please retain this\n"
+"\t\t\tinformation for your records (or change your password immediately to\n"
+"\t\t\tsomething that you will remember).\n"
+"\t\t"
+msgstr ""
 
-#: mod/admin.php:1377
+#: mod/lostpass.php:158
 #, php-format
 msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/servers."
+"\n"
+"\t\t\tYour login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%1$s\n"
+"\t\t\tLogin Name:\t%2$s\n"
+"\t\t\tPassword:\t%3$s\n"
+"\n"
+"\t\t\tYou may change that password from your account settings page after logging in.\n"
+"\t\t"
 msgstr ""
 
-#: mod/admin.php:1378
-msgid "System language"
-msgstr "Langue du système"
+#: mod/lostpass.php:174
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Votre mot de passe a été modifié à %s"
 
-#: mod/admin.php:1379
-msgid "System theme"
-msgstr "Thème du système"
+#: mod/manage.php:180
+msgid "Manage Identities and/or Pages"
+msgstr "Gérer les identités et/ou les pages"
 
-#: mod/admin.php:1379
+#: mod/manage.php:181
 msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Thème par défaut sur ce site - peut être changé au niveau du profile utilisateur - <a href='#' id='cnftheme'>changer les réglages du thème</a>"
-
-#: mod/admin.php:1380
-msgid "Mobile system theme"
-msgstr "Thème mobile"
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer."
 
-#: mod/admin.php:1380
-msgid "Theme for mobile devices"
-msgstr "Thème pour les terminaux mobiles"
+#: mod/manage.php:182
+msgid "Select an identity to manage: "
+msgstr "Choisir une identité à gérer: "
 
-#: mod/admin.php:1381
-msgid "SSL link policy"
-msgstr "Politique SSL pour les liens"
+#: mod/match.php:49
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut."
 
-#: mod/admin.php:1381
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Détermine si les liens générés doivent forcer l'utilisation de SSL"
+#: mod/match.php:104
+msgid "is interested in:"
+msgstr "s'intéresse à :"
 
-#: mod/admin.php:1382
-msgid "Force SSL"
-msgstr "SSL obligatoire"
+#: mod/match.php:118
+msgid "Profile Match"
+msgstr "Correpondance de profils"
 
-#: mod/admin.php:1382
-msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
-" to endless loops."
-msgstr "Redirige toutes les requêtes en clair vers des requêtes SSL. Attention : sur certains systèmes cela peut conduire à des boucles de redirection infinies."
+#: mod/message.php:33 mod/message.php:116 src/Content/Nav.php:251
+msgid "New Message"
+msgstr "Nouveau message"
 
-#: mod/admin.php:1383
-msgid "Hide help entry from navigation menu"
-msgstr "Cacher l'aide du menu de navigation"
+#: mod/message.php:70 mod/wallmessage.php:58
+msgid "No recipient selected."
+msgstr "Pas de destinataire sélectionné."
 
-#: mod/admin.php:1383
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
-msgstr "Cacher du menu de navigation l'entrée vers les pages d'aide. Vous pouvez toujours y accéder en tapant directement /help."
+#: mod/message.php:74
+msgid "Unable to locate contact information."
+msgstr "Impossible de localiser les informations du contact."
 
-#: mod/admin.php:1384
-msgid "Single user instance"
-msgstr "Instance mono-utilisateur"
+#: mod/message.php:77 mod/wallmessage.php:64
+msgid "Message could not be sent."
+msgstr "Impossible d'envoyer le message."
 
-#: mod/admin.php:1384
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr "Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l'utilisateur."
+#: mod/message.php:80 mod/wallmessage.php:67
+msgid "Message collection failure."
+msgstr "Récupération des messages infructueuse."
 
-#: mod/admin.php:1385
-msgid "Maximum image size"
-msgstr "Taille maximale des images"
+#: mod/message.php:83 mod/wallmessage.php:70
+msgid "Message sent."
+msgstr "Message envoyé."
 
-#: mod/admin.php:1385
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Taille maximale des images envoyées (en octets). 0 par défaut, c'est à dire \"aucune limite\"."
+#: mod/message.php:110 mod/notifications.php:46 mod/notifications.php:184
+#: mod/notifications.php:232
+msgid "Discard"
+msgstr "Rejeter"
 
-#: mod/admin.php:1386
-msgid "Maximum image length"
-msgstr "Longueur maximale des images"
+#: mod/message.php:123 view/theme/frio/theme.php:280 src/Content/Nav.php:248
+msgid "Messages"
+msgstr "Messages"
 
-#: mod/admin.php:1386
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "Longueur maximale en pixels du plus long côté des images téléversées. La valeur par défaut est -1 : absence de limite."
+#: mod/message.php:148
+msgid "Do you really want to delete this message?"
+msgstr "Voulez-vous vraiment supprimer ce message ?"
 
-#: mod/admin.php:1387
-msgid "JPEG image quality"
-msgstr "Qualité JPEG des images"
+#: mod/message.php:166
+msgid "Conversation not found."
+msgstr ""
 
-#: mod/admin.php:1387
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr "Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale."
+#: mod/message.php:171
+msgid "Message deleted."
+msgstr "Message supprimé."
 
-#: mod/admin.php:1389
-msgid "Register policy"
-msgstr "Politique d'inscription"
+#: mod/message.php:176 mod/message.php:191
+msgid "Conversation removed."
+msgstr "Conversation supprimée."
 
-#: mod/admin.php:1390
-msgid "Maximum Daily Registrations"
-msgstr "Inscriptions maximum par jour"
+#: mod/message.php:205 mod/message.php:345 mod/wallmessage.php:121
+msgid "Please enter a link URL:"
+msgstr "Entrez un lien web :"
 
-#: mod/admin.php:1390
-msgid ""
-"If registration is permitted above, this sets the maximum number of new user"
-" registrations to accept per day.  If register is set to closed, this "
-"setting has no effect."
-msgstr "Si les inscriptions sont permises ci-dessus, ceci fixe le nombre maximum d'inscriptions de nouveaux utilisateurs acceptées par jour. Si les inscriptions ne sont pas ouvertes, ce paramètre n'a aucun effet."
+#: mod/message.php:248 mod/wallmessage.php:126
+msgid "Send Private Message"
+msgstr "Envoyer un message privé"
 
-#: mod/admin.php:1391
-msgid "Register text"
-msgstr "Texte d'inscription"
+#: mod/message.php:249 mod/message.php:413 mod/wallmessage.php:128
+msgid "To:"
+msgstr "À:"
 
-#: mod/admin.php:1391
-msgid ""
-"Will be displayed prominently on the registration page. You can use BBCode "
-"here."
-msgstr ""
+#: mod/message.php:253 mod/message.php:415 mod/wallmessage.php:129
+msgid "Subject:"
+msgstr "Sujet:"
 
-#: mod/admin.php:1392
-msgid "Accounts abandoned after x days"
-msgstr "Les comptes sont abandonnés après x jours"
+#: mod/message.php:291
+msgid "No messages."
+msgstr "Aucun message."
 
-#: mod/admin.php:1392
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Pour ne pas gaspiller les ressources système, on cesse d'interroger les sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette fonction."
+#: mod/message.php:332
+msgid "Message not available."
+msgstr "Message indisponible."
 
-#: mod/admin.php:1393
-msgid "Allowed friend domains"
-msgstr "Domaines autorisés"
+#: mod/message.php:389
+msgid "Delete message"
+msgstr "Effacer message"
 
-#: mod/admin.php:1393
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Une liste de domaines, séparés par des virgules, autorisés à établir des relations avec les utilisateurs de ce site. Les '*' sont acceptés. Laissez vide pour autoriser tous les domaines"
+#: mod/message.php:391 mod/message.php:492
+msgid "D, d M Y - g:i A"
+msgstr "D, d M Y - g:i A"
 
-#: mod/admin.php:1394
-msgid "Allowed email domains"
-msgstr "Domaines courriel autorisés"
+#: mod/message.php:406 mod/message.php:489
+msgid "Delete conversation"
+msgstr "Effacer conversation"
 
-#: mod/admin.php:1394
+#: mod/message.php:408
 msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
-msgstr "Liste de domaines - séparés par des virgules - dont les adresses e-mail sont autorisées à s'inscrire sur ce site. Les '*' sont acceptées. Laissez vide pour autoriser tous les domaines"
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Pas de communications sécurisées possibles. Vous serez <strong>peut-être</strong> en mesure de répondre depuis la page de profil de l'émetteur."
 
-#: mod/admin.php:1395
-msgid "No OEmbed rich content"
-msgstr ""
+#: mod/message.php:412
+msgid "Send Reply"
+msgstr "Répondre"
 
-#: mod/admin.php:1395
-msgid ""
-"Don't show the rich content (e.g. embedded PDF), except from the domains "
-"listed below."
-msgstr ""
+#: mod/message.php:463
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "Émetteur inconnu - %s"
 
-#: mod/admin.php:1396
-msgid "Allowed OEmbed domains"
-msgstr ""
+#: mod/message.php:465
+#, php-format
+msgid "You and %s"
+msgstr "Vous et %s"
 
-#: mod/admin.php:1396
-msgid ""
-"Comma separated list of domains which oembed content is allowed to be "
-"displayed. Wildcards are accepted."
-msgstr ""
+#: mod/message.php:467
+#, php-format
+msgid "%s and You"
+msgstr "%s et vous"
 
-#: mod/admin.php:1397
-msgid "Block public"
-msgstr "Interdire la publication globale"
+#: mod/message.php:495
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d message"
+msgstr[1] "%d messages"
 
-#: mod/admin.php:1397
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques."
+#: mod/network.php:198 mod/search.php:40
+msgid "Remove term"
+msgstr "Retirer le terme"
 
-#: mod/admin.php:1398
-msgid "Force publish"
-msgstr "Forcer la publication globale"
+#: mod/network.php:205 mod/search.php:49 src/Content/Feature.php:100
+msgid "Saved Searches"
+msgstr "Recherches"
 
-#: mod/admin.php:1398
+#: mod/network.php:206 src/Model/Group.php:404
+msgid "add"
+msgstr "ajouter"
+
+#: mod/network.php:561
+#, php-format
 msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site."
+"Warning: This group contains %s member from a network that doesn't allow non"
+" public messages."
+msgid_plural ""
+"Warning: This group contains %s members from a network that doesn't allow "
+"non public messages."
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/admin.php:1399
-msgid "Global directory URL"
-msgstr "URL de l'annuaire global"
+#: mod/network.php:564
+msgid "Messages in this group won't be send to these receivers."
+msgstr "Les messages dans ce groupe ne seront pas envoyés à ces destinataires."
 
-#: mod/admin.php:1399
-msgid ""
-"URL to the global directory. If this is not set, the global directory is "
-"completely unavailable to the application."
-msgstr "URL de l'annuaire global. Si ce champ n'est pas défini, l'annuaire global sera complètement indisponible pour l'application."
+#: mod/network.php:632
+msgid "No such group"
+msgstr "Groupe inexistant"
 
-#: mod/admin.php:1400
-msgid "Private posts by default for new users"
-msgstr "Publications privées par défaut pour les nouveaux utilisateurs"
+#: mod/network.php:657
+#, php-format
+msgid "Group: %s"
+msgstr "Group : %s"
 
-#: mod/admin.php:1400
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde."
-
-#: mod/admin.php:1401
-msgid "Don't include post content in email notifications"
-msgstr "Ne pas inclure le contenu posté dans l'e-mail de notification"
-
-#: mod/admin.php:1401
-msgid ""
-"Don't include the content of a post/comment/private message/etc. in the "
-"email notifications that are sent out from this site, as a privacy measure."
-msgstr "Ne pas inclure le contenu de publication/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité."
-
-#: mod/admin.php:1402
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Interdire l’accès public pour les greffons listées dans le menu apps."
-
-#: mod/admin.php:1402
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr "Cocher cette case restreint la liste des greffons dans le menu des applications seulement aux membres."
-
-#: mod/admin.php:1403
-msgid "Don't embed private images in posts"
-msgstr "Ne pas miniaturiser les images privées dans les publications"
-
-#: mod/admin.php:1403
-msgid ""
-"Don't replace locally-hosted private photos in posts with an embedded copy "
-"of the image. This means that contacts who receive posts containing private "
-"photos will have to authenticate and load each image, which may take a "
-"while."
-msgstr "Ne remplacez pas les images privées hébergées localement dans les publications avec une image attaché en copie, car cela signifie que le contact qui reçoit les publications contenant ces photos privées devra s’authentifier pour charger chaque image, ce qui peut prendre du temps."
-
-#: mod/admin.php:1404
-msgid "Allow Users to set remote_self"
-msgstr "Autoriser les utilisateurs à définir remote_self"
-
-#: mod/admin.php:1404
-msgid ""
-"With checking this, every user is allowed to mark every contact as a "
-"remote_self in the repair contact dialog. Setting this flag on a contact "
-"causes mirroring every posting of that contact in the users stream."
-msgstr "Cocher cette case, permet à chaque utilisateur de marquer chaque contact comme un remote_self dans la boîte de dialogue de réparation des contacts. Activer cette fonction à un contact engendre la réplique de toutes les publications d'un contact dans le flux d'activités des utilisateurs."
+#: mod/network.php:683
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée."
 
-#: mod/admin.php:1405
-msgid "Block multiple registrations"
-msgstr "Interdire les inscriptions multiples"
+#: mod/network.php:686
+msgid "Invalid contact."
+msgstr "Contact invalide."
 
-#: mod/admin.php:1405
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Ne pas permettre l'inscription de comptes multiples comme des pages."
+#: mod/network.php:964
+msgid "Commented Order"
+msgstr "Tri par commentaires"
 
-#: mod/admin.php:1406
-msgid "OpenID support"
-msgstr "Support OpenID"
+#: mod/network.php:967
+msgid "Sort by Comment Date"
+msgstr "Trier par date de commentaire"
 
-#: mod/admin.php:1406
-msgid "OpenID support for registration and logins."
-msgstr "Supporter OpenID pour les inscriptions et connexions."
+#: mod/network.php:972
+msgid "Posted Order"
+msgstr "Tri des publications"
 
-#: mod/admin.php:1407
-msgid "Fullname check"
-msgstr "Vérification du \"Prénom Nom\""
+#: mod/network.php:975
+msgid "Sort by Post Date"
+msgstr "Trier par date de publication"
 
-#: mod/admin.php:1407
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr "Imposer l'utilisation d'un espace entre le prénom et le nom (dans le Nom complet), pour limiter les abus"
+#: mod/network.php:983 mod/profiles.php:593
+#: src/Core/NotificationsManager.php:187
+msgid "Personal"
+msgstr "Personnel"
 
-#: mod/admin.php:1408
-msgid "Community pages for visitors"
-msgstr ""
+#: mod/network.php:986
+msgid "Posts that mention or involve you"
+msgstr "Publications qui vous concernent"
 
-#: mod/admin.php:1408
-msgid ""
-"Which community pages should be available for visitors. Local users always "
-"see both pages."
-msgstr ""
+#: mod/network.php:994
+msgid "New"
+msgstr "Nouveau"
 
-#: mod/admin.php:1409
-msgid "Posts per user on community page"
-msgstr "Nombre de publications par utilisateur sur la page de la communauté (n'est pas valide pour "
+#: mod/network.php:997
+msgid "Activity Stream - by date"
+msgstr "Flux d'activités - par date"
 
-#: mod/admin.php:1409
-msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
-msgstr "Nombre maximal de publications par utilisateurs sur la page de la communauté (ne s'applique pas pour « Communauté globale »)."
+#: mod/network.php:1005
+msgid "Shared Links"
+msgstr "Liens partagés"
 
-#: mod/admin.php:1410
-msgid "Enable OStatus support"
-msgstr "Activer le support d'OStatus"
+#: mod/network.php:1008
+msgid "Interesting Links"
+msgstr "Liens intéressants"
 
-#: mod/admin.php:1410
-msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr "Fourni nativement la compatibilité avec OStatus (StatusNet, GNU Social etc.). Touts les communications utilisant OStatus sont public, des avertissements liés à la vie privée seront affichés si utile."
+#: mod/network.php:1016
+msgid "Starred"
+msgstr "Mis en avant"
 
-#: mod/admin.php:1411
-msgid "Only import OStatus threads from our contacts"
-msgstr "Importer seulement les fils OStatus de nos contacts"
+#: mod/network.php:1019
+msgid "Favourite Posts"
+msgstr "Publications favorites"
 
-#: mod/admin.php:1411
-msgid ""
-"Normally we import every content from our OStatus contacts. With this option"
-" we only store threads that are started by a contact that is known on our "
-"system."
-msgstr ""
+#: mod/newmember.php:11
+msgid "Welcome to Friendica"
+msgstr "Bienvenue sur Friendica"
 
-#: mod/admin.php:1412
-msgid "OStatus support can only be enabled if threading is enabled."
-msgstr "Le support OStatus ne peut être activé que si l'imbrication des commentaires est activée."
+#: mod/newmember.php:12
+msgid "New Member Checklist"
+msgstr "Checklist du nouvel utilisateur"
 
-#: mod/admin.php:1414
+#: mod/newmember.php:14
 msgid ""
-"Diaspora support can't be enabled because Friendica was installed into a sub"
-" directory."
-msgstr "Le support de Diaspora ne peut pas être activé parce que Friendica a été installé dans un sous-répertoire."
-
-#: mod/admin.php:1415
-msgid "Enable Diaspora support"
-msgstr "Activer le support de Diaspora"
+"We would like to offer some tips and links to help make your experience "
+"enjoyable. Click any item to visit the relevant page. A link to this page "
+"will be visible from your home page for two weeks after your initial "
+"registration and then will quietly disappear."
+msgstr "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement."
 
-#: mod/admin.php:1415
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Fournir une compatibilité Diaspora intégrée."
+#: mod/newmember.php:15
+msgid "Getting Started"
+msgstr "Bien démarrer"
 
-#: mod/admin.php:1416
-msgid "Only allow Friendica contacts"
-msgstr "N'autoriser que les contacts Friendica"
+#: mod/newmember.php:17
+msgid "Friendica Walk-Through"
+msgstr "Friendica pas-à-pas"
 
-#: mod/admin.php:1416
+#: mod/newmember.php:17
 msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "Tous les contacts doivent utiliser les protocoles de Friendica. Tous les autres protocoles de communication intégrés sont désactivés."
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr "Sur votre page d'accueil, dans <em>Conseils aux nouveaux venus</em> - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre."
 
-#: mod/admin.php:1417
-msgid "Verify SSL"
-msgstr "Vérifier SSL"
+#: mod/newmember.php:21
+msgid "Go to Your Settings"
+msgstr "Éditer vos Réglages"
 
-#: mod/admin.php:1417
+#: mod/newmember.php:21
 msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you"
-" cannot connect (at all) to self-signed SSL sites."
-msgstr "Si vous le souhaitez, vous pouvez activier la vérification stricte des certificats. Cela signifie que vous ne pourrez pas vous connecter (du tout) aux sites SSL munis d'un certificat auto-signé."
-
-#: mod/admin.php:1418
-msgid "Proxy user"
-msgstr "Utilisateur du proxy"
-
-#: mod/admin.php:1419
-msgid "Proxy URL"
-msgstr "URL du proxy"
-
-#: mod/admin.php:1420
-msgid "Network timeout"
-msgstr "Dépassement du délai d'attente du réseau"
-
-#: mod/admin.php:1420
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)."
-
-#: mod/admin.php:1421
-msgid "Maximum Load Average"
-msgstr "Plafond de la charge moyenne"
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr "Sur la page des <em>Réglages</em> -     changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre."
 
-#: mod/admin.php:1421
+#: mod/newmember.php:22
 msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Charge système maximale à partir de laquelle l'émission et la réception seront soumises à un délai supplémentaire. Par défaut, 50."
-
-#: mod/admin.php:1422
-msgid "Maximum Load Average (Frontend)"
-msgstr "Plafond de la charge moyenne (frontale)"
-
-#: mod/admin.php:1422
-msgid "Maximum system load before the frontend quits service - default 50."
-msgstr "Limite de charge système pour le rendu des pages - défaut 50."
-
-#: mod/admin.php:1423
-msgid "Minimal Memory"
-msgstr ""
+"Review the other settings, particularly the privacy settings. An unpublished"
+" directory listing is like having an unlisted phone number. In general, you "
+"should probably publish your listing - unless all of your friends and "
+"potential friends know exactly how to find you."
+msgstr "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver."
 
-#: mod/admin.php:1423
-msgid ""
-"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
-"default 0 (deactivated)."
-msgstr ""
+#: mod/newmember.php:24 mod/profperm.php:116 view/theme/frio/theme.php:272
+#: src/Content/Nav.php:153 src/Model/Profile.php:731 src/Model/Profile.php:864
+#: src/Model/Profile.php:897 src/Module/Contact.php:659
+#: src/Module/Contact.php:864
+msgid "Profile"
+msgstr "Profil"
 
-#: mod/admin.php:1424
-msgid "Maximum table size for optimization"
-msgstr "Limite de taille de table pour l'optimisation"
+#: mod/newmember.php:26 mod/profile_photo.php:248 mod/profiles.php:597
+msgid "Upload Profile Photo"
+msgstr "Téléverser une photo de profil"
 
-#: mod/admin.php:1424
+#: mod/newmember.php:26
 msgid ""
-"Maximum table size (in MB) for the automatic optimization. Enter -1 to "
-"disable it."
-msgstr ""
+"Upload a profile photo if you have not done so already. Studies have shown "
+"that people with real photos of themselves are ten times more likely to make"
+" friends than people who do not."
+msgstr "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis."
 
-#: mod/admin.php:1425
-msgid "Minimum level of fragmentation"
-msgstr "Seuil de fragmentation"
+#: mod/newmember.php:27
+msgid "Edit Your Profile"
+msgstr "Éditer votre Profil"
 
-#: mod/admin.php:1425
+#: mod/newmember.php:27
 msgid ""
-"Minimum fragmenation level to start the automatic optimization - default "
-"value is 30%."
-msgstr "Seuil de fragmentation pour que l'optimisation automatique se déclenche - défaut 30%."
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr "Éditez votre profil <strong>par défaut</strong> à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus."
 
-#: mod/admin.php:1427
-msgid "Periodical check of global contacts"
-msgstr "Vérification périodique des contacts globaux"
+#: mod/newmember.php:28
+msgid "Profile Keywords"
+msgstr "Mots-clés du profil"
 
-#: mod/admin.php:1427
+#: mod/newmember.php:28
 msgid ""
-"If enabled, the global contacts are checked periodically for missing or "
-"outdated data and the vitality of the contacts and servers."
-msgstr "Si activé, les données manquantes et obsolètes et la vitalité des contacts et des serveurs seront vérifiées périodiquement dans les contacts globaux."
-
-#: mod/admin.php:1428
-msgid "Days between requery"
-msgstr "Nombre de jours entre les requêtes"
+"Set some public keywords for your default profile which describe your "
+"interests. We may be able to find other people with similar interests and "
+"suggest friendships."
+msgstr "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent."
 
-#: mod/admin.php:1428
-msgid "Number of days after which a server is requeried for his contacts."
-msgstr "Nombre de jours avant qu'une requête de contacts soient envoyée à nouveau à un serveur."
+#: mod/newmember.php:30
+msgid "Connecting"
+msgstr "Connexions"
 
-#: mod/admin.php:1429
-msgid "Discover contacts from other servers"
-msgstr "Découvrir des contacts des autres serveurs"
+#: mod/newmember.php:36
+msgid "Importing Emails"
+msgstr "Importer courriels"
 
-#: mod/admin.php:1429
+#: mod/newmember.php:36
 msgid ""
-"Periodically query other servers for contacts. You can choose between "
-"'users': the users on the remote system, 'Global Contacts': active contacts "
-"that are known on the system. The fallback is meant for Redmatrix servers "
-"and older friendica servers, where global contacts weren't available. The "
-"fallback increases the server load, so the recommened setting is 'Users, "
-"Global Contacts'."
-msgstr ""
-
-#: mod/admin.php:1430
-msgid "Timeframe for fetching global contacts"
-msgstr "Fréquence de récupération des contacts globaux"
-
-#: mod/admin.php:1430
-msgid ""
-"When the discovery is activated, this value defines the timeframe for the "
-"activity of the global contacts that are fetched from other servers."
-msgstr "Quand la découverte de contacts est activée, cette valeur détermine la fréquence de récupération des données des contacts globaux présents sur d'autres serveurs."
-
-#: mod/admin.php:1431
-msgid "Search the local directory"
-msgstr "Chercher dans le répertoire local"
-
-#: mod/admin.php:1431
-msgid ""
-"Search the local directory instead of the global directory. When searching "
-"locally, every search will be executed on the global directory in the "
-"background. This improves the search results when the search is repeated."
-msgstr "Cherche dans le répertoire local au lieu du répertoire local. Quand une recherche locale est effectuée, la même recherche est effectuée dans le répertoire global en tâche de fond. Cela améliore les résultats de la recherche si elle est réitérée."
-
-#: mod/admin.php:1433
-msgid "Publish server information"
-msgstr "Publier les informations du serveur"
-
-#: mod/admin.php:1433
-msgid ""
-"If enabled, general server and usage data will be published. The data "
-"contains the name and version of the server, number of users with public "
-"profiles, number of posts and the activated protocols and connectors. See <a"
-" href='http://the-federation.info/'>the-federation.info</a> for details."
-msgstr "Si cette option est activée, des informations sur le serveur et son utilisation seront publiées. Ces informations incluent le nom et la version du serveur, le nombre d’utilisateurs avec des profils publics, le nombre de messages, les protocoles supportés et les connecteurs disponibles. Plus de détails sur <a href='http://the-federation.info/'>the-federation.info</a>."
-
-#: mod/admin.php:1435
-msgid "Check upstream version"
-msgstr "Mises à jour"
-
-#: mod/admin.php:1435
-msgid ""
-"Enables checking for new Friendica versions at github. If there is a new "
-"version, you will be informed in the admin panel overview."
-msgstr "Permet de vérifier la présence de nouvelles versions de Friendica sur github. Si une nouvelle version est disponible, vous recevrez une notification dans l'interface d'administration."
-
-#: mod/admin.php:1436
-msgid "Suppress Tags"
-msgstr "Masquer les tags"
-
-#: mod/admin.php:1436
-msgid "Suppress showing a list of hashtags at the end of the posting."
-msgstr "Ne pas afficher la liste des hashtags à la fin d’un message."
-
-#: mod/admin.php:1437
-msgid "Clean database"
-msgstr ""
-
-#: mod/admin.php:1437
-msgid ""
-"Remove old remote items, orphaned database records and old content from some"
-" other helper tables."
-msgstr ""
-
-#: mod/admin.php:1438
-msgid "Lifespan of remote items"
-msgstr ""
-
-#: mod/admin.php:1438
-msgid ""
-"When the database cleanup is enabled, this defines the days after which "
-"remote items will be deleted. Own items, and marked or filed items are "
-"always kept. 0 disables this behaviour."
-msgstr ""
-
-#: mod/admin.php:1439
-msgid "Lifespan of unclaimed items"
-msgstr ""
-
-#: mod/admin.php:1439
-msgid ""
-"When the database cleanup is enabled, this defines the days after which "
-"unclaimed remote items (mostly content from the relay) will be deleted. "
-"Default value is 90 days. Defaults to the general lifespan value of remote "
-"items if set to 0."
-msgstr ""
-
-#: mod/admin.php:1440
-msgid "Path to item cache"
-msgstr "Chemin vers le cache des objets."
-
-#: mod/admin.php:1440
-msgid "The item caches buffers generated bbcode and external images."
-msgstr ""
-
-#: mod/admin.php:1441
-msgid "Cache duration in seconds"
-msgstr "Durée du cache en secondes"
-
-#: mod/admin.php:1441
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One"
-" day). To disable the item cache, set the value to -1."
-msgstr "Combien de temps les fichiers de cache doivent être maintenu? La valeur par défaut est 86400 secondes (une journée). Pour désactiver le cache de l'item, définissez la valeur à -1."
-
-#: mod/admin.php:1442
-msgid "Maximum numbers of comments per post"
-msgstr "Nombre maximum de commentaires par publication"
-
-#: mod/admin.php:1442
-msgid "How much comments should be shown for each post? Default value is 100."
-msgstr "Combien de commentaires doivent être affichés pour chaque publication? Valeur par défaut: 100."
-
-#: mod/admin.php:1443
-msgid "Temp path"
-msgstr "Chemin des fichiers temporaires"
-
-#: mod/admin.php:1443
-msgid ""
-"If you have a restricted system where the webserver can't access the system "
-"temp path, enter another path here."
-msgstr "Si vous n'avez pas la possibilité d'avoir accès au répertoire temp, entrez un autre répertoire ici."
-
-#: mod/admin.php:1444
-msgid "Base path to installation"
-msgstr "Chemin de base de l'installation"
-
-#: mod/admin.php:1444
-msgid ""
-"If the system cannot detect the correct path to your installation, enter the"
-" correct path here. This setting should only be set if you are using a "
-"restricted system and symbolic links to your webroot."
-msgstr "Si le système ne peut pas détecter le chemin de l'installation, entrez le bon chemin ici. Ce paramètre doit être utilisé uniquement si vous avez des accès restreints à votre système et que vous n'avez qu'un lien symbolique vers le répertoire web."
-
-#: mod/admin.php:1445
-msgid "Disable picture proxy"
-msgstr "Désactiver le proxy image "
-
-#: mod/admin.php:1445
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
-msgstr "Le proxy d'image augmente les performances et l'intimité. Il ne devrait pas être utilisé sur des systèmes avec une très faible bande passante."
-
-#: mod/admin.php:1446
-msgid "Only search in tags"
-msgstr "Rechercher seulement dans les étiquettes"
-
-#: mod/admin.php:1446
-msgid "On large systems the text search can slow down the system extremely."
-msgstr "La recherche textuelle peut ralentir considérablement les systèmes de grande taille."
-
-#: mod/admin.php:1448
-msgid "New base url"
-msgstr "Nouvelle URL de base"
-
-#: mod/admin.php:1448
-msgid ""
-"Change base url for this server. Sends relocate message to all Friendica and"
-" Diaspora* contacts of all users."
-msgstr ""
-
-#: mod/admin.php:1450
-msgid "RINO Encryption"
-msgstr "Chiffrement RINO"
-
-#: mod/admin.php:1450
-msgid "Encryption layer between nodes."
-msgstr "Couche de chiffrement entre les nœuds du réseau."
-
-#: mod/admin.php:1450
-msgid "Enabled"
-msgstr ""
-
-#: mod/admin.php:1452
-msgid "Maximum number of parallel workers"
-msgstr "Nombre maximum de processus simultanés"
-
-#: mod/admin.php:1452
-msgid ""
-"On shared hosters set this to 2. On larger systems, values of 10 are great. "
-"Default value is 4."
-msgstr "Sur un hébergement partagé, mettez 2. Sur des serveurs plus puissants, 10 est une bonne idée. Le défaut est 4."
-
-#: mod/admin.php:1453
-msgid "Don't use 'proc_open' with the worker"
-msgstr "Ne pas utiliser 'proc_open' pour les tâches de fond"
-
-#: mod/admin.php:1453
-msgid ""
-"Enable this if your system doesn't allow the use of 'proc_open'. This can "
-"happen on shared hosters. If this is enabled you should increase the "
-"frequency of worker calls in your crontab."
-msgstr "Activez cette option si votre système ne permet pas d'utiliser 'proc_open'. Cela peut être le cas sur les hébergements partagés. Si vous activez cette option, vous devriez augmenter la fréquence d'appel du \"worker\" dans crontab."
-
-#: mod/admin.php:1454
-msgid "Enable fastlane"
-msgstr ""
-
-#: mod/admin.php:1454
-msgid ""
-"When enabed, the fastlane mechanism starts an additional worker if processes"
-" with higher priority are blocked by processes of lower priority."
-msgstr ""
-
-#: mod/admin.php:1455
-msgid "Enable frontend worker"
-msgstr ""
-
-#: mod/admin.php:1455
-#, php-format
-msgid ""
-"When enabled the Worker process is triggered when backend access is "
-"performed \\x28e.g. messages being delivered\\x29. On smaller sites you "
-"might want to call %s/worker on a regular basis via an external cron job. "
-"You should only enable this option if you cannot utilize cron/scheduled jobs"
-" on your server."
-msgstr ""
-
-#: mod/admin.php:1457
-msgid "Subscribe to relay"
-msgstr ""
-
-#: mod/admin.php:1457
-msgid ""
-"Enables the receiving of public posts from the relay. They will be included "
-"in the search, subscribed tags and on the global community page."
-msgstr ""
-
-#: mod/admin.php:1458
-msgid "Relay server"
-msgstr ""
-
-#: mod/admin.php:1458
-msgid ""
-"Address of the relay server where public posts should be send to. For "
-"example https://relay.diasp.org"
-msgstr ""
-
-#: mod/admin.php:1459
-msgid "Direct relay transfer"
-msgstr ""
-
-#: mod/admin.php:1459
-msgid ""
-"Enables the direct transfer to other servers without using the relay servers"
-msgstr ""
-
-#: mod/admin.php:1460
-msgid "Relay scope"
-msgstr ""
-
-#: mod/admin.php:1460
-msgid ""
-"Can be 'all' or 'tags'. 'all' means that every public post should be "
-"received. 'tags' means that only posts with selected tags should be "
-"received."
-msgstr ""
-
-#: mod/admin.php:1460
-msgid "all"
-msgstr ""
-
-#: mod/admin.php:1460
-msgid "tags"
-msgstr ""
-
-#: mod/admin.php:1461
-msgid "Server tags"
-msgstr ""
-
-#: mod/admin.php:1461
-msgid "Comma separated list of tags for the 'tags' subscription."
-msgstr ""
-
-#: mod/admin.php:1462
-msgid "Allow user tags"
-msgstr ""
-
-#: mod/admin.php:1462
-msgid ""
-"If enabled, the tags from the saved searches will used for the 'tags' "
-"subscription in addition to the 'relay_server_tags'."
-msgstr ""
-
-#: mod/admin.php:1490
-msgid "Update has been marked successful"
-msgstr "Mise-à-jour validée comme 'réussie'"
-
-#: mod/admin.php:1497
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr "La structure de base de données pour la mise à jour %s a été appliquée avec succès."
-
-#: mod/admin.php:1500
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
-msgstr "L'exécution de la mise à jour %s pour la structure de base de données a échoué avec l'erreur: %s"
-
-#: mod/admin.php:1513
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr "L'exécution %s a échoué avec l'erreur: %s"
-
-#: mod/admin.php:1515
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Mise-à-jour %s appliquée avec succès."
-
-#: mod/admin.php:1518
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "La mise-à-jour %s n'a pas retourné de détails. Impossible de savoir si elle a réussi."
-
-#: mod/admin.php:1521
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
-msgstr "Il n'y avait aucune fonction supplémentaire de mise à jour %s qui devait être appelé"
-
-#: mod/admin.php:1541
-msgid "No failed updates."
-msgstr "Pas de mises-à-jour échouées."
-
-#: mod/admin.php:1542
-msgid "Check database structure"
-msgstr "Vérifier la structure de la base de données"
-
-#: mod/admin.php:1547
-msgid "Failed Updates"
-msgstr "Mises-à-jour échouées"
-
-#: mod/admin.php:1548
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails."
-
-#: mod/admin.php:1549
-msgid "Mark success (if update was manually applied)"
-msgstr "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)"
-
-#: mod/admin.php:1550
-msgid "Attempt to execute this update step automatically"
-msgstr "Tenter d'éxecuter cette étape automatiquement"
-
-#: mod/admin.php:1589
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tthe administrator of %2$s has set up an account for you."
-msgstr "\n\t\t\tChère/Cher %1$s,\n\t\t\t\tL’administrateur de %2$s vous a ouvert un compte."
-
-#: mod/admin.php:1592
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%1$s\n"
-"\t\t\tLogin Name:\t\t%2$s\n"
-"\t\t\tPassword:\t\t%3$s\n"
-"\n"
-"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\t\tin.\n"
-"\n"
-"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\t\tthan that.\n"
-"\n"
-"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\t\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n"
-"\n"
-"\t\t\tThank you and welcome to %4$s."
-msgstr ""
-
-#: mod/admin.php:1626 src/Model/User.php:663
-#, php-format
-msgid "Registration details for %s"
-msgstr "Détails d'inscription pour %s"
-
-#: mod/admin.php:1636
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s utilisateur a (dé)bloqué"
-msgstr[1] "%s utilisateurs ont (dé)bloqué"
-
-#: mod/admin.php:1642
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s utilisateur supprimé"
-msgstr[1] "%s utilisateurs supprimés"
-
-#: mod/admin.php:1689
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Utilisateur '%s' supprimé"
-
-#: mod/admin.php:1697
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Utilisateur '%s' débloqué"
-
-#: mod/admin.php:1697
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Utilisateur '%s' bloqué"
-
-#: mod/admin.php:1754 mod/settings.php:1058
-msgid "Normal Account Page"
-msgstr "Compte normal"
-
-#: mod/admin.php:1755 mod/settings.php:1062
-msgid "Soapbox Page"
-msgstr "Compte \"boîte à savon\""
-
-#: mod/admin.php:1756 mod/settings.php:1066
-msgid "Public Forum"
-msgstr "Forum public"
-
-#: mod/admin.php:1757 mod/settings.php:1070
-msgid "Automatic Friend Page"
-msgstr "Compte d' \"amitié automatique\""
-
-#: mod/admin.php:1758
-msgid "Private Forum"
-msgstr ""
-
-#: mod/admin.php:1761 mod/settings.php:1042
-msgid "Personal Page"
-msgstr "Page personnelle"
-
-#: mod/admin.php:1762 mod/settings.php:1046
-msgid "Organisation Page"
-msgstr ""
-
-#: mod/admin.php:1763 mod/settings.php:1050
-msgid "News Page"
-msgstr "Page d'informations"
-
-#: mod/admin.php:1764 mod/settings.php:1054
-msgid "Community Forum"
-msgstr ""
-
-#: mod/admin.php:1811 mod/admin.php:1822 mod/admin.php:1835 mod/admin.php:1853
-#: src/Content/ContactSelector.php:82
-msgid "Email"
-msgstr "Courriel"
-
-#: mod/admin.php:1811 mod/admin.php:1835
-msgid "Register date"
-msgstr "Date d'inscription"
-
-#: mod/admin.php:1811 mod/admin.php:1835
-msgid "Last login"
-msgstr "Dernière connexion"
-
-#: mod/admin.php:1811 mod/admin.php:1835
-msgid "Last item"
-msgstr "Dernier élément"
-
-#: mod/admin.php:1811
-msgid "Type"
-msgstr ""
-
-#: mod/admin.php:1818
-msgid "Add User"
-msgstr "Ajouter l'utilisateur"
-
-#: mod/admin.php:1820
-msgid "User registrations waiting for confirm"
-msgstr "Inscriptions d'utilisateurs en attente de confirmation"
-
-#: mod/admin.php:1821
-msgid "User waiting for permanent deletion"
-msgstr "Utilisateur en attente de suppression définitive"
-
-#: mod/admin.php:1822
-msgid "Request date"
-msgstr "Date de la demande"
-
-#: mod/admin.php:1823
-msgid "No registrations."
-msgstr "Pas d'inscriptions."
-
-#: mod/admin.php:1824
-msgid "Note from the user"
-msgstr ""
-
-#: mod/admin.php:1825 mod/notifications.php:178 mod/notifications.php:262
-msgid "Approve"
-msgstr "Approuver"
-
-#: mod/admin.php:1826
-msgid "Deny"
-msgstr "Rejetter"
-
-#: mod/admin.php:1830
-msgid "Site admin"
-msgstr "Administration du Site"
+"Enter your email access information on your Connector Settings page if you "
+"wish to import and interact with friends or mailing lists from your email "
+"INBOX"
+msgstr "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception."
 
-#: mod/admin.php:1831
-msgid "Account expired"
-msgstr "Compte expiré"
+#: mod/newmember.php:39
+msgid "Go to Your Contacts Page"
+msgstr "Consulter vos Contacts"
 
-#: mod/admin.php:1834
-msgid "New User"
-msgstr "Nouvel utilisateur"
+#: mod/newmember.php:39
+msgid ""
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the <em>Add New Contact</em> dialog."
+msgstr "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire <em>Ajouter un nouveau contact</em>."
 
-#: mod/admin.php:1835
-msgid "Deleted since"
-msgstr "Supprimé depuis"
+#: mod/newmember.php:40
+msgid "Go to Your Site's Directory"
+msgstr "Consulter l'Annuaire de votre Site"
 
-#: mod/admin.php:1840
+#: mod/newmember.php:40
 msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement effacé!\\n\\nÊtes-vous certain?"
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien <em>Relier</em> ou <em>Suivre</em> sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité."
 
-#: mod/admin.php:1841
-msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?"
+#: mod/newmember.php:41
+msgid "Finding New People"
+msgstr "Trouver de nouvelles personnes"
 
-#: mod/admin.php:1851
-msgid "Name of the new user."
-msgstr "Nom du nouvel utilisateur."
+#: mod/newmember.php:41
+msgid ""
+"On the side panel of the Contacts page are several tools to find new "
+"friends. We can match people by interest, look up people by name or "
+"interest, and provide suggestions based on network relationships. On a brand"
+" new site, friend suggestions will usually begin to be populated within 24 "
+"hours."
+msgstr "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures."
 
-#: mod/admin.php:1852
-msgid "Nickname"
-msgstr "Pseudo"
+#: mod/newmember.php:43 src/Model/Group.php:405
+msgid "Groups"
+msgstr "Groupes"
 
-#: mod/admin.php:1852
-msgid "Nickname of the new user."
-msgstr "Pseudo du nouvel utilisateur."
+#: mod/newmember.php:45
+msgid "Group Your Contacts"
+msgstr "Grouper vos contacts"
 
-#: mod/admin.php:1853
-msgid "Email address of the new user."
-msgstr "Adresse mail du nouvel utilisateur."
+#: mod/newmember.php:45
+msgid ""
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with"
+" each group privately on your Network page."
+msgstr "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau."
 
-#: mod/admin.php:1895
-#, php-format
-msgid "Addon %s disabled."
-msgstr ""
+#: mod/newmember.php:48
+msgid "Why Aren't My Posts Public?"
+msgstr "Pourquoi mes éléments ne sont pas publics ?"
 
-#: mod/admin.php:1899
-#, php-format
-msgid "Addon %s enabled."
-msgstr ""
+#: mod/newmember.php:48
+msgid ""
+"Friendica respects your privacy. By default, your posts will only show up to"
+" people you've added as friends. For more information, see the help section "
+"from the link above."
+msgstr "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus."
 
-#: mod/admin.php:1909 mod/admin.php:2158
-msgid "Disable"
-msgstr "Désactiver"
+#: mod/newmember.php:52
+msgid "Getting Help"
+msgstr "Obtenir de l'aide"
 
-#: mod/admin.php:1912 mod/admin.php:2161
-msgid "Enable"
-msgstr "Activer"
+#: mod/newmember.php:54
+msgid "Go to the Help Section"
+msgstr "Aller à la section Aide"
 
-#: mod/admin.php:1934 mod/admin.php:2203
-msgid "Toggle"
-msgstr "Activer/Désactiver"
+#: mod/newmember.php:54
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Nos pages d'<strong>aide</strong> peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources."
 
-#: mod/admin.php:1942 mod/admin.php:2212
-msgid "Author: "
-msgstr "Auteur : "
+#: mod/notes.php:42 src/Model/Profile.php:947
+msgid "Personal Notes"
+msgstr "Notes personnelles"
 
-#: mod/admin.php:1943 mod/admin.php:2213
-msgid "Maintainer: "
-msgstr "Mainteneur : "
+#: mod/notifications.php:37
+msgid "Invalid request identifier."
+msgstr "Identifiant de demande invalide."
 
-#: mod/admin.php:1995
-msgid "Reload active addons"
-msgstr ""
+#: mod/notifications.php:59 mod/notifications.php:183
+#: mod/notifications.php:268 src/Module/Contact.php:626
+#: src/Module/Contact.php:820 src/Module/Contact.php:1080
+msgid "Ignore"
+msgstr "Ignorer"
 
-#: mod/admin.php:2000
-#, php-format
-msgid ""
-"There are currently no addons available on your node. You can find the "
-"official addon repository at %1$s and might find other interesting addons in"
-" the open addon registry at %2$s"
-msgstr ""
+#: mod/notifications.php:92 src/Content/Nav.php:243
+msgid "Notifications"
+msgstr "Notifications"
 
-#: mod/admin.php:2120
-msgid "No themes found."
-msgstr "Aucun thème trouvé."
+#: mod/notifications.php:104
+msgid "Network Notifications"
+msgstr "Notifications du réseau"
 
-#: mod/admin.php:2194
-msgid "Screenshot"
-msgstr "Capture d'écran"
+#: mod/notifications.php:109 mod/notify.php:81
+msgid "System Notifications"
+msgstr "Notifications du système"
 
-#: mod/admin.php:2248
-msgid "Reload active themes"
-msgstr "Recharger les thèmes actifs"
+#: mod/notifications.php:114
+msgid "Personal Notifications"
+msgstr "Notifications personnelles"
 
-#: mod/admin.php:2253
-#, php-format
-msgid "No themes found on the system. They should be placed in %1$s"
-msgstr ""
+#: mod/notifications.php:119
+msgid "Home Notifications"
+msgstr "Notifications de page d'accueil"
 
-#: mod/admin.php:2254
-msgid "[Experimental]"
-msgstr "[Expérimental]"
+#: mod/notifications.php:139
+msgid "Show unread"
+msgstr "Afficher non-lus"
 
-#: mod/admin.php:2255
-msgid "[Unsupported]"
-msgstr "[Non supporté]"
+#: mod/notifications.php:139
+msgid "Show all"
+msgstr "Tout afficher"
 
-#: mod/admin.php:2279
-msgid "Log settings updated."
-msgstr "Réglages des journaux mis-à-jour."
+#: mod/notifications.php:150
+msgid "Show Ignored Requests"
+msgstr "Voir les demandes ignorées"
 
-#: mod/admin.php:2311
-msgid "PHP log currently enabled."
-msgstr "Log PHP actuellement activé."
+#: mod/notifications.php:150
+msgid "Hide Ignored Requests"
+msgstr "Cacher les demandes ignorées"
 
-#: mod/admin.php:2313
-msgid "PHP log currently disabled."
-msgstr "Log PHP actuellement desactivé."
+#: mod/notifications.php:163 mod/notifications.php:240
+msgid "Notification type:"
+msgstr ""
 
-#: mod/admin.php:2322
-msgid "Clear"
-msgstr "Effacer"
+#: mod/notifications.php:166
+msgid "Suggested by:"
+msgstr ""
 
-#: mod/admin.php:2326
-msgid "Enable Debugging"
-msgstr "Activer le déboggage"
+#: mod/notifications.php:178 mod/notifications.php:257
+#: src/Module/Contact.php:634
+msgid "Hide this contact from others"
+msgstr "Cacher ce contact aux autres"
 
-#: mod/admin.php:2327
-msgid "Log file"
-msgstr "Fichier de journaux"
+#: mod/notifications.php:200
+msgid "Claims to be known to you: "
+msgstr "Prétend que vous le connaissez : "
 
-#: mod/admin.php:2327
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica."
+#: mod/notifications.php:201
+msgid "yes"
+msgstr "oui"
 
-#: mod/admin.php:2328
-msgid "Log level"
-msgstr "Niveau de journalisaton"
+#: mod/notifications.php:201
+msgid "no"
+msgstr "non"
 
-#: mod/admin.php:2330
-msgid "PHP logging"
-msgstr "Log PHP"
+#: mod/notifications.php:202 mod/notifications.php:206
+msgid "Shall your connection be bidirectional or not?"
+msgstr "Souhaitez vous que votre connexion soit bi-directionnelle ?"
 
-#: mod/admin.php:2331
+#: mod/notifications.php:203 mod/notifications.php:207
+#, php-format
 msgid ""
-"To enable logging of PHP errors and warnings you can add the following to "
-"the .htconfig.php file of your installation. The filename set in the "
-"'error_log' line is relative to the friendica top-level directory and must "
-"be writeable by the web server. The option '1' for 'log_errors' and "
-"'display_errors' is to enable these options, set to '0' to disable them."
+"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
+"also receive updates from them in your news feed."
 msgstr ""
 
-#: mod/admin.php:2362
+#: mod/notifications.php:204
 #, php-format
 msgid ""
-"Error trying to open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see "
-"if file %1$s exist and is readable."
+"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
+" will not receive updates from them in your news feed."
 msgstr ""
 
-#: mod/admin.php:2366
+#: mod/notifications.php:208
 #, php-format
 msgid ""
-"Couldn't open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see if file"
-" %1$s is readable."
+"Accepting %s as a sharer allows them to subscribe to your posts, but you "
+"will not receive updates from them in your news feed."
 msgstr ""
 
-#: mod/admin.php:2457 mod/admin.php:2458 mod/settings.php:767
-msgid "Off"
-msgstr "Éteint"
+#: mod/notifications.php:219
+msgid "Friend"
+msgstr "Ami"
 
-#: mod/admin.php:2457 mod/admin.php:2458 mod/settings.php:767
-msgid "On"
-msgstr "Allumé"
+#: mod/notifications.php:220
+msgid "Sharer"
+msgstr "Initiateur du partage"
+
+#: mod/notifications.php:220
+msgid "Subscriber"
+msgstr ""
+
+#: mod/notifications.php:263 src/Model/Profile.php:534
+#: src/Module/Contact.php:91
+msgid "Network:"
+msgstr "Réseau"
+
+#: mod/notifications.php:276
+msgid "No introductions."
+msgstr "Aucune demande d'introduction."
 
-#: mod/admin.php:2458
+#: mod/notifications.php:310
 #, php-format
-msgid "Lock feature %s"
-msgstr "Verouiller la fonctionnalité %s"
+msgid "No more %s notifications."
+msgstr "Aucune notification de %s"
 
-#: mod/admin.php:2466
-msgid "Manage Additional Features"
-msgstr "Gérer les fonctionnalités avancées"
+#: mod/notify.php:77
+msgid "No more system notifications."
+msgstr "Pas plus de notifications système."
 
-#: mod/dfrn_confirm.php:74 mod/profiles.php:39 mod/profiles.php:149
-#: mod/profiles.php:196 mod/profiles.php:525
-msgid "Profile not found."
-msgstr "Profil introuvable."
+#: mod/openid.php:31
+msgid "OpenID protocol error. No ID returned."
+msgstr "Erreur de protocole OpenID. Pas d'ID en retour."
 
-#: mod/dfrn_confirm.php:130
+#: mod/openid.php:67
 msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "Ceci peut se produire lorsque le contact a été requis par les deux personnes et a déjà été approuvé."
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site."
 
-#: mod/dfrn_confirm.php:240
-msgid "Response from remote site was not understood."
-msgstr "Réponse du site distant incomprise."
+#: mod/openid.php:117 src/Module/Login.php:92 src/Module/Login.php:142
+msgid "Login failed."
+msgstr "Échec de connexion."
 
-#: mod/dfrn_confirm.php:247 mod/dfrn_confirm.php:252
-msgid "Unexpected response from remote site: "
-msgstr "Réponse inattendue du site distant : "
+#: mod/ostatus_subscribe.php:22
+msgid "Subscribing to OStatus contacts"
+msgstr "Inscription aux contacts OStatus"
 
-#: mod/dfrn_confirm.php:261
-msgid "Confirmation completed successfully."
-msgstr "Confirmation achevée avec succès."
+#: mod/ostatus_subscribe.php:34
+msgid "No contact provided."
+msgstr "Pas de contact fourni."
 
-#: mod/dfrn_confirm.php:273
-msgid "Temporary failure. Please wait and try again."
-msgstr "Échec temporaire. Merci de recommencer ultérieurement."
+#: mod/ostatus_subscribe.php:41
+msgid "Couldn't fetch information for contact."
+msgstr "Impossible de récupérer les informations pour ce contact."
 
-#: mod/dfrn_confirm.php:276
-msgid "Introduction failed or was revoked."
-msgstr "Introduction échouée ou annulée."
+#: mod/ostatus_subscribe.php:51
+msgid "Couldn't fetch friends for contact."
+msgstr "Impossible de récupérer les amis de ce contact."
 
-#: mod/dfrn_confirm.php:281
-msgid "Remote site reported: "
-msgstr "Alerte du site distant : "
+#: mod/ostatus_subscribe.php:65 mod/repair_ostatus.php:52
+msgid "Done"
+msgstr "Terminé"
 
-#: mod/dfrn_confirm.php:392
-msgid "Unable to set contact photo."
-msgstr "Impossible de définir la photo du contact."
+#: mod/ostatus_subscribe.php:79
+msgid "success"
+msgstr "réussite"
+
+#: mod/ostatus_subscribe.php:81
+msgid "failed"
+msgstr "échec"
 
-#: mod/dfrn_confirm.php:450
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Pas d'utilisateur trouvé pour '%s' "
+#: mod/ostatus_subscribe.php:84 src/Object/Post.php:271
+msgid "ignored"
+msgstr "ignoré"
 
-#: mod/dfrn_confirm.php:460
-msgid "Our site encryption key is apparently messed up."
-msgstr "Notre clé de chiffrement de site est apparemment corrompue."
+#: mod/ostatus_subscribe.php:89 mod/repair_ostatus.php:58
+msgid "Keep this window open until done."
+msgstr "Veuillez garder cette fenêtre ouverte jusqu'à la fin."
 
-#: mod/dfrn_confirm.php:471
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "URL de site absente ou indéchiffrable."
+#: mod/photos.php:114 src/Model/Profile.php:908
+msgid "Photo Albums"
+msgstr "Albums photo"
 
-#: mod/dfrn_confirm.php:487
-msgid "Contact record was not found for you on our site."
-msgstr "Pas d'entrée pour ce contact sur notre site."
+#: mod/photos.php:115 mod/photos.php:1708
+msgid "Recent Photos"
+msgstr "Photos récentes"
 
-#: mod/dfrn_confirm.php:501
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "La clé publique du site ne se trouve pas dans l'enregistrement du contact pour l'URL %s."
+#: mod/photos.php:118 mod/photos.php:1227 mod/photos.php:1710
+msgid "Upload New Photos"
+msgstr "Téléverser de nouvelles photos"
 
-#: mod/dfrn_confirm.php:517
-msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr "L'identifiant fourni par votre système fait doublon sur le notre. Cela peut fonctionner si vous réessayez."
+#: mod/photos.php:136 mod/settings.php:54
+msgid "everybody"
+msgstr "tout le monde"
 
-#: mod/dfrn_confirm.php:528
-msgid "Unable to set your contact credentials on our system."
-msgstr "Impossible de vous définir des permissions sur notre système."
+#: mod/photos.php:192
+msgid "Contact information unavailable"
+msgstr "Informations de contact indisponibles"
 
-#: mod/dfrn_confirm.php:583
-msgid "Unable to update your contact profile details on our system"
-msgstr "Impossible de mettre les détails de votre profil à jour sur notre système"
+#: mod/photos.php:211
+msgid "Album not found."
+msgstr "Album introuvable."
 
-#: mod/dfrn_confirm.php:613 mod/dfrn_request.php:564
-#: src/Model/Contact.php:1578
-msgid "[Name Withheld]"
-msgstr "[Nom non-publié]"
+#: mod/photos.php:240 mod/photos.php:253 mod/photos.php:1178
+msgid "Delete Album"
+msgstr "Effacer l'album"
 
-#: mod/dfrn_request.php:94
-msgid "This introduction has already been accepted."
-msgstr "Cette introduction a déjà été acceptée."
+#: mod/photos.php:251
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?"
 
-#: mod/dfrn_request.php:112 mod/dfrn_request.php:355
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "L'emplacement du profil est invalide ou ne contient pas de profil valide."
+#: mod/photos.php:313 mod/photos.php:325 mod/photos.php:1453
+msgid "Delete Photo"
+msgstr "Effacer la photo"
 
-#: mod/dfrn_request.php:116 mod/dfrn_request.php:359
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Attention: l'emplacement du profil n'a pas de nom identifiable."
+#: mod/photos.php:323
+msgid "Do you really want to delete this photo?"
+msgstr "Voulez-vous vraiment supprimer cette photo ?"
 
-#: mod/dfrn_request.php:119 mod/dfrn_request.php:362
-msgid "Warning: profile location has no profile photo."
-msgstr "Attention: l'emplacement du profil n'a pas de photo de profil."
+#: mod/photos.php:680
+msgid "a photo"
+msgstr "une photo"
 
-#: mod/dfrn_request.php:123 mod/dfrn_request.php:366
+#: mod/photos.php:680
 #, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] "%d paramètre requis n'a pas été trouvé à l'endroit indiqué"
-msgstr[1] "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué"
-
-#: mod/dfrn_request.php:162
-msgid "Introduction complete."
-msgstr "Phase d'introduction achevée."
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s a été étiqueté dans %2$s par %3$s"
 
-#: mod/dfrn_request.php:199
-msgid "Unrecoverable protocol error."
-msgstr "Erreur de protocole non-récupérable."
+#: mod/photos.php:776 mod/photos.php:779 mod/photos.php:808
+#: mod/profile_photo.php:153 mod/wall_upload.php:196
+#, php-format
+msgid "Image exceeds size limit of %s"
+msgstr "L'image dépasse la taille limite de %s"
 
-#: mod/dfrn_request.php:226
-msgid "Profile unavailable."
-msgstr "Profil indisponible."
+#: mod/photos.php:782
+msgid "Image upload didn't complete, please try again"
+msgstr ""
 
-#: mod/dfrn_request.php:248
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s a reçu trop de demandes d'introduction aujourd'hui."
+#: mod/photos.php:785
+msgid "Image file is missing"
+msgstr ""
 
-#: mod/dfrn_request.php:249
-msgid "Spam protection measures have been invoked."
-msgstr "Des mesures de protection contre le spam ont été déclenchées."
+#: mod/photos.php:790
+msgid ""
+"Server can't accept new file upload at this time, please contact your "
+"administrator"
+msgstr ""
 
-#: mod/dfrn_request.php:250
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Les relations sont encouragées à attendre 24 heures pour recommencer."
+#: mod/photos.php:816
+msgid "Image file is empty."
+msgstr "Fichier image vide."
 
-#: mod/dfrn_request.php:276
-msgid "Invalid locator"
-msgstr "Localisateur invalide"
+#: mod/photos.php:831 mod/profile_photo.php:162 mod/wall_upload.php:210
+msgid "Unable to process image."
+msgstr "Impossible de traiter l'image."
 
-#: mod/dfrn_request.php:312
-msgid "You have already introduced yourself here."
-msgstr "Vous vous êtes déjà présenté ici."
+#: mod/photos.php:860 mod/profile_photo.php:307 mod/wall_upload.php:249
+msgid "Image upload failed."
+msgstr "Le téléversement de l'image a échoué."
 
-#: mod/dfrn_request.php:315
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Il semblerait que vous soyez déjà ami avec %s."
+#: mod/photos.php:948
+msgid "No photos selected"
+msgstr "Aucune photo sélectionnée"
 
-#: mod/dfrn_request.php:335
-msgid "Invalid profile URL."
-msgstr "URL de profil invalide."
+#: mod/photos.php:1045 mod/videos.php:301
+msgid "Access to this item is restricted."
+msgstr "Accès restreint à cet élément."
 
-#: mod/dfrn_request.php:341 src/Model/Contact.php:1276
-msgid "Disallowed profile URL."
-msgstr "URL de profil interdite."
+#: mod/photos.php:1099
+msgid "Upload Photos"
+msgstr "Téléverser des photos"
 
-#: mod/dfrn_request.php:435
-msgid "Your introduction has been sent."
-msgstr "Votre introduction a été envoyée."
+#: mod/photos.php:1103 mod/photos.php:1173
+msgid "New album name: "
+msgstr "Nom du nouvel album : "
 
-#: mod/dfrn_request.php:473
-msgid ""
-"Remote subscription can't be done for your network. Please subscribe "
-"directly on your system."
+#: mod/photos.php:1104
+msgid "or select existing album:"
 msgstr ""
 
-#: mod/dfrn_request.php:489
-msgid "Please login to confirm introduction."
-msgstr "Connectez-vous pour confirmer l'introduction."
+#: mod/photos.php:1105
+msgid "Do not show a status post for this upload"
+msgstr "Ne pas publier de notice de statut pour cet envoi"
 
-#: mod/dfrn_request.php:497
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Identité incorrecte actuellement connectée. Merci de vous connecter à <strong>ce</strong> profil."
+#: mod/photos.php:1121 mod/photos.php:1456 mod/settings.php:1222
+msgid "Show to Groups"
+msgstr "Montrer aux groupes"
 
-#: mod/dfrn_request.php:511 mod/dfrn_request.php:528
-msgid "Confirm"
-msgstr "Confirmer"
+#: mod/photos.php:1122 mod/photos.php:1457 mod/settings.php:1223
+msgid "Show to Contacts"
+msgstr "Montrer aux Contacts"
 
-#: mod/dfrn_request.php:523
-msgid "Hide this contact"
-msgstr "Cacher ce contact"
+#: mod/photos.php:1184
+msgid "Edit Album"
+msgstr "Éditer l'album"
 
-#: mod/dfrn_request.php:526
-#, php-format
-msgid "Welcome home %s."
-msgstr "Bienvenue chez vous, %s."
+#: mod/photos.php:1189
+msgid "Show Newest First"
+msgstr "Plus récent d'abord"
 
-#: mod/dfrn_request.php:527
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Merci de confirmer votre demande d'introduction auprès de %s."
+#: mod/photos.php:1191
+msgid "Show Oldest First"
+msgstr "Plus ancien d'abord"
 
-#: mod/dfrn_request.php:637
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:"
+#: mod/photos.php:1212 mod/photos.php:1693
+msgid "View Photo"
+msgstr "Voir la photo"
 
-#: mod/dfrn_request.php:640
-#, php-format
-msgid ""
-"If you are not yet a member of the free social web, <a href=\"%s\">follow "
-"this link to find a public Friendica site and join us today</a>."
-msgstr ""
+#: mod/photos.php:1253
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Interdit. L'accès à cet élément peut avoir été restreint."
 
-#: mod/dfrn_request.php:645
-msgid "Friend/Connection Request"
-msgstr "Requête de relation/amitié"
+#: mod/photos.php:1255
+msgid "Photo not available"
+msgstr "Photo indisponible"
 
-#: mod/dfrn_request.php:646
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@gnusocial.de"
-msgstr ""
+#: mod/photos.php:1330
+msgid "View photo"
+msgstr "Voir photo"
 
-#: mod/dfrn_request.php:651 src/Content/ContactSelector.php:79
-msgid "Friendica"
-msgstr "Friendica"
+#: mod/photos.php:1330
+msgid "Edit photo"
+msgstr "Éditer la photo"
 
-#: mod/dfrn_request.php:652
-msgid "GNU Social (Pleroma, Mastodon)"
-msgstr ""
+#: mod/photos.php:1331
+msgid "Use as profile photo"
+msgstr "Utiliser comme photo de profil"
 
-#: mod/dfrn_request.php:653
-msgid "Diaspora (Socialhome, Hubzilla)"
+#: mod/photos.php:1337 src/Object/Post.php:152
+msgid "Private Message"
+msgstr "Message privé"
+
+#: mod/photos.php:1357
+msgid "View Full Size"
+msgstr "Voir en taille réelle"
+
+#: mod/photos.php:1421
+msgid "Tags: "
+msgstr "Étiquettes :"
+
+#: mod/photos.php:1424
+msgid "[Select tags to remove]"
 msgstr ""
 
-#: mod/dfrn_request.php:654
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - merci de ne pas utiliser ce formulaire.   Entrez plutôt %s dans votre barre de recherche Diaspora."
+#: mod/photos.php:1439
+msgid "New album name"
+msgstr "Nom du nouvel album"
 
-#: mod/item.php:114
-msgid "Unable to locate original post."
-msgstr "Impossible de localiser la publication originale."
+#: mod/photos.php:1440
+msgid "Caption"
+msgstr "Titre"
 
-#: mod/item.php:274
-msgid "Empty post discarded."
-msgstr "Publication vide rejetée."
+#: mod/photos.php:1441
+msgid "Add a Tag"
+msgstr "Ajouter une étiquette"
 
-#: mod/item.php:804
-#, php-format
+#: mod/photos.php:1441
 msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "Ce message vous a été envoyé par %s, membre du réseau social Friendica."
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Exemples : @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances"
 
-#: mod/item.php:806
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Vous pouvez leur rendre visite sur %s"
+#: mod/photos.php:1442
+msgid "Do not rotate"
+msgstr "Pas de rotation"
 
-#: mod/item.php:807
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages."
+#: mod/photos.php:1443
+msgid "Rotate CW (right)"
+msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)"
 
-#: mod/item.php:811
-#, php-format
-msgid "%s posted an update."
-msgstr "%s a publié une mise à jour."
+#: mod/photos.php:1444
+msgid "Rotate CCW (left)"
+msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)"
 
-#: mod/notifications.php:37
-msgid "Invalid request identifier."
-msgstr "Identifiant de demande invalide."
+#: mod/photos.php:1478 src/Object/Post.php:300
+msgid "I like this (toggle)"
+msgstr "J'aime"
 
-#: mod/notifications.php:46 mod/notifications.php:182
-#: mod/notifications.php:229
-msgid "Discard"
-msgstr "Rejeter"
+#: mod/photos.php:1479 src/Object/Post.php:301
+msgid "I don't like this (toggle)"
+msgstr "Je n'aime pas"
 
-#: mod/notifications.php:98 src/Content/Nav.php:191
-msgid "Notifications"
-msgstr "Notifications"
+#: mod/photos.php:1494 mod/photos.php:1533 mod/photos.php:1593
+#: src/Module/Contact.php:1013 src/Object/Post.php:799
+msgid "This is you"
+msgstr "C'est vous"
 
-#: mod/notifications.php:107
-msgid "Network Notifications"
-msgstr "Notifications du réseau"
+#: mod/photos.php:1496 mod/photos.php:1535 mod/photos.php:1595
+#: src/Object/Post.php:405 src/Object/Post.php:801
+msgid "Comment"
+msgstr "Commenter"
 
-#: mod/notifications.php:119
-msgid "Personal Notifications"
-msgstr "Notifications personnelles"
+#: mod/photos.php:1627
+msgid "Map"
+msgstr "Carte"
+
+#: mod/photos.php:1699 mod/videos.php:378
+msgid "View Album"
+msgstr "Voir l'album"
+
+#: mod/ping.php:285
+msgid "{0} wants to be your friend"
+msgstr "{0} souhaite être votre ami(e)"
 
-#: mod/notifications.php:125
-msgid "Home Notifications"
-msgstr "Notifications de page d'accueil"
+#: mod/ping.php:301
+msgid "{0} sent you a message"
+msgstr "{0} vous a envoyé un message"
 
-#: mod/notifications.php:155
-msgid "Show Ignored Requests"
-msgstr "Voir les demandes ignorées"
+#: mod/ping.php:317
+msgid "{0} requested registration"
+msgstr "{0} a demandé à s'inscrire"
 
-#: mod/notifications.php:155
-msgid "Hide Ignored Requests"
-msgstr "Cacher les demandes ignorées"
+#: mod/poke.php:184
+msgid "Poke/Prod"
+msgstr "Solliciter"
 
-#: mod/notifications.php:167 mod/notifications.php:236
-msgid "Notification type: "
-msgstr "Type de notification : "
+#: mod/poke.php:185
+msgid "poke, prod or do other things to somebody"
+msgstr "solliciter (poke/...) quelqu'un"
 
-#: mod/notifications.php:170
-#, php-format
-msgid "suggested by %s"
-msgstr "suggéré(e) par %s"
+#: mod/poke.php:186
+msgid "Recipient"
+msgstr "Destinataire"
 
-#: mod/notifications.php:197
-msgid "Claims to be known to you: "
-msgstr "Prétend que vous le connaissez : "
+#: mod/poke.php:187
+msgid "Choose what you wish to do to recipient"
+msgstr "Choisissez ce que vous voulez faire au destinataire"
 
-#: mod/notifications.php:198
-msgid "yes"
-msgstr "oui"
+#: mod/poke.php:190
+msgid "Make this post private"
+msgstr "Rendez ce message privé"
 
-#: mod/notifications.php:198
-msgid "no"
-msgstr "non"
+#: mod/probe.php:14 mod/webfinger.php:17
+msgid "Only logged in users are permitted to perform a probing."
+msgstr ""
 
-#: mod/notifications.php:199 mod/notifications.php:204
-msgid "Shall your connection be bidirectional or not?"
-msgstr "Souhaitez vous que votre connexion soit bi-directionnelle ?"
+#: mod/profile.php:42 src/Model/Profile.php:129
+msgid "Requested profile is not available."
+msgstr "Le profil demandé n'est pas disponible."
 
-#: mod/notifications.php:200 mod/notifications.php:205
+#: mod/profile.php:93 mod/profile.php:96 src/Protocol/OStatus.php:1286
 #, php-format
-msgid ""
-"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
-"also receive updates from them in your news feed."
+msgid "%s's timeline"
 msgstr ""
 
-#: mod/notifications.php:201
+#: mod/profile.php:94 src/Protocol/OStatus.php:1287
 #, php-format
-msgid ""
-"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
-" will not receive updates from them in your news feed."
+msgid "%s's posts"
 msgstr ""
 
-#: mod/notifications.php:206
+#: mod/profile.php:95 src/Protocol/OStatus.php:1288
 #, php-format
-msgid ""
-"Accepting %s as a sharer allows them to subscribe to your posts, but you "
-"will not receive updates from them in your news feed."
+msgid "%s's comments"
 msgstr ""
 
-#: mod/notifications.php:217
-msgid "Friend"
-msgstr "Ami"
+#: mod/profile_photo.php:57
+msgid "Image uploaded but image cropping failed."
+msgstr "Image envoyée, mais impossible de la retailler."
 
-#: mod/notifications.php:218
-msgid "Sharer"
-msgstr "Initiateur du partage"
+#: mod/profile_photo.php:89 mod/profile_photo.php:98 mod/profile_photo.php:107
+#: mod/profile_photo.php:315
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "Réduction de la taille de l'image [%s] échouée."
 
-#: mod/notifications.php:218
-msgid "Subscriber"
-msgstr ""
+#: mod/profile_photo.php:126
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement."
 
-#: mod/notifications.php:273
-msgid "No introductions."
-msgstr "Aucune demande d'introduction."
+#: mod/profile_photo.php:134
+msgid "Unable to process image"
+msgstr "Impossible de traiter l'image"
 
-#: mod/notifications.php:314
-msgid "Show unread"
-msgstr "Afficher non-lus"
+#: mod/profile_photo.php:246
+msgid "Upload File:"
+msgstr "Fichier à téléverser :"
 
-#: mod/notifications.php:314
-msgid "Show all"
-msgstr "Tout afficher"
+#: mod/profile_photo.php:247
+msgid "Select a profile:"
+msgstr "Choisir un profil :"
 
-#: mod/notifications.php:320
-#, php-format
-msgid "No more %s notifications."
-msgstr "Aucune notification de %s"
+#: mod/profile_photo.php:252
+msgid "or"
+msgstr "ou"
 
-#: mod/profile.php:37 src/Model/Profile.php:118
-msgid "Requested profile is not available."
-msgstr "Le profil demandé n'est pas disponible."
+#: mod/profile_photo.php:253
+msgid "skip this step"
+msgstr "ignorer cette étape"
 
-#: mod/profile.php:78 mod/profile.php:81 src/Protocol/OStatus.php:1251
-#, php-format
-msgid "%s's timeline"
-msgstr ""
+#: mod/profile_photo.php:253
+msgid "select a photo from your photo albums"
+msgstr "choisissez une photo depuis vos albums"
 
-#: mod/profile.php:79 src/Protocol/OStatus.php:1252
-#, php-format
-msgid "%s's posts"
-msgstr ""
+#: mod/profile_photo.php:266
+msgid "Crop Image"
+msgstr "(Re)cadrer l'image"
 
-#: mod/profile.php:80 src/Protocol/OStatus.php:1253
-#, php-format
-msgid "%s's comments"
-msgstr ""
+#: mod/profile_photo.php:267
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Ajustez le cadre de l'image pour une visualisation optimale."
 
-#: mod/profile.php:195
-msgid "Tips for New Members"
-msgstr "Conseils aux nouveaux venus"
+#: mod/profile_photo.php:269
+msgid "Done Editing"
+msgstr "Édition terminée"
+
+#: mod/profile_photo.php:305
+msgid "Image uploaded successfully."
+msgstr "Image téléversée avec succès."
 
-#: mod/profiles.php:58
+#: mod/profiles.php:59
 msgid "Profile deleted."
 msgstr "Profil supprimé."
 
-#: mod/profiles.php:74 mod/profiles.php:110
+#: mod/profiles.php:75 mod/profiles.php:111
 msgid "Profile-"
 msgstr "Profil-"
 
-#: mod/profiles.php:93 mod/profiles.php:132
+#: mod/profiles.php:94 mod/profiles.php:133
 msgid "New profile created."
 msgstr "Nouveau profil créé."
 
-#: mod/profiles.php:116
+#: mod/profiles.php:117
 msgid "Profile unavailable to clone."
 msgstr "Ce profil ne peut être cloné."
 
-#: mod/profiles.php:206
+#: mod/profiles.php:205
 msgid "Profile Name is required."
 msgstr "Le nom du profil est requis."
 
-#: mod/profiles.php:347
+#: mod/profiles.php:346
 msgid "Marital Status"
 msgstr "Statut marital"
 
-#: mod/profiles.php:351
+#: mod/profiles.php:350
 msgid "Romantic Partner"
 msgstr "Partenaire / conjoint"
 
-#: mod/profiles.php:363
+#: mod/profiles.php:362
 msgid "Work/Employment"
 msgstr "Travail / Occupation"
 
-#: mod/profiles.php:366
+#: mod/profiles.php:365
 msgid "Religion"
 msgstr "Religion"
 
-#: mod/profiles.php:370
+#: mod/profiles.php:369
 msgid "Political Views"
 msgstr "Tendance politique"
 
-#: mod/profiles.php:374
+#: mod/profiles.php:373
 msgid "Gender"
 msgstr "Sexe"
 
-#: mod/profiles.php:378
+#: mod/profiles.php:377
 msgid "Sexual Preference"
 msgstr "Préférence sexuelle"
 
-#: mod/profiles.php:382
+#: mod/profiles.php:381
 msgid "XMPP"
 msgstr "XMPP"
 
-#: mod/profiles.php:386
+#: mod/profiles.php:385
 msgid "Homepage"
 msgstr "Site internet"
 
-#: mod/profiles.php:390 mod/profiles.php:593
+#: mod/profiles.php:389 mod/profiles.php:592
 msgid "Interests"
 msgstr "Centres d'intérêt"
 
-#: mod/profiles.php:401 mod/profiles.php:589
+#: mod/profiles.php:400 mod/profiles.php:588
 msgid "Location"
 msgstr "Localisation"
 
@@ -6173,580 +5555,665 @@ msgstr "Localisation"
 msgid "Profile updated."
 msgstr "Profil mis à jour."
 
-#: mod/profiles.php:540
+#: mod/profiles.php:537
 msgid "Hide contacts and friends:"
 msgstr "Cacher mes contacts et amis :"
 
-#: mod/profiles.php:545
+#: mod/profiles.php:542
 msgid "Hide your contact/friend list from viewers of this profile?"
 msgstr "Cacher ma liste d'amis / contacts des visiteurs de ce profil ?"
 
-#: mod/profiles.php:565
+#: mod/profiles.php:562
 msgid "Show more profile fields:"
 msgstr "Afficher plus d'infos de profil :"
 
-#: mod/profiles.php:577
+#: mod/profiles.php:574
 msgid "Profile Actions"
 msgstr "Actions de Profil"
 
-#: mod/profiles.php:578
+#: mod/profiles.php:575
 msgid "Edit Profile Details"
 msgstr "Éditer les détails du profil"
 
-#: mod/profiles.php:580
+#: mod/profiles.php:577
 msgid "Change Profile Photo"
 msgstr "Changer la photo du profil"
 
-#: mod/profiles.php:581
+#: mod/profiles.php:579
 msgid "View this profile"
 msgstr "Voir ce profil"
 
-#: mod/profiles.php:582 mod/profiles.php:677 src/Model/Profile.php:389
+#: mod/profiles.php:580
+msgid "View all profiles"
+msgstr ""
+
+#: mod/profiles.php:581 mod/profiles.php:676 src/Model/Profile.php:407
 msgid "Edit visibility"
 msgstr "Changer la visibilité"
 
-#: mod/profiles.php:583
+#: mod/profiles.php:582
 msgid "Create a new profile using these settings"
 msgstr "Créer un nouveau profil en utilisant ces réglages"
 
-#: mod/profiles.php:584
+#: mod/profiles.php:583
 msgid "Clone this profile"
 msgstr "Cloner ce profil"
 
-#: mod/profiles.php:585
+#: mod/profiles.php:584
 msgid "Delete this profile"
 msgstr "Supprimer ce profil"
 
-#: mod/profiles.php:587
+#: mod/profiles.php:586
 msgid "Basic information"
 msgstr "Information de base"
 
-#: mod/profiles.php:588
+#: mod/profiles.php:587
 msgid "Profile picture"
 msgstr "Image de profil"
 
-#: mod/profiles.php:590
+#: mod/profiles.php:589
 msgid "Preferences"
 msgstr "Préférences"
 
-#: mod/profiles.php:591
+#: mod/profiles.php:590
 msgid "Status information"
 msgstr "Information sur le statut"
 
-#: mod/profiles.php:592
+#: mod/profiles.php:591
 msgid "Additional information"
 msgstr "Information additionnelle"
 
-#: mod/profiles.php:595
+#: mod/profiles.php:594
 msgid "Relation"
 msgstr "Relation"
 
-#: mod/profiles.php:596 src/Util/Temporal.php:81 src/Util/Temporal.php:83
+#: mod/profiles.php:595 src/Util/Temporal.php:82 src/Util/Temporal.php:84
 msgid "Miscellaneous"
 msgstr "Divers"
 
-#: mod/profiles.php:599
+#: mod/profiles.php:598
 msgid "Your Gender:"
 msgstr "Votre genre :"
 
-#: mod/profiles.php:600
+#: mod/profiles.php:599
 msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
 msgstr "<span class=\"heart\">&hearts;</span> Statut marital :"
 
-#: mod/profiles.php:601 src/Model/Profile.php:780
+#: mod/profiles.php:600 src/Model/Profile.php:783
 msgid "Sexual Preference:"
 msgstr "Préférence sexuelle :"
 
-#: mod/profiles.php:602
+#: mod/profiles.php:601
 msgid "Example: fishing photography software"
 msgstr "Exemple : football dessin programmation"
 
-#: mod/profiles.php:607
+#: mod/profiles.php:606
 msgid "Profile Name:"
 msgstr "Nom du profil :"
 
-#: mod/profiles.php:609
+#: mod/profiles.php:608
 msgid ""
 "This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
 "be visible to anybody using the internet."
 msgstr "Ceci est votre profil <strong>public</strong>.<br />Il <strong>peut</strong> être visible par n'importe quel utilisateur d'Internet."
 
-#: mod/profiles.php:610
+#: mod/profiles.php:609
 msgid "Your Full Name:"
 msgstr "Votre nom complet :"
 
-#: mod/profiles.php:611
+#: mod/profiles.php:610
 msgid "Title/Description:"
 msgstr "Titre / Description :"
 
-#: mod/profiles.php:614
+#: mod/profiles.php:613
 msgid "Street Address:"
 msgstr "Adresse postale :"
 
-#: mod/profiles.php:615
+#: mod/profiles.php:614
 msgid "Locality/City:"
 msgstr "Ville :"
 
-#: mod/profiles.php:616
+#: mod/profiles.php:615
 msgid "Region/State:"
 msgstr "Région / État :"
 
-#: mod/profiles.php:617
+#: mod/profiles.php:616
 msgid "Postal/Zip Code:"
 msgstr "Code postal :"
 
-#: mod/profiles.php:618
+#: mod/profiles.php:617
 msgid "Country:"
 msgstr "Pays :"
 
-#: mod/profiles.php:619 src/Util/Temporal.php:149
+#: mod/profiles.php:618 src/Util/Temporal.php:150
 msgid "Age: "
 msgstr "Age : "
 
-#: mod/profiles.php:622
+#: mod/profiles.php:621
 msgid "Who: (if applicable)"
 msgstr "Qui : (si pertinent)"
 
-#: mod/profiles.php:622
+#: mod/profiles.php:621
 msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
 msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com"
 
-#: mod/profiles.php:623
+#: mod/profiles.php:622
 msgid "Since [date]:"
 msgstr "Depuis [date]  :"
 
-#: mod/profiles.php:625
+#: mod/profiles.php:624
 msgid "Tell us about yourself..."
 msgstr "Parlez-nous de vous..."
 
-#: mod/profiles.php:626
+#: mod/profiles.php:625
 msgid "XMPP (Jabber) address:"
 msgstr "Adresse XMPP (Jabber) :"
 
-#: mod/profiles.php:626
+#: mod/profiles.php:625
 msgid ""
 "The XMPP address will be propagated to your contacts so that they can follow"
 " you."
 msgstr "Votre adresse XMPP sera transmise à vos contacts pour qu'ils puissent vous suivre."
 
-#: mod/profiles.php:627
+#: mod/profiles.php:626
 msgid "Homepage URL:"
 msgstr "Page personnelle :"
 
-#: mod/profiles.php:628 src/Model/Profile.php:788
+#: mod/profiles.php:627 src/Model/Profile.php:791
 msgid "Hometown:"
 msgstr " Ville d'origine :"
 
-#: mod/profiles.php:629 src/Model/Profile.php:796
+#: mod/profiles.php:628 src/Model/Profile.php:799
 msgid "Political Views:"
 msgstr "Opinions politiques :"
 
-#: mod/profiles.php:630
+#: mod/profiles.php:629
 msgid "Religious Views:"
 msgstr "Opinions religieuses :"
 
-#: mod/profiles.php:631
+#: mod/profiles.php:630
 msgid "Public Keywords:"
 msgstr "Mots-clés publics :"
 
-#: mod/profiles.php:631
+#: mod/profiles.php:630
 msgid "(Used for suggesting potential friends, can be seen by others)"
 msgstr "(Utilisés pour vous suggérer des amis potentiels. Ils peuvent être vus par autrui)"
 
-#: mod/profiles.php:632
+#: mod/profiles.php:631
 msgid "Private Keywords:"
 msgstr "Mots-clés privés :"
 
-#: mod/profiles.php:632
+#: mod/profiles.php:631
 msgid "(Used for searching profiles, never shown to others)"
 msgstr "(Utilisés pour rechercher des profils. Ils ne seront jamais montrés à autrui)"
 
-#: mod/profiles.php:633 src/Model/Profile.php:812
+#: mod/profiles.php:632 src/Model/Profile.php:815
 msgid "Likes:"
 msgstr "J'aime :"
 
-#: mod/profiles.php:634 src/Model/Profile.php:816
+#: mod/profiles.php:633 src/Model/Profile.php:819
 msgid "Dislikes:"
 msgstr "Je n'aime pas :"
 
-#: mod/profiles.php:635
+#: mod/profiles.php:634
 msgid "Musical interests"
 msgstr "Goûts musicaux"
 
-#: mod/profiles.php:636
+#: mod/profiles.php:635
 msgid "Books, literature"
 msgstr "Lectures"
 
-#: mod/profiles.php:637
+#: mod/profiles.php:636
 msgid "Television"
 msgstr "Télévision"
 
-#: mod/profiles.php:638
+#: mod/profiles.php:637
 msgid "Film/dance/culture/entertainment"
 msgstr "Cinéma / Danse / Culture / Divertissement"
 
-#: mod/profiles.php:639
+#: mod/profiles.php:638
 msgid "Hobbies/Interests"
 msgstr "Passe-temps / Centres d'intérêt"
 
-#: mod/profiles.php:640
+#: mod/profiles.php:639
 msgid "Love/romance"
 msgstr "Amour / Romance"
 
-#: mod/profiles.php:641
+#: mod/profiles.php:640
 msgid "Work/employment"
 msgstr "Activité professionnelle / Occupation"
 
-#: mod/profiles.php:642
+#: mod/profiles.php:641
 msgid "School/education"
 msgstr "Études / Formation"
 
-#: mod/profiles.php:643
+#: mod/profiles.php:642
 msgid "Contact information and Social Networks"
 msgstr "Coordonnées / Réseaux sociaux"
 
-#: mod/profiles.php:674 src/Model/Profile.php:385
+#: mod/profiles.php:673 src/Model/Profile.php:403
 msgid "Profile Image"
 msgstr "Image du profil"
 
-#: mod/profiles.php:676 src/Model/Profile.php:388
+#: mod/profiles.php:675 src/Model/Profile.php:406
 msgid "visible to everybody"
 msgstr "visible par tous"
 
-#: mod/profiles.php:683
+#: mod/profiles.php:682
 msgid "Edit/Manage Profiles"
 msgstr "Editer / gérer les profils"
 
-#: mod/profiles.php:684 src/Model/Profile.php:375 src/Model/Profile.php:397
+#: mod/profiles.php:683 src/Model/Profile.php:393 src/Model/Profile.php:415
 msgid "Change profile photo"
 msgstr "Changer de photo de profil"
 
-#: mod/profiles.php:685 src/Model/Profile.php:376
+#: mod/profiles.php:684 src/Model/Profile.php:394
 msgid "Create New Profile"
 msgstr "Créer un nouveau profil"
 
-#: mod/register.php:100
+#: mod/profperm.php:35 mod/profperm.php:68
+msgid "Invalid profile identifier."
+msgstr "Identifiant de profil invalide."
+
+#: mod/profperm.php:114
+msgid "Profile Visibility Editor"
+msgstr "Éditer la visibilité du profil"
+
+#: mod/profperm.php:127
+msgid "Visible To"
+msgstr "Visible par"
+
+#: mod/profperm.php:143
+msgid "All Contacts (with secure profile access)"
+msgstr "Tous les contacts (ayant un accès sécurisé)"
+
+#: mod/register.php:103
 msgid ""
 "Registration successful. Please check your email for further instructions."
 msgstr "Inscription réussie. Vérifiez vos emails pour la suite des instructions."
 
-#: mod/register.php:104
+#: mod/register.php:107
 #, php-format
 msgid ""
 "Failed to send email message. Here your accout details:<br> login: %s<br> "
 "password: %s<br><br>You can change your password after login."
 msgstr "Impossible d’envoyer le courriel de confirmation. Voici vos informations de connexion:<br> identifiant : %s<br> mot de passe : %s<br><br>Vous pourrez changer votre mot de passe une fois connecté."
 
-#: mod/register.php:111
+#: mod/register.php:114
 msgid "Registration successful."
 msgstr "Inscription réussie."
 
-#: mod/register.php:116
+#: mod/register.php:119
 msgid "Your registration can not be processed."
 msgstr "Votre inscription ne peut être traitée."
 
-#: mod/register.php:163
+#: mod/register.php:162
 msgid "Your registration is pending approval by the site owner."
 msgstr "Votre inscription attend une validation du propriétaire du site."
 
-#: mod/register.php:221
+#: mod/register.php:191 mod/uimport.php:38
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain."
+
+#: mod/register.php:220
 msgid ""
 "You may (optionally) fill in this form via OpenID by supplying your OpenID "
 "and clicking 'Register'."
 msgstr "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\"."
 
-#: mod/register.php:222
+#: mod/register.php:221
 msgid ""
 "If you are not familiar with OpenID, please leave that field blank and fill "
 "in the rest of the items."
 msgstr "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste."
 
-#: mod/register.php:223
+#: mod/register.php:222
 msgid "Your OpenID (optional): "
 msgstr "Votre OpenID (facultatif): "
 
-#: mod/register.php:235
+#: mod/register.php:234
 msgid "Include your profile in member directory?"
 msgstr "Inclure votre profil dans l'annuaire des membres?"
 
-#: mod/register.php:262
+#: mod/register.php:261
 msgid "Note for the admin"
 msgstr "Commentaire pour l'administrateur"
 
-#: mod/register.php:262
+#: mod/register.php:261
 msgid "Leave a message for the admin, why you want to join this node"
 msgstr "Indiquez à l'administrateur les raisons de votre inscription à cette instance."
 
-#: mod/register.php:263
+#: mod/register.php:262
 msgid "Membership on this site is by invitation only."
 msgstr "L'inscription à ce site se fait uniquement sur invitation."
 
-#: mod/register.php:264
+#: mod/register.php:263
 msgid "Your invitation code: "
 msgstr ""
 
-#: mod/register.php:273
+#: mod/register.php:272
 msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
 msgstr "Votre nom complet (p. ex. Michel Dupont):"
 
-#: mod/register.php:274
+#: mod/register.php:273
 msgid ""
 "Your Email Address: (Initial information will be send there, so this has to "
 "be an existing address.)"
 msgstr "Votre courriel : (Des informations de connexion vont être envoyées à cette adresse; elle doit exister)."
 
-#: mod/register.php:276 mod/settings.php:1190
+#: mod/register.php:275 mod/settings.php:1194
 msgid "New Password:"
 msgstr "Nouveau mot de passe :"
 
-#: mod/register.php:276
+#: mod/register.php:275
 msgid "Leave empty for an auto generated password."
 msgstr "Laisser ce champ libre pour obtenir un mot de passe généré automatiquement."
 
-#: mod/register.php:277 mod/settings.php:1191
+#: mod/register.php:276 mod/settings.php:1195
 msgid "Confirm:"
 msgstr "Confirmer :"
 
-#: mod/register.php:278
+#: mod/register.php:277
 #, php-format
 msgid ""
 "Choose a profile nickname. This must begin with a text character. Your "
 "profile address on this site will then be '<strong>nickname@%s</strong>'."
 msgstr ""
 
-#: mod/register.php:279
+#: mod/register.php:278
 msgid "Choose a nickname: "
 msgstr "Choisir un pseudo : "
 
-#: mod/register.php:282 src/Content/Nav.php:128 src/Module/Login.php:284
+#: mod/register.php:281 src/Content/Nav.php:180 src/Module/Login.php:291
 msgid "Register"
 msgstr "S'inscrire"
 
-#: mod/register.php:289
+#: mod/register.php:287 mod/uimport.php:53
+msgid "Import"
+msgstr "Importer"
+
+#: mod/register.php:288
 msgid "Import your profile to this friendica instance"
 msgstr "Importer votre profile dans cette instance de friendica"
 
-#: mod/removeme.php:44
+#: mod/register.php:296
+msgid "Note: This node explicitly contains adult content"
+msgstr ""
+
+#: mod/regmod.php:55
+msgid "Account approved."
+msgstr "Inscription validée."
+
+#: mod/regmod.php:79
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Inscription révoquée pour %s"
+
+#: mod/regmod.php:86
+msgid "Please login."
+msgstr "Merci de vous connecter."
+
+#: mod/removeme.php:47
 msgid "User deleted their account"
 msgstr ""
 
-#: mod/removeme.php:45
+#: mod/removeme.php:48
 msgid ""
 "On your Friendica node an user deleted their account. Please ensure that "
 "their data is removed from the backups."
 msgstr ""
 
-#: mod/removeme.php:46
+#: mod/removeme.php:49
 #, php-format
 msgid "The user id is %d"
 msgstr ""
 
-#: mod/removeme.php:77 mod/removeme.php:80
+#: mod/removeme.php:81 mod/removeme.php:84
 msgid "Remove My Account"
 msgstr "Supprimer mon compte"
 
-#: mod/removeme.php:78
+#: mod/removeme.php:82
 msgid ""
 "This will completely remove your account. Once this has been done it is not "
 "recoverable."
 msgstr "Ceci supprimera totalement votre compte. Cette opération est irréversible."
 
-#: mod/removeme.php:79
+#: mod/removeme.php:83
 msgid "Please enter your password for verification:"
 msgstr "Merci de saisir votre mot de passe pour vérification :"
 
-#: mod/settings.php:56
+#: mod/repair_ostatus.php:21
+msgid "Resubscribing to OStatus contacts"
+msgstr "Réinscription aux contacts OStatus"
+
+#: mod/repair_ostatus.php:37
+msgid "Error"
+msgstr "Erreur"
+
+#: mod/search.php:113
+msgid "Only logged in users are permitted to perform a search."
+msgstr "Seuls les utilisateurs inscrits sont autorisés à lancer une recherche."
+
+#: mod/search.php:137
+msgid "Too Many Requests"
+msgstr "Trop de requêtes"
+
+#: mod/search.php:138
+msgid "Only one search per minute is permitted for not logged in users."
+msgstr "Une seule recherche par minute pour les utilisateurs qui ne sont pas connectés."
+
+#: mod/search.php:249
+#, php-format
+msgid "Items tagged with: %s"
+msgstr "Éléments taggés %s"
+
+#: mod/search.php:251 src/Module/Contact.php:811
+#, php-format
+msgid "Results for: %s"
+msgstr "Résultats pour : %s"
+
+#: mod/settings.php:59
 msgid "Account"
 msgstr "Compte"
 
-#: mod/settings.php:73
+#: mod/settings.php:67 src/Content/Nav.php:262 src/Model/Profile.php:386
+msgid "Profiles"
+msgstr "Profils"
+
+#: mod/settings.php:83
 msgid "Display"
 msgstr "Afficher"
 
-#: mod/settings.php:80 mod/settings.php:834
+#: mod/settings.php:90 mod/settings.php:843
 msgid "Social Networks"
 msgstr "Réseaux sociaux"
 
-#: mod/settings.php:94 src/Content/Nav.php:205
+#: mod/settings.php:104 src/Content/Nav.php:257
 msgid "Delegations"
 msgstr "Délégations"
 
-#: mod/settings.php:101
+#: mod/settings.php:111
 msgid "Connected apps"
 msgstr "Applications connectées"
 
-#: mod/settings.php:115
+#: mod/settings.php:125
 msgid "Remove account"
 msgstr "Supprimer le compte"
 
-#: mod/settings.php:167
+#: mod/settings.php:177
 msgid "Missing some important data!"
 msgstr "Il manque certaines informations importantes !"
 
-#: mod/settings.php:278
+#: mod/settings.php:179 mod/settings.php:704 src/Module/Contact.php:818
+msgid "Update"
+msgstr "Mises à jour"
+
+#: mod/settings.php:288
 msgid "Failed to connect with email account using the settings provided."
 msgstr "Impossible de se connecter au compte courriel configuré."
 
-#: mod/settings.php:283
+#: mod/settings.php:293
 msgid "Email settings updated."
 msgstr "Réglages de courriel mis à jour."
 
-#: mod/settings.php:299
+#: mod/settings.php:309
 msgid "Features updated"
 msgstr "Fonctionnalités mises à jour"
 
-#: mod/settings.php:372
+#: mod/settings.php:382
 msgid "Relocate message has been send to your contacts"
 msgstr "Un message de relocalisation a été envoyé à vos contacts."
 
-#: mod/settings.php:384 src/Model/User.php:339
+#: mod/settings.php:394 src/Model/User.php:421
 msgid "Passwords do not match. Password unchanged."
 msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué."
 
-#: mod/settings.php:389
+#: mod/settings.php:399
 msgid "Empty passwords are not allowed. Password unchanged."
 msgstr "Les mots de passe vides sont interdits. Aucun changement appliqué."
 
-#: mod/settings.php:394 src/Core/Console/NewPassword.php:87
+#: mod/settings.php:404 src/Core/Console/NewPassword.php:82
 msgid ""
 "The new password has been exposed in a public data dump, please choose "
 "another."
 msgstr ""
 
-#: mod/settings.php:400
+#: mod/settings.php:410
 msgid "Wrong password."
 msgstr "Mauvais mot de passe."
 
-#: mod/settings.php:407 src/Core/Console/NewPassword.php:94
+#: mod/settings.php:417 src/Core/Console/NewPassword.php:89
 msgid "Password changed."
 msgstr "Mot de passe changé."
 
-#: mod/settings.php:409 src/Core/Console/NewPassword.php:91
+#: mod/settings.php:419 src/Core/Console/NewPassword.php:86
 msgid "Password update failed. Please try again."
 msgstr "Le changement de mot de passe a échoué. Merci de recommencer."
 
-#: mod/settings.php:493
+#: mod/settings.php:503
 msgid " Please use a shorter name."
 msgstr " Merci d'utiliser un nom plus court."
 
-#: mod/settings.php:496
+#: mod/settings.php:506
 msgid " Name too short."
 msgstr " Nom trop court."
 
-#: mod/settings.php:504
+#: mod/settings.php:514
 msgid "Wrong Password"
 msgstr "Mauvais mot de passe"
 
-#: mod/settings.php:509
+#: mod/settings.php:519
 msgid "Invalid email."
 msgstr ""
 
-#: mod/settings.php:516
+#: mod/settings.php:525
 msgid "Cannot change to that email."
 msgstr ""
 
-#: mod/settings.php:566
+#: mod/settings.php:575
 msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut."
 
-#: mod/settings.php:569
+#: mod/settings.php:578
 msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr "Ce forum privé n'a pas de paramètres de vie privée ni de paramètres de confidentialité par défaut."
 
-#: mod/settings.php:609
+#: mod/settings.php:618
 msgid "Settings updated."
 msgstr "Réglages mis à jour."
 
-#: mod/settings.php:668 mod/settings.php:694 mod/settings.php:728
+#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:737
 msgid "Add application"
 msgstr "Ajouter une application"
 
-#: mod/settings.php:672 mod/settings.php:698
+#: mod/settings.php:681 mod/settings.php:707
 msgid "Consumer Key"
 msgstr "Clé utilisateur"
 
-#: mod/settings.php:673 mod/settings.php:699
+#: mod/settings.php:682 mod/settings.php:708
 msgid "Consumer Secret"
 msgstr "Secret utilisateur"
 
-#: mod/settings.php:674 mod/settings.php:700
+#: mod/settings.php:683 mod/settings.php:709
 msgid "Redirect"
 msgstr "Rediriger"
 
-#: mod/settings.php:675 mod/settings.php:701
+#: mod/settings.php:684 mod/settings.php:710
 msgid "Icon url"
 msgstr "URL de l'icône"
 
-#: mod/settings.php:686
+#: mod/settings.php:695
 msgid "You can't edit this application."
 msgstr "Vous ne pouvez pas éditer cette application."
 
-#: mod/settings.php:727
+#: mod/settings.php:736
 msgid "Connected Apps"
 msgstr "Applications connectées"
 
-#: mod/settings.php:729 src/Object/Post.php:155 src/Object/Post.php:157
+#: mod/settings.php:738 src/Object/Post.php:159 src/Object/Post.php:161
 msgid "Edit"
 msgstr "Éditer"
 
-#: mod/settings.php:731
+#: mod/settings.php:740
 msgid "Client key starts with"
 msgstr "La clé cliente commence par"
 
-#: mod/settings.php:732
+#: mod/settings.php:741
 msgid "No name"
 msgstr "Sans nom"
 
-#: mod/settings.php:733
+#: mod/settings.php:742
 msgid "Remove authorization"
 msgstr "Révoquer l'autorisation"
 
-#: mod/settings.php:744
+#: mod/settings.php:753
 msgid "No Addon settings configured"
 msgstr ""
 
-#: mod/settings.php:753
+#: mod/settings.php:762
 msgid "Addon Settings"
 msgstr ""
 
-#: mod/settings.php:774
+#: mod/settings.php:783
 msgid "Additional Features"
 msgstr "Fonctions supplémentaires"
 
-#: mod/settings.php:797 src/Content/ContactSelector.php:83
+#: mod/settings.php:806 src/Content/ContactSelector.php:84
 msgid "Diaspora"
 msgstr "Diaspora"
 
-#: mod/settings.php:797 mod/settings.php:798
+#: mod/settings.php:806 mod/settings.php:807
 msgid "enabled"
 msgstr "activé"
 
-#: mod/settings.php:797 mod/settings.php:798
+#: mod/settings.php:806 mod/settings.php:807
 msgid "disabled"
 msgstr "désactivé"
 
-#: mod/settings.php:797 mod/settings.php:798
+#: mod/settings.php:806 mod/settings.php:807
 #, php-format
 msgid "Built-in support for %s connectivity is %s"
 msgstr "Le support natif pour la connectivité %s est %s"
 
-#: mod/settings.php:798
+#: mod/settings.php:807
 msgid "GNU Social (OStatus)"
 msgstr "GNU Social (OStatus)"
 
-#: mod/settings.php:829
+#: mod/settings.php:838
 msgid "Email access is disabled on this site."
 msgstr "L'accès courriel est désactivé sur ce site."
 
-#: mod/settings.php:839
+#: mod/settings.php:848
 msgid "General Social Media Settings"
 msgstr "Paramètres généraux des réseaux sociaux"
 
-#: mod/settings.php:840
+#: mod/settings.php:849
 msgid "Disable Content Warning"
 msgstr ""
 
-#: mod/settings.php:840
+#: mod/settings.php:849
 msgid ""
 "Users on networks like Mastodon or Pleroma are able to set a content warning"
 " field which collapse their post by default. This disables the automatic "
@@ -6754,613 +6221,772 @@ msgid ""
 "any other content filtering you eventually set up."
 msgstr ""
 
-#: mod/settings.php:841
+#: mod/settings.php:850
 msgid "Disable intelligent shortening"
 msgstr "Désactiver la réduction d'URL"
 
-#: mod/settings.php:841
+#: mod/settings.php:850
 msgid ""
 "Normally the system tries to find the best link to add to shortened posts. "
 "If this option is enabled then every shortened post will always point to the"
 " original friendica post."
 msgstr "Normalement, le système tente de trouver le meilleur lien à ajouter aux publications raccourcies. Si cette option est activée, les publications raccourcies dirigeront toujours vers leur publication d'origine sur Friendica."
 
-#: mod/settings.php:842
+#: mod/settings.php:851
 msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
 msgstr "Suivre automatiquement ceux qui me suivent ou me mentionnent sur GNU Social (OStatus)"
 
-#: mod/settings.php:842
+#: mod/settings.php:851
 msgid ""
 "If you receive a message from an unknown OStatus user, this option decides "
 "what to do. If it is checked, a new contact will be created for every "
 "unknown user."
 msgstr "Si vous recevez un message d'un utilisateur OStatus inconnu, cette option détermine ce qui sera fait. Si elle est cochée, un nouveau contact sera créé pour chaque utilisateur inconnu."
 
-#: mod/settings.php:843
+#: mod/settings.php:852
 msgid "Default group for OStatus contacts"
 msgstr "Groupe par défaut pour les contacts OStatus"
 
-#: mod/settings.php:844
+#: mod/settings.php:853
 msgid "Your legacy GNU Social account"
 msgstr "Le compte GNU Social que vous avez déjà"
 
-#: mod/settings.php:844
+#: mod/settings.php:853
 msgid ""
 "If you enter your old GNU Social/Statusnet account name here (in the format "
 "user@domain.tld), your contacts will be added automatically. The field will "
 "be emptied when done."
 msgstr "Si vous entrez le nom de votre ancien compte GNU Social / StatusNet ici (utiliser le format utilisateur@domaine.tld), vos contacts seront ajoutés automatiquement. Le champ sera vidé lorsque ce sera terminé."
 
-#: mod/settings.php:847
+#: mod/settings.php:856
 msgid "Repair OStatus subscriptions"
 msgstr "Réparer les abonnements OStatus"
 
-#: mod/settings.php:851
+#: mod/settings.php:860
 msgid "Email/Mailbox Setup"
 msgstr "Réglages de courriel/boîte à lettre"
 
-#: mod/settings.php:852
+#: mod/settings.php:861
 msgid ""
 "If you wish to communicate with email contacts using this service "
 "(optional), please specify how to connect to your mailbox."
 msgstr "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte."
 
-#: mod/settings.php:853
+#: mod/settings.php:862
 msgid "Last successful email check:"
 msgstr "Dernière vérification réussie des courriels :"
 
-#: mod/settings.php:855
+#: mod/settings.php:864
 msgid "IMAP server name:"
 msgstr "Nom du serveur IMAP :"
 
-#: mod/settings.php:856
+#: mod/settings.php:865
 msgid "IMAP port:"
 msgstr "Port IMAP :"
 
-#: mod/settings.php:857
+#: mod/settings.php:866
 msgid "Security:"
 msgstr "Sécurité :"
 
-#: mod/settings.php:857 mod/settings.php:862
+#: mod/settings.php:866 mod/settings.php:871
 msgid "None"
 msgstr "Aucun(e)"
 
-#: mod/settings.php:858
+#: mod/settings.php:867
 msgid "Email login name:"
 msgstr "Nom de connexion :"
 
-#: mod/settings.php:859
+#: mod/settings.php:868
 msgid "Email password:"
 msgstr "Mot de passe :"
 
-#: mod/settings.php:860
+#: mod/settings.php:869
 msgid "Reply-to address:"
 msgstr "Adresse de réponse :"
 
-#: mod/settings.php:861
+#: mod/settings.php:870
 msgid "Send public posts to all email contacts:"
 msgstr "Envoyer les publications publiques à tous les contacts courriels :"
 
-#: mod/settings.php:862
+#: mod/settings.php:871
 msgid "Action after import:"
 msgstr "Action après import :"
 
-#: mod/settings.php:862 src/Content/Nav.php:193
+#: mod/settings.php:871 src/Content/Nav.php:245
 msgid "Mark as seen"
 msgstr "Marquer comme vu"
 
-#: mod/settings.php:862
+#: mod/settings.php:871
 msgid "Move to folder"
 msgstr "Déplacer vers"
 
-#: mod/settings.php:863
+#: mod/settings.php:872
 msgid "Move to folder:"
 msgstr "Déplacer vers :"
 
-#: mod/settings.php:906
+#: mod/settings.php:915
 #, php-format
 msgid "%s - (Unsupported)"
 msgstr ""
 
-#: mod/settings.php:908
+#: mod/settings.php:917
 #, php-format
 msgid "%s - (Experimental)"
 msgstr ""
 
-#: mod/settings.php:951
+#: mod/settings.php:960
 msgid "Display Settings"
 msgstr "Affichage"
 
-#: mod/settings.php:957 mod/settings.php:981
+#: mod/settings.php:966
 msgid "Display Theme:"
 msgstr "Thème d'affichage:"
 
-#: mod/settings.php:958
+#: mod/settings.php:967
 msgid "Mobile Theme:"
 msgstr "Thème mobile:"
 
-#: mod/settings.php:959
+#: mod/settings.php:968
 msgid "Suppress warning of insecure networks"
 msgstr ""
 
-#: mod/settings.php:959
+#: mod/settings.php:968
 msgid ""
 "Should the system suppress the warning that the current group contains "
 "members of networks that can't receive non public postings."
 msgstr ""
 
-#: mod/settings.php:960
+#: mod/settings.php:969
 msgid "Update browser every xx seconds"
 msgstr "Mettre à jour l'affichage toutes les xx secondes"
 
-#: mod/settings.php:960
+#: mod/settings.php:969
 msgid "Minimum of 10 seconds. Enter -1 to disable it."
 msgstr "Minimum de 10 secondes. Saisir -1 pour désactiver."
 
-#: mod/settings.php:961
+#: mod/settings.php:970
 msgid "Number of items to display per page:"
 msgstr "Nombre d’éléments par page :"
 
-#: mod/settings.php:961 mod/settings.php:962
+#: mod/settings.php:970 mod/settings.php:971
 msgid "Maximum of 100 items"
 msgstr "Maximum de 100 éléments"
 
-#: mod/settings.php:962
+#: mod/settings.php:971
 msgid "Number of items to display per page when viewed from mobile device:"
 msgstr "Nombre d'éléments à afficher par page pour un appareil mobile"
 
-#: mod/settings.php:963
+#: mod/settings.php:972
 msgid "Don't show emoticons"
 msgstr "Ne pas afficher les émoticônes"
 
-#: mod/settings.php:964
+#: mod/settings.php:973
 msgid "Calendar"
 msgstr "Calendrier"
 
-#: mod/settings.php:965
+#: mod/settings.php:974
 msgid "Beginning of week:"
 msgstr "Début de la semaine :"
 
-#: mod/settings.php:966
+#: mod/settings.php:975
 msgid "Don't show notices"
 msgstr "Ne plus afficher les avis"
 
-#: mod/settings.php:967
+#: mod/settings.php:976
 msgid "Infinite scroll"
 msgstr "Défilement infini"
 
-#: mod/settings.php:968
+#: mod/settings.php:977
 msgid "Automatic updates only at the top of the network page"
 msgstr "Mises à jour automatiques seulement en haut de la page Réseau"
 
-#: mod/settings.php:968
+#: mod/settings.php:977
 msgid ""
 "When disabled, the network page is updated all the time, which could be "
 "confusing while reading."
 msgstr "Si désactivé, la page Réseau est mise à jour en permanence, ce qui peut rendre la lecture difficile."
 
-#: mod/settings.php:969
-msgid "Bandwith Saver Mode"
-msgstr "Limiter le transfert de données"
+#: mod/settings.php:978
+msgid "Bandwidth Saver Mode"
+msgstr ""
 
-#: mod/settings.php:969
+#: mod/settings.php:978
 msgid ""
 "When enabled, embedded content is not displayed on automatic updates, they "
 "only show on page reload."
 msgstr "Si activé, le contenu intégré aux pages est mis à jour uniquement lors du rafraîchissement manuel des pages : il n'est plus mis à jour lors des rafraîchissements automatiques."
 
-#: mod/settings.php:970
+#: mod/settings.php:979
 msgid "Smart Threading"
 msgstr ""
 
-#: mod/settings.php:970
+#: mod/settings.php:979
 msgid ""
 "When enabled, suppress extraneous thread indentation while keeping it where "
 "it matters. Only works if threading is available and enabled."
 msgstr ""
 
-#: mod/settings.php:972
+#: mod/settings.php:981
 msgid "General Theme Settings"
 msgstr "Paramètres généraux de thème"
 
-#: mod/settings.php:973
+#: mod/settings.php:982
 msgid "Custom Theme Settings"
 msgstr "Paramètres personnalisés de thème"
 
-#: mod/settings.php:974
+#: mod/settings.php:983
 msgid "Content Settings"
 msgstr "Paramètres de contenu"
 
-#: mod/settings.php:975 view/theme/duepuntozero/config.php:73
+#: mod/settings.php:984 view/theme/duepuntozero/config.php:73
 #: view/theme/frio/config.php:120 view/theme/quattro/config.php:75
 #: view/theme/vier/config.php:121
 msgid "Theme settings"
 msgstr "Réglages du thème graphique"
 
-#: mod/settings.php:994
+#: mod/settings.php:998
 msgid "Unable to find your profile. Please contact your admin."
 msgstr ""
 
-#: mod/settings.php:1033
+#: mod/settings.php:1037
 msgid "Account Types"
 msgstr "Type de compte"
 
-#: mod/settings.php:1034
+#: mod/settings.php:1038
 msgid "Personal Page Subtypes"
 msgstr "Sous-catégories de page personnelle"
 
-#: mod/settings.php:1035
+#: mod/settings.php:1039
 msgid "Community Forum Subtypes"
 msgstr "Sous-catégories de forums communautaires"
 
-#: mod/settings.php:1043
+#: mod/settings.php:1047
 msgid "Account for a personal profile."
 msgstr "Compte pour profil personnel."
 
-#: mod/settings.php:1047
+#: mod/settings.php:1051
 msgid ""
 "Account for an organisation that automatically approves contact requests as "
 "\"Followers\"."
 msgstr ""
 
-#: mod/settings.php:1051
+#: mod/settings.php:1055
 msgid ""
 "Account for a news reflector that automatically approves contact requests as"
 " \"Followers\"."
 msgstr ""
 
-#: mod/settings.php:1055
+#: mod/settings.php:1059
 msgid "Account for community discussions."
 msgstr ""
 
-#: mod/settings.php:1059
+#: mod/settings.php:1063
 msgid ""
 "Account for a regular personal profile that requires manual approval of "
 "\"Friends\" and \"Followers\"."
 msgstr ""
 
-#: mod/settings.php:1063
+#: mod/settings.php:1067
 msgid ""
 "Account for a public profile that automatically approves contact requests as"
 " \"Followers\"."
 msgstr ""
 
-#: mod/settings.php:1067
+#: mod/settings.php:1071
 msgid "Automatically approves all contact requests."
 msgstr "Les demandes de participation au forum sont automatiquement acceptées."
 
-#: mod/settings.php:1071
+#: mod/settings.php:1075
 msgid ""
 "Account for a popular profile that automatically approves contact requests "
 "as \"Friends\"."
 msgstr "Compte qui accepte automatiquement les demandes d'ajout en tant qu'ami."
 
-#: mod/settings.php:1074
+#: mod/settings.php:1078
 msgid "Private Forum [Experimental]"
 msgstr "Forum privé [expérimental]"
 
-#: mod/settings.php:1075
+#: mod/settings.php:1079
 msgid "Requires manual approval of contact requests."
 msgstr "Les demandes de participation au forum nécessitent une approbation."
 
-#: mod/settings.php:1086
+#: mod/settings.php:1090
 msgid "OpenID:"
 msgstr "OpenID:"
 
-#: mod/settings.php:1086
+#: mod/settings.php:1090
 msgid "(Optional) Allow this OpenID to login to this account."
 msgstr "&amp;nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte."
 
-#: mod/settings.php:1094
+#: mod/settings.php:1098
 msgid "Publish your default profile in your local site directory?"
 msgstr "Publier votre profil par défaut sur l'annuaire local de ce site ?"
 
-#: mod/settings.php:1094
+#: mod/settings.php:1098
 #, php-format
 msgid ""
-"Your profile will be published in the global friendica directories (e.g. <a "
-"href=\"%s\">%s</a>). Your profile will be visible in public."
+"Your profile will be published in this node's <a href=\"%s\">local "
+"directory</a>. Your profile details may be publicly visible depending on the"
+" system settings."
 msgstr ""
 
-#: mod/settings.php:1100
+#: mod/settings.php:1104
 msgid "Publish your default profile in the global social directory?"
 msgstr "Publier votre profil par défaut sur l'annuaire global ?"
 
-#: mod/settings.php:1100
+#: mod/settings.php:1104
 #, php-format
 msgid ""
-"Your profile will be published in this node's <a href=\"%s\">local "
-"directory</a>. Your profile details may be publicly visible depending on the"
-" system settings."
+"Your profile will be published in the global friendica directories (e.g. <a "
+"href=\"%s\">%s</a>). Your profile will be visible in public."
 msgstr ""
 
-#: mod/settings.php:1107
+#: mod/settings.php:1111
 msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?"
 
-#: mod/settings.php:1107
+#: mod/settings.php:1111
 msgid ""
 "Your contact list won't be shown in your default profile page. You can "
 "decide to show your contact list separately for each additional profile you "
 "create"
 msgstr ""
 
-#: mod/settings.php:1111
+#: mod/settings.php:1115
 msgid "Hide your profile details from anonymous viewers?"
 msgstr ""
 
-#: mod/settings.php:1111
+#: mod/settings.php:1115
 msgid ""
 "Anonymous visitors will only see your profile picture, your display name and"
-" the nickname you are using on your profile page. Disables posting public "
-"messages to Diaspora and other networks."
+" the nickname you are using on your profile page. Your public posts and "
+"replies will still be accessible by other means."
 msgstr ""
 
-#: mod/settings.php:1115
+#: mod/settings.php:1119
 msgid "Allow friends to post to your profile page?"
 msgstr "Autoriser vos amis à publier sur votre profil ?"
 
-#: mod/settings.php:1115
+#: mod/settings.php:1119
 msgid ""
 "Your contacts may write posts on your profile wall. These posts will be "
 "distributed to your contacts"
 msgstr ""
 
-#: mod/settings.php:1119
+#: mod/settings.php:1123
 msgid "Allow friends to tag your posts?"
 msgstr "Autoriser vos amis à étiqueter vos publications?"
 
-#: mod/settings.php:1119
+#: mod/settings.php:1123
 msgid "Your contacts can add additional tags to your posts."
 msgstr ""
 
-#: mod/settings.php:1123
+#: mod/settings.php:1127
 msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?"
 
-#: mod/settings.php:1123
+#: mod/settings.php:1127
 msgid ""
 "If you like, Friendica may suggest new members to add you as a contact."
 msgstr ""
 
-#: mod/settings.php:1127
+#: mod/settings.php:1131
 msgid "Permit unknown people to send you private mail?"
 msgstr "Autoriser les messages privés d'inconnus?"
 
-#: mod/settings.php:1127
+#: mod/settings.php:1131
 msgid ""
 "Friendica network users may send you private messages even if they are not "
 "in your contact list."
 msgstr ""
 
-#: mod/settings.php:1131
+#: mod/settings.php:1135
 msgid "Profile is <strong>not published</strong>."
 msgstr "Ce profil n'est <strong>pas publié</strong>."
 
-#: mod/settings.php:1137
+#: mod/settings.php:1141
 #, php-format
 msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
 msgstr "L’adresse de votre profil est <strong>'%s'</strong> ou '%s'."
 
-#: mod/settings.php:1144
+#: mod/settings.php:1148
 msgid "Automatically expire posts after this many days:"
 msgstr "Les publications expirent automatiquement après (en jours) :"
 
-#: mod/settings.php:1144
+#: mod/settings.php:1148
 msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr "Si ce champ est vide, les publications n'expireront pas. Les publications expirées seront supprimées"
 
-#: mod/settings.php:1145
+#: mod/settings.php:1149
 msgid "Advanced expiration settings"
 msgstr "Réglages avancés de l'expiration"
 
-#: mod/settings.php:1146
+#: mod/settings.php:1150
 msgid "Advanced Expiration"
 msgstr "Expiration (avancé)"
 
-#: mod/settings.php:1147
+#: mod/settings.php:1151
 msgid "Expire posts:"
 msgstr "Faire expirer les publications :"
 
-#: mod/settings.php:1148
+#: mod/settings.php:1152
 msgid "Expire personal notes:"
 msgstr "Faire expirer les notes personnelles :"
 
-#: mod/settings.php:1149
+#: mod/settings.php:1153
 msgid "Expire starred posts:"
 msgstr "Faire expirer les publications marqués :"
 
-#: mod/settings.php:1150
+#: mod/settings.php:1154
 msgid "Expire photos:"
 msgstr "Faire expirer les photos :"
 
-#: mod/settings.php:1151
+#: mod/settings.php:1155
 msgid "Only expire posts by others:"
 msgstr "Faire expirer seulement les publications des autres:"
 
-#: mod/settings.php:1181
+#: mod/settings.php:1185
 msgid "Account Settings"
 msgstr "Compte"
 
-#: mod/settings.php:1189
+#: mod/settings.php:1193
 msgid "Password Settings"
 msgstr "Réglages de mot de passe"
 
-#: mod/settings.php:1191
+#: mod/settings.php:1195
 msgid "Leave password fields blank unless changing"
 msgstr "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer"
 
-#: mod/settings.php:1192
+#: mod/settings.php:1196
 msgid "Current Password:"
 msgstr "Mot de passe actuel :"
 
-#: mod/settings.php:1192 mod/settings.php:1193
+#: mod/settings.php:1196 mod/settings.php:1197
 msgid "Your current password to confirm the changes"
 msgstr "Votre mot de passe actuel pour confirmer les modifications"
 
-#: mod/settings.php:1193
+#: mod/settings.php:1197
 msgid "Password:"
 msgstr "Mot de passe :"
 
-#: mod/settings.php:1197
+#: mod/settings.php:1201
 msgid "Basic Settings"
 msgstr "Réglages de base"
 
-#: mod/settings.php:1198 src/Model/Profile.php:736
+#: mod/settings.php:1202 src/Model/Profile.php:739
 msgid "Full Name:"
 msgstr "Nom complet :"
 
-#: mod/settings.php:1199
+#: mod/settings.php:1203
 msgid "Email Address:"
 msgstr "Adresse courriel :"
 
-#: mod/settings.php:1200
+#: mod/settings.php:1204
 msgid "Your Timezone:"
 msgstr "Votre fuseau horaire :"
 
-#: mod/settings.php:1201
+#: mod/settings.php:1205
 msgid "Your Language:"
 msgstr "Votre langue :"
 
-#: mod/settings.php:1201
+#: mod/settings.php:1205
 msgid ""
 "Set the language we use to show you friendica interface and to send you "
 "emails"
 msgstr "Détermine la langue que nous utilisons pour afficher votre interface Friendica et pour vous envoyer des courriels"
 
-#: mod/settings.php:1202
+#: mod/settings.php:1206
 msgid "Default Post Location:"
 msgstr "Emplacement de publication par défaut:"
 
-#: mod/settings.php:1203
+#: mod/settings.php:1207
 msgid "Use Browser Location:"
 msgstr "Utiliser la localisation géographique du navigateur:"
 
-#: mod/settings.php:1206
+#: mod/settings.php:1210
 msgid "Security and Privacy Settings"
 msgstr "Réglages de sécurité et vie privée"
 
-#: mod/settings.php:1208
+#: mod/settings.php:1212
 msgid "Maximum Friend Requests/Day:"
 msgstr "Nombre maximal de requêtes d'amitié par jour :"
 
-#: mod/settings.php:1208 mod/settings.php:1237
+#: mod/settings.php:1212 mod/settings.php:1241
 msgid "(to prevent spam abuse)"
 msgstr "(pour limiter l'impact du spam)"
 
-#: mod/settings.php:1209
+#: mod/settings.php:1213
 msgid "Default Post Permissions"
 msgstr "Permissions de publication par défaut"
 
-#: mod/settings.php:1210
+#: mod/settings.php:1214
 msgid "(click to open/close)"
 msgstr "(cliquer pour ouvrir/fermer)"
 
-#: mod/settings.php:1220
+#: mod/settings.php:1224
 msgid "Default Private Post"
 msgstr "Message privé par défaut"
 
-#: mod/settings.php:1221
+#: mod/settings.php:1225
 msgid "Default Public Post"
 msgstr "Message publique par défaut"
 
-#: mod/settings.php:1225
+#: mod/settings.php:1229
 msgid "Default Permissions for New Posts"
 msgstr "Permissions par défaut pour les nouvelles publications"
 
-#: mod/settings.php:1237
+#: mod/settings.php:1241
 msgid "Maximum private messages per day from unknown people:"
 msgstr "Maximum de messages privés d'inconnus par jour :"
 
-#: mod/settings.php:1240
+#: mod/settings.php:1244
 msgid "Notification Settings"
 msgstr "Réglages de notification"
 
-#: mod/settings.php:1241
+#: mod/settings.php:1245
 msgid "Send a notification email when:"
 msgstr "Envoyer un courriel de notification quand:"
 
-#: mod/settings.php:1242
+#: mod/settings.php:1246
 msgid "You receive an introduction"
 msgstr "Vous recevez une introduction"
 
-#: mod/settings.php:1243
+#: mod/settings.php:1247
 msgid "Your introductions are confirmed"
 msgstr "Vos introductions sont confirmées"
 
-#: mod/settings.php:1244
+#: mod/settings.php:1248
 msgid "Someone writes on your profile wall"
 msgstr "Quelqu'un écrit sur votre mur"
 
-#: mod/settings.php:1245
+#: mod/settings.php:1249
 msgid "Someone writes a followup comment"
 msgstr "Quelqu'un vous commente"
 
-#: mod/settings.php:1246
+#: mod/settings.php:1250
 msgid "You receive a private message"
 msgstr "Vous recevez un message privé"
 
-#: mod/settings.php:1247
+#: mod/settings.php:1251
 msgid "You receive a friend suggestion"
 msgstr "Vous avez reçu une suggestion d'ami"
 
-#: mod/settings.php:1248
+#: mod/settings.php:1252
 msgid "You are tagged in a post"
 msgstr "Vous avez été étiqueté dans une publication"
 
-#: mod/settings.php:1249
+#: mod/settings.php:1253
 msgid "You are poked/prodded/etc. in a post"
 msgstr "Vous avez été sollicité dans une publication"
 
-#: mod/settings.php:1251
+#: mod/settings.php:1255
 msgid "Activate desktop notifications"
 msgstr "Activer les notifications de bureau"
 
-#: mod/settings.php:1251
+#: mod/settings.php:1255
 msgid "Show desktop popup on new notifications"
 msgstr "Afficher dans des pop-ups les nouvelles notifications"
 
-#: mod/settings.php:1253
-msgid "Text-only notification emails"
-msgstr "Courriels de notification en format texte"
+#: mod/settings.php:1257
+msgid "Text-only notification emails"
+msgstr "Courriels de notification en format texte"
+
+#: mod/settings.php:1259
+msgid "Send text only notification emails, without the html part"
+msgstr "Envoyer le texte des courriels de notification, sans la composante html"
+
+#: mod/settings.php:1261
+msgid "Show detailled notifications"
+msgstr "Notifications détaillées"
+
+#: mod/settings.php:1263
+msgid ""
+"Per default, notifications are condensed to a single notification per item. "
+"When enabled every notification is displayed."
+msgstr ""
+
+#: mod/settings.php:1265
+msgid "Advanced Account/Page Type Settings"
+msgstr "Paramètres avancés de compte/page"
+
+#: mod/settings.php:1266
+msgid "Change the behaviour of this account for special situations"
+msgstr "Modifier le comportement de ce compte dans certaines situations"
+
+#: mod/settings.php:1269
+msgid "Relocate"
+msgstr "Relocaliser"
+
+#: mod/settings.php:1270
+msgid ""
+"If you have moved this profile from another server, and some of your "
+"contacts don't receive your updates, try pushing this button."
+msgstr "Si vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton."
+
+#: mod/settings.php:1271
+msgid "Resend relocate message to contacts"
+msgstr "Renvoyer un message de relocalisation aux contacts."
+
+#: mod/subthread.php:104
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s suit les %3$s de %2$s"
+
+#: mod/suggest.php:38
+msgid "Do you really want to delete this suggestion?"
+msgstr "Voulez-vous vraiment supprimer cette suggestion ?"
+
+#: mod/suggest.php:74
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h."
+
+#: mod/suggest.php:87 mod/suggest.php:107
+msgid "Ignore/Hide"
+msgstr "Ignorer/cacher"
+
+#: mod/suggest.php:117 view/theme/vier/theme.php:202 src/Content/Widget.php:64
+msgid "Friend Suggestions"
+msgstr "Suggestions d'amitiés/contacts"
+
+#: mod/tagrm.php:30
+msgid "Tag(s) removed"
+msgstr ""
+
+#: mod/tagrm.php:98
+msgid "Remove Item Tag"
+msgstr "Enlever l'étiquette de l'élément"
+
+#: mod/tagrm.php:100
+msgid "Select a tag to remove: "
+msgstr "Sélectionner une étiquette à supprimer :"
+
+#: mod/uimport.php:29
+msgid "User imports on closed servers can only be done by an administrator."
+msgstr ""
+
+#: mod/uimport.php:55
+msgid "Move account"
+msgstr "Migrer le compte"
+
+#: mod/uimport.php:56
+msgid "You can import an account from another Friendica server."
+msgstr "Vous pouvez importer un compte d'un autre serveur Friendica."
+
+#: mod/uimport.php:57
+msgid ""
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also"
+" to inform your friends that you moved here."
+msgstr "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici."
+
+#: mod/uimport.php:58
+msgid ""
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (GNU Social/Statusnet) or from Diaspora"
+msgstr "Cette fonctionalité est expérimentale. Il n'est pas possible d'importer des contacts depuis le réseau OStatus (GNU Social/Statusnet) ou depuis Diaspora."
+
+#: mod/uimport.php:59
+msgid "Account file"
+msgstr "Fichier du compte"
+
+#: mod/uimport.php:59
+msgid ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
+msgstr "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\""
+
+#: mod/unfollow.php:34 mod/unfollow.php:90
+msgid "You aren't following this contact."
+msgstr ""
+
+#: mod/unfollow.php:44 mod/unfollow.php:96
+msgid "Unfollowing is currently not supported by your network."
+msgstr ""
+
+#: mod/unfollow.php:65
+msgid "Contact unfollowed"
+msgstr ""
+
+#: mod/unfollow.php:115 src/Module/Contact.php:574
+msgid "Disconnect/Unfollow"
+msgstr "Se déconnecter/Ne plus suivre"
+
+#: mod/videos.php:133
+msgid "Do you really want to delete this video?"
+msgstr "Voulez-vous vraiment supprimer cette vidéo?"
+
+#: mod/videos.php:138
+msgid "Delete Video"
+msgstr "Supprimer la vidéo"
+
+#: mod/videos.php:200
+msgid "No videos selected"
+msgstr "Pas de vidéo sélectionné"
+
+#: mod/videos.php:386
+msgid "Recent Videos"
+msgstr "Vidéos récente"
+
+#: mod/videos.php:388
+msgid "Upload New Videos"
+msgstr "Téléversé une nouvelle vidéo"
+
+#: mod/viewcontacts.php:94
+msgid "No contacts."
+msgstr "Aucun contact."
+
+#: mod/viewcontacts.php:110 src/Module/Contact.php:607
+#: src/Module/Contact.php:1019
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Visiter le profil de %s [%s]"
+
+#: mod/wall_attach.php:27 mod/wall_attach.php:34 mod/wall_attach.php:89
+#: mod/wall_upload.php:40 mod/wall_upload.php:56 mod/wall_upload.php:114
+#: mod/wall_upload.php:165 mod/wall_upload.php:168
+msgid "Invalid request."
+msgstr "Requête invalide."
+
+#: mod/wall_attach.php:107
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise"
 
-#: mod/settings.php:1255
-msgid "Send text only notification emails, without the html part"
-msgstr "Envoyer le texte des courriels de notification, sans la composante html"
+#: mod/wall_attach.php:107
+msgid "Or - did you try to upload an empty file?"
+msgstr "Ou — auriez-vous essayé de télécharger un fichier vide ?"
 
-#: mod/settings.php:1257
-msgid "Show detailled notifications"
-msgstr "Notifications détaillées"
+#: mod/wall_attach.php:118
+#, php-format
+msgid "File exceeds size limit of %s"
+msgstr "La taille du fichier dépasse la limite de %s"
 
-#: mod/settings.php:1259
-msgid ""
-"Per default, notifications are condensed to a single notification per item. "
-"When enabled every notification is displayed."
-msgstr ""
+#: mod/wall_attach.php:142 mod/wall_attach.php:158
+msgid "File upload failed."
+msgstr "Le téléversement a échoué."
 
-#: mod/settings.php:1261
-msgid "Advanced Account/Page Type Settings"
-msgstr "Paramètres avancés de compte/page"
+#: mod/wallmessage.php:50 mod/wallmessage.php:113
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message."
 
-#: mod/settings.php:1262
-msgid "Change the behaviour of this account for special situations"
-msgstr "Modifier le comportement de ce compte dans certaines situations"
+#: mod/wallmessage.php:61
+msgid "Unable to check your home location."
+msgstr "Impossible de vérifier votre localisation."
 
-#: mod/settings.php:1265
-msgid "Relocate"
-msgstr "Relocaliser"
+#: mod/wallmessage.php:87 mod/wallmessage.php:96
+msgid "No recipient."
+msgstr "Pas de destinataire."
 
-#: mod/settings.php:1266
+#: mod/wallmessage.php:127
+#, php-format
 msgid ""
-"If you have moved this profile from another server, and some of your "
-"contacts don't receive your updates, try pushing this button."
-msgstr "Si vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton."
-
-#: mod/settings.php:1267
-msgid "Resend relocate message to contacts"
-msgstr "Renvoyer un message de relocalisation aux contacts."
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus."
 
-#: view/theme/duepuntozero/config.php:54 src/Model/User.php:502
+#: view/theme/duepuntozero/config.php:54 src/Model/User.php:599
 msgid "default"
 msgstr "défaut"
 
@@ -7484,67 +7110,73 @@ msgstr "Couleur d'arrière-plan de la page de login"
 msgid "Leave background image and color empty for theme defaults"
 msgstr "Laisser l'image et la couleur de fond vides pour les paramètres par défaut du thème"
 
-#: view/theme/frio/theme.php:238
+#: view/theme/frio/theme.php:250
 msgid "Guest"
 msgstr "Invité"
 
-#: view/theme/frio/theme.php:243
+#: view/theme/frio/theme.php:255
 msgid "Visitor"
 msgstr "Visiteur"
 
-#: view/theme/frio/theme.php:256 src/Content/Nav.php:97
-#: src/Module/Login.php:312
+#: view/theme/frio/theme.php:268 src/Content/Nav.php:149
+#: src/Module/Login.php:319
 msgid "Logout"
 msgstr "Se déconnecter"
 
-#: view/theme/frio/theme.php:256 src/Content/Nav.php:97
+#: view/theme/frio/theme.php:268 src/Content/Nav.php:149
 msgid "End this session"
 msgstr "Mettre fin à cette session"
 
-#: view/theme/frio/theme.php:259 src/Content/Nav.php:100
-#: src/Content/Nav.php:186
+#: view/theme/frio/theme.php:271 src/Content/Nav.php:152
+#: src/Model/Profile.php:889 src/Module/Contact.php:657
+#: src/Module/Contact.php:848
+msgid "Status"
+msgstr "Statut"
+
+#: view/theme/frio/theme.php:271 src/Content/Nav.php:152
+#: src/Content/Nav.php:238
 msgid "Your posts and conversations"
 msgstr "Vos publications et conversations"
 
-#: view/theme/frio/theme.php:260 src/Content/Nav.php:101
+#: view/theme/frio/theme.php:272 src/Content/Nav.php:153
 msgid "Your profile page"
 msgstr "Votre page de profil"
 
-#: view/theme/frio/theme.php:261 src/Content/Nav.php:102
+#: view/theme/frio/theme.php:273 src/Content/Nav.php:154
 msgid "Your photos"
 msgstr "Vos photos"
 
-#: view/theme/frio/theme.php:262 src/Content/Nav.php:103
-#: src/Model/Profile.php:910 src/Model/Profile.php:913
+#: view/theme/frio/theme.php:274 src/Content/Nav.php:155
+#: src/Model/Profile.php:913 src/Model/Profile.php:916
 msgid "Videos"
 msgstr "Vidéos"
 
-#: view/theme/frio/theme.php:262 src/Content/Nav.php:103
+#: view/theme/frio/theme.php:274 src/Content/Nav.php:155
 msgid "Your videos"
 msgstr "Vos vidéos"
 
-#: view/theme/frio/theme.php:263 src/Content/Nav.php:104
+#: view/theme/frio/theme.php:275 src/Content/Nav.php:156
 msgid "Your events"
 msgstr "Vos événements"
 
-#: view/theme/frio/theme.php:266 src/Content/Nav.php:183
+#: view/theme/frio/theme.php:278 src/Content/Nav.php:235
 msgid "Conversations from your friends"
 msgstr "Conversations de vos amis"
 
-#: view/theme/frio/theme.php:267 src/Content/Nav.php:170
-#: src/Model/Profile.php:925 src/Model/Profile.php:936
+#: view/theme/frio/theme.php:279 src/Content/Nav.php:222
+#: src/Model/Profile.php:928 src/Model/Profile.php:939
 msgid "Events and Calendar"
 msgstr "Événements et agenda"
 
-#: view/theme/frio/theme.php:268 src/Content/Nav.php:196
+#: view/theme/frio/theme.php:280 src/Content/Nav.php:248
 msgid "Private mail"
 msgstr "Messages privés"
 
-#: view/theme/frio/theme.php:269 src/Content/Nav.php:207
+#: view/theme/frio/theme.php:281 src/Content/Nav.php:259
 msgid "Account settings"
 msgstr "Compte"
 
-#: view/theme/frio/theme.php:270 src/Content/Nav.php:213
+#: view/theme/frio/theme.php:282 src/Content/Nav.php:265
 msgid "Manage/edit friends and contacts"
 msgstr "Gérer/éditer les amitiés et contacts"
 
@@ -7576,11 +7208,11 @@ msgstr "Taille de police des zones de texte"
 msgid "Comma separated list of helper forums"
 msgstr "Liste de forums d'aide, séparés par des virgules"
 
-#: view/theme/vier/config.php:115 src/Core/ACL.php:309
+#: view/theme/vier/config.php:115 src/Core/ACL.php:298
 msgid "don't show"
 msgstr "cacher"
 
-#: view/theme/vier/config.php:115 src/Core/ACL.php:308
+#: view/theme/vier/config.php:115 src/Core/ACL.php:297
 msgid "show"
 msgstr "montrer"
 
@@ -7592,7 +7224,7 @@ msgstr "Définir le style"
 msgid "Community Pages"
 msgstr "Pages de Communauté"
 
-#: view/theme/vier/config.php:124 view/theme/vier/theme.php:150
+#: view/theme/vier/config.php:124 view/theme/vier/theme.php:149
 msgid "Community Profiles"
 msgstr "Profils communautaires"
 
@@ -7600,7 +7232,7 @@ msgstr "Profils communautaires"
 msgid "Help or @NewHere ?"
 msgstr "Aide ou @NewHere?"
 
-#: view/theme/vier/config.php:126 view/theme/vier/theme.php:388
+#: view/theme/vier/config.php:126 view/theme/vier/theme.php:386
 msgid "Connect Services"
 msgstr "Connecter des services"
 
@@ -7608,560 +7240,812 @@ msgstr "Connecter des services"
 msgid "Find Friends"
 msgstr "Trouver des amis"
 
-#: view/theme/vier/config.php:128 view/theme/vier/theme.php:181
+#: view/theme/vier/config.php:128 view/theme/vier/theme.php:179
 msgid "Last users"
 msgstr "Derniers utilisateurs"
 
-#: view/theme/vier/theme.php:199 src/Content/Widget.php:59
+#: view/theme/vier/theme.php:197 src/Content/Widget.php:59
 msgid "Find People"
 msgstr "Trouver des personnes"
 
-#: view/theme/vier/theme.php:200 src/Content/Widget.php:60
+#: view/theme/vier/theme.php:198 src/Content/Widget.php:60
 msgid "Enter name or interest"
 msgstr "Entrez un nom ou un centre d'intérêt"
 
-#: view/theme/vier/theme.php:202 src/Content/Widget.php:62
+#: view/theme/vier/theme.php:200 src/Content/Widget.php:62
 msgid "Examples: Robert Morgenstein, Fishing"
 msgstr "Exemples : Robert Morgenstein, Pêche"
 
-#: view/theme/vier/theme.php:205 src/Content/Widget.php:65
+#: view/theme/vier/theme.php:203 src/Content/Widget.php:65
 msgid "Similar Interests"
 msgstr "Intérêts similaires"
 
-#: view/theme/vier/theme.php:206 src/Content/Widget.php:66
+#: view/theme/vier/theme.php:204 src/Content/Widget.php:66
 msgid "Random Profile"
 msgstr "Profil au hasard"
 
-#: view/theme/vier/theme.php:207 src/Content/Widget.php:67
+#: view/theme/vier/theme.php:205 src/Content/Widget.php:67
 msgid "Invite Friends"
 msgstr "Inviter des amis"
 
-#: view/theme/vier/theme.php:210 src/Content/Widget.php:70
+#: view/theme/vier/theme.php:208 src/Content/Widget.php:70
 msgid "Local Directory"
 msgstr "Annuaire local"
 
-#: view/theme/vier/theme.php:255 src/Content/ForumManager.php:127
+#: view/theme/vier/theme.php:253 src/Content/ForumManager.php:132
 msgid "External link to forum"
 msgstr "Lien sortant vers le forum"
 
-#: view/theme/vier/theme.php:291
+#: view/theme/vier/theme.php:289
 msgid "Quick Start"
 msgstr "Démarrage rapide"
 
-#: src/Core/UserImport.php:104
-msgid "Error decoding account file"
-msgstr "Une erreur a été détecté en décodant un fichier utilisateur"
-
-#: src/Core/UserImport.php:110
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?"
-
-#: src/Core/UserImport.php:118
+#: src/Core/Console/ArchiveContact.php:65
 #, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "L'utilisateur '%s' existe déjà sur ce serveur!"
+msgid "Could not find any unarchived contact entry for this URL (%s)"
+msgstr ""
 
-#: src/Core/UserImport.php:151
-msgid "User creation error"
-msgstr "Erreur de création d'utilisateur"
+#: src/Core/Console/ArchiveContact.php:70
+msgid "The contact entries have been archived"
+msgstr ""
 
-#: src/Core/UserImport.php:169
-msgid "User profile creation error"
-msgstr "Erreur de création du profil utilisateur"
+#: src/Core/Console/NewPassword.php:73
+msgid "Enter new password: "
+msgstr ""
+
+#: src/Core/Console/NewPassword.php:78 src/Model/User.php:313
+msgid "Password can't be empty"
+msgstr ""
 
-#: src/Core/UserImport.php:213
+#: src/Core/Console/PostUpdate.php:49
 #, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d contacts non importés"
-msgstr[1] "%d contacts non importés"
+msgid "Post update version number has been set to %s."
+msgstr ""
 
-#: src/Core/UserImport.php:278
-msgid "Done. You can now login with your username and password"
-msgstr "Action réalisée. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe"
+#: src/Core/Console/PostUpdate.php:57
+msgid "Execute pending post updates."
+msgstr ""
+
+#: src/Core/Console/PostUpdate.php:63
+msgid "All pending post updates are done."
+msgstr ""
 
-#: src/Core/ACL.php:295
+#: src/Core/ACL.php:284
 msgid "Post to Email"
 msgstr "Publier aux courriels"
 
-#: src/Core/ACL.php:301
+#: src/Core/ACL.php:290
 msgid "Hide your profile details from unknown viewers?"
 msgstr "Cacher les détails du profil aux visiteurs inconnus?"
 
-#: src/Core/ACL.php:300
+#: src/Core/ACL.php:289
 #, php-format
 msgid "Connectors disabled, since \"%s\" is enabled."
 msgstr "Les connecteurs sont désactivés parce que \"%s\" est activé."
 
-#: src/Core/ACL.php:307
+#: src/Core/ACL.php:296
 msgid "Visible to everybody"
 msgstr "Visible par tout le monde"
 
-#: src/Core/ACL.php:319
-msgid "Close"
-msgstr "Fermer"
+#: src/Core/ACL.php:308
+msgid "Close"
+msgstr "Fermer"
+
+#: src/Core/Authentication.php:88
+msgid "Welcome "
+msgstr "Bienvenue "
+
+#: src/Core/Authentication.php:89
+msgid "Please upload a profile photo."
+msgstr "Merci d'illustrer votre profil d'une image."
+
+#: src/Core/Authentication.php:91
+msgid "Welcome back "
+msgstr "Bienvenue à nouveau, "
+
+#: src/Core/Installer.php:158
+msgid ""
+"The database configuration file \"config/local.ini.php\" could not be "
+"written. Please use the enclosed text to create a configuration file in your"
+" web server root."
+msgstr ""
+
+#: src/Core/Installer.php:174
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql."
+
+#: src/Core/Installer.php:175 src/Module/Install.php:262
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Référez-vous au fichier \"INSTALL.txt\"."
+
+#: src/Core/Installer.php:237
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web."
+
+#: src/Core/Installer.php:238
+msgid ""
+"If you don't have a command line version of PHP installed on your server, "
+"you will not be able to run the background processing. See <a "
+"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
+"up-the-worker'>'Setup the worker'</a>"
+msgstr ""
+
+#: src/Core/Installer.php:242
+msgid "PHP executable path"
+msgstr "Chemin vers l'exécutable de PHP"
+
+#: src/Core/Installer.php:242
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation."
+
+#: src/Core/Installer.php:247
+msgid "Command line PHP"
+msgstr "Version \"ligne de commande\" de PHP"
+
+#: src/Core/Installer.php:256
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)"
+
+#: src/Core/Installer.php:257
+msgid "Found PHP version: "
+msgstr "Version de PHP :"
+
+#: src/Core/Installer.php:259
+msgid "PHP cli binary"
+msgstr "PHP cli binary"
+
+#: src/Core/Installer.php:272
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé."
+
+#: src/Core/Installer.php:273
+msgid "This is required for message delivery to work."
+msgstr "Ceci est requis pour que la livraison des messages fonctionne."
+
+#: src/Core/Installer.php:278
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
+
+#: src/Core/Installer.php:310
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement"
+
+#: src/Core/Installer.php:311
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\"."
+
+#: src/Core/Installer.php:314
+msgid "Generate encryption keys"
+msgstr "Générer les clés de chiffrement"
+
+#: src/Core/Installer.php:365
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Erreur : Le module \"rewrite\" du serveur web Apache est requis mais pas installé."
+
+#: src/Core/Installer.php:370
+msgid "Apache mod_rewrite module"
+msgstr "Module mod_rewrite Apache"
+
+#: src/Core/Installer.php:376
+msgid "Error: PDO or MySQLi PHP module required but not installed."
+msgstr ""
+
+#: src/Core/Installer.php:381
+msgid "Error: The MySQL driver for PDO is not installed."
+msgstr ""
+
+#: src/Core/Installer.php:385
+msgid "PDO or MySQLi PHP module"
+msgstr ""
+
+#: src/Core/Installer.php:393
+msgid "Error, XML PHP module required but not installed."
+msgstr "Erreur : le module PHP XML requis est absent."
+
+#: src/Core/Installer.php:397
+msgid "XML PHP module"
+msgstr "Module PHP XML"
+
+#: src/Core/Installer.php:400 tests/src/Core/InstallerTest.php:94
+msgid "libCurl PHP module"
+msgstr "Module libCurl de PHP"
+
+#: src/Core/Installer.php:401 tests/src/Core/InstallerTest.php:95
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Erreur : Le module PHP \"libCURL\" est requis mais pas installé."
+
+#: src/Core/Installer.php:407 tests/src/Core/InstallerTest.php:104
+msgid "GD graphics PHP module"
+msgstr "Module GD (graphiques) de PHP"
+
+#: src/Core/Installer.php:408 tests/src/Core/InstallerTest.php:105
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Erreur : Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé."
+
+#: src/Core/Installer.php:414 tests/src/Core/InstallerTest.php:114
+msgid "OpenSSL PHP module"
+msgstr "Module OpenSSL de PHP"
+
+#: src/Core/Installer.php:415 tests/src/Core/InstallerTest.php:115
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Erreur : Le module PHP \"openssl\" est requis mais pas installé."
+
+#: src/Core/Installer.php:421 tests/src/Core/InstallerTest.php:124
+msgid "mb_string PHP module"
+msgstr "Module mb_string de PHP"
+
+#: src/Core/Installer.php:422 tests/src/Core/InstallerTest.php:125
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Erreur : le module PHP mb_string est requis mais pas installé."
+
+#: src/Core/Installer.php:428 tests/src/Core/InstallerTest.php:134
+msgid "iconv PHP module"
+msgstr ""
+
+#: src/Core/Installer.php:429 tests/src/Core/InstallerTest.php:135
+msgid "Error: iconv PHP module required but not installed."
+msgstr "Erreur : Le module PHP iconv requis est absent."
+
+#: src/Core/Installer.php:435 tests/src/Core/InstallerTest.php:144
+msgid "POSIX PHP module"
+msgstr ""
+
+#: src/Core/Installer.php:436 tests/src/Core/InstallerTest.php:145
+msgid "Error: POSIX PHP module required but not installed."
+msgstr ""
+
+#: src/Core/Installer.php:459
+msgid ""
+"The web installer needs to be able to create a file called \"local.ini.php\""
+" in the \"config\" folder of your web server and it is unable to do so."
+msgstr ""
+
+#: src/Core/Installer.php:460
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez."
+
+#: src/Core/Installer.php:461
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named local.ini.php in your Friendica \"config\" folder."
+msgstr ""
+
+#: src/Core/Installer.php:462
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\"."
+
+#: src/Core/Installer.php:465
+msgid "config/local.ini.php is writable"
+msgstr ""
+
+#: src/Core/Installer.php:485
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu."
+
+#: src/Core/Installer.php:486
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica."
+
+#: src/Core/Installer.php:487
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier."
+
+#: src/Core/Installer.php:488
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient."
 
-#: src/Core/Console/NewPassword.php:78
-msgid "Enter new password: "
-msgstr ""
+#: src/Core/Installer.php:491
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 est autorisé à l écriture"
 
-#: src/Core/Console/NewPassword.php:83 src/Model/User.php:262
-msgid "Password can't be empty"
+#: src/Core/Installer.php:519
+msgid ""
+"Url rewrite in .htaccess is not working. Make sure you copied .htaccess-dist"
+" to .htaccess."
 msgstr ""
 
-#: src/Core/Console/ArchiveContact.php:67
-#, php-format
-msgid "Could not find any unarchived contact entry for this URL (%s)"
+#: src/Core/Installer.php:521
+msgid "Error message from Curl when fetching"
 msgstr ""
 
-#: src/Core/Console/ArchiveContact.php:72
-msgid "The contact entries have been archived"
-msgstr ""
+#: src/Core/Installer.php:526
+msgid "Url rewrite is working"
+msgstr "La réécriture d'URL fonctionne."
+
+#: src/Core/Installer.php:555 tests/src/Core/InstallerTest.php:317
+msgid "ImageMagick PHP extension is not installed"
+msgstr "L'extension PHP ImageMagick n'est pas installée"
+
+#: src/Core/Installer.php:557
+msgid "ImageMagick PHP extension is installed"
+msgstr "L’extension PHP ImageMagick est installée"
+
+#: src/Core/Installer.php:559 tests/src/Core/InstallerTest.php:277
+#: tests/src/Core/InstallerTest.php:301
+msgid "ImageMagick supports GIF"
+msgstr "ImageMagick supporte le format GIF"
+
+#: src/Core/Installer.php:581
+msgid "Could not connect to database."
+msgstr "Impossible de se connecter à la base."
+
+#: src/Core/Installer.php:588
+msgid "Database already in use."
+msgstr "Base de données déjà en cours d'utilisation."
 
-#: src/Core/NotificationsManager.php:171
+#: src/Core/NotificationsManager.php:173
 msgid "System"
 msgstr "Système"
 
-#: src/Core/NotificationsManager.php:192 src/Content/Nav.php:124
-#: src/Content/Nav.php:186
+#: src/Core/NotificationsManager.php:194 src/Content/Nav.php:176
+#: src/Content/Nav.php:238
 msgid "Home"
 msgstr "Profil"
 
-#: src/Core/NotificationsManager.php:199 src/Content/Nav.php:190
+#: src/Core/NotificationsManager.php:201 src/Content/Nav.php:242
 msgid "Introductions"
 msgstr "Introductions"
 
-#: src/Core/NotificationsManager.php:256 src/Core/NotificationsManager.php:268
+#: src/Core/NotificationsManager.php:263 src/Core/NotificationsManager.php:275
 #, php-format
 msgid "%s commented on %s's post"
 msgstr "%s a commenté la publication de %s"
 
-#: src/Core/NotificationsManager.php:267
+#: src/Core/NotificationsManager.php:274
 #, php-format
 msgid "%s created a new post"
 msgstr "%s a créé une nouvelle publication"
 
-#: src/Core/NotificationsManager.php:281
+#: src/Core/NotificationsManager.php:288
 #, php-format
 msgid "%s liked %s's post"
 msgstr "%s a aimé la publication de %s"
 
-#: src/Core/NotificationsManager.php:294
+#: src/Core/NotificationsManager.php:301
 #, php-format
 msgid "%s disliked %s's post"
 msgstr "%s n'a pas aimé la publication de %s"
 
-#: src/Core/NotificationsManager.php:307
+#: src/Core/NotificationsManager.php:314
 #, php-format
 msgid "%s is attending %s's event"
 msgstr "%s participe à l'événement de %s"
 
-#: src/Core/NotificationsManager.php:320
+#: src/Core/NotificationsManager.php:327
 #, php-format
 msgid "%s is not attending %s's event"
 msgstr "%s ne participe pas à l'événement de %s"
 
-#: src/Core/NotificationsManager.php:333
+#: src/Core/NotificationsManager.php:340
 #, php-format
 msgid "%s may attend %s's event"
 msgstr "%s participera peut-être à l'événement de %s"
 
-#: src/Core/NotificationsManager.php:350
+#: src/Core/NotificationsManager.php:373
 #, php-format
 msgid "%s is now friends with %s"
 msgstr "%s est désormais ami(e) avec %s"
 
-#: src/Core/NotificationsManager.php:825
+#: src/Core/NotificationsManager.php:639
 msgid "Friend Suggestion"
 msgstr "Suggestion d'amitié/contact"
 
-#: src/Core/NotificationsManager.php:851
+#: src/Core/NotificationsManager.php:673
 msgid "Friend/Connect Request"
 msgstr "Demande de connexion/relation"
 
-#: src/Core/NotificationsManager.php:851
+#: src/Core/NotificationsManager.php:673
 msgid "New Follower"
 msgstr "Nouvel abonné"
 
-#: src/Core/Install.php:157
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web."
+#: src/Core/UserImport.php:101
+msgid "Error decoding account file"
+msgstr "Une erreur a été détecté en décodant un fichier utilisateur"
 
-#: src/Core/Install.php:158
-msgid ""
-"If you don't have a command line version of PHP installed on your server, "
-"you will not be able to run the background processing. See <a "
-"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
-"up-the-worker'>'Setup the worker'</a>"
-msgstr ""
+#: src/Core/UserImport.php:107
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?"
 
-#: src/Core/Install.php:162
-msgid "PHP executable path"
-msgstr "Chemin vers l'exécutable de PHP"
+#: src/Core/UserImport.php:115
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "L'utilisateur '%s' existe déjà sur ce serveur!"
 
-#: src/Core/Install.php:162
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation."
+#: src/Core/UserImport.php:148
+msgid "User creation error"
+msgstr "Erreur de création d'utilisateur"
 
-#: src/Core/Install.php:167
-msgid "Command line PHP"
-msgstr "Version \"ligne de commande\" de PHP"
+#: src/Core/UserImport.php:166
+msgid "User profile creation error"
+msgstr "Erreur de création du profil utilisateur"
 
-#: src/Core/Install.php:176
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)"
+#: src/Core/UserImport.php:210
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d contacts non importés"
+msgstr[1] "%d contacts non importés"
 
-#: src/Core/Install.php:177
-msgid "Found PHP version: "
-msgstr "Version de PHP :"
+#: src/Core/UserImport.php:275
+msgid "Done. You can now login with your username and password"
+msgstr "Action réalisée. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe"
 
-#: src/Core/Install.php:179
-msgid "PHP cli binary"
-msgstr "PHP cli binary"
+#: src/Util/Temporal.php:148 src/Model/Profile.php:759
+msgid "Birthday:"
+msgstr "Anniversaire :"
 
-#: src/Core/Install.php:189
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé."
+#: src/Util/Temporal.php:152
+msgid "YYYY-MM-DD or MM-DD"
+msgstr "AAAA-MM-JJ ou MM-JJ"
 
-#: src/Core/Install.php:190
-msgid "This is required for message delivery to work."
-msgstr "Ceci est requis pour que la livraison des messages fonctionne."
+#: src/Util/Temporal.php:295
+msgid "never"
+msgstr "jamais"
 
-#: src/Core/Install.php:192
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: src/Util/Temporal.php:302
+msgid "less than a second ago"
+msgstr "il y a moins d'une seconde"
 
-#: src/Core/Install.php:220
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement"
+#: src/Util/Temporal.php:310
+msgid "year"
+msgstr "an"
 
-#: src/Core/Install.php:221
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\"."
+#: src/Util/Temporal.php:310
+msgid "years"
+msgstr "ans"
 
-#: src/Core/Install.php:223
-msgid "Generate encryption keys"
-msgstr "Générer les clés de chiffrement"
+#: src/Util/Temporal.php:311
+msgid "months"
+msgstr "mois"
 
-#: src/Core/Install.php:244
-msgid "libCurl PHP module"
-msgstr "Module libCurl de PHP"
+#: src/Util/Temporal.php:312
+msgid "weeks"
+msgstr "semaines"
 
-#: src/Core/Install.php:245
-msgid "GD graphics PHP module"
-msgstr "Module GD (graphiques) de PHP"
+#: src/Util/Temporal.php:313
+msgid "days"
+msgstr "jours"
 
-#: src/Core/Install.php:246
-msgid "OpenSSL PHP module"
-msgstr "Module OpenSSL de PHP"
+#: src/Util/Temporal.php:314
+msgid "hour"
+msgstr "heure"
 
-#: src/Core/Install.php:247
-msgid "PDO or MySQLi PHP module"
-msgstr ""
+#: src/Util/Temporal.php:314
+msgid "hours"
+msgstr "heures"
 
-#: src/Core/Install.php:248
-msgid "mb_string PHP module"
-msgstr "Module mb_string de PHP"
+#: src/Util/Temporal.php:315
+msgid "minute"
+msgstr "minute"
 
-#: src/Core/Install.php:249
-msgid "XML PHP module"
-msgstr "Module PHP XML"
+#: src/Util/Temporal.php:315
+msgid "minutes"
+msgstr "minutes"
 
-#: src/Core/Install.php:250
-msgid "iconv PHP module"
-msgstr ""
+#: src/Util/Temporal.php:316
+msgid "second"
+msgstr "seconde"
 
-#: src/Core/Install.php:251
-msgid "POSIX PHP module"
+#: src/Util/Temporal.php:316
+msgid "seconds"
+msgstr "secondes"
+
+#: src/Util/Temporal.php:326
+#, php-format
+msgid "in %1$d %2$s"
 msgstr ""
 
-#: src/Core/Install.php:255 src/Core/Install.php:257
-msgid "Apache mod_rewrite module"
-msgstr "Module mod_rewrite Apache"
+#: src/Util/Temporal.php:329
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "il y a %1$d %2$s "
 
-#: src/Core/Install.php:255
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Erreur : Le module \"rewrite\" du serveur web Apache est requis mais pas installé."
+#: src/Content/Text/BBCode.php:423
+msgid "view full size"
+msgstr "voir en pleine taille"
 
-#: src/Core/Install.php:263
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Erreur : Le module PHP \"libCURL\" est requis mais pas installé."
+#: src/Content/Text/BBCode.php:855 src/Content/Text/BBCode.php:1574
+#: src/Content/Text/BBCode.php:1575
+msgid "Image/photo"
+msgstr "Image/photo"
 
-#: src/Core/Install.php:267
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Erreur : Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé."
+#: src/Content/Text/BBCode.php:958
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 
-#: src/Core/Install.php:271
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Erreur : Le module PHP \"openssl\" est requis mais pas installé."
+#: src/Content/Text/BBCode.php:1501 src/Content/Text/BBCode.php:1523
+msgid "$1 wrote:"
+msgstr "$1 a écrit :"
 
-#: src/Core/Install.php:275
-msgid "Error: PDO or MySQLi PHP module required but not installed."
+#: src/Content/Text/BBCode.php:1585 src/Content/Text/BBCode.php:1586
+msgid "Encrypted content"
+msgstr "Contenu chiffré"
+
+#: src/Content/Text/BBCode.php:1693
+msgid "Invalid source protocol"
 msgstr ""
 
-#: src/Core/Install.php:279
-msgid "Error: The MySQL driver for PDO is not installed."
+#: src/Content/Text/BBCode.php:1704
+msgid "Invalid link protocol"
 msgstr ""
 
-#: src/Core/Install.php:283
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Erreur : le module PHP mb_string est requis mais pas installé."
+#: src/Content/Widget/CalendarExport.php:65
+msgid "Export"
+msgstr "Exporter"
 
-#: src/Core/Install.php:287
-msgid "Error: iconv PHP module required but not installed."
-msgstr "Erreur : Le module PHP iconv requis est absent."
+#: src/Content/Widget/CalendarExport.php:66
+msgid "Export calendar as ical"
+msgstr "Exporter au format iCal"
 
-#: src/Core/Install.php:291
-msgid "Error: POSIX PHP module required but not installed."
-msgstr ""
+#: src/Content/Widget/CalendarExport.php:67
+msgid "Export calendar as csv"
+msgstr "Exporter au format CSV"
 
-#: src/Core/Install.php:301
-msgid "Error, XML PHP module required but not installed."
-msgstr "Erreur : le module PHP XML requis est absent."
+#: src/Content/Feature.php:79
+msgid "General Features"
+msgstr "Fonctions générales"
 
-#: src/Core/Install.php:320
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable."
+#: src/Content/Feature.php:81
+msgid "Multiple Profiles"
+msgstr "Profils multiples"
 
-#: src/Core/Install.php:321
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez."
+#: src/Content/Feature.php:81
+msgid "Ability to create multiple profiles"
+msgstr "Possibilité de créer plusieurs profils"
 
-#: src/Core/Install.php:322
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica."
+#: src/Content/Feature.php:82
+msgid "Photo Location"
+msgstr "Lieu de prise de la photo"
 
-#: src/Core/Install.php:323
+#: src/Content/Feature.php:82
 msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\"."
+"Photo metadata is normally stripped. This extracts the location (if present)"
+" prior to stripping metadata and links it to a map."
+msgstr "Les métadonnées des photos sont normalement retirées. Ceci permet de sauver l'emplacement (si présent) et de positionner la photo sur une carte."
+
+#: src/Content/Feature.php:83
+msgid "Export Public Calendar"
+msgstr "Exporter le Calendrier Public"
+
+#: src/Content/Feature.php:83
+msgid "Ability for visitors to download the public calendar"
+msgstr "Les visiteurs peuvent télécharger le calendrier public"
+
+#: src/Content/Feature.php:88
+msgid "Post Composition Features"
+msgstr "Caractéristiques de composition de publication"
+
+#: src/Content/Feature.php:89
+msgid "Post Preview"
+msgstr "Aperçu de la publication"
+
+#: src/Content/Feature.php:89
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Permet la prévisualisation des publications et commentaires avant de les publier"
 
-#: src/Core/Install.php:326
-msgid ".htconfig.php is writable"
-msgstr "Fichier .htconfig.php accessible en écriture"
+#: src/Content/Feature.php:90
+msgid "Auto-mention Forums"
+msgstr "Mentionner automatiquement les Forums"
 
-#: src/Core/Install.php:344
+#: src/Content/Feature.php:90
 msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu."
+"Add/remove mention when a forum page is selected/deselected in ACL window."
+msgstr "Ajoute/retire une mention quand une page forum est sélectionnée/désélectionnée lors du choix des destinataires d'une publication."
+
+#: src/Content/Feature.php:95
+msgid "Network Sidebar"
+msgstr ""
+
+#: src/Content/Feature.php:96
+msgid "Ability to select posts by date ranges"
+msgstr "Capacité de sélectionner les publications par intervalles de dates"
+
+#: src/Content/Feature.php:97 src/Content/Feature.php:127
+msgid "List Forums"
+msgstr "Liste des forums"
+
+#: src/Content/Feature.php:97
+msgid "Enable widget to display the forums your are connected with"
+msgstr "Activer le widget pour afficher les forums auxquels vous êtes connecté"
 
-#: src/Core/Install.php:345
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica."
+#: src/Content/Feature.php:98
+msgid "Group Filter"
+msgstr "Filtre de groupe"
 
-#: src/Core/Install.php:346
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier."
+#: src/Content/Feature.php:98
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Activer le widget d’affichage des publications du réseau seulement pour le groupe sélectionné"
 
-#: src/Core/Install.php:347
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
-msgstr "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient."
+#: src/Content/Feature.php:99
+msgid "Network Filter"
+msgstr "Filtre de réseau"
 
-#: src/Core/Install.php:350
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 est autorisé à l écriture"
+#: src/Content/Feature.php:99
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Activer le widget d’affichage des publications du réseau seulement pour le réseau sélectionné"
 
-#: src/Core/Install.php:375
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur."
+#: src/Content/Feature.php:100
+msgid "Save search terms for re-use"
+msgstr "Sauvegarder la recherche pour une utilisation ultérieure"
 
-#: src/Core/Install.php:377
-msgid "Error message from Curl when fetching"
-msgstr ""
+#: src/Content/Feature.php:105
+msgid "Network Tabs"
+msgstr "Onglets Réseau"
 
-#: src/Core/Install.php:381
-msgid "Url rewrite is working"
-msgstr "La réécriture d'URL fonctionne."
+#: src/Content/Feature.php:106
+msgid "Network Personal Tab"
+msgstr "Onglet Réseau Personnel"
 
-#: src/Core/Install.php:408
-msgid "ImageMagick PHP extension is not installed"
-msgstr "L'extension PHP ImageMagick n'est pas installée"
+#: src/Content/Feature.php:106
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Activer l'onglet pour afficher seulement les publications du réseau où vous avez interagit"
 
-#: src/Core/Install.php:410
-msgid "ImageMagick PHP extension is installed"
-msgstr "L’extension PHP ImageMagick est installée"
+#: src/Content/Feature.php:107
+msgid "Network New Tab"
+msgstr "Nouvel onglet réseaux"
 
-#: src/Core/Install.php:412
-msgid "ImageMagick supports GIF"
-msgstr "ImageMagick supporte le format GIF"
+#: src/Content/Feature.php:107
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Activer l'onglet pour afficher seulement les publications du réseau (dans les 12 dernières heures)"
 
-#: src/Util/Temporal.php:147 src/Model/Profile.php:756
-msgid "Birthday:"
-msgstr "Anniversaire :"
+#: src/Content/Feature.php:108
+msgid "Network Shared Links Tab"
+msgstr "Onglet réseau partagé"
 
-#: src/Util/Temporal.php:151
-msgid "YYYY-MM-DD or MM-DD"
-msgstr "AAAA-MM-JJ ou MM-JJ"
+#: src/Content/Feature.php:108
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Activer l'onglet pour afficher seulement les publications du réseau contenant des liens"
 
-#: src/Util/Temporal.php:294
-msgid "never"
-msgstr "jamais"
+#: src/Content/Feature.php:113
+msgid "Post/Comment Tools"
+msgstr "Outils de publication/commentaire"
 
-#: src/Util/Temporal.php:300
-msgid "less than a second ago"
-msgstr "il y a moins d'une seconde"
+#: src/Content/Feature.php:114
+msgid "Multiple Deletion"
+msgstr "Suppression multiple"
 
-#: src/Util/Temporal.php:303
-msgid "year"
-msgstr "an"
+#: src/Content/Feature.php:114
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Sélectionner et supprimer plusieurs publications/commentaires à la fois"
 
-#: src/Util/Temporal.php:303
-msgid "years"
-msgstr "ans"
+#: src/Content/Feature.php:115
+msgid "Edit Sent Posts"
+msgstr "Éditer les publications envoyées"
 
-#: src/Util/Temporal.php:304
-msgid "months"
-msgstr "mois"
+#: src/Content/Feature.php:115
+msgid "Edit and correct posts and comments after sending"
+msgstr "Éditer et corriger les publications et commentaires après l'envoi"
 
-#: src/Util/Temporal.php:305
-msgid "weeks"
-msgstr "semaines"
+#: src/Content/Feature.php:116
+msgid "Tagging"
+msgstr "Étiquettage"
 
-#: src/Util/Temporal.php:306
-msgid "days"
-msgstr "jours"
+#: src/Content/Feature.php:116
+msgid "Ability to tag existing posts"
+msgstr "Possibilité d'étiqueter les publications existantes"
 
-#: src/Util/Temporal.php:307
-msgid "hour"
-msgstr "heure"
+#: src/Content/Feature.php:117
+msgid "Post Categories"
+msgstr "Catégories des publications"
 
-#: src/Util/Temporal.php:307
-msgid "hours"
-msgstr "heures"
+#: src/Content/Feature.php:117
+msgid "Add categories to your posts"
+msgstr "Ajouter des catégories à vos publications"
 
-#: src/Util/Temporal.php:308
-msgid "minute"
-msgstr "minute"
+#: src/Content/Feature.php:118 src/Content/Widget.php:195
+msgid "Saved Folders"
+msgstr "Dossiers sauvegardés"
 
-#: src/Util/Temporal.php:308
-msgid "minutes"
-msgstr "minutes"
+#: src/Content/Feature.php:118
+msgid "Ability to file posts under folders"
+msgstr "Possibilité d'afficher les publications sous les répertoires"
 
-#: src/Util/Temporal.php:309
-msgid "second"
-msgstr "seconde"
+#: src/Content/Feature.php:119
+msgid "Dislike Posts"
+msgstr "Publications non aimées"
 
-#: src/Util/Temporal.php:309
-msgid "seconds"
-msgstr "secondes"
+#: src/Content/Feature.php:119
+msgid "Ability to dislike posts/comments"
+msgstr "Possibilité de ne pas aimer les publications/commentaires"
 
-#: src/Util/Temporal.php:318
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "il y a %1$d %2$s "
+#: src/Content/Feature.php:120
+msgid "Star Posts"
+msgstr "Publications spéciales"
 
-#: src/Content/Text/BBCode.php:416
-msgid "view full size"
-msgstr "voir en pleine taille"
+#: src/Content/Feature.php:120
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Possibilité de marquer les publications spéciales d'une étoile"
 
-#: src/Content/Text/BBCode.php:842 src/Content/Text/BBCode.php:1611
-#: src/Content/Text/BBCode.php:1612
-msgid "Image/photo"
-msgstr "Image/photo"
+#: src/Content/Feature.php:121
+msgid "Mute Post Notifications"
+msgstr "Ignorer les notifications du post"
 
-#: src/Content/Text/BBCode.php:980
-#, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+#: src/Content/Feature.php:121
+msgid "Ability to mute notifications for a thread"
+msgstr "Permettre d'ignorer les notifications d'un fil de discussion"
 
-#: src/Content/Text/BBCode.php:1538 src/Content/Text/BBCode.php:1560
-msgid "$1 wrote:"
-msgstr "$1 a écrit :"
+#: src/Content/Feature.php:126
+msgid "Advanced Profile Settings"
+msgstr "Paramètres Avancés du Profil"
 
-#: src/Content/Text/BBCode.php:1620 src/Content/Text/BBCode.php:1621
-msgid "Encrypted content"
-msgstr "Contenu chiffré"
+#: src/Content/Feature.php:127
+msgid "Show visitors public community forums at the Advanced Profile Page"
+msgstr "Montrer les forums communautaires aux visiteurs sur la Page de profil avancé"
 
-#: src/Content/Text/BBCode.php:1740
-msgid "Invalid source protocol"
+#: src/Content/Feature.php:128
+msgid "Tag Cloud"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:1751
-msgid "Invalid link protocol"
+#: src/Content/Feature.php:128
+msgid "Provide a personal tag cloud on your profile page"
 msgstr ""
 
-#: src/Content/OEmbed.php:253
-msgid "Embedding disabled"
-msgstr "Incorporation désactivée"
-
-#: src/Content/OEmbed.php:373
-msgid "Embedded content"
-msgstr "Contenu incorporé"
-
-#: src/Content/Widget/CalendarExport.php:61
-msgid "Export"
-msgstr "Exporter"
-
-#: src/Content/Widget/CalendarExport.php:62
-msgid "Export calendar as ical"
-msgstr "Exporter au format iCal"
+#: src/Content/Feature.php:129
+msgid "Display Membership Date"
+msgstr ""
 
-#: src/Content/Widget/CalendarExport.php:63
-msgid "Export calendar as csv"
-msgstr "Exporter au format CSV"
+#: src/Content/Feature.php:129
+msgid "Display membership date in profile"
+msgstr ""
 
-#: src/Content/ContactSelector.php:55
+#: src/Content/ContactSelector.php:56
 msgid "Frequently"
 msgstr ""
 
-#: src/Content/ContactSelector.php:56
+#: src/Content/ContactSelector.php:57
 msgid "Hourly"
 msgstr ""
 
-#: src/Content/ContactSelector.php:57
+#: src/Content/ContactSelector.php:58
 msgid "Twice daily"
 msgstr ""
 
-#: src/Content/ContactSelector.php:58
+#: src/Content/ContactSelector.php:59
 msgid "Daily"
 msgstr ""
 
-#: src/Content/ContactSelector.php:59
+#: src/Content/ContactSelector.php:60
 msgid "Weekly"
 msgstr ""
 
-#: src/Content/ContactSelector.php:60
+#: src/Content/ContactSelector.php:61
 msgid "Monthly"
 msgstr ""
 
-#: src/Content/ContactSelector.php:80
+#: src/Content/ContactSelector.php:81
 msgid "OStatus"
 msgstr ""
 
-#: src/Content/ContactSelector.php:81
+#: src/Content/ContactSelector.php:82
 msgid "RSS/Atom"
 msgstr ""
 
-#: src/Content/ContactSelector.php:84
-msgid "Facebook"
-msgstr ""
-
 #: src/Content/ContactSelector.php:85
 msgid "Zot!"
 msgstr ""
@@ -8199,241 +8083,393 @@ msgid "GNU Social Connector"
 msgstr ""
 
 #: src/Content/ContactSelector.php:94
-msgid "pnut"
+msgid "ActivityPub"
 msgstr ""
 
 #: src/Content/ContactSelector.php:95
-msgid "App.net"
+msgid "pnut"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
+#: src/Content/ContactSelector.php:147
 msgid "Male"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
+#: src/Content/ContactSelector.php:147
 msgid "Female"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
+#: src/Content/ContactSelector.php:147
 msgid "Currently Male"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
+#: src/Content/ContactSelector.php:147
 msgid "Currently Female"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
+#: src/Content/ContactSelector.php:147
 msgid "Mostly Male"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
+#: src/Content/ContactSelector.php:147
 msgid "Mostly Female"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
+#: src/Content/ContactSelector.php:147
 msgid "Transgender"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
+#: src/Content/ContactSelector.php:147
 msgid "Intersex"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
+#: src/Content/ContactSelector.php:147
 msgid "Transsexual"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
+#: src/Content/ContactSelector.php:147
 msgid "Hermaphrodite"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
+#: src/Content/ContactSelector.php:147
 msgid "Neuter"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
+#: src/Content/ContactSelector.php:147
 msgid "Non-specific"
 msgstr "Non-spécifique"
 
-#: src/Content/ContactSelector.php:125
+#: src/Content/ContactSelector.php:147
 msgid "Other"
 msgstr "Autre"
 
-#: src/Content/ContactSelector.php:147
+#: src/Content/ContactSelector.php:169
 msgid "Males"
 msgstr "Hommes"
 
-#: src/Content/ContactSelector.php:147
+#: src/Content/ContactSelector.php:169
 msgid "Females"
 msgstr "Femmes"
 
-#: src/Content/ContactSelector.php:147
+#: src/Content/ContactSelector.php:169
 msgid "Gay"
 msgstr "Gay"
 
-#: src/Content/ContactSelector.php:147
+#: src/Content/ContactSelector.php:169
 msgid "Lesbian"
 msgstr "Lesbienne"
 
-#: src/Content/ContactSelector.php:147
+#: src/Content/ContactSelector.php:169
 msgid "No Preference"
 msgstr "Sans préférence"
 
-#: src/Content/ContactSelector.php:147
+#: src/Content/ContactSelector.php:169
 msgid "Bisexual"
 msgstr "Bisexuel"
 
-#: src/Content/ContactSelector.php:147
+#: src/Content/ContactSelector.php:169
 msgid "Autosexual"
 msgstr "Auto-sexuel"
 
-#: src/Content/ContactSelector.php:147
+#: src/Content/ContactSelector.php:169
 msgid "Abstinent"
 msgstr "Abstinent"
 
-#: src/Content/ContactSelector.php:147
+#: src/Content/ContactSelector.php:169
 msgid "Virgin"
 msgstr "Vierge"
 
-#: src/Content/ContactSelector.php:147
+#: src/Content/ContactSelector.php:169
 msgid "Deviant"
 msgstr "Déviant"
 
-#: src/Content/ContactSelector.php:147
+#: src/Content/ContactSelector.php:169
 msgid "Fetish"
 msgstr "Fétichiste"
 
-#: src/Content/ContactSelector.php:147
+#: src/Content/ContactSelector.php:169
 msgid "Oodles"
 msgstr "Oodles"
 
-#: src/Content/ContactSelector.php:147
+#: src/Content/ContactSelector.php:169
 msgid "Nonsexual"
 msgstr "Non-sexuel"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Single"
 msgstr "Célibataire"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Lonely"
 msgstr "Esseulé"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Available"
 msgstr "Disponible"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Unavailable"
 msgstr "Indisponible"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Has crush"
 msgstr "Attiré par quelqu'un"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Infatuated"
 msgstr "Entiché"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Dating"
 msgstr "Dans une relation"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Unfaithful"
 msgstr "Infidèle"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Sex Addict"
 msgstr "Accro au sexe"
 
-#: src/Content/ContactSelector.php:169 src/Model/User.php:519
+#: src/Content/ContactSelector.php:191 src/Model/User.php:616
 msgid "Friends"
 msgstr "Amis"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Friends/Benefits"
 msgstr "Amis par intérêt"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Casual"
 msgstr "Casual"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Engaged"
 msgstr "Fiancé"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Married"
 msgstr "Marié"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Imaginarily married"
 msgstr "Se croit marié"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Partners"
 msgstr "Partenaire"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Cohabiting"
 msgstr "En cohabitation"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Common law"
 msgstr "Marié \"de fait\"/\"sui juris\" (concubin)"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Happy"
 msgstr "Heureux"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Not looking"
 msgstr "Pas intéressé"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Swinger"
 msgstr "Échangiste"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Betrayed"
 msgstr "Trahi(e)"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Separated"
 msgstr "Séparé"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Unstable"
 msgstr "Instable"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Divorced"
 msgstr "Divorcé"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Imaginarily divorced"
 msgstr "Se croit divorcé"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Widowed"
 msgstr "Veuf/Veuve"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Uncertain"
 msgstr "Incertain"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "It's complicated"
 msgstr "C'est compliqué"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Don't care"
 msgstr "S'en désintéresse"
 
-#: src/Content/ContactSelector.php:169
+#: src/Content/ContactSelector.php:191
 msgid "Ask me"
 msgstr "Me demander"
 
+#: src/Content/Nav.php:71
+msgid "Nothing new here"
+msgstr "Rien de neuf ici"
+
+#: src/Content/Nav.php:75
+msgid "Clear notifications"
+msgstr "Effacer les notifications"
+
+#: src/Content/Nav.php:157
+msgid "Personal notes"
+msgstr "Notes personnelles"
+
+#: src/Content/Nav.php:157
+msgid "Your personal notes"
+msgstr "Vos notes personnelles"
+
+#: src/Content/Nav.php:166
+msgid "Sign in"
+msgstr "Se connecter"
+
+#: src/Content/Nav.php:176
+msgid "Home Page"
+msgstr "Page d'accueil"
+
+#: src/Content/Nav.php:180
+msgid "Create an account"
+msgstr "Créer un compte"
+
+#: src/Content/Nav.php:186
+msgid "Help and documentation"
+msgstr "Aide et documentation"
+
+#: src/Content/Nav.php:190
+msgid "Apps"
+msgstr "Applications"
+
+#: src/Content/Nav.php:190
+msgid "Addon applications, utilities, games"
+msgstr "Applications supplémentaires, utilitaires, jeux"
+
+#: src/Content/Nav.php:194
+msgid "Search site content"
+msgstr "Rechercher dans le contenu du site"
+
+#: src/Content/Nav.php:218
+msgid "Community"
+msgstr "Communauté"
+
+#: src/Content/Nav.php:218
+msgid "Conversations on this and other servers"
+msgstr ""
+
+#: src/Content/Nav.php:225
+msgid "Directory"
+msgstr "Annuaire"
+
+#: src/Content/Nav.php:225
+msgid "People directory"
+msgstr "Annuaire des utilisateurs"
+
+#: src/Content/Nav.php:227
+msgid "Information about this friendica instance"
+msgstr "Information au sujet de cette instance de friendica"
+
+#: src/Content/Nav.php:230
+msgid "Terms of Service of this Friendica instance"
+msgstr ""
+
+#: src/Content/Nav.php:236
+msgid "Network Reset"
+msgstr "Réinitialiser le réseau"
+
+#: src/Content/Nav.php:236
+msgid "Load Network page with no filters"
+msgstr "Chargement des pages du réseau sans filtre"
+
+#: src/Content/Nav.php:242
+msgid "Friend Requests"
+msgstr "Demande d'amitié"
+
+#: src/Content/Nav.php:244
+msgid "See all notifications"
+msgstr "Voir toutes les notifications"
+
+#: src/Content/Nav.php:245
+msgid "Mark all system notifications seen"
+msgstr "Marquer toutes les notifications système comme 'vues'"
+
+#: src/Content/Nav.php:249
+msgid "Inbox"
+msgstr "Messages entrants"
+
+#: src/Content/Nav.php:250
+msgid "Outbox"
+msgstr "Messages sortants"
+
+#: src/Content/Nav.php:254
+msgid "Manage"
+msgstr "Gérer"
+
+#: src/Content/Nav.php:254
+msgid "Manage other pages"
+msgstr "Gérer les autres pages"
+
+#: src/Content/Nav.php:262
+msgid "Manage/Edit Profiles"
+msgstr "Gérer/Éditer les profiles"
+
+#: src/Content/Nav.php:270
+msgid "Site setup and configuration"
+msgstr "Démarrage et configuration du site"
+
+#: src/Content/Nav.php:273
+msgid "Navigation"
+msgstr "Navigation"
+
+#: src/Content/Nav.php:273
+msgid "Site map"
+msgstr "Carte du site"
+
+#: src/Content/OEmbed.php:256
+msgid "Embedding disabled"
+msgstr "Incorporation désactivée"
+
+#: src/Content/OEmbed.php:376
+msgid "Embedded content"
+msgstr "Contenu incorporé"
+
+#: src/Content/Pager.php:165
+msgid "newer"
+msgstr "Plus récent"
+
+#: src/Content/Pager.php:170
+msgid "older"
+msgstr "Plus ancien"
+
+#: src/Content/Pager.php:209
+msgid "first"
+msgstr "premier"
+
+#: src/Content/Pager.php:214
+msgid "prev"
+msgstr "précédent"
+
+#: src/Content/Pager.php:269
+msgid "next"
+msgstr "suivant"
+
+#: src/Content/Pager.php:274
+msgid "last"
+msgstr "dernier"
+
 #: src/Content/Widget.php:33
 msgid "Add New Contact"
 msgstr "Ajouter un nouveau contact"
@@ -8453,928 +8489,1087 @@ msgid_plural "%d invitations available"
 msgstr[0] "%d invitation disponible"
 msgstr[1] "%d invitations disponibles"
 
-#: src/Content/Widget.php:164
+#: src/Content/Widget.php:154
 msgid "Networks"
 msgstr "Réseaux"
 
-#: src/Content/Widget.php:167
+#: src/Content/Widget.php:157
 msgid "All Networks"
 msgstr "Tous réseaux"
 
-#: src/Content/Widget.php:205 src/Content/Feature.php:118
-msgid "Saved Folders"
-msgstr "Dossiers sauvegardés"
-
-#: src/Content/Widget.php:208 src/Content/Widget.php:248
+#: src/Content/Widget.php:198 src/Content/Widget.php:238
 msgid "Everything"
 msgstr "Tout"
 
-#: src/Content/Widget.php:245
+#: src/Content/Widget.php:235
 msgid "Categories"
 msgstr "Catégories"
 
-#: src/Content/Widget.php:312
+#: src/Content/Widget.php:302
 #, php-format
 msgid "%d contact in common"
 msgid_plural "%d contacts in common"
 msgstr[0] "%d contact en commun"
 msgstr[1] "%d contacts en commun"
 
-#: src/Content/Feature.php:79
-msgid "General Features"
-msgstr "Fonctions générales"
+#: src/Database/DBStructure.php:41
+msgid "There are no tables on MyISAM."
+msgstr ""
 
-#: src/Content/Feature.php:81
-msgid "Multiple Profiles"
-msgstr "Profils multiples"
+#: src/Database/DBStructure.php:84
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tThe friendica developers released update %s recently,\n"
+"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n"
+"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
+"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
+msgstr ""
 
-#: src/Content/Feature.php:81
-msgid "Ability to create multiple profiles"
-msgstr "Possibilité de créer plusieurs profils"
+#: src/Database/DBStructure.php:90
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Le message d’erreur est\n[pre]%s[/pre]"
 
-#: src/Content/Feature.php:82
-msgid "Photo Location"
-msgstr "Lieu de prise de la photo"
+#: src/Database/DBStructure.php:201
+#, php-format
+msgid ""
+"\n"
+"Error %d occurred during database update:\n"
+"%s\n"
+msgstr "\nErreur %d survenue durant la mise à jour de la base de données :\n%s\n"
 
-#: src/Content/Feature.php:82
+#: src/Database/DBStructure.php:204
+msgid "Errors encountered performing database changes: "
+msgstr ""
+
+#: src/Database/DBStructure.php:220
+#, php-format
+msgid "%s: Database update"
+msgstr ""
+
+#: src/Database/DBStructure.php:482
+#, php-format
+msgid "%s: updating %s table."
+msgstr ""
+
+#: src/Model/Contact.php:954
+msgid "Drop Contact"
+msgstr "Supprimer le contact"
+
+#: src/Model/Contact.php:1412
+msgid "Organisation"
+msgstr ""
+
+#: src/Model/Contact.php:1416
+msgid "News"
+msgstr "Nouvelles"
+
+#: src/Model/Contact.php:1420
+msgid "Forum"
+msgstr "Forum"
+
+#: src/Model/Contact.php:1602
+msgid "Connect URL missing."
+msgstr "URL de connexion manquante."
+
+#: src/Model/Contact.php:1611
 msgid ""
-"Photo metadata is normally stripped. This extracts the location (if present)"
-" prior to stripping metadata and links it to a map."
-msgstr "Les métadonnées des photos sont normalement retirées. Ceci permet de sauver l'emplacement (si présent) et de positionner la photo sur une carte."
+"The contact could not be added. Please check the relevant network "
+"credentials in your Settings -> Social Networks page."
+msgstr ""
+
+#: src/Model/Contact.php:1650
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux."
+
+#: src/Model/Contact.php:1651 src/Model/Contact.php:1665
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Aucun protocole de communication ni aucun flux n'a pu être découvert."
+
+#: src/Model/Contact.php:1663
+msgid "The profile address specified does not provide adequate information."
+msgstr "L'adresse de profil indiquée ne fournit par les informations adéquates."
+
+#: src/Model/Contact.php:1668
+msgid "An author or name was not found."
+msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé."
+
+#: src/Model/Contact.php:1671
+msgid "No browser URL could be matched to this address."
+msgstr "Aucune URL de navigation ne correspond à cette adresse."
+
+#: src/Model/Contact.php:1674
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel."
+
+#: src/Model/Contact.php:1675
+msgid "Use mailto: in front of address to force email check."
+msgstr "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel."
+
+#: src/Model/Contact.php:1681
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site."
+
+#: src/Model/Contact.php:1686
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part."
+
+#: src/Model/Contact.php:1737
+msgid "Unable to retrieve contact information."
+msgstr "Impossible de récupérer les informations du contact."
+
+#: src/Model/Contact.php:1984 src/Protocol/DFRN.php:1531
+#, php-format
+msgid "%s's birthday"
+msgstr "Anniversaire de %s's"
+
+#: src/Model/Contact.php:1985 src/Protocol/DFRN.php:1532
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Joyeux anniversaire, %s !"
+
+#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:430
+#: src/Model/Event.php:905
+msgid "Starts:"
+msgstr "Débute :"
+
+#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:431
+#: src/Model/Event.php:909
+msgid "Finishes:"
+msgstr "Finit :"
 
-#: src/Content/Feature.php:83
-msgid "Export Public Calendar"
-msgstr "Exporter le Calendrier Public"
+#: src/Model/Event.php:379
+msgid "all-day"
+msgstr "toute la journée"
 
-#: src/Content/Feature.php:83
-msgid "Ability for visitors to download the public calendar"
-msgstr "Les visiteurs peuvent télécharger le calendrier public"
+#: src/Model/Event.php:402
+msgid "Jun"
+msgstr "Jun"
 
-#: src/Content/Feature.php:88
-msgid "Post Composition Features"
-msgstr "Caractéristiques de composition de publication"
+#: src/Model/Event.php:405
+msgid "Sept"
+msgstr "Sep"
 
-#: src/Content/Feature.php:89
-msgid "Post Preview"
-msgstr "Aperçu de la publication"
+#: src/Model/Event.php:428
+msgid "No events to display"
+msgstr "Pas d'événement à afficher"
 
-#: src/Content/Feature.php:89
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Permet la prévisualisation des publications et commentaires avant de les publier"
+#: src/Model/Event.php:552
+msgid "l, F j"
+msgstr "l, F j"
 
-#: src/Content/Feature.php:90
-msgid "Auto-mention Forums"
-msgstr "Mentionner automatiquement les Forums"
+#: src/Model/Event.php:583
+msgid "Edit event"
+msgstr "Editer l'événement"
 
-#: src/Content/Feature.php:90
-msgid ""
-"Add/remove mention when a forum page is selected/deselected in ACL window."
-msgstr "Ajoute/retire une mention quand une page forum est sélectionnée/désélectionnée lors du choix des destinataires d'une publication."
+#: src/Model/Event.php:584
+msgid "Duplicate event"
+msgstr "Dupliquer l'événement"
 
-#: src/Content/Feature.php:95
-msgid "Network Sidebar"
-msgstr ""
+#: src/Model/Event.php:585
+msgid "Delete event"
+msgstr "Supprimer l'événement"
 
-#: src/Content/Feature.php:96
-msgid "Ability to select posts by date ranges"
-msgstr "Capacité de sélectionner les publications par intervalles de dates"
+#: src/Model/Event.php:838
+msgid "D g:i A"
+msgstr ""
 
-#: src/Content/Feature.php:97 src/Content/Feature.php:127
-msgid "List Forums"
-msgstr "Liste des forums"
+#: src/Model/Event.php:839
+msgid "g:i A"
+msgstr ""
 
-#: src/Content/Feature.php:97
-msgid "Enable widget to display the forums your are connected with"
-msgstr "Activer le widget pour afficher les forums auxquels vous êtes connecté"
+#: src/Model/Event.php:924 src/Model/Event.php:926
+msgid "Show map"
+msgstr "Montrer la carte"
 
-#: src/Content/Feature.php:98
-msgid "Group Filter"
-msgstr "Filtre de groupe"
+#: src/Model/Event.php:925
+msgid "Hide map"
+msgstr "Cacher la carte"
 
-#: src/Content/Feature.php:98
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Activer le widget d’affichage des publications du réseau seulement pour le groupe sélectionné"
+#: src/Model/Group.php:46
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "Un groupe supprimé a été recréé. Les permissions existantes <strong>pourraient</strong> s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom."
 
-#: src/Content/Feature.php:99
-msgid "Network Filter"
-msgstr "Filtre de réseau"
+#: src/Model/Group.php:332
+msgid "Default privacy group for new contacts"
+msgstr "Paramètres de confidentialité par défaut pour les nouveaux contacts"
 
-#: src/Content/Feature.php:99
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Activer le widget d’affichage des publications du réseau seulement pour le réseau sélectionné"
+#: src/Model/Group.php:365
+msgid "Everybody"
+msgstr "Tout le monde"
 
-#: src/Content/Feature.php:100
-msgid "Save search terms for re-use"
-msgstr "Sauvegarder la recherche pour une utilisation ultérieure"
+#: src/Model/Group.php:385
+msgid "edit"
+msgstr "éditer"
 
-#: src/Content/Feature.php:105
-msgid "Network Tabs"
-msgstr "Onglets Réseau"
+#: src/Model/Group.php:409
+msgid "Edit group"
+msgstr "Editer groupe"
 
-#: src/Content/Feature.php:106
-msgid "Network Personal Tab"
-msgstr "Onglet Réseau Personnel"
+#: src/Model/Group.php:412
+msgid "Create a new group"
+msgstr "Créer un nouveau groupe"
 
-#: src/Content/Feature.php:106
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Activer l'onglet pour afficher seulement les publications du réseau où vous avez interagit"
+#: src/Model/Group.php:414
+msgid "Edit groups"
+msgstr "Modifier les groupes"
 
-#: src/Content/Feature.php:107
-msgid "Network New Tab"
-msgstr "Nouvel onglet réseaux"
+#: src/Model/Mail.php:40 src/Model/Mail.php:172
+msgid "[no subject]"
+msgstr "[pas de sujet]"
 
-#: src/Content/Feature.php:107
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Activer l'onglet pour afficher seulement les publications du réseau (dans les 12 dernières heures)"
+#: src/Model/Profile.php:111
+msgid "Requested account is not available."
+msgstr "Le compte demandé n'est pas disponible."
 
-#: src/Content/Feature.php:108
-msgid "Network Shared Links Tab"
-msgstr "Onglet réseau partagé"
+#: src/Model/Profile.php:177 src/Model/Profile.php:413
+#: src/Model/Profile.php:860
+msgid "Edit profile"
+msgstr "Editer le profil"
 
-#: src/Content/Feature.php:108
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "Activer l'onglet pour afficher seulement les publications du réseau contenant des liens"
+#: src/Model/Profile.php:347
+msgid "Atom feed"
+msgstr "Flux Atom"
 
-#: src/Content/Feature.php:113
-msgid "Post/Comment Tools"
-msgstr "Outils de publication/commentaire"
+#: src/Model/Profile.php:386
+msgid "Manage/edit profiles"
+msgstr "Gérer/éditer les profils"
 
-#: src/Content/Feature.php:114
-msgid "Multiple Deletion"
-msgstr "Suppression multiple"
+#: src/Model/Profile.php:438 src/Module/Contact.php:650
+msgid "XMPP:"
+msgstr "XMPP"
 
-#: src/Content/Feature.php:114
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Sélectionner et supprimer plusieurs publications/commentaires à la fois"
+#: src/Model/Profile.php:564 src/Model/Profile.php:653
+msgid "g A l F d"
+msgstr "g A | F d"
 
-#: src/Content/Feature.php:115
-msgid "Edit Sent Posts"
-msgstr "Éditer les publications envoyées"
+#: src/Model/Profile.php:565
+msgid "F d"
+msgstr "F d"
 
-#: src/Content/Feature.php:115
-msgid "Edit and correct posts and comments after sending"
-msgstr "Éditer et corriger les publications et commentaires après l'envoi"
+#: src/Model/Profile.php:618 src/Model/Profile.php:704
+msgid "[today]"
+msgstr "[aujourd'hui]"
 
-#: src/Content/Feature.php:116
-msgid "Tagging"
-msgstr "Étiquettage"
+#: src/Model/Profile.php:629
+msgid "Birthday Reminders"
+msgstr "Rappels d'anniversaires"
 
-#: src/Content/Feature.php:116
-msgid "Ability to tag existing posts"
-msgstr "Possibilité d'étiqueter les publications existantes"
+#: src/Model/Profile.php:630
+msgid "Birthdays this week:"
+msgstr "Anniversaires cette semaine :"
 
-#: src/Content/Feature.php:117
-msgid "Post Categories"
-msgstr "Catégories des publications"
+#: src/Model/Profile.php:691
+msgid "[No description]"
+msgstr "[Sans description]"
 
-#: src/Content/Feature.php:117
-msgid "Add categories to your posts"
-msgstr "Ajouter des catégories à vos publications"
+#: src/Model/Profile.php:718
+msgid "Event Reminders"
+msgstr "Rappels d'événements"
 
-#: src/Content/Feature.php:118
-msgid "Ability to file posts under folders"
-msgstr "Possibilité d'afficher les publications sous les répertoires"
+#: src/Model/Profile.php:719
+msgid "Upcoming events the next 7 days:"
+msgstr ""
 
-#: src/Content/Feature.php:119
-msgid "Dislike Posts"
-msgstr "Publications non aimées"
+#: src/Model/Profile.php:742
+msgid "Member since:"
+msgstr ""
 
-#: src/Content/Feature.php:119
-msgid "Ability to dislike posts/comments"
-msgstr "Possibilité de ne pas aimer les publications/commentaires"
+#: src/Model/Profile.php:750
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: src/Content/Feature.php:120
-msgid "Star Posts"
-msgstr "Publications spéciales"
+#: src/Model/Profile.php:751
+msgid "j F"
+msgstr "j F"
 
-#: src/Content/Feature.php:120
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Possibilité de marquer les publications spéciales d'une étoile"
+#: src/Model/Profile.php:766
+msgid "Age:"
+msgstr "Age :"
 
-#: src/Content/Feature.php:121
-msgid "Mute Post Notifications"
-msgstr "Ignorer les notifications du post"
+#: src/Model/Profile.php:779
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "depuis %1$d %2$s"
 
-#: src/Content/Feature.php:121
-msgid "Ability to mute notifications for a thread"
-msgstr "Permettre d'ignorer les notifications d'un fil de discussion"
+#: src/Model/Profile.php:803
+msgid "Religion:"
+msgstr "Religion :"
 
-#: src/Content/Feature.php:126
-msgid "Advanced Profile Settings"
-msgstr "Paramètres Avancés du Profil"
+#: src/Model/Profile.php:811
+msgid "Hobbies/Interests:"
+msgstr "Passe-temps/Centres d'intérêt :"
 
-#: src/Content/Feature.php:127
-msgid "Show visitors public community forums at the Advanced Profile Page"
-msgstr "Montrer les forums communautaires aux visiteurs sur la Page de profil avancé"
+#: src/Model/Profile.php:823
+msgid "Contact information and Social Networks:"
+msgstr "Coordonnées/Réseaux sociaux :"
 
-#: src/Content/Feature.php:128
-msgid "Tag Cloud"
-msgstr ""
+#: src/Model/Profile.php:827
+msgid "Musical interests:"
+msgstr "Goûts musicaux :"
 
-#: src/Content/Feature.php:128
-msgid "Provide a personal tag cloud on your profile page"
-msgstr ""
+#: src/Model/Profile.php:831
+msgid "Books, literature:"
+msgstr "Lectures :"
 
-#: src/Content/Feature.php:129
-msgid "Display Membership Date"
-msgstr ""
+#: src/Model/Profile.php:835
+msgid "Television:"
+msgstr "Télévision :"
 
-#: src/Content/Feature.php:129
-msgid "Display membership date in profile"
-msgstr ""
+#: src/Model/Profile.php:839
+msgid "Film/dance/culture/entertainment:"
+msgstr "Cinéma/Danse/Culture/Divertissement :"
 
-#: src/Content/Nav.php:53
-msgid "Nothing new here"
-msgstr "Rien de neuf ici"
+#: src/Model/Profile.php:843
+msgid "Love/Romance:"
+msgstr "Amour/Romance :"
 
-#: src/Content/Nav.php:57
-msgid "Clear notifications"
-msgstr "Effacer les notifications"
+#: src/Model/Profile.php:847
+msgid "Work/employment:"
+msgstr "Activité professionnelle/Occupation :"
 
-#: src/Content/Nav.php:105
-msgid "Personal notes"
-msgstr "Notes personnelles"
+#: src/Model/Profile.php:851
+msgid "School/education:"
+msgstr "Études/Formation :"
 
-#: src/Content/Nav.php:105
-msgid "Your personal notes"
-msgstr "Vos notes personnelles"
+#: src/Model/Profile.php:856
+msgid "Forums:"
+msgstr "Forums :"
 
-#: src/Content/Nav.php:114
-msgid "Sign in"
-msgstr "Se connecter"
+#: src/Model/Profile.php:900 src/Module/Contact.php:867
+msgid "Profile Details"
+msgstr "Détails du profil"
 
-#: src/Content/Nav.php:124
-msgid "Home Page"
-msgstr "Page d'accueil"
+#: src/Model/Profile.php:950
+msgid "Only You Can See This"
+msgstr "Vous seul pouvez voir ça"
 
-#: src/Content/Nav.php:128
-msgid "Create an account"
-msgstr "Créer un compte"
+#: src/Model/Profile.php:958 src/Model/Profile.php:961
+msgid "Tips for New Members"
+msgstr "Conseils aux nouveaux venus"
 
-#: src/Content/Nav.php:134
-msgid "Help and documentation"
-msgstr "Aide et documentation"
+#: src/Model/Profile.php:1123
+#, php-format
+msgid "OpenWebAuth: %1$s welcomes %2$s"
+msgstr ""
 
-#: src/Content/Nav.php:138
-msgid "Apps"
-msgstr "Applications"
+#: src/Model/User.php:205
+msgid "Login failed"
+msgstr ""
 
-#: src/Content/Nav.php:138
-msgid "Addon applications, utilities, games"
-msgstr "Applications supplémentaires, utilitaires, jeux"
+#: src/Model/User.php:236
+msgid "Not enough information to authenticate"
+msgstr ""
 
-#: src/Content/Nav.php:142
-msgid "Search site content"
-msgstr "Rechercher dans le contenu du site"
+#: src/Model/User.php:428
+msgid "An invitation is required."
+msgstr "Une invitation est requise."
 
-#: src/Content/Nav.php:166
-msgid "Community"
-msgstr "Communauté"
+#: src/Model/User.php:432
+msgid "Invitation could not be verified."
+msgstr "L'invitation fournie n'a pu être validée."
 
-#: src/Content/Nav.php:166
-msgid "Conversations on this and other servers"
-msgstr ""
+#: src/Model/User.php:439
+msgid "Invalid OpenID url"
+msgstr "Adresse OpenID invalide"
 
-#: src/Content/Nav.php:173
-msgid "Directory"
-msgstr "Annuaire"
+#: src/Model/User.php:452 src/Module/Login.php:106
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Nous avons eu un souci avec l'OpenID que vous avez fourni. Merci de vérifier qu'il est correctement écrit."
 
-#: src/Content/Nav.php:173
-msgid "People directory"
-msgstr "Annuaire des utilisateurs"
+#: src/Model/User.php:452 src/Module/Login.php:106
+msgid "The error message was:"
+msgstr "Le message d'erreur était :"
 
-#: src/Content/Nav.php:175
-msgid "Information about this friendica instance"
-msgstr "Information au sujet de cette instance de friendica"
+#: src/Model/User.php:458
+msgid "Please enter the required information."
+msgstr "Entrez les informations requises."
 
-#: src/Content/Nav.php:178
-msgid "Terms of Service of this Friendica instance"
+#: src/Model/User.php:474
+#, php-format
+msgid ""
+"system.username_min_length (%s) and system.username_max_length (%s) are "
+"excluding each other, swapping values."
 msgstr ""
 
-#: src/Content/Nav.php:184
-msgid "Network Reset"
-msgstr "Réinitialiser le réseau"
-
-#: src/Content/Nav.php:184
-msgid "Load Network page with no filters"
-msgstr "Chargement des pages du réseau sans filtre"
+#: src/Model/User.php:481
+#, php-format
+msgid "Username should be at least %s character."
+msgid_plural "Username should be at least %s characters."
+msgstr[0] ""
+msgstr[1] ""
 
-#: src/Content/Nav.php:190
-msgid "Friend Requests"
-msgstr "Demande d'amitié"
+#: src/Model/User.php:485
+#, php-format
+msgid "Username should be at most %s character."
+msgid_plural "Username should be at most %s characters."
+msgstr[0] ""
+msgstr[1] ""
 
-#: src/Content/Nav.php:192
-msgid "See all notifications"
-msgstr "Voir toutes les notifications"
+#: src/Model/User.php:493
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Ceci ne semble pas être votre nom complet (Prénom Nom)."
 
-#: src/Content/Nav.php:193
-msgid "Mark all system notifications seen"
-msgstr "Marquer toutes les notifications système comme 'vues'"
+#: src/Model/User.php:498
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Votre domaine de courriel n'est pas autorisé sur ce site."
 
-#: src/Content/Nav.php:197
-msgid "Inbox"
-msgstr "Messages entrants"
+#: src/Model/User.php:502
+msgid "Not a valid email address."
+msgstr "Ceci n'est pas une adresse courriel valide."
 
-#: src/Content/Nav.php:198
-msgid "Outbox"
-msgstr "Messages sortants"
+#: src/Model/User.php:505
+msgid "The nickname was blocked from registration by the nodes admin."
+msgstr ""
 
-#: src/Content/Nav.php:202
-msgid "Manage"
-msgstr "Gérer"
+#: src/Model/User.php:509 src/Model/User.php:517
+msgid "Cannot use that email."
+msgstr "Impossible d'utiliser ce courriel."
 
-#: src/Content/Nav.php:202
-msgid "Manage other pages"
-msgstr "Gérer les autres pages"
+#: src/Model/User.php:524
+msgid "Your nickname can only contain a-z, 0-9 and _."
+msgstr ""
 
-#: src/Content/Nav.php:210 src/Model/Profile.php:368
-msgid "Profiles"
-msgstr "Profils"
+#: src/Model/User.php:531 src/Model/User.php:588
+msgid "Nickname is already registered. Please choose another."
+msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre."
 
-#: src/Content/Nav.php:210
-msgid "Manage/Edit Profiles"
-msgstr "Gérer/Éditer les profiles"
+#: src/Model/User.php:541
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "ERREUR FATALE : La génération des clés de sécurité a échoué."
 
-#: src/Content/Nav.php:218
-msgid "Site setup and configuration"
-msgstr "Démarrage et configuration du site"
+#: src/Model/User.php:575 src/Model/User.php:579
+msgid "An error occurred during registration. Please try again."
+msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer."
 
-#: src/Content/Nav.php:221
-msgid "Navigation"
-msgstr "Navigation"
+#: src/Model/User.php:604
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer."
 
-#: src/Content/Nav.php:221
-msgid "Site map"
-msgstr "Carte du site"
+#: src/Model/User.php:611
+msgid "An error occurred creating your self contact. Please try again."
+msgstr ""
 
-#: src/Database/DBStructure.php:32
-msgid "There are no tables on MyISAM."
+#: src/Model/User.php:620
+msgid ""
+"An error occurred creating your default contact group. Please try again."
 msgstr ""
 
-#: src/Database/DBStructure.php:75
+#: src/Model/User.php:695
 #, php-format
 msgid ""
 "\n"
-"\t\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
+"\n"
+"\t\t\tYour login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t\t%4$s\n"
+"\t\t\tPassword:\t\t%5$s\n"
+"\t\t"
 msgstr ""
 
-#: src/Database/DBStructure.php:80
+#: src/Model/User.php:712
 #, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "Le message d’erreur est\n[pre]%s[/pre]"
+msgid "Registration at %s"
+msgstr ""
 
-#: src/Database/DBStructure.php:191
+#: src/Model/User.php:730
 #, php-format
 msgid ""
 "\n"
-"Error %d occurred during database update:\n"
-"%s\n"
-msgstr "\nErreur %d survenue durant la mise à jour de la base de données :\n%s\n"
-
-#: src/Database/DBStructure.php:194
-msgid "Errors encountered performing database changes: "
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t\t"
 msgstr ""
 
-#: src/Database/DBStructure.php:210
+#: src/Model/User.php:736
 #, php-format
-msgid "%s: Database update"
+msgid ""
+"\n"
+"\t\t\tThe login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t\t%1$s\n"
+"\t\t\tPassword:\t\t%5$s\n"
+"\n"
+"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\t\tin.\n"
+"\n"
+"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\t\tthan that.\n"
+"\n"
+"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n"
+"\n"
+"\t\t\tThank you and welcome to %2$s."
 msgstr ""
 
-#: src/Database/DBStructure.php:460
+#: src/Protocol/Diaspora.php:2433
+msgid "Sharing notification from Diaspora network"
+msgstr "Notification de partage du réseau Diaspora"
+
+#: src/Protocol/Diaspora.php:3527
+msgid "Attachments:"
+msgstr "Pièces jointes : "
+
+#: src/Protocol/OStatus.php:1824
 #, php-format
-msgid "%s: updating %s table."
-msgstr ""
+msgid "%s is now following %s."
+msgstr "%s suit désormais %s."
 
-#: src/Model/Mail.php:40 src/Model/Mail.php:174
-msgid "[no subject]"
-msgstr "[pas de sujet]"
+#: src/Protocol/OStatus.php:1825
+msgid "following"
+msgstr "following"
 
-#: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419
-#: src/Model/Event.php:882
-msgid "Starts:"
-msgstr "Débute :"
+#: src/Protocol/OStatus.php:1828
+#, php-format
+msgid "%s stopped following %s."
+msgstr "%s ne suit plus %s."
 
-#: src/Model/Event.php:56 src/Model/Event.php:76 src/Model/Event.php:420
-#: src/Model/Event.php:886
-msgid "Finishes:"
-msgstr "Finit :"
+#: src/Protocol/OStatus.php:1829
+msgid "stopped following"
+msgstr "retiré de la liste de suivi"
 
-#: src/Model/Event.php:368
-msgid "all-day"
-msgstr "toute la journée"
+#: src/Worker/Delivery.php:427
+msgid "(no subject)"
+msgstr "(sans titre)"
 
-#: src/Model/Event.php:391
-msgid "Jun"
-msgstr "Jun"
+#: src/Module/Contact.php:169
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] "%d contact mis à jour."
+msgstr[1] "%d contacts mis à jour."
 
-#: src/Model/Event.php:394
-msgid "Sept"
-msgstr "Sep"
+#: src/Module/Contact.php:194 src/Module/Contact.php:377
+msgid "Could not access contact record."
+msgstr "Impossible d'accéder à l'enregistrement du contact."
 
-#: src/Model/Event.php:417
-msgid "No events to display"
-msgstr "Pas d'événement à afficher"
+#: src/Module/Contact.php:204
+msgid "Could not locate selected profile."
+msgstr "Impossible de localiser le profil séléctionné."
 
-#: src/Model/Event.php:543
-msgid "l, F j"
-msgstr "l, F j"
+#: src/Module/Contact.php:236
+msgid "Contact updated."
+msgstr "Contact mis à jour."
 
-#: src/Model/Event.php:566
-msgid "Edit event"
-msgstr "Editer l'événement"
+#: src/Module/Contact.php:398
+msgid "Contact has been blocked"
+msgstr "Le contact a été bloqué"
 
-#: src/Model/Event.php:567
-msgid "Duplicate event"
-msgstr "Dupliquer l'événement"
+#: src/Module/Contact.php:398
+msgid "Contact has been unblocked"
+msgstr "Le contact n'est plus bloqué"
 
-#: src/Model/Event.php:568
-msgid "Delete event"
-msgstr "Supprimer l'événement"
+#: src/Module/Contact.php:408
+msgid "Contact has been ignored"
+msgstr "Le contact a été ignoré"
 
-#: src/Model/Event.php:815
-msgid "D g:i A"
-msgstr ""
+#: src/Module/Contact.php:408
+msgid "Contact has been unignored"
+msgstr "Le contact n'est plus ignoré"
 
-#: src/Model/Event.php:816
-msgid "g:i A"
-msgstr ""
+#: src/Module/Contact.php:418
+msgid "Contact has been archived"
+msgstr "Contact archivé"
+
+#: src/Module/Contact.php:418
+msgid "Contact has been unarchived"
+msgstr "Contact désarchivé"
+
+#: src/Module/Contact.php:442
+msgid "Drop contact"
+msgstr "Supprimer contact"
+
+#: src/Module/Contact.php:445 src/Module/Contact.php:815
+msgid "Do you really want to delete this contact?"
+msgstr "Voulez-vous vraiment supprimer ce contact?"
+
+#: src/Module/Contact.php:459
+msgid "Contact has been removed."
+msgstr "Ce contact a été retiré."
+
+#: src/Module/Contact.php:490
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Vous êtes ami (et réciproquement) avec %s"
+
+#: src/Module/Contact.php:495
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Vous partagez avec %s"
+
+#: src/Module/Contact.php:500
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s partage avec vous"
+
+#: src/Module/Contact.php:524
+msgid "Private communications are not available for this contact."
+msgstr "Les communications privées ne sont pas disponibles pour ce contact."
 
-#: src/Model/Event.php:901 src/Model/Event.php:903
-msgid "Show map"
-msgstr "Montrer la carte"
+#: src/Module/Contact.php:526
+msgid "Never"
+msgstr "Jamais"
 
-#: src/Model/Event.php:902
-msgid "Hide map"
-msgstr "Cacher la carte"
+#: src/Module/Contact.php:529
+msgid "(Update was successful)"
+msgstr "(Mise à jour effectuée avec succès)"
 
-#: src/Model/Group.php:44
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "Un groupe supprimé a été recréé. Les permissions existantes <strong>pourraient</strong> s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom."
+#: src/Module/Contact.php:529
+msgid "(Update was not successful)"
+msgstr "(Échec de la mise à jour)"
 
-#: src/Model/Group.php:341
-msgid "Default privacy group for new contacts"
-msgstr "Paramètres de confidentialité par défaut pour les nouveaux contacts"
+#: src/Module/Contact.php:531 src/Module/Contact.php:1053
+msgid "Suggest friends"
+msgstr "Suggérer amitié/contact"
 
-#: src/Model/Group.php:374
-msgid "Everybody"
-msgstr "Tout le monde"
+#: src/Module/Contact.php:535
+#, php-format
+msgid "Network type: %s"
+msgstr "Type de réseau %s"
 
-#: src/Model/Group.php:394
-msgid "edit"
-msgstr "éditer"
+#: src/Module/Contact.php:540
+msgid "Communications lost with this contact!"
+msgstr "Communications perdues avec ce contact !"
 
-#: src/Model/Group.php:418
-msgid "Edit group"
-msgstr "Editer groupe"
+#: src/Module/Contact.php:546
+msgid "Fetch further information for feeds"
+msgstr "Chercher plus d'informations pour les flux"
 
-#: src/Model/Group.php:419
-msgid "Contacts not in any group"
-msgstr "Contacts n'appartenant à aucun groupe"
+#: src/Module/Contact.php:548
+msgid ""
+"Fetch information like preview pictures, title and teaser from the feed "
+"item. You can activate this if the feed doesn't contain much text. Keywords "
+"are taken from the meta header in the feed item and are posted as hash tags."
+msgstr ""
 
-#: src/Model/Group.php:420
-msgid "Create a new group"
-msgstr "Créer un nouveau groupe"
+#: src/Module/Contact.php:551
+msgid "Fetch information"
+msgstr "Récupérer informations"
 
-#: src/Model/Group.php:422
-msgid "Edit groups"
-msgstr "Modifier les groupes"
+#: src/Module/Contact.php:552
+msgid "Fetch keywords"
+msgstr ""
 
-#: src/Model/Profile.php:97
-msgid "Requested account is not available."
-msgstr "Le compte demandé n'est pas disponible."
+#: src/Module/Contact.php:553
+msgid "Fetch information and keywords"
+msgstr "Récupérer informations"
 
-#: src/Model/Profile.php:164 src/Model/Profile.php:395
-#: src/Model/Profile.php:857
-msgid "Edit profile"
-msgstr "Editer le profil"
+#: src/Module/Contact.php:585
+msgid "Profile Visibility"
+msgstr "Visibilité du profil"
 
-#: src/Model/Profile.php:332
-msgid "Atom feed"
-msgstr "Flux Atom"
+#: src/Module/Contact.php:586
+msgid "Contact Information / Notes"
+msgstr "Informations de contact / Notes"
 
-#: src/Model/Profile.php:368
-msgid "Manage/edit profiles"
-msgstr "Gérer/éditer les profils"
+#: src/Module/Contact.php:587
+msgid "Contact Settings"
+msgstr "Paramètres du Contact"
 
-#: src/Model/Profile.php:546 src/Model/Profile.php:639
-msgid "g A l F d"
-msgstr "g A | F d"
+#: src/Module/Contact.php:596
+msgid "Contact"
+msgstr "Contact"
 
-#: src/Model/Profile.php:547
-msgid "F d"
-msgstr "F d"
+#: src/Module/Contact.php:600
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée."
 
-#: src/Model/Profile.php:604 src/Model/Profile.php:701
-msgid "[today]"
-msgstr "[aujourd'hui]"
+#: src/Module/Contact.php:602
+msgid "Their personal note"
+msgstr ""
 
-#: src/Model/Profile.php:615
-msgid "Birthday Reminders"
-msgstr "Rappels d'anniversaires"
+#: src/Module/Contact.php:604
+msgid "Edit contact notes"
+msgstr "Éditer les notes des contacts"
 
-#: src/Model/Profile.php:616
-msgid "Birthdays this week:"
-msgstr "Anniversaires cette semaine :"
+#: src/Module/Contact.php:608
+msgid "Block/Unblock contact"
+msgstr "Bloquer/débloquer ce contact"
 
-#: src/Model/Profile.php:688
-msgid "[No description]"
-msgstr "[Sans description]"
+#: src/Module/Contact.php:609
+msgid "Ignore contact"
+msgstr "Ignorer ce contact"
 
-#: src/Model/Profile.php:715
-msgid "Event Reminders"
-msgstr "Rappels d'événements"
+#: src/Module/Contact.php:610
+msgid "Repair URL settings"
+msgstr "Réglages de réparation des URL"
 
-#: src/Model/Profile.php:716
-msgid "Events this week:"
-msgstr "Evénements cette semaine :"
+#: src/Module/Contact.php:611
+msgid "View conversations"
+msgstr "Voir les conversations"
 
-#: src/Model/Profile.php:739
-msgid "Member since:"
-msgstr ""
+#: src/Module/Contact.php:616
+msgid "Last update:"
+msgstr "Dernière mise-à-jour :"
 
-#: src/Model/Profile.php:747
-msgid "j F, Y"
-msgstr "j F, Y"
+#: src/Module/Contact.php:618
+msgid "Update public posts"
+msgstr "Mettre à jour les publications publiques:"
 
-#: src/Model/Profile.php:748
-msgid "j F"
-msgstr "j F"
+#: src/Module/Contact.php:620 src/Module/Contact.php:1063
+msgid "Update now"
+msgstr "Mettre à jour"
 
-#: src/Model/Profile.php:763
-msgid "Age:"
-msgstr "Age :"
+#: src/Module/Contact.php:626 src/Module/Contact.php:820
+#: src/Module/Contact.php:1080
+msgid "Unignore"
+msgstr "Ne plus ignorer"
 
-#: src/Model/Profile.php:776
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "depuis %1$d %2$s"
+#: src/Module/Contact.php:630
+msgid "Currently blocked"
+msgstr "Actuellement bloqué"
 
-#: src/Model/Profile.php:800
-msgid "Religion:"
-msgstr "Religion :"
+#: src/Module/Contact.php:631
+msgid "Currently ignored"
+msgstr "Actuellement ignoré"
 
-#: src/Model/Profile.php:808
-msgid "Hobbies/Interests:"
-msgstr "Passe-temps/Centres d'intérêt :"
+#: src/Module/Contact.php:632
+msgid "Currently archived"
+msgstr "Actuellement archivé"
 
-#: src/Model/Profile.php:820
-msgid "Contact information and Social Networks:"
-msgstr "Coordonnées/Réseaux sociaux :"
+#: src/Module/Contact.php:633
+msgid "Awaiting connection acknowledge"
+msgstr ""
 
-#: src/Model/Profile.php:824
-msgid "Musical interests:"
-msgstr "Goûts musicaux :"
+#: src/Module/Contact.php:634
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Les réponses et \"j'aime\" à vos publications publiques <strong>peuvent</strong> être toujours visibles"
 
-#: src/Model/Profile.php:828
-msgid "Books, literature:"
-msgstr "Lectures :"
+#: src/Module/Contact.php:635
+msgid "Notification for new posts"
+msgstr "Notification des nouvelles publications"
 
-#: src/Model/Profile.php:832
-msgid "Television:"
-msgstr "Télévision :"
+#: src/Module/Contact.php:635
+msgid "Send a notification of every new post of this contact"
+msgstr "Envoyer une notification de chaque nouveau message en provenance de ce contact"
 
-#: src/Model/Profile.php:836
-msgid "Film/dance/culture/entertainment:"
-msgstr "Cinéma/Danse/Culture/Divertissement :"
+#: src/Module/Contact.php:638
+msgid "Blacklisted keywords"
+msgstr "Mots-clés sur la liste noire"
 
-#: src/Model/Profile.php:840
-msgid "Love/Romance:"
-msgstr "Amour/Romance :"
+#: src/Module/Contact.php:638
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
+msgstr "Liste de mots-clés separés par des virgules qui ne doivent pas être converti en mots-dièse quand  « Récupérer informations et mots-clés » est sélectionné."
 
-#: src/Model/Profile.php:844
-msgid "Work/employment:"
-msgstr "Activité professionnelle/Occupation :"
+#: src/Module/Contact.php:655
+msgid "Actions"
+msgstr "Actions"
 
-#: src/Model/Profile.php:848
-msgid "School/education:"
-msgstr "Études/Formation :"
+#: src/Module/Contact.php:701
+msgid "Suggestions"
+msgstr "Suggestions"
 
-#: src/Model/Profile.php:853
-msgid "Forums:"
-msgstr "Forums :"
+#: src/Module/Contact.php:704
+msgid "Suggest potential friends"
+msgstr "Suggérer des amis potentiels"
 
-#: src/Model/Profile.php:947
-msgid "Only You Can See This"
-msgstr "Vous seul pouvez voir ça"
+#: src/Module/Contact.php:712
+msgid "Show all contacts"
+msgstr "Montrer tous les contacts"
 
-#: src/Model/User.php:154
-msgid "Login failed"
-msgstr ""
+#: src/Module/Contact.php:717
+msgid "Unblocked"
+msgstr "Non-bloqués"
 
-#: src/Model/User.php:185
-msgid "Not enough information to authenticate"
-msgstr ""
+#: src/Module/Contact.php:720
+msgid "Only show unblocked contacts"
+msgstr "Ne montrer que les contacts non-bloqués"
 
-#: src/Model/User.php:346
-msgid "An invitation is required."
-msgstr "Une invitation est requise."
+#: src/Module/Contact.php:725
+msgid "Blocked"
+msgstr "Bloqués"
 
-#: src/Model/User.php:350
-msgid "Invitation could not be verified."
-msgstr "L'invitation fournie n'a pu être validée."
+#: src/Module/Contact.php:728
+msgid "Only show blocked contacts"
+msgstr "Ne montrer que les contacts bloqués"
 
-#: src/Model/User.php:357
-msgid "Invalid OpenID url"
-msgstr "Adresse OpenID invalide"
+#: src/Module/Contact.php:733
+msgid "Ignored"
+msgstr "Ignorés"
 
-#: src/Model/User.php:370 src/Module/Login.php:101
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "Nous avons eu un souci avec l'OpenID que vous avez fourni. Merci de vérifier qu'il est correctement écrit."
+#: src/Module/Contact.php:736
+msgid "Only show ignored contacts"
+msgstr "Ne montrer que les contacts ignorés"
 
-#: src/Model/User.php:370 src/Module/Login.php:101
-msgid "The error message was:"
-msgstr "Le message d'erreur était :"
+#: src/Module/Contact.php:741
+msgid "Archived"
+msgstr "Archivés"
 
-#: src/Model/User.php:376
-msgid "Please enter the required information."
-msgstr "Entrez les informations requises."
+#: src/Module/Contact.php:744
+msgid "Only show archived contacts"
+msgstr "Ne montrer que les contacts archivés"
 
-#: src/Model/User.php:389
-msgid "Please use a shorter name."
-msgstr "Utilisez un nom plus court."
+#: src/Module/Contact.php:749
+msgid "Hidden"
+msgstr "Cachés"
 
-#: src/Model/User.php:392
-msgid "Name too short."
-msgstr "Nom trop court."
+#: src/Module/Contact.php:752
+msgid "Only show hidden contacts"
+msgstr "Ne montrer que les contacts masqués"
 
-#: src/Model/User.php:400
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Ceci ne semble pas être votre nom complet (Prénom Nom)."
+#: src/Module/Contact.php:810
+msgid "Search your contacts"
+msgstr "Rechercher dans vos contacts"
 
-#: src/Model/User.php:405
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Votre domaine de courriel n'est pas autorisé sur ce site."
+#: src/Module/Contact.php:821 src/Module/Contact.php:1089
+msgid "Archive"
+msgstr "Archiver"
 
-#: src/Model/User.php:409
-msgid "Not a valid email address."
-msgstr "Ceci n'est pas une adresse courriel valide."
+#: src/Module/Contact.php:821 src/Module/Contact.php:1089
+msgid "Unarchive"
+msgstr "Désarchiver"
 
-#: src/Model/User.php:413 src/Model/User.php:421
-msgid "Cannot use that email."
-msgstr "Impossible d'utiliser ce courriel."
+#: src/Module/Contact.php:824
+msgid "Batch Actions"
+msgstr "Actions multiples"
 
-#: src/Model/User.php:428
-msgid "Your nickname can only contain a-z, 0-9 and _."
+#: src/Module/Contact.php:851
+msgid "Conversations started by this contact"
 msgstr ""
 
-#: src/Model/User.php:435 src/Model/User.php:491
-msgid "Nickname is already registered. Please choose another."
-msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre."
+#: src/Module/Contact.php:856
+msgid "Posts and Comments"
+msgstr ""
 
-#: src/Model/User.php:445
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "ERREUR FATALE : La génération des clés de sécurité a échoué."
+#: src/Module/Contact.php:879
+msgid "View all contacts"
+msgstr "Voir tous les contacts"
 
-#: src/Model/User.php:478 src/Model/User.php:482
-msgid "An error occurred during registration. Please try again."
-msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer."
+#: src/Module/Contact.php:890
+msgid "View all common friends"
+msgstr "Voir tous les amis communs"
 
-#: src/Model/User.php:507
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer."
+#: src/Module/Contact.php:900
+msgid "Advanced Contact Settings"
+msgstr "Réglages avancés du contact"
 
-#: src/Model/User.php:514
-msgid "An error occurred creating your self contact. Please try again."
-msgstr ""
+#: src/Module/Contact.php:986
+msgid "Mutual Friendship"
+msgstr "Relation réciproque"
 
-#: src/Model/User.php:523
-msgid ""
-"An error occurred creating your default contact group. Please try again."
-msgstr ""
+#: src/Module/Contact.php:991
+msgid "is a fan of yours"
+msgstr "Vous suit"
+
+#: src/Module/Contact.php:996
+msgid "you are a fan of"
+msgstr "Vous le/la suivez"
+
+#: src/Module/Contact.php:1020
+msgid "Edit contact"
+msgstr "Éditer le contact"
+
+#: src/Module/Contact.php:1074
+msgid "Toggle Blocked status"
+msgstr "(dés)activer l'état \"bloqué\""
 
-#: src/Model/User.php:597
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
-"\t\t"
-msgstr ""
+#: src/Module/Contact.php:1082
+msgid "Toggle Ignored status"
+msgstr "(dés)activer l'état \"ignoré\""
 
-#: src/Model/User.php:607
-#, php-format
-msgid "Registration at %s"
-msgstr ""
+#: src/Module/Contact.php:1091
+msgid "Toggle Archive status"
+msgstr "(dés)activer l'état \"archivé\""
 
-#: src/Model/User.php:625
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t\t"
-msgstr ""
+#: src/Module/Contact.php:1099
+msgid "Delete contact"
+msgstr "Effacer ce contact"
 
-#: src/Model/User.php:629
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t\t%1$s\n"
-"\t\t\tPassword:\t\t%5$s\n"
-"\n"
-"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\t\tin.\n"
-"\n"
-"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\t\tthan that.\n"
-"\n"
-"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n"
-"\n"
-"\t\t\tThank you and welcome to %2$s."
+#: src/Module/Install.php:118
+msgid "Friendica Communctions Server - Setup"
 msgstr ""
 
-#: src/Model/Contact.php:667
-msgid "Drop Contact"
-msgstr "Supprimer le contact"
+#: src/Module/Install.php:129
+msgid "System check"
+msgstr "Vérifications système"
 
-#: src/Model/Contact.php:1101
-msgid "Organisation"
+#: src/Module/Install.php:132
+msgid "Please see the file \"Install.txt\"."
 msgstr ""
 
-#: src/Model/Contact.php:1104
-msgid "News"
-msgstr "Nouvelles"
-
-#: src/Model/Contact.php:1107
-msgid "Forum"
-msgstr "Forum"
+#: src/Module/Install.php:134
+msgid "Check again"
+msgstr "Vérifier à nouveau"
 
-#: src/Model/Contact.php:1286
-msgid "Connect URL missing."
-msgstr "URL de connexion manquante."
+#: src/Module/Install.php:151
+msgid "Database connection"
+msgstr "Connexion à la base de données"
 
-#: src/Model/Contact.php:1295
+#: src/Module/Install.php:152
 msgid ""
-"The contact could not be added. Please check the relevant network "
-"credentials in your Settings -> Social Networks page."
-msgstr ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données."
 
-#: src/Model/Contact.php:1342
+#: src/Module/Install.php:153
 msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux."
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages."
 
-#: src/Model/Contact.php:1343 src/Model/Contact.php:1357
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Aucun protocole de communication ni aucun flux n'a pu être découvert."
+#: src/Module/Install.php:154
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer."
 
-#: src/Model/Contact.php:1355
-msgid "The profile address specified does not provide adequate information."
-msgstr "L'adresse de profil indiquée ne fournit par les informations adéquates."
+#: src/Module/Install.php:157
+msgid "Database Server Name"
+msgstr "Serveur de base de données"
 
-#: src/Model/Contact.php:1360
-msgid "An author or name was not found."
-msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé."
+#: src/Module/Install.php:162
+msgid "Database Login Name"
+msgstr "Nom d'utilisateur de la base"
 
-#: src/Model/Contact.php:1363
-msgid "No browser URL could be matched to this address."
-msgstr "Aucune URL de navigation ne correspond à cette adresse."
+#: src/Module/Install.php:168
+msgid "Database Login Password"
+msgstr "Mot de passe de la base"
 
-#: src/Model/Contact.php:1366
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel."
+#: src/Module/Install.php:170
+msgid "For security reasons the password must not be empty"
+msgstr "Pour des raisons de sécurité, le mot de passe ne peut pas être vide."
 
-#: src/Model/Contact.php:1367
-msgid "Use mailto: in front of address to force email check."
-msgstr "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel."
+#: src/Module/Install.php:173
+msgid "Database Name"
+msgstr "Nom de la base"
 
-#: src/Model/Contact.php:1373
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site."
+#: src/Module/Install.php:178 src/Module/Install.php:214
+msgid "Site administrator email address"
+msgstr "Adresse électronique de l'administrateur du site"
 
-#: src/Model/Contact.php:1378
+#: src/Module/Install.php:180 src/Module/Install.php:214
 msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part."
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration."
 
-#: src/Model/Contact.php:1429
-msgid "Unable to retrieve contact information."
-msgstr "Impossible de récupérer les informations du contact."
+#: src/Module/Install.php:184 src/Module/Install.php:215
+msgid "Please select a default timezone for your website"
+msgstr "Sélectionner un fuseau horaire par défaut pour votre site"
 
-#: src/Model/Contact.php:1646 src/Protocol/DFRN.php:1513
-#, php-format
-msgid "%s's birthday"
-msgstr "Anniversaire de %s's"
+#: src/Module/Install.php:208
+msgid "Site settings"
+msgstr "Réglages du site"
 
-#: src/Model/Contact.php:1647 src/Protocol/DFRN.php:1514
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Joyeux anniversaire, %s !"
+#: src/Module/Install.php:217
+msgid "System Language:"
+msgstr "Langue système :"
 
-#: src/Model/Item.php:1851
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr "%1$s participe à %3$s de %2$s"
+#: src/Module/Install.php:219
+msgid ""
+"Set the default language for your Friendica installation interface and to "
+"send emails."
+msgstr "Définit la langue par défaut pour l'interface de votre instance Friendica et les mails envoyés."
 
-#: src/Model/Item.php:1856
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr "%1$s ne participe pas à %3$s de %2$s"
+#: src/Module/Install.php:231
+msgid "Your Friendica site database has been installed."
+msgstr "La base de données de votre site Friendica a bien été installée."
 
-#: src/Model/Item.php:1861
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr "%1$s participera peut-être à %3$s de %2$s"
+#: src/Module/Install.php:239
+msgid "Installation finished"
+msgstr ""
 
-#: src/Protocol/OStatus.php:1799
-#, php-format
-msgid "%s is now following %s."
-msgstr "%s suit désormais %s."
+#: src/Module/Install.php:260
+msgid "<h1>What next</h1>"
+msgstr "<h1>Ensuite</h1>"
 
-#: src/Protocol/OStatus.php:1800
-msgid "following"
-msgstr "following"
+#: src/Module/Install.php:261
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"worker."
+msgstr "IMPORTANT: vous devrez ajouter [manuellement] une tâche planifiée pour le 'worker'."
 
-#: src/Protocol/OStatus.php:1803
+#: src/Module/Install.php:264
 #, php-format
-msgid "%s stopped following %s."
-msgstr "%s ne suit plus %s."
-
-#: src/Protocol/OStatus.php:1804
-msgid "stopped following"
-msgstr "retiré de la liste de suivi"
-
-#: src/Protocol/Diaspora.php:2521
-msgid "Sharing notification from Diaspora network"
-msgstr "Notification de partage du réseau Diaspora"
-
-#: src/Protocol/Diaspora.php:3609
-msgid "Attachments:"
-msgstr "Pièces jointes : "
-
-#: src/Worker/Delivery.php:415
-msgid "(no subject)"
-msgstr "(sans titre)"
+msgid ""
+"Go to your new Friendica node <a href=\"%s/register\">registration page</a> "
+"and register as new user. Remember to use the same email you have entered as"
+" administrator email. This will allow you to enter the site admin panel."
+msgstr ""
 
-#: src/Module/Logout.php:28
-msgid "Logged out."
-msgstr "Déconnecté."
+#: src/Module/Itemsource.php:32
+msgid "Item Guid"
+msgstr ""
 
-#: src/Module/Login.php:283
+#: src/Module/Login.php:290
 msgid "Create a New Account"
 msgstr "Créer un nouveau compte"
 
-#: src/Module/Login.php:316
+#: src/Module/Login.php:323
 msgid "Password: "
 msgstr "Mot de passe : "
 
-#: src/Module/Login.php:317
+#: src/Module/Login.php:324
 msgid "Remember me"
 msgstr "Se souvenir de moi"
 
-#: src/Module/Login.php:320
+#: src/Module/Login.php:327
 msgid "Or login using OpenID: "
 msgstr "Ou connectez-vous via OpenID : "
 
-#: src/Module/Login.php:326
+#: src/Module/Login.php:333
 msgid "Forgot your password?"
 msgstr "Mot de passe oublié?"
 
-#: src/Module/Login.php:329
+#: src/Module/Login.php:336
 msgid "Website Terms of Service"
 msgstr "Conditions d'utilisation du site internet"
 
-#: src/Module/Login.php:330
+#: src/Module/Login.php:337
 msgid "terms of service"
 msgstr "conditions d'utilisation"
 
-#: src/Module/Login.php:332
+#: src/Module/Login.php:339
 msgid "Website Privacy Policy"
 msgstr "Politique de confidentialité du site internet"
 
-#: src/Module/Login.php:333
+#: src/Module/Login.php:340
 msgid "privacy policy"
 msgstr "politique de confidentialité"
 
+#: src/Module/Logout.php:29
+msgid "Logged out."
+msgstr "Déconnecté."
+
+#: src/Module/Proxy.php:136
+msgid "Bad Request."
+msgstr ""
+
 #: src/Module/Tos.php:34 src/Module/Tos.php:74
 msgid ""
 "At the time of registration, and for providing communications between the "
@@ -9410,155 +9605,143 @@ msgstr ""
 msgid "Privacy Statement"
 msgstr ""
 
-#: src/Object/Post.php:128
+#: src/Object/Post.php:131
 msgid "This entry was edited"
 msgstr "Cette entrée a été éditée"
 
-#: src/Object/Post.php:187
-msgid "Remove from your stream"
+#: src/Object/Post.php:191
+msgid "Delete globally"
+msgstr ""
+
+#: src/Object/Post.php:191
+msgid "Remove locally"
 msgstr ""
 
-#: src/Object/Post.php:200
+#: src/Object/Post.php:204
 msgid "save to folder"
 msgstr "sauver vers dossier"
 
-#: src/Object/Post.php:243
+#: src/Object/Post.php:239
 msgid "I will attend"
 msgstr "Je vais participer"
 
-#: src/Object/Post.php:243
+#: src/Object/Post.php:239
 msgid "I will not attend"
 msgstr "Je ne vais pas participer"
 
-#: src/Object/Post.php:243
+#: src/Object/Post.php:239
 msgid "I might attend"
 msgstr "Je vais peut-être participer"
 
-#: src/Object/Post.php:271
+#: src/Object/Post.php:266
+msgid "ignore thread"
+msgstr "ignorer le fil"
+
+#: src/Object/Post.php:267
+msgid "unignore thread"
+msgstr "Ne plus ignorer le fil"
+
+#: src/Object/Post.php:268
+msgid "toggle ignore status"
+msgstr "Ignorer le statut"
+
+#: src/Object/Post.php:279
 msgid "add star"
 msgstr "mettre en avant"
 
-#: src/Object/Post.php:272
+#: src/Object/Post.php:280
 msgid "remove star"
 msgstr "ne plus mettre en avant"
 
-#: src/Object/Post.php:273
+#: src/Object/Post.php:281
 msgid "toggle star status"
 msgstr "mettre en avant"
 
-#: src/Object/Post.php:276
+#: src/Object/Post.php:284
 msgid "starred"
 msgstr "mis en avant"
 
-#: src/Object/Post.php:282
-msgid "ignore thread"
-msgstr "ignorer le fil"
-
-#: src/Object/Post.php:283
-msgid "unignore thread"
-msgstr "Ne plus ignorer le fil"
-
-#: src/Object/Post.php:284
-msgid "toggle ignore status"
-msgstr "Ignorer le statut"
-
-#: src/Object/Post.php:293
+#: src/Object/Post.php:289
 msgid "add tag"
 msgstr "ajouter une étiquette"
 
-#: src/Object/Post.php:304
+#: src/Object/Post.php:300
 msgid "like"
 msgstr "aime"
 
-#: src/Object/Post.php:305
+#: src/Object/Post.php:301
 msgid "dislike"
 msgstr "n'aime pas"
 
-#: src/Object/Post.php:308
+#: src/Object/Post.php:304
 msgid "Share this"
 msgstr "Partager"
 
-#: src/Object/Post.php:308
+#: src/Object/Post.php:304
 msgid "share"
 msgstr "partager"
 
-#: src/Object/Post.php:373
+#: src/Object/Post.php:371
 msgid "to"
 msgstr "à"
 
-#: src/Object/Post.php:374
+#: src/Object/Post.php:372
 msgid "via"
 msgstr "via"
 
-#: src/Object/Post.php:375
+#: src/Object/Post.php:373
 msgid "Wall-to-Wall"
 msgstr "Inter-mur"
 
-#: src/Object/Post.php:376
+#: src/Object/Post.php:374
 msgid "via Wall-To-Wall:"
 msgstr "en Inter-mur :"
 
-#: src/Object/Post.php:435
+#: src/Object/Post.php:433
 #, php-format
 msgid "%d comment"
 msgid_plural "%d comments"
 msgstr[0] "%d commentaire"
 msgstr[1] "%d commentaires"
 
-#: src/Object/Post.php:805
-msgid "Bold"
-msgstr "Gras"
-
-#: src/Object/Post.php:806
-msgid "Italic"
-msgstr "Italique"
-
-#: src/Object/Post.php:807
-msgid "Underline"
-msgstr "Souligné"
-
-#: src/Object/Post.php:808
-msgid "Quote"
-msgstr "Citation"
-
-#: src/Object/Post.php:809
-msgid "Code"
-msgstr "Code"
-
-#: src/Object/Post.php:810
-msgid "Image"
-msgstr "Image"
-
-#: src/Object/Post.php:811
-msgid "Link"
-msgstr "Lien"
-
-#: src/Object/Post.php:812
-msgid "Video"
-msgstr "Vidéo"
-
-#: src/App.php:524
+#: src/App.php:784
 msgid "Delete this item?"
 msgstr "Effacer cet élément?"
 
-#: src/App.php:526
+#: src/App.php:786
 msgid "show fewer"
 msgstr "montrer moins"
 
-#: src/App.php:1114
+#: src/App.php:828
+msgid "toggle mobile"
+msgstr "activ. mobile"
+
+#: src/App.php:1473
 msgid "No system theme config value set."
 msgstr ""
 
-#: index.php:464
-msgid "toggle mobile"
-msgstr "activ. mobile"
+#: src/BaseModule.php:133
+msgid ""
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé."
 
-#: update.php:193
+#: src/LegacyModule.php:29
 #, php-format
-msgid "%s: Updating author-id and owner-id in item and thread table. "
+msgid "Legacy module file not found: %s"
 msgstr ""
 
-#: boot.php:796
+#: boot.php:549
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "Mise-à-jour %s échouée. Voir les journaux d'erreur."
+
+#: update.php:194
+#, php-format
+msgid "%s: Updating author-id and owner-id in item and thread table. "
+msgstr ""
+
+#: update.php:240
+#, php-format
+msgid "%s: Updating post-type."
+msgstr ""
index 3a7ec6e3faef6f994b7d377fd80c35a09ffdee11..cc61af5cd10953445493f271fc531bf678f5827f 100644 (file)
@@ -6,73 +6,9 @@ function string_plural_select_fr($n){
        return ($n > 1);;
 }}
 ;
-$a->strings["Friendica Notification"] = "Notification Friendica";
-$a->strings["Thank You,"] = "Merci, ";
-$a->strings["%s Administrator"] = "L'administrateur de %s";
-$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s,, l'administrateur de %2\$s";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notification] Nouveau courriel reçu sur %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s vous a envoyé un nouveau message privé sur %2\$s.";
-$a->strings["a private message"] = "un message privé";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s vous a envoyé %2\$s.";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Merci de visiter %s pour voir vos messages privés et/ou y répondre.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s a commenté sur [url=%2\$s]un %3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s a commenté sur [url=%2\$s]le %4\$s de %3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s commented on [url=%2\$s]your %3\$s[/url]";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notification] Commentaire de %2\$s sur la conversation #%1\$d";
-$a->strings["%s commented on an item/conversation you have been following."] = "%s a commenté un élément que vous suivez.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Merci de visiter %s pour voir la conversation et/ou y répondre.";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notification] %s a posté sur votre mur";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s a publié sur votre mur à %2\$s";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s a posté sur [url=%2\$s]votre mur[/url]";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notification] %s vous a étiqueté";
-$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s vous a étiqueté sur %2\$s";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]vous a étiqueté[/url].";
-$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notification] %s partage une nouvelle publication";
-$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s a partagé une nouvelle publication sur %2\$s";
-$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]partage une publication[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s vous a sollicité";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s vous a sollicité via %2\$s";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s vous a [url=%2\$s]sollicité[/url].";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notification] %s a étiqueté votre publication";
-$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s a étiqueté votre publication sur %2\$s";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s a étiqueté [url=%2\$s]votre publication[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notification] Introduction reçue";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Vous avez reçu une introduction de '%1\$s' sur %2\$s";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Vous avez reçu [url=%1\$s]une introduction[/url] de %2\$s.";
-$a->strings["You may visit their profile at %s"] = "Vous pouvez visiter son profil sur %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Merci de visiter %s pour approuver ou rejeter l'introduction.";
-$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Notification Friendica] Une nouvelle personne partage avec vous";
-$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s partage avec vous sur %2\$s";
-$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notification] Vous avez un nouvel abonné";
-$a->strings["You have a new follower at %2\$s : %1\$s"] = "Vous avez un nouvel abonné à %2\$s : %1\$s";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notification] Nouvelle suggestion d'amitié";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Vous avez reçu une suggestion de '%1\$s' sur %2\$s";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Vous avez reçu [url=%1\$s]une suggestion[/url] de %3\$s pour %2\$s.";
-$a->strings["Name:"] = "Nom :";
-$a->strings["Photo:"] = "Photo :";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Merci de visiter %s pour approuver ou rejeter la suggestion.";
-$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notification] Connexion acceptée";
-$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' a accepté votre demande de connexion à %2\$s";
-$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s a accepté votre [url=%1\$s]demande de connexion[/url].";
-$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Vous êtes désormais mutuellement amis, et pouvez échanger des mises-à-jour d'état, des photos, et des messages sans restriction.";
-$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Veuillez visiter %s si vous souhaitez modifier cette relation.";
-$a->strings["'%1\$s' has chosen to accept you a fan, which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "";
-$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "%1\$s peut choisir à l'avenir de rendre cette relation réciproque ou au moins plus permissive.";
-$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Veuillez visiter %s si vous souhaitez modifier cette relation.";
-$a->strings["[Friendica System Notify]"] = "";
-$a->strings["registration request"] = "";
-$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Vous avez reçu une demande d'inscription de %1\$s sur %2\$s";
-$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "%2\$s vous a envoyé une [url=%1\$s]demande de création de compte[/url].";
-$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "";
-$a->strings["Please visit %s to approve or reject the request."] = "Veuillez visiter %s pour approuver ou rejeter la demande.";
-$a->strings["Welcome "] = "Bienvenue ";
-$a->strings["Please upload a profile photo."] = "Merci d'illustrer votre profil d'une image.";
-$a->strings["Welcome back "] = "Bienvenue à nouveau, ";
-$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé.";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Impossible de localiser les informations DNS pour le serveur de base de données '%s'";
 $a->strings["Daily posting limit of %d post reached. The post was rejected."] = [
-       0 => "",
-       1 => "",
+       0 => "Limite quotidienne de publications de%d atteinte. La publication a été rejetée.",
+       1 => "Limite quotidienne de %dpublications atteinte.  La publication a été rejetée.",
 ];
 $a->strings["Weekly posting limit of %d post reached. The post was rejected."] = [
        0 => "",
@@ -126,7 +62,7 @@ $a->strings["%s attends."] = "%s participe";
 $a->strings["%s doesn't attend."] = "%s ne participe pas";
 $a->strings["%s attends maybe."] = "%s participe peut-être";
 $a->strings["and"] = "et";
-$a->strings["and %d other people"] = "";
+$a->strings["and %d other people"] = "et %dautres personnes";
 $a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d personnes</span> aiment ça";
 $a->strings["%s like this."] = "%s aime ça.";
 $a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d personnes</span> n'aiment pas ça";
@@ -136,27 +72,27 @@ $a->strings["%s attend."] = "%s participent.";
 $a->strings["<span  %1\$s>%2\$d people</span> don't attend"] = "<span  %1\$s>%2\$d personnes</span> ne participent pas";
 $a->strings["%s don't attend."] = "%s ne participent pas.";
 $a->strings["<span  %1\$s>%2\$d people</span> attend maybe"] = "<span  %1\$s>%2\$d personnes</span> vont peut-être participer";
-$a->strings["%s attend maybe."] = "";
+$a->strings["%s attend maybe."] = "%sparticipent peut-être";
 $a->strings["Visible to <strong>everybody</strong>"] = "Visible par <strong>tout le monde</strong>";
-$a->strings["Please enter a link URL:"] = "Entrez un lien web :";
-$a->strings["Please enter a video link/URL:"] = "Entrez un lien/URL video :";
-$a->strings["Please enter an audio link/URL:"] = "Entrez un lien/URL audio :";
+$a->strings["Please enter a image/video/audio/webpage URL:"] = "";
 $a->strings["Tag term:"] = "Étiquette :";
 $a->strings["Save to Folder:"] = "Sauver dans le Dossier :";
 $a->strings["Where are you right now?"] = "Où êtes-vous actuellement ?";
 $a->strings["Delete item(s)?"] = "Supprimer les élément(s) ?";
-$a->strings["New Post"] = "";
+$a->strings["New Post"] = "Nouvelle publication";
 $a->strings["Share"] = "Partager";
 $a->strings["Upload photo"] = "Joindre photo";
 $a->strings["upload photo"] = "envoi image";
 $a->strings["Attach file"] = "Joindre fichier";
 $a->strings["attach file"] = "ajout fichier";
-$a->strings["Insert web link"] = "Insérer lien web";
-$a->strings["web link"] = "lien web";
-$a->strings["Insert video link"] = "Insérer un lien video";
-$a->strings["video link"] = "lien vidéo";
-$a->strings["Insert audio link"] = "Insérer un lien audio";
-$a->strings["audio link"] = "lien audio";
+$a->strings["Bold"] = "Gras";
+$a->strings["Italic"] = "Italique";
+$a->strings["Underline"] = "Souligné";
+$a->strings["Quote"] = "Citation";
+$a->strings["Code"] = "Code";
+$a->strings["Image"] = "Image";
+$a->strings["Link"] = "Lien";
+$a->strings["Link or Media"] = "Lien ou média";
 $a->strings["Set your location"] = "Définir votre localisation";
 $a->strings["set location"] = "spéc. localisation";
 $a->strings["Clear browser location"] = "Effacer la localisation du navigateur";
@@ -190,18 +126,71 @@ $a->strings["Undecided"] = [
        0 => "Indécis",
        1 => "Indécis",
 ];
+$a->strings["Friendica Notification"] = "Notification Friendica";
+$a->strings["Thank You,"] = "Merci, ";
+$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s,, l'administrateur de %2\$s";
+$a->strings["%s Administrator"] = "L'administrateur de %s";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notification] Nouveau courriel reçu sur %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s vous a envoyé un nouveau message privé sur %2\$s.";
+$a->strings["a private message"] = "un message privé";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s vous a envoyé %2\$s.";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Merci de visiter %s pour voir vos messages privés et/ou y répondre.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s a commenté sur [url=%2\$s]un %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s a commenté sur [url=%2\$s]le %4\$s de %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s commented on [url=%2\$s]your %3\$s[/url]";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notification] Commentaire de %2\$s sur la conversation #%1\$d";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s a commenté un élément que vous suivez.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Merci de visiter %s pour voir la conversation et/ou y répondre.";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notification] %s a posté sur votre mur";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s a publié sur votre mur à %2\$s";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s a posté sur [url=%2\$s]votre mur[/url]";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notification] %s vous a étiqueté";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s vous a étiqueté sur %2\$s";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]vous a étiqueté[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notification] %s partage une nouvelle publication";
+$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s a partagé une nouvelle publication sur %2\$s";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]partage une publication[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s vous a sollicité";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s vous a sollicité via %2\$s";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s vous a [url=%2\$s]sollicité[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notification] %s a étiqueté votre publication";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s a étiqueté votre publication sur %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s a étiqueté [url=%2\$s]votre publication[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notification] Introduction reçue";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Vous avez reçu une introduction de '%1\$s' sur %2\$s";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Vous avez reçu [url=%1\$s]une introduction[/url] de %2\$s.";
+$a->strings["You may visit their profile at %s"] = "Vous pouvez visiter son profil sur %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Merci de visiter %s pour approuver ou rejeter l'introduction.";
+$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Notification Friendica] Une nouvelle personne partage avec vous";
+$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s partage avec vous sur %2\$s";
+$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notification] Vous avez un nouvel abonné";
+$a->strings["You have a new follower at %2\$s : %1\$s"] = "Vous avez un nouvel abonné à %2\$s : %1\$s";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notification] Nouvelle suggestion d'amitié";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Vous avez reçu une suggestion de '%1\$s' sur %2\$s";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Vous avez reçu [url=%1\$s]une suggestion[/url] de %3\$s pour %2\$s.";
+$a->strings["Name:"] = "Nom :";
+$a->strings["Photo:"] = "Photo :";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Merci de visiter %s pour approuver ou rejeter la suggestion.";
+$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notification] Connexion acceptée";
+$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' a accepté votre demande de connexion à %2\$s";
+$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s a accepté votre [url=%1\$s]demande de connexion[/url].";
+$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Vous êtes désormais mutuellement amis, et pouvez échanger des mises-à-jour d'état, des photos, et des messages sans restriction.";
+$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Veuillez visiter %s si vous souhaitez modifier cette relation.";
+$a->strings["'%1\$s' has chosen to accept you a fan, which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "";
+$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "%1\$s peut choisir à l'avenir de rendre cette relation réciproque ou au moins plus permissive.";
+$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Veuillez visiter %s si vous souhaitez modifier cette relation.";
+$a->strings["[Friendica System Notify]"] = "";
+$a->strings["registration request"] = "demande d'inscription";
+$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Vous avez reçu une demande d'inscription de %1\$s sur %2\$s";
+$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "%2\$s vous a envoyé une [url=%1\$s]demande de création de compte[/url].";
+$a->strings["Full Name:\t%s\nSite Location:\t%s\nLogin Name:\t%s (%s)"] = "";
+$a->strings["Please visit %s to approve or reject the request."] = "Veuillez visiter %s pour approuver ou rejeter la demande.";
 $a->strings["Item not found."] = "Élément introuvable.";
 $a->strings["Do you really want to delete this item?"] = "Voulez-vous vraiment supprimer cet élément ?";
 $a->strings["Yes"] = "Oui";
 $a->strings["Permission denied."] = "Permission refusée.";
 $a->strings["Archives"] = "Archives";
 $a->strings["show more"] = "montrer plus";
-$a->strings["newer"] = "Plus récent";
-$a->strings["older"] = "Plus ancien";
-$a->strings["first"] = "premier";
-$a->strings["prev"] = "précédent";
-$a->strings["next"] = "suivant";
-$a->strings["last"] = "dernier";
 $a->strings["Loading more entries..."] = "Chargement de résultats supplémentaires...";
 $a->strings["The end"] = "Fin";
 $a->strings["No contacts"] = "Aucun contact";
@@ -211,7 +200,7 @@ $a->strings["%d Contact"] = [
 ];
 $a->strings["View Contacts"] = "Voir les contacts";
 $a->strings["Save"] = "Sauver";
-$a->strings["Follow"] = "";
+$a->strings["Follow"] = "S'abonner";
 $a->strings["Search"] = "Recherche";
 $a->strings["@name, !forum, #tags, content"] = "@nom, !forum, #tags, contenu";
 $a->strings["Full Text"] = "Texte Entier";
@@ -266,7 +255,7 @@ $a->strings["Sep"] = "";
 $a->strings["Oct"] = "Oct";
 $a->strings["Nov"] = "Nov";
 $a->strings["Dec"] = "Déc";
-$a->strings["Content warning: %s"] = "";
+$a->strings["Content warning: %s"] = "Avertissement de contenu: %s";
 $a->strings["View Video"] = "Regarder la vidéo";
 $a->strings["bytes"] = "octets";
 $a->strings["Click to open/close"] = "Cliquer pour ouvrir/fermer";
@@ -280,101 +269,9 @@ $a->strings["comment"] = [
 ];
 $a->strings["post"] = "publication";
 $a->strings["Item filed"] = "Élément classé";
-$a->strings["No friends to display."] = "Pas d'amis à afficher.";
-$a->strings["Connect"] = "Se connecter";
-$a->strings["Authorize application connection"] = "Autoriser l'application à se connecter";
-$a->strings["Return to your app and insert this Securty Code:"] = "Retournez à votre application et saisissez ce Code de Sécurité : ";
-$a->strings["Please login to continue."] = "Merci de vous connecter pour continuer.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à créer des billets à votre place?";
-$a->strings["No"] = "Non";
-$a->strings["You must be logged in to use addons. "] = "Vous devez être connecté pour utiliser les greffons.";
-$a->strings["Applications"] = "Applications";
-$a->strings["No installed applications."] = "Pas d'application installée.";
-$a->strings["Item not available."] = "Elément non disponible.";
-$a->strings["Item was not found."] = "Element introuvable.";
-$a->strings["No contacts in common."] = "Pas de contacts en commun.";
-$a->strings["Common Friends"] = "Amis communs";
 $a->strings["Credits"] = "Remerciements";
 $a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica est un projet communautaire, qui ne serait pas possible sans l'aide de beaucoup de gens. Voici une liste de ceux qui ont contribué au code ou à la traduction de Friendica. Merci à tous!";
-$a->strings["Photos"] = "Photos";
-$a->strings["Contact Photos"] = "Photos du contact";
-$a->strings["Upload"] = "Téléverser";
-$a->strings["Files"] = "Fichiers";
-$a->strings["Not Found"] = "Non trouvé";
-$a->strings["No profile"] = "Aucun profil";
-$a->strings["Welcome to %s"] = "Bienvenue sur %s";
-$a->strings["Remote privacy information not available."] = "Informations de confidentialité indisponibles.";
-$a->strings["Visible to:"] = "Visible par :";
 $a->strings["System down for maintenance"] = "Système indisponible pour cause de maintenance";
-$a->strings["Welcome to Friendica"] = "Bienvenue sur Friendica";
-$a->strings["New Member Checklist"] = "Checklist du nouvel utilisateur";
-$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement.";
-$a->strings["Getting Started"] = "Bien démarrer";
-$a->strings["Friendica Walk-Through"] = "Friendica pas-à-pas";
-$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sur votre page d'accueil, dans <em>Conseils aux nouveaux venus</em> - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre.";
-$a->strings["Settings"] = "Réglages";
-$a->strings["Go to Your Settings"] = "Éditer vos Réglages";
-$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Sur la page des <em>Réglages</em> -     changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre.";
-$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver.";
-$a->strings["Profile"] = "Profil";
-$a->strings["Upload Profile Photo"] = "Téléverser une photo de profil";
-$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis.";
-$a->strings["Edit Your Profile"] = "Éditer votre Profil";
-$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Éditez votre profil <strong>par défaut</strong> à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus.";
-$a->strings["Profile Keywords"] = "Mots-clés du profil";
-$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent.";
-$a->strings["Connecting"] = "Connexions";
-$a->strings["Importing Emails"] = "Importer courriels";
-$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception.";
-$a->strings["Go to Your Contacts Page"] = "Consulter vos Contacts";
-$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire <em>Ajouter un nouveau contact</em>.";
-$a->strings["Go to Your Site's Directory"] = "Consulter l'Annuaire de votre Site";
-$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien <em>Relier</em> ou <em>Suivre</em> sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité.";
-$a->strings["Finding New People"] = "Trouver de nouvelles personnes";
-$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures.";
-$a->strings["Groups"] = "Groupes";
-$a->strings["Group Your Contacts"] = "Grouper vos contacts";
-$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau.";
-$a->strings["Why Aren't My Posts Public?"] = "Pourquoi mes éléments ne sont pas publics ?";
-$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus.";
-$a->strings["Getting Help"] = "Obtenir de l'aide";
-$a->strings["Go to the Help Section"] = "Aller à la section Aide";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Nos pages d'<strong>aide</strong> peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources.";
-$a->strings["Visit %s's profile [%s]"] = "Visiter le profil de %s [%s]";
-$a->strings["Edit contact"] = "Éditer le contact";
-$a->strings["Contacts who are not members of a group"] = "Contacts qui n’appartiennent à aucun groupe";
-$a->strings["Not Extended"] = "";
-$a->strings["Resubscribing to OStatus contacts"] = "Réinscription aux contacts OStatus";
-$a->strings["Error"] = "Erreur";
-$a->strings["Done"] = "Terminé";
-$a->strings["Keep this window open until done."] = "Veuillez garder cette fenêtre ouverte jusqu'à la fin.";
-$a->strings["Do you really want to delete this suggestion?"] = "Voulez-vous vraiment supprimer cette suggestion ?";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h.";
-$a->strings["Ignore/Hide"] = "Ignorer/cacher";
-$a->strings["Friend Suggestions"] = "Suggestions d'amitiés/contacts";
-$a->strings["[Embedded content - reload page to view]"] = "[Ccontenu incorporé - rechargez la page pour le voir]";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain.";
-$a->strings["Import"] = "Importer";
-$a->strings["Move account"] = "Migrer le compte";
-$a->strings["You can import an account from another Friendica server."] = "Vous pouvez importer un compte d'un autre serveur Friendica.";
-$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici.";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Cette fonctionalité est expérimentale. Il n'est pas possible d'importer des contacts depuis le réseau OStatus (GNU Social/Statusnet) ou depuis Diaspora.";
-$a->strings["Account file"] = "Fichier du compte";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\"";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut.";
-$a->strings["is interested in:"] = "s'intéresse à :";
-$a->strings["Profile Match"] = "Correpondance de profils";
-$a->strings["No matches"] = "Aucune correspondance";
-$a->strings["Manage Identities and/or Pages"] = "Gérer les identités et/ou les pages";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer.";
-$a->strings["Select an identity to manage: "] = "Choisir une identité à gérer: ";
-$a->strings["Submit"] = "Envoyer";
-$a->strings["Invalid request."] = "Requête invalide.";
-$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise";
-$a->strings["Or - did you try to upload an empty file?"] = "Ou — auriez-vous essayé de télécharger un fichier vide ?";
-$a->strings["File exceeds size limit of %s"] = "La taille du fichier dépasse la limite de %s";
-$a->strings["File upload failed."] = "Le téléversement a échoué.";
-$a->strings["- select -"] = "- choisir -";
 $a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
 $a->strings["Time Conversion"] = "Conversion temporelle";
 $a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire.";
@@ -382,534 +279,36 @@ $a->strings["UTC time: %s"] = "Temps UTC : %s";
 $a->strings["Current timezone: %s"] = "Zone de temps courante : %s";
 $a->strings["Converted localtime: %s"] = "Temps local converti : %s";
 $a->strings["Please select your timezone:"] = "Sélectionner votre zone :";
-$a->strings["No more system notifications."] = "Pas plus de notifications système.";
-$a->strings["System Notifications"] = "Notifications du système";
-$a->strings["{0} wants to be your friend"] = "{0} souhaite être votre ami(e)";
-$a->strings["{0} sent you a message"] = "{0} vous a envoyé un message";
-$a->strings["{0} requested registration"] = "{0} a demandé à s'inscrire";
-$a->strings["Poke/Prod"] = "Solliciter";
-$a->strings["poke, prod or do other things to somebody"] = "solliciter (poke/...) quelqu'un";
-$a->strings["Recipient"] = "Destinataire";
-$a->strings["Choose what you wish to do to recipient"] = "Choisissez ce que vous voulez faire au destinataire";
-$a->strings["Make this post private"] = "Rendez ce message privé";
-$a->strings["Public access denied."] = "Accès public refusé.";
-$a->strings["Only logged in users are permitted to perform a probing."] = "";
-$a->strings["Permission denied"] = "Permission refusée";
-$a->strings["Invalid profile identifier."] = "Identifiant de profil invalide.";
-$a->strings["Profile Visibility Editor"] = "Éditer la visibilité du profil";
-$a->strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le supprimer.";
-$a->strings["Visible To"] = "Visible par";
-$a->strings["All Contacts (with secure profile access)"] = "Tous les contacts (ayant un accès sécurisé)";
-$a->strings["Account approved."] = "Inscription validée.";
-$a->strings["Registration revoked for %s"] = "Inscription révoquée pour %s";
-$a->strings["Please login."] = "Merci de vous connecter.";
-$a->strings["Remove term"] = "Retirer le terme";
-$a->strings["Saved Searches"] = "Recherches";
-$a->strings["Only logged in users are permitted to perform a search."] = "Seuls les utilisateurs inscrits sont autorisés à lancer une recherche.";
-$a->strings["Too Many Requests"] = "Trop de requêtes";
-$a->strings["Only one search per minute is permitted for not logged in users."] = "Une seule recherche par minute pour les utilisateurs qui ne sont pas connectés.";
-$a->strings["No results."] = "Aucun résultat.";
-$a->strings["Items tagged with: %s"] = "Éléments taggés %s";
-$a->strings["Results for: %s"] = "Résultats pour : %s";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit les %3\$s de %2\$s";
-$a->strings["Tag removed"] = "Étiquette supprimée";
-$a->strings["Remove Item Tag"] = "Enlever l'étiquette de l'élément";
-$a->strings["Select a tag to remove: "] = "Sélectionner une étiquette à supprimer :";
-$a->strings["Remove"] = "Utiliser comme photo de profil";
-$a->strings["Export account"] = "Exporter le compte";
-$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur.";
-$a->strings["Export all"] = "Tout exporter";
-$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos).";
-$a->strings["Export personal data"] = "Exporter";
-$a->strings["No contacts."] = "Aucun contact.";
-$a->strings["Access denied."] = "Accès refusé.";
-$a->strings["Image exceeds size limit of %s"] = "L'image dépasse la taille limite de %s";
-$a->strings["Unable to process image."] = "Impossible de traiter l'image.";
-$a->strings["Wall Photos"] = "Photos du mur";
-$a->strings["Image upload failed."] = "Le téléversement de l'image a échoué.";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message.";
-$a->strings["No recipient selected."] = "Pas de destinataire sélectionné.";
-$a->strings["Unable to check your home location."] = "Impossible de vérifier votre localisation.";
-$a->strings["Message could not be sent."] = "Impossible d'envoyer le message.";
-$a->strings["Message collection failure."] = "Récupération des messages infructueuse.";
-$a->strings["Message sent."] = "Message envoyé.";
-$a->strings["No recipient."] = "Pas de destinataire.";
-$a->strings["Send Private Message"] = "Envoyer un message privé";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus.";
-$a->strings["To:"] = "À:";
-$a->strings["Subject:"] = "Sujet:";
-$a->strings["Your message:"] = "Votre message :";
-$a->strings["Login"] = "Connexion";
-$a->strings["The post was created"] = "La publication a été créée";
-$a->strings["Item not found"] = "Élément introuvable";
-$a->strings["Edit post"] = "Éditer la publication";
-$a->strings["CC: email addresses"] = "CC: adresses de courriel";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Exemple : bob@exemple.com, mary@exemple.com";
-$a->strings["Contact not found."] = "Contact introuvable.";
-$a->strings["Friend suggestion sent."] = "Suggestion d'amitié/contact envoyée.";
-$a->strings["Suggest Friends"] = "Suggérer des amis/contacts";
-$a->strings["Suggest a friend for %s"] = "Suggérer un ami/contact pour %s";
-$a->strings["Personal Notes"] = "Notes personnelles";
-$a->strings["Photo Albums"] = "Albums photo";
-$a->strings["Recent Photos"] = "Photos récentes";
-$a->strings["Upload New Photos"] = "Téléverser de nouvelles photos";
-$a->strings["everybody"] = "tout le monde";
-$a->strings["Contact information unavailable"] = "Informations de contact indisponibles";
-$a->strings["Album not found."] = "Album introuvable.";
-$a->strings["Delete Album"] = "Effacer l'album";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?";
-$a->strings["Delete Photo"] = "Effacer la photo";
-$a->strings["Do you really want to delete this photo?"] = "Voulez-vous vraiment supprimer cette photo ?";
-$a->strings["a photo"] = "une photo";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s a été étiqueté dans %2\$s par %3\$s";
-$a->strings["Image upload didn't complete, please try again"] = "";
-$a->strings["Image file is missing"] = "";
-$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "";
-$a->strings["Image file is empty."] = "Fichier image vide.";
-$a->strings["No photos selected"] = "Aucune photo sélectionnée";
-$a->strings["Access to this item is restricted."] = "Accès restreint à cet élément.";
-$a->strings["Upload Photos"] = "Téléverser des photos";
-$a->strings["New album name: "] = "Nom du nouvel album : ";
-$a->strings["or existing album name: "] = "ou nom d'un album existant : ";
-$a->strings["Do not show a status post for this upload"] = "Ne pas publier de notice de statut pour cet envoi";
-$a->strings["Permissions"] = "Permissions";
-$a->strings["Show to Groups"] = "Montrer aux groupes";
-$a->strings["Show to Contacts"] = "Montrer aux Contacts";
-$a->strings["Edit Album"] = "Éditer l'album";
-$a->strings["Show Newest First"] = "Plus récent d'abord";
-$a->strings["Show Oldest First"] = "Plus ancien d'abord";
-$a->strings["View Photo"] = "Voir la photo";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Interdit. L'accès à cet élément peut avoir été restreint.";
-$a->strings["Photo not available"] = "Photo indisponible";
-$a->strings["View photo"] = "Voir photo";
-$a->strings["Edit photo"] = "Éditer la photo";
-$a->strings["Use as profile photo"] = "Utiliser comme photo de profil";
-$a->strings["Private Message"] = "Message privé";
-$a->strings["View Full Size"] = "Voir en taille réelle";
-$a->strings["Tags: "] = "Étiquettes :";
-$a->strings["[Remove any tag]"] = "[Retirer toutes les étiquettes]";
-$a->strings["New album name"] = "Nom du nouvel album";
-$a->strings["Caption"] = "Titre";
-$a->strings["Add a Tag"] = "Ajouter une étiquette";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemples : @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances";
-$a->strings["Do not rotate"] = "Pas de rotation";
-$a->strings["Rotate CW (right)"] = "Tourner dans le sens des aiguilles d'une montre (vers la droite)";
-$a->strings["Rotate CCW (left)"] = "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)";
-$a->strings["I like this (toggle)"] = "J'aime";
-$a->strings["I don't like this (toggle)"] = "Je n'aime pas";
-$a->strings["This is you"] = "C'est vous";
-$a->strings["Comment"] = "Commenter";
-$a->strings["Map"] = "Carte";
-$a->strings["View Album"] = "Voir l'album";
-$a->strings["Do you really want to delete this video?"] = "Voulez-vous vraiment supprimer cette vidéo?";
-$a->strings["Delete Video"] = "Supprimer la vidéo";
-$a->strings["No videos selected"] = "Pas de vidéo sélectionné";
-$a->strings["Recent Videos"] = "Vidéos récente";
-$a->strings["Upload New Videos"] = "Téléversé une nouvelle vidéo";
-$a->strings["Access to this profile has been restricted."] = "L'accès au profil a été restreint.";
-$a->strings["Events"] = "Événements";
-$a->strings["View"] = "Vue";
-$a->strings["Previous"] = "Précédent";
-$a->strings["Next"] = "Suivant";
-$a->strings["today"] = "aujourd'hui";
-$a->strings["month"] = "mois";
-$a->strings["week"] = "semaine";
-$a->strings["day"] = "jour";
-$a->strings["list"] = "";
-$a->strings["User not found"] = "Utilisateur introuvable";
-$a->strings["This calendar format is not supported"] = "Format de calendrier inconnu";
-$a->strings["No exportable data found"] = "Rien à exporter";
-$a->strings["calendar"] = "calendrier";
-$a->strings["Network:"] = "Réseau";
-$a->strings["%d contact edited."] = [
-       0 => "%d contact mis à jour.",
-       1 => "%d contacts mis à jour.",
-];
-$a->strings["Could not access contact record."] = "Impossible d'accéder à l'enregistrement du contact.";
-$a->strings["Could not locate selected profile."] = "Impossible de localiser le profil séléctionné.";
-$a->strings["Contact updated."] = "Contact mis à jour.";
-$a->strings["Failed to update contact record."] = "Échec de mise à jour du contact.";
-$a->strings["Contact has been blocked"] = "Le contact a été bloqué";
-$a->strings["Contact has been unblocked"] = "Le contact n'est plus bloqué";
-$a->strings["Contact has been ignored"] = "Le contact a été ignoré";
-$a->strings["Contact has been unignored"] = "Le contact n'est plus ignoré";
-$a->strings["Contact has been archived"] = "Contact archivé";
-$a->strings["Contact has been unarchived"] = "Contact désarchivé";
-$a->strings["Drop contact"] = "Supprimer contact";
-$a->strings["Do you really want to delete this contact?"] = "Voulez-vous vraiment supprimer ce contact?";
-$a->strings["Contact has been removed."] = "Ce contact a été retiré.";
-$a->strings["You are mutual friends with %s"] = "Vous êtes ami (et réciproquement) avec %s";
-$a->strings["You are sharing with %s"] = "Vous partagez avec %s";
-$a->strings["%s is sharing with you"] = "%s partage avec vous";
-$a->strings["Private communications are not available for this contact."] = "Les communications privées ne sont pas disponibles pour ce contact.";
-$a->strings["Never"] = "Jamais";
-$a->strings["(Update was successful)"] = "(Mise à jour effectuée avec succès)";
-$a->strings["(Update was not successful)"] = "(Échec de la mise à jour)";
-$a->strings["Suggest friends"] = "Suggérer amitié/contact";
-$a->strings["Network type: %s"] = "Type de réseau %s";
-$a->strings["Communications lost with this contact!"] = "Communications perdues avec ce contact !";
-$a->strings["Fetch further information for feeds"] = "Chercher plus d'informations pour les flux";
-$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "";
-$a->strings["Disabled"] = "Désactivé";
-$a->strings["Fetch information"] = "Récupérer informations";
-$a->strings["Fetch keywords"] = "";
-$a->strings["Fetch information and keywords"] = "Récupérer informations";
-$a->strings["Disconnect/Unfollow"] = "Se déconnecter/Ne plus suivre";
-$a->strings["Contact"] = "Contact";
-$a->strings["Profile Visibility"] = "Visibilité du profil";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée.";
-$a->strings["Contact Information / Notes"] = "Informations de contact / Notes";
-$a->strings["Their personal note"] = "";
-$a->strings["Edit contact notes"] = "Éditer les notes des contacts";
-$a->strings["Block/Unblock contact"] = "Bloquer/débloquer ce contact";
-$a->strings["Ignore contact"] = "Ignorer ce contact";
-$a->strings["Repair URL settings"] = "Réglages de réparation des URL";
-$a->strings["View conversations"] = "Voir les conversations";
-$a->strings["Last update:"] = "Dernière mise-à-jour :";
-$a->strings["Update public posts"] = "Mettre à jour les publications publiques:";
-$a->strings["Update now"] = "Mettre à jour";
-$a->strings["Unblock"] = "Débloquer";
-$a->strings["Block"] = "Bloquer";
-$a->strings["Unignore"] = "Ne plus ignorer";
-$a->strings["Ignore"] = "Ignorer";
-$a->strings["Currently blocked"] = "Actuellement bloqué";
-$a->strings["Currently ignored"] = "Actuellement ignoré";
-$a->strings["Currently archived"] = "Actuellement archivé";
-$a->strings["Awaiting connection acknowledge"] = "";
-$a->strings["Hide this contact from others"] = "Cacher ce contact aux autres";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Les réponses et \"j'aime\" à vos publications publiques <strong>peuvent</strong> être toujours visibles";
-$a->strings["Notification for new posts"] = "Notification des nouvelles publications";
-$a->strings["Send a notification of every new post of this contact"] = "Envoyer une notification de chaque nouveau message en provenance de ce contact";
-$a->strings["Blacklisted keywords"] = "Mots-clés sur la liste noire";
-$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Liste de mots-clés separés par des virgules qui ne doivent pas être converti en mots-dièse quand  « Récupérer informations et mots-clés » est sélectionné.";
-$a->strings["Profile URL"] = "URL du Profil";
-$a->strings["Location:"] = "Localisation :";
-$a->strings["XMPP:"] = "XMPP";
-$a->strings["About:"] = "À propos :";
-$a->strings["Tags:"] = "Étiquette :";
-$a->strings["Actions"] = "Actions";
-$a->strings["Status"] = "Statut";
-$a->strings["Contact Settings"] = "Paramètres du Contact";
-$a->strings["Suggestions"] = "Suggestions";
-$a->strings["Suggest potential friends"] = "Suggérer des amis potentiels";
-$a->strings["All Contacts"] = "Tous les contacts";
-$a->strings["Show all contacts"] = "Montrer tous les contacts";
-$a->strings["Unblocked"] = "Non-bloqués";
-$a->strings["Only show unblocked contacts"] = "Ne montrer que les contacts non-bloqués";
-$a->strings["Blocked"] = "Bloqués";
-$a->strings["Only show blocked contacts"] = "Ne montrer que les contacts bloqués";
-$a->strings["Ignored"] = "Ignorés";
-$a->strings["Only show ignored contacts"] = "Ne montrer que les contacts ignorés";
-$a->strings["Archived"] = "Archivés";
-$a->strings["Only show archived contacts"] = "Ne montrer que les contacts archivés";
-$a->strings["Hidden"] = "Cachés";
-$a->strings["Only show hidden contacts"] = "Ne montrer que les contacts masqués";
-$a->strings["Search your contacts"] = "Rechercher dans vos contacts";
-$a->strings["Find"] = "Trouver";
-$a->strings["Update"] = "Mises à jour";
-$a->strings["Archive"] = "Archiver";
-$a->strings["Unarchive"] = "Désarchiver";
-$a->strings["Batch Actions"] = "Actions multiples";
-$a->strings["Status Messages and Posts"] = "Messages d'état et publications";
-$a->strings["Profile Details"] = "Détails du profil";
-$a->strings["View all contacts"] = "Voir tous les contacts";
-$a->strings["View all common friends"] = "Voir tous les amis communs";
-$a->strings["Advanced"] = "Avancé";
-$a->strings["Advanced Contact Settings"] = "Réglages avancés du contact";
-$a->strings["Mutual Friendship"] = "Relation réciproque";
-$a->strings["is a fan of yours"] = "Vous suit";
-$a->strings["you are a fan of"] = "Vous le/la suivez";
-$a->strings["Toggle Blocked status"] = "(dés)activer l'état \"bloqué\"";
-$a->strings["Toggle Ignored status"] = "(dés)activer l'état \"ignoré\"";
-$a->strings["Toggle Archive status"] = "(dés)activer l'état \"archivé\"";
-$a->strings["Delete contact"] = "Effacer ce contact";
-$a->strings["Parent user not found."] = "";
-$a->strings["No parent user"] = "";
-$a->strings["Parent Password:"] = "";
-$a->strings["Please enter the password of the parent account to legitimize your request."] = "";
-$a->strings["Parent User"] = "";
-$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = "";
-$a->strings["Save Settings"] = "Sauvegarder les paramètres";
-$a->strings["Delegate Page Management"] = "Déléguer la gestion de la page";
-$a->strings["Delegates"] = "";
-$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue.";
-$a->strings["Existing Page Delegates"] = "Délégataires existants";
-$a->strings["Potential Delegates"] = "Délégataires potentiels";
-$a->strings["Add"] = "Ajouter";
-$a->strings["No entries."] = "Aucune entrée.";
-$a->strings["Event can not end before it has started."] = "L'événement ne peut pas se terminer avant d'avoir commencé.";
-$a->strings["Event title and start time are required."] = "Vous devez donner un nom et un horaire de début à l'événement.";
-$a->strings["Create New Event"] = "Créer un nouvel événement";
-$a->strings["Event details"] = "Détails de l'événement";
-$a->strings["Starting date and Title are required."] = "La date de début et le titre sont requis.";
-$a->strings["Event Starts:"] = "Début de l'événement :";
-$a->strings["Required"] = "Requis";
-$a->strings["Finish date/time is not known or not relevant"] = "Date / heure de fin inconnue ou sans objet";
-$a->strings["Event Finishes:"] = "Fin de l'événement :";
-$a->strings["Adjust for viewer timezone"] = "Ajuster à la zone horaire du visiteur";
-$a->strings["Description:"] = "Description :";
-$a->strings["Title:"] = "Titre :";
-$a->strings["Share this event"] = "Partager cet événement";
-$a->strings["Basic"] = "Simple";
-$a->strings["Failed to remove event"] = "La suppression de l'événement a échoué.";
-$a->strings["Event removed"] = "Événement supprimé.";
-$a->strings["You must be logged in to use this module"] = "";
-$a->strings["Source URL"] = "";
-$a->strings["Post successful."] = "Publication réussie.";
-$a->strings["Subscribing to OStatus contacts"] = "Inscription aux contacts OStatus";
-$a->strings["No contact provided."] = "Pas de contact fourni.";
-$a->strings["Couldn't fetch information for contact."] = "Impossible de récupérer les informations pour ce contact.";
-$a->strings["Couldn't fetch friends for contact."] = "Impossible de récupérer les amis de ce contact.";
-$a->strings["success"] = "réussite";
-$a->strings["failed"] = "échec";
-$a->strings["ignored"] = "ignoré";
-$a->strings["Image uploaded but image cropping failed."] = "Image envoyée, mais impossible de la retailler.";
-$a->strings["Image size reduction [%s] failed."] = "Réduction de la taille de l'image [%s] échouée.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement.";
-$a->strings["Unable to process image"] = "Impossible de traiter l'image";
-$a->strings["Upload File:"] = "Fichier à téléverser :";
-$a->strings["Select a profile:"] = "Choisir un profil :";
-$a->strings["or"] = "ou";
-$a->strings["skip this step"] = "ignorer cette étape";
-$a->strings["select a photo from your photo albums"] = "choisissez une photo depuis vos albums";
-$a->strings["Crop Image"] = "(Re)cadrer l'image";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Ajustez le cadre de l'image pour une visualisation optimale.";
-$a->strings["Done Editing"] = "Édition terminée";
-$a->strings["Image uploaded successfully."] = "Image téléversée avec succès.";
-$a->strings["Contact wasn't found or can't be unfollowed."] = "Le contact n'a pas été trouvé ou ne peut pas être suivi.";
-$a->strings["Contact unfollowed"] = "";
-$a->strings["Submit Request"] = "Envoyer la requête";
-$a->strings["You aren't a friend of this contact."] = "Vous n'êtes pas amis avec ce contact.";
-$a->strings["Unfollowing is currently not supported by your network."] = "";
-$a->strings["Your Identity Address:"] = "Votre adresse d'identité :";
-$a->strings["Gender:"] = "Genre :";
-$a->strings["Status:"] = "Statut :";
-$a->strings["Homepage:"] = "Page personnelle :";
-$a->strings["Global Directory"] = "Annuaire global";
-$a->strings["Find on this site"] = "Trouver sur ce site";
-$a->strings["Results for:"] = "Résultats pour :";
-$a->strings["Site Directory"] = "Annuaire local";
-$a->strings["No entries (some entries may be hidden)."] = "Aucune entrée (certaines peuvent être cachées).";
-$a->strings["People Search - %s"] = "Recherche de personne - %s";
-$a->strings["Forum Search - %s"] = "Recherche de Forum - %s";
-$a->strings["The contact could not be added."] = "";
-$a->strings["You already added this contact."] = "Vous avez déjà ajouté ce contact.";
-$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Le support de Diaspora est désactivé. Le contact ne peut pas être ajouté.";
-$a->strings["OStatus support is disabled. Contact can't be added."] = "Le support d'OStatus est désactivé. Le contact ne peut pas être ajouté.";
-$a->strings["The network type couldn't be detected. Contact can't be added."] = "Impossible de détecter le type de réseau. Le contact ne peut pas être ajouté.";
-$a->strings["Please answer the following:"] = "Merci de répondre à ce qui suit :";
-$a->strings["Does %s know you?"] = "Est-ce que %s vous connaît?";
-$a->strings["Add a personal note:"] = "Ajouter une note personnelle :";
-$a->strings["No valid account found."] = "Impossible de trouver un compte valide.";
-$a->strings["Password reset request issued. Check your email."] = "Réinitialisation du mot de passe en cours. Vérifiez votre courriel.";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "";
-$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "";
-$a->strings["Password reset requested at %s"] = "Requête de réinitialisation de mot de passe à %s";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué.";
-$a->strings["Request has expired, please make a new one."] = "";
-$a->strings["Forgot your Password?"] = "Mot de passe oublié ?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel.";
-$a->strings["Nickname or Email: "] = "Pseudo ou eMail : ";
-$a->strings["Reset"] = "Réinitialiser";
-$a->strings["Password Reset"] = "Réinitialiser le mot de passe";
-$a->strings["Your password has been reset as requested."] = "Votre mot de passe a bien été réinitialisé.";
-$a->strings["Your new password is"] = "Votre nouveau mot de passe est ";
-$a->strings["Save or copy your new password - and then"] = "Sauvez ou copiez ce nouveau mot de passe - puis";
-$a->strings["click here to login"] = "cliquez ici pour vous connecter";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Votre mot de passe peut être changé depuis la page &lt;em&gt;Réglages&lt;/em&gt;, une fois que vous serez connecté.";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "";
-$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "";
-$a->strings["Your password has been changed at %s"] = "Votre mot de passe a été modifié à %s";
-$a->strings["Source input"] = "";
-$a->strings["BBCode::toPlaintext"] = "";
-$a->strings["BBCode::convert (raw HTML)"] = "";
-$a->strings["BBCode::convert"] = "";
-$a->strings["BBCode::convert => HTML::toBBCode"] = "";
-$a->strings["BBCode::toMarkdown"] = "";
-$a->strings["BBCode::toMarkdown => Markdown::convert"] = "";
-$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = "";
-$a->strings["BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"] = "";
-$a->strings["Source input \\x28Diaspora format\\x29"] = "";
-$a->strings["Markdown::toBBCode"] = "";
-$a->strings["Raw HTML input"] = "";
-$a->strings["HTML Input"] = "";
-$a->strings["HTML::toBBCode"] = "";
-$a->strings["HTML::toPlaintext"] = "";
-$a->strings["Source text"] = "";
-$a->strings["BBCode"] = "";
-$a->strings["Markdown"] = "";
-$a->strings["HTML"] = "";
-$a->strings["Community option not available."] = "";
-$a->strings["Not available."] = "Indisponible.";
-$a->strings["Local Community"] = "";
-$a->strings["Posts from local users on this server"] = "";
-$a->strings["Global Community"] = "";
-$a->strings["Posts from users of the whole federated network"] = "";
-$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "";
-$a->strings["This is Friendica, version"] = "Service reposant sur Friendica version";
-$a->strings["running at web location"] = "hébergé sur";
-$a->strings["Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more about the Friendica project."] = "Rendez-vous sur <a href=\"https://friendi.ca\">Friendi.ca</a> pour en savoir plus sur le projet Friendica.";
-$a->strings["Bug reports and issues: please visit"] = "Pour les rapports de bugs : rendez vous sur";
-$a->strings["the bugtracker at github"] = "le bugtracker sur GitHub";
-$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "";
-$a->strings["Installed addons/apps:"] = "";
-$a->strings["No installed addons/apps"] = "";
-$a->strings["Read about the <a href=\"%1\$s/tos\">Terms of Service</a> of this node."] = "";
-$a->strings["On this server the following remote servers are blocked."] = "Sur ce serveur, les serveurs suivants sont sur liste noire.";
-$a->strings["Blocked domain"] = "Domaine bloqué";
-$a->strings["Reason for the block"] = "Raison du blocage.";
-$a->strings["Total invitation limit exceeded."] = "La limite d'invitation totale est éxédée.";
-$a->strings["%s : Not a valid email address."] = "%s : Adresse de courriel invalide.";
-$a->strings["Please join us on Friendica"] = "Rejoignez-nous sur Friendica";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site.";
-$a->strings["%s : Message delivery failed."] = "%s : L'envoi du message a échoué.";
-$a->strings["%d message sent."] = [
-       0 => "%d message envoyé.",
-       1 => "%d messages envoyés.",
-];
-$a->strings["You have no more invitations available"] = "Vous n'avez plus d'invitations disponibles";
-$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public.";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres.";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = "Les instances Friendica sont interconnectées pour créer un immense réseau social possédé et contrôlé par ses membres, et qui respecte leur vie privée. Ils peuvent aussi s'interconnecter avec d'autres réseaux sociaux traditionnels.";
-$a->strings["To accept this invitation, please visit and register at %s."] = "Pour accepter cette invitation, rendez-vous sur %s et inscrivez-vous.";
-$a->strings["Send invitations"] = "Envoyer des invitations";
-$a->strings["Enter email addresses, one per line:"] = "Entrez les adresses email, une par ligne :";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Vous devrez fournir ce code d'invitation : \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Une fois inscrit, connectez-vous à la page de mon profil sur :";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "";
-$a->strings["add"] = "ajouter";
-$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [
-       0 => "",
-       1 => "",
-];
-$a->strings["Messages in this group won't be send to these receivers."] = "Les messages dans ce groupe ne seront pas envoyés à ces destinataires.";
-$a->strings["No such group"] = "Groupe inexistant";
-$a->strings["Group is empty"] = "Groupe vide";
-$a->strings["Group: %s"] = "Group : %s";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée.";
-$a->strings["Invalid contact."] = "Contact invalide.";
-$a->strings["Commented Order"] = "Tri par commentaires";
-$a->strings["Sort by Comment Date"] = "Trier par date de commentaire";
-$a->strings["Posted Order"] = "Tri des publications";
-$a->strings["Sort by Post Date"] = "Trier par date de publication";
-$a->strings["Personal"] = "Personnel";
-$a->strings["Posts that mention or involve you"] = "Publications qui vous concernent";
-$a->strings["New"] = "Nouveau";
-$a->strings["Activity Stream - by date"] = "Flux d'activités - par date";
-$a->strings["Shared Links"] = "Liens partagés";
-$a->strings["Interesting Links"] = "Liens intéressants";
-$a->strings["Starred"] = "Mis en avant";
-$a->strings["Favourite Posts"] = "Publications favorites";
-$a->strings["Contact settings applied."] = "Réglages du contact appliqués.";
-$a->strings["Contact update failed."] = "Impossible d'appliquer les réglages.";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATTENTION: Manipulation réservée aux experts</strong>, toute information incorrecte pourrait empêcher la communication avec ce contact.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "une photo";
-$a->strings["No mirroring"] = "Pas de miroir";
-$a->strings["Mirror as forwarded posting"] = "";
-$a->strings["Mirror as my own posting"] = "";
-$a->strings["Return to contact editor"] = "Retour à l'éditeur de contact";
-$a->strings["Refetch contact data"] = "Récupérer à nouveau les données de contact";
-$a->strings["Remote Self"] = "Identité à distance";
-$a->strings["Mirror postings from this contact"] = "Copier les publications de ce contact";
-$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Marquer ce contact comme étant remote_self, friendica republiera alors les nouvelles entrées de ce contact.";
-$a->strings["Name"] = "Nom";
-$a->strings["Account Nickname"] = "Pseudo du compte";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@NomEtiquette - prend le pas sur Nom/Pseudo";
-$a->strings["Account URL"] = "URL du compte";
-$a->strings["Friend Request URL"] = "Echec du téléversement de l'image.";
-$a->strings["Friend Confirm URL"] = "Accès public refusé.";
-$a->strings["Notification Endpoint URL"] = "Aucune photo sélectionnée";
-$a->strings["Poll/Feed URL"] = "Téléverser des photos";
-$a->strings["New photo from this URL"] = "Nouvelle photo depuis cette URL";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s accueille %2\$s";
-$a->strings["Help:"] = "Aide :";
-$a->strings["Help"] = "Aide";
-$a->strings["Page not found."] = "Page introuvable.";
-$a->strings["Friendica Communications Server - Setup"] = "Serveur de communications Friendica - Configuration";
-$a->strings["Could not connect to database."] = "Impossible de se connecter à la base.";
-$a->strings["Could not create table."] = "Impossible de créer une table.";
-$a->strings["Your Friendica site database has been installed."] = "La base de données de votre site Friendica a bien été installée.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Référez-vous au fichier \"INSTALL.txt\".";
-$a->strings["Database already in use."] = "Base de données déjà en cours d'utilisation.";
-$a->strings["System check"] = "Vérifications système";
-$a->strings["Check again"] = "Vérifier à nouveau";
-$a->strings["Database connection"] = "Connexion à la base de données";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer.";
-$a->strings["Database Server Name"] = "Serveur de base de données";
-$a->strings["Database Login Name"] = "Nom d'utilisateur de la base";
-$a->strings["Database Login Password"] = "Mot de passe de la base";
-$a->strings["For security reasons the password must not be empty"] = "Pour des raisons de sécurité, le mot de passe ne peut pas être vide.";
-$a->strings["Database Name"] = "Nom de la base";
-$a->strings["Site administrator email address"] = "Adresse électronique de l'administrateur du site";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration.";
-$a->strings["Please select a default timezone for your website"] = "Sélectionner un fuseau horaire par défaut pour votre site";
-$a->strings["Site settings"] = "Réglages du site";
-$a->strings["System Language:"] = "Langue système :";
-$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Définit la langue par défaut pour l'interface de votre instance Friendica et les mails envoyés.";
-$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement.";
-$a->strings["<h1>What next</h1>"] = "<h1>Ensuite</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "IMPORTANT: vous devrez ajouter [manuellement] une tâche planifiée pour le 'worker'.";
-$a->strings["Go to your new Friendica node <a href=\"%s/register\">registration page</a> and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = "";
-$a->strings["New Message"] = "Nouveau message";
-$a->strings["Unable to locate contact information."] = "Impossible de localiser les informations du contact.";
-$a->strings["Messages"] = "Messages";
-$a->strings["Do you really want to delete this message?"] = "Voulez-vous vraiment supprimer ce message ?";
-$a->strings["Message deleted."] = "Message supprimé.";
-$a->strings["Conversation removed."] = "Conversation supprimée.";
-$a->strings["No messages."] = "Aucun message.";
-$a->strings["Message not available."] = "Message indisponible.";
-$a->strings["Delete message"] = "Effacer message";
-$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
-$a->strings["Delete conversation"] = "Effacer conversation";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Pas de communications sécurisées possibles. Vous serez <strong>peut-être</strong> en mesure de répondre depuis la page de profil de l'émetteur.";
-$a->strings["Send Reply"] = "Répondre";
-$a->strings["Unknown sender - %s"] = "Émetteur inconnu - %s";
-$a->strings["You and %s"] = "Vous et %s";
-$a->strings["%s and You"] = "%s et vous";
-$a->strings["%d message"] = [
-       0 => "%d message",
-       1 => "%d messages",
-];
-$a->strings["Group created."] = "Groupe créé.";
-$a->strings["Could not create group."] = "Impossible de créer le groupe.";
-$a->strings["Group not found."] = "Groupe introuvable.";
-$a->strings["Group name changed."] = "Groupe renommé.";
-$a->strings["Save Group"] = "Sauvegarder le groupe";
-$a->strings["Create a group of contacts/friends."] = "Créez un groupe de contacts/amis.";
-$a->strings["Group Name: "] = "Nom du groupe : ";
-$a->strings["Group removed."] = "Groupe enlevé.";
-$a->strings["Unable to remove group."] = "Impossible d'enlever le groupe.";
-$a->strings["Delete Group"] = "Supprimer le groupe";
-$a->strings["Group Editor"] = "Éditeur de groupe";
-$a->strings["Edit Group Name"] = "Éditer le nom du groupe";
-$a->strings["Members"] = "Membres";
-$a->strings["Remove contact from group"] = "";
-$a->strings["Add contact to group"] = "";
-$a->strings["OpenID protocol error. No ID returned."] = "Erreur de protocole OpenID. Pas d'ID en retour.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site.";
-$a->strings["Login failed."] = "Échec de connexion.";
+$a->strings["Submit"] = "Envoyer";
+$a->strings["[Embedded content - reload page to view]"] = "[Ccontenu incorporé - rechargez la page pour le voir]";
+$a->strings["Photos"] = "Photos";
+$a->strings["Contact Photos"] = "Photos du contact";
+$a->strings["Upload"] = "Téléverser";
+$a->strings["Files"] = "Fichiers";
+$a->strings["Post successful."] = "Publication réussie.";
+$a->strings["Export account"] = "Exporter le compte";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur.";
+$a->strings["Export all"] = "Tout exporter";
+$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos).";
+$a->strings["Export personal data"] = "Exporter";
 $a->strings["Theme settings updated."] = "Réglages du thème sauvés.";
 $a->strings["Information"] = "Information";
 $a->strings["Overview"] = "";
 $a->strings["Federation Statistics"] = "Statistiques Federation";
-$a->strings["Configuration"] = "";
+$a->strings["Configuration"] = "Configuration";
 $a->strings["Site"] = "Site";
 $a->strings["Users"] = "Utilisateurs";
-$a->strings["Addons"] = "";
+$a->strings["Addons"] = "Extensions";
 $a->strings["Themes"] = "Thèmes";
 $a->strings["Additional features"] = "Fonctions supplémentaires";
-$a->strings["Terms of Service"] = "";
-$a->strings["Database"] = "";
+$a->strings["Terms of Service"] = "Conditions de service";
+$a->strings["Database"] = "Base de données";
 $a->strings["DB updates"] = "Mise-à-jour de la base";
 $a->strings["Inspect Queue"] = "Inspecter la file d'attente";
-$a->strings["Tools"] = "";
-$a->strings["Contact Blocklist"] = "";
+$a->strings["Inspect Deferred Workers"] = "";
+$a->strings["Inspect worker Queue"] = "";
+$a->strings["Tools"] = "Outils";
+$a->strings["Contact Blocklist"] = "Liste de contacts bloqués";
 $a->strings["Server Blocklist"] = "Serveurs bloqués";
 $a->strings["Delete Item"] = "Supprimer un élément";
 $a->strings["Logs"] = "Journaux";
@@ -929,7 +328,10 @@ $a->strings["Show some informations regarding the needed information to operate
 $a->strings["Privacy Statement Preview"] = "";
 $a->strings["The Terms of Service"] = "";
 $a->strings["Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."] = "";
+$a->strings["Save Settings"] = "Sauvegarder les paramètres";
+$a->strings["Blocked domain"] = "Domaine bloqué";
 $a->strings["The blocked domain"] = "Domaine bloqué";
+$a->strings["Reason for the block"] = "Raison du blocage.";
 $a->strings["The reason why you blocked this domain."] = "Raison pour laquelle vous souhaitez bloquer ce domaine.";
 $a->strings["Delete domain"] = "Supprimer le domaine.";
 $a->strings["Check to delete this entry from the blocklist"] = "Cochez la case pour retirer cette entrée de la liste noire";
@@ -957,11 +359,15 @@ $a->strings["This page allows you to prevent any message from a remote contact t
 $a->strings["Block Remote Contact"] = "";
 $a->strings["select all"] = "tout sélectionner";
 $a->strings["select none"] = "";
+$a->strings["Block"] = "Bloquer";
+$a->strings["Unblock"] = "Débloquer";
 $a->strings["No remote contact is blocked from this node."] = "";
 $a->strings["Blocked Remote Contacts"] = "";
 $a->strings["Block New Remote Contact"] = "";
 $a->strings["Photo"] = "";
+$a->strings["Name"] = "Nom";
 $a->strings["Address"] = "Adresse";
+$a->strings["Profile URL"] = "URL du Profil";
 $a->strings["%s total blocked contact"] = [
        0 => "",
        1 => "",
@@ -984,11 +390,19 @@ $a->strings["Network"] = "Réseau";
 $a->strings["Created"] = "Créé";
 $a->strings["Last Tried"] = "Dernier essai";
 $a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = "Cette page présente le contenu de la file d'attente pour les publications sortantes. Ce sont des messages dont la première livraison a échoué. Ils seront réenvoyés plus tard et éventuellement supprimés si l'envoi échoue de façon permanente.";
+$a->strings["Inspect Deferred Worker Queue"] = "";
+$a->strings["This page lists the deferred worker jobs. This are jobs that couldn't be executed at the first time."] = "";
+$a->strings["Inspect Worker Queue"] = "";
+$a->strings["This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you've set up during install."] = "";
+$a->strings["Job Parameters"] = "";
+$a->strings["Priority"] = "";
 $a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href=\"%s\">here</a> for a guide that may be helpful converting the table engines. You may also use the command <tt>php bin/console.php dbstructure toinnodb</tt> of your Friendica installation for an automatic conversion.<br />"] = "";
 $a->strings["There is a new version of Friendica available for download. Your current version is %1\$s, upstream version is %2\$s"] = "Une nouvelle version de Friendica est disponible. Votre version est %1\$s, la nouvelle version est %2\$s";
 $a->strings["The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear."] = "";
 $a->strings["The worker was never executed. Please check your database structure!"] = "Le 'worker' n'a pas encore été exécuté. Vérifiez la structure de votre base de données.";
 $a->strings["The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings."] = "La dernière exécution du 'worker' s'est déroulée à %s, c'est-à-dire il y a plus d'une heure. Vérifiez les réglages de crontab.";
+$a->strings["Friendica's configuration now is stored in config/local.ini.php, please copy config/local-sample.ini.php and move your config from <code>.htconfig.php</code>. See <a href=\"%s\">the Config help page</a> for help with the transition."] = "";
+$a->strings["<a href=\"%s\">%s</a> is not reachable on your system. This is a severe configuration issue that prevents server to server communication. See <a href=\"%s\">the installation page</a> for help."] = "";
 $a->strings["Normal Account"] = "Compte normal";
 $a->strings["Automatic Follower Account"] = "";
 $a->strings["Public Forum Account"] = "";
@@ -996,6 +410,7 @@ $a->strings["Automatic Friend Account"] = "Compte auto-amical";
 $a->strings["Blog Account"] = "Compte de blog";
 $a->strings["Private Forum Account"] = "";
 $a->strings["Message queues"] = "Files d'attente des messages";
+$a->strings["Server Settings"] = "";
 $a->strings["Summary"] = "Résumé";
 $a->strings["Registered users"] = "Utilisateurs inscrits";
 $a->strings["Pending registrations"] = "Inscriptions en attente";
@@ -1009,6 +424,7 @@ $a->strings["No community page"] = "Aucune page de communauté";
 $a->strings["Public postings from users of this site"] = "Publications publiques des utilisateurs de ce site";
 $a->strings["Public postings from the federated network"] = "";
 $a->strings["Public postings from local users and the federated network"] = "";
+$a->strings["Disabled"] = "Désactivé";
 $a->strings["Users, Global Contacts"] = "Utilisateurs, Contacts Globaux";
 $a->strings["Users, Global Contacts/fallback"] = "Utilisateurs, Contacts Globaux/alternative";
 $a->strings["One month"] = "Un mois";
@@ -1029,6 +445,7 @@ $a->strings["Republish users to directory"] = "";
 $a->strings["Registration"] = "Inscription";
 $a->strings["File upload"] = "Téléversement de fichier";
 $a->strings["Policies"] = "Politiques";
+$a->strings["Advanced"] = "Avancé";
 $a->strings["Auto Discovered Contact Directory"] = "Répertoire de Contacts Découverts Automatiquement";
 $a->strings["Performance"] = "Performance";
 $a->strings["Worker"] = "Worker";
@@ -1069,6 +486,8 @@ $a->strings["Maximum Daily Registrations"] = "Inscriptions maximum par jour";
 $a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day.  If register is set to closed, this setting has no effect."] = "Si les inscriptions sont permises ci-dessus, ceci fixe le nombre maximum d'inscriptions de nouveaux utilisateurs acceptées par jour. Si les inscriptions ne sont pas ouvertes, ce paramètre n'a aucun effet.";
 $a->strings["Register text"] = "Texte d'inscription";
 $a->strings["Will be displayed prominently on the registration page. You can use BBCode here."] = "";
+$a->strings["Forbidden Nicknames"] = "";
+$a->strings["Comma separated list of nicknames that are forbidden from registration. Preset is a list of role names according RFC 2142."] = "";
 $a->strings["Accounts abandoned after x days"] = "Les comptes sont abandonnés après x jours";
 $a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Pour ne pas gaspiller les ressources système, on cesse d'interroger les sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette fonction.";
 $a->strings["Allowed friend domains"] = "Domaines autorisés";
@@ -1083,6 +502,7 @@ $a->strings["Block public"] = "Interdire la publication globale";
 $a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques.";
 $a->strings["Force publish"] = "Forcer la publication globale";
 $a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site.";
+$a->strings["Enabling this may violate privacy laws like the GDPR"] = "";
 $a->strings["Global directory URL"] = "URL de l'annuaire global";
 $a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL de l'annuaire global. Si ce champ n'est pas défini, l'annuaire global sera complètement indisponible pour l'application.";
 $a->strings["Private posts by default for new users"] = "Publications privées par défaut pour les nouveaux utilisateurs";
@@ -1093,6 +513,8 @@ $a->strings["Disallow public access to addons listed in the apps menu."] = "Inte
 $a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Cocher cette case restreint la liste des greffons dans le menu des applications seulement aux membres.";
 $a->strings["Don't embed private images in posts"] = "Ne pas miniaturiser les images privées dans les publications";
 $a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "Ne remplacez pas les images privées hébergées localement dans les publications avec une image attaché en copie, car cela signifie que le contact qui reçoit les publications contenant ces photos privées devra s’authentifier pour charger chaque image, ce qui peut prendre du temps.";
+$a->strings["Explicit Content"] = "";
+$a->strings["Set this to announce that your node is used mostly for explicit content that might not be suited for minors. This information will be published in the node information and might be used, e.g. by the global directory, to filter your node from listings of nodes to join. Additionally a note about this will be shown at the user registration page."] = "";
 $a->strings["Allow Users to set remote_self"] = "Autoriser les utilisateurs à définir remote_self";
 $a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = "Cocher cette case, permet à chaque utilisateur de marquer chaque contact comme un remote_self dans la boîte de dialogue de réparation des contacts. Activer cette fonction à un contact engendre la réplique de toutes les publications d'un contact dans le flux d'activités des utilisateurs.";
 $a->strings["Block multiple registrations"] = "Interdire les inscriptions multiples";
@@ -1107,8 +529,8 @@ $a->strings["Posts per user on community page"] = "Nombre de publications par ut
 $a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "Nombre maximal de publications par utilisateurs sur la page de la communauté (ne s'applique pas pour « Communauté globale »).";
 $a->strings["Enable OStatus support"] = "Activer le support d'OStatus";
 $a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fourni nativement la compatibilité avec OStatus (StatusNet, GNU Social etc.). Touts les communications utilisant OStatus sont public, des avertissements liés à la vie privée seront affichés si utile.";
-$a->strings["Only import OStatus threads from our contacts"] = "Importer seulement les fils OStatus de nos contacts";
-$a->strings["Normally we import every content from our OStatus contacts. With this option we only store threads that are started by a contact that is known on our system."] = "";
+$a->strings["Only import OStatus/ActivityPub threads from our contacts"] = "";
+$a->strings["Normally we import every content from our OStatus and ActivityPub contacts. With this option we only store threads that are started by a contact that is known on our system."] = "";
 $a->strings["OStatus support can only be enabled if threading is enabled."] = "Le support OStatus ne peut être activé que si l'imbrication des commentaires est activée.";
 $a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "Le support de Diaspora ne peut pas être activé parce que Friendica a été installé dans un sous-répertoire.";
 $a->strings["Enable Diaspora support"] = "Activer le support de Diaspora";
@@ -1164,7 +586,7 @@ $a->strings["If you have a restricted system where the webserver can't access th
 $a->strings["Base path to installation"] = "Chemin de base de l'installation";
 $a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "Si le système ne peut pas détecter le chemin de l'installation, entrez le bon chemin ici. Ce paramètre doit être utilisé uniquement si vous avez des accès restreints à votre système et que vous n'avez qu'un lien symbolique vers le répertoire web.";
 $a->strings["Disable picture proxy"] = "Désactiver le proxy image ";
-$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Le proxy d'image augmente les performances et l'intimité. Il ne devrait pas être utilisé sur des systèmes avec une très faible bande passante.";
+$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "";
 $a->strings["Only search in tags"] = "Rechercher seulement dans les étiquettes";
 $a->strings["On large systems the text search can slow down the system extremely."] = "La recherche textuelle peut ralentir considérablement les systèmes de grande taille.";
 $a->strings["New base url"] = "Nouvelle URL de base";
@@ -1173,7 +595,7 @@ $a->strings["RINO Encryption"] = "Chiffrement RINO";
 $a->strings["Encryption layer between nodes."] = "Couche de chiffrement entre les nœuds du réseau.";
 $a->strings["Enabled"] = "";
 $a->strings["Maximum number of parallel workers"] = "Nombre maximum de processus simultanés";
-$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "Sur un hébergement partagé, mettez 2. Sur des serveurs plus puissants, 10 est une bonne idée. Le défaut est 4.";
+$a->strings["On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d."] = "";
 $a->strings["Don't use 'proc_open' with the worker"] = "Ne pas utiliser 'proc_open' pour les tâches de fond";
 $a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of worker calls in your crontab."] = "Activez cette option si votre système ne permet pas d'utiliser 'proc_open'. Cela peut être le cas sur les hébergements partagés. Si vous activez cette option, vous devriez augmenter la fréquence d'appel du \"worker\" dans crontab.";
 $a->strings["Enable fastlane"] = "";
@@ -1194,6 +616,7 @@ $a->strings["Server tags"] = "";
 $a->strings["Comma separated list of tags for the 'tags' subscription."] = "";
 $a->strings["Allow user tags"] = "";
 $a->strings["If enabled, the tags from the saved searches will used for the 'tags' subscription in addition to the 'relay_server_tags'."] = "";
+$a->strings["Start Relocation"] = "";
 $a->strings["Update has been marked successful"] = "Mise-à-jour validée comme 'réussie'";
 $a->strings["Database structure update %s was successfully applied."] = "La structure de base de données pour la mise à jour %s a été appliquée avec succès.";
 $a->strings["Executing of database structure update %s failed with error: %s"] = "L'exécution de la mise à jour %s pour la structure de base de données a échoué avec l'erreur: %s";
@@ -1243,10 +666,11 @@ $a->strings["No registrations."] = "Pas d'inscriptions.";
 $a->strings["Note from the user"] = "";
 $a->strings["Approve"] = "Approuver";
 $a->strings["Deny"] = "Rejetter";
+$a->strings["User blocked"] = "";
 $a->strings["Site admin"] = "Administration du Site";
 $a->strings["Account expired"] = "Compte expiré";
 $a->strings["New User"] = "Nouvel utilisateur";
-$a->strings["Deleted since"] = "Supprimé depuis";
+$a->strings["Delete in"] = "";
 $a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement effacé!\\n\\nÊtes-vous certain?";
 $a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?";
 $a->strings["Name of the new user."] = "Nom du nouvel utilisateur.";
@@ -1258,6 +682,7 @@ $a->strings["Addon %s enabled."] = "";
 $a->strings["Disable"] = "Désactiver";
 $a->strings["Enable"] = "Activer";
 $a->strings["Toggle"] = "Activer/Désactiver";
+$a->strings["Settings"] = "Réglages";
 $a->strings["Author: "] = "Auteur : ";
 $a->strings["Maintainer: "] = "Mainteneur : ";
 $a->strings["Reload active addons"] = "";
@@ -1277,13 +702,114 @@ $a->strings["Log file"] = "Fichier de journaux";
 $a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica.";
 $a->strings["Log level"] = "Niveau de journalisaton";
 $a->strings["PHP logging"] = "Log PHP";
-$a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "";
+$a->strings["To temporarily enable logging of PHP errors and warnings you can prepend the following to the index.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "";
 $a->strings["Error trying to open <strong>%1\$s</strong> log file.\\r\\n<br/>Check to see if file %1\$s exist and is readable."] = "";
 $a->strings["Couldn't open <strong>%1\$s</strong> log file.\\r\\n<br/>Check to see if file %1\$s is readable."] = "";
 $a->strings["Off"] = "Éteint";
 $a->strings["On"] = "Allumé";
 $a->strings["Lock feature %s"] = "Verouiller la fonctionnalité %s";
 $a->strings["Manage Additional Features"] = "Gérer les fonctionnalités avancées";
+$a->strings["No friends to display."] = "Pas d'amis à afficher.";
+$a->strings["Connect"] = "Se connecter";
+$a->strings["Authorize application connection"] = "Autoriser l'application à se connecter";
+$a->strings["Return to your app and insert this Securty Code:"] = "Retournez à votre application et saisissez ce Code de Sécurité : ";
+$a->strings["Please login to continue."] = "Merci de vous connecter pour continuer.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à créer des billets à votre place?";
+$a->strings["No"] = "Non";
+$a->strings["You must be logged in to use addons. "] = "Vous devez être connecté pour utiliser les greffons.";
+$a->strings["Applications"] = "Applications";
+$a->strings["No installed applications."] = "Pas d'application installée.";
+$a->strings["Item not available."] = "Elément non disponible.";
+$a->strings["Item was not found."] = "Element introuvable.";
+$a->strings["Source input"] = "";
+$a->strings["BBCode::toPlaintext"] = "";
+$a->strings["BBCode::convert (raw HTML)"] = "";
+$a->strings["BBCode::convert"] = "";
+$a->strings["BBCode::convert => HTML::toBBCode"] = "";
+$a->strings["BBCode::toMarkdown"] = "";
+$a->strings["BBCode::toMarkdown => Markdown::convert"] = "";
+$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = "";
+$a->strings["BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"] = "";
+$a->strings["Source input (Diaspora format)"] = "";
+$a->strings["Markdown::convert (raw HTML)"] = "";
+$a->strings["Markdown::convert"] = "";
+$a->strings["Markdown::toBBCode"] = "";
+$a->strings["Raw HTML input"] = "";
+$a->strings["HTML Input"] = "";
+$a->strings["HTML::toBBCode"] = "";
+$a->strings["HTML::toBBCode => BBCode::convert"] = "";
+$a->strings["HTML::toBBCode => BBCode::convert (raw HTML)"] = "";
+$a->strings["HTML::toMarkdown"] = "";
+$a->strings["HTML::toPlaintext"] = "";
+$a->strings["Source text"] = "";
+$a->strings["BBCode"] = "";
+$a->strings["Markdown"] = "";
+$a->strings["HTML"] = "";
+$a->strings["Login"] = "Connexion";
+$a->strings["Bad Request"] = "";
+$a->strings["The post was created"] = "La publication a été créée";
+$a->strings["Access denied."] = "Accès refusé.";
+$a->strings["Page not found."] = "Page introuvable.";
+$a->strings["Access to this profile has been restricted."] = "L'accès au profil a été restreint.";
+$a->strings["Events"] = "Événements";
+$a->strings["View"] = "Vue";
+$a->strings["Previous"] = "Précédent";
+$a->strings["Next"] = "Suivant";
+$a->strings["today"] = "aujourd'hui";
+$a->strings["month"] = "mois";
+$a->strings["week"] = "semaine";
+$a->strings["day"] = "jour";
+$a->strings["list"] = "";
+$a->strings["User not found"] = "Utilisateur introuvable";
+$a->strings["This calendar format is not supported"] = "Format de calendrier inconnu";
+$a->strings["No exportable data found"] = "Rien à exporter";
+$a->strings["calendar"] = "calendrier";
+$a->strings["No contacts in common."] = "Pas de contacts en commun.";
+$a->strings["Common Friends"] = "Amis communs";
+$a->strings["Public access denied."] = "Accès public refusé.";
+$a->strings["Community option not available."] = "";
+$a->strings["Not available."] = "Indisponible.";
+$a->strings["Local Community"] = "";
+$a->strings["Posts from local users on this server"] = "";
+$a->strings["Global Community"] = "";
+$a->strings["Posts from users of the whole federated network"] = "";
+$a->strings["No results."] = "Aucun résultat.";
+$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "";
+$a->strings["Contact settings applied."] = "Réglages du contact appliqués.";
+$a->strings["Contact update failed."] = "Impossible d'appliquer les réglages.";
+$a->strings["Contact not found."] = "Contact introuvable.";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATTENTION: Manipulation réservée aux experts</strong>, toute information incorrecte pourrait empêcher la communication avec ce contact.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "une photo";
+$a->strings["No mirroring"] = "Pas de miroir";
+$a->strings["Mirror as forwarded posting"] = "";
+$a->strings["Mirror as my own posting"] = "";
+$a->strings["Return to contact editor"] = "Retour à l'éditeur de contact";
+$a->strings["Refetch contact data"] = "Récupérer à nouveau les données de contact";
+$a->strings["Remote Self"] = "Identité à distance";
+$a->strings["Mirror postings from this contact"] = "Copier les publications de ce contact";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Marquer ce contact comme étant remote_self, friendica republiera alors les nouvelles entrées de ce contact.";
+$a->strings["Account Nickname"] = "Pseudo du compte";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@NomEtiquette - prend le pas sur Nom/Pseudo";
+$a->strings["Account URL"] = "URL du compte";
+$a->strings["Friend Request URL"] = "Echec du téléversement de l'image.";
+$a->strings["Friend Confirm URL"] = "Accès public refusé.";
+$a->strings["Notification Endpoint URL"] = "Aucune photo sélectionnée";
+$a->strings["Poll/Feed URL"] = "Téléverser des photos";
+$a->strings["New photo from this URL"] = "Nouvelle photo depuis cette URL";
+$a->strings["Parent user not found."] = "";
+$a->strings["No parent user"] = "";
+$a->strings["Parent Password:"] = "";
+$a->strings["Please enter the password of the parent account to legitimize your request."] = "";
+$a->strings["Parent User"] = "";
+$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = "";
+$a->strings["Delegate Page Management"] = "Déléguer la gestion de la page";
+$a->strings["Delegates"] = "";
+$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue.";
+$a->strings["Existing Page Delegates"] = "Délégataires existants";
+$a->strings["Potential Delegates"] = "Délégataires potentiels";
+$a->strings["Remove"] = "Utiliser comme photo de profil";
+$a->strings["Add"] = "Ajouter";
+$a->strings["No entries."] = "Aucune entrée.";
 $a->strings["Profile not found."] = "Profil introuvable.";
 $a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Ceci peut se produire lorsque le contact a été requis par les deux personnes et a déjà été approuvé.";
 $a->strings["Response from remote site was not understood."] = "Réponse du site distant incomprise.";
@@ -1302,6 +828,7 @@ $a->strings["The ID provided by your system is a duplicate on our system. It sho
 $a->strings["Unable to set your contact credentials on our system."] = "Impossible de vous définir des permissions sur notre système.";
 $a->strings["Unable to update your contact profile details on our system"] = "Impossible de mettre les détails de votre profil à jour sur notre système";
 $a->strings["[Name Withheld]"] = "[Nom non-publié]";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s accueille %2\$s";
 $a->strings["This introduction has already been accepted."] = "Cette introduction a déjà été acceptée.";
 $a->strings["Profile location is not valid or does not contain profile information."] = "L'emplacement du profil est invalide ou ne contient pas de profil valide.";
 $a->strings["Warning: profile location has no identifiable owner name."] = "Attention: l'emplacement du profil n'a pas de nom identifiable.";
@@ -1310,49 +837,287 @@ $a->strings["%d required parameter was not found at the given location"] = [
        0 => "%d paramètre requis n'a pas été trouvé à l'endroit indiqué",
        1 => "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué",
 ];
-$a->strings["Introduction complete."] = "Phase d'introduction achevée.";
-$a->strings["Unrecoverable protocol error."] = "Erreur de protocole non-récupérable.";
-$a->strings["Profile unavailable."] = "Profil indisponible.";
-$a->strings["%s has received too many connection requests today."] = "%s a reçu trop de demandes d'introduction aujourd'hui.";
-$a->strings["Spam protection measures have been invoked."] = "Des mesures de protection contre le spam ont été déclenchées.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Les relations sont encouragées à attendre 24 heures pour recommencer.";
-$a->strings["Invalid locator"] = "Localisateur invalide";
-$a->strings["You have already introduced yourself here."] = "Vous vous êtes déjà présenté ici.";
-$a->strings["Apparently you are already friends with %s."] = "Il semblerait que vous soyez déjà ami avec %s.";
-$a->strings["Invalid profile URL."] = "URL de profil invalide.";
-$a->strings["Disallowed profile URL."] = "URL de profil interdite.";
-$a->strings["Your introduction has been sent."] = "Votre introduction a été envoyée.";
-$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "";
-$a->strings["Please login to confirm introduction."] = "Connectez-vous pour confirmer l'introduction.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Identité incorrecte actuellement connectée. Merci de vous connecter à <strong>ce</strong> profil.";
-$a->strings["Confirm"] = "Confirmer";
-$a->strings["Hide this contact"] = "Cacher ce contact";
-$a->strings["Welcome home %s."] = "Bienvenue chez vous, %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Merci de confirmer votre demande d'introduction auprès de %s.";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:";
-$a->strings["If you are not yet a member of the free social web, <a href=\"%s\">follow this link to find a public Friendica site and join us today</a>."] = "";
-$a->strings["Friend/Connection Request"] = "Requête de relation/amitié";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"] = "";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["GNU Social (Pleroma, Mastodon)"] = "";
-$a->strings["Diaspora (Socialhome, Hubzilla)"] = "";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - merci de ne pas utiliser ce formulaire.   Entrez plutôt %s dans votre barre de recherche Diaspora.";
+$a->strings["Introduction complete."] = "Phase d'introduction achevée.";
+$a->strings["Unrecoverable protocol error."] = "Erreur de protocole non-récupérable.";
+$a->strings["Profile unavailable."] = "Profil indisponible.";
+$a->strings["%s has received too many connection requests today."] = "%s a reçu trop de demandes d'introduction aujourd'hui.";
+$a->strings["Spam protection measures have been invoked."] = "Des mesures de protection contre le spam ont été déclenchées.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Les relations sont encouragées à attendre 24 heures pour recommencer.";
+$a->strings["Invalid locator"] = "Localisateur invalide";
+$a->strings["You have already introduced yourself here."] = "Vous vous êtes déjà présenté ici.";
+$a->strings["Apparently you are already friends with %s."] = "Il semblerait que vous soyez déjà ami avec %s.";
+$a->strings["Invalid profile URL."] = "URL de profil invalide.";
+$a->strings["Disallowed profile URL."] = "URL de profil interdite.";
+$a->strings["Failed to update contact record."] = "Échec de mise à jour du contact.";
+$a->strings["Your introduction has been sent."] = "Votre introduction a été envoyée.";
+$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "";
+$a->strings["Please login to confirm introduction."] = "Connectez-vous pour confirmer l'introduction.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Identité incorrecte actuellement connectée. Merci de vous connecter à <strong>ce</strong> profil.";
+$a->strings["Confirm"] = "Confirmer";
+$a->strings["Hide this contact"] = "Cacher ce contact";
+$a->strings["Welcome home %s."] = "Bienvenue chez vous, %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Merci de confirmer votre demande d'introduction auprès de %s.";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:";
+$a->strings["If you are not yet a member of the free social web, <a href=\"%s\">follow this link to find a public Friendica site and join us today</a>."] = "";
+$a->strings["Friend/Connection Request"] = "Requête de relation/amitié";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"] = "";
+$a->strings["Please answer the following:"] = "Merci de répondre à ce qui suit :";
+$a->strings["Does %s know you?"] = "Est-ce que %s vous connaît?";
+$a->strings["Add a personal note:"] = "Ajouter une note personnelle :";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["GNU Social (Pleroma, Mastodon)"] = "";
+$a->strings["Diaspora (Socialhome, Hubzilla)"] = "";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - merci de ne pas utiliser ce formulaire.   Entrez plutôt %s dans votre barre de recherche Diaspora.";
+$a->strings["Your Identity Address:"] = "Votre adresse d'identité :";
+$a->strings["Submit Request"] = "Envoyer la requête";
+$a->strings["Location:"] = "Localisation :";
+$a->strings["Gender:"] = "Genre :";
+$a->strings["Status:"] = "Statut :";
+$a->strings["Homepage:"] = "Page personnelle :";
+$a->strings["About:"] = "À propos :";
+$a->strings["Global Directory"] = "Annuaire global";
+$a->strings["Find on this site"] = "Trouver sur ce site";
+$a->strings["Results for:"] = "Résultats pour :";
+$a->strings["Site Directory"] = "Annuaire local";
+$a->strings["Find"] = "Trouver";
+$a->strings["No entries (some entries may be hidden)."] = "Aucune entrée (certaines peuvent être cachées).";
+$a->strings["People Search - %s"] = "Recherche de personne - %s";
+$a->strings["Forum Search - %s"] = "Recherche de Forum - %s";
+$a->strings["No matches"] = "Aucune correspondance";
+$a->strings["Item not found"] = "Élément introuvable";
+$a->strings["Edit post"] = "Éditer la publication";
+$a->strings["Insert web link"] = "Insérer lien web";
+$a->strings["web link"] = "lien web";
+$a->strings["Insert video link"] = "Insérer un lien video";
+$a->strings["video link"] = "lien vidéo";
+$a->strings["Insert audio link"] = "Insérer un lien audio";
+$a->strings["audio link"] = "lien audio";
+$a->strings["CC: email addresses"] = "CC: adresses de courriel";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Exemple : bob@exemple.com, mary@exemple.com";
+$a->strings["Event can not end before it has started."] = "L'événement ne peut pas se terminer avant d'avoir commencé.";
+$a->strings["Event title and start time are required."] = "Vous devez donner un nom et un horaire de début à l'événement.";
+$a->strings["Create New Event"] = "Créer un nouvel événement";
+$a->strings["Event details"] = "Détails de l'événement";
+$a->strings["Starting date and Title are required."] = "La date de début et le titre sont requis.";
+$a->strings["Event Starts:"] = "Début de l'événement :";
+$a->strings["Required"] = "Requis";
+$a->strings["Finish date/time is not known or not relevant"] = "Date / heure de fin inconnue ou sans objet";
+$a->strings["Event Finishes:"] = "Fin de l'événement :";
+$a->strings["Adjust for viewer timezone"] = "Ajuster à la zone horaire du visiteur";
+$a->strings["Description:"] = "Description :";
+$a->strings["Title:"] = "Titre :";
+$a->strings["Share this event"] = "Partager cet événement";
+$a->strings["Basic"] = "Simple";
+$a->strings["Permissions"] = "Permissions";
+$a->strings["Failed to remove event"] = "La suppression de l'événement a échoué.";
+$a->strings["Event removed"] = "Événement supprimé.";
+$a->strings["You must be logged in to use this module"] = "";
+$a->strings["Source URL"] = "";
+$a->strings["Not Found"] = "Non trouvé";
+$a->strings["- select -"] = "- choisir -";
+$a->strings["The contact could not be added."] = "";
+$a->strings["You already added this contact."] = "Vous avez déjà ajouté ce contact.";
+$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Le support de Diaspora est désactivé. Le contact ne peut pas être ajouté.";
+$a->strings["OStatus support is disabled. Contact can't be added."] = "Le support d'OStatus est désactivé. Le contact ne peut pas être ajouté.";
+$a->strings["The network type couldn't be detected. Contact can't be added."] = "Impossible de détecter le type de réseau. Le contact ne peut pas être ajouté.";
+$a->strings["Tags:"] = "Étiquette :";
+$a->strings["Status Messages and Posts"] = "Messages d'état et publications";
+$a->strings["This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s."] = "";
+$a->strings["Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more about the Friendica project."] = "Rendez-vous sur <a href=\"https://friendi.ca\">Friendi.ca</a> pour en savoir plus sur le projet Friendica.";
+$a->strings["Bug reports and issues: please visit"] = "Pour les rapports de bugs : rendez vous sur";
+$a->strings["the bugtracker at github"] = "le bugtracker sur GitHub";
+$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "";
+$a->strings["Installed addons/apps:"] = "";
+$a->strings["No installed addons/apps"] = "";
+$a->strings["Read about the <a href=\"%1\$s/tos\">Terms of Service</a> of this node."] = "";
+$a->strings["On this server the following remote servers are blocked."] = "Sur ce serveur, les serveurs suivants sont sur liste noire.";
+$a->strings["Friend suggestion sent."] = "Suggestion d'amitié/contact envoyée.";
+$a->strings["Suggest Friends"] = "Suggérer des amis/contacts";
+$a->strings["Suggest a friend for %s"] = "Suggérer un ami/contact pour %s";
+$a->strings["Group created."] = "Groupe créé.";
+$a->strings["Could not create group."] = "Impossible de créer le groupe.";
+$a->strings["Group not found."] = "Groupe introuvable.";
+$a->strings["Group name changed."] = "Groupe renommé.";
+$a->strings["Permission denied"] = "Permission refusée";
+$a->strings["Save Group"] = "Sauvegarder le groupe";
+$a->strings["Filter"] = "";
+$a->strings["Create a group of contacts/friends."] = "Créez un groupe de contacts/amis.";
+$a->strings["Group Name: "] = "Nom du groupe : ";
+$a->strings["Contacts not in any group"] = "Contacts n'appartenant à aucun groupe";
+$a->strings["Group removed."] = "Groupe enlevé.";
+$a->strings["Unable to remove group."] = "Impossible d'enlever le groupe.";
+$a->strings["Delete Group"] = "Supprimer le groupe";
+$a->strings["Edit Group Name"] = "Éditer le nom du groupe";
+$a->strings["Members"] = "Membres";
+$a->strings["All Contacts"] = "Tous les contacts";
+$a->strings["Group is empty"] = "Groupe vide";
+$a->strings["Remove contact from group"] = "";
+$a->strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le supprimer.";
+$a->strings["Add contact to group"] = "";
+$a->strings["No profile"] = "Aucun profil";
+$a->strings["Help:"] = "Aide :";
+$a->strings["Help"] = "Aide";
+$a->strings["Welcome to %s"] = "Bienvenue sur %s";
+$a->strings["Total invitation limit exceeded."] = "La limite d'invitation totale est éxédée.";
+$a->strings["%s : Not a valid email address."] = "%s : Adresse de courriel invalide.";
+$a->strings["Please join us on Friendica"] = "Rejoignez-nous sur Friendica";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site.";
+$a->strings["%s : Message delivery failed."] = "%s : L'envoi du message a échoué.";
+$a->strings["%d message sent."] = [
+       0 => "%d message envoyé.",
+       1 => "%d messages envoyés.",
+];
+$a->strings["You have no more invitations available"] = "Vous n'avez plus d'invitations disponibles";
+$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public.";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres.";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = "Les instances Friendica sont interconnectées pour créer un immense réseau social possédé et contrôlé par ses membres, et qui respecte leur vie privée. Ils peuvent aussi s'interconnecter avec d'autres réseaux sociaux traditionnels.";
+$a->strings["To accept this invitation, please visit and register at %s."] = "Pour accepter cette invitation, rendez-vous sur %s et inscrivez-vous.";
+$a->strings["Send invitations"] = "Envoyer des invitations";
+$a->strings["Enter email addresses, one per line:"] = "Entrez les adresses email, une par ligne :";
+$a->strings["Your message:"] = "Votre message :";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Vous devrez fournir ce code d'invitation : \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Une fois inscrit, connectez-vous à la page de mon profil sur :";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "";
 $a->strings["Unable to locate original post."] = "Impossible de localiser la publication originale.";
 $a->strings["Empty post discarded."] = "Publication vide rejetée.";
+$a->strings["Wall Photos"] = "Photos du mur";
 $a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Ce message vous a été envoyé par %s, membre du réseau social Friendica.";
 $a->strings["You may visit them online at %s"] = "Vous pouvez leur rendre visite sur %s";
 $a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages.";
 $a->strings["%s posted an update."] = "%s a publié une mise à jour.";
-$a->strings["Invalid request identifier."] = "Identifiant de demande invalide.";
+$a->strings["Remote privacy information not available."] = "Informations de confidentialité indisponibles.";
+$a->strings["Visible to:"] = "Visible par :";
+$a->strings["No valid account found."] = "Impossible de trouver un compte valide.";
+$a->strings["Password reset request issued. Check your email."] = "Réinitialisation du mot de passe en cours. Vérifiez votre courriel.";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "";
+$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "";
+$a->strings["Password reset requested at %s"] = "Requête de réinitialisation de mot de passe à %s";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué.";
+$a->strings["Request has expired, please make a new one."] = "";
+$a->strings["Forgot your Password?"] = "Mot de passe oublié ?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel.";
+$a->strings["Nickname or Email: "] = "Pseudo ou eMail : ";
+$a->strings["Reset"] = "Réinitialiser";
+$a->strings["Password Reset"] = "Réinitialiser le mot de passe";
+$a->strings["Your password has been reset as requested."] = "Votre mot de passe a bien été réinitialisé.";
+$a->strings["Your new password is"] = "Votre nouveau mot de passe est ";
+$a->strings["Save or copy your new password - and then"] = "Sauvez ou copiez ce nouveau mot de passe - puis";
+$a->strings["click here to login"] = "cliquez ici pour vous connecter";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Votre mot de passe peut être changé depuis la page &lt;em&gt;Réglages&lt;/em&gt;, une fois que vous serez connecté.";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "";
+$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "";
+$a->strings["Your password has been changed at %s"] = "Votre mot de passe a été modifié à %s";
+$a->strings["Manage Identities and/or Pages"] = "Gérer les identités et/ou les pages";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer.";
+$a->strings["Select an identity to manage: "] = "Choisir une identité à gérer: ";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut.";
+$a->strings["is interested in:"] = "s'intéresse à :";
+$a->strings["Profile Match"] = "Correpondance de profils";
+$a->strings["New Message"] = "Nouveau message";
+$a->strings["No recipient selected."] = "Pas de destinataire sélectionné.";
+$a->strings["Unable to locate contact information."] = "Impossible de localiser les informations du contact.";
+$a->strings["Message could not be sent."] = "Impossible d'envoyer le message.";
+$a->strings["Message collection failure."] = "Récupération des messages infructueuse.";
+$a->strings["Message sent."] = "Message envoyé.";
 $a->strings["Discard"] = "Rejeter";
+$a->strings["Messages"] = "Messages";
+$a->strings["Do you really want to delete this message?"] = "Voulez-vous vraiment supprimer ce message ?";
+$a->strings["Conversation not found."] = "";
+$a->strings["Message deleted."] = "Message supprimé.";
+$a->strings["Conversation removed."] = "Conversation supprimée.";
+$a->strings["Please enter a link URL:"] = "Entrez un lien web :";
+$a->strings["Send Private Message"] = "Envoyer un message privé";
+$a->strings["To:"] = "À:";
+$a->strings["Subject:"] = "Sujet:";
+$a->strings["No messages."] = "Aucun message.";
+$a->strings["Message not available."] = "Message indisponible.";
+$a->strings["Delete message"] = "Effacer message";
+$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
+$a->strings["Delete conversation"] = "Effacer conversation";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Pas de communications sécurisées possibles. Vous serez <strong>peut-être</strong> en mesure de répondre depuis la page de profil de l'émetteur.";
+$a->strings["Send Reply"] = "Répondre";
+$a->strings["Unknown sender - %s"] = "Émetteur inconnu - %s";
+$a->strings["You and %s"] = "Vous et %s";
+$a->strings["%s and You"] = "%s et vous";
+$a->strings["%d message"] = [
+       0 => "%d message",
+       1 => "%d messages",
+];
+$a->strings["Remove term"] = "Retirer le terme";
+$a->strings["Saved Searches"] = "Recherches";
+$a->strings["add"] = "ajouter";
+$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [
+       0 => "",
+       1 => "",
+];
+$a->strings["Messages in this group won't be send to these receivers."] = "Les messages dans ce groupe ne seront pas envoyés à ces destinataires.";
+$a->strings["No such group"] = "Groupe inexistant";
+$a->strings["Group: %s"] = "Group : %s";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée.";
+$a->strings["Invalid contact."] = "Contact invalide.";
+$a->strings["Commented Order"] = "Tri par commentaires";
+$a->strings["Sort by Comment Date"] = "Trier par date de commentaire";
+$a->strings["Posted Order"] = "Tri des publications";
+$a->strings["Sort by Post Date"] = "Trier par date de publication";
+$a->strings["Personal"] = "Personnel";
+$a->strings["Posts that mention or involve you"] = "Publications qui vous concernent";
+$a->strings["New"] = "Nouveau";
+$a->strings["Activity Stream - by date"] = "Flux d'activités - par date";
+$a->strings["Shared Links"] = "Liens partagés";
+$a->strings["Interesting Links"] = "Liens intéressants";
+$a->strings["Starred"] = "Mis en avant";
+$a->strings["Favourite Posts"] = "Publications favorites";
+$a->strings["Welcome to Friendica"] = "Bienvenue sur Friendica";
+$a->strings["New Member Checklist"] = "Checklist du nouvel utilisateur";
+$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement.";
+$a->strings["Getting Started"] = "Bien démarrer";
+$a->strings["Friendica Walk-Through"] = "Friendica pas-à-pas";
+$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sur votre page d'accueil, dans <em>Conseils aux nouveaux venus</em> - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre.";
+$a->strings["Go to Your Settings"] = "Éditer vos Réglages";
+$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Sur la page des <em>Réglages</em> -     changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre.";
+$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver.";
+$a->strings["Profile"] = "Profil";
+$a->strings["Upload Profile Photo"] = "Téléverser une photo de profil";
+$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis.";
+$a->strings["Edit Your Profile"] = "Éditer votre Profil";
+$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Éditez votre profil <strong>par défaut</strong> à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus.";
+$a->strings["Profile Keywords"] = "Mots-clés du profil";
+$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent.";
+$a->strings["Connecting"] = "Connexions";
+$a->strings["Importing Emails"] = "Importer courriels";
+$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception.";
+$a->strings["Go to Your Contacts Page"] = "Consulter vos Contacts";
+$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire <em>Ajouter un nouveau contact</em>.";
+$a->strings["Go to Your Site's Directory"] = "Consulter l'Annuaire de votre Site";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien <em>Relier</em> ou <em>Suivre</em> sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité.";
+$a->strings["Finding New People"] = "Trouver de nouvelles personnes";
+$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures.";
+$a->strings["Groups"] = "Groupes";
+$a->strings["Group Your Contacts"] = "Grouper vos contacts";
+$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau.";
+$a->strings["Why Aren't My Posts Public?"] = "Pourquoi mes éléments ne sont pas publics ?";
+$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus.";
+$a->strings["Getting Help"] = "Obtenir de l'aide";
+$a->strings["Go to the Help Section"] = "Aller à la section Aide";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Nos pages d'<strong>aide</strong> peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources.";
+$a->strings["Personal Notes"] = "Notes personnelles";
+$a->strings["Invalid request identifier."] = "Identifiant de demande invalide.";
+$a->strings["Ignore"] = "Ignorer";
 $a->strings["Notifications"] = "Notifications";
 $a->strings["Network Notifications"] = "Notifications du réseau";
+$a->strings["System Notifications"] = "Notifications du système";
 $a->strings["Personal Notifications"] = "Notifications personnelles";
 $a->strings["Home Notifications"] = "Notifications de page d'accueil";
+$a->strings["Show unread"] = "Afficher non-lus";
+$a->strings["Show all"] = "Tout afficher";
 $a->strings["Show Ignored Requests"] = "Voir les demandes ignorées";
 $a->strings["Hide Ignored Requests"] = "Cacher les demandes ignorées";
-$a->strings["Notification type: "] = "Type de notification : ";
-$a->strings["suggested by %s"] = "suggéré(e) par %s";
+$a->strings["Notification type:"] = "";
+$a->strings["Suggested by:"] = "";
+$a->strings["Hide this contact from others"] = "Cacher ce contact aux autres";
 $a->strings["Claims to be known to you: "] = "Prétend que vous le connaissez : ";
 $a->strings["yes"] = "oui";
 $a->strings["no"] = "non";
@@ -1363,15 +1128,101 @@ $a->strings["Accepting %s as a sharer allows them to subscribe to your posts, bu
 $a->strings["Friend"] = "Ami";
 $a->strings["Sharer"] = "Initiateur du partage";
 $a->strings["Subscriber"] = "";
+$a->strings["Network:"] = "Réseau";
 $a->strings["No introductions."] = "Aucune demande d'introduction.";
-$a->strings["Show unread"] = "Afficher non-lus";
-$a->strings["Show all"] = "Tout afficher";
 $a->strings["No more %s notifications."] = "Aucune notification de %s";
+$a->strings["No more system notifications."] = "Pas plus de notifications système.";
+$a->strings["OpenID protocol error. No ID returned."] = "Erreur de protocole OpenID. Pas d'ID en retour.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site.";
+$a->strings["Login failed."] = "Échec de connexion.";
+$a->strings["Subscribing to OStatus contacts"] = "Inscription aux contacts OStatus";
+$a->strings["No contact provided."] = "Pas de contact fourni.";
+$a->strings["Couldn't fetch information for contact."] = "Impossible de récupérer les informations pour ce contact.";
+$a->strings["Couldn't fetch friends for contact."] = "Impossible de récupérer les amis de ce contact.";
+$a->strings["Done"] = "Terminé";
+$a->strings["success"] = "réussite";
+$a->strings["failed"] = "échec";
+$a->strings["ignored"] = "ignoré";
+$a->strings["Keep this window open until done."] = "Veuillez garder cette fenêtre ouverte jusqu'à la fin.";
+$a->strings["Photo Albums"] = "Albums photo";
+$a->strings["Recent Photos"] = "Photos récentes";
+$a->strings["Upload New Photos"] = "Téléverser de nouvelles photos";
+$a->strings["everybody"] = "tout le monde";
+$a->strings["Contact information unavailable"] = "Informations de contact indisponibles";
+$a->strings["Album not found."] = "Album introuvable.";
+$a->strings["Delete Album"] = "Effacer l'album";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?";
+$a->strings["Delete Photo"] = "Effacer la photo";
+$a->strings["Do you really want to delete this photo?"] = "Voulez-vous vraiment supprimer cette photo ?";
+$a->strings["a photo"] = "une photo";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s a été étiqueté dans %2\$s par %3\$s";
+$a->strings["Image exceeds size limit of %s"] = "L'image dépasse la taille limite de %s";
+$a->strings["Image upload didn't complete, please try again"] = "";
+$a->strings["Image file is missing"] = "";
+$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "";
+$a->strings["Image file is empty."] = "Fichier image vide.";
+$a->strings["Unable to process image."] = "Impossible de traiter l'image.";
+$a->strings["Image upload failed."] = "Le téléversement de l'image a échoué.";
+$a->strings["No photos selected"] = "Aucune photo sélectionnée";
+$a->strings["Access to this item is restricted."] = "Accès restreint à cet élément.";
+$a->strings["Upload Photos"] = "Téléverser des photos";
+$a->strings["New album name: "] = "Nom du nouvel album : ";
+$a->strings["or select existing album:"] = "";
+$a->strings["Do not show a status post for this upload"] = "Ne pas publier de notice de statut pour cet envoi";
+$a->strings["Show to Groups"] = "Montrer aux groupes";
+$a->strings["Show to Contacts"] = "Montrer aux Contacts";
+$a->strings["Edit Album"] = "Éditer l'album";
+$a->strings["Show Newest First"] = "Plus récent d'abord";
+$a->strings["Show Oldest First"] = "Plus ancien d'abord";
+$a->strings["View Photo"] = "Voir la photo";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Interdit. L'accès à cet élément peut avoir été restreint.";
+$a->strings["Photo not available"] = "Photo indisponible";
+$a->strings["View photo"] = "Voir photo";
+$a->strings["Edit photo"] = "Éditer la photo";
+$a->strings["Use as profile photo"] = "Utiliser comme photo de profil";
+$a->strings["Private Message"] = "Message privé";
+$a->strings["View Full Size"] = "Voir en taille réelle";
+$a->strings["Tags: "] = "Étiquettes :";
+$a->strings["[Select tags to remove]"] = "";
+$a->strings["New album name"] = "Nom du nouvel album";
+$a->strings["Caption"] = "Titre";
+$a->strings["Add a Tag"] = "Ajouter une étiquette";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemples : @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances";
+$a->strings["Do not rotate"] = "Pas de rotation";
+$a->strings["Rotate CW (right)"] = "Tourner dans le sens des aiguilles d'une montre (vers la droite)";
+$a->strings["Rotate CCW (left)"] = "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)";
+$a->strings["I like this (toggle)"] = "J'aime";
+$a->strings["I don't like this (toggle)"] = "Je n'aime pas";
+$a->strings["This is you"] = "C'est vous";
+$a->strings["Comment"] = "Commenter";
+$a->strings["Map"] = "Carte";
+$a->strings["View Album"] = "Voir l'album";
+$a->strings["{0} wants to be your friend"] = "{0} souhaite être votre ami(e)";
+$a->strings["{0} sent you a message"] = "{0} vous a envoyé un message";
+$a->strings["{0} requested registration"] = "{0} a demandé à s'inscrire";
+$a->strings["Poke/Prod"] = "Solliciter";
+$a->strings["poke, prod or do other things to somebody"] = "solliciter (poke/...) quelqu'un";
+$a->strings["Recipient"] = "Destinataire";
+$a->strings["Choose what you wish to do to recipient"] = "Choisissez ce que vous voulez faire au destinataire";
+$a->strings["Make this post private"] = "Rendez ce message privé";
+$a->strings["Only logged in users are permitted to perform a probing."] = "";
 $a->strings["Requested profile is not available."] = "Le profil demandé n'est pas disponible.";
 $a->strings["%s's timeline"] = "";
 $a->strings["%s's posts"] = "";
 $a->strings["%s's comments"] = "";
-$a->strings["Tips for New Members"] = "Conseils aux nouveaux venus";
+$a->strings["Image uploaded but image cropping failed."] = "Image envoyée, mais impossible de la retailler.";
+$a->strings["Image size reduction [%s] failed."] = "Réduction de la taille de l'image [%s] échouée.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement.";
+$a->strings["Unable to process image"] = "Impossible de traiter l'image";
+$a->strings["Upload File:"] = "Fichier à téléverser :";
+$a->strings["Select a profile:"] = "Choisir un profil :";
+$a->strings["or"] = "ou";
+$a->strings["skip this step"] = "ignorer cette étape";
+$a->strings["select a photo from your photo albums"] = "choisissez une photo depuis vos albums";
+$a->strings["Crop Image"] = "(Re)cadrer l'image";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Ajustez le cadre de l'image pour une visualisation optimale.";
+$a->strings["Done Editing"] = "Édition terminée";
+$a->strings["Image uploaded successfully."] = "Image téléversée avec succès.";
 $a->strings["Profile deleted."] = "Profil supprimé.";
 $a->strings["Profile-"] = "Profil-";
 $a->strings["New profile created."] = "Nouveau profil créé.";
@@ -1396,6 +1247,7 @@ $a->strings["Profile Actions"] = "Actions de Profil";
 $a->strings["Edit Profile Details"] = "Éditer les détails du profil";
 $a->strings["Change Profile Photo"] = "Changer la photo du profil";
 $a->strings["View this profile"] = "Voir ce profil";
+$a->strings["View all profiles"] = "";
 $a->strings["Edit visibility"] = "Changer la visibilité";
 $a->strings["Create a new profile using these settings"] = "Créer un nouveau profil en utilisant ces réglages";
 $a->strings["Clone this profile"] = "Cloner ce profil";
@@ -1451,11 +1303,16 @@ $a->strings["visible to everybody"] = "visible par tous";
 $a->strings["Edit/Manage Profiles"] = "Editer / gérer les profils";
 $a->strings["Change profile photo"] = "Changer de photo de profil";
 $a->strings["Create New Profile"] = "Créer un nouveau profil";
+$a->strings["Invalid profile identifier."] = "Identifiant de profil invalide.";
+$a->strings["Profile Visibility Editor"] = "Éditer la visibilité du profil";
+$a->strings["Visible To"] = "Visible par";
+$a->strings["All Contacts (with secure profile access)"] = "Tous les contacts (ayant un accès sécurisé)";
 $a->strings["Registration successful. Please check your email for further instructions."] = "Inscription réussie. Vérifiez vos emails pour la suite des instructions.";
 $a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Impossible d’envoyer le courriel de confirmation. Voici vos informations de connexion:<br> identifiant : %s<br> mot de passe : %s<br><br>Vous pourrez changer votre mot de passe une fois connecté.";
 $a->strings["Registration successful."] = "Inscription réussie.";
 $a->strings["Your registration can not be processed."] = "Votre inscription ne peut être traitée.";
 $a->strings["Your registration is pending approval by the site owner."] = "Votre inscription attend une validation du propriétaire du site.";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain.";
 $a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\".";
 $a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste.";
 $a->strings["Your OpenID (optional): "] = "Votre OpenID (facultatif): ";
@@ -1472,20 +1329,34 @@ $a->strings["Confirm:"] = "Confirmer :";
 $a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@%s</strong>'."] = "";
 $a->strings["Choose a nickname: "] = "Choisir un pseudo : ";
 $a->strings["Register"] = "S'inscrire";
+$a->strings["Import"] = "Importer";
 $a->strings["Import your profile to this friendica instance"] = "Importer votre profile dans cette instance de friendica";
+$a->strings["Note: This node explicitly contains adult content"] = "";
+$a->strings["Account approved."] = "Inscription validée.";
+$a->strings["Registration revoked for %s"] = "Inscription révoquée pour %s";
+$a->strings["Please login."] = "Merci de vous connecter.";
 $a->strings["User deleted their account"] = "";
 $a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "";
 $a->strings["The user id is %d"] = "";
 $a->strings["Remove My Account"] = "Supprimer mon compte";
 $a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Ceci supprimera totalement votre compte. Cette opération est irréversible.";
 $a->strings["Please enter your password for verification:"] = "Merci de saisir votre mot de passe pour vérification :";
+$a->strings["Resubscribing to OStatus contacts"] = "Réinscription aux contacts OStatus";
+$a->strings["Error"] = "Erreur";
+$a->strings["Only logged in users are permitted to perform a search."] = "Seuls les utilisateurs inscrits sont autorisés à lancer une recherche.";
+$a->strings["Too Many Requests"] = "Trop de requêtes";
+$a->strings["Only one search per minute is permitted for not logged in users."] = "Une seule recherche par minute pour les utilisateurs qui ne sont pas connectés.";
+$a->strings["Items tagged with: %s"] = "Éléments taggés %s";
+$a->strings["Results for: %s"] = "Résultats pour : %s";
 $a->strings["Account"] = "Compte";
+$a->strings["Profiles"] = "Profils";
 $a->strings["Display"] = "Afficher";
 $a->strings["Social Networks"] = "Réseaux sociaux";
 $a->strings["Delegations"] = "Délégations";
 $a->strings["Connected apps"] = "Applications connectées";
 $a->strings["Remove account"] = "Supprimer le compte";
 $a->strings["Missing some important data!"] = "Il manque certaines informations importantes !";
+$a->strings["Update"] = "Mises à jour";
 $a->strings["Failed to connect with email account using the settings provided."] = "Impossible de se connecter au compte courriel configuré.";
 $a->strings["Email settings updated."] = "Réglages de courriel mis à jour.";
 $a->strings["Features updated"] = "Fonctionnalités mises à jour";
@@ -1569,7 +1440,7 @@ $a->strings["Don't show notices"] = "Ne plus afficher les avis";
 $a->strings["Infinite scroll"] = "Défilement infini";
 $a->strings["Automatic updates only at the top of the network page"] = "Mises à jour automatiques seulement en haut de la page Réseau";
 $a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "Si désactivé, la page Réseau est mise à jour en permanence, ce qui peut rendre la lecture difficile.";
-$a->strings["Bandwith Saver Mode"] = "Limiter le transfert de données";
+$a->strings["Bandwidth Saver Mode"] = "";
 $a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "Si activé, le contenu intégré aux pages est mis à jour uniquement lors du rafraîchissement manuel des pages : il n'est plus mis à jour lors des rafraîchissements automatiques.";
 $a->strings["Smart Threading"] = "";
 $a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = "";
@@ -1594,13 +1465,13 @@ $a->strings["Requires manual approval of contact requests."] = "Les demandes de
 $a->strings["OpenID:"] = "OpenID:";
 $a->strings["(Optional) Allow this OpenID to login to this account."] = "&amp;nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte.";
 $a->strings["Publish your default profile in your local site directory?"] = "Publier votre profil par défaut sur l'annuaire local de ce site ?";
-$a->strings["Your profile will be published in the global friendica directories (e.g. <a href=\"%s\">%s</a>). Your profile will be visible in public."] = "";
-$a->strings["Publish your default profile in the global social directory?"] = "Publier votre profil par défaut sur l'annuaire global ?";
 $a->strings["Your profile will be published in this node's <a href=\"%s\">local directory</a>. Your profile details may be publicly visible depending on the system settings."] = "";
+$a->strings["Publish your default profile in the global social directory?"] = "Publier votre profil par défaut sur l'annuaire global ?";
+$a->strings["Your profile will be published in the global friendica directories (e.g. <a href=\"%s\">%s</a>). Your profile will be visible in public."] = "";
 $a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?";
 $a->strings["Your contact list won't be shown in your default profile page. You can decide to show your contact list separately for each additional profile you create"] = "";
 $a->strings["Hide your profile details from anonymous viewers?"] = "";
-$a->strings["Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Disables posting public messages to Diaspora and other networks."] = "";
+$a->strings["Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Your public posts and replies will still be accessible by other means."] = "";
 $a->strings["Allow friends to post to your profile page?"] = "Autoriser vos amis à publier sur votre profil ?";
 $a->strings["Your contacts may write posts on your profile wall. These posts will be distributed to your contacts"] = "";
 $a->strings["Allow friends to tag your posts?"] = "Autoriser vos amis à étiqueter vos publications?";
@@ -1664,6 +1535,41 @@ $a->strings["Change the behaviour of this account for special situations"] = "Mo
 $a->strings["Relocate"] = "Relocaliser";
 $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Si vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton.";
 $a->strings["Resend relocate message to contacts"] = "Renvoyer un message de relocalisation aux contacts.";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit les %3\$s de %2\$s";
+$a->strings["Do you really want to delete this suggestion?"] = "Voulez-vous vraiment supprimer cette suggestion ?";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h.";
+$a->strings["Ignore/Hide"] = "Ignorer/cacher";
+$a->strings["Friend Suggestions"] = "Suggestions d'amitiés/contacts";
+$a->strings["Tag(s) removed"] = "";
+$a->strings["Remove Item Tag"] = "Enlever l'étiquette de l'élément";
+$a->strings["Select a tag to remove: "] = "Sélectionner une étiquette à supprimer :";
+$a->strings["User imports on closed servers can only be done by an administrator."] = "";
+$a->strings["Move account"] = "Migrer le compte";
+$a->strings["You can import an account from another Friendica server."] = "Vous pouvez importer un compte d'un autre serveur Friendica.";
+$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Cette fonctionalité est expérimentale. Il n'est pas possible d'importer des contacts depuis le réseau OStatus (GNU Social/Statusnet) ou depuis Diaspora.";
+$a->strings["Account file"] = "Fichier du compte";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\"";
+$a->strings["You aren't following this contact."] = "";
+$a->strings["Unfollowing is currently not supported by your network."] = "";
+$a->strings["Contact unfollowed"] = "";
+$a->strings["Disconnect/Unfollow"] = "Se déconnecter/Ne plus suivre";
+$a->strings["Do you really want to delete this video?"] = "Voulez-vous vraiment supprimer cette vidéo?";
+$a->strings["Delete Video"] = "Supprimer la vidéo";
+$a->strings["No videos selected"] = "Pas de vidéo sélectionné";
+$a->strings["Recent Videos"] = "Vidéos récente";
+$a->strings["Upload New Videos"] = "Téléversé une nouvelle vidéo";
+$a->strings["No contacts."] = "Aucun contact.";
+$a->strings["Visit %s's profile [%s]"] = "Visiter le profil de %s [%s]";
+$a->strings["Invalid request."] = "Requête invalide.";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise";
+$a->strings["Or - did you try to upload an empty file?"] = "Ou — auriez-vous essayé de télécharger un fichier vide ?";
+$a->strings["File exceeds size limit of %s"] = "La taille du fichier dépasse la limite de %s";
+$a->strings["File upload failed."] = "Le téléversement a échoué.";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message.";
+$a->strings["Unable to check your home location."] = "Impossible de vérifier votre localisation.";
+$a->strings["No recipient."] = "Pas de destinataire.";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus.";
 $a->strings["default"] = "défaut";
 $a->strings["greenzero"] = "greenzero";
 $a->strings["purplezero"] = "purplezero";
@@ -1698,6 +1604,7 @@ $a->strings["Guest"] = "Invité";
 $a->strings["Visitor"] = "Visiteur";
 $a->strings["Logout"] = "Se déconnecter";
 $a->strings["End this session"] = "Mettre fin à cette session";
+$a->strings["Status"] = "Statut";
 $a->strings["Your posts and conversations"] = "Vos publications et conversations";
 $a->strings["Your profile page"] = "Votre page de profil";
 $a->strings["Your photos"] = "Vos photos";
@@ -1734,39 +1641,24 @@ $a->strings["Invite Friends"] = "Inviter des amis";
 $a->strings["Local Directory"] = "Annuaire local";
 $a->strings["External link to forum"] = "Lien sortant vers le forum";
 $a->strings["Quick Start"] = "Démarrage rapide";
-$a->strings["Error decoding account file"] = "Une erreur a été détecté en décodant un fichier utilisateur";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?";
-$a->strings["User '%s' already exists on this server!"] = "L'utilisateur '%s' existe déjà sur ce serveur!";
-$a->strings["User creation error"] = "Erreur de création d'utilisateur";
-$a->strings["User profile creation error"] = "Erreur de création du profil utilisateur";
-$a->strings["%d contact not imported"] = [
-       0 => "%d contacts non importés",
-       1 => "%d contacts non importés",
-];
-$a->strings["Done. You can now login with your username and password"] = "Action réalisée. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe";
+$a->strings["Could not find any unarchived contact entry for this URL (%s)"] = "";
+$a->strings["The contact entries have been archived"] = "";
+$a->strings["Enter new password: "] = "";
+$a->strings["Password can't be empty"] = "";
+$a->strings["Post update version number has been set to %s."] = "";
+$a->strings["Execute pending post updates."] = "";
+$a->strings["All pending post updates are done."] = "";
 $a->strings["Post to Email"] = "Publier aux courriels";
 $a->strings["Hide your profile details from unknown viewers?"] = "Cacher les détails du profil aux visiteurs inconnus?";
 $a->strings["Connectors disabled, since \"%s\" is enabled."] = "Les connecteurs sont désactivés parce que \"%s\" est activé.";
 $a->strings["Visible to everybody"] = "Visible par tout le monde";
 $a->strings["Close"] = "Fermer";
-$a->strings["Enter new password: "] = "";
-$a->strings["Password can't be empty"] = "";
-$a->strings["Could not find any unarchived contact entry for this URL (%s)"] = "";
-$a->strings["The contact entries have been archived"] = "";
-$a->strings["System"] = "Système";
-$a->strings["Home"] = "Profil";
-$a->strings["Introductions"] = "Introductions";
-$a->strings["%s commented on %s's post"] = "%s a commenté la publication de %s";
-$a->strings["%s created a new post"] = "%s a créé une nouvelle publication";
-$a->strings["%s liked %s's post"] = "%s a aimé la publication de %s";
-$a->strings["%s disliked %s's post"] = "%s n'a pas aimé la publication de %s";
-$a->strings["%s is attending %s's event"] = "%s participe à l'événement de %s";
-$a->strings["%s is not attending %s's event"] = "%s ne participe pas à l'événement de %s";
-$a->strings["%s may attend %s's event"] = "%s participera peut-être à l'événement de %s";
-$a->strings["%s is now friends with %s"] = "%s est désormais ami(e) avec %s";
-$a->strings["Friend Suggestion"] = "Suggestion d'amitié/contact";
-$a->strings["Friend/Connect Request"] = "Demande de connexion/relation";
-$a->strings["New Follower"] = "Nouvel abonné";
+$a->strings["Welcome "] = "Bienvenue ";
+$a->strings["Please upload a profile photo."] = "Merci d'illustrer votre profil d'une image.";
+$a->strings["Welcome back "] = "Bienvenue à nouveau, ";
+$a->strings["The database configuration file \"config/local.ini.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Référez-vous au fichier \"INSTALL.txt\".";
 $a->strings["Could not find a command line version of PHP in the web server PATH."] = "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web.";
 $a->strings["If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-worker'>'Setup the worker'</a>"] = "";
 $a->strings["PHP executable path"] = "Chemin vers l'exécutable de PHP";
@@ -1781,41 +1673,67 @@ $a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
 $a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement";
 $a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\".";
 $a->strings["Generate encryption keys"] = "Générer les clés de chiffrement";
-$a->strings["libCurl PHP module"] = "Module libCurl de PHP";
-$a->strings["GD graphics PHP module"] = "Module GD (graphiques) de PHP";
-$a->strings["OpenSSL PHP module"] = "Module OpenSSL de PHP";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erreur : Le module \"rewrite\" du serveur web Apache est requis mais pas installé.";
+$a->strings["Apache mod_rewrite module"] = "Module mod_rewrite Apache";
+$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "";
+$a->strings["Error: The MySQL driver for PDO is not installed."] = "";
 $a->strings["PDO or MySQLi PHP module"] = "";
-$a->strings["mb_string PHP module"] = "Module mb_string de PHP";
+$a->strings["Error, XML PHP module required but not installed."] = "Erreur : le module PHP XML requis est absent.";
 $a->strings["XML PHP module"] = "Module PHP XML";
-$a->strings["iconv PHP module"] = "";
-$a->strings["POSIX PHP module"] = "";
-$a->strings["Apache mod_rewrite module"] = "Module mod_rewrite Apache";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erreur : Le module \"rewrite\" du serveur web Apache est requis mais pas installé.";
+$a->strings["libCurl PHP module"] = "Module libCurl de PHP";
 $a->strings["Error: libCURL PHP module required but not installed."] = "Erreur : Le module PHP \"libCURL\" est requis mais pas installé.";
+$a->strings["GD graphics PHP module"] = "Module GD (graphiques) de PHP";
 $a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erreur : Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé.";
+$a->strings["OpenSSL PHP module"] = "Module OpenSSL de PHP";
 $a->strings["Error: openssl PHP module required but not installed."] = "Erreur : Le module PHP \"openssl\" est requis mais pas installé.";
-$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "";
-$a->strings["Error: The MySQL driver for PDO is not installed."] = "";
+$a->strings["mb_string PHP module"] = "Module mb_string de PHP";
 $a->strings["Error: mb_string PHP module required but not installed."] = "Erreur : le module PHP mb_string est requis mais pas installé.";
+$a->strings["iconv PHP module"] = "";
 $a->strings["Error: iconv PHP module required but not installed."] = "Erreur : Le module PHP iconv requis est absent.";
+$a->strings["POSIX PHP module"] = "";
 $a->strings["Error: POSIX PHP module required but not installed."] = "";
-$a->strings["Error, XML PHP module required but not installed."] = "Erreur : le module PHP XML requis est absent.";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable.";
+$a->strings["The web installer needs to be able to create a file called \"local.ini.php\" in the \"config\" folder of your web server and it is unable to do so."] = "";
 $a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez.";
-$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica.";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named local.ini.php in your Friendica \"config\" folder."] = "";
 $a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\".";
-$a->strings[".htconfig.php is writable"] = "Fichier .htconfig.php accessible en écriture";
+$a->strings["config/local.ini.php is writable"] = "";
 $a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu.";
 $a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica.";
 $a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier.";
 $a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient.";
 $a->strings["view/smarty3 is writable"] = "view/smarty3 est autorisé à l écriture";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur.";
+$a->strings["Url rewrite in .htaccess is not working. Make sure you copied .htaccess-dist to .htaccess."] = "";
 $a->strings["Error message from Curl when fetching"] = "";
 $a->strings["Url rewrite is working"] = "La réécriture d'URL fonctionne.";
 $a->strings["ImageMagick PHP extension is not installed"] = "L'extension PHP ImageMagick n'est pas installée";
 $a->strings["ImageMagick PHP extension is installed"] = "L’extension PHP ImageMagick est installée";
 $a->strings["ImageMagick supports GIF"] = "ImageMagick supporte le format GIF";
+$a->strings["Could not connect to database."] = "Impossible de se connecter à la base.";
+$a->strings["Database already in use."] = "Base de données déjà en cours d'utilisation.";
+$a->strings["System"] = "Système";
+$a->strings["Home"] = "Profil";
+$a->strings["Introductions"] = "Introductions";
+$a->strings["%s commented on %s's post"] = "%s a commenté la publication de %s";
+$a->strings["%s created a new post"] = "%s a créé une nouvelle publication";
+$a->strings["%s liked %s's post"] = "%s a aimé la publication de %s";
+$a->strings["%s disliked %s's post"] = "%s n'a pas aimé la publication de %s";
+$a->strings["%s is attending %s's event"] = "%s participe à l'événement de %s";
+$a->strings["%s is not attending %s's event"] = "%s ne participe pas à l'événement de %s";
+$a->strings["%s may attend %s's event"] = "%s participera peut-être à l'événement de %s";
+$a->strings["%s is now friends with %s"] = "%s est désormais ami(e) avec %s";
+$a->strings["Friend Suggestion"] = "Suggestion d'amitié/contact";
+$a->strings["Friend/Connect Request"] = "Demande de connexion/relation";
+$a->strings["New Follower"] = "Nouvel abonné";
+$a->strings["Error decoding account file"] = "Une erreur a été détecté en décodant un fichier utilisateur";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?";
+$a->strings["User '%s' already exists on this server!"] = "L'utilisateur '%s' existe déjà sur ce serveur!";
+$a->strings["User creation error"] = "Erreur de création d'utilisateur";
+$a->strings["User profile creation error"] = "Erreur de création du profil utilisateur";
+$a->strings["%d contact not imported"] = [
+       0 => "%d contacts non importés",
+       1 => "%d contacts non importés",
+];
+$a->strings["Done. You can now login with your username and password"] = "Action réalisée. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe";
 $a->strings["Birthday:"] = "Anniversaire :";
 $a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-JJ ou MM-JJ";
 $a->strings["never"] = "jamais";
@@ -1831,6 +1749,7 @@ $a->strings["minute"] = "minute";
 $a->strings["minutes"] = "minutes";
 $a->strings["second"] = "seconde";
 $a->strings["seconds"] = "secondes";
+$a->strings["in %1\$d %2\$s"] = "";
 $a->strings["%1\$d %2\$s ago"] = "il y a %1\$d %2\$s ";
 $a->strings["view full size"] = "voir en pleine taille";
 $a->strings["Image/photo"] = "Image/photo";
@@ -1839,104 +1758,9 @@ $a->strings["$1 wrote:"] = "$1 a écrit :";
 $a->strings["Encrypted content"] = "Contenu chiffré";
 $a->strings["Invalid source protocol"] = "";
 $a->strings["Invalid link protocol"] = "";
-$a->strings["Embedding disabled"] = "Incorporation désactivée";
-$a->strings["Embedded content"] = "Contenu incorporé";
 $a->strings["Export"] = "Exporter";
 $a->strings["Export calendar as ical"] = "Exporter au format iCal";
 $a->strings["Export calendar as csv"] = "Exporter au format CSV";
-$a->strings["Frequently"] = "";
-$a->strings["Hourly"] = "";
-$a->strings["Twice daily"] = "";
-$a->strings["Daily"] = "";
-$a->strings["Weekly"] = "";
-$a->strings["Monthly"] = "";
-$a->strings["OStatus"] = "";
-$a->strings["RSS/Atom"] = "";
-$a->strings["Facebook"] = "";
-$a->strings["Zot!"] = "";
-$a->strings["LinkedIn"] = "";
-$a->strings["XMPP/IM"] = "";
-$a->strings["MySpace"] = "";
-$a->strings["Google+"] = "";
-$a->strings["pump.io"] = "";
-$a->strings["Twitter"] = "";
-$a->strings["Diaspora Connector"] = "";
-$a->strings["GNU Social Connector"] = "";
-$a->strings["pnut"] = "";
-$a->strings["App.net"] = "";
-$a->strings["Male"] = "";
-$a->strings["Female"] = "";
-$a->strings["Currently Male"] = "";
-$a->strings["Currently Female"] = "";
-$a->strings["Mostly Male"] = "";
-$a->strings["Mostly Female"] = "";
-$a->strings["Transgender"] = "";
-$a->strings["Intersex"] = "";
-$a->strings["Transsexual"] = "";
-$a->strings["Hermaphrodite"] = "";
-$a->strings["Neuter"] = "";
-$a->strings["Non-specific"] = "Non-spécifique";
-$a->strings["Other"] = "Autre";
-$a->strings["Males"] = "Hommes";
-$a->strings["Females"] = "Femmes";
-$a->strings["Gay"] = "Gay";
-$a->strings["Lesbian"] = "Lesbienne";
-$a->strings["No Preference"] = "Sans préférence";
-$a->strings["Bisexual"] = "Bisexuel";
-$a->strings["Autosexual"] = "Auto-sexuel";
-$a->strings["Abstinent"] = "Abstinent";
-$a->strings["Virgin"] = "Vierge";
-$a->strings["Deviant"] = "Déviant";
-$a->strings["Fetish"] = "Fétichiste";
-$a->strings["Oodles"] = "Oodles";
-$a->strings["Nonsexual"] = "Non-sexuel";
-$a->strings["Single"] = "Célibataire";
-$a->strings["Lonely"] = "Esseulé";
-$a->strings["Available"] = "Disponible";
-$a->strings["Unavailable"] = "Indisponible";
-$a->strings["Has crush"] = "Attiré par quelqu'un";
-$a->strings["Infatuated"] = "Entiché";
-$a->strings["Dating"] = "Dans une relation";
-$a->strings["Unfaithful"] = "Infidèle";
-$a->strings["Sex Addict"] = "Accro au sexe";
-$a->strings["Friends"] = "Amis";
-$a->strings["Friends/Benefits"] = "Amis par intérêt";
-$a->strings["Casual"] = "Casual";
-$a->strings["Engaged"] = "Fiancé";
-$a->strings["Married"] = "Marié";
-$a->strings["Imaginarily married"] = "Se croit marié";
-$a->strings["Partners"] = "Partenaire";
-$a->strings["Cohabiting"] = "En cohabitation";
-$a->strings["Common law"] = "Marié \"de fait\"/\"sui juris\" (concubin)";
-$a->strings["Happy"] = "Heureux";
-$a->strings["Not looking"] = "Pas intéressé";
-$a->strings["Swinger"] = "Échangiste";
-$a->strings["Betrayed"] = "Trahi(e)";
-$a->strings["Separated"] = "Séparé";
-$a->strings["Unstable"] = "Instable";
-$a->strings["Divorced"] = "Divorcé";
-$a->strings["Imaginarily divorced"] = "Se croit divorcé";
-$a->strings["Widowed"] = "Veuf/Veuve";
-$a->strings["Uncertain"] = "Incertain";
-$a->strings["It's complicated"] = "C'est compliqué";
-$a->strings["Don't care"] = "S'en désintéresse";
-$a->strings["Ask me"] = "Me demander";
-$a->strings["Add New Contact"] = "Ajouter un nouveau contact";
-$a->strings["Enter address or web location"] = "Entrez son adresse ou sa localisation web";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple : bob@example.com, http://example.com/barbara";
-$a->strings["%d invitation available"] = [
-       0 => "%d invitation disponible",
-       1 => "%d invitations disponibles",
-];
-$a->strings["Networks"] = "Réseaux";
-$a->strings["All Networks"] = "Tous réseaux";
-$a->strings["Saved Folders"] = "Dossiers sauvegardés";
-$a->strings["Everything"] = "Tout";
-$a->strings["Categories"] = "Catégories";
-$a->strings["%d contact in common"] = [
-       0 => "%d contact en commun",
-       1 => "%d contacts en commun",
-];
 $a->strings["General Features"] = "Fonctions générales";
 $a->strings["Multiple Profiles"] = "Profils multiples";
 $a->strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils";
@@ -1974,6 +1798,7 @@ $a->strings["Tagging"] = "Étiquettage";
 $a->strings["Ability to tag existing posts"] = "Possibilité d'étiqueter les publications existantes";
 $a->strings["Post Categories"] = "Catégories des publications";
 $a->strings["Add categories to your posts"] = "Ajouter des catégories à vos publications";
+$a->strings["Saved Folders"] = "Dossiers sauvegardés";
 $a->strings["Ability to file posts under folders"] = "Possibilité d'afficher les publications sous les répertoires";
 $a->strings["Dislike Posts"] = "Publications non aimées";
 $a->strings["Ability to dislike posts/comments"] = "Possibilité de ne pas aimer les publications/commentaires";
@@ -1987,6 +1812,82 @@ $a->strings["Tag Cloud"] = "";
 $a->strings["Provide a personal tag cloud on your profile page"] = "";
 $a->strings["Display Membership Date"] = "";
 $a->strings["Display membership date in profile"] = "";
+$a->strings["Frequently"] = "";
+$a->strings["Hourly"] = "";
+$a->strings["Twice daily"] = "";
+$a->strings["Daily"] = "";
+$a->strings["Weekly"] = "";
+$a->strings["Monthly"] = "";
+$a->strings["OStatus"] = "";
+$a->strings["RSS/Atom"] = "";
+$a->strings["Zot!"] = "";
+$a->strings["LinkedIn"] = "";
+$a->strings["XMPP/IM"] = "";
+$a->strings["MySpace"] = "";
+$a->strings["Google+"] = "";
+$a->strings["pump.io"] = "";
+$a->strings["Twitter"] = "";
+$a->strings["Diaspora Connector"] = "";
+$a->strings["GNU Social Connector"] = "";
+$a->strings["ActivityPub"] = "";
+$a->strings["pnut"] = "";
+$a->strings["Male"] = "";
+$a->strings["Female"] = "";
+$a->strings["Currently Male"] = "";
+$a->strings["Currently Female"] = "";
+$a->strings["Mostly Male"] = "";
+$a->strings["Mostly Female"] = "";
+$a->strings["Transgender"] = "";
+$a->strings["Intersex"] = "";
+$a->strings["Transsexual"] = "";
+$a->strings["Hermaphrodite"] = "";
+$a->strings["Neuter"] = "";
+$a->strings["Non-specific"] = "Non-spécifique";
+$a->strings["Other"] = "Autre";
+$a->strings["Males"] = "Hommes";
+$a->strings["Females"] = "Femmes";
+$a->strings["Gay"] = "Gay";
+$a->strings["Lesbian"] = "Lesbienne";
+$a->strings["No Preference"] = "Sans préférence";
+$a->strings["Bisexual"] = "Bisexuel";
+$a->strings["Autosexual"] = "Auto-sexuel";
+$a->strings["Abstinent"] = "Abstinent";
+$a->strings["Virgin"] = "Vierge";
+$a->strings["Deviant"] = "Déviant";
+$a->strings["Fetish"] = "Fétichiste";
+$a->strings["Oodles"] = "Oodles";
+$a->strings["Nonsexual"] = "Non-sexuel";
+$a->strings["Single"] = "Célibataire";
+$a->strings["Lonely"] = "Esseulé";
+$a->strings["Available"] = "Disponible";
+$a->strings["Unavailable"] = "Indisponible";
+$a->strings["Has crush"] = "Attiré par quelqu'un";
+$a->strings["Infatuated"] = "Entiché";
+$a->strings["Dating"] = "Dans une relation";
+$a->strings["Unfaithful"] = "Infidèle";
+$a->strings["Sex Addict"] = "Accro au sexe";
+$a->strings["Friends"] = "Amis";
+$a->strings["Friends/Benefits"] = "Amis par intérêt";
+$a->strings["Casual"] = "Casual";
+$a->strings["Engaged"] = "Fiancé";
+$a->strings["Married"] = "Marié";
+$a->strings["Imaginarily married"] = "Se croit marié";
+$a->strings["Partners"] = "Partenaire";
+$a->strings["Cohabiting"] = "En cohabitation";
+$a->strings["Common law"] = "Marié \"de fait\"/\"sui juris\" (concubin)";
+$a->strings["Happy"] = "Heureux";
+$a->strings["Not looking"] = "Pas intéressé";
+$a->strings["Swinger"] = "Échangiste";
+$a->strings["Betrayed"] = "Trahi(e)";
+$a->strings["Separated"] = "Séparé";
+$a->strings["Unstable"] = "Instable";
+$a->strings["Divorced"] = "Divorcé";
+$a->strings["Imaginarily divorced"] = "Se croit divorcé";
+$a->strings["Widowed"] = "Veuf/Veuve";
+$a->strings["Uncertain"] = "Incertain";
+$a->strings["It's complicated"] = "C'est compliqué";
+$a->strings["Don't care"] = "S'en désintéresse";
+$a->strings["Ask me"] = "Me demander";
 $a->strings["Nothing new here"] = "Rien de neuf ici";
 $a->strings["Clear notifications"] = "Effacer les notifications";
 $a->strings["Personal notes"] = "Notes personnelles";
@@ -2013,11 +1914,33 @@ $a->strings["Inbox"] = "Messages entrants";
 $a->strings["Outbox"] = "Messages sortants";
 $a->strings["Manage"] = "Gérer";
 $a->strings["Manage other pages"] = "Gérer les autres pages";
-$a->strings["Profiles"] = "Profils";
 $a->strings["Manage/Edit Profiles"] = "Gérer/Éditer les profiles";
 $a->strings["Site setup and configuration"] = "Démarrage et configuration du site";
 $a->strings["Navigation"] = "Navigation";
 $a->strings["Site map"] = "Carte du site";
+$a->strings["Embedding disabled"] = "Incorporation désactivée";
+$a->strings["Embedded content"] = "Contenu incorporé";
+$a->strings["newer"] = "Plus récent";
+$a->strings["older"] = "Plus ancien";
+$a->strings["first"] = "premier";
+$a->strings["prev"] = "précédent";
+$a->strings["next"] = "suivant";
+$a->strings["last"] = "dernier";
+$a->strings["Add New Contact"] = "Ajouter un nouveau contact";
+$a->strings["Enter address or web location"] = "Entrez son adresse ou sa localisation web";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple : bob@example.com, http://example.com/barbara";
+$a->strings["%d invitation available"] = [
+       0 => "%d invitation disponible",
+       1 => "%d invitations disponibles",
+];
+$a->strings["Networks"] = "Réseaux";
+$a->strings["All Networks"] = "Tous réseaux";
+$a->strings["Everything"] = "Tout";
+$a->strings["Categories"] = "Catégories";
+$a->strings["%d contact in common"] = [
+       0 => "%d contact en commun",
+       1 => "%d contacts en commun",
+];
 $a->strings["There are no tables on MyISAM."] = "";
 $a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "";
 $a->strings["The error message is\n[pre]%s[/pre]"] = "Le message d’erreur est\n[pre]%s[/pre]";
@@ -2025,7 +1948,24 @@ $a->strings["\nError %d occurred during database update:\n%s\n"] = "\nErreur %d
 $a->strings["Errors encountered performing database changes: "] = "";
 $a->strings["%s: Database update"] = "";
 $a->strings["%s: updating %s table."] = "";
-$a->strings["[no subject]"] = "[pas de sujet]";
+$a->strings["Drop Contact"] = "Supprimer le contact";
+$a->strings["Organisation"] = "";
+$a->strings["News"] = "Nouvelles";
+$a->strings["Forum"] = "Forum";
+$a->strings["Connect URL missing."] = "URL de connexion manquante.";
+$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "";
+$a->strings["This site is not configured to allow communications with other networks."] = "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Aucun protocole de communication ni aucun flux n'a pu être découvert.";
+$a->strings["The profile address specified does not provide adequate information."] = "L'adresse de profil indiquée ne fournit par les informations adéquates.";
+$a->strings["An author or name was not found."] = "Aucun auteur ou nom d'auteur n'a pu être trouvé.";
+$a->strings["No browser URL could be matched to this address."] = "Aucune URL de navigation ne correspond à cette adresse.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel.";
+$a->strings["Use mailto: in front of address to force email check."] = "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part.";
+$a->strings["Unable to retrieve contact information."] = "Impossible de récupérer les informations du contact.";
+$a->strings["%s's birthday"] = "Anniversaire de %s's";
+$a->strings["Happy Birthday %s"] = "Joyeux anniversaire, %s !";
 $a->strings["Starts:"] = "Débute :";
 $a->strings["Finishes:"] = "Finit :";
 $a->strings["all-day"] = "toute la journée";
@@ -2045,13 +1985,14 @@ $a->strings["Default privacy group for new contacts"] = "Paramètres de confiden
 $a->strings["Everybody"] = "Tout le monde";
 $a->strings["edit"] = "éditer";
 $a->strings["Edit group"] = "Editer groupe";
-$a->strings["Contacts not in any group"] = "Contacts n'appartenant à aucun groupe";
 $a->strings["Create a new group"] = "Créer un nouveau groupe";
 $a->strings["Edit groups"] = "Modifier les groupes";
+$a->strings["[no subject]"] = "[pas de sujet]";
 $a->strings["Requested account is not available."] = "Le compte demandé n'est pas disponible.";
 $a->strings["Edit profile"] = "Editer le profil";
 $a->strings["Atom feed"] = "Flux Atom";
 $a->strings["Manage/edit profiles"] = "Gérer/éditer les profils";
+$a->strings["XMPP:"] = "XMPP";
 $a->strings["g A l F d"] = "g A | F d";
 $a->strings["F d"] = "F d";
 $a->strings["[today]"] = "[aujourd'hui]";
@@ -2059,7 +2000,7 @@ $a->strings["Birthday Reminders"] = "Rappels d'anniversaires";
 $a->strings["Birthdays this week:"] = "Anniversaires cette semaine :";
 $a->strings["[No description]"] = "[Sans description]";
 $a->strings["Event Reminders"] = "Rappels d'événements";
-$a->strings["Events this week:"] = "Evénements cette semaine :";
+$a->strings["Upcoming events the next 7 days:"] = "";
 $a->strings["Member since:"] = "";
 $a->strings["j F, Y"] = "j F, Y";
 $a->strings["j F"] = "j F";
@@ -2076,7 +2017,10 @@ $a->strings["Love/Romance:"] = "Amour/Romance :";
 $a->strings["Work/employment:"] = "Activité professionnelle/Occupation :";
 $a->strings["School/education:"] = "Études/Formation :";
 $a->strings["Forums:"] = "Forums :";
+$a->strings["Profile Details"] = "Détails du profil";
 $a->strings["Only You Can See This"] = "Vous seul pouvez voir ça";
+$a->strings["Tips for New Members"] = "Conseils aux nouveaux venus";
+$a->strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "";
 $a->strings["Login failed"] = "";
 $a->strings["Not enough information to authenticate"] = "";
 $a->strings["An invitation is required."] = "Une invitation est requise.";
@@ -2085,11 +2029,19 @@ $a->strings["Invalid OpenID url"] = "Adresse OpenID invalide";
 $a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Nous avons eu un souci avec l'OpenID que vous avez fourni. Merci de vérifier qu'il est correctement écrit.";
 $a->strings["The error message was:"] = "Le message d'erreur était :";
 $a->strings["Please enter the required information."] = "Entrez les informations requises.";
-$a->strings["Please use a shorter name."] = "Utilisez un nom plus court.";
-$a->strings["Name too short."] = "Nom trop court.";
+$a->strings["system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values."] = "";
+$a->strings["Username should be at least %s character."] = [
+       0 => "",
+       1 => "",
+];
+$a->strings["Username should be at most %s character."] = [
+       0 => "",
+       1 => "",
+];
 $a->strings["That doesn't appear to be your full (First Last) name."] = "Ceci ne semble pas être votre nom complet (Prénom Nom).";
 $a->strings["Your email domain is not among those allowed on this site."] = "Votre domaine de courriel n'est pas autorisé sur ce site.";
 $a->strings["Not a valid email address."] = "Ceci n'est pas une adresse courriel valide.";
+$a->strings["The nickname was blocked from registration by the nodes admin."] = "";
 $a->strings["Cannot use that email."] = "Impossible d'utiliser ce courriel.";
 $a->strings["Your nickname can only contain a-z, 0-9 and _."] = "";
 $a->strings["Nickname is already registered. Please choose another."] = "Pseudo déjà utilisé. Merci d'en choisir un autre.";
@@ -2098,39 +2050,128 @@ $a->strings["An error occurred during registration. Please try again."] = "Une e
 $a->strings["An error occurred creating your default profile. Please try again."] = "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer.";
 $a->strings["An error occurred creating your self contact. Please try again."] = "";
 $a->strings["An error occurred creating your default contact group. Please try again."] = "";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t\t"] = "";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%4\$s\n\t\t\tPassword:\t\t%5\$s\n\t\t"] = "";
 $a->strings["Registration at %s"] = "";
 $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t"] = "";
 $a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."] = "";
-$a->strings["Drop Contact"] = "Supprimer le contact";
-$a->strings["Organisation"] = "";
-$a->strings["News"] = "Nouvelles";
-$a->strings["Forum"] = "Forum";
-$a->strings["Connect URL missing."] = "URL de connexion manquante.";
-$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "";
-$a->strings["This site is not configured to allow communications with other networks."] = "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Aucun protocole de communication ni aucun flux n'a pu être découvert.";
-$a->strings["The profile address specified does not provide adequate information."] = "L'adresse de profil indiquée ne fournit par les informations adéquates.";
-$a->strings["An author or name was not found."] = "Aucun auteur ou nom d'auteur n'a pu être trouvé.";
-$a->strings["No browser URL could be matched to this address."] = "Aucune URL de navigation ne correspond à cette adresse.";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel.";
-$a->strings["Use mailto: in front of address to force email check."] = "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part.";
-$a->strings["Unable to retrieve contact information."] = "Impossible de récupérer les informations du contact.";
-$a->strings["%s's birthday"] = "Anniversaire de %s's";
-$a->strings["Happy Birthday %s"] = "Joyeux anniversaire, %s !";
-$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s participe à %3\$s de %2\$s";
-$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s ne participe pas à %3\$s de %2\$s";
-$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s participera peut-être à %3\$s de %2\$s";
+$a->strings["Sharing notification from Diaspora network"] = "Notification de partage du réseau Diaspora";
+$a->strings["Attachments:"] = "Pièces jointes : ";
 $a->strings["%s is now following %s."] = "%s suit désormais %s.";
 $a->strings["following"] = "following";
 $a->strings["%s stopped following %s."] = "%s ne suit plus %s.";
 $a->strings["stopped following"] = "retiré de la liste de suivi";
-$a->strings["Sharing notification from Diaspora network"] = "Notification de partage du réseau Diaspora";
-$a->strings["Attachments:"] = "Pièces jointes : ";
 $a->strings["(no subject)"] = "(sans titre)";
-$a->strings["Logged out."] = "Déconnecté.";
+$a->strings["%d contact edited."] = [
+       0 => "%d contact mis à jour.",
+       1 => "%d contacts mis à jour.",
+];
+$a->strings["Could not access contact record."] = "Impossible d'accéder à l'enregistrement du contact.";
+$a->strings["Could not locate selected profile."] = "Impossible de localiser le profil séléctionné.";
+$a->strings["Contact updated."] = "Contact mis à jour.";
+$a->strings["Contact has been blocked"] = "Le contact a été bloqué";
+$a->strings["Contact has been unblocked"] = "Le contact n'est plus bloqué";
+$a->strings["Contact has been ignored"] = "Le contact a été ignoré";
+$a->strings["Contact has been unignored"] = "Le contact n'est plus ignoré";
+$a->strings["Contact has been archived"] = "Contact archivé";
+$a->strings["Contact has been unarchived"] = "Contact désarchivé";
+$a->strings["Drop contact"] = "Supprimer contact";
+$a->strings["Do you really want to delete this contact?"] = "Voulez-vous vraiment supprimer ce contact?";
+$a->strings["Contact has been removed."] = "Ce contact a été retiré.";
+$a->strings["You are mutual friends with %s"] = "Vous êtes ami (et réciproquement) avec %s";
+$a->strings["You are sharing with %s"] = "Vous partagez avec %s";
+$a->strings["%s is sharing with you"] = "%s partage avec vous";
+$a->strings["Private communications are not available for this contact."] = "Les communications privées ne sont pas disponibles pour ce contact.";
+$a->strings["Never"] = "Jamais";
+$a->strings["(Update was successful)"] = "(Mise à jour effectuée avec succès)";
+$a->strings["(Update was not successful)"] = "(Échec de la mise à jour)";
+$a->strings["Suggest friends"] = "Suggérer amitié/contact";
+$a->strings["Network type: %s"] = "Type de réseau %s";
+$a->strings["Communications lost with this contact!"] = "Communications perdues avec ce contact !";
+$a->strings["Fetch further information for feeds"] = "Chercher plus d'informations pour les flux";
+$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "";
+$a->strings["Fetch information"] = "Récupérer informations";
+$a->strings["Fetch keywords"] = "";
+$a->strings["Fetch information and keywords"] = "Récupérer informations";
+$a->strings["Profile Visibility"] = "Visibilité du profil";
+$a->strings["Contact Information / Notes"] = "Informations de contact / Notes";
+$a->strings["Contact Settings"] = "Paramètres du Contact";
+$a->strings["Contact"] = "Contact";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée.";
+$a->strings["Their personal note"] = "";
+$a->strings["Edit contact notes"] = "Éditer les notes des contacts";
+$a->strings["Block/Unblock contact"] = "Bloquer/débloquer ce contact";
+$a->strings["Ignore contact"] = "Ignorer ce contact";
+$a->strings["Repair URL settings"] = "Réglages de réparation des URL";
+$a->strings["View conversations"] = "Voir les conversations";
+$a->strings["Last update:"] = "Dernière mise-à-jour :";
+$a->strings["Update public posts"] = "Mettre à jour les publications publiques:";
+$a->strings["Update now"] = "Mettre à jour";
+$a->strings["Unignore"] = "Ne plus ignorer";
+$a->strings["Currently blocked"] = "Actuellement bloqué";
+$a->strings["Currently ignored"] = "Actuellement ignoré";
+$a->strings["Currently archived"] = "Actuellement archivé";
+$a->strings["Awaiting connection acknowledge"] = "";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Les réponses et \"j'aime\" à vos publications publiques <strong>peuvent</strong> être toujours visibles";
+$a->strings["Notification for new posts"] = "Notification des nouvelles publications";
+$a->strings["Send a notification of every new post of this contact"] = "Envoyer une notification de chaque nouveau message en provenance de ce contact";
+$a->strings["Blacklisted keywords"] = "Mots-clés sur la liste noire";
+$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Liste de mots-clés separés par des virgules qui ne doivent pas être converti en mots-dièse quand  « Récupérer informations et mots-clés » est sélectionné.";
+$a->strings["Actions"] = "Actions";
+$a->strings["Suggestions"] = "Suggestions";
+$a->strings["Suggest potential friends"] = "Suggérer des amis potentiels";
+$a->strings["Show all contacts"] = "Montrer tous les contacts";
+$a->strings["Unblocked"] = "Non-bloqués";
+$a->strings["Only show unblocked contacts"] = "Ne montrer que les contacts non-bloqués";
+$a->strings["Blocked"] = "Bloqués";
+$a->strings["Only show blocked contacts"] = "Ne montrer que les contacts bloqués";
+$a->strings["Ignored"] = "Ignorés";
+$a->strings["Only show ignored contacts"] = "Ne montrer que les contacts ignorés";
+$a->strings["Archived"] = "Archivés";
+$a->strings["Only show archived contacts"] = "Ne montrer que les contacts archivés";
+$a->strings["Hidden"] = "Cachés";
+$a->strings["Only show hidden contacts"] = "Ne montrer que les contacts masqués";
+$a->strings["Search your contacts"] = "Rechercher dans vos contacts";
+$a->strings["Archive"] = "Archiver";
+$a->strings["Unarchive"] = "Désarchiver";
+$a->strings["Batch Actions"] = "Actions multiples";
+$a->strings["Conversations started by this contact"] = "";
+$a->strings["Posts and Comments"] = "";
+$a->strings["View all contacts"] = "Voir tous les contacts";
+$a->strings["View all common friends"] = "Voir tous les amis communs";
+$a->strings["Advanced Contact Settings"] = "Réglages avancés du contact";
+$a->strings["Mutual Friendship"] = "Relation réciproque";
+$a->strings["is a fan of yours"] = "Vous suit";
+$a->strings["you are a fan of"] = "Vous le/la suivez";
+$a->strings["Edit contact"] = "Éditer le contact";
+$a->strings["Toggle Blocked status"] = "(dés)activer l'état \"bloqué\"";
+$a->strings["Toggle Ignored status"] = "(dés)activer l'état \"ignoré\"";
+$a->strings["Toggle Archive status"] = "(dés)activer l'état \"archivé\"";
+$a->strings["Delete contact"] = "Effacer ce contact";
+$a->strings["Friendica Communctions Server - Setup"] = "";
+$a->strings["System check"] = "Vérifications système";
+$a->strings["Please see the file \"Install.txt\"."] = "";
+$a->strings["Check again"] = "Vérifier à nouveau";
+$a->strings["Database connection"] = "Connexion à la base de données";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer.";
+$a->strings["Database Server Name"] = "Serveur de base de données";
+$a->strings["Database Login Name"] = "Nom d'utilisateur de la base";
+$a->strings["Database Login Password"] = "Mot de passe de la base";
+$a->strings["For security reasons the password must not be empty"] = "Pour des raisons de sécurité, le mot de passe ne peut pas être vide.";
+$a->strings["Database Name"] = "Nom de la base";
+$a->strings["Site administrator email address"] = "Adresse électronique de l'administrateur du site";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration.";
+$a->strings["Please select a default timezone for your website"] = "Sélectionner un fuseau horaire par défaut pour votre site";
+$a->strings["Site settings"] = "Réglages du site";
+$a->strings["System Language:"] = "Langue système :";
+$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Définit la langue par défaut pour l'interface de votre instance Friendica et les mails envoyés.";
+$a->strings["Your Friendica site database has been installed."] = "La base de données de votre site Friendica a bien été installée.";
+$a->strings["Installation finished"] = "";
+$a->strings["<h1>What next</h1>"] = "<h1>Ensuite</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "IMPORTANT: vous devrez ajouter [manuellement] une tâche planifiée pour le 'worker'.";
+$a->strings["Go to your new Friendica node <a href=\"%s/register\">registration page</a> and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = "";
+$a->strings["Item Guid"] = "";
 $a->strings["Create a New Account"] = "Créer un nouveau compte";
 $a->strings["Password: "] = "Mot de passe : ";
 $a->strings["Remember me"] = "Se souvenir de moi";
@@ -2140,23 +2181,26 @@ $a->strings["Website Terms of Service"] = "Conditions d'utilisation du site inte
 $a->strings["terms of service"] = "conditions d'utilisation";
 $a->strings["Website Privacy Policy"] = "Politique de confidentialité du site internet";
 $a->strings["privacy policy"] = "politique de confidentialité";
+$a->strings["Logged out."] = "Déconnecté.";
+$a->strings["Bad Request."] = "";
 $a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = "";
 $a->strings["This data is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional private data that may be transmitted to the communication partners accounts."] = "";
 $a->strings["At any point in time a logged in user can export their account data from the <a href=\"%1\$s/settings/uexport\">account settings</a>. If the user wants to delete their account they can do so at <a href=\"%1\$s/removeme\">%1\$s/removeme</a>. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."] = "";
 $a->strings["Privacy Statement"] = "";
 $a->strings["This entry was edited"] = "Cette entrée a été éditée";
-$a->strings["Remove from your stream"] = "";
+$a->strings["Delete globally"] = "";
+$a->strings["Remove locally"] = "";
 $a->strings["save to folder"] = "sauver vers dossier";
 $a->strings["I will attend"] = "Je vais participer";
 $a->strings["I will not attend"] = "Je ne vais pas participer";
 $a->strings["I might attend"] = "Je vais peut-être participer";
+$a->strings["ignore thread"] = "ignorer le fil";
+$a->strings["unignore thread"] = "Ne plus ignorer le fil";
+$a->strings["toggle ignore status"] = "Ignorer le statut";
 $a->strings["add star"] = "mettre en avant";
 $a->strings["remove star"] = "ne plus mettre en avant";
 $a->strings["toggle star status"] = "mettre en avant";
 $a->strings["starred"] = "mis en avant";
-$a->strings["ignore thread"] = "ignorer le fil";
-$a->strings["unignore thread"] = "Ne plus ignorer le fil";
-$a->strings["toggle ignore status"] = "Ignorer le statut";
 $a->strings["add tag"] = "ajouter une étiquette";
 $a->strings["like"] = "aime";
 $a->strings["dislike"] = "n'aime pas";
@@ -2170,17 +2214,12 @@ $a->strings["%d comment"] = [
        0 => "%d commentaire",
        1 => "%d commentaires",
 ];
-$a->strings["Bold"] = "Gras";
-$a->strings["Italic"] = "Italique";
-$a->strings["Underline"] = "Souligné";
-$a->strings["Quote"] = "Citation";
-$a->strings["Code"] = "Code";
-$a->strings["Image"] = "Image";
-$a->strings["Link"] = "Lien";
-$a->strings["Video"] = "Vidéo";
 $a->strings["Delete this item?"] = "Effacer cet élément?";
 $a->strings["show fewer"] = "montrer moins";
-$a->strings["No system theme config value set."] = "";
 $a->strings["toggle mobile"] = "activ. mobile";
-$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = "";
+$a->strings["No system theme config value set."] = "";
+$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé.";
+$a->strings["Legacy module file not found: %s"] = "";
 $a->strings["Update %s failed. See error logs."] = "Mise-à-jour %s échouée. Voir les journaux d'erreur.";
+$a->strings["%s: Updating author-id and owner-id in item and thread table. "] = "";
+$a->strings["%s: Updating post-type."] = "";
index 22896c284b828cb87e3adbcd9b095a84ab6f1066..dc3bd3d7ce903b1870022867eb4313c17abc27ad 100644 (file)
@@ -57,7 +57,7 @@ msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-10-31 09:45+0100\n"
-"PO-Revision-Date: 2018-10-31 15:07+0000\n"
+"PO-Revision-Date: 2018-11-06 19:33+0000\n"
 "Last-Translator: Waldemar Stoczkowski <waldemar.stoczkowski@gmail.com>\n"
 "Language-Team: Polish (http://www.transifex.com/Friendica/friendica/language/pl/)\n"
 "MIME-Version: 1.0\n"
@@ -8981,19 +8981,19 @@ msgstr "system.username_min_length (%s) i system.username_max_length (%s) wykluc
 #, php-format
 msgid "Username should be at least %s character."
 msgid_plural "Username should be at least %s characters."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "Nazwa użytkownika powinna wynosić co najmniej %s znaków."
+msgstr[1] "Nazwa użytkownika powinna wynosić co najmniej %s znaków."
+msgstr[2] "Nazwa użytkownika powinna wynosić co najmniej %s znaków."
+msgstr[3] "Nazwa użytkownika powinna wynosić co najmniej %s znaków."
 
 #: src/Model/User.php:485
 #, php-format
 msgid "Username should be at most %s character."
 msgid_plural "Username should be at most %s characters."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "Nazwa użytkownika nie może mieć więcej niż %s znaków."
+msgstr[1] "Nazwa użytkownika nie może mieć więcej niż %s znaków."
+msgstr[2] "Nazwa użytkownika nie może mieć więcej niż %s znaków."
+msgstr[3] "Nazwa użytkownika nie może mieć więcej niż %s znaków."
 
 #: src/Model/User.php:493
 msgid "That doesn't appear to be your full (First Last) name."
index 1cec16c2fc8d27ddba222238f57fa1bd60e40357..ec3f4e36282479bc13487b63c1633175800b102e 100644 (file)
@@ -2071,16 +2071,16 @@ $a->strings["The error message was:"] = "Komunikat o błędzie:";
 $a->strings["Please enter the required information."] = "Wprowadź wymagane informacje.";
 $a->strings["system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values."] = "system.username_min_length (%s) i system.username_max_length (%s) wykluczają się nawzajem, zamieniając wartości.";
 $a->strings["Username should be at least %s character."] = [
-       0 => "",
-       1 => "",
-       2 => "",
-       3 => "",
+       0 => "Nazwa użytkownika powinna wynosić co najmniej %s znaków.",
+       1 => "Nazwa użytkownika powinna wynosić co najmniej %s znaków.",
+       2 => "Nazwa użytkownika powinna wynosić co najmniej %s znaków.",
+       3 => "Nazwa użytkownika powinna wynosić co najmniej %s znaków.",
 ];
 $a->strings["Username should be at most %s character."] = [
-       0 => "",
-       1 => "",
-       2 => "",
-       3 => "",
+       0 => "Nazwa użytkownika nie może mieć więcej niż %s znaków.",
+       1 => "Nazwa użytkownika nie może mieć więcej niż %s znaków.",
+       2 => "Nazwa użytkownika nie może mieć więcej niż %s znaków.",
+       3 => "Nazwa użytkownika nie może mieć więcej niż %s znaków.",
 ];
 $a->strings["That doesn't appear to be your full (First Last) name."] = "Wydaje mi się, że to nie jest twoje pełne imię (pierwsze imię) i nazwisko.";
 $a->strings["Your email domain is not among those allowed on this site."] = "Twoja domena internetowa nie jest obsługiwana na tej stronie.";
index e76b97b8b94c87822daf51c9ee43f49d3b369ff6..f1983d7dc6d9137b3860ce5e92ef2ff3647ec8ea 100644 (file)
@@ -9,7 +9,7 @@
 <link rel="stylesheet" href="view/asset/perfect-scrollbar/css/perfect-scrollbar.min.css" type="text/css" media="screen" />
 
 {{foreach $stylesheets as $stylesheetUrl}}
-<link rel="stylesheet" href="{{$stylesheetUrl}}" type="text/css" media="screen" />
+<link rel="stylesheet" href="{{$stylesheetUrl|escape:"html":"UTF-8"}}" type="text/css" media="screen" />
 {{/foreach}}
 
 <link rel="shortcut icon" href="{{$shortcut_icon}}" />
index edbe713c6713ad7abf51f11bce2db37c7e61b9af..d10639c8fe52f87d9bb21ef8f31ec5e1ed2429a9 100644 (file)
@@ -373,9 +373,15 @@ function openClose(theID) {
 
 function showHide(theID) {
        var elem = document.getElementById(theID);
+       var edit = document.getElementById("comment-edit-submit-wrapper-" + theID.match('[0-9$]+'));
 
-       if( $(elem).is(':visible') ) {
-               elem.style.display = "none";
+       if ($(elem).is(':visible')) {
+               if (!$(edit).is(':visible')) {
+                       edit.style.display = "block";
+               }
+               else {
+                       elem.style.display = "none";
+               }
        }
        else {
                elem.style.display = "block";
index d8f8b1d82dc531bc1e7906d81eb534226e1606fc..c8d30c0b5010cb510298eae5e114706b59998544 100644 (file)
@@ -26,7 +26,7 @@
 <link rel="stylesheet" href="view/theme/frio/font/open_sans/open-sans.css" type="text/css" media="screen"/>
 
 {{foreach $stylesheets as $stylesheetUrl}}
-<link rel="stylesheet" href="{{$stylesheetUrl}}" type="text/css" media="screen" />
+<link rel="stylesheet" href="{{$stylesheetUrl|escape:"html":"UTF-8"}}" type="text/css" media="screen" />
 {{/foreach}}
 
 {{* own css files *}}