-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadef_dump.sql
410 lines (359 loc) · 359 KB
/
adef_dump.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
-- MySQL dump 10.19 Distrib 10.3.34-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: adef
-- ------------------------------------------------------
-- Server version 10.3.34-MariaDB-0ubuntu0.20.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 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_commentmeta`
--
LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_comments`
--
DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
`comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT 0,
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
`user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_comments`
--
LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT 1,
`link_rating` int(11) NOT NULL DEFAULT 0,
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_links`
--
LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`),
KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=12023 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_options`
--
LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://adef.local','yes'),(2,'home','http://adef.local','yes'),(3,'blogname','(ADEF) Arab Digital Expression Foundation','yes'),(4,'blogdescription','Just another WordPress site','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','[email protected]','yes'),(7,'start_of_week','6','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','[email protected]','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','26','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i A','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:11:{i:0;s:25:\"polylang-pro/polylang.php\";i:1;s:30:\"advanced-custom-fields/acf.php\";i:2;s:33:\"cf7-to-api/contact-form-7-api.php\";i:3;s:36:\"contact-form-7/wp-contact-form-7.php\";i:4;s:43:\"custom-post-type-ui/custom-post-type-ui.php\";i:5;s:41:\"easy-image-gallery/easy-image-gallery.php\";i:6;s:23:\"loco-translate/loco.php\";i:7;s:43:\"preferred-languages/preferred-languages.php\";i:8;s:25:\"rtl-tester/rtl-tester.php\";i:9;s:33:\"wp-job-manager/wp-job-manager.php\";i:10;s:30:\"wp-rest-menu/wp-rest-menus.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','2','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','adef','yes'),(41,'stylesheet','adef','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','53496','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','posts','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:0:{}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','0','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1674466665','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'initial_db_version','53496','yes'),(100,'wp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:80:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:19:\"manage_job_listings\";b:1;s:16:\"edit_job_listing\";b:1;s:16:\"read_job_listing\";b:1;s:18:\"delete_job_listing\";b:1;s:17:\"edit_job_listings\";b:1;s:24:\"edit_others_job_listings\";b:1;s:20:\"publish_job_listings\";b:1;s:25:\"read_private_job_listings\";b:1;s:19:\"delete_job_listings\";b:1;s:27:\"delete_private_job_listings\";b:1;s:29:\"delete_published_job_listings\";b:1;s:26:\"delete_others_job_listings\";b:1;s:25:\"edit_private_job_listings\";b:1;s:27:\"edit_published_job_listings\";b:1;s:24:\"manage_job_listing_terms\";b:1;s:22:\"edit_job_listing_terms\";b:1;s:24:\"delete_job_listing_terms\";b:1;s:24:\"assign_job_listing_terms\";b:1;s:10:\"loco_admin\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"employer\";a:2:{s:4:\"name\";s:8:\"Employer\";s:12:\"capabilities\";a:3:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"delete_posts\";b:0;}}s:10:\"translator\";a:2:{s:4:\"name\";s:10:\"Translator\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:10:\"loco_admin\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'user_count','1','no'),(103,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','yes'),(105,'cron','a:12:{i:1663688666;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1663689057;a:1:{s:34:\"job_manager_check_for_expired_jobs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1663703457;a:2:{s:31:\"job_manager_delete_old_previews\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"job_manager_email_daily_notices\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1663709875;a:4:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1663709902;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1663753074;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1663753102;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1663753131;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1663839474;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1664224956;a:1:{s:23:\"polylang_check_licenses\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1664481071;a:1:{s:42:\"job_manager_usage_tracking_send_usage_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:36:\"job_manager_usage_tracking_two_weeks\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}s:7:\"version\";i:2;}','yes'),(106,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(121,'theme_mods_twentytwentytwo','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1658915277;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','yes'),(133,'can_compress_scripts','1','no'),(146,'recovery_keys','a:0:{}','yes'),(147,'https_detection_errors','a:0:{}','yes'),(151,'finished_updating_comment_type','1','yes'),(152,'WPLANG','','yes'),(153,'new_admin_email','[email protected]','yes'),(156,'recently_activated','a:0:{}','yes'),(161,'current_theme','','yes'),(162,'theme_mods_adef','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:12:\"primary_menu\";i:3;}s:18:\"custom_css_post_id\";i:-1;}','yes'),(163,'theme_switched','','yes'),(181,'acf_version','5.12.3','yes'),(187,'_transient_health-check-site-status-result','{\"good\":13,\"recommended\":4,\"critical\":2}','yes'),(189,'widget_recent-comments','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(190,'widget_recent-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(193,'recovery_mode_email_last_sent','1659798741','yes'),(199,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(203,'cptui_post_types','a:2:{s:5:\"space\";a:34:{s:4:\"name\";s:5:\"space\";s:5:\"label\";s:6:\"Spaces\";s:14:\"singular_label\";s:5:\"Space\";s:11:\"description\";s:0:\"\";s:6:\"public\";s:4:\"true\";s:18:\"publicly_queryable\";s:4:\"true\";s:7:\"show_ui\";s:4:\"true\";s:17:\"show_in_nav_menus\";s:4:\"true\";s:16:\"delete_with_user\";s:5:\"false\";s:12:\"show_in_rest\";s:4:\"true\";s:9:\"rest_base\";s:6:\"spaces\";s:21:\"rest_controller_class\";s:0:\"\";s:14:\"rest_namespace\";s:0:\"\";s:11:\"has_archive\";s:5:\"false\";s:18:\"has_archive_string\";s:0:\"\";s:19:\"exclude_from_search\";s:5:\"false\";s:15:\"capability_type\";s:4:\"post\";s:12:\"hierarchical\";s:5:\"false\";s:10:\"can_export\";s:5:\"false\";s:7:\"rewrite\";s:4:\"true\";s:12:\"rewrite_slug\";s:0:\"\";s:17:\"rewrite_withfront\";s:4:\"true\";s:9:\"query_var\";s:4:\"true\";s:14:\"query_var_slug\";s:0:\"\";s:13:\"menu_position\";s:0:\"\";s:12:\"show_in_menu\";s:4:\"true\";s:19:\"show_in_menu_string\";s:0:\"\";s:9:\"menu_icon\";s:16:\"dashicons-groups\";s:20:\"register_meta_box_cb\";N;s:8:\"supports\";a:4:{i:0;s:5:\"title\";i:1;s:6:\"editor\";i:2;s:7:\"excerpt\";i:3;s:13:\"custom-fields\";}s:10:\"taxonomies\";a:2:{i:0;s:8:\"category\";i:1;s:8:\"post_tag\";}s:6:\"labels\";a:29:{s:9:\"menu_name\";s:0:\"\";s:9:\"all_items\";s:0:\"\";s:7:\"add_new\";s:0:\"\";s:12:\"add_new_item\";s:0:\"\";s:9:\"edit_item\";s:0:\"\";s:8:\"new_item\";s:0:\"\";s:9:\"view_item\";s:0:\"\";s:10:\"view_items\";s:0:\"\";s:12:\"search_items\";s:0:\"\";s:9:\"not_found\";s:0:\"\";s:18:\"not_found_in_trash\";s:0:\"\";s:17:\"parent_item_colon\";s:0:\"\";s:14:\"featured_image\";s:0:\"\";s:18:\"set_featured_image\";s:0:\"\";s:21:\"remove_featured_image\";s:0:\"\";s:18:\"use_featured_image\";s:0:\"\";s:8:\"archives\";s:0:\"\";s:16:\"insert_into_item\";s:0:\"\";s:21:\"uploaded_to_this_item\";s:0:\"\";s:17:\"filter_items_list\";s:0:\"\";s:21:\"items_list_navigation\";s:0:\"\";s:10:\"items_list\";s:0:\"\";s:10:\"attributes\";s:0:\"\";s:14:\"name_admin_bar\";s:0:\"\";s:14:\"item_published\";s:0:\"\";s:24:\"item_published_privately\";s:0:\"\";s:22:\"item_reverted_to_draft\";s:0:\"\";s:14:\"item_scheduled\";s:0:\"\";s:12:\"item_updated\";s:0:\"\";}s:15:\"custom_supports\";s:0:\"\";s:16:\"enter_title_here\";s:0:\"\";}s:8:\"platform\";a:34:{s:4:\"name\";s:8:\"platform\";s:5:\"label\";s:9:\"Platforms\";s:14:\"singular_label\";s:8:\"Platform\";s:11:\"description\";s:0:\"\";s:6:\"public\";s:4:\"true\";s:18:\"publicly_queryable\";s:4:\"true\";s:7:\"show_ui\";s:4:\"true\";s:17:\"show_in_nav_menus\";s:4:\"true\";s:16:\"delete_with_user\";s:5:\"false\";s:12:\"show_in_rest\";s:4:\"true\";s:9:\"rest_base\";s:9:\"platforms\";s:21:\"rest_controller_class\";s:0:\"\";s:14:\"rest_namespace\";s:0:\"\";s:11:\"has_archive\";s:5:\"false\";s:18:\"has_archive_string\";s:0:\"\";s:19:\"exclude_from_search\";s:5:\"false\";s:15:\"capability_type\";s:4:\"post\";s:12:\"hierarchical\";s:5:\"false\";s:10:\"can_export\";s:5:\"false\";s:7:\"rewrite\";s:4:\"true\";s:12:\"rewrite_slug\";s:0:\"\";s:17:\"rewrite_withfront\";s:4:\"true\";s:9:\"query_var\";s:4:\"true\";s:14:\"query_var_slug\";s:0:\"\";s:13:\"menu_position\";s:0:\"\";s:12:\"show_in_menu\";s:4:\"true\";s:19:\"show_in_menu_string\";s:0:\"\";s:9:\"menu_icon\";s:21:\"dashicons-admin-links\";s:20:\"register_meta_box_cb\";N;s:8:\"supports\";a:3:{i:0;s:5:\"title\";i:1;s:9:\"thumbnail\";i:2;s:7:\"excerpt\";}s:10:\"taxonomies\";a:0:{}s:6:\"labels\";a:29:{s:9:\"menu_name\";s:0:\"\";s:9:\"all_items\";s:0:\"\";s:7:\"add_new\";s:0:\"\";s:12:\"add_new_item\";s:0:\"\";s:9:\"edit_item\";s:0:\"\";s:8:\"new_item\";s:0:\"\";s:9:\"view_item\";s:0:\"\";s:10:\"view_items\";s:0:\"\";s:12:\"search_items\";s:0:\"\";s:9:\"not_found\";s:0:\"\";s:18:\"not_found_in_trash\";s:0:\"\";s:17:\"parent_item_colon\";s:0:\"\";s:14:\"featured_image\";s:0:\"\";s:18:\"set_featured_image\";s:0:\"\";s:21:\"remove_featured_image\";s:0:\"\";s:18:\"use_featured_image\";s:0:\"\";s:8:\"archives\";s:0:\"\";s:16:\"insert_into_item\";s:0:\"\";s:21:\"uploaded_to_this_item\";s:0:\"\";s:17:\"filter_items_list\";s:0:\"\";s:21:\"items_list_navigation\";s:0:\"\";s:10:\"items_list\";s:0:\"\";s:10:\"attributes\";s:0:\"\";s:14:\"name_admin_bar\";s:0:\"\";s:14:\"item_published\";s:0:\"\";s:24:\"item_published_privately\";s:0:\"\";s:22:\"item_reverted_to_draft\";s:0:\"\";s:14:\"item_scheduled\";s:0:\"\";s:12:\"item_updated\";s:0:\"\";}s:15:\"custom_supports\";s:0:\"\";s:16:\"enter_title_here\";s:0:\"\";}}','yes'),(345,'job_manager_permalinks','{\"jobs_archive\":\"\"}','yes'),(346,'_transient_jm_get_job_listing_type-transient-version','1660241055','yes'),(352,'job_manager_installed_terms','1','yes'),(353,'job_manager_admin_notices','[]','no'),(354,'wp_job_manager_version','1.37.0','yes'),(355,'widget_widget_recent_jobs','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(356,'widget_widget_featured_jobs','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(359,'job_manager_date_format','relative','yes'),(360,'job_manager_google_maps_api_key','','yes'),(361,'job_manager_delete_data_on_uninstall','0','yes'),(362,'job_manager_bypass_trash_on_uninstall','0','yes'),(363,'job_manager_usage_tracking_enabled','','yes'),(364,'job_manager_per_page','10','yes'),(365,'job_manager_job_listing_pagination_type','load_more','yes'),(366,'job_manager_hide_filled_positions','0','yes'),(367,'job_manager_hide_expired','0','yes'),(368,'job_manager_hide_expired_content','1','yes'),(369,'job_manager_enable_categories','0','yes'),(370,'job_manager_enable_default_category_multiselect','0','yes'),(371,'job_manager_category_filter_type','any','yes'),(372,'job_manager_enable_types','1','yes'),(373,'job_manager_multi_job_type','0','yes'),(374,'job_manager_enable_salary','0','yes'),(375,'job_manager_enable_salary_currency','0','yes'),(376,'job_manager_default_salary_currency','USD','yes'),(377,'job_manager_enable_salary_unit','0','yes'),(378,'job_manager_default_salary_unit','YEAR','yes'),(379,'job_manager_display_location_address','0','yes'),(380,'job_manager_user_requires_account','1','yes'),(381,'job_manager_enable_registration','0','yes'),(382,'job_manager_generate_username_from_email','1','yes'),(383,'job_manager_use_standard_password_setup_email','1','yes'),(384,'job_manager_registration_role','employer','yes'),(385,'job_manager_submission_requires_approval','1','yes'),(386,'job_manager_user_can_edit_pending_submissions','0','yes'),(387,'job_manager_user_edit_published_submissions','yes','yes'),(388,'job_manager_submission_duration','30','yes'),(389,'job_manager_submission_limit','','yes'),(390,'job_manager_allowed_application_method','','yes'),(391,'job_manager_show_agreement_job_submission','0','yes'),(392,'job_manager_recaptcha_label','Are you human?','yes'),(393,'job_manager_recaptcha_site_key','','yes'),(394,'job_manager_recaptcha_secret_key','','yes'),(395,'job_manager_enable_recaptcha_job_submission','0','yes'),(396,'job_manager_submit_job_form_page_id','','yes'),(397,'job_manager_job_dashboard_page_id','','yes'),(398,'job_manager_jobs_page_id','','yes'),(399,'job_manager_terms_and_conditions_page_id','','yes'),(400,'job_manager_browse_job_listings_capability','a:0:{}','yes'),(401,'job_manager_view_job_listing_capability','a:0:{}','yes'),(402,'job_manager_email_admin_new_job','a:2:{s:7:\"enabled\";s:1:\"1\";s:10:\"plain_text\";s:1:\"0\";}','yes'),(403,'job_manager_email_admin_updated_job','a:2:{s:7:\"enabled\";s:1:\"1\";s:10:\"plain_text\";s:1:\"0\";}','yes'),(404,'job_manager_email_admin_expiring_job','a:3:{s:7:\"enabled\";s:1:\"0\";s:10:\"plain_text\";s:1:\"0\";s:18:\"notice_period_days\";s:1:\"1\";}','yes'),(405,'job_manager_email_employer_expiring_job','a:3:{s:7:\"enabled\";s:1:\"0\";s:10:\"plain_text\";s:1:\"0\";s:18:\"notice_period_days\";s:1:\"1\";}','yes'),(413,'job_manager_usage_tracking_opt_in_hide','1','yes'),(414,'_transient_get_job_listings-transient-version','1660573228','yes'),(556,'_transient_jm_get_category-transient-version','1660573192','yes'),(665,'polylang','a:14:{s:7:\"browser\";b:0;s:7:\"rewrite\";i:1;s:12:\"hide_default\";i:0;s:10:\"force_lang\";i:3;s:13:\"redirect_lang\";i:0;s:13:\"media_support\";b:1;s:9:\"uninstall\";i:0;s:4:\"sync\";a:0:{}s:10:\"post_types\";a:2:{i:0;s:5:\"space\";i:1;s:8:\"platform\";}s:10:\"taxonomies\";a:0:{}s:7:\"domains\";a:2:{s:2:\"ar\";s:27:\"http://home.adef.xyz/arabic\";s:2:\"en\";s:20:\"http://home.adef.xyz\";}s:7:\"version\";s:5:\"3.2.5\";s:16:\"first_activation\";i:1659325468;s:12:\"default_lang\";s:2:\"en\";}','yes'),(666,'polylang_wpml_strings','a:0:{}','yes'),(667,'widget_polylang','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(671,'_transient_jm_get_language-transient-version','1660578376','yes'),(672,'_transient_jm_get_term_language-transient-version','1659651243','yes'),(674,'_transient_jm_get_term_translations-transient-version','1659325712','yes'),(678,'pll_dismissed_notices','a:2:{i:0;s:6:\"wizard\";i:1;s:8:\"lingotek\";}','yes'),(694,'category_children','a:0:{}','yes'),(707,'lingotek_profiles','a:3:{s:9:\"automatic\";a:4:{s:7:\"profile\";s:9:\"automatic\";s:4:\"name\";s:9:\"Automatic\";s:6:\"upload\";s:9:\"automatic\";s:8:\"download\";s:9:\"automatic\";}s:6:\"manual\";a:4:{s:7:\"profile\";s:6:\"manual\";s:4:\"name\";s:6:\"Manual\";s:6:\"upload\";s:6:\"manual\";s:8:\"download\";s:6:\"manual\";}s:8:\"disabled\";a:2:{s:7:\"profile\";s:8:\"disabled\";s:4:\"name\";s:8:\"Disabled\";}}','yes'),(708,'lingotek_plugin_version','1.5.8','yes'),(712,'lingotek_professional_promotion_shown','1','no'),(721,'_transient_jm_get_post_translations-transient-version','1662889689','yes'),(731,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:2:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.0.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.0.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.0.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.0.2-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.0.2-partial-1.zip\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.0.2\";s:7:\"version\";s:5:\"6.0.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:5:\"6.0.1\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.0.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.0.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.0.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.0.2-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.0.2-partial-1.zip\";s:8:\"rollback\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.0.2-rollback-1.zip\";}s:7:\"current\";s:5:\"6.0.2\";s:7:\"version\";s:5:\"6.0.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:5:\"6.0.1\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1663666758;s:15:\"version_checked\";s:5:\"6.0.1\";s:12:\"translations\";a:0:{}}','no'),(732,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1663666758;s:7:\"checked\";a:4:{s:4:\"adef\";s:0:\"\";s:12:\"twentytwenty\";s:3:\"2.0\";s:15:\"twentytwentyone\";s:3:\"1.6\";s:15:\"twentytwentytwo\";s:3:\"1.2\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:3:{s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.0.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.6.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.2.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(1038,'loco_recent','a:4:{s:1:\"c\";s:21:\"Loco_data_RecentItems\";s:1:\"v\";i:0;s:1:\"d\";a:1:{s:6:\"bundle\";a:1:{s:10:\"theme.adef\";i:1659643968;}}s:1:\"t\";i:1659643968;}','no'),(1156,'_transient_jm_get_post_tag-transient-version','1659991482','yes'),(1157,'wp_calendar_block_has_published_posts','','yes'),(2127,'_transient_pll_translated_slugs','a:11:{s:11:\"job_listing\";a:2:{s:4:\"slug\";s:3:\"job\";s:12:\"translations\";a:2:{s:2:\"ar\";s:3:\"job\";s:2:\"en\";s:3:\"job\";}}s:5:\"space\";a:2:{s:4:\"slug\";s:5:\"space\";s:12:\"translations\";a:2:{s:2:\"ar\";s:5:\"space\";s:2:\"en\";s:5:\"space\";}}s:8:\"platform\";a:2:{s:4:\"slug\";s:8:\"platform\";s:12:\"translations\";a:2:{s:2:\"ar\";s:8:\"platform\";s:2:\"en\";s:8:\"platform\";}}s:8:\"category\";a:2:{s:4:\"slug\";s:8:\"category\";s:12:\"translations\";a:2:{s:2:\"ar\";s:8:\"category\";s:2:\"en\";s:8:\"category\";}}s:8:\"post_tag\";a:2:{s:4:\"slug\";s:3:\"tag\";s:12:\"translations\";a:2:{s:2:\"ar\";s:3:\"tag\";s:2:\"en\";s:3:\"tag\";}}s:11:\"post_format\";a:2:{s:4:\"slug\";s:4:\"type\";s:12:\"translations\";a:2:{s:2:\"ar\";s:4:\"type\";s:2:\"en\";s:4:\"type\";}}s:6:\"author\";a:2:{s:4:\"slug\";s:6:\"author\";s:12:\"translations\";a:2:{s:2:\"ar\";s:6:\"author\";s:2:\"en\";s:6:\"author\";}}s:6:\"search\";a:2:{s:4:\"slug\";s:6:\"search\";s:12:\"translations\";a:2:{s:2:\"ar\";s:6:\"search\";s:2:\"en\";s:6:\"search\";}}s:10:\"attachment\";a:2:{s:4:\"slug\";s:10:\"attachment\";s:12:\"translations\";a:2:{s:2:\"ar\";s:10:\"attachment\";s:2:\"en\";s:10:\"attachment\";}}s:5:\"paged\";a:2:{s:4:\"slug\";s:4:\"page\";s:12:\"translations\";a:2:{s:2:\"ar\";s:4:\"page\";s:2:\"en\";s:4:\"page\";}}s:5:\"front\";a:2:{s:4:\"slug\";s:0:\"\";s:12:\"translations\";a:2:{s:2:\"ar\";s:0:\"\";s:2:\"en\";s:0:\"\";}}}','yes'),(2129,'polylang_licenses','a:1:{s:12:\"polylang-pro\";a:2:{s:3:\"key\";s:32:\"e83632d4938729352b3e4fb5a9695177\";s:4:\"data\";O:8:\"stdClass\":13:{s:7:\"success\";b:1;s:7:\"license\";s:5:\"valid\";s:7:\"item_id\";b:0;s:9:\"item_name\";s:12:\"Polylang+Pro\";s:8:\"checksum\";s:32:\"4f55a87ff5c3542ed17f7ea072c2502c\";s:7:\"expires\";s:19:\"2023-08-08 23:59:59\";s:10:\"payment_id\";i:298090;s:13:\"customer_name\";s:13:\"MOHAMED MAGDY\";s:14:\"customer_email\";s:31:\"[email protected]\";s:13:\"license_limit\";i:1;s:10:\"site_count\";i:1;s:16:\"activations_left\";i:0;s:8:\"price_id\";s:1:\"1\";}}}','yes'),(2131,'edd_sl_609ae11585be436291a4a56797acb272','a:2:{s:7:\"timeout\";i:1660002191;s:5:\"value\";s:9730:\"{\"new_version\":\"3.2.5\",\"stable_version\":\"3.2.5\",\"name\":\"Polylang Pro\",\"slug\":\"polylang\",\"url\":\"https:\\/\\/polylang.pro\\/downloads\\/polylang-pro\\/?changelog=1\",\"last_updated\":\"2022-06-28 07:36:59\",\"homepage\":\"https:\\/\\/polylang.pro\\/downloads\\/polylang-pro\\/\",\"package\":\"\",\"download_link\":\"\",\"sections\":{\"description\":\"<p>Polylang Pro offers all the awesomeness of Polylang plus extra features and Premium support.<\\/p>\\n\",\"changelog\":\"<h4> 3.2.5 (2022-06-28) <\\/h4>\\n<ul>\\n<li>Pro: Fix creation of WC product categories with shared slug via REST API<\\/li>\\n<li>Pro: Fix conflict with WooBuilder when editing a WC product<\\/li>\\n<li>Fix: Force empty string translation to empty string #1058<\\/li>\\n<li>Fix CSS conflict with Dynamic content for Elementor #1060<\\/li>\\n<\\/ul>\\n<h4> 3.2.4 (2022-06-07) <\\/h4>\\n<ul>\\n<li>Pro: Remove "Navigation menus" from the post type settings list<\\/li>\\n<li>Pro: Fix block editor languages panel missing in WordPress 5.6<\\/li>\\n<li>Pro: Fix wrongly indexed languages list returned by REST API when the first language is deactivated.<\\/li>\\n<li>Revert fix for category feed not redirected when the language code is wrong #1054<\\/li>\\n<li>Fix wrong redirect of category when the url includes a query string #1048<\\/li>\\n<li>Fix querying multiple categories failing<\\/li>\\n<\\/ul>\\n<h4> 3.2.3 (2022-05-17) <\\/h4>\\n<ul>\\n<li>Pro: Fix a fatal error when inserting a term<\\/li>\\n<li>Pro: Fix translation of the block cover when duplicating a post<\\/li>\\n<li>Pro: Fix a CSS issue in bulk tranlate form introduced by WP 6.0<\\/li>\\n<li>Pro: Fix a CSS issue in string import\\/export metaboxes.<\\/li>\\n<li>Prevent random languages order in WP 6.0 #1041<\\/li>\\n<li>Translate site title in retrieve password email #1042<\\/li>\\n<li>Fix \'lang\' attribute in language widget dropdown #1039<\\/li>\\n<\\/ul>\\n<h4> 3.2.2 (2022-04-25) <\\/h4>\\n<ul>\\n<li>Pro: Fix redirect occuring for tags sharing the same slug as their translations<\\/li>\\n<li>Fix quick edit allowing to modify the language of the default category when it should not #1018<\\/li>\\n<\\/ul>\\n<h4> 3.2.1 (2022-04-14) <\\/h4>\\n<ul>\\n<li>Pro: Fix users with editor role not able to save or publish posts<\\/li>\\n<li>Pro: Fix FSE compatibility not loaded when the plugin G\\u00fctenberg is active<\\/li>\\n<li>Pro: Fix a fatal error occuring with Yoast SEO Premium<\\/li>\\n<li>Pro: Fix a fatal error with ACF when no language is defined<\\/li>\\n<\\/ul>\\n<h4> 3.2 (2022-04-12) <\\/h4>\\n<ul>\\n<li>Requires WP 5.6 as minimum version<\\/li>\\n<li>Pro: Add compatibility with the full site editing introduced in WP 5.9<\\/li>\\n<li>Pro: Add a language switcher block for the navigation block introduced in WP 5.9<\\/li>\\n<li>Pro: Add compatibility with the new gallery block introduced in WP 5.9<\\/li>\\n<li>Pro: Make the language switcher block available in the widget section of the customizer<\\/li>\\n<li>Pro: Fix wrong category when translating the latest posts block<\\/li>\\n<li>Pro: Fix the language switcher block when using the dropdown option<\\/li>\\n<li>Pro: Fix some edge cases with locale fallback<\\/li>\\n<li>Pro: Fix post template replacing the post content when duplicating a post<\\/li>\\n<li>Pro: Fix synchronization groups not correctly cleaned up when a language is deleted<\\/li>\\n<li>Pro: Fix incorrect sticky property when duplicating \\/ synchronizing posts<\\/li>\\n<li>Pro: Fix "Page for posts" label after the page has been bulk translated<\\/li>\\n<li>Pro: Fix translated slug when the url includes a query string<\\/li>\\n<li>Pro: Synchronize ACF layout fields if a child field is synchronized or translatable<\\/li>\\n<li>Pro: Fix wrong field group translation displayed when using object cache with ACF<\\/li>\\n<li>Update plugin updater to 1.9.1<\\/li>\\n<li>Add compatibility with the block site title introduced in WP 5.9<\\/li>\\n<li>Add the list of wpml-config.xml files in the site health information<\\/li>\\n<li>Improve the performance of the get_pages() filter #980<\\/li>\\n<li>Improve the compatibility of \'wpml_object_id\' with the original filter #972<\\/li>\\n<li>Prevent term_exists to be filtered by language in WP 6.0<\\/li>\\n<li>Fix some PHP 8.1 deprecations #949 #985<\\/li>\\n<li>Fix a fatal error in PHP 8.1 #987<\\/li>\\n<li>Fix category feed not redirected when the langage code is wrong #887<\\/li>\\n<li>Fix default category not created for secondary languages (introduced in 3.1) #997<\\/li>\\n<li>Fix parent page when the parent post type is not translatable #1001<\\/li>\\n<li>Fix the Yoast SEO breadcrumb when it includes a non-synchronized taxonomy #1005<\\/li>\\n<li>Fix a PHP Notice when adding a new language and Yoast SEO is active #979<\\/li>\\n<li>Fix a PHP warning in Yoast SEO compatibility #954<\\/li>\\n<\\/ul>\\n<p>See <a href=\\\"https:\\/\\/plugins.svn.wordpress.org\\/polylang\\/trunk\\/changelog.txt\\\">changelog.txt<\\/a> for older changelog<\\/p>\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"icons\":{\"1x\":\"https:\\/\\/polylang.pro\\/wp-content\\/uploads\\/edd\\/2016\\/04\\/polylang-pro.png\",\"2x\":\"https:\\/\\/polylang.pro\\/wp-content\\/uploads\\/edd\\/2016\\/04\\/polylang-pro.png\"},\"msg\":\"No license key has been provided.\",\"stable_tag\":\"3.2.5\",\"tested\":\"6.0\",\"description\":[\"<p>Polylang Pro offers all the awesomeness of Polylang plus extra features and Premium support.<\\/p>\\n\"],\"changelog\":[\"<h4> 3.2.5 (2022-06-28) <\\/h4>\\n<ul>\\n<li>Pro: Fix creation of WC product categories with shared slug via REST API<\\/li>\\n<li>Pro: Fix conflict with WooBuilder when editing a WC product<\\/li>\\n<li>Fix: Force empty string translation to empty string #1058<\\/li>\\n<li>Fix CSS conflict with Dynamic content for Elementor #1060<\\/li>\\n<\\/ul>\\n<h4> 3.2.4 (2022-06-07) <\\/h4>\\n<ul>\\n<li>Pro: Remove "Navigation menus" from the post type settings list<\\/li>\\n<li>Pro: Fix block editor languages panel missing in WordPress 5.6<\\/li>\\n<li>Pro: Fix wrongly indexed languages list returned by REST API when the first language is deactivated.<\\/li>\\n<li>Revert fix for category feed not redirected when the language code is wrong #1054<\\/li>\\n<li>Fix wrong redirect of category when the url includes a query string #1048<\\/li>\\n<li>Fix querying multiple categories failing<\\/li>\\n<\\/ul>\\n<h4> 3.2.3 (2022-05-17) <\\/h4>\\n<ul>\\n<li>Pro: Fix a fatal error when inserting a term<\\/li>\\n<li>Pro: Fix translation of the block cover when duplicating a post<\\/li>\\n<li>Pro: Fix a CSS issue in bulk tranlate form introduced by WP 6.0<\\/li>\\n<li>Pro: Fix a CSS issue in string import\\/export metaboxes.<\\/li>\\n<li>Prevent random languages order in WP 6.0 #1041<\\/li>\\n<li>Translate site title in retrieve password email #1042<\\/li>\\n<li>Fix \'lang\' attribute in language widget dropdown #1039<\\/li>\\n<\\/ul>\\n<h4> 3.2.2 (2022-04-25) <\\/h4>\\n<ul>\\n<li>Pro: Fix redirect occuring for tags sharing the same slug as their translations<\\/li>\\n<li>Fix quick edit allowing to modify the language of the default category when it should not #1018<\\/li>\\n<\\/ul>\\n<h4> 3.2.1 (2022-04-14) <\\/h4>\\n<ul>\\n<li>Pro: Fix users with editor role not able to save or publish posts<\\/li>\\n<li>Pro: Fix FSE compatibility not loaded when the plugin G\\u00fctenberg is active<\\/li>\\n<li>Pro: Fix a fatal error occuring with Yoast SEO Premium<\\/li>\\n<li>Pro: Fix a fatal error with ACF when no language is defined<\\/li>\\n<\\/ul>\\n<h4> 3.2 (2022-04-12) <\\/h4>\\n<ul>\\n<li>Requires WP 5.6 as minimum version<\\/li>\\n<li>Pro: Add compatibility with the full site editing introduced in WP 5.9<\\/li>\\n<li>Pro: Add a language switcher block for the navigation block introduced in WP 5.9<\\/li>\\n<li>Pro: Add compatibility with the new gallery block introduced in WP 5.9<\\/li>\\n<li>Pro: Make the language switcher block available in the widget section of the customizer<\\/li>\\n<li>Pro: Fix wrong category when translating the latest posts block<\\/li>\\n<li>Pro: Fix the language switcher block when using the dropdown option<\\/li>\\n<li>Pro: Fix some edge cases with locale fallback<\\/li>\\n<li>Pro: Fix post template replacing the post content when duplicating a post<\\/li>\\n<li>Pro: Fix synchronization groups not correctly cleaned up when a language is deleted<\\/li>\\n<li>Pro: Fix incorrect sticky property when duplicating \\/ synchronizing posts<\\/li>\\n<li>Pro: Fix "Page for posts" label after the page has been bulk translated<\\/li>\\n<li>Pro: Fix translated slug when the url includes a query string<\\/li>\\n<li>Pro: Synchronize ACF layout fields if a child field is synchronized or translatable<\\/li>\\n<li>Pro: Fix wrong field group translation displayed when using object cache with ACF<\\/li>\\n<li>Update plugin updater to 1.9.1<\\/li>\\n<li>Add compatibility with the block site title introduced in WP 5.9<\\/li>\\n<li>Add the list of wpml-config.xml files in the site health information<\\/li>\\n<li>Improve the performance of the get_pages() filter #980<\\/li>\\n<li>Improve the compatibility of \'wpml_object_id\' with the original filter #972<\\/li>\\n<li>Prevent term_exists to be filtered by language in WP 6.0<\\/li>\\n<li>Fix some PHP 8.1 deprecations #949 #985<\\/li>\\n<li>Fix a fatal error in PHP 8.1 #987<\\/li>\\n<li>Fix category feed not redirected when the langage code is wrong #887<\\/li>\\n<li>Fix default category not created for secondary languages (introduced in 3.1) #997<\\/li>\\n<li>Fix parent page when the parent post type is not translatable #1001<\\/li>\\n<li>Fix the Yoast SEO breadcrumb when it includes a non-synchronized taxonomy #1005<\\/li>\\n<li>Fix a PHP Notice when adding a new language and Yoast SEO is active #979<\\/li>\\n<li>Fix a PHP warning in Yoast SEO compatibility #954<\\/li>\\n<\\/ul>\\n<p>See <a href=\\\"https:\\/\\/plugins.svn.wordpress.org\\/polylang\\/trunk\\/changelog.txt\\\">changelog.txt<\\/a> for older changelog<\\/p>\"],\"plugin\":\"polylang-pro\\/polylang.php\",\"id\":\"polylang-pro\\/polylang.php\"}\";}','no'),(2132,'edd_sl_c62e70bb6744350b8a464cc637f1e392','a:2:{s:7:\"timeout\";i:1660485017;s:5:\"value\";s:10068:\"{\"new_version\":\"3.2.5\",\"stable_version\":\"3.2.5\",\"name\":\"Polylang Pro\",\"slug\":\"polylang\",\"url\":\"https:\\/\\/polylang.pro\\/downloads\\/polylang-pro\\/?changelog=1\",\"last_updated\":\"2022-06-28 07:36:59\",\"homepage\":\"https:\\/\\/polylang.pro\\/downloads\\/polylang-pro\\/\",\"package\":\"https:\\/\\/polylang.pro\\/edd-sl\\/package_download\\/MTY2MDczMzQxNzplODM2MzJkNDkzODcyOTM1MmIzZTRmYjVhOTY5NTE3NzoxNzQyOjExMTNkOTZmMDhhZjUxZDNmNzVhZGFmNDEwNzJhMmYwOmh0dHBALy9ob21lLmFkZWYueHl6OjA=\",\"download_link\":\"https:\\/\\/polylang.pro\\/edd-sl\\/package_download\\/MTY2MDczMzQxNzplODM2MzJkNDkzODcyOTM1MmIzZTRmYjVhOTY5NTE3NzoxNzQyOjExMTNkOTZmMDhhZjUxZDNmNzVhZGFmNDEwNzJhMmYwOmh0dHBALy9ob21lLmFkZWYueHl6OjA=\",\"sections\":{\"description\":\"<p>Polylang Pro offers all the awesomeness of Polylang plus extra features and Premium support.<\\/p>\\n\",\"changelog\":\"<h4> 3.2.5 (2022-06-28) <\\/h4>\\n<ul>\\n<li>Pro: Fix creation of WC product categories with shared slug via REST API<\\/li>\\n<li>Pro: Fix conflict with WooBuilder when editing a WC product<\\/li>\\n<li>Fix: Force empty string translation to empty string #1058<\\/li>\\n<li>Fix CSS conflict with Dynamic content for Elementor #1060<\\/li>\\n<\\/ul>\\n<h4> 3.2.4 (2022-06-07) <\\/h4>\\n<ul>\\n<li>Pro: Remove "Navigation menus" from the post type settings list<\\/li>\\n<li>Pro: Fix block editor languages panel missing in WordPress 5.6<\\/li>\\n<li>Pro: Fix wrongly indexed languages list returned by REST API when the first language is deactivated.<\\/li>\\n<li>Revert fix for category feed not redirected when the language code is wrong #1054<\\/li>\\n<li>Fix wrong redirect of category when the url includes a query string #1048<\\/li>\\n<li>Fix querying multiple categories failing<\\/li>\\n<\\/ul>\\n<h4> 3.2.3 (2022-05-17) <\\/h4>\\n<ul>\\n<li>Pro: Fix a fatal error when inserting a term<\\/li>\\n<li>Pro: Fix translation of the block cover when duplicating a post<\\/li>\\n<li>Pro: Fix a CSS issue in bulk tranlate form introduced by WP 6.0<\\/li>\\n<li>Pro: Fix a CSS issue in string import\\/export metaboxes.<\\/li>\\n<li>Prevent random languages order in WP 6.0 #1041<\\/li>\\n<li>Translate site title in retrieve password email #1042<\\/li>\\n<li>Fix \'lang\' attribute in language widget dropdown #1039<\\/li>\\n<\\/ul>\\n<h4> 3.2.2 (2022-04-25) <\\/h4>\\n<ul>\\n<li>Pro: Fix redirect occuring for tags sharing the same slug as their translations<\\/li>\\n<li>Fix quick edit allowing to modify the language of the default category when it should not #1018<\\/li>\\n<\\/ul>\\n<h4> 3.2.1 (2022-04-14) <\\/h4>\\n<ul>\\n<li>Pro: Fix users with editor role not able to save or publish posts<\\/li>\\n<li>Pro: Fix FSE compatibility not loaded when the plugin G\\u00fctenberg is active<\\/li>\\n<li>Pro: Fix a fatal error occuring with Yoast SEO Premium<\\/li>\\n<li>Pro: Fix a fatal error with ACF when no language is defined<\\/li>\\n<\\/ul>\\n<h4> 3.2 (2022-04-12) <\\/h4>\\n<ul>\\n<li>Requires WP 5.6 as minimum version<\\/li>\\n<li>Pro: Add compatibility with the full site editing introduced in WP 5.9<\\/li>\\n<li>Pro: Add a language switcher block for the navigation block introduced in WP 5.9<\\/li>\\n<li>Pro: Add compatibility with the new gallery block introduced in WP 5.9<\\/li>\\n<li>Pro: Make the language switcher block available in the widget section of the customizer<\\/li>\\n<li>Pro: Fix wrong category when translating the latest posts block<\\/li>\\n<li>Pro: Fix the language switcher block when using the dropdown option<\\/li>\\n<li>Pro: Fix some edge cases with locale fallback<\\/li>\\n<li>Pro: Fix post template replacing the post content when duplicating a post<\\/li>\\n<li>Pro: Fix synchronization groups not correctly cleaned up when a language is deleted<\\/li>\\n<li>Pro: Fix incorrect sticky property when duplicating \\/ synchronizing posts<\\/li>\\n<li>Pro: Fix "Page for posts" label after the page has been bulk translated<\\/li>\\n<li>Pro: Fix translated slug when the url includes a query string<\\/li>\\n<li>Pro: Synchronize ACF layout fields if a child field is synchronized or translatable<\\/li>\\n<li>Pro: Fix wrong field group translation displayed when using object cache with ACF<\\/li>\\n<li>Update plugin updater to 1.9.1<\\/li>\\n<li>Add compatibility with the block site title introduced in WP 5.9<\\/li>\\n<li>Add the list of wpml-config.xml files in the site health information<\\/li>\\n<li>Improve the performance of the get_pages() filter #980<\\/li>\\n<li>Improve the compatibility of \'wpml_object_id\' with the original filter #972<\\/li>\\n<li>Prevent term_exists to be filtered by language in WP 6.0<\\/li>\\n<li>Fix some PHP 8.1 deprecations #949 #985<\\/li>\\n<li>Fix a fatal error in PHP 8.1 #987<\\/li>\\n<li>Fix category feed not redirected when the langage code is wrong #887<\\/li>\\n<li>Fix default category not created for secondary languages (introduced in 3.1) #997<\\/li>\\n<li>Fix parent page when the parent post type is not translatable #1001<\\/li>\\n<li>Fix the Yoast SEO breadcrumb when it includes a non-synchronized taxonomy #1005<\\/li>\\n<li>Fix a PHP Notice when adding a new language and Yoast SEO is active #979<\\/li>\\n<li>Fix a PHP warning in Yoast SEO compatibility #954<\\/li>\\n<\\/ul>\\n<p>See <a href=\\\"https:\\/\\/plugins.svn.wordpress.org\\/polylang\\/trunk\\/changelog.txt\\\">changelog.txt<\\/a> for older changelog<\\/p>\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"icons\":{\"1x\":\"https:\\/\\/polylang.pro\\/wp-content\\/uploads\\/edd\\/2016\\/04\\/polylang-pro.png\",\"2x\":\"https:\\/\\/polylang.pro\\/wp-content\\/uploads\\/edd\\/2016\\/04\\/polylang-pro.png\"},\"stable_tag\":\"3.2.5\",\"tested\":\"6.0\",\"description\":[\"<p>Polylang Pro offers all the awesomeness of Polylang plus extra features and Premium support.<\\/p>\\n\"],\"changelog\":[\"<h4> 3.2.5 (2022-06-28) <\\/h4>\\n<ul>\\n<li>Pro: Fix creation of WC product categories with shared slug via REST API<\\/li>\\n<li>Pro: Fix conflict with WooBuilder when editing a WC product<\\/li>\\n<li>Fix: Force empty string translation to empty string #1058<\\/li>\\n<li>Fix CSS conflict with Dynamic content for Elementor #1060<\\/li>\\n<\\/ul>\\n<h4> 3.2.4 (2022-06-07) <\\/h4>\\n<ul>\\n<li>Pro: Remove "Navigation menus" from the post type settings list<\\/li>\\n<li>Pro: Fix block editor languages panel missing in WordPress 5.6<\\/li>\\n<li>Pro: Fix wrongly indexed languages list returned by REST API when the first language is deactivated.<\\/li>\\n<li>Revert fix for category feed not redirected when the language code is wrong #1054<\\/li>\\n<li>Fix wrong redirect of category when the url includes a query string #1048<\\/li>\\n<li>Fix querying multiple categories failing<\\/li>\\n<\\/ul>\\n<h4> 3.2.3 (2022-05-17) <\\/h4>\\n<ul>\\n<li>Pro: Fix a fatal error when inserting a term<\\/li>\\n<li>Pro: Fix translation of the block cover when duplicating a post<\\/li>\\n<li>Pro: Fix a CSS issue in bulk tranlate form introduced by WP 6.0<\\/li>\\n<li>Pro: Fix a CSS issue in string import\\/export metaboxes.<\\/li>\\n<li>Prevent random languages order in WP 6.0 #1041<\\/li>\\n<li>Translate site title in retrieve password email #1042<\\/li>\\n<li>Fix \'lang\' attribute in language widget dropdown #1039<\\/li>\\n<\\/ul>\\n<h4> 3.2.2 (2022-04-25) <\\/h4>\\n<ul>\\n<li>Pro: Fix redirect occuring for tags sharing the same slug as their translations<\\/li>\\n<li>Fix quick edit allowing to modify the language of the default category when it should not #1018<\\/li>\\n<\\/ul>\\n<h4> 3.2.1 (2022-04-14) <\\/h4>\\n<ul>\\n<li>Pro: Fix users with editor role not able to save or publish posts<\\/li>\\n<li>Pro: Fix FSE compatibility not loaded when the plugin G\\u00fctenberg is active<\\/li>\\n<li>Pro: Fix a fatal error occuring with Yoast SEO Premium<\\/li>\\n<li>Pro: Fix a fatal error with ACF when no language is defined<\\/li>\\n<\\/ul>\\n<h4> 3.2 (2022-04-12) <\\/h4>\\n<ul>\\n<li>Requires WP 5.6 as minimum version<\\/li>\\n<li>Pro: Add compatibility with the full site editing introduced in WP 5.9<\\/li>\\n<li>Pro: Add a language switcher block for the navigation block introduced in WP 5.9<\\/li>\\n<li>Pro: Add compatibility with the new gallery block introduced in WP 5.9<\\/li>\\n<li>Pro: Make the language switcher block available in the widget section of the customizer<\\/li>\\n<li>Pro: Fix wrong category when translating the latest posts block<\\/li>\\n<li>Pro: Fix the language switcher block when using the dropdown option<\\/li>\\n<li>Pro: Fix some edge cases with locale fallback<\\/li>\\n<li>Pro: Fix post template replacing the post content when duplicating a post<\\/li>\\n<li>Pro: Fix synchronization groups not correctly cleaned up when a language is deleted<\\/li>\\n<li>Pro: Fix incorrect sticky property when duplicating \\/ synchronizing posts<\\/li>\\n<li>Pro: Fix "Page for posts" label after the page has been bulk translated<\\/li>\\n<li>Pro: Fix translated slug when the url includes a query string<\\/li>\\n<li>Pro: Synchronize ACF layout fields if a child field is synchronized or translatable<\\/li>\\n<li>Pro: Fix wrong field group translation displayed when using object cache with ACF<\\/li>\\n<li>Update plugin updater to 1.9.1<\\/li>\\n<li>Add compatibility with the block site title introduced in WP 5.9<\\/li>\\n<li>Add the list of wpml-config.xml files in the site health information<\\/li>\\n<li>Improve the performance of the get_pages() filter #980<\\/li>\\n<li>Improve the compatibility of \'wpml_object_id\' with the original filter #972<\\/li>\\n<li>Prevent term_exists to be filtered by language in WP 6.0<\\/li>\\n<li>Fix some PHP 8.1 deprecations #949 #985<\\/li>\\n<li>Fix a fatal error in PHP 8.1 #987<\\/li>\\n<li>Fix category feed not redirected when the langage code is wrong #887<\\/li>\\n<li>Fix default category not created for secondary languages (introduced in 3.1) #997<\\/li>\\n<li>Fix parent page when the parent post type is not translatable #1001<\\/li>\\n<li>Fix the Yoast SEO breadcrumb when it includes a non-synchronized taxonomy #1005<\\/li>\\n<li>Fix a PHP Notice when adding a new language and Yoast SEO is active #979<\\/li>\\n<li>Fix a PHP warning in Yoast SEO compatibility #954<\\/li>\\n<\\/ul>\\n<p>See <a href=\\\"https:\\/\\/plugins.svn.wordpress.org\\/polylang\\/trunk\\/changelog.txt\\\">changelog.txt<\\/a> for older changelog<\\/p>\"],\"plugin\":\"polylang-pro\\/polylang.php\",\"id\":\"polylang-pro\\/polylang.php\"}\";}','no'),(3352,'job_listing_type_children','a:0:{}','yes'),(3715,'rewrite_rules','a:146:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:17:\"jm-ajax/([^/]*)/?\";s:29:\"index.php?jm-ajax=$matches[1]\";s:27:\"index.php/jm-ajax/([^/]*)/?\";s:29:\"index.php?jm-ajax=$matches[1]\";s:56:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:51:\"category/(.+?)/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:53:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:48:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:54:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:49:\"type/([^/]+)/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:31:\"job/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"job/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"job/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"job/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"job/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"job/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:20:\"job/([^/]+)/embed/?$\";s:44:\"index.php?job_listing=$matches[1]&embed=true\";s:24:\"job/([^/]+)/trackback/?$\";s:38:\"index.php?job_listing=$matches[1]&tb=1\";s:32:\"job/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?job_listing=$matches[1]&paged=$matches[2]\";s:39:\"job/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?job_listing=$matches[1]&cpage=$matches[2]\";s:28:\"job/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?job_listing=$matches[1]&page=$matches[2]\";s:20:\"job/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:30:\"job/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"job/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"job/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\"job/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:26:\"job/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"space/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"space/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"space/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"space/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"space/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"space/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"space/([^/]+)/embed/?$\";s:38:\"index.php?space=$matches[1]&embed=true\";s:26:\"space/([^/]+)/trackback/?$\";s:32:\"index.php?space=$matches[1]&tb=1\";s:34:\"space/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?space=$matches[1]&paged=$matches[2]\";s:41:\"space/([^/]+)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?space=$matches[1]&cpage=$matches[2]\";s:30:\"space/([^/]+)(?:/([0-9]+))?/?$\";s:44:\"index.php?space=$matches[1]&page=$matches[2]\";s:22:\"space/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"space/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"space/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"space/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"space/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"space/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"platform/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"platform/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:75:\"platform/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"platform/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"platform/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"platform/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"platform/([^/]+)/embed/?$\";s:41:\"index.php?platform=$matches[1]&embed=true\";s:29:\"platform/([^/]+)/trackback/?$\";s:35:\"index.php?platform=$matches[1]&tb=1\";s:37:\"platform/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?platform=$matches[1]&paged=$matches[2]\";s:44:\"platform/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?platform=$matches[1]&cpage=$matches[2]\";s:33:\"platform/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?platform=$matches[1]&page=$matches[2]\";s:25:\"platform/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"platform/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"platform/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"platform/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"platform/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"platform/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:41:\"feed/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:36:\"(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:50:\"comments/feed/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:45:\"comments/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:53:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:48:\"search/(.+)/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:56:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:51:\"author/([^/]+)/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:78:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:73:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:65:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:60:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:52:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:47:\"([0-9]{4})/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:49:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:44:\"(.?.+?)/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:49:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:44:\"([^/]+)/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|job_feed)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(3835,'easy-image-gallery','a:2:{s:8:\"lightbox\";s:11:\"prettyphoto\";s:10:\"post_types\";a:3:{s:4:\"post\";s:2:\"on\";s:4:\"page\";s:2:\"on\";s:5:\"space\";s:2:\"on\";}}','yes'),(4271,'wpcf7','a:2:{s:7:\"version\";s:5:\"5.6.2\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1660474224;s:7:\"version\";s:5:\"5.6.2\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(7919,'auto_core_update_failed','a:6:{s:9:\"attempted\";s:5:\"6.0.2\";s:7:\"current\";s:5:\"6.0.1\";s:10:\"error_code\";s:32:\"copy_failed_for_update_core_file\";s:10:\"error_data\";s:33:\"wp-admin/includes/update-core.php\";s:9:\"timestamp\";i:1661895672;s:5:\"retry\";b:0;}','no'),(7920,'auto_core_update_notified','a:4:{s:4:\"type\";s:4:\"fail\";s:5:\"email\";s:21:\"[email protected]\";s:7:\"version\";s:5:\"6.0.2\";s:9:\"timestamp\";i:1661895672;}','no'),(10218,'_transient_pll_languages_list','a:2:{i:0;a:25:{s:7:\"term_id\";i:13;s:4:\"name\";s:2:\"ع\";s:4:\"slug\";s:2:\"ar\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:13;s:5:\"count\";i:10;s:10:\"tl_term_id\";i:14;s:19:\"tl_term_taxonomy_id\";i:14;s:8:\"tl_count\";i:9;s:6:\"locale\";s:5:\"ar_EG\";s:6:\"is_rtl\";i:1;s:3:\"w3c\";s:5:\"ar-EG\";s:8:\"facebook\";N;s:8:\"home_url\";s:28:\"http://home.adef.xyz/arabic/\";s:10:\"search_url\";s:28:\"http://home.adef.xyz/arabic/\";s:4:\"host\";N;s:5:\"mo_id\";s:2:\"52\";s:13:\"page_on_front\";N;s:14:\"page_for_posts\";N;s:9:\"flag_code\";s:2:\"eg\";s:8:\"flag_url\";s:91:\"https://home.adef.xyz/wp-content/plugins/polylang-pro/vendor/wpsyntex/polylang/flags/eg.png\";s:4:\"flag\";s:459:\"<img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAALCAIAAAD5gJpuAAAA0UlEQVR4AWN4y8DwCht6jISuIxBY7kt1DQR9Li6BoA9ZWUD0KSEBiD6GhwPROx8fIEJogEkg5N7Z2UHQG11dCIJqALJ+LF36rb8fiL52dEAQyIg9ZUAS2UIgF6ThLwb4+fPHh0cTPz2s+vr1K5D9FQk8f/4ciwag0pe32oAkSA8qePr0KQOm8RANQIRdg5aW1sKFCztgoKamFogenE0GopycXAhKTEwCIqA4AwQAOY5gYAIGQCMUwIAfFQDFERqAKAgGHGHABAa0wEBdXZ2BDAAA0TQJcCf938gAAAAASUVORK5CYII=\" alt=\"ع\" width=\"16\" height=\"11\" style=\"width: 16px; height: 11px;\" />\";s:15:\"custom_flag_url\";N;s:11:\"custom_flag\";N;s:9:\"fallbacks\";a:0:{}}i:1;a:25:{s:7:\"term_id\";i:24;s:4:\"name\";s:2:\"En\";s:4:\"slug\";s:2:\"en\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:24;s:5:\"count\";i:40;s:10:\"tl_term_id\";i:25;s:19:\"tl_term_taxonomy_id\";i:25;s:8:\"tl_count\";i:1;s:6:\"locale\";s:5:\"en_US\";s:6:\"is_rtl\";i:0;s:3:\"w3c\";s:5:\"en-US\";s:8:\"facebook\";s:5:\"en_US\";s:8:\"home_url\";s:21:\"http://home.adef.xyz/\";s:10:\"search_url\";s:21:\"http://home.adef.xyz/\";s:4:\"host\";N;s:5:\"mo_id\";s:2:\"53\";s:13:\"page_on_front\";N;s:14:\"page_for_posts\";N;s:9:\"flag_code\";s:2:\"us\";s:8:\"flag_url\";s:91:\"https://home.adef.xyz/wp-content/plugins/polylang-pro/vendor/wpsyntex/polylang/flags/us.png\";s:4:\"flag\";s:571:\"<img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAALCAMAAABBPP0LAAAAmVBMVEViZsViZMJiYrf9gnL8eWrlYkjgYkjZYkj8/PujwPybvPz4+PetraBEgfo+fvo3efkydfkqcvj8Y2T8UlL8Q0P8MzP9k4Hz8/Lu7u4DdPj9/VrKysI9fPoDc/EAZ7z7IiLHYkjp6ekCcOTk5OIASbfY/v21takAJrT5Dg6sYkjc3Nn94t2RkYD+y8KeYkjs/v7l5fz0dF22YkjWvcOLAAAAgElEQVR4AR2KNULFQBgGZ5J13KGGKvc/Cw1uPe62eb9+Jr1EUBFHSgxxjP2Eca6AfUSfVlUfBvm1Ui1bqafctqMndNkXpb01h5TLx4b6TIXgwOCHfjv+/Pz+5vPRw7txGWT2h6yO0/GaYltIp5PT1dEpLNPL/SdWjYjAAZtvRPgHJX4Xio+DSrkAAAAASUVORK5CYII=\" alt=\"En\" width=\"16\" height=\"11\" style=\"width: 16px; height: 11px;\" />\";s:15:\"custom_flag_url\";N;s:11:\"custom_flag\";N;s:9:\"fallbacks\";a:0:{}}}','yes'),(11049,'_site_transient_timeout_php_check_9236ad8f2e178e4ce7b4ef5302b7fae9','1663840803','no'),(11050,'_site_transient_php_check_9236ad8f2e178e4ce7b4ef5302b7fae9','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(11972,'_site_transient_t15s-registry-plugins','O:8:\"stdClass\":2:{s:12:\"polylang-pro\";a:1:{s:12:\"translations\";a:11:{i:0;a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:9:\"3.2-beta1\";s:7:\"updated\";s:25:\"2022-04-01T06:50:27+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:81:\"https://packages.translationspress.com/wp-syntex/polylang-pro/polylang-pro-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}i:1;a:7:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:9:\"3.2-beta1\";s:7:\"updated\";s:25:\"2022-03-26T20:03:16+00:00\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:84:\"https://packages.translationspress.com/wp-syntex/polylang-pro/polylang-pro-cs_CZ.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"cs\";i:1;s:3:\"ces\";}}i:2;a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:9:\"3.2-beta1\";s:7:\"updated\";s:25:\"2022-04-01T06:15:50+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:84:\"https://packages.translationspress.com/wp-syntex/polylang-pro/polylang-pro-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}i:3;a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:9:\"3.2-beta1\";s:7:\"updated\";s:25:\"2022-03-28T17:37:00+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:84:\"https://packages.translationspress.com/wp-syntex/polylang-pro/polylang-pro-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}i:4;a:7:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:9:\"3.2-beta1\";s:7:\"updated\";s:25:\"2022-03-25T20:42:51+00:00\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:81:\"https://packages.translationspress.com/wp-syntex/polylang-pro/polylang-pro-el.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"el\";i:1;s:3:\"ell\";}}i:5;a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:9:\"3.2-beta1\";s:7:\"updated\";s:25:\"2022-04-04T07:05:25+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:84:\"https://packages.translationspress.com/wp-syntex/polylang-pro/polylang-pro-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}i:6;a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:9:\"3.2-beta1\";s:7:\"updated\";s:25:\"2022-04-04T05:05:26+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:81:\"https://packages.translationspress.com/wp-syntex/polylang-pro/polylang-pro-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}i:7;a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:9:\"3.2-beta1\";s:7:\"updated\";s:25:\"2022-04-01T12:29:54+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:84:\"https://packages.translationspress.com/wp-syntex/polylang-pro/polylang-pro-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}i:8;a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:9:\"3.2-beta1\";s:7:\"updated\";s:25:\"2022-03-31T07:46:20+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:84:\"https://packages.translationspress.com/wp-syntex/polylang-pro/polylang-pro-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}i:9;a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:9:\"3.2-beta1\";s:7:\"updated\";s:25:\"2022-03-28T18:18:54+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:84:\"https://packages.translationspress.com/wp-syntex/polylang-pro/polylang-pro-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}i:10;a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:9:\"3.2-beta1\";s:7:\"updated\";s:25:\"2022-03-26T18:53:11+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:81:\"https://packages.translationspress.com/wp-syntex/polylang-pro/polylang-pro-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:13:\"_last_checked\";i:1663666758;}','no'),(11973,'_site_transient_timeout_theme_roots','1663668558','no'),(11974,'_site_transient_theme_roots','a:4:{s:4:\"adef\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(11975,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1663666759;s:8:\"response\";a:4:{s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.6.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.6.3.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696\";s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";s:6:\"tested\";s:5:\"6.0.2\";s:12:\"requires_php\";b:0;}s:43:\"custom-post-type-ui/custom-post-type-ui.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:33:\"w.org/plugins/custom-post-type-ui\";s:4:\"slug\";s:19:\"custom-post-type-ui\";s:6:\"plugin\";s:43:\"custom-post-type-ui/custom-post-type-ui.php\";s:11:\"new_version\";s:6:\"1.13.1\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/custom-post-type-ui/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/custom-post-type-ui.1.13.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/custom-post-type-ui/assets/icon-256x256.png?rev=2744389\";s:2:\"1x\";s:72:\"https://ps.w.org/custom-post-type-ui/assets/icon-128x128.png?rev=2744389\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/custom-post-type-ui/assets/banner-1544x500.png?rev=2744389\";s:2:\"1x\";s:74:\"https://ps.w.org/custom-post-type-ui/assets/banner-772x250.png?rev=2744389\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";s:6:\"tested\";s:5:\"6.0.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:21:\"polylang/polylang.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:22:\"w.org/plugins/polylang\";s:4:\"slug\";s:8:\"polylang\";s:6:\"plugin\";s:21:\"polylang/polylang.php\";s:11:\"new_version\";s:5:\"3.2.7\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/polylang/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/polylang.3.2.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:61:\"https://ps.w.org/polylang/assets/icon-256x256.png?rev=1331499\";s:2:\"1x\";s:61:\"https://ps.w.org/polylang/assets/icon-128x128.png?rev=1331499\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/polylang/assets/banner-1544x500.png?rev=1405299\";s:2:\"1x\";s:63:\"https://ps.w.org/polylang/assets/banner-772x250.png?rev=1405299\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.6\";s:6:\"tested\";s:5:\"6.0.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:33:\"wp-job-manager/wp-job-manager.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/wp-job-manager\";s:4:\"slug\";s:14:\"wp-job-manager\";s:6:\"plugin\";s:33:\"wp-job-manager/wp-job-manager.php\";s:11:\"new_version\";s:6:\"1.38.0\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/wp-job-manager/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/wp-job-manager.1.38.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/wp-job-manager/assets/icon-256x256.png?rev=1035478\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-job-manager/assets/icon-128x128.png?rev=1035478\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/wp-job-manager/assets/banner-772x250.png?rev=1035478\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:5:\"6.0.2\";s:12:\"requires_php\";s:3:\"7.2\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:6:{s:30:\"advanced-custom-fields/acf.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:36:\"w.org/plugins/advanced-custom-fields\";s:4:\"slug\";s:22:\"advanced-custom-fields\";s:6:\"plugin\";s:30:\"advanced-custom-fields/acf.php\";s:11:\"new_version\";s:6:\"5.12.3\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/advanced-custom-fields/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/advanced-custom-fields.5.12.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/advanced-custom-fields/assets/icon-256x256.png?rev=1082746\";s:2:\"1x\";s:75:\"https://ps.w.org/advanced-custom-fields/assets/icon-128x128.png?rev=1082746\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=1729099\";s:2:\"1x\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=1729102\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";}s:41:\"easy-image-gallery/easy-image-gallery.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:32:\"w.org/plugins/easy-image-gallery\";s:4:\"slug\";s:18:\"easy-image-gallery\";s:6:\"plugin\";s:41:\"easy-image-gallery/easy-image-gallery.php\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/easy-image-gallery/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/easy-image-gallery.1.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/easy-image-gallery/assets/icon-256x256.png?rev=2235126\";s:2:\"1x\";s:71:\"https://ps.w.org/easy-image-gallery/assets/icon-128x128.png?rev=2235126\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/easy-image-gallery/assets/banner-1544x500.png?rev=2235126\";s:2:\"1x\";s:73:\"https://ps.w.org/easy-image-gallery/assets/banner-772x250.png?rev=2235126\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.5\";}s:23:\"loco-translate/loco.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/loco-translate\";s:4:\"slug\";s:14:\"loco-translate\";s:6:\"plugin\";s:23:\"loco-translate/loco.php\";s:11:\"new_version\";s:5:\"2.6.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/loco-translate/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/loco-translate.2.6.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/loco-translate/assets/icon-256x256.png?rev=1000676\";s:2:\"1x\";s:67:\"https://ps.w.org/loco-translate/assets/icon-128x128.png?rev=1000676\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/loco-translate/assets/banner-772x250.jpg?rev=745046\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}s:43:\"preferred-languages/preferred-languages.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:33:\"w.org/plugins/preferred-languages\";s:4:\"slug\";s:19:\"preferred-languages\";s:6:\"plugin\";s:43:\"preferred-languages/preferred-languages.php\";s:11:\"new_version\";s:5:\"1.8.0\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/preferred-languages/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/preferred-languages.1.8.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:64:\"https://ps.w.org/preferred-languages/assets/icon.svg?rev=1742586\";s:3:\"svg\";s:64:\"https://ps.w.org/preferred-languages/assets/icon.svg?rev=1742586\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";}s:25:\"rtl-tester/rtl-tester.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"w.org/plugins/rtl-tester\";s:4:\"slug\";s:10:\"rtl-tester\";s:6:\"plugin\";s:25:\"rtl-tester/rtl-tester.php\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/rtl-tester/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/rtl-tester.1.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/rtl-tester/assets/icon-256x256.png?rev=978435\";s:2:\"1x\";s:62:\"https://ps.w.org/rtl-tester/assets/icon-128x128.png?rev=978435\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:64:\"https://ps.w.org/rtl-tester/assets/banner-772x250.jpg?rev=549688\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";}s:30:\"wp-rest-menu/wp-rest-menus.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/wp-rest-menu\";s:4:\"slug\";s:12:\"wp-rest-menu\";s:6:\"plugin\";s:30:\"wp-rest-menu/wp-rest-menus.php\";s:11:\"new_version\";s:5:\"1.0.4\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-rest-menu/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-rest-menu.1.0.4.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/wp-rest-menu/assets/icon-128x128.png?rev=2678036\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/wp-rest-menu/assets/banner-772x250.png?rev=2678035\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}}s:7:\"checked\";a:12:{s:30:\"advanced-custom-fields/acf.php\";s:6:\"5.12.3\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.6.2\";s:33:\"cf7-to-api/contact-form-7-api.php\";s:5:\"1.2.0\";s:43:\"custom-post-type-ui/custom-post-type-ui.php\";s:6:\"1.12.1\";s:41:\"easy-image-gallery/easy-image-gallery.php\";s:3:\"1.5\";s:23:\"loco-translate/loco.php\";s:5:\"2.6.2\";s:21:\"polylang/polylang.php\";s:5:\"3.2.5\";s:25:\"polylang-pro/polylang.php\";s:5:\"3.2.5\";s:43:\"preferred-languages/preferred-languages.php\";s:5:\"1.8.0\";s:25:\"rtl-tester/rtl-tester.php\";s:3:\"1.2\";s:33:\"wp-job-manager/wp-job-manager.php\";s:6:\"1.37.0\";s:30:\"wp-rest-menu/wp-rest-menus.php\";s:5:\"1.0.4\";}}','no'),(12021,'_transient_timeout_global_styles_adef','1663686641','no'),(12022,'_transient_global_styles_adef','body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url(\'#wp-duotone-dark-grayscale\');--wp--preset--duotone--grayscale: url(\'#wp-duotone-grayscale\');--wp--preset--duotone--purple-yellow: url(\'#wp-duotone-purple-yellow\');--wp--preset--duotone--blue-red: url(\'#wp-duotone-blue-red\');--wp--preset--duotone--midnight: url(\'#wp-duotone-midnight\');--wp--preset--duotone--magenta-yellow: url(\'#wp-duotone-magenta-yellow\');--wp--preset--duotone--purple-green: url(\'#wp-duotone-purple-green\');--wp--preset--duotone--blue-orange: url(\'#wp-duotone-blue-orange\');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=528 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_postmeta`
--
LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (3,6,'_menu_item_type','custom'),(4,6,'_menu_item_menu_item_parent','0'),(5,6,'_menu_item_object_id','6'),(6,6,'_menu_item_object','custom'),(7,6,'_menu_item_target',''),(8,6,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9,6,'_menu_item_xfn',''),(10,6,'_menu_item_url','http://adef.local/'),(11,6,'_menu_item_orphaned','1658934068'),(21,8,'_menu_item_type','custom'),(22,8,'_menu_item_menu_item_parent','0'),(23,8,'_menu_item_object_id','8'),(24,8,'_menu_item_object','custom'),(25,8,'_menu_item_target',''),(26,8,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(27,8,'_menu_item_xfn',''),(28,8,'_menu_item_url','http://adef.local/'),(29,8,'_menu_item_orphaned','1658934071'),(48,11,'_menu_item_type','custom'),(49,11,'_menu_item_menu_item_parent','0'),(50,11,'_menu_item_object_id','11'),(51,11,'_menu_item_object','custom'),(52,11,'_menu_item_target',''),(53,11,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(54,11,'_menu_item_xfn',''),(55,11,'_menu_item_url','http://adef.local/'),(56,11,'_menu_item_orphaned','1658934135'),(75,14,'_menu_item_type','custom'),(76,14,'_menu_item_menu_item_parent','0'),(77,14,'_menu_item_object_id','14'),(78,14,'_menu_item_object','custom'),(79,14,'_menu_item_target',''),(80,14,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(81,14,'_menu_item_xfn',''),(82,14,'_menu_item_url','http://adef.local/'),(83,14,'_menu_item_orphaned','1658934166'),(111,18,'_menu_item_type','taxonomy'),(112,19,'_menu_item_type','taxonomy'),(113,18,'_menu_item_menu_item_parent','0'),(114,19,'_menu_item_menu_item_parent','0'),(115,18,'_menu_item_object_id','1'),(116,19,'_menu_item_object_id','1'),(117,18,'_menu_item_object','category'),(118,19,'_menu_item_object','category'),(119,18,'_menu_item_target',''),(120,19,'_menu_item_target',''),(121,18,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(122,19,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(123,18,'_menu_item_xfn',''),(124,19,'_menu_item_xfn',''),(125,18,'_menu_item_url',''),(126,19,'_menu_item_url',''),(129,20,'_edit_last','1'),(130,20,'_edit_lock','1659028850:1'),(132,24,'_wp_attached_file','2022/07/720x1280_00237_69782.jpg'),(133,24,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:1280;s:4:\"file\";s:32:\"2022/07/720x1280_00237_69782.jpg\";s:8:\"filesize\";i:69782;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(136,26,'_wp_attached_file','2022/07/12289591_764935973613182_1029076709167205969_n.jpg'),(137,26,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:58:\"2022/07/12289591_764935973613182_1029076709167205969_n.jpg\";s:8:\"filesize\";i:45794;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(145,29,'_wp_attached_file','2022/07/ba45cfef85a4b87849c96769ab0dcd13-backgrounds-wallpapers-phone-wallpapers.jpg'),(146,29,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:736;s:6:\"height\";i:1309;s:4:\"file\";s:84:\"2022/07/ba45cfef85a4b87849c96769ab0dcd13-backgrounds-wallpapers-phone-wallpapers.jpg\";s:8:\"filesize\";i:66990;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(154,36,'_edit_lock','1659259431:1'),(155,36,'_edit_last','1'),(156,36,'Deadline','2022-07-12 00:00:00'),(157,36,'_Deadline','field_62e402ec394fa'),(158,38,'_edit_last','1'),(159,38,'_edit_lock','1659891868:1'),(160,41,'_edit_last','1'),(161,41,'_edit_lock','1659260313:1'),(162,41,'Background Color','rgb(164,76,89)'),(163,41,'_Background Color','field_62e64b1722d61'),(164,41,'Foreground Color','#FFFFFF'),(165,41,'_Foreground Color','field_62e64b9022d62'),(166,41,'hyper_link','a:3:{s:5:\"title\";s:6:\"Maf3al\";s:3:\"url\";s:24:\"https://maf3al.adef.xyz/\";s:6:\"target\";s:0:\"\";}'),(167,41,'_hyper_link','field_62e64d46794b6'),(169,44,'_edit_last','1'),(170,44,'_edit_lock','1659281896:1'),(171,44,'Background Color','rgb(50,51,102)'),(172,44,'_Background Color','field_62e64b1722d61'),(173,44,'Foreground Color','rgb(26,106,95)'),(174,44,'_Foreground Color','field_62e64b9022d62'),(175,44,'hyper_link','a:3:{s:5:\"title\";s:6:\"Mal3ab\";s:3:\"url\";s:24:\"https://mal3ab.adef.xyz/\";s:6:\"target\";s:0:\"\";}'),(176,44,'_hyper_link','field_62e64d46794b6'),(177,45,'_filled','0'),(178,45,'_featured','0'),(179,45,'_edit_lock','1659871150:1'),(180,45,'_job_expires','2022-08-28'),(181,45,'_tracked_submitted','1659297446'),(182,45,'_edit_last','1'),(183,45,'_job_location','Cairo'),(184,45,'_application','[email protected]'),(185,45,'_company_name',''),(186,45,'_company_website',''),(187,45,'_company_tagline',''),(188,45,'_company_twitter',''),(189,45,'_company_video',''),(190,45,'_remote_position','1'),(191,45,'_wp_old_date','2022-07-31'),(192,46,'_filled','0'),(193,46,'_featured','0'),(194,46,'_edit_lock','1659298020:1'),(195,46,'_job_expires','2022-08-30'),(196,46,'_tracked_submitted','1659297997'),(197,46,'_edit_last','1'),(198,46,'_job_location','Egypt, Cairo'),(199,46,'_application','[email protected]'),(200,46,'_company_name',''),(201,46,'_company_website',''),(202,46,'_company_tagline',''),(203,46,'_company_twitter',''),(204,46,'_company_video',''),(205,46,'_remote_position','0'),(206,47,'_filled','0'),(207,47,'_featured','0'),(208,47,'_edit_lock','1660240929:1'),(209,47,'_job_expires','2022-08-28'),(210,47,'_tracked_submitted','1659298121'),(211,47,'_edit_last','1'),(212,47,'_job_location','Cairo, Egypt'),(213,47,'_application','[email protected]'),(214,47,'_company_name',''),(215,47,'_company_website',''),(216,47,'_company_tagline',''),(217,47,'_company_twitter',''),(218,47,'_company_video',''),(219,47,'_remote_position','0'),(220,48,'_filled','1'),(221,48,'_featured','0'),(222,48,'_edit_lock','1660241099:1'),(223,48,'_job_expires','2022-08-31'),(224,48,'_tracked_submitted','1659298179'),(225,48,'_edit_last','1'),(226,48,'_job_location',''),(227,48,'_application','https://vuejs.org/api/options-state.html#methods'),(228,48,'_company_name',''),(229,48,'_company_website',''),(230,48,'_company_tagline',''),(231,48,'_company_twitter',''),(232,48,'_company_video',''),(233,48,'_remote_position','1'),(240,52,'_pll_strings_translations','a:4:{i:0;a:2:{i:0;s:41:\"(ADEF) Arab Digital Expression Foundation\";i:1;s:62:\"مؤسسة التعبير الرقمي العربي (أضِف)\";}i:1;a:2:{i:0;s:27:\"Just another WordPress site\";i:1;s:27:\"Just another WordPress site\";}i:2;a:2:{i:0;s:6:\"F j, Y\";i:1;s:6:\"F j, Y\";}i:3;a:2:{i:0;s:5:\"g:i A\";i:1;s:5:\"g:i A\";}}'),(241,53,'_pll_strings_translations','a:4:{i:0;a:2:{i:0;s:41:\"(ADEF) Arab Digital Expression Foundation\";i:1;s:41:\"(ADEF) Arab Digital Expression Foundation\";}i:1;a:2:{i:0;s:27:\"Just another WordPress site\";i:1;s:27:\"Just another WordPress site\";}i:2;a:2:{i:0;s:6:\"F j, Y\";i:1;s:6:\"F j, Y\";}i:3;a:2:{i:0;s:5:\"g:i A\";i:1;s:5:\"g:i A\";}}'),(242,54,'Background Color','rgb(50,51,102)'),(243,54,'Foreground Color','rgb(26,106,95)'),(244,54,'hyper_link','a:3:{s:5:\"title\";s:6:\"Mal3ab\";s:3:\"url\";s:24:\"https://mal3ab.adef.xyz/\";s:6:\"target\";s:0:\"\";}'),(245,54,'_edit_last','1'),(246,54,'_edit_lock','1659326352:1'),(247,54,'_Background Color','field_62e64b1722d61'),(248,54,'_Foreground Color','field_62e64b9022d62'),(249,54,'_hyper_link','field_62e64d46794b6'),(250,55,'Background Color','rgb(164,76,89)'),(251,55,'Foreground Color','#FFFFFF'),(252,55,'hyper_link','a:3:{s:5:\"title\";s:6:\"Maf3al\";s:3:\"url\";s:24:\"https://maf3al.adef.xyz/\";s:6:\"target\";s:0:\"\";}'),(253,55,'_edit_last','1'),(254,55,'_Background Color','field_62e64b1722d61'),(255,55,'_Foreground Color','field_62e64b9022d62'),(256,55,'_hyper_link','field_62e64d46794b6'),(257,55,'_edit_lock','1659355783:1'),(258,56,'_menu_item_type','custom'),(259,56,'_menu_item_menu_item_parent','0'),(260,56,'_menu_item_object_id','56'),(261,56,'_menu_item_object','custom'),(262,56,'_menu_item_target',''),(263,56,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(264,56,'_menu_item_xfn',''),(265,56,'_menu_item_url','#pll_switcher'),(266,56,'_menu_item_orphaned','1659355677'),(273,64,'_wp_attached_file','2022/08/FB_IMG_1451435871419.jpg'),(274,64,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:540;s:4:\"file\";s:32:\"2022/08/FB_IMG_1451435871419.jpg\";s:8:\"filesize\";i:31465;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(275,65,'_wp_attached_file','2022/08/wallpaper-10-7-8.jpg'),(276,65,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:28:\"2022/08/wallpaper-10-7-8.jpg\";s:8:\"filesize\";i:292646;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(278,72,'_edit_lock','1660328533:1'),(282,76,'_edit_lock','1660330439:1'),(285,76,'_edit_last','1'),(292,78,'_edit_lock','1660328736:1'),(295,78,'_edit_last','1'),(297,84,'_filled','0'),(298,84,'_featured','0'),(299,84,'_edit_lock','1659870905:1'),(300,84,'_job_expires','2022-09-06'),(301,84,'_tracked_submitted','1659869306'),(302,84,'_edit_last','1'),(303,84,'_job_location','Germany'),(304,84,'_application','[email protected]'),(305,84,'_company_name',''),(306,84,'_company_website',''),(307,84,'_company_tagline',''),(308,84,'_company_twitter',''),(309,84,'_company_video',''),(310,84,'_remote_position','0'),(311,85,'_edit_last','1'),(312,85,'_edit_lock','1659872975:1'),(317,89,'_edit_lock','1660238911:1'),(318,89,'_edit_last','1'),(319,94,'_wp_attached_file','2022/08/2560px-HelloWorld.svg_.png'),(320,94,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1280;s:4:\"file\";s:34:\"2022/08/2560px-HelloWorld.svg_.png\";s:8:\"filesize\";i:50246;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(325,78,'image','139'),(326,78,'_image','field_62efa73435f3e'),(327,96,'image','94'),(328,96,'_image','field_62efa73435f3e'),(329,98,'_wp_attached_file','2022/08/pngtree-colorful-hello-world-font-geometric-collage-word-art.jpg'),(330,98,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:640;s:6:\"height\";i:640;s:4:\"file\";s:72:\"2022/08/pngtree-colorful-hello-world-font-geometric-collage-word-art.jpg\";s:8:\"filesize\";i:62033;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(333,76,'image','140'),(334,76,'_image','field_62efa73435f3e'),(335,100,'image','98'),(336,100,'_image','field_62efa73435f3e'),(337,101,'_edit_lock','1660578544:1'),(338,101,'_edit_last','1'),(339,105,'_edit_lock','1660577980:1'),(340,105,'_edit_last','1'),(341,116,'_edit_last','1'),(342,116,'_edit_lock','1660136167:1'),(343,116,'hyper_link','a:3:{s:5:\"title\";s:6:\"Maf3al\";s:3:\"url\";s:24:\"https://maf3al.adef.xyz/\";s:6:\"target\";s:0:\"\";}'),(344,116,'_hyper_link','field_62e64d46794b6'),(345,118,'_edit_lock','1660576938:1'),(346,118,'_edit_last','1'),(347,72,'_edit_last','1'),(348,129,'_edit_last','1'),(349,129,'_edit_lock','1660218871:1'),(350,129,'hyper_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:24:\"https://mal3ab.adef.xyz/\";s:6:\"target\";s:0:\"\";}'),(351,129,'_hyper_link','field_62e64d46794b6'),(358,139,'_wp_attached_file','2022/07/aaa-1.png'),(359,139,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:360;s:6:\"height\";i:360;s:4:\"file\";s:17:\"2022/07/aaa-1.png\";s:8:\"filesize\";i:1289;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"aaa-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8362;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"aaa-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3205;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(360,140,'_wp_attached_file','2022/08/aaa.png'),(361,140,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:360;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2022/08/aaa.png\";s:8:\"filesize\";i:1289;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"aaa-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8362;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"aaa-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3205;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(362,141,'_wp_attached_file','2022/07/Hackerspaceworkshop-scaled.jpg'),(363,141,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1702;s:4:\"file\";s:38:\"2022/07/Hackerspaceworkshop-scaled.jpg\";s:8:\"filesize\";i:565318;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Hackerspaceworkshop-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11422;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"Hackerspaceworkshop-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92107;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Hackerspaceworkshop-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5982;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"Hackerspaceworkshop-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53539;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"Hackerspaceworkshop-1536x1021.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1021;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206092;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:33:\"Hackerspaceworkshop-2048x1362.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1362;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:368425;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON D50\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1260815937\";s:9:\"copyright\";s:14:\"Meng Weng Wong\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:13:\"hackerspacesg\";}}s:14:\"original_image\";s:23:\"Hackerspaceworkshop.jpg\";}'),(364,144,'_edit_lock','1660577673:1'),(370,149,'_edit_lock','1660317146:1'),(371,151,'hyper_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:24:\"https://mal3ab.adef.xyz/\";s:6:\"target\";s:0:\"\";}'),(372,151,'_edit_last','1'),(373,151,'_hyper_link','field_62e64d46794b6'),(374,151,'_edit_lock','1660136332:1'),(375,152,'_wp_attached_file','2022/08/adef-logo-png.png'),(376,152,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:783;s:4:\"file\";s:25:\"2022/08/adef-logo-png.png\";s:8:\"filesize\";i:30014;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"adef-logo-png-300x196.png\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5221;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"adef-logo-png-1024x668.png\";s:5:\"width\";i:1024;s:6:\"height\";i:668;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56878;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"adef-logo-png-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5861;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"adef-logo-png-768x501.png\";s:5:\"width\";i:768;s:6:\"height\";i:501;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21345;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(377,155,'_wp_attached_file','2022/08/Adef.png'),(378,155,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2285;s:6:\"height\";i:1491;s:4:\"file\";s:16:\"2022/08/Adef.png\";s:8:\"filesize\";i:82071;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"Adef-300x196.png\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13268;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"Adef-1024x668.png\";s:5:\"width\";i:1024;s:6:\"height\";i:668;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107069;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"Adef-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6203;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"Adef-768x501.png\";s:5:\"width\";i:768;s:6:\"height\";i:501;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89596;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:18:\"Adef-1536x1002.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1002;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:272305;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:18:\"Adef-2048x1336.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1336;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:442489;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(379,156,'_wp_attached_file','2022/08/Adef-1.png'),(380,156,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2285;s:6:\"height\";i:1491;s:4:\"file\";s:18:\"2022/08/Adef-1.png\";s:8:\"filesize\";i:82071;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"Adef-1-300x196.png\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13268;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"Adef-1-1024x668.png\";s:5:\"width\";i:1024;s:6:\"height\";i:668;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107069;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"Adef-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6203;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"Adef-1-768x501.png\";s:5:\"width\";i:768;s:6:\"height\";i:501;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89596;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"Adef-1-1536x1002.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1002;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:272305;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:20:\"Adef-1-2048x1336.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1336;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:442489;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(381,157,'_wp_attached_file','2022/08/Adef-2.png'),(382,157,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2285;s:6:\"height\";i:1491;s:4:\"file\";s:18:\"2022/08/Adef-2.png\";s:8:\"filesize\";i:82071;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"Adef-2-300x196.png\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13268;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"Adef-2-1024x668.png\";s:5:\"width\";i:1024;s:6:\"height\";i:668;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107069;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"Adef-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6203;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"Adef-2-768x501.png\";s:5:\"width\";i:768;s:6:\"height\";i:501;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89596;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"Adef-2-1536x1002.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1002;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:272305;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:20:\"Adef-2-2048x1336.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1336;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:442489;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(383,159,'_wp_attached_file','2022/08/Adef-3.png'),(384,159,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2285;s:6:\"height\";i:1491;s:4:\"file\";s:18:\"2022/08/Adef-3.png\";s:8:\"filesize\";i:82071;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"Adef-3-300x196.png\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13268;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"Adef-3-1024x668.png\";s:5:\"width\";i:1024;s:6:\"height\";i:668;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107069;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"Adef-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6203;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"Adef-3-768x501.png\";s:5:\"width\";i:768;s:6:\"height\";i:501;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89596;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"Adef-3-1536x1002.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1002;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:272305;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:20:\"Adef-3-2048x1336.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1336;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:442489;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(385,161,'_wp_attached_file','2022/08/Adef-4.png'),(386,161,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1673;s:6:\"height\";i:1092;s:4:\"file\";s:18:\"2022/08/Adef-4.png\";s:8:\"filesize\";i:56124;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"Adef-4-300x196.png\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12444;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"Adef-4-1024x668.png\";s:5:\"width\";i:1024;s:6:\"height\";i:668;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:131328;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"Adef-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6277;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"Adef-4-768x501.png\";s:5:\"width\";i:768;s:6:\"height\";i:501;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92481;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"Adef-4-1536x1003.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1003;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:349150;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(387,163,'_wp_attached_file','2022/08/Adef-5.png'),(388,163,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:587;s:4:\"file\";s:18:\"2022/08/Adef-5.png\";s:8:\"filesize\";i:27322;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"Adef-5-300x196.png\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8146;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"Adef-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6750;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"Adef-5-768x501.png\";s:5:\"width\";i:768;s:6:\"height\";i:501;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53063;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(389,165,'_wp_attached_file','2022/08/Adef-6.png'),(390,165,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:587;s:4:\"file\";s:18:\"2022/08/Adef-6.png\";s:8:\"filesize\";i:28820;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"Adef-6-300x196.png\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8161;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"Adef-6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6766;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"Adef-6-768x501.png\";s:5:\"width\";i:768;s:6:\"height\";i:501;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53069;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(391,167,'_wp_attached_file','2022/08/Adef-7.png'),(392,167,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:626;s:4:\"file\";s:18:\"2022/08/Adef-7.png\";s:8:\"filesize\";i:30424;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"Adef-7-300x196.png\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11492;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"Adef-7-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7869;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"Adef-7-768x501.png\";s:5:\"width\";i:768;s:6:\"height\";i:501;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30453;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(393,169,'_wp_attached_file','2022/08/Adef-7-edited.png'),(394,169,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:25:\"2022/08/Adef-7-edited.png\";s:8:\"filesize\";i:27465;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Adef-7-edited-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10788;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Adef-7-edited-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5807;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"Adef-7-edited-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27000;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:12:\"parent_image\";a:2:{s:13:\"attachment_id\";s:3:\"167\";s:4:\"file\";s:18:\"2022/08/Adef-7.png\";}}'),(399,171,'image','140'),(400,171,'_image','field_62efa73435f3e'),(403,78,'_pingme','1'),(404,78,'_encloseme','1'),(405,172,'image','139'),(406,172,'_image','field_62efa73435f3e'),(407,192,'_edit_lock','1660578058:1'),(408,199,'_edit_last','1'),(409,199,'_edit_lock','1660229519:1'),(410,199,'hyper_link','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:15:\"http://adef.xyz\";s:6:\"target\";s:0:\"\";}'),(411,199,'_hyper_link','field_62e64d46794b6'),(422,201,'_edit_lock','1660230441:1'),(423,202,'_wp_attached_file','2022/08/Adef-8.png'),(424,202,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:626;s:4:\"file\";s:18:\"2022/08/Adef-8.png\";s:8:\"filesize\";i:30424;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"Adef-8-300x196.png\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11492;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"Adef-8-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7869;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"Adef-8-768x501.png\";s:5:\"width\";i:768;s:6:\"height\";i:501;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30453;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(425,201,'_edit_last','1'),(426,201,'Gallery','203'),(427,201,'_Gallery','field_62e17aeb43a38'),(428,203,'_wp_attached_file','2022/08/electronics.JPG.jpg'),(429,203,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:27:\"2022/08/electronics.JPG.jpg\";s:8:\"filesize\";i:1539393;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"electronics.JPG-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14339;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"electronics.JPG-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100243;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"electronics.JPG-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6946;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"electronics.JPG-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64003;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"electronics.JPG-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184284;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(439,208,'_wp_attached_file','2022/08/Entrance.jpg'),(440,208,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:20:\"2022/08/Entrance.jpg\";s:8:\"filesize\";i:212098;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Entrance-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13368;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"Entrance-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107706;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Entrance-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6023;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"Entrance-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65088;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"Entrance-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:209611;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(448,213,'_edit_lock','1660232134:1'),(449,214,'_wp_attached_file','2022/08/Heavy-1.jpg'),(450,214,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:19:\"2022/08/Heavy-1.jpg\";s:8:\"filesize\";i:613320;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"Heavy-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13757;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"Heavy-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106565;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Heavy-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6582;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"Heavy-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65319;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"Heavy-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:208176;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(451,213,'_edit_last','1'),(452,213,'Gallery','214'),(453,213,'_Gallery','field_62e17aeb43a38'),(454,215,'_edit_lock','1660232295:1'),(455,216,'_wp_attached_file','2022/08/mashghal-temp-1.jpg'),(456,216,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:27:\"2022/08/mashghal-temp-1.jpg\";s:8:\"filesize\";i:181399;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"mashghal-temp-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15861;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"mashghal-temp-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107276;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"mashghal-temp-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7130;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"mashghal-temp-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68429;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"mashghal-temp-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194828;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(457,215,'_edit_last','1'),(458,215,'Gallery','216'),(459,215,'_Gallery','field_62e17aeb43a38'),(460,217,'_edit_lock','1660331319:1'),(461,218,'_wp_attached_file','2022/08/3D-printing-temp.jpg'),(462,218,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:28:\"2022/08/3D-printing-temp.jpg\";s:8:\"filesize\";i:841192;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"3D-printing-temp-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12614;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"3D-printing-temp-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79919;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"3D-printing-temp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6374;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"3D-printing-temp-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51036;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"3D-printing-temp-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147861;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(463,217,'_edit_last','1'),(464,217,'Gallery','218'),(465,217,'_Gallery','field_62e17aeb43a38'),(467,220,'_edit_lock','1660318171:1'),(468,221,'_wp_attached_file','2022/08/404-new.jpg'),(469,221,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:19:\"2022/08/404-new.jpg\";s:8:\"filesize\";i:133251;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"404-new-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11108;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"404-new-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80027;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"404-new-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5632;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"404-new-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49368;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"404-new-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152252;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(470,220,'_edit_last','1'),(471,220,'Gallery','221'),(472,220,'_Gallery','field_62e17aeb43a38'),(473,222,'_edit_lock','1660234148:1'),(474,223,'_wp_attached_file','2022/08/ra2sat.jpg'),(475,223,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:18:\"2022/08/ra2sat.jpg\";s:8:\"filesize\";i:207028;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"ra2sat-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14557;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"ra2sat-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114895;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"ra2sat-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6561;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"ra2sat-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69672;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"ra2sat-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:221636;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(476,222,'_edit_last','1'),(477,222,'Gallery','223'),(478,222,'_Gallery','field_62e17aeb43a38'),(479,224,'_edit_lock','1660655431:1'),(480,229,'_edit_lock','1660317425:1'),(481,234,'_edit_lock','1660317346:1'),(482,236,'_edit_lock','1660317573:1'),(483,238,'_edit_lock','1660317511:1'),(484,240,'_edit_lock','1660317536:1'),(485,242,'_edit_lock','1660317644:1'),(486,244,'_edit_lock','1660318454:1'),(487,246,'_edit_lock','1660318139:1'),(488,248,'_edit_lock','1660318405:1'),(489,192,'_easy_image_gallery_link_images','on'),(490,192,'_edit_last','1'),(491,192,'_easy_image_gallery_v2','a:1:{i:0;a:2:{s:4:\"DATA\";N;s:9:\"SHORTCODE\";s:3:\"430\";}}'),(492,254,'_easy_image_gallery_link_images','on'),(493,254,'_form','<label> Your name\n [text* your-name] </label>\n\n<label> Your email\n [email* your-email] </label>\n\n<label> Subject\n [text* your-subject] </label>\n\n<label> Your message (optional)\n [textarea your-message] </label>\n\n[submit \"Submit\"]'),(494,254,'_mail','a:8:{s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:39:\"[_site_title] <[email protected]>\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(495,254,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:39:\"[_site_title] <[email protected]>\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(496,254,'_messages','a:12:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:27:\"Please fill out this field.\";s:16:\"invalid_too_long\";s:32:\"This field has a too long input.\";s:17:\"invalid_too_short\";s:33:\"This field has a too short input.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:31:\"The uploaded file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";}'),(497,254,'_additional_settings',''),(498,254,'_locale','en_US'),(500,84,'_easy_image_gallery_link_images','on'),(501,48,'_easy_image_gallery_link_images','on'),(502,47,'_easy_image_gallery_link_images','on'),(503,46,'_easy_image_gallery_link_images','on'),(504,45,'_easy_image_gallery_link_images','on'),(505,257,'_wp_attached_file','2022/08/DSC03054.jpg'),(506,257,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:889;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2022/08/DSC03054.jpg\";s:8:\"filesize\";i:163960;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"DSC03054-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12998;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC03054-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6958;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"DSC03054-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59903;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM2\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1660646084\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(507,118,'_easy_image_gallery_link_images','on'),(508,118,'_easy_image_gallery_v2','a:1:{i:0;a:2:{s:4:\"DATA\";N;s:9:\"SHORTCODE\";s:3:\"320\";}}'),(509,144,'_easy_image_gallery_link_images','on'),(510,144,'_edit_last','1'),(511,262,'_wp_attached_file','2022/08/260302368_4820347041356247_6742573170314284590_n.jpg'),(512,262,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:60:\"2022/08/260302368_4820347041356247_6742573170314284590_n.jpg\";s:8:\"filesize\";i:98871;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"260302368_4820347041356247_6742573170314284590_n-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7542;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"260302368_4820347041356247_6742573170314284590_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4442;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(513,264,'_wp_attached_file','2022/08/ADF01032.jpg'),(514,264,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2022/08/ADF01032.jpg\";s:8:\"filesize\";i:352280;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"ADF01032-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15424;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"ADF01032-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7115;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1648076990\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"34\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(515,105,'_easy_image_gallery_link_images','on'),(516,105,'_easy_image_gallery_v2','a:1:{i:0;a:2:{s:4:\"DATA\";N;s:9:\"SHORTCODE\";s:3:\"522\";}}'),(517,270,'_wp_attached_file','2022/08/DSC00334.jpg'),(518,271,'_wp_attached_file','2022/08/DSC03054-1.jpg'),(519,270,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:749;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2022/08/DSC00334.jpg\";s:8:\"filesize\";i:247981;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"DSC00334-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13513;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00334-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6207;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(520,271,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:889;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2022/08/DSC03054-1.jpg\";s:8:\"filesize\";i:163960;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"DSC03054-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12998;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"DSC03054-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6958;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM2\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1660646084\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(521,272,'_wp_attached_file','2022/08/DSC00334-1.jpg'),(522,272,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:749;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2022/08/DSC00334-1.jpg\";s:8:\"filesize\";i:247981;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"DSC00334-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13513;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"DSC00334-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6207;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(523,101,'_easy_image_gallery_link_images','on'),(524,101,'_easy_image_gallery_v2','a:1:{i:0;a:2:{s:4:\"DATA\";N;s:9:\"SHORTCODE\";s:3:\"925\";}}'),(525,224,'_easy_image_gallery_link_images','on'),(526,224,'_edit_last','1'),(527,224,'_easy_image_gallery_v2','a:1:{i:0;a:2:{s:4:\"DATA\";N;s:9:\"SHORTCODE\";s:3:\"979\";}}');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_posts`
--
DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
`guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT 0,
`post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`(191)),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=281 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_posts`
--
LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (5,1,'2022-07-27 11:46:34','2022-07-27 09:46:34','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-twentytwentytwo','','','2022-07-27 11:46:34','2022-07-27 09:46:34','',0,'http://adef.local/?p=5',0,'wp_global_styles','',0),(6,1,'2022-07-27 17:01:07','0000-00-00 00:00:00','','Home','','draft','closed','closed','','','','','2022-07-27 17:01:07','0000-00-00 00:00:00','',0,'http://adef.local/?p=6',1,'nav_menu_item','',0),(8,1,'2022-07-27 17:01:11','0000-00-00 00:00:00','','Home','','draft','closed','closed','','','','','2022-07-27 17:01:11','0000-00-00 00:00:00','',0,'http://adef.local/?p=8',1,'nav_menu_item','',0),(11,1,'2022-07-27 17:02:15','0000-00-00 00:00:00','','Home','','draft','closed','closed','','','','','2022-07-27 17:02:15','0000-00-00 00:00:00','',0,'http://adef.local/?p=11',1,'nav_menu_item','',0),(14,1,'2022-07-27 17:02:45','0000-00-00 00:00:00','','Home','','draft','closed','closed','','','','','2022-07-27 17:02:45','0000-00-00 00:00:00','',0,'http://adef.local/?p=14',1,'nav_menu_item','',0),(18,1,'2022-07-27 17:11:16','2022-07-27 15:11:16',' ','','','publish','closed','closed','','18','','','2022-07-27 17:11:16','2022-07-27 15:11:16','',0,'http://adef.local/?p=18',4,'nav_menu_item','',0),(19,1,'2022-07-27 17:11:16','2022-07-27 15:11:16',' ','','','publish','closed','closed','','19','','','2022-07-27 17:11:16','2022-07-27 15:11:16','',0,'http://adef.local/?p=19',3,'nav_menu_item','',0),(20,1,'2022-07-27 19:52:11','2022-07-27 17:52:11','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"space\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:1;}','Spaces Fields','spaces-fields','publish','closed','closed','','group_62e17abf8485c','','','2022-07-28 19:22:12','2022-07-28 17:22:12','',0,'http://adef.local/?post_type=acf-field-group&p=20',0,'acf-field-group','',0),(21,1,'2022-07-27 19:52:11','2022-07-27 17:52:11','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:10:\"uploadedTo\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Gallery','Gallery','publish','closed','closed','','field_62e17aeb43a38','','','2022-07-28 19:22:12','2022-07-28 17:22:12','',20,'http://adef.local/?post_type=acf-field&p=21',0,'acf-field','',0),(23,1,'2022-07-27 19:52:20','2022-07-27 17:52:20','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-adef','','','2022-07-27 19:52:20','2022-07-27 17:52:20','',0,'http://adef.local/wp-global-styles-adef/',0,'wp_global_styles','',0),(24,1,'2022-07-27 20:23:36','2022-07-27 18:23:36','','720x1280_00237_69782','','inherit','open','closed','','720x1280_00237_69782','','','2022-07-27 20:23:36','2022-07-27 18:23:36','',0,'http://adef.local/wp-content/uploads/2022/07/720x1280_00237_69782.jpg',0,'attachment','image/jpeg',0),(26,1,'2022-07-27 20:23:37','2022-07-27 18:23:37','','12289591_764935973613182_1029076709167205969_n','','inherit','open','closed','','12289591_764935973613182_1029076709167205969_n','','','2022-07-27 20:23:37','2022-07-27 18:23:37','',0,'http://adef.local/wp-content/uploads/2022/07/12289591_764935973613182_1029076709167205969_n.jpg',0,'attachment','image/jpeg',0),(29,1,'2022-07-28 19:18:09','2022-07-28 17:18:09','','ba45cfef85a4b87849c96769ab0dcd13--backgrounds-wallpapers-phone-wallpapers','','inherit','open','closed','','ba45cfef85a4b87849c96769ab0dcd13-backgrounds-wallpapers-phone-wallpapers','','','2022-07-28 19:18:09','2022-07-28 17:18:09','',0,'http://adef.local/wp-content/uploads/2022/07/ba45cfef85a4b87849c96769ab0dcd13-backgrounds-wallpapers-phone-wallpapers.jpg',0,'attachment','image/jpeg',0),(36,1,'2022-07-29 17:59:03','2022-07-29 15:59:03','<!-- wp:paragraph -->\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Id aliquet lectus proin nibh nisl condimentum id venenatis. Ut sem nulla pharetra diam sit amet nisl. Quisque egestas diam in arcu cursus euismod quis viverra nibh. Viverra tellus in hac habitasse. Vivamus arcu felis bibendum ut. Tortor at risus viverra adipiscing. Accumsan in nisl nisi scelerisque eu. Est lorem ipsum dolor sit amet consectetur. Tristique senectus et netus et malesuada fames ac turpis egestas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Integer quis auctor elit sed vulputate mi sit amet. Blandit turpis cursus in hac habitasse platea. In egestas erat imperdiet sed euismod nisi porta. Faucibus purus in massa tempor nec. Hendrerit gravida rutrum quisque non tellus. Diam phasellus vestibulum lorem sed risus ultricies tristique nulla aliquet. Justo donec enim diam vulputate. Elementum curabitur vitae nunc sed velit dignissim sodales. Proin sed libero enim sed faucibus. Eget nullam non nisi est. Sed ullamcorper morbi tincidunt ornare massa eget egestas purus viverra. Nec feugiat in fermentum posuere urna nec tincidunt praesent semper. Amet mauris commodo quis imperdiet.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Eget nulla facilisi etiam dignissim diam. Pretium vulputate sapien nec sagittis aliquam malesuada bibendum arcu vitae. Pulvinar sapien et ligula ullamcorper malesuada proin. Volutpat consequat mauris nunc congue nisi. Justo donec enim diam vulputate ut pharetra sit amet. Ipsum suspendisse ultrices gravida dictum fusce ut placerat orci nulla. Quis risus sed vulputate odio ut enim. Bibendum ut tristique et egestas quis. Id nibh tortor id aliquet lectus proin. Consequat nisl vel pretium lectus. Nibh sed pulvinar proin gravida hendrerit lectus a.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Eu consequat ac felis donec. Arcu non odio euismod lacinia at quis risus sed. Fermentum et sollicitudin ac orci. Mauris vitae ultricies leo integer malesuada. Ac ut consequat semper viverra nam libero justo. Diam vulputate ut pharetra sit amet aliquam. Suscipit adipiscing bibendum est ultricies integer quis auctor. Euismod nisi porta lorem mollis aliquam ut porttitor. Pretium aenean pharetra magna ac placerat. Euismod in pellentesque massa placerat duis ultricies lacus sed. Vulputate sapien nec sagittis aliquam malesuada bibendum arcu vitae elementum. Elementum eu facilisis sed odio morbi quis commodo odio aenean. Odio tempor orci dapibus ultrices in iaculis nunc sed augue. Nisl purus in mollis nunc sed id. Lacus viverra vitae congue eu consequat. Eu lobortis elementum nibh tellus molestie nunc. Quis enim lobortis scelerisque fermentum dui faucibus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"letterSpacing\":\"5px\"}}} -->\n<p style=\"letter-spacing:5px\">A condimentum vitae sapien pellentesque habitant morbi tristique senectus. Nunc pulvinar sapien et ligula ullamcorper malesuada proin. Volutpat diam ut venenatis tellus. Velit dignissim sodales ut eu sem integer. Mattis ullamcorper velit sed ullamcorper morbi tincidunt ornare massa eget. Turpis massa tincidunt dui ut ornare lectus sit amet est. Diam ut venenatis tellus in metus vulputate eu. Porttitor massa id neque aliquam vestibulum morbi. Id diam maecenas ultricies mi eget mauris. Libero nunc consequat interdum varius sit amet mattis vulputate. Ut aliquam purus sit amet. Netus et malesuada fames ac turpis egestas. Aliquet lectus proin nibh nisl condimentum id venenatis. Tincidunt tortor aliquam nulla facilisi cras fermentum. Ut consequat semper viverra nam libero justo laoreet sit. Eleifend mi in nulla posuere sollicitudin aliquam ultrices. Nullam vehicula ipsum a arcu cursus vitae congue mauris. Penatibus et magnis dis parturient montes nascetur. Ornare lectus sit amet est placerat in. Mauris rhoncus aenean vel elit scelerisque mauris pellentesque pulvinar.</p>\n<!-- /wp:paragraph -->','Accountant','','publish','closed','closed','','accountant','','','2022-07-29 17:59:04','2022-07-29 15:59:04','',0,'http://adef.local/?post_type=job&p=36',0,'job','',0),(38,1,'2022-07-31 11:31:46','2022-07-31 09:31:46','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:8:\"platform\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:1;}','Important links fields','important-links-fields','publish','closed','closed','','group_62e64b0116033','','','2022-08-07 19:06:47','2022-08-07 17:06:47','',0,'http://adef.local/?post_type=acf-field-group&p=38',0,'acf-field-group','',0),(41,1,'2022-07-31 11:36:57','2022-07-31 09:36:57','','مفعل','مفعل منصة لتعلم مهارات في مجالات الصوت والفنون والفيديو والصنّاع والحكي والمسرح. ننشر على المنصة فيديوهات تساعدك في اكتشاف اهتمامات جديدة وتطوير مشاريع للتعبير عن أحلامك وأفكارك. ','publish','closed','closed','','%d9%85%d9%81%d8%b9%d9%84','','','2022-07-31 11:39:48','2022-07-31 09:39:48','',0,'http://adef.local/?post_type=important_link&p=41',0,'important_link','',0),(42,1,'2022-07-31 11:39:04','2022-07-31 09:39:04','a:6:{s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";}','Hyperlink','hyper_link','publish','closed','closed','','field_62e64d46794b6','','','2022-08-07 19:06:47','2022-08-07 17:06:47','',38,'http://adef.local/?post_type=acf-field&p=42',0,'acf-field','',0),(44,1,'2022-07-31 17:40:36','2022-07-31 15:40:36','','Mal3ab','','publish','closed','closed','','mal3ab','','','2022-07-31 17:40:36','2022-07-31 15:40:36','',0,'http://adef.local/?post_type=important_link&p=44',0,'important_link','',0),(45,1,'2022-07-29 21:57:00','2022-07-29 19:57:00','<div>\n<h2>Job brief</h2>\nWe are looking for a Software Developer to build and implement functional programs. You will work with other Developers and <a href=\"https://resources.workable.com/product-manager-job-description\" target=\"_blank\" rel=\"noopener\">Product Managers</a> throughout the software development life cycle.\n\nIn this role, you should be a team player with a keen eye for detail and problem-solving skills. If you also have experience in Agile frameworks and popular coding languages (e.g. JavaScript), we’d like to meet you.\n\nYour goal will be to build efficient programs and systems that serve user needs.\n<h2>Responsibilities</h2>\n<ul>\n <li>Work with developers to design algorithms and flowcharts</li>\n <li>Produce clean, efficient code based on specifications</li>\n <li>Integrate software components and third-party programs</li>\n <li>Verify and deploy programs and systems</li>\n <li>Troubleshoot, debug and upgrade existing software</li>\n <li>Gather and evaluate user feedback</li>\n <li>Recommend and execute improvements</li>\n <li>Create technical documentation for reference and reporting</li>\n</ul>\n<h2>Requirements and skills</h2>\n<ul>\n <li>Proven experience as a Software Developer, <a href=\"https://resources.workable.com/software-engineer-job-description\" target=\"_blank\" rel=\"noopener\">Software Engineer</a> or similar role</li>\n <li>Familiarity with Agile development methodologies</li>\n <li>Experience with software design and development in a test-driven environment</li>\n <li>Knowledge of coding languages (e.g. C++, Java, JavaScript) and frameworks/systems (e.g. AngularJS, Git)</li>\n <li>Experience with databases and Object-Relational Mapping (ORM) frameworks (e.g. Hibernate)</li>\n <li>Ability to learn new languages and technologies</li>\n <li>Excellent communication skills</li>\n <li>Resourcefulness and troubleshooting aptitude</li>\n <li>Attention to detail</li>\n <li>BSc/BA in Computer Science, Engineering or a related field</li>\n</ul>\n<div>\n<h2>Frequently asked questions</h2>\n<h5>What does a Software Developer do?</h5>\nA Software Developer designs and builds computer programs that power mobile devices, desktop computers, and even cars. They not only identify user needs but also create new applications for any given market while making improvements based on feedback from users.\n<h5>What are the duties and responsibilities of a Software Developer?</h5>\nSoftware Developers have many different day-to-day responsibilities, such as creating efficient algorithms, producing clean code, integrating third-party programs into systems, and identifying areas of improvement based on user feedback.\n<h5>What makes a good Software Developer?</h5>\nA good Software Developer will have a deep understanding of programming languages and the software development life-cycle, as well as excellent analytical abilities and problem-solving skills.\n<h5>Who does a Software Developer work with?</h5>\nTypically, Software Developers work with a team of other developers, such as a Full Stack Developer, in order to create great software for their clients.\n\n</div>\n</div>','Software Developer','','expired','closed','closed','','software-developer','','','2022-08-15 16:20:28','2022-08-15 14:20:28','',0,'http://adef.local/?post_type=job_listing&p=45',0,'job_listing','',0),(46,1,'2022-07-31 22:06:37','2022-07-31 20:06:37','<div>\n<h2>Job brief</h2>\nWe are looking for an experienced Financial Accountant to monitor all financial data and prepare accurate statements for our company.\n\nFinancial Accountant responsibilities include budgeting, managing tax payments and performing internal audits. You will act as a consultant for senior managers, conducting cost and revenues analyses. To be qualified for this role, you should have a degree in Accounting and relevant work experience.\n\nUltimately, you will ensure all our accounting transactions comply with the law and support our company’s investments.\n<h2>Responsibilities</h2>\n<ul>\n <li>Gather and monitor financial data (e.g. sales revenues and liabilities)</li>\n <li>Prepare monthly, quarterly and annual statements (balance sheets and income statements)</li>\n <li>Forecast costs and revenues</li>\n <li>Manage tax payments</li>\n <li>Organize internal audits</li>\n <li>Prepare budgets (for the entire company and by department)</li>\n <li>Monitor and report on accounting discrepancies</li>\n <li>Conduct detailed risk analyses to assess potential investments</li>\n <li>Analyze financial trends</li>\n <li>Perform month-end and year-end close processes</li>\n</ul>\n<h2>Requirements and skills</h2>\n<ul>\n <li>Proven work experience as a Financial Accountant or similar role</li>\n <li>Advanced knowledge of MS Excel and accounting software</li>\n <li>In-depth understanding of business bookkeeping procedures</li>\n <li>Solid knowledge of accounting regulations</li>\n <li>Excellent math skills with an attention to detail</li>\n <li>Time-management abilities</li>\n <li>Confidentiality</li>\n <li>BSc degree in Accounting, Finance or relevant field</li>\n <li>Additional certification (e.g. CPA) is a plus</li>\n</ul>\n</div>','Financial Accountant','','expired','closed','closed','','financial-accountant-financial-accountant-financial-accountant-financial-accountantfinancial-accountant','','','2022-08-15 16:20:28','2022-08-15 14:20:28','',0,'http://adef.local/?post_type=job_listing&p=46',0,'job_listing','',0),(47,1,'2022-07-31 22:08:41','2022-07-31 20:08:41','<div>\n<h2>Job brief</h2>\n<p dir=\"ltr\">We are looking for a passionate Photographer to capture moments on film and to use images to tell a story. The successful candidate will be able to achieve technical, qualitative and quantitative goals while meeting project’s needs and deadlines.</p>\n\n<h2>Responsibilities</h2>\n<ul>\n <li>Take the brief to understand specifications and work closely with our art team to develop the concept</li>\n <li>Capture and process images until you achieve desired results</li>\n <li>Shoot poses that don’t look posed</li>\n <li>Constantly improve image quality using various editing methods</li>\n <li>Use and maintain modern and traditional technical equipment (cameras, lenses etc)</li>\n <li>Arrange objects, scenes, lighting and background to adhere to specifications</li>\n <li>Direct participants</li>\n <li>Archive photographic images and maintain database</li>\n <li>Maintain an in depth understanding of photographic best practices and procedures</li>\n</ul>\n<h2>Requirements and skills</h2>\n<ul>\n <li>Proven professional shooting experience</li>\n <li>Eye-catching portfolio</li>\n <li>Proficient with traditional and modern equipment</li>\n <li>Solid knowledge of Photoshop, Capture One or other photography specific software</li>\n <li>Shooting, lighting and printing skills</li>\n <li>Competency in applying photographic best practices and techniques</li>\n <li>Knowledge of production process for online publishing and various printing applications</li>\n <li>Ability to juggle multiple tasks</li>\n <li>Photography degree or similar</li>\n</ul>\n</div>','Photographer','','expired','closed','closed','','photographer','','','2022-08-15 16:20:28','2022-08-15 14:20:28','',0,'http://adef.local/?post_type=job_listing&p=47',0,'job_listing','',0),(48,1,'2022-07-31 22:09:39','2022-07-31 20:09:39','','Video Editor','','expired','closed','closed','','video-editor','','','2022-08-15 16:20:28','2022-08-15 14:20:28','',0,'http://adef.local/?post_type=job_listing&p=48',0,'job_listing','',0),(52,1,'2022-08-01 05:45:11','2022-08-01 03:45:11','','polylang_mo_13','','private','closed','closed','','polylang_mo_13','','','2022-08-01 05:45:11','2022-08-01 03:45:11','',0,'http://adef.local/?post_type=polylang_mo&p=52',0,'polylang_mo','',0),(53,1,'2022-08-01 05:48:30','2022-08-01 03:48:30','','polylang_mo_24','','private','closed','closed','','polylang_mo_24','','','2022-08-01 05:48:30','2022-08-01 03:48:30','',0,'http://adef.local/?post_type=polylang_mo&p=53',0,'polylang_mo','',0),(54,1,'2022-08-01 06:01:09','2022-08-01 04:01:09','','ملعب','','publish','closed','closed','','%d9%85%d9%84%d8%b9%d8%a8','','','2022-08-01 06:01:09','2022-08-01 04:01:09','',0,'http://adef.local/?post_type=important_link&p=54',0,'important_link','',0),(55,1,'2022-08-01 06:01:51','2022-08-01 04:01:51','','Maf3al','','publish','closed','closed','','%d9%85%d9%81%d8%b9%d9%84-2','','','2022-08-01 14:12:04','2022-08-01 12:12:04','',0,'http://adef.local/?post_type=important_link&p=55',0,'important_link','',0),(56,1,'2022-08-01 14:07:57','0000-00-00 00:00:00','','Languages','','draft','closed','closed','','','','','2022-08-01 14:07:57','0000-00-00 00:00:00','',0,'http://adef.local/?p=56',1,'nav_menu_item','',0),(64,1,'2022-08-02 13:37:58','2022-08-02 11:37:58','','FB_IMG_1451435871419','','inherit','open','closed','','fb_img_1451435871419','','','2022-08-02 13:37:58','2022-08-02 11:37:58','',0,'http://adef.local/wp-content/uploads/2022/08/FB_IMG_1451435871419.jpg',0,'attachment','image/jpeg',0),(65,1,'2022-08-02 14:10:56','2022-08-02 12:10:56','','wallpaper-10-7-8','','inherit','open','closed','','wallpaper-10-7-8','','','2022-08-02 14:10:56','2022-08-02 12:10:56','',0,'http://adef.local/wp-content/uploads/2022/08/wallpaper-10-7-8.jpg',0,'attachment','image/jpeg',0),(72,1,'2022-08-02 15:23:01','2022-08-02 13:23:01','<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/Adef-7-edited.png\" alt=\"\"/></figure>\n<!-- /wp:image -->','Home','','publish','closed','closed','','home','','','2022-08-12 20:04:43','2022-08-12 18:04:43','',0,'http://adef.local/?page_id=72',0,'page','',0),(73,1,'2022-08-02 15:23:01','2022-08-02 13:23:01','<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://upload.wikimedia.org/wikipedia/commons/e/e5/Adef_logo.svg\" width=\"100\" alt=\"\"/></figure>\n<!-- /wp:image -->','','','inherit','closed','closed','','72-revision-v1','','','2022-08-02 15:23:01','2022-08-02 13:23:01','',72,'http://adef.local/?p=73',0,'revision','',0),(76,1,'2022-08-06 18:04:08','2022-08-06 16:04:08','<!-- wp:paragraph -->\n<p>مرحبًا بك في WordPress. هذه تدوينتك الأولى. حررها أو احذفها ، ثم ابدأ الكتابة! مرحبًا بك في WordPress. هذه تدوينتك الأولى. حررها أو احذفها ، ثم ابدأ الكتابة!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>مرحبًا بك في WordPress. هذه تدوينتك الأولى. حررها أو احذفها ، ثم ابدأ الكتابة! مرحبًا بك في WordPress. هذه تدوينتك الأولى. حررها أو احذفها ، ثم ابدأ الكتابة! مرحبًا بك في WordPress. هذه تدوينتك الأولى. حررها أو احذفها ، ثم ابدأ الكتابة!</p>\n<!-- /wp:paragraph -->','مرحبا بالعالم','','private','open','open','','%d9%85%d8%b1%d8%ad%d8%a8%d8%a7-%d8%a8%d8%a7%d9%84%d8%b9%d8%a7%d9%84%d9%85','','','2022-08-12 20:28:48','2022-08-12 18:28:48','',0,'http://adef.local/?p=76',0,'post','',0),(77,1,'2022-08-06 18:04:08','2022-08-06 16:04:08','','مرحبا بالعالم','','inherit','closed','closed','','76-revision-v1','','','2022-08-06 18:04:08','2022-08-06 16:04:08','',76,'http://adef.local/?p=77',0,'revision','',0),(78,1,'2022-08-06 18:04:51','2022-08-06 16:04:51','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing! Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing! Welcome to WordPress. This is your first post. Edit or delete it, then start writing!Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world','','private','open','open','','hello-world','','','2022-08-12 20:22:44','2022-08-12 18:22:44','',0,'http://adef.local/?p=78',0,'post','',0),(79,1,'2022-08-06 18:04:51','2022-08-06 16:04:51','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world','','inherit','closed','closed','','78-revision-v1','','','2022-08-06 18:04:51','2022-08-06 16:04:51','',78,'http://adef.local/?p=79',0,'revision','',0),(84,1,'2022-08-07 12:48:25','2022-08-07 10:48:25','','LOL','','expired','closed','closed','','lol','','','2022-08-15 16:20:28','2022-08-15 14:20:28','',0,'http://adef.local/?post_type=job_listing&p=84',0,'job_listing','',0),(85,1,'2022-08-07 13:51:56','2022-08-07 11:51:56','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"post\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:1;}','Posts fields','posts-fields','publish','closed','closed','','group_62efa726d107e','','','2022-08-07 13:51:56','2022-08-07 11:51:56','',0,'http://adef.local/?post_type=acf-field-group&p=85',0,'acf-field-group','',0),(86,1,'2022-08-07 13:51:56','2022-08-07 11:51:56','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_62efa73435f3e','','','2022-08-07 13:51:56','2022-08-07 11:51:56','',85,'http://adef.local/?post_type=acf-field&p=86',0,'acf-field','',0),(89,1,'2022-08-07 14:27:36','2022-08-07 12:27:36','<!-- wp:paragraph -->\n<p>ADEF is a non-profit foundation registered in 2009 at the Egyptian Ministry of Social Solidary License number 7734-2009 which aims to enable teens and youth through fostering environments for education and learning, supporting free culture, developing capacity, and building knowledge tools in Arabic language.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Vision</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong><br></strong>Independent individuals and groups, who are active, expressive, and producers of knowledge for the benefit of their societies.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Mission</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Promoting creative uses of information technology, and the dissemination of the concepts and practices of free culture, and supporting initiatives which aim to produce free Arabic knowledge using free tools.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ADEF is a multidimensional organization that creates spaces and fosters environments for expression and progressive learning. It enhances skills and develops knowledge tools to support and empower groups and individuals to strengthen their practices and engagement with their society. Its mission is to build youth communities through experiential learning, promote the creative uses of technology, and support initiatives that aim to produce free and open critical Arabic knowledge. ADEF works with teenagers and youth, individuals and groups, who are active and critical and can express themselves and produce knowledge for the benefit of their society. Its work has expanded across Egypt, Lebanon, Tunisia, Palestine and Berlin and with youth and young professionals from at least 13 Arab countries.<br>ADEF was born 15 years ago at a time where the Internet started opening itself up as a space of possibility around the world. Tapping into that space, and the broader digital technologies surrounding it, ADEF embarked on a venture to explore how knowledge can be assembled, mediated, disseminated freely and critically through this opening. Centering itself primarily on a progressive educational program, alongside thematic knowledge creation, technical support for knowledge production, and broader community creation and support around shared issues and concerns, ADEF became a key player in open-source, digitally mediated knowledge production in the Arab region.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ADEF was officially founded in 2009 as a non-profit organization registered at the Egyptian Ministry of Social Solidary License number 7734-2009 with the aim to create experiences that enhance self-exploration, creative self-expression and critical thinking for youth in the<br>MENA region. ADEF became a key player in open-source, digitally mediated knowledge<br>production in the Arab region with a reputation of being one of the few cultural spaces that respects free culture and fights for a more progressive, accessible and modern educational system. ADEF prides itself on its dedicated community of artists and techies that continue to generously share their knowledge and work to new generations to continue to build a more diverse cultural sector with actors who can express themselves freely through art and technology.<br>ADEF also caters to an evolving shared new Arab identity and culture that has evolved with the internet and rise in use of technology. This identity does not unfold from a top-bottom approach but from a grassroot one, i.e. a product of proximity, shared experience and interests. ADEF’s functions, including the camps, the residencies, the trainings and the workshops, become a space to tap into identity and explore it, while creating an environment of acceptance and diversity.<br>To develop 21st century skills, ADEF challenges the lack of diversity in the cultural sector and limited mobility by bringing a diversity of youth together.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>ADEF aims at:</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Promoting heightened and distinguished Arab youth expression in their surrounding evolving contexts</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Supporting general critical knowledge production, among young professional artists, journalists, researchers and other culture actors</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Creating spaces for expression and knowledge making to unfold and thrive</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Fostering communities where collaborations, exchanges, mutual learning can be developed as a backbone for critical narrative making</li></ul>\n<!-- /wp:list -->','About ADEF','','publish','closed','closed','','about','','','2022-08-11 14:43:24','2022-08-11 12:43:24','',0,'http://adef.local/?page_id=89',0,'page','',0),(90,1,'2022-08-07 14:27:36','2022-08-07 12:27:36','<!-- wp:paragraph -->\n<p>Come true To enable using information technology Add that you cannot you see By definition, you can\'t Unless the tools and the knowledge related to them are free. It is not limited to acquiring the ability to use tools, but requires that it be combined with yours tools, and the ability to study them in order to learn from them how they work and are made, and the ability to my purpose until lu amending them for the purpose of correcting their shortcomings, improving them or adapting them to any Unrecognized by the original manufacturer of the tool, as well as the ability to transfer tools and knowledge m relating thereto, in their original or development, to others to enable them, too</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://egyptianstreets.com/wp-content/uploads/2019/08/64740459_2345318778859098_3453769548459671552_o-1.jpg\" alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Come true To enable using information technology Add that you cannot you see By definition, you can\'t Unless the tools and the knowledge related to them are free. It is not limited to acquiring the ability to use tools, but requires that it be combined with yours tools, and the ability to study them in order to learn from them how they work and are made, and the ability to my purpose until lu amending them for the purpose of correcting their shortcomings, improving them or adapting them to any Unrecognized by the original manufacturer of the tool, as well as the ability to transfer tools and knowledge m relating thereto, in their original or development, to others to enable them, too</p>\n<!-- /wp:paragraph -->','About ADEF','','inherit','closed','closed','','89-revision-v1','','','2022-08-07 14:27:36','2022-08-07 12:27:36','',89,'http://adef.local/?p=90',0,'revision','',0),(91,1,'2022-08-07 14:28:50','2022-08-07 12:28:50','<!-- wp:html -->\n<p class=\"w-75 m-auto\">Come true To enable using information technology Add that you cannot you see By definition, you can\'t Unless the tools and the knowledge related to them are free. It is not limited to acquiring the ability to use tools, but requires that it be combined with yours tools, and the ability to study them in order to learn from them how they work and are made, and the ability to my purpose until lu amending them for the purpose of correcting their shortcomings, improving them or adapting them to any Unrecognized by the original manufacturer of the tool, as well as the ability to transfer tools and knowledge m relating thereto, in their original or development, to others to enable them, too</p>\n<!-- /wp:html -->\n\n<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://egyptianstreets.com/wp-content/uploads/2019/08/64740459_2345318778859098_3453769548459671552_o-1.jpg\" alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:html -->\n<p class=\"w-75 m-auto\">Come true To enable using information technology Add that you cannot you see By definition, you can\'t Unless the tools and the knowledge related to them are free. It is not limited to acquiring the ability to use tools, but requires that it be combined with yours tools, and the ability to study them in order to learn from them how they work and are made, and the ability to my purpose until lu amending them for the purpose of correcting their shortcomings, improving them or adapting them to any Unrecognized by the original manufacturer of the tool, as well as the ability to transfer tools and knowledge m relating thereto, in their original or development, to others to enable them, too</p>\n<!-- /wp:html -->','About ADEF','','inherit','closed','closed','','89-revision-v1','','','2022-08-07 14:28:50','2022-08-07 12:28:50','',89,'http://adef.local/?p=91',0,'revision','',0),(92,1,'2022-08-07 14:29:27','2022-08-07 12:29:27','<!-- wp:html -->\n<p class=\"w-75 m-auto my-3\">Come true To enable using information technology Add that you cannot you see By definition, you can\'t Unless the tools and the knowledge related to them are free. It is not limited to acquiring the ability to use tools, but requires that it be combined with yours tools, and the ability to study them in order to learn from them how they work and are made, and the ability to my purpose until lu amending them for the purpose of correcting their shortcomings, improving them or adapting them to any Unrecognized by the original manufacturer of the tool, as well as the ability to transfer tools and knowledge m relating thereto, in their original or development, to others to enable them, too</p>\n<!-- /wp:html -->\n\n<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://egyptianstreets.com/wp-content/uploads/2019/08/64740459_2345318778859098_3453769548459671552_o-1.jpg\" alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:html -->\n<p class=\"w-75 m-auto my-3\">Come true To enable using information technology Add that you cannot you see By definition, you can\'t Unless the tools and the knowledge related to them are free. It is not limited to acquiring the ability to use tools, but requires that it be combined with yours tools, and the ability to study them in order to learn from them how they work and are made, and the ability to my purpose until lu amending them for the purpose of correcting their shortcomings, improving them or adapting them to any Unrecognized by the original manufacturer of the tool, as well as the ability to transfer tools and knowledge m relating thereto, in their original or development, to others to enable them, too</p>\n<!-- /wp:html -->','About ADEF','','inherit','closed','closed','','89-revision-v1','','','2022-08-07 14:29:27','2022-08-07 12:29:27','',89,'http://adef.local/?p=92',0,'revision','',0),(93,1,'2022-08-07 14:30:13','2022-08-07 12:30:13','<!-- wp:html -->\n<p class=\"w-75 m-auto my-3\">Come true To enable using information technology Add that you cannot you see By definition, you can\'t Unless the tools and the knowledge related to them are free. It is not limited to acquiring the ability to use tools, but requires that it be combined with yours tools, and the ability to study them in order to learn from them how they work and are made, and the ability to my purpose until lu amending them for the purpose of correcting their shortcomings, improving them or adapting them to any Unrecognized by the original manufacturer of the tool, as well as the ability to transfer tools and knowledge m relating thereto, in their original or development, to others to enable them, too</p>\n<!-- /wp:html -->\n\n<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large w-75 m-auto\"><img src=\"https://egyptianstreets.com/wp-content/uploads/2019/08/64740459_2345318778859098_3453769548459671552_o-1.jpg\" alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:html -->\n<p class=\"w-75 m-auto my-3\">Come true To enable using information technology Add that you cannot you see By definition, you can\'t Unless the tools and the knowledge related to them are free. It is not limited to acquiring the ability to use tools, but requires that it be combined with yours tools, and the ability to study them in order to learn from them how they work and are made, and the ability to my purpose until lu amending them for the purpose of correcting their shortcomings, improving them or adapting them to any Unrecognized by the original manufacturer of the tool, as well as the ability to transfer tools and knowledge m relating thereto, in their original or development, to others to enable them, too</p>\n<!-- /wp:html -->','About ADEF','','inherit','closed','closed','','89-revision-v1','','','2022-08-07 14:30:13','2022-08-07 12:30:13','',89,'http://adef.local/?p=93',0,'revision','',0),(94,1,'2022-08-07 14:34:47','2022-08-07 12:34:47','','2560px-HelloWorld.svg','','inherit','open','closed','','2560px-helloworld-svg','','','2022-08-07 14:34:47','2022-08-07 12:34:47','',78,'http://adef.local/wp-content/uploads/2022/08/2560px-HelloWorld.svg_.png',0,'attachment','image/png',0),(95,1,'2022-08-07 14:35:04','2022-08-07 12:35:04','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing! Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing! Welcome to WordPress. This is your first post. Edit or delete it, then start writing!Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world','','inherit','closed','closed','','78-revision-v1','','','2022-08-07 14:35:04','2022-08-07 12:35:04','',78,'http://adef.local/?p=95',0,'revision','',0),(96,1,'2022-08-07 14:35:06','2022-08-07 12:35:06','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing! Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing! Welcome to WordPress. This is your first post. Edit or delete it, then start writing!Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world','','inherit','closed','closed','','78-revision-v1','','','2022-08-07 14:35:06','2022-08-07 12:35:06','',78,'http://adef.local/?p=96',0,'revision','',0),(98,1,'2022-08-07 14:36:54','2022-08-07 12:36:54','','pngtree-colorful-hello-world-font-geometric-collage-word-art','','inherit','open','closed','','pngtree-colorful-hello-world-font-geometric-collage-word-art','','','2022-08-07 14:36:54','2022-08-07 12:36:54','',76,'http://adef.local/wp-content/uploads/2022/08/pngtree-colorful-hello-world-font-geometric-collage-word-art.jpg',0,'attachment','image/jpeg',0),(99,1,'2022-08-07 14:36:57','2022-08-07 12:36:57','<!-- wp:paragraph -->\n<p>مرحبًا بك في WordPress. هذه تدوينتك الأولى. حررها أو احذفها ، ثم ابدأ الكتابة! مرحبًا بك في WordPress. هذه تدوينتك الأولى. حررها أو احذفها ، ثم ابدأ الكتابة!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>مرحبًا بك في WordPress. هذه تدوينتك الأولى. حررها أو احذفها ، ثم ابدأ الكتابة! مرحبًا بك في WordPress. هذه تدوينتك الأولى. حررها أو احذفها ، ثم ابدأ الكتابة! مرحبًا بك في WordPress. هذه تدوينتك الأولى. حررها أو احذفها ، ثم ابدأ الكتابة!</p>\n<!-- /wp:paragraph -->','مرحبا بالعالم','','inherit','closed','closed','','76-revision-v1','','','2022-08-07 14:36:57','2022-08-07 12:36:57','',76,'http://adef.local/?p=99',0,'revision','',0),(100,1,'2022-08-07 14:37:03','2022-08-07 12:37:03','<!-- wp:paragraph -->\n<p>مرحبًا بك في WordPress. هذه تدوينتك الأولى. حررها أو احذفها ، ثم ابدأ الكتابة! مرحبًا بك في WordPress. هذه تدوينتك الأولى. حررها أو احذفها ، ثم ابدأ الكتابة!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>مرحبًا بك في WordPress. هذه تدوينتك الأولى. حررها أو احذفها ، ثم ابدأ الكتابة! مرحبًا بك في WordPress. هذه تدوينتك الأولى. حررها أو احذفها ، ثم ابدأ الكتابة! مرحبًا بك في WordPress. هذه تدوينتك الأولى. حررها أو احذفها ، ثم ابدأ الكتابة!</p>\n<!-- /wp:paragraph -->','مرحبا بالعالم','','inherit','closed','closed','','76-revision-v1','','','2022-08-07 14:37:03','2022-08-07 12:37:03','',76,'http://adef.local/?p=100',0,'revision','',0),(101,1,'2022-08-07 18:10:06','2022-08-07 16:10:06','<!-- wp:paragraph -->\n<p>This is a continued Drosos funded project since 2015 in collaboration with eight community space partners impacting thousands of teens and hundreds of young professionals in Cairo, Giza, Alexandria, Luxor, Aswan and Asyut. Attendees of both schools are chosen based on their applications or nominations from their community and 70 percent of them come from underserved communities. The schools are an extension of the camps’ accumulated experience and a chance to take it to different spaces. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":272,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/DSC00334-1.jpg\" alt=\"\" class=\"wp-image-272\"/></figure>\n<!-- /wp:image -->','Schools','','publish','closed','closed','','schools','','','2022-08-15 17:46:19','2022-08-15 15:46:19','',0,'http://home.adef.xyz/?page_id=101',0,'page','',0),(102,1,'2022-08-07 18:10:06','2022-08-07 16:10:06','<!-- wp:paragraph -->\n<p>ﺻﻔﺤﺎتﺗﻌﺮف ﻣﻔﻬﻮم اﻟﺘﻌﻠ ﻢوﻛﻴﻔﻴﺔ ﻣﻤﺎرﺳﺘﻪ؛ ﻣﻦ<br>أولاﳌﻘﺎرﺑﺔ واﻟﺮؤﻳﺔ اﻟﰇﺑﻮﻳﺔ</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://placehold.jp/1024x768.png\" alt=\"\"/></figure>\n<!-- /wp:image -->','Schools','','inherit','closed','closed','','101-revision-v1','','','2022-08-07 18:10:06','2022-08-07 16:10:06','',101,'http://home.adef.xyz/?p=102',0,'revision','',0),(104,1,'2022-08-07 18:13:12','2022-08-07 16:13:12','<!-- wp:paragraph -->\n<p>A picture\'s worth a thousand words, so here\'s 21K worth of placeholder image generators to use in your mockups and designs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://placehold.jp/1024x768.png\" alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://placehold.jp/1024x768.png\" alt=\"\"/></figure>\n<!-- /wp:image -->','Schools','','inherit','closed','closed','','101-revision-v1','','','2022-08-07 18:13:12','2022-08-07 16:13:12','',101,'http://home.adef.xyz/?p=104',0,'revision','',0),(105,1,'2022-08-07 18:36:55','2022-08-07 16:36:55','<!-- wp:group {\"align\":\"full\"} -->\n<div class=\"wp-block-group alignfull\"></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Most of ADEF’s broader community members are themselves culture producers who express themselves through the art, bringing to the fore creative ways of addressing socio-political questions. Therefore, another key area of our work is centered on supporting them directly, as per their expressed needs, besides offering our own educational programming, and developing tech tools that aid processes of knowledge production. Such expressed needs include the need for a space and funding to develop their art and professionalize their practice to become more independent artists with a wider reach. This area of our work responds to their needs through the provision of grants, technical support and mentorship and provision of equipment, space and resources. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Activities include: </h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li><strong>Artist support program</strong>: Through our space, which boasts: a sound and dance studios, the video editing unit, sound electronics lab, makerspace with heavy equipment, textile lab, crafts and pottery lab, 3D printing lab, the residential space; our equipment, our community of practitioners who can contribute to ideation processes, and our institutional development experts who can help in fundraising and dissemination, we hope to steadily support five different artistic projects every year, be it authored by an artist, or by a cultural initiative or a partner organization. Groups we work with are normally artists and cultural practitioners having an active interest in technology in their practice and critical narratives in their concepts. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><strong>Artistic and cultural workshops program</strong>: This is one of the well-established traditional activities in ADEF where both teens and adults get to learn and interact with artistic and cultural skills and to participate in the manufacturing of artistic and cultural products in ADEF’s various spaces (hackspace, labs, sound studio, etc.).</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><strong>Open Spaces:</strong> It is a plan to expand the users of ADEF’s spaces, such as the sound and dance studios, the video editing unit, sound electronics lab, makers space with heavy equipment, textile lab, crafts and pottery lab, 3D printing lab, the residential space, etc, and making them available to a wider audience. The below visual shows all the spaces offered in our building in Mokattam, Cairo. In addition to offering the space and resources to our target audience, we are building towards an income-generation model through a program to rent these facilities to a wider audience. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><strong>Residency program</strong>: Three to four collective residencies are implemented throughout the year, aiming to bring together from 15 to 20 participants in different artistic, cultural and tech fields, such as kinetic arts, gamification, sound, web development, web design, information architecture, and others. They are typically techies, artists and cultural and media producers able to think critically of technology both as a tool to mitigate challenges for critical knowledge and art making and proliferation, but also as a source of renewed challenges. Hosted residents will enter in conversations with each other and with ADEF’s community aimed at sharpening their thinking of active propositions in response to prevalent challenges. Thematically, this year (2023) we are interested in hosting participants who can engage three issues. One issue is the state of the web today and its future, the trajectory from Web 1.0 to Web 3.0 and the free flow of information. A second issue is censorship circumvention in light of straight on governments’ blocking of websites, still prevalent and even renewed in the region, but also international corporations controlling the free flow of information which is primarily channeled today through social media platforms. A third residency is a textiles lab residency planned with Dutch hackspace Waag. Through this modality, we hope to identify the active individuals who have constantly enriched our conception of technology and hence the work of our surrounding communities. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":264,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/ADF01032.jpg\" alt=\"\" class=\"wp-image-264\"/></figure>\n<!-- /wp:image -->','Art and Culture','','publish','closed','closed','','art','','','2022-08-15 17:39:40','2022-08-15 15:39:40','',0,'http://home.adef.xyz/?page_id=105',0,'page','',0),(106,1,'2022-08-07 18:36:55','2022-08-07 16:36:55','<!-- wp:heading -->\n<h2>Art & Culture Unit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-columns alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stay updated and see our current exhibitions here.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get to know our opening times, ticket prices and discounts.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:heading -->\n<h2>Tech Unit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:paragraph -->\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://placehold.jp/400x400.png\" alt=\"\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:paragraph -->\n<p>Get to know our opening times, ticket prices and discounts</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->','Shabab','','inherit','closed','closed','','105-revision-v1','','','2022-08-07 18:36:55','2022-08-07 16:36:55','',105,'http://home.adef.xyz/?p=106',0,'revision','',0),(107,1,'2022-08-07 18:39:59','2022-08-07 16:39:59','<!-- wp:heading -->\n<h2>Art & Culture Unit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-columns alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stay updated and see our current exhibitions here.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get to know our opening times, ticket prices and discounts.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:heading -->\n<h2>Tech Unit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:paragraph -->\n<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. By Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://placehold.jp/400x400.png\" alt=\"\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:paragraph -->\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->','Shabab','','inherit','closed','closed','','105-revision-v1','','','2022-08-07 18:39:59','2022-08-07 16:39:59','',105,'http://home.adef.xyz/?p=107',0,'revision','',0),(108,1,'2022-08-07 18:41:19','2022-08-07 16:41:19','<div class=\"w-75 m-auto\"></div>\n\n<!-- wp:heading -->\n<h2>Art & Culture Unit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-columns alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stay updated and see our current exhibitions here.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get to know our opening times, ticket prices and discounts.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:heading -->\n<h2>Tech Unit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:paragraph -->\n<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. By Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://placehold.jp/400x400.png\" alt=\"\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:paragraph -->\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n','Shabab','','inherit','closed','closed','','105-revision-v1','','','2022-08-07 18:41:19','2022-08-07 16:41:19','',105,'http://home.adef.xyz/?p=108',0,'revision','',0),(110,1,'2022-08-07 18:46:47','2022-08-07 16:46:47','<div class=\"w-75 m-auto\"></div>\n\n<!-- wp:group {\"align\":\"full\"} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:heading -->\n<h2>Art & Culture Unit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-columns alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stay updated and see our current exhibitions here.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get to know our opening times, ticket prices and discounts.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:heading -->\n<h2>Tech Unit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:paragraph -->\n<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. By Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://placehold.jp/400x400.png\" alt=\"\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:paragraph -->\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n','Shabab','','inherit','closed','closed','','105-revision-v1','','','2022-08-07 18:46:47','2022-08-07 16:46:47','',105,'http://home.adef.xyz/?p=110',0,'revision','',0),(112,1,'2022-08-07 18:48:28','2022-08-07 16:48:28','<!-- wp:group {\"align\":\"full\"} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:heading -->\n<h2>Art & Culture Unit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-columns alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"w-75 m-auto\"} -->\n<p class=\"w-75 m-auto\">Get a virtual tour of the museum. Ideal for schools and events.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"w-75 m-auto\"} -->\n<div class=\"wp-block-column w-75 m-auto\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stay updated and see our current exhibitions here.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get to know our opening times, ticket prices and discounts.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:heading {\"className\":\"w-75 m-auto\"} -->\n<h2 class=\"w-75 m-auto\">Tech Unit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"className\":\"w-75 m-auto\"} -->\n<div class=\"wp-block-columns w-75 m-auto\"><!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:paragraph -->\n<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. By Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://placehold.jp/400x400.png\" alt=\"\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:paragraph -->\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->','Shabab','','inherit','closed','closed','','105-revision-v1','','','2022-08-07 18:48:28','2022-08-07 16:48:28','',105,'http://home.adef.xyz/?p=112',0,'revision','',0),(113,1,'2022-08-07 18:49:11','2022-08-07 16:49:11','<!-- wp:group {\"align\":\"full\"} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:heading {\"className\":\"w-75 m-auto\"} -->\n<h2 class=\"w-75 m-auto\">Art & Culture Unit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-columns alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"w-75 m-auto\"} -->\n<p class=\"w-75 m-auto\">Get a virtual tour of the museum. Ideal for schools and events.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"w-75 m-auto\"} -->\n<div class=\"wp-block-column w-75 m-auto\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stay updated and see our current exhibitions here.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get to know our opening times, ticket prices and discounts.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:heading {\"className\":\"w-75 m-auto\"} -->\n<h2 class=\"w-75 m-auto\">Tech Unit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"className\":\"w-75 m-auto\"} -->\n<div class=\"wp-block-columns w-75 m-auto\"><!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:paragraph -->\n<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. By Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://placehold.jp/400x400.png\" alt=\"\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:paragraph -->\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->','Shabab','','inherit','closed','closed','','105-revision-v1','','','2022-08-07 18:49:11','2022-08-07 16:49:11','',105,'http://home.adef.xyz/?p=113',0,'revision','',0),(116,1,'2022-08-07 19:08:09','2022-08-07 17:08:09','','Maf3al','An active platform to learn skills in the fields of audio, art, video, makers, storytelling and theater. On the platform, we publish videos that help you discover new interests and develop projects to express your dreams and ideas','publish','closed','closed','','maf3al','','','2022-08-10 14:58:20','2022-08-10 12:58:20','',0,'http://home.adef.xyz/?post_type=platform&p=116',0,'platform','',0),(117,1,'2022-08-07 19:09:11','2022-08-07 17:09:11','','Maf3al','An active platform to learn skills in the fields of audio, art, video, makers, storytelling and theater. On the platform, we publish videos that help you discover new interests and develop projects to express your dreams and ideas','inherit','closed','closed','','116-autosave-v1','','','2022-08-07 19:09:11','2022-08-07 17:09:11','',116,'http://home.adef.xyz/?p=117',0,'revision','',0),(118,1,'2022-08-07 19:27:11','2022-08-07 17:27:11','<!-- wp:paragraph -->\n<p>The ADEF flagship on-site digital expression camps that started off the entire endeavor of ADEF, whereby youth from the region, aging 12 to 15 and 16 to 19; come together to learn experientially how to express themselves through a well-designed learning environment. <a href=\"http://camps.adef.xyz\" data-type=\"URL\" data-id=\"camps.adef.xyz\">website</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":257,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/DSC03054.jpg\" alt=\"\" class=\"wp-image-257\"/></figure>\n<!-- /wp:image -->','Camps','','publish','closed','closed','','camps','','','2022-08-15 17:20:46','2022-08-15 15:20:46','',0,'http://home.adef.xyz/?page_id=118',0,'page','',0),(119,1,'2022-08-07 19:27:11','2022-08-07 17:27:11','<!-- wp:heading -->\n<h2>Why do we use it?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Where does it come from?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Where can I get some?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>\n<!-- /wp:paragraph -->','Camps','','inherit','closed','closed','','118-revision-v1','','','2022-08-07 19:27:11','2022-08-07 17:27:11','',118,'http://home.adef.xyz/?p=119',0,'revision','',0),(120,1,'2022-08-07 20:48:52','2022-08-07 18:48:52','<!-- wp:html -->\n<p class=\"my-3\">Come true To enable using information technology Add that you cannot you see By definition, you can\'t Unless the tools and the knowledge related to them are free. It is not limited to acquiring the ability to use tools, but requires that it be combined with yours tools, and the ability to study them in order to learn from them how they work and are made, and the ability to my purpose until lu amending them for the purpose of correcting their shortcomings, improving them or adapting them to any Unrecognized by the original manufacturer of the tool, as well as the ability to transfer tools and knowledge m relating thereto, in their original or development, to others to enable them, too</p>\n<!-- /wp:html -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"className\":\"w-75 m-auto\"} -->\n<figure class=\"wp-block-image size-large w-75 m-auto\"><img src=\"https://egyptianstreets.com/wp-content/uploads/2019/08/64740459_2345318778859098_3453769548459671552_o-1.jpg\" alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:html -->\n<p class=\"my-3\">Come true To enable using information technology Add that you cannot you see By definition, you can\'t Unless the tools and the knowledge related to them are free. It is not limited to acquiring the ability to use tools, but requires that it be combined with yours tools, and the ability to study them in order to learn from them how they work and are made, and the ability to my purpose until lu amending them for the purpose of correcting their shortcomings, improving them or adapting them to any Unrecognized by the original manufacturer of the tool, as well as the ability to transfer tools and knowledge m relating thereto, in their original or development, to others to enable them, too</p>\n<!-- /wp:html -->','About ADEF','','inherit','closed','closed','','89-revision-v1','','','2022-08-07 20:48:52','2022-08-07 18:48:52','',89,'http://home.adef.xyz/?p=120',0,'revision','',0),(121,1,'2022-08-07 20:52:51','2022-08-07 18:52:51','<!-- wp:group {\"align\":\"full\"} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:heading {\"className\":\"w-75 m-auto\"} -->\n<h2 class=\"w-75 m-auto\">Art & Culture Unit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-columns alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"w-75 m-auto\"} -->\n<p class=\"w-75 m-auto\">Get a virtual tour of the museum. Ideal for schools and events.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"w-75 m-auto\"} -->\n<div class=\"wp-block-column w-75 m-auto\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stay updated and see our current exhibitions here.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get to know our opening times, ticket prices and discounts.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:heading {\"className\":\"w-75 m-auto\"} -->\n<h2 class=\"w-75 m-auto\">Tech Unit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"verticalAlignment\":null} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33.33%\"><!-- wp:image {\"width\":270,\"height\":151,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://www.fillmurray.com/640/360\" alt=\"\" width=\"270\" height=\"151\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:heading -->\n<h2>Why do we use it?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->','Shabab','','inherit','closed','closed','','105-revision-v1','','','2022-08-07 20:52:51','2022-08-07 18:52:51','',105,'http://home.adef.xyz/?p=121',0,'revision','',0),(122,1,'2022-08-07 20:53:48','2022-08-07 18:53:48','<!-- wp:group {\"align\":\"full\"} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:heading {\"className\":\"w-75 m-auto\"} -->\n<h2 class=\"w-75 m-auto\">Art & Culture Unit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-columns alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"className\":\"w-75 m-auto\"} -->\n<p class=\"w-75 m-auto\">Get a virtual tour of the museum. Ideal for schools and events.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"w-75 m-auto\"} -->\n<div class=\"wp-block-column w-75 m-auto\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stay updated and see our current exhibitions here.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get to know our opening times, ticket prices and discounts.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:heading {\"className\":\"w-75 m-auto\"} -->\n<h2 class=\"w-75 m-auto\">Tech Unit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"verticalAlignment\":null} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33.33%\"><!-- wp:cover {\"url\":\"https://www.fillmurray.com/640/360\",\"dimRatio\":50,\"isDark\":false,\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover is-light\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://www.fillmurray.com/640/360\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\"></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:heading -->\n<h2>Why do we use it?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->','Shabab','','inherit','closed','closed','','105-revision-v1','','','2022-08-07 20:53:48','2022-08-07 18:53:48','',105,'http://home.adef.xyz/?p=122',0,'revision','',0),(124,1,'2022-08-07 20:58:00','2022-08-07 18:58:00','<!-- wp:group {\"align\":\"full\"} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:heading {\"className\":\"w-75 m-auto\"} -->\n<h2 class=\"w-75 m-auto\">Art & Culture Unit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://loremflickr.com/640/360\" alt=\"\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://placekitten.com/640/360\" alt=\"\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:heading {\"className\":\"w-75 m-auto\"} -->\n<h2 class=\"w-75 m-auto\">Tech Unit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"verticalAlignment\":null} -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33.33%\"><!-- wp:cover {\"url\":\"https://www.fillmurray.com/640/360\",\"dimRatio\":50,\"isDark\":false,\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover is-light\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://www.fillmurray.com/640/360\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\"></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:heading -->\n<h2>Why do we use it?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->','Shabab','','inherit','closed','closed','','105-revision-v1','','','2022-08-07 20:58:00','2022-08-07 18:58:00','',105,'http://home.adef.xyz/?p=124',0,'revision','',0),(126,1,'2022-08-07 21:06:30','2022-08-07 19:06:30','<!-- wp:group {\"align\":\"full\"} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:heading -->\n<h2>Art & Culture Unit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://loremflickr.com/640/360\" alt=\"\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://placekitten.com/640/360\" alt=\"\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:heading -->\n<h2>Tech Unit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33.33%\"><!-- wp:cover {\"url\":\"https://www.fillmurray.com/640/360\",\"dimRatio\":50,\"isDark\":false,\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover is-light\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://www.fillmurray.com/640/360\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\"></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:heading -->\n<h2>Why do we use it?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->','Shabab','','inherit','closed','closed','','105-revision-v1','','','2022-08-07 21:06:30','2022-08-07 19:06:30','',105,'http://home.adef.xyz/?p=126',0,'revision','',0),(128,1,'2022-08-07 21:10:19','2022-08-07 19:10:19','<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://upload.wikimedia.org/wikipedia/commons/e/e5/Adef_logo.svg\" width=\"100\" alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://upload.wikimedia.org/wikipedia/commons/e/e5/Adef_logo.svg\" alt=\"\"/></figure>\n<!-- /wp:image -->','','','inherit','closed','closed','','72-revision-v1','','','2022-08-07 21:10:19','2022-08-07 19:10:19','',72,'http://home.adef.xyz/?p=128',0,'revision','',0),(129,1,'2022-08-08 15:04:42','2022-08-08 13:04:42','','Mal3ab','There is no fixed definition of what a game is. It varies based on who defines it and what game is being used as an example or reference. It is completely different depending on who is trying to identify.','publish','closed','closed','','mal3ab','','','2022-08-10 14:57:41','2022-08-10 12:57:41','',0,'http://home.adef.xyz/?post_type=platform&p=129',0,'platform','',0),(132,1,'2022-08-09 14:25:30','2022-08-09 12:25:30','<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://upload.wikimedia.org/wikipedia/commons/e/e5/Adef_logo.svg\" width=\"100\" alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://dummyimage.com/640x360/fff/aaa\n\" alt=\"\"/></figure>\n<!-- /wp:image -->','','','inherit','closed','closed','','72-revision-v1','','','2022-08-09 14:25:30','2022-08-09 12:25:30','',72,'http://home.adef.xyz/?p=132',0,'revision','',0),(133,1,'2022-08-09 14:25:59','2022-08-09 12:25:59','<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://upload.wikimedia.org/wikipedia/commons/e/e5/Adef_logo.svg\" width=\"100\" alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"width\":837,\"height\":471,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://dummyimage.com/640x360/fff/aaa\n\" alt=\"\" width=\"837\" height=\"471\"/></figure>\n<!-- /wp:image -->','','','inherit','closed','closed','','72-revision-v1','','','2022-08-09 14:25:59','2022-08-09 12:25:59','',72,'http://home.adef.xyz/?p=133',0,'revision','',0),(136,1,'2022-08-09 14:30:16','2022-08-09 12:30:16','<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://upload.wikimedia.org/wikipedia/commons/e/e5/Adef_logo.svg\" width=\"100\" alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"width\":837,\"height\":471,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://dummyimage.com/640x360/800080/aaa\n\" alt=\"\" width=\"837\" height=\"471\"/></figure>\n<!-- /wp:image -->','','','inherit','closed','closed','','72-revision-v1','','','2022-08-09 14:30:16','2022-08-09 12:30:16','',72,'http://home.adef.xyz/?p=136',0,'revision','',0),(137,1,'2022-08-09 14:30:33','2022-08-09 12:30:33','<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://upload.wikimedia.org/wikipedia/commons/e/e5/Adef_logo.svg\" width=\"100\" alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"width\":837,\"height\":471,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://dummyimage.com/640x360/ddd/aaa\n\" alt=\"\" width=\"837\" height=\"471\"/></figure>\n<!-- /wp:image -->','','','inherit','closed','closed','','72-revision-v1','','','2022-08-09 14:30:33','2022-08-09 12:30:33','',72,'http://home.adef.xyz/?p=137',0,'revision','',0),(139,1,'2022-08-09 14:43:58','2022-08-09 12:43:58','','aaa','','inherit','open','closed','','aaa-2','','','2022-08-09 14:43:58','2022-08-09 12:43:58','',0,'http://home.adef.xyz/wp-content/uploads/2022/07/aaa-1.png',0,'attachment','image/png',0),(140,1,'2022-08-09 14:44:54','2022-08-09 12:44:54','','aaa','','inherit','open','closed','','aaa-3','','','2022-08-09 14:44:54','2022-08-09 12:44:54','',0,'http://home.adef.xyz/wp-content/uploads/2022/08/aaa.png',0,'attachment','image/png',0),(141,1,'2022-08-09 15:01:47','2022-08-09 13:01:47','','Hackerspaceworkshop','','inherit','open','closed','','hackerspaceworkshop','','','2022-08-09 15:01:47','2022-08-09 13:01:47','',0,'http://home.adef.xyz/wp-content/uploads/2022/07/Hackerspaceworkshop.jpg',0,'attachment','image/jpeg',0),(143,1,'2022-08-09 15:32:31','2022-08-09 13:32:31','<!-- wp:group {\"align\":\"full\"} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:heading -->\n<h2>Art & Culture Unit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://loremflickr.com/640/360\" alt=\"\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://placekitten.com/640/360\" alt=\"\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:heading -->\n<h2>Tech Unit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33.33%\"><!-- wp:cover {\"url\":\"https://www.fillmurray.com/640/360\",\"dimRatio\":50,\"isDark\":false,\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover is-light\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://www.fillmurray.com/640/360\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\"></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:heading -->\n<h2>Why do we use it?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->','Art & Culture','','inherit','closed','closed','','105-revision-v1','','','2022-08-09 15:32:31','2022-08-09 13:32:31','',105,'http://home.adef.xyz/?p=143',0,'revision','',0),(144,1,'2022-08-09 15:35:10','2022-08-09 13:35:10','<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>This is a prolonged training program - 6 to 8 months - that takes place every year with the goal of training new techies and developing their skills in three technical specializations: networking, programming and data science. Moving forward, trainees will take part in specialized workshops surrounding specific projects, for which they should develop solutions. These projects serve both ADEF and partner institutions’ needs, as we aim at the development of four to five technical projects each year. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Training Program (Nawwah Tekania): </strong>A prolonged training program -6 to 8 months- that takes place every year with the goal of training new technicians and developing their skills in three technical specializations:networking, programming and data science.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>T<strong>ech Factory:</strong> Specialized training rounds for each track which can be considered as workshops to produce specific projects. Whether it is needed for ADEF’s programs or for partner institutions and individuals. The workshops include trainees who have passed the first level of a Nawwah Tekania and are supervised by a group of applied technicians.The trainees at the Tech Factory are paid to work on specific projects, under the guidance of specialized developers.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><strong>Collaborative Events: </strong>such as a creative tech camp or other networking, communication and promotion projects of the unit\'s products.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":262,\"width\":839,\"height\":559,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/260302368_4820347041356247_6742573170314284590_n.jpg\" alt=\"\" class=\"wp-image-262\" width=\"839\" height=\"559\"/></figure>\n<!-- /wp:image -->','Tech','','publish','closed','closed','','tech','','','2022-08-15 17:32:12','2022-08-15 15:32:12','',0,'http://home.adef.xyz/?page_id=144',0,'page','',0),(145,1,'2022-08-09 15:35:10','2022-08-09 13:35:10','<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading -->\n<h2>What is Lorem Ipsum?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading -->\n<h2>Why do we use it?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->','Tech','','inherit','closed','closed','','144-revision-v1','','','2022-08-09 15:35:10','2022-08-09 13:35:10','',144,'http://home.adef.xyz/?p=145',0,'revision','',0),(146,1,'2022-08-09 15:36:58','2022-08-09 13:36:58','<!-- wp:group {\"align\":\"full\"} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:heading -->\n<h2>Art & Culture Unit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"\"} -->\n<div class=\"wp-block-column\"><!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://loremflickr.com/640/360\" alt=\"\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://placekitten.com/640/360\" alt=\"\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:heading -->\n<h2>Tech Unit</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33.33%\"><!-- wp:cover {\"url\":\"https://www.fillmurray.com/640/360\",\"dimRatio\":50,\"isDark\":false,\"style\":{\"color\":{}}} -->\n<div class=\"wp-block-cover is-light\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://www.fillmurray.com/640/360\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\"></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\"><!-- wp:heading -->\n<h2>Why do we use it?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->','Art and Culture','','inherit','closed','closed','','105-revision-v1','','','2022-08-09 15:36:58','2022-08-09 13:36:58','',105,'http://home.adef.xyz/?p=146',0,'revision','',0),(149,1,'2022-08-10 12:46:06','2022-08-10 10:46:06','','عن أضف','','publish','closed','closed','','about-ar','','','2022-08-12 16:33:33','2022-08-12 14:33:33','',0,'http://home.adef.xyz/?page_id=149',0,'page','',0),(150,1,'2022-08-10 12:46:06','2022-08-10 10:46:06','','عن أضف','','inherit','closed','closed','','149-revision-v1','','','2022-08-10 12:46:06','2022-08-10 10:46:06','',149,'http://home.adef.xyz/?p=150',0,'revision','',0),(151,1,'2022-08-10 14:58:06','2022-08-10 12:58:06','','ملعب','ملعب','publish','closed','closed','','%d9%85%d9%84%d8%b9%d8%a8','','','2022-08-10 14:59:39','2022-08-10 12:59:39','',0,'http://home.adef.xyz/?post_type=platform&p=151',0,'platform','',0),(152,1,'2022-08-10 15:52:21','2022-08-10 13:52:21','','adef-logo-png','','inherit','open','closed','','adef-logo-png','','','2022-08-10 15:52:21','2022-08-10 13:52:21','',72,'http://home.adef.xyz/wp-content/uploads/2022/08/adef-logo-png.png',0,'attachment','image/png',0),(153,1,'2022-08-10 15:52:24','2022-08-10 13:52:24','<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://upload.wikimedia.org/wikipedia/commons/e/e5/Adef_logo.svg\" width=\"100\" alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":152,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/adef-logo-png-1024x668.png\" alt=\"\" class=\"wp-image-152\"/></figure>\n<!-- /wp:image -->','','','inherit','closed','closed','','72-revision-v1','','','2022-08-10 15:52:24','2022-08-10 13:52:24','',72,'http://home.adef.xyz/?p=153',0,'revision','',0),(155,1,'2022-08-10 15:58:55','2022-08-10 13:58:55','','Adef','','inherit','open','closed','','adef','','','2022-08-10 15:58:55','2022-08-10 13:58:55','',72,'http://home.adef.xyz/wp-content/uploads/2022/08/Adef.png',0,'attachment','image/png',0),(156,1,'2022-08-10 16:01:18','2022-08-10 14:01:18','','Adef-1','','inherit','open','closed','','adef-1','','','2022-08-10 16:01:18','2022-08-10 14:01:18','',72,'http://home.adef.xyz/wp-content/uploads/2022/08/Adef-1.png',0,'attachment','image/png',0),(157,1,'2022-08-10 16:02:43','2022-08-10 14:02:43','','Adef-2','','inherit','open','closed','','adef-2','','','2022-08-10 16:02:43','2022-08-10 14:02:43','',72,'http://home.adef.xyz/wp-content/uploads/2022/08/Adef-2.png',0,'attachment','image/png',0),(158,1,'2022-08-10 16:03:02','2022-08-10 14:03:02','<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://upload.wikimedia.org/wikipedia/commons/e/e5/Adef_logo.svg\" width=\"100\" alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:gallery {\"linkTo\":\"none\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":157,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/Adef-2-1024x668.png\" alt=\"\" class=\"wp-image-157\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->','','','inherit','closed','closed','','72-revision-v1','','','2022-08-10 16:03:02','2022-08-10 14:03:02','',72,'http://home.adef.xyz/?p=158',0,'revision','',0),(159,1,'2022-08-10 16:04:22','2022-08-10 14:04:22','','Adef-3','','inherit','open','closed','','adef-3','','','2022-08-10 16:04:22','2022-08-10 14:04:22','',72,'http://home.adef.xyz/wp-content/uploads/2022/08/Adef-3.png',0,'attachment','image/png',0),(160,1,'2022-08-10 16:04:28','2022-08-10 14:04:28','<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://upload.wikimedia.org/wikipedia/commons/e/e5/Adef_logo.svg\" width=\"100\" alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:gallery {\"linkTo\":\"none\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":159,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/Adef-3-1024x668.png\" alt=\"\" class=\"wp-image-159\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->','','','inherit','closed','closed','','72-revision-v1','','','2022-08-10 16:04:28','2022-08-10 14:04:28','',72,'http://home.adef.xyz/?p=160',0,'revision','',0),(161,1,'2022-08-10 16:05:22','2022-08-10 14:05:22','','Adef-4','','inherit','open','closed','','adef-4','','','2022-08-10 16:05:22','2022-08-10 14:05:22','',72,'http://home.adef.xyz/wp-content/uploads/2022/08/Adef-4.png',0,'attachment','image/png',0),(162,1,'2022-08-10 16:05:26','2022-08-10 14:05:26','<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://upload.wikimedia.org/wikipedia/commons/e/e5/Adef_logo.svg\" width=\"100\" alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:gallery {\"linkTo\":\"none\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":161,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/Adef-4-1024x668.png\" alt=\"\" class=\"wp-image-161\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->','','','inherit','closed','closed','','72-revision-v1','','','2022-08-10 16:05:26','2022-08-10 14:05:26','',72,'http://home.adef.xyz/?p=162',0,'revision','',0),(163,1,'2022-08-10 16:06:00','2022-08-10 14:06:00','','Adef-5','','inherit','open','closed','','adef-5','','','2022-08-10 16:06:00','2022-08-10 14:06:00','',72,'http://home.adef.xyz/wp-content/uploads/2022/08/Adef-5.png',0,'attachment','image/png',0),(164,1,'2022-08-10 16:06:03','2022-08-10 14:06:03','<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://upload.wikimedia.org/wikipedia/commons/e/e5/Adef_logo.svg\" width=\"100\" alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:gallery {\"linkTo\":\"none\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":163,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/Adef-5.png\" alt=\"\" class=\"wp-image-163\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->','','','inherit','closed','closed','','72-revision-v1','','','2022-08-10 16:06:03','2022-08-10 14:06:03','',72,'http://home.adef.xyz/?p=164',0,'revision','',0),(165,1,'2022-08-10 16:10:21','2022-08-10 14:10:21','','Adef-6','','inherit','open','closed','','adef-6','','','2022-08-10 16:10:21','2022-08-10 14:10:21','',72,'http://home.adef.xyz/wp-content/uploads/2022/08/Adef-6.png',0,'attachment','image/png',0),(166,1,'2022-08-10 16:10:38','2022-08-10 14:10:38','<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://upload.wikimedia.org/wikipedia/commons/e/e5/Adef_logo.svg\" width=\"100\" alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:gallery {\"linkTo\":\"none\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":165,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/Adef-6.png\" alt=\"\" class=\"wp-image-165\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->','','','inherit','closed','closed','','72-revision-v1','','','2022-08-10 16:10:38','2022-08-10 14:10:38','',72,'http://home.adef.xyz/?p=166',0,'revision','',0),(167,1,'2022-08-10 16:12:42','2022-08-10 14:12:42','','Adef-7','','inherit','open','closed','','adef-7','','','2022-08-10 16:12:42','2022-08-10 14:12:42','',72,'http://home.adef.xyz/wp-content/uploads/2022/08/Adef-7.png',0,'attachment','image/png',0),(168,1,'2022-08-10 16:12:45','2022-08-10 14:12:45','<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://upload.wikimedia.org/wikipedia/commons/e/e5/Adef_logo.svg\" width=\"100\" alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:gallery {\"linkTo\":\"none\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":167,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/Adef-7.png\" alt=\"\" class=\"wp-image-167\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->','','','inherit','closed','closed','','72-revision-v1','','','2022-08-10 16:12:45','2022-08-10 14:12:45','',72,'http://home.adef.xyz/?p=168',0,'revision','',0),(169,1,'2022-08-10 16:14:57','2022-08-10 14:14:57','','Adef-7','','inherit','open','closed','','adef-7-2','','','2022-08-10 16:14:57','2022-08-10 14:14:57','',0,'http://home.adef.xyz/wp-content/uploads/2022/08/Adef-7-edited.png',0,'attachment','image/png',0),(170,1,'2022-08-10 16:15:00','2022-08-10 14:15:00','<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://upload.wikimedia.org/wikipedia/commons/e/e5/Adef_logo.svg\" width=\"100\" alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:gallery {\"linkTo\":\"none\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":169,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/Adef-7-edited.png\" alt=\"\" class=\"wp-image-169\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->','','','inherit','closed','closed','','72-revision-v1','','','2022-08-10 16:15:00','2022-08-10 14:15:00','',72,'http://home.adef.xyz/?p=170',0,'revision','',0),(171,1,'2022-08-11 13:57:13','2022-08-11 11:57:13','<!-- wp:paragraph -->\n<p>مرحبًا بك في WordPress. هذه تدوينتك الأولى. حررها أو احذفها ، ثم ابدأ الكتابة! مرحبًا بك في WordPress. هذه تدوينتك الأولى. حررها أو احذفها ، ثم ابدأ الكتابة!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>مرحبًا بك في WordPress. هذه تدوينتك الأولى. حررها أو احذفها ، ثم ابدأ الكتابة! مرحبًا بك في WordPress. هذه تدوينتك الأولى. حررها أو احذفها ، ثم ابدأ الكتابة! مرحبًا بك في WordPress. هذه تدوينتك الأولى. حررها أو احذفها ، ثم ابدأ الكتابة!</p>\n<!-- /wp:paragraph -->','مرحبا بالعالم','','inherit','closed','closed','','76-revision-v1','','','2022-08-11 13:57:13','2022-08-11 11:57:13','',76,'http://home.adef.xyz/?p=171',0,'revision','',0),(172,1,'2022-08-11 13:57:37','2022-08-11 11:57:37','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing! Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing! Welcome to WordPress. This is your first post. Edit or delete it, then start writing!Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world','','inherit','closed','closed','','78-revision-v1','','','2022-08-11 13:57:37','2022-08-11 11:57:37','',78,'http://home.adef.xyz/?p=172',0,'revision','',0),(173,1,'2022-08-11 13:59:20','2022-08-11 11:59:20','<!-- wp:gallery {\"linkTo\":\"none\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":169,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/Adef-7-edited.png\" alt=\"\" class=\"wp-image-169\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->','','','inherit','closed','closed','','72-revision-v1','','','2022-08-11 13:59:20','2022-08-11 11:59:20','',72,'http://home.adef.xyz/?p=173',0,'revision','',0),(175,1,'2022-08-11 14:42:21','2022-08-11 12:42:21','<!-- wp:paragraph -->\n<p>ADEF is a non-profit foundation registered in 2009 at the Egyptian Ministry of Social Solidary License number 7734-2009 which aims to enable teens and youth through fostering environments for education and learning, supporting free culture, developing capacity, and building knowledge tools in Arabic language.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Vision</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong><br></strong>Independent individuals and groups, who are active, expressive, and producers of knowledge for the benefit of their societies.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Mission</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Promoting creative uses of information technology, and the dissemination of the concepts and practices of free culture, and supporting initiatives which aim to produce free Arabic knowledge using free tools.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ADEF is a multidimensional organization that creates spaces and fosters environments for expression and progressive learning. It enhances skills and develops knowledge tools to support and empower groups and individuals to strengthen their practices and engagement with their society. Its mission is to build youth communities through experiential learning, promote the creative uses of technology, and support initiatives that aim to produce free and open critical Arabic knowledge. ADEF works with teenagers and youth, individuals and groups, who are active and critical and can express themselves and produce knowledge for the benefit of their society. Its work has expanded across Egypt, Lebanon, Tunisia, Palestine and Berlin and with youth and young professionals from at least 13 Arab countries.<br>ADEF was born 15 years ago at a time where the Internet started opening itself up as a space of possibility around the world. Tapping into that space, and the broader digital technologies surrounding it, ADEF embarked on a venture to explore how knowledge can be assembled, mediated, disseminated freely and critically through this opening. Centering itself primarily on a progressive educational program, alongside thematic knowledge creation, technical support for knowledge production, and broader community creation and support around shared issues and concerns, ADEF became a key player in open-source, digitally mediated knowledge production in the Arab region.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ADEF was officially founded in 2009 as a non-profit organization registered at the Egyptian Ministry of Social Solidary License number 7734-2009 with the aim to create experiences that enhance self-exploration, creative self-expression and critical thinking for youth in the<br>MENA region. ADEF became a key player in open-source, digitally mediated knowledge<br>production in the Arab region with a reputation of being one of the few cultural spaces that respects free culture and fights for a more progressive, accessible and modern educational system. ADEF prides itself on its dedicated community of artists and techies that continue to generously share their knowledge and work to new generations to continue to build a more diverse cultural sector with actors who can express themselves freely through art and technology.<br>ADEF also caters to an evolving shared new Arab identity and culture that has evolved with the internet and rise in use of technology. This identity does not unfold from a top-bottom approach but from a grassroot one, i.e. a product of proximity, shared experience and interests. ADEF’s functions, including the camps, the residencies, the trainings and the workshops, become a space to tap into identity and explore it, while creating an environment of acceptance and diversity.<br>To develop 21st century skills, ADEF challenges the lack of diversity in the cultural sector and limited mobility by bringing a diversity of youth together.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>ADEF aims at:</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Promoting heightened and distinguished Arab youth expression in their surrounding evolving contexts</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Supporting general critical knowledge production, among young professional artists, journalists, researchers and other culture actors</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Creating spaces for expression and knowledge making to unfold and thrive</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fostering communities where collaborations, exchanges, mutual learning can be developed as a backbone for critical narrative making</p>\n<!-- /wp:paragraph -->','About ADEF','','inherit','closed','closed','','89-revision-v1','','','2022-08-11 14:42:21','2022-08-11 12:42:21','',89,'http://home.adef.xyz/?p=175',0,'revision','',0),(176,1,'2022-08-11 14:43:24','2022-08-11 12:43:24','<!-- wp:paragraph -->\n<p>ADEF is a non-profit foundation registered in 2009 at the Egyptian Ministry of Social Solidary License number 7734-2009 which aims to enable teens and youth through fostering environments for education and learning, supporting free culture, developing capacity, and building knowledge tools in Arabic language.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Vision</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong><br></strong>Independent individuals and groups, who are active, expressive, and producers of knowledge for the benefit of their societies.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Mission</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Promoting creative uses of information technology, and the dissemination of the concepts and practices of free culture, and supporting initiatives which aim to produce free Arabic knowledge using free tools.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ADEF is a multidimensional organization that creates spaces and fosters environments for expression and progressive learning. It enhances skills and develops knowledge tools to support and empower groups and individuals to strengthen their practices and engagement with their society. Its mission is to build youth communities through experiential learning, promote the creative uses of technology, and support initiatives that aim to produce free and open critical Arabic knowledge. ADEF works with teenagers and youth, individuals and groups, who are active and critical and can express themselves and produce knowledge for the benefit of their society. Its work has expanded across Egypt, Lebanon, Tunisia, Palestine and Berlin and with youth and young professionals from at least 13 Arab countries.<br>ADEF was born 15 years ago at a time where the Internet started opening itself up as a space of possibility around the world. Tapping into that space, and the broader digital technologies surrounding it, ADEF embarked on a venture to explore how knowledge can be assembled, mediated, disseminated freely and critically through this opening. Centering itself primarily on a progressive educational program, alongside thematic knowledge creation, technical support for knowledge production, and broader community creation and support around shared issues and concerns, ADEF became a key player in open-source, digitally mediated knowledge production in the Arab region.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ADEF was officially founded in 2009 as a non-profit organization registered at the Egyptian Ministry of Social Solidary License number 7734-2009 with the aim to create experiences that enhance self-exploration, creative self-expression and critical thinking for youth in the<br>MENA region. ADEF became a key player in open-source, digitally mediated knowledge<br>production in the Arab region with a reputation of being one of the few cultural spaces that respects free culture and fights for a more progressive, accessible and modern educational system. ADEF prides itself on its dedicated community of artists and techies that continue to generously share their knowledge and work to new generations to continue to build a more diverse cultural sector with actors who can express themselves freely through art and technology.<br>ADEF also caters to an evolving shared new Arab identity and culture that has evolved with the internet and rise in use of technology. This identity does not unfold from a top-bottom approach but from a grassroot one, i.e. a product of proximity, shared experience and interests. ADEF’s functions, including the camps, the residencies, the trainings and the workshops, become a space to tap into identity and explore it, while creating an environment of acceptance and diversity.<br>To develop 21st century skills, ADEF challenges the lack of diversity in the cultural sector and limited mobility by bringing a diversity of youth together.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>ADEF aims at:</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Promoting heightened and distinguished Arab youth expression in their surrounding evolving contexts</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Supporting general critical knowledge production, among young professional artists, journalists, researchers and other culture actors</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Creating spaces for expression and knowledge making to unfold and thrive</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Fostering communities where collaborations, exchanges, mutual learning can be developed as a backbone for critical narrative making</li></ul>\n<!-- /wp:list -->','About ADEF','','inherit','closed','closed','','89-revision-v1','','','2022-08-11 14:43:24','2022-08-11 12:43:24','',89,'http://home.adef.xyz/?p=176',0,'revision','',0),(177,1,'2022-08-11 14:53:42','2022-08-11 12:53:42','<!-- wp:gallery {\"linkTo\":\"none\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":169,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/Adef-7-edited.png\" alt=\"\" class=\"wp-image-169 w-75\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->','','','inherit','closed','closed','','72-revision-v1','','','2022-08-11 14:53:42','2022-08-11 12:53:42','',72,'http://home.adef.xyz/?p=177',0,'revision','',0),(178,1,'2022-08-11 14:54:12','2022-08-11 12:54:12','<!-- wp:gallery {\"linkTo\":\"none\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":169,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/Adef-7-edited.png\" alt=\"\" class=\"wp-image-169 w-50\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->','','','inherit','closed','closed','','72-revision-v1','','','2022-08-11 14:54:12','2022-08-11 12:54:12','',72,'http://home.adef.xyz/?p=178',0,'revision','',0),(179,1,'2022-08-11 14:55:24','2022-08-11 12:55:24','<!-- wp:gallery {\"linkTo\":\"none\",\"className\":\"d-flex align-items-center\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped d-flex align-items-center\"><!-- wp:image {\"id\":169,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/Adef-7-edited.png\" alt=\"\" class=\"wp-image-169 w-50\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->','','','inherit','closed','closed','','72-revision-v1','','','2022-08-11 14:55:24','2022-08-11 12:55:24','',72,'http://home.adef.xyz/?p=179',0,'revision','',0),(180,1,'2022-08-11 14:55:55','2022-08-11 12:55:55','<!-- wp:gallery {\"linkTo\":\"none\",\"className\":\"d-flex align-items-center vh-100\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped d-flex align-items-center vh-100\"><!-- wp:image {\"id\":169,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/Adef-7-edited.png\" alt=\"\" class=\"wp-image-169 w-50\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->','','','inherit','closed','closed','','72-revision-v1','','','2022-08-11 14:55:55','2022-08-11 12:55:55','',72,'http://home.adef.xyz/?p=180',0,'revision','',0),(181,1,'2022-08-11 14:56:06','2022-08-11 12:56:06','<!-- wp:gallery {\"linkTo\":\"none\",\"className\":\"d-flex align-items-center h-100\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped d-flex align-items-center h-100\"><!-- wp:image {\"id\":169,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/Adef-7-edited.png\" alt=\"\" class=\"wp-image-169 w-50\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->','','','inherit','closed','closed','','72-revision-v1','','','2022-08-11 14:56:06','2022-08-11 12:56:06','',72,'http://home.adef.xyz/?p=181',0,'revision','',0),(183,1,'2022-08-11 14:56:33','2022-08-11 12:56:33','<!-- wp:gallery {\"linkTo\":\"none\",\"className\":\"d-flex align-items-center vh-100\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped d-flex align-items-center vh-100\"><!-- wp:image {\"id\":169,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/Adef-7-edited.png\" alt=\"\" class=\"wp-image-169 w-50\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->','','','inherit','closed','closed','','72-revision-v1','','','2022-08-11 14:56:33','2022-08-11 12:56:33','',72,'http://home.adef.xyz/?p=183',0,'revision','',0),(185,1,'2022-08-11 14:58:32','2022-08-11 12:58:32','<!-- wp:gallery {\"linkTo\":\"none\",\"className\":\"d-flex align-items-center\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped d-flex align-items-center\"><!-- wp:image {\"id\":169,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/Adef-7-edited.png\" alt=\"\" class=\"wp-image-169 w-50\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->','','','inherit','closed','closed','','72-revision-v1','','','2022-08-11 14:58:32','2022-08-11 12:58:32','',72,'http://home.adef.xyz/?p=185',0,'revision','',0),(186,1,'2022-08-11 14:59:05','2022-08-11 12:59:05','<!-- wp:gallery {\"linkTo\":\"none\",\"className\":\"d-flex align-items-center h-100\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped d-flex align-items-center h-100\"><!-- wp:image {\"id\":169,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/Adef-7-edited.png\" alt=\"\" class=\"wp-image-169 w-50\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->','','','inherit','closed','closed','','72-revision-v1','','','2022-08-11 14:59:05','2022-08-11 12:59:05','',72,'http://home.adef.xyz/?p=186',0,'revision','',0),(187,1,'2022-08-11 14:59:30','2022-08-11 12:59:30','<!-- wp:gallery {\"linkTo\":\"none\",\"className\":\"d-flex align-items-center h-100\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped d-flex align-items-center h-100\"><!-- wp:image {\"id\":169,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large h-100\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/Adef-7-edited.png\" alt=\"\" class=\"wp-image-169 w-50\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->','','','inherit','closed','closed','','72-revision-v1','','','2022-08-11 14:59:30','2022-08-11 12:59:30','',72,'http://home.adef.xyz/?p=187',0,'revision','',0),(188,1,'2022-08-11 15:30:51','2022-08-11 13:30:51','<!-- wp:paragraph -->\n<p>The ADEF flagship on-site digital expression camps that started off the entire endeavor of ADEF, whereby youth from the region, aging 12 to 15 and 16 to 19; come together to learn experientially how to express themselves through a well-designed learning environment. <a href=\"http://camps.adef.xyz\" data-type=\"URL\" data-id=\"camps.adef.xyz\">website</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://via.placeholder.com/728x500.png\" alt=\"\"/></figure>\n<!-- /wp:image -->','Camps','','inherit','closed','closed','','118-revision-v1','','','2022-08-11 15:30:51','2022-08-11 13:30:51','',118,'http://home.adef.xyz/?p=188',0,'revision','',0),(189,1,'2022-08-11 15:30:51','2022-08-11 13:30:51','<!-- wp:gallery {\"linkTo\":\"none\",\"className\":\"d-flex align-items-center vh-100\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped d-flex align-items-center vh-100\"><!-- wp:image {\"id\":169,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/Adef-7-edited.png\" alt=\"\" class=\"wp-image-169 w-50\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->','','','inherit','closed','closed','','72-revision-v1','','','2022-08-11 15:30:51','2022-08-11 13:30:51','',72,'http://home.adef.xyz/?p=189',0,'revision','',0),(190,1,'2022-08-11 15:31:34','2022-08-11 13:31:34','<!-- wp:paragraph -->\n<p>The ADEF flagship on-site digital expression camps that started off the entire endeavor of ADEF, whereby youth from the region, aging 12 to 15 and 16 to 19; come together to learn experientially how to express themselves through a well-designed learning environment. <a href=\"http://camps.adef.xyz\" data-type=\"URL\" data-id=\"camps.adef.xyz\">website</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://via.placeholder.com/900x500.png\" alt=\"\"/></figure>\n<!-- /wp:image -->','Camps','','inherit','closed','closed','','118-revision-v1','','','2022-08-11 15:31:34','2022-08-11 13:31:34','',118,'http://home.adef.xyz/?p=190',0,'revision','',0),(191,1,'2022-08-11 15:32:38','2022-08-11 13:32:38','<!-- wp:paragraph -->\n<p>This is a continued Drosos funded project since 2015 in collaboration with eight community space partners impacting thousands of teens and hundreds of young professionals in Cairo, Giza, Alexandria, Luxor, Aswan and Asyut. Attendees of both schools are chosen based on their applications or nominations from their community and 70 percent of them come from underserved communities. The schools are an extension of the camps’ accumulated experience and a chance to take it to different spaces. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://placehold.jp/1024x768.png\" alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Schools','','inherit','closed','closed','','101-revision-v1','','','2022-08-11 15:32:38','2022-08-11 13:32:38','',101,'http://home.adef.xyz/?p=191',0,'revision','',0),(192,1,'2022-08-11 15:33:47','2022-08-11 13:33:47','<!-- wp:paragraph -->\n<p><strong>Yearly training of trainers:</strong> This is a yearly micro-camp program to prepare and equip young educators, artists, techies to work with younger folks on using technology for self expression and is also an opportunity for critical youth to engage and be inspired to collaborate together and produce their own projects. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Curricula development: </strong>These are collaboratively developed curricula that deal with arts, technology and self expression for youth and children, with topics covered including: video editing, sound design, music composition, visual design, computational thinking, machine learning and 3D modeling, printing, and costume/fashion creation. These curricula feed into our different learning outlets, including the camps and the winter and summer schools, and they are carefully designed through deep collaboration between techies, artists and educators. They are constantly updated, developed, and upgraded with new insights, tools and techniques in such ways to ensure relevance to surrounding contexts. All our curricula are in Arabic and are publicly accessible on the ADEF-wiki platform and other open access educational platforms. We believe that curricula should not be static documents but constantly evolving, collaborative and open resources. Our curricula are shaped through an ongoing and collaborative design process. ADEF already developed various curricula focused on video editing, sound design, music composition, visual design and computational thinking. These curricula have been constantly upgraded with new insights, tools and techniques. Recently ADEF has also developed curricula in machine learning and 3D modeling, printing, and costume/fashion creation. We have a lot of experience with the process of curriculum development. It is also important for our curricula to be in Arabic and to be made publicly accessible on the ADEF-wiki platform (what we mean by “open resources”) and other open access educational platforms. Having access to Arabic curricula on technology that is constantly updated means we cater to an audience of millions of youth who only speak/read Arabic. The current education system in Egypt looks at curricula as stagnant content that gets passed on to the future generations without critical thought. We view curricula as loose blueprints that leave room for learners to shape themselves: posing questions, giving them tools to research and gather information through independent research and collaboration rather than just detailed technical knowledge. Our goal is to have these curricula openly accessible to any trainers, facilitators, or hobbyists to use in the Arab world. This requires them to be detailed, not just regarding technical information but also the process of learning and acquiring knowledge independently through exercises, suggestions of time management, examples of resources used, references, and more.</p>\n<!-- /wp:paragraph -->','TOTs and Curricula Development','','publish','closed','closed','','tot','','','2022-08-15 17:40:58','2022-08-15 15:40:58','',0,'http://home.adef.xyz/?page_id=192',0,'page','',0),(193,1,'2022-08-11 15:33:47','2022-08-11 13:33:47','','TOTs','','inherit','closed','closed','','192-revision-v1','','','2022-08-11 15:33:47','2022-08-11 13:33:47','',192,'http://home.adef.xyz/?p=193',0,'revision','',0),(195,1,'2022-08-11 15:42:30','2022-08-11 13:42:30','<!-- wp:paragraph -->\n<p>This is a yearly micro-camp program to prepare and equip young educators, artists, techies to work with younger folks on using technology for self expression and is also an opportunity for critical youth to engage and be inspired to collaborate together and produce their own projects. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://via.placeholder.com/900x500.png\" alt=\"\"/></figure>\n<!-- /wp:image -->','TOTs','','inherit','closed','closed','','192-revision-v1','','','2022-08-11 15:42:30','2022-08-11 13:42:30','',192,'http://home.adef.xyz/?p=195',0,'revision','',0),(196,1,'2022-08-11 15:43:24','2022-08-11 13:43:24','<!-- wp:paragraph -->\n<p>This is a continued Drosos funded project since 2015 in collaboration with eight community space partners impacting thousands of teens and hundreds of young professionals in Cairo, Giza, Alexandria, Luxor, Aswan and Asyut. Attendees of both schools are chosen based on their applications or nominations from their community and 70 percent of them come from underserved communities. The schools are an extension of the camps’ accumulated experience and a chance to take it to different spaces. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://via.placeholder.com/900x500.png\" alt=\"\"/></figure>\n<!-- /wp:image -->','Schools','','inherit','closed','closed','','101-revision-v1','','','2022-08-11 15:43:24','2022-08-11 13:43:24','',101,'http://home.adef.xyz/?p=196',0,'revision','',0),(198,1,'2022-08-11 15:46:39','2022-08-11 13:46:39','<!-- wp:group {\"align\":\"full\"} -->\n<div class=\"wp-block-group alignfull\"></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Most of ADEF’s broader community members are themselves culture producers who express themselves through the art, bringing to the fore creative ways of addressing socio-political questions. Therefore, another key area of our work is centered on supporting them directly, as per their expressed needs, besides offering our own educational programming, and developing tech tools that aid processes of knowledge production. Such expressed needs include the need for a space and funding to develop their art and professionalize their practice to become more independent artists with a wider reach. This area of our work responds to their needs through the provision of grants, technical support and mentorship and provision of equipment, space and resources. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Activities include: </h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li><strong>Artist support program</strong>: Through our space, which boasts: a sound and dance studios, the video editing unit, sound electronics lab, makerspace with heavy equipment, textile lab, crafts and pottery lab, 3D printing lab, the residential space; our equipment, our community of practitioners who can contribute to ideation processes, and our institutional development experts who can help in fundraising and dissemination, we hope to steadily support five different artistic projects every year, be it authored by an artist, or by a cultural initiative or a partner organization. Groups we work with are normally artists and cultural practitioners having an active interest in technology in their practice and critical narratives in their concepts. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><strong>Artistic and cultural workshops program</strong>: This is one of the well-established traditional activities in ADEF where both teens and adults get to learn and interact with artistic and cultural skills and to participate in the manufacturing of artistic and cultural products in ADEF’s various spaces (hackspace, labs, sound studio, etc.).</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><strong>Open Spaces:</strong> It is a plan to expand the users of ADEF’s spaces, such as the sound and dance studios, the video editing unit, sound electronics lab, makers space with heavy equipment, textile lab, crafts and pottery lab, 3D printing lab, the residential space, etc, and making them available to a wider audience. The below visual shows all the spaces offered in our building in Mokattam, Cairo. In addition to offering the space and resources to our target audience, we are building towards an income-generation model through a program to rent these facilities to a wider audience. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><strong>Residency program</strong>: Three to four collective residencies are implemented throughout the year, aiming to bring together from 15 to 20 participants in different artistic, cultural and tech fields, such as kinetic arts, gamification, sound, web development, web design, information architecture, and others. They are typically techies, artists and cultural and media producers able to think critically of technology both as a tool to mitigate challenges for critical knowledge and art making and proliferation, but also as a source of renewed challenges. Hosted residents will enter in conversations with each other and with ADEF’s community aimed at sharpening their thinking of active propositions in response to prevalent challenges. Thematically, this year (2023) we are interested in hosting participants who can engage three issues. One issue is the state of the web today and its future, the trajectory from Web 1.0 to Web 3.0 and the free flow of information. A second issue is censorship circumvention in light of straight on governments’ blocking of websites, still prevalent and even renewed in the region, but also international corporations controlling the free flow of information which is primarily channeled today through social media platforms. A third residency is a textiles lab residency planned with Dutch hackspace Waag. Through this modality, we hope to identify the active individuals who have constantly enriched our conception of technology and hence the work of our surrounding communities. </li></ul>\n<!-- /wp:list -->','Art and Culture','','inherit','closed','closed','','105-revision-v1','','','2022-08-11 15:46:39','2022-08-11 13:46:39','',105,'http://home.adef.xyz/?p=198',0,'revision','',0),(199,1,'2022-08-11 15:49:00','2022-08-11 13:49:00','','Wiki ADEF','','publish','closed','closed','','wiki-adef','','','2022-08-11 15:49:00','2022-08-11 13:49:00','',0,'http://home.adef.xyz/?post_type=platform&p=199',0,'platform','',0),(201,1,'2022-08-11 17:00:18','2022-08-11 15:00:18','<!-- wp:paragraph -->\n<p>In the electronics hackspace you will find everything you need in tools and materials for all your technical and artistic projects. We have sensors, microcontrollers, motors, soldering tools, and miscellaneous materials. You may rent the space to work on your own projects or to organize and give a workshop of your own. You will be provided with a space to work and store your ongoing projects based on your needs. </p>\n<!-- /wp:paragraph -->','Electronics Hackerspace','','publish','closed','closed','','electronics-hackerspace','','','2022-08-11 17:08:55','2022-08-11 15:08:55','',0,'http://home.adef.xyz/?post_type=space&p=201',0,'space','',0),(202,1,'2022-08-11 17:00:12','2022-08-11 15:00:12','','Adef','','inherit','open','closed','','adef-8','','','2022-08-11 17:00:12','2022-08-11 15:00:12','',201,'http://home.adef.xyz/wp-content/uploads/2022/08/Adef-8.png',0,'attachment','image/png',0),(203,1,'2022-08-11 17:08:17','2022-08-11 15:08:17','','electronics.JPG','','inherit','open','closed','','electronics-jpg','','','2022-08-11 17:08:17','2022-08-11 15:08:17','',201,'http://home.adef.xyz/wp-content/uploads/2022/08/electronics.JPG.jpg',0,'attachment','image/jpeg',0),(204,1,'2022-08-11 17:09:28','2022-08-11 15:09:28','<!-- wp:paragraph -->\n<p>In the electronics hackspace you will find everything you need in tools and materials for all your technical and artistic projects. We have sensors, microcontrollers, motors, soldering tools, and miscellaneous materials. You may rent the space to work on your own projects or to organize and give a workshop of your own. You will be provided with a space to work and store your ongoing projects based on your needs. </p>\n<!-- /wp:paragraph -->','Electronics Hackerspace','','inherit','closed','closed','','201-autosave-v1','','','2022-08-11 17:09:28','2022-08-11 15:09:28','',201,'http://home.adef.xyz/?p=204',0,'revision','',0),(208,1,'2022-08-11 17:34:19','2022-08-11 15:34:19','','Entrance','','inherit','open','closed','','entrance','','','2022-08-11 17:34:19','2022-08-11 15:34:19','',0,'http://home.adef.xyz/wp-content/uploads/2022/08/Entrance.jpg',0,'attachment','image/jpeg',0),(213,1,'2022-08-11 17:35:33','2022-08-11 15:35:33','<!-- wp:paragraph -->\n<p>In the fabrication hackspace you find all the tools and materials needed to work on building from carpentry to metal working, mechanics, and mold making. There is also a large open space to work on large scale projects. You may rent the space to work on your own projects or to organize and give a workshop of your own. You will be provided with a space to work and store your ongoing projects based on your needs. </p>\n<!-- /wp:paragraph -->','Fabrication Hackspace','','publish','closed','closed','','fabrication-hackspace','','','2022-08-11 17:35:33','2022-08-11 15:35:33','',0,'http://home.adef.xyz/?post_type=space&p=213',0,'space','',0),(214,1,'2022-08-11 17:35:26','2022-08-11 15:35:26','','Heavy','','inherit','open','closed','','heavy-2','','','2022-08-11 17:35:26','2022-08-11 15:35:26','',213,'http://home.adef.xyz/wp-content/uploads/2022/08/Heavy-1.jpg',0,'attachment','image/jpeg',0),(215,1,'2022-08-11 17:37:27','2022-08-11 15:37:27','<!-- wp:paragraph -->\n<p>The mashghal is a makerspace specific to work in visual and applied arts, sculpting, design, as well as being specific to work in costume design and fabrication. It contains tools for leather working, sewing, foam smithing, 3D printing, painting, silk screen printing, and more. You may rent the space to work on your own projects or to organize and give a workshop of your own. You will be provided with a space to work and store your ongoing projects based on your needs.</p>\n<!-- /wp:paragraph -->','Mashghal','','publish','closed','closed','','mashghal','','','2022-08-11 17:37:34','2022-08-11 15:37:34','',0,'http://home.adef.xyz/?post_type=space&p=215',0,'space','',0),(216,1,'2022-08-11 17:36:41','2022-08-11 15:36:41','','mashghal temp','','inherit','open','closed','','mashghal-temp-2','','','2022-08-11 17:36:41','2022-08-11 15:36:41','',215,'http://home.adef.xyz/wp-content/uploads/2022/08/mashghal-temp-1.jpg',0,'attachment','image/jpeg',0),(217,1,'2022-08-11 17:41:17','2022-08-11 15:41:17','<!-- wp:paragraph -->\n<p>This room contains our 3D printers and other digital fabrication machines for use in all your projects blah blah blah</p>\n<!-- /wp:paragraph -->','Machines Room','','publish','closed','closed','','machines-room','','','2022-08-11 17:41:18','2022-08-11 15:41:18','',0,'http://home.adef.xyz/?post_type=space&p=217',0,'space','',0),(218,1,'2022-08-11 17:41:12','2022-08-11 15:41:12','','3D printing temp','','inherit','open','closed','','3d-printing-temp','','','2022-08-11 17:41:12','2022-08-11 15:41:12','',217,'http://home.adef.xyz/wp-content/uploads/2022/08/3D-printing-temp.jpg',0,'attachment','image/jpeg',0),(220,1,'2022-08-11 17:55:51','2022-08-11 15:55:51','<!-- wp:paragraph -->\n<p>Lab 404 is a general purpose computer lab for any digital based workshops. It is equipped with 9 PCs, a projector, speakers, and can be equipped with any other tools based on the needs of the workshop. You may rent the space to work on your own projects or to organize and give a workshop of your own. You will be provided with a space to work and store your ongoing projects based on your needs. </p>\n<!-- /wp:paragraph -->','Lab 404','','publish','closed','closed','','lab-404','','','2022-08-11 17:55:51','2022-08-11 15:55:51','',0,'http://home.adef.xyz/?post_type=space&p=220',0,'space','',0),(221,1,'2022-08-11 17:55:39','2022-08-11 15:55:39','','404 new','','inherit','open','closed','','404-new','','','2022-08-11 17:55:39','2022-08-11 15:55:39','',220,'http://home.adef.xyz/wp-content/uploads/2022/08/404-new.jpg',0,'attachment','image/jpeg',0),(222,1,'2022-08-11 18:02:27','2022-08-11 16:02:27','<!-- wp:paragraph -->\n<p>Our dance studio/theater is 55 meter room with wood floors and mirrored walls equipped for dance and theater workshops, classes, exhibitions, and presentations. </p>\n<!-- /wp:paragraph -->','Raqsat Studio','','publish','closed','closed','','raqsat-studio','','','2022-08-11 18:02:28','2022-08-11 16:02:28','',0,'http://home.adef.xyz/?post_type=space&p=222',0,'space','',0),(223,1,'2022-08-11 18:02:04','2022-08-11 16:02:04','','ra2sat','','inherit','open','closed','','ra2sat','','','2022-08-11 18:02:04','2022-08-11 16:02:04','',222,'http://home.adef.xyz/wp-content/uploads/2022/08/ra2sat.jpg',0,'attachment','image/jpeg',0),(224,1,'2022-08-11 18:38:26','2022-08-11 16:38:26','<!-- wp:paragraph -->\n<p><strong>Address: </strong>7 Street 23, Al Abageyah, El Mokattam, Cairo Governorate </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Email: </strong>[email protected]</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Phone: </strong>+20 109 988 3369- 0225050105</p>\n<!-- /wp:paragraph -->','Contact us','','publish','closed','closed','','contact','','','2022-08-16 15:09:19','2022-08-16 13:09:19','',0,'http://home.adef.xyz/?page_id=224',0,'page','',0),(225,1,'2022-08-11 18:38:26','2022-08-11 16:38:26','','Contact us','','inherit','closed','closed','','224-revision-v1','','','2022-08-11 18:38:26','2022-08-11 16:38:26','',224,'http://home.adef.xyz/?p=225',0,'revision','',0),(227,1,'2022-08-11 18:56:04','2022-08-11 16:56:04','<!-- wp:gallery {\"linkTo\":\"none\",\"className\":\"d-flex align-items-center vh-100\"} -->\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped d-flex align-items-center vh-100\"><!-- wp:image {\"id\":169,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/Adef-7-edited.png\" alt=\"\" class=\"wp-image-169 w-50\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->','Home','','inherit','closed','closed','','72-revision-v1','','','2022-08-11 18:56:04','2022-08-11 16:56:04','',72,'http://home.adef.xyz/?p=227',0,'revision','',0),(228,1,'2022-08-11 18:59:49','2022-08-11 16:59:49','<!-- wp:paragraph -->\n<p>ADEF is a non-profit foundation registered in 2009 at the Egyptian Ministry of Social Solidary License number 7734-2009 which aims to enable teens and youth through fostering environments for education and learning, supporting free culture, developing capacity, and building knowledge tools in Arabic language.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Vision</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong><br></strong>Independent individuals and groups, who are active, expressive, and producers of knowledge for the benefit of their societies.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Mission</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Promoting creative uses of information technology, and the dissemination of the concepts and practices of free culture, and supporting initiatives which aim to produce free Arabic knowledge using free tools.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ADEF is a multidimensional organization that creates spaces and fosters environments for expression and progressive learning. It enhances skills and develops knowledge tools to support and empower groups and individuals to strengthen their practices and engagement with their society. Its mission is to build youth communities through experiential learning, promote the creative uses of technology, and support initiatives that aim to produce free and open critical Arabic knowledge. ADEF works with teenagers and youth, individuals and groups, who are active and critical and can express themselves and produce knowledge for the benefit of their society. Its work has expanded across Egypt, Lebanon, Tunisia, Palestine and Berlin and with youth and young professionals from at least 13 Arab countries.<br>ADEF was born 15 years ago at a time where the Internet started opening itself up as a space of possibility around the world. Tapping into that space, and the broader digital technologies surrounding it, ADEF embarked on a venture to explore how knowledge can be assembled, mediated, disseminated freely and critically through this opening. Centering itself primarily on a progressive educational program, alongside thematic knowledge creation, technical support for knowledge production, and broader community creation and support around shared issues and concerns, ADEF became a key player in open-source, digitally mediated knowledge production in the Arab region.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ADEF was officially founded in 2009 as a non-profit organization registered at the Egyptian Ministry of Social Solidary License number 7734-2009 with the aim to create experiences that enhance self-exploration, creative self-expression and critical thinking for youth in the<br>MENA region. ADEF became a key player in open-source, digitally mediated knowledge<br>production in the Arab region with a reputation of being one of the few cultural spaces that respects free culture and fights for a more progressive, accessible and modern educational system. ADEF prides itself on its dedicated community of artists and techies that continue to generously share their knowledge and work to new generations to continue to build a more diverse cultural sector with actors who can express themselves freely through art and technology.<br>ADEF also caters to an evolving shared new Arab identity and culture that has evolved with the internet and rise in use of technology. This identity does not unfold from a top-bottom approach but from a grassroot one, i.e. a product of proximity, shared experience and interests. ADEF’s functions, including the camps, the residencies, the trainings and the workshops, become a space to tap into identity and explore it, while creating an environment of acceptance and diversity.<br>To develop 21st century skills, ADEF challenges the lack of diversity in the cultural sector and limited mobility by bringing a diversity of youth together.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>ADEF aims at:</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Promoting heightened and distinguished Arab youth expression in their surrounding evolving contexts</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Supporting general critical knowledge production, among young professional artists, journalists, researchers and other culture actors</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Creating spaces for expression and knowledge making to unfold and thrive</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Fostering communities where collaborations, exchanges, mutual learning can be developed as a backbone for critical narrative making</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"></div>\n<!-- /wp:columns -->','About ADEF','','inherit','closed','closed','','89-autosave-v1','','','2022-08-11 18:59:49','2022-08-11 16:59:49','',89,'http://home.adef.xyz/?p=228',0,'revision','',0),(229,1,'2022-08-11 19:29:53','2022-08-11 17:29:53','<!-- wp:paragraph -->\n<p>This is an active program aimed at Arab youth, who continue to have seldom access to critical educational experiences, where technology is constantly re-explored and profoundly and radically tapped into (beyond mainstream current and proliferating uses through social media) as a means for expression. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This area is what bears ADEF’s accumulated experience through the past 15 years, and where its community, curricula, and operational systems have been evolving and actively responding to the needs of the moment. There is a set of ongoing activities that shape this unit at ADEF that includes:</p>\n<!-- /wp:paragraph -->','Youngsters','','publish','closed','closed','','youngsters','','','2022-08-12 17:19:07','2022-08-12 15:19:07','',0,'http://home.adef.xyz/?page_id=229',0,'page','',0),(230,1,'2022-08-11 19:29:53','2022-08-11 17:29:53','<!-- wp:paragraph -->\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s,</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li> when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting,</li><li> remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</li></ul>\n<!-- /wp:list -->','Youngsters','','inherit','closed','closed','','229-revision-v1','','','2022-08-11 19:29:53','2022-08-11 17:29:53','',229,'http://home.adef.xyz/?p=230',0,'revision','',0),(231,1,'2022-08-11 19:37:49','2022-08-11 17:37:49','<!-- wp:paragraph -->\n<p>This is an active program aimed at Arab youth, who continue to have seldom access to critical educational experiences, where technology is constantly re-explored and profoundly and radically tapped into (beyond mainstream current and proliferating uses through social media) as a means for expression. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This area is what bears ADEF’s accumulated experience through the past 15 years, and where its community, curricula, and operational systems have been evolving and actively responding to the needs of the moment. There is a set of ongoing activities that shape this unit at ADEF that includes:</p>\n<!-- /wp:paragraph -->','Youngsters','','inherit','closed','closed','','229-revision-v1','','','2022-08-11 19:37:49','2022-08-11 17:37:49','',229,'http://home.adef.xyz/?p=231',0,'revision','',0),(233,1,'2022-08-12 16:36:04','2022-08-12 14:36:04','','عن أضف','','inherit','closed','closed','','149-autosave-v1','','','2022-08-12 16:36:04','2022-08-12 14:36:04','',149,'http://home.adef.xyz/?p=233',0,'revision','',0),(234,1,'2022-08-12 17:17:59','2022-08-12 15:17:59','','الرئيسية','','publish','closed','closed','','home-ar','','','2022-08-12 17:17:59','2022-08-12 15:17:59','',0,'http://home.adef.xyz/?page_id=234',0,'page','',0),(235,1,'2022-08-12 17:17:59','2022-08-12 15:17:59','','الرئيسية','','inherit','closed','closed','','234-revision-v1','','','2022-08-12 17:17:59','2022-08-12 15:17:59','',234,'http://home.adef.xyz/?p=235',0,'revision','',0),(236,1,'2022-08-12 17:19:28','2022-08-12 15:19:28','','فتية','','publish','closed','closed','','youngsters-ar','','','2022-08-12 17:19:28','2022-08-12 15:19:28','',0,'http://home.adef.xyz/?page_id=236',0,'page','',0),(237,1,'2022-08-12 17:19:28','2022-08-12 15:19:28','','فتية','','inherit','closed','closed','','236-revision-v1','','','2022-08-12 17:19:28','2022-08-12 15:19:28','',236,'http://home.adef.xyz/?p=237',0,'revision','',0),(238,1,'2022-08-12 17:20:54','2022-08-12 15:20:54','','تدريب المدربين','','publish','closed','closed','','tot-ar','','','2022-08-12 17:20:54','2022-08-12 15:20:54','',0,'http://home.adef.xyz/?page_id=238',0,'page','',0),(239,1,'2022-08-12 17:20:54','2022-08-12 15:20:54','','تدريب المدربين','','inherit','closed','closed','','238-revision-v1','','','2022-08-12 17:20:54','2022-08-12 15:20:54','',238,'http://home.adef.xyz/?p=239',0,'revision','',0),(240,1,'2022-08-12 17:21:19','2022-08-12 15:21:19','','تقنية','','publish','closed','closed','','tech-ar','','','2022-08-12 17:21:19','2022-08-12 15:21:19','',0,'http://home.adef.xyz/?page_id=240',0,'page','',0),(241,1,'2022-08-12 17:21:19','2022-08-12 15:21:19','','تقنية','','inherit','closed','closed','','240-revision-v1','','','2022-08-12 17:21:19','2022-08-12 15:21:19','',240,'http://home.adef.xyz/?p=241',0,'revision','',0),(242,1,'2022-08-12 17:22:35','2022-08-12 15:22:35','','مدارس','','publish','closed','closed','','schools-ar','','','2022-08-12 17:23:07','2022-08-12 15:23:07','',0,'http://home.adef.xyz/?page_id=242',0,'page','',0),(243,1,'2022-08-12 17:22:35','2022-08-12 15:22:35','','مدارس','','inherit','closed','closed','','242-revision-v1','','','2022-08-12 17:22:35','2022-08-12 15:22:35','',242,'http://home.adef.xyz/?p=243',0,'revision','',0),(244,1,'2022-08-12 17:23:34','2022-08-12 15:23:34','','فنون و ثقافة','','publish','closed','closed','','art-ar','','','2022-08-12 17:23:34','2022-08-12 15:23:34','',0,'http://home.adef.xyz/?page_id=244',0,'page','',0),(245,1,'2022-08-12 17:23:34','2022-08-12 15:23:34','','فنون و ثقافة','','inherit','closed','closed','','244-revision-v1','','','2022-08-12 17:23:34','2022-08-12 15:23:34','',244,'http://home.adef.xyz/?p=245',0,'revision','',0),(246,1,'2022-08-12 17:24:10','2022-08-12 15:24:10','','معسكرات','','publish','closed','closed','','camps-ar','','','2022-08-12 17:30:47','2022-08-12 15:30:47','',0,'http://home.adef.xyz/?page_id=246',0,'page','',0),(247,1,'2022-08-12 17:24:10','2022-08-12 15:24:10','','مخيمات','','inherit','closed','closed','','246-revision-v1','','','2022-08-12 17:24:10','2022-08-12 15:24:10','',246,'http://home.adef.xyz/?p=247',0,'revision','',0),(248,1,'2022-08-12 17:24:59','2022-08-12 15:24:59','','تواصل معنا','','publish','closed','closed','','contact-ar','','','2022-08-12 17:24:59','2022-08-12 15:24:59','',0,'http://home.adef.xyz/?page_id=248',0,'page','',0),(249,1,'2022-08-12 17:24:59','2022-08-12 15:24:59','','تواصل معنا','','inherit','closed','closed','','248-revision-v1','','','2022-08-12 17:24:59','2022-08-12 15:24:59','',248,'http://home.adef.xyz/?p=249',0,'revision','',0),(250,1,'2022-08-12 17:28:36','2022-08-12 15:28:36','<!-- wp:group {\"align\":\"full\"} -->\n<div class=\"wp-block-group alignfull\"></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Most of ADEF’s broader community members are themselves culture producers who express themselves through the art, bringing to the fore creative ways of addressing socio-political questions. Therefore, another key area of our work is centered on supporting them directly, as per their expressed needs, besides offering our own educational programming, and developing tech tools that aid processes of knowledge production. Such expressed needs include the need for a space and funding to develop their art and professionalize their practice to become more independent artists with a wider reach. This area of our work responds to their needs through the provision of grants, technical support and mentorship and provision of equipment, space and resources. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Activities include: </h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li><strong>Artist support program</strong>: Through our space, which boasts: a sound and dance studios, the video editing unit, sound electronics lab, makerspace with heavy equipment, textile lab, crafts and pottery lab, 3D printing lab, the residential space; our equipment, our community of practitioners who can contribute to ideation processes, and our institutional development experts who can help in fundraising and dissemination, we hope to steadily support five different artistic projects every year, be it authored by an artist, or by a cultural initiative or a partner organization. Groups we work with are normally artists and cultural practitioners having an active interest in technology in their practice and critical narratives in their concepts. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><strong>Artistic and cultural workshops program</strong>: This is one of the well-established traditional activities in ADEF where both teens and adults get to learn and interact with artistic and cultural skills and to participate in the manufacturing of artistic and cultural products in ADEF’s various spaces (hackspace, labs, sound studio, etc.).</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><strong>Open Spaces:</strong> It is a plan to expand the users of ADEF’s spaces, such as the sound and dance studios, the video editing unit, sound electronics lab, makers space with heavy equipment, textile lab, crafts and pottery lab, 3D printing lab, the residential space, etc, and making them available to a wider audience. The below visual shows all the spaces offered in our building in Mokattam, Cairo. In addition to offering the space and resources to our target audience, we are building towards an income-generation model through a program to rent these facilities to a wider audience. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><strong>Residency program</strong>: Three to four collective residencies are implemented throughout the year, aiming to bring together from 15 to 20 participants in different artistic, cultural and tech fields, such as kinetic arts, gamification, sound, web development, web design, information architecture, and others. They are typically techies, artists and cultural and media producers able to think critically of technology both as a tool to mitigate challenges for critical knowledge and art making and proliferation, but also as a source of renewed challenges. Hosted residents will enter in conversations with each other and with ADEF’s community aimed at sharpening their thinking of active propositions in response to prevalent challenges. Thematically, this year (2023) we are interested in hosting participants who can engage three issues. One issue is the state of the web today and its future, the trajectory from Web 1.0 to Web 3.0 and the free flow of information. A second issue is censorship circumvention in light of straight on governments’ blocking of websites, still prevalent and even renewed in the region, but also international corporations controlling the free flow of information which is primarily channeled today through social media platforms. A third residency is a textiles lab residency planned with Dutch hackspace Waag. Through this modality, we hope to identify the active individuals who have constantly enriched our conception of technology and hence the work of our surrounding communities. </li></ul>\n<!-- /wp:list -->','Art and Culture','','inherit','closed','closed','','105-revision-v1','','','2022-08-12 17:28:36','2022-08-12 15:28:36','',105,'http://home.adef.xyz/?p=250',0,'revision','',0),(251,1,'2022-08-12 17:30:47','2022-08-12 15:30:47','','معسكرات','','inherit','closed','closed','','246-revision-v1','','','2022-08-12 17:30:47','2022-08-12 15:30:47','',246,'http://home.adef.xyz/?p=251',0,'revision','',0),(252,1,'2022-08-12 20:04:43','2022-08-12 18:04:43','<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/Adef-7-edited.png\" alt=\"\"/></figure>\n<!-- /wp:image -->','Home','','inherit','closed','closed','','72-revision-v1','','','2022-08-12 20:04:43','2022-08-12 18:04:43','',72,'http://home.adef.xyz/?p=252',0,'revision','',0),(253,1,'2022-08-14 12:37:31','2022-08-14 10:37:31','<!-- wp:paragraph -->\n<p>This is a yearly micro-camp program to prepare and equip young educators, artists, techies to work with younger folks on using technology for self expression and is also an opportunity for critical youth to engage and be inspired to collaborate together and produce their own projects. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://via.placeholder.com/900x500.png\" alt=\"\"/></figure>\n<!-- /wp:image -->','TOTs & curricula development','','inherit','closed','closed','','192-revision-v1','','','2022-08-14 12:37:31','2022-08-14 10:37:31','',192,'http://home.adef.xyz/?p=253',0,'revision','',0),(254,1,'2022-08-14 12:50:24','2022-08-14 10:50:24','<label> Your name\n [text* your-name] </label>\n\n<label> Your email\n [email* your-email] </label>\n\n<label> Subject\n [text* your-subject] </label>\n\n<label> Your message (optional)\n [textarea your-message] </label>\n\n[submit \"Submit\"]\n[_site_title] \"[your-subject]\"\n[_site_title] <[email protected]>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[_site_admin_email]\nReply-To: [your-email]\n\n0\n0\n\n[_site_title] \"[your-subject]\"\n[_site_title] <[email protected]>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[your-email]\nReply-To: [_site_admin_email]\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nPlease fill out this field.\nThis field has a too long input.\nThis field has a too short input.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe uploaded file is too large.\nThere was an error uploading the file.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2022-08-14 12:50:24','2022-08-14 10:50:24','',0,'http://home.adef.xyz/?post_type=wpcf7_contact_form&p=254',0,'wpcf7_contact_form','',0),(255,1,'2022-08-15 14:51:20','2022-08-15 12:51:20','<!-- wp:paragraph -->\n<p>This is a yearly micro-camp program to prepare and equip young educators, artists, techies to work with younger folks on using technology for self expression and is also an opportunity for critical youth to engage and be inspired to collaborate together and produce their own projects. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://via.placeholder.com/900x500.png\" alt=\"\"/></figure>\n<!-- /wp:image -->','TOTs and Curricula Development','','inherit','closed','closed','','192-revision-v1','','','2022-08-15 14:51:20','2022-08-15 12:51:20','',192,'http://home.adef.xyz/?p=255',0,'revision','',0),(257,1,'2022-08-15 17:20:37','2022-08-15 15:20:37','','DSC03054','','inherit','open','closed','','dsc03054','','','2022-08-15 17:20:37','2022-08-15 15:20:37','',118,'http://home.adef.xyz/wp-content/uploads/2022/08/DSC03054.jpg',0,'attachment','image/jpeg',0),(258,1,'2022-08-15 17:20:45','2022-08-15 15:20:45','<!-- wp:paragraph -->\n<p>The ADEF flagship on-site digital expression camps that started off the entire endeavor of ADEF, whereby youth from the region, aging 12 to 15 and 16 to 19; come together to learn experientially how to express themselves through a well-designed learning environment. <a href=\"http://camps.adef.xyz\" data-type=\"URL\" data-id=\"camps.adef.xyz\">website</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":257,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/DSC03054.jpg\" alt=\"\" class=\"wp-image-257\"/></figure>\n<!-- /wp:image -->','Camps','','inherit','closed','closed','','118-revision-v1','','','2022-08-15 17:20:45','2022-08-15 15:20:45','',118,'http://home.adef.xyz/?p=258',0,'revision','',0),(261,1,'2022-08-15 17:28:53','2022-08-15 15:28:53','<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>This is a prolonged training program - 6 to 8 months - that takes place every year with the goal of training new techies and developing their skills in three technical specializations: networking, programming and data science. Moving forward, trainees will take part in specialized workshops surrounding specific projects, for which they should develop solutions. These projects serve both ADEF and partner institutions’ needs, as we aim at the development of four to five technical projects each year. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Training Program (Nawwah Tekania): </strong>A prolonged training program -6 to 8 months- that takes place every year with the goal of training new technicians and developing their skills in three technical specializations:networking, programming and data science.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>T<strong>ech Factory:</strong> Specialized training rounds for each track which can be considered as workshops to produce specific projects. Whether it is needed for ADEF’s programs or for partner institutions and individuals. The workshops include trainees who have passed the first level of a Nawwah Tekania and are supervised by a group of applied technicians.The trainees at the Tech Factory are paid to work on specific projects, under the guidance of specialized developers.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><strong>Collaborative Events: </strong>such as a creative tech camp or other networking, communication and promotion projects of the unit\'s products.</li></ul>\n<!-- /wp:list -->','Tech','','inherit','closed','closed','','144-revision-v1','','','2022-08-15 17:28:53','2022-08-15 15:28:53','',144,'http://home.adef.xyz/?p=261',0,'revision','',0),(262,1,'2022-08-15 17:32:03','2022-08-15 15:32:03','','260302368_4820347041356247_6742573170314284590_n','','inherit','open','closed','','260302368_4820347041356247_6742573170314284590_n','','','2022-08-15 17:32:03','2022-08-15 15:32:03','',144,'http://home.adef.xyz/wp-content/uploads/2022/08/260302368_4820347041356247_6742573170314284590_n.jpg',0,'attachment','image/jpeg',0),(263,1,'2022-08-15 17:32:12','2022-08-15 15:32:12','<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>This is a prolonged training program - 6 to 8 months - that takes place every year with the goal of training new techies and developing their skills in three technical specializations: networking, programming and data science. Moving forward, trainees will take part in specialized workshops surrounding specific projects, for which they should develop solutions. These projects serve both ADEF and partner institutions’ needs, as we aim at the development of four to five technical projects each year. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Training Program (Nawwah Tekania): </strong>A prolonged training program -6 to 8 months- that takes place every year with the goal of training new technicians and developing their skills in three technical specializations:networking, programming and data science.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>T<strong>ech Factory:</strong> Specialized training rounds for each track which can be considered as workshops to produce specific projects. Whether it is needed for ADEF’s programs or for partner institutions and individuals. The workshops include trainees who have passed the first level of a Nawwah Tekania and are supervised by a group of applied technicians.The trainees at the Tech Factory are paid to work on specific projects, under the guidance of specialized developers.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><strong>Collaborative Events: </strong>such as a creative tech camp or other networking, communication and promotion projects of the unit\'s products.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":262,\"width\":839,\"height\":559,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/260302368_4820347041356247_6742573170314284590_n.jpg\" alt=\"\" class=\"wp-image-262\" width=\"839\" height=\"559\"/></figure>\n<!-- /wp:image -->','Tech','','inherit','closed','closed','','144-revision-v1','','','2022-08-15 17:32:12','2022-08-15 15:32:12','',144,'http://home.adef.xyz/?p=263',0,'revision','',0),(264,1,'2022-08-15 17:39:37','2022-08-15 15:39:37','','ADF01032','','inherit','open','closed','','adf01032','','','2022-08-15 17:39:37','2022-08-15 15:39:37','',105,'http://home.adef.xyz/wp-content/uploads/2022/08/ADF01032.jpg',0,'attachment','image/jpeg',0),(265,1,'2022-08-15 17:39:40','2022-08-15 15:39:40','<!-- wp:group {\"align\":\"full\"} -->\n<div class=\"wp-block-group alignfull\"></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Most of ADEF’s broader community members are themselves culture producers who express themselves through the art, bringing to the fore creative ways of addressing socio-political questions. Therefore, another key area of our work is centered on supporting them directly, as per their expressed needs, besides offering our own educational programming, and developing tech tools that aid processes of knowledge production. Such expressed needs include the need for a space and funding to develop their art and professionalize their practice to become more independent artists with a wider reach. This area of our work responds to their needs through the provision of grants, technical support and mentorship and provision of equipment, space and resources. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Activities include: </h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li><strong>Artist support program</strong>: Through our space, which boasts: a sound and dance studios, the video editing unit, sound electronics lab, makerspace with heavy equipment, textile lab, crafts and pottery lab, 3D printing lab, the residential space; our equipment, our community of practitioners who can contribute to ideation processes, and our institutional development experts who can help in fundraising and dissemination, we hope to steadily support five different artistic projects every year, be it authored by an artist, or by a cultural initiative or a partner organization. Groups we work with are normally artists and cultural practitioners having an active interest in technology in their practice and critical narratives in their concepts. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><strong>Artistic and cultural workshops program</strong>: This is one of the well-established traditional activities in ADEF where both teens and adults get to learn and interact with artistic and cultural skills and to participate in the manufacturing of artistic and cultural products in ADEF’s various spaces (hackspace, labs, sound studio, etc.).</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><strong>Open Spaces:</strong> It is a plan to expand the users of ADEF’s spaces, such as the sound and dance studios, the video editing unit, sound electronics lab, makers space with heavy equipment, textile lab, crafts and pottery lab, 3D printing lab, the residential space, etc, and making them available to a wider audience. The below visual shows all the spaces offered in our building in Mokattam, Cairo. In addition to offering the space and resources to our target audience, we are building towards an income-generation model through a program to rent these facilities to a wider audience. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><strong>Residency program</strong>: Three to four collective residencies are implemented throughout the year, aiming to bring together from 15 to 20 participants in different artistic, cultural and tech fields, such as kinetic arts, gamification, sound, web development, web design, information architecture, and others. They are typically techies, artists and cultural and media producers able to think critically of technology both as a tool to mitigate challenges for critical knowledge and art making and proliferation, but also as a source of renewed challenges. Hosted residents will enter in conversations with each other and with ADEF’s community aimed at sharpening their thinking of active propositions in response to prevalent challenges. Thematically, this year (2023) we are interested in hosting participants who can engage three issues. One issue is the state of the web today and its future, the trajectory from Web 1.0 to Web 3.0 and the free flow of information. A second issue is censorship circumvention in light of straight on governments’ blocking of websites, still prevalent and even renewed in the region, but also international corporations controlling the free flow of information which is primarily channeled today through social media platforms. A third residency is a textiles lab residency planned with Dutch hackspace Waag. Through this modality, we hope to identify the active individuals who have constantly enriched our conception of technology and hence the work of our surrounding communities. </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":264,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/ADF01032.jpg\" alt=\"\" class=\"wp-image-264\"/></figure>\n<!-- /wp:image -->','Art and Culture','','inherit','closed','closed','','105-revision-v1','','','2022-08-15 17:39:40','2022-08-15 15:39:40','',105,'http://home.adef.xyz/?p=265',0,'revision','',0),(266,1,'2022-08-15 17:40:08','2022-08-15 15:40:08','<!-- wp:paragraph -->\n<p>This is a yearly micro-camp program to prepare and equip young educators, artists, techies to work with younger folks on using technology for self expression and is also an opportunity for critical youth to engage and be inspired to collaborate together and produce their own projects. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Curricula development: </strong>These are collaboratively developed curricula that deal with arts, technology and self expression for youth and children, with topics covered including: video editing, sound design, music composition, visual design, computational thinking, machine learning and 3D modeling, printing, and costume/fashion creation. These curricula feed into our different learning outlets, including the camps and the winter and summer schools, and they are carefully designed through deep collaboration between techies, artists and educators. They are constantly updated, developed, and upgraded with new insights, tools and techniques in such ways to ensure relevance to surrounding contexts. All our curricula are in Arabic and are publicly accessible on the ADEF-wiki platform and other open access educational platforms. We believe that curricula should not be static documents but constantly evolving, collaborative and open resources. Our curricula are shaped through an ongoing and collaborative design process. ADEF already developed various curricula focused on video editing, sound design, music composition, visual design and computational thinking. These curricula have been constantly upgraded with new insights, tools and techniques. Recently ADEF has also developed curricula in machine learning and 3D modeling, printing, and costume/fashion creation. We have a lot of experience with the process of curriculum development. It is also important for our curricula to be in Arabic and to be made publicly accessible on the ADEF-wiki platform (what we mean by “open resources”) and other open access educational platforms. Having access to Arabic curricula on technology that is constantly updated means we cater to an audience of millions of youth who only speak/read Arabic. The current education system in Egypt looks at curricula as stagnant content that gets passed on to the future generations without critical thought. We view curricula as loose blueprints that leave room for learners to shape themselves: posing questions, giving them tools to research and gather information through independent research and collaboration rather than just detailed technical knowledge. Our goal is to have these curricula openly accessible to any trainers, facilitators, or hobbyists to use in the Arab world. This requires them to be detailed, not just regarding technical information but also the process of learning and acquiring knowledge independently through exercises, suggestions of time management, examples of resources used, references, and more.</p>\n<!-- /wp:paragraph -->','TOTs and Curricula Development','','inherit','closed','closed','','192-revision-v1','','','2022-08-15 17:40:08','2022-08-15 15:40:08','',192,'http://home.adef.xyz/?p=266',0,'revision','',0),(268,1,'2022-08-15 17:40:58','2022-08-15 15:40:58','<!-- wp:paragraph -->\n<p><strong>Yearly training of trainers:</strong> This is a yearly micro-camp program to prepare and equip young educators, artists, techies to work with younger folks on using technology for self expression and is also an opportunity for critical youth to engage and be inspired to collaborate together and produce their own projects. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Curricula development: </strong>These are collaboratively developed curricula that deal with arts, technology and self expression for youth and children, with topics covered including: video editing, sound design, music composition, visual design, computational thinking, machine learning and 3D modeling, printing, and costume/fashion creation. These curricula feed into our different learning outlets, including the camps and the winter and summer schools, and they are carefully designed through deep collaboration between techies, artists and educators. They are constantly updated, developed, and upgraded with new insights, tools and techniques in such ways to ensure relevance to surrounding contexts. All our curricula are in Arabic and are publicly accessible on the ADEF-wiki platform and other open access educational platforms. We believe that curricula should not be static documents but constantly evolving, collaborative and open resources. Our curricula are shaped through an ongoing and collaborative design process. ADEF already developed various curricula focused on video editing, sound design, music composition, visual design and computational thinking. These curricula have been constantly upgraded with new insights, tools and techniques. Recently ADEF has also developed curricula in machine learning and 3D modeling, printing, and costume/fashion creation. We have a lot of experience with the process of curriculum development. It is also important for our curricula to be in Arabic and to be made publicly accessible on the ADEF-wiki platform (what we mean by “open resources”) and other open access educational platforms. Having access to Arabic curricula on technology that is constantly updated means we cater to an audience of millions of youth who only speak/read Arabic. The current education system in Egypt looks at curricula as stagnant content that gets passed on to the future generations without critical thought. We view curricula as loose blueprints that leave room for learners to shape themselves: posing questions, giving them tools to research and gather information through independent research and collaboration rather than just detailed technical knowledge. Our goal is to have these curricula openly accessible to any trainers, facilitators, or hobbyists to use in the Arab world. This requires them to be detailed, not just regarding technical information but also the process of learning and acquiring knowledge independently through exercises, suggestions of time management, examples of resources used, references, and more.</p>\n<!-- /wp:paragraph -->','TOTs and Curricula Development','','inherit','closed','closed','','192-revision-v1','','','2022-08-15 17:40:58','2022-08-15 15:40:58','',192,'http://home.adef.xyz/?p=268',0,'revision','',0),(270,1,'2022-08-15 17:42:48','2022-08-15 15:42:48','','DSC00334','','inherit','open','closed','','dsc00334','','','2022-08-15 17:42:48','2022-08-15 15:42:48','',101,'http://home.adef.xyz/wp-content/uploads/2022/08/DSC00334.jpg',0,'attachment','image/jpeg',0),(271,1,'2022-08-15 17:42:52','2022-08-15 15:42:52','','DSC03054-1','','inherit','open','closed','','dsc03054-1','','','2022-08-15 17:42:52','2022-08-15 15:42:52','',101,'http://home.adef.xyz/wp-content/uploads/2022/08/DSC03054-1.jpg',0,'attachment','image/jpeg',0),(272,1,'2022-08-15 17:46:16','2022-08-15 15:46:16','','DSC00334-1','','inherit','open','closed','','dsc00334-1','','','2022-08-15 17:46:16','2022-08-15 15:46:16','',101,'http://home.adef.xyz/wp-content/uploads/2022/08/DSC00334-1.jpg',0,'attachment','image/jpeg',0),(273,1,'2022-08-15 17:46:19','2022-08-15 15:46:19','<!-- wp:paragraph -->\n<p>This is a continued Drosos funded project since 2015 in collaboration with eight community space partners impacting thousands of teens and hundreds of young professionals in Cairo, Giza, Alexandria, Luxor, Aswan and Asyut. Attendees of both schools are chosen based on their applications or nominations from their community and 70 percent of them come from underserved communities. The schools are an extension of the camps’ accumulated experience and a chance to take it to different spaces. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":272,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://home.adef.xyz/wp-content/uploads/2022/08/DSC00334-1.jpg\" alt=\"\" class=\"wp-image-272\"/></figure>\n<!-- /wp:image -->','Schools','','inherit','closed','closed','','101-revision-v1','','','2022-08-15 17:46:19','2022-08-15 15:46:19','',101,'http://home.adef.xyz/?p=273',0,'revision','',0),(276,1,'2022-08-15 17:57:42','2022-08-15 15:57:42','<!-- wp:paragraph -->\n<p><strong>Address: </strong>7 Street 23, Al Abageyah, El Mokattam, Cairo Governorate </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Email: </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Phone: </strong></p>\n<!-- /wp:paragraph -->','Contact us','','inherit','closed','closed','','224-revision-v1','','','2022-08-15 17:57:42','2022-08-15 15:57:42','',224,'http://home.adef.xyz/?p=276',0,'revision','',0),(278,1,'2022-08-15 17:58:32','2022-08-15 15:58:32','<!-- wp:paragraph -->\n<p><strong>Address: </strong>7 Street 23, Al Abageyah, El Mokattam, Cairo Governorate </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Email: </strong>[email protected]</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Phone: </strong>0112 545 7499</p>\n<!-- /wp:paragraph -->','Contact us','','inherit','closed','closed','','224-revision-v1','','','2022-08-15 17:58:32','2022-08-15 15:58:32','',224,'http://home.adef.xyz/?p=278',0,'revision','',0),(279,1,'2022-08-16 14:46:54','2022-08-16 12:46:54','<!-- wp:paragraph -->\n<p><strong>Address: </strong>7 Street 23, Al Abageyah, El Mokattam, Cairo Governorate </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Email: </strong>[email protected]</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Phone: </strong>+20 109 988 3369</p>\n<!-- /wp:paragraph -->','Contact us','','inherit','closed','closed','','224-revision-v1','','','2022-08-16 14:46:54','2022-08-16 12:46:54','',224,'https://home.adef.xyz/?p=279',0,'revision','',0),(280,1,'2022-08-16 15:09:18','2022-08-16 13:09:18','<!-- wp:paragraph -->\n<p><strong>Address: </strong>7 Street 23, Al Abageyah, El Mokattam, Cairo Governorate </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Email: </strong>[email protected]</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Phone: </strong>+20 109 988 3369- 0225050105</p>\n<!-- /wp:paragraph -->','Contact us','','inherit','closed','closed','','224-revision-v1','','','2022-08-16 15:09:18','2022-08-16 13:09:18','',224,'https://home.adef.xyz/?p=280',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_relationships`
--
DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`term_order` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_relationships`
--
LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,14,0),(1,15,0),(5,2,0),(5,14,0),(5,16,0),(6,14,0),(6,17,0),(7,14,0),(7,18,0),(8,14,0),(8,19,0),(9,14,0),(9,20,0),(10,14,0),(10,21,0),(11,14,0),(11,22,0),(12,14,0),(12,23,0),(18,3,0),(19,3,0),(23,4,0),(24,13,0),(26,13,0),(26,15,0),(26,25,0),(29,13,0),(36,6,0),(36,7,0),(41,24,0),(41,30,0),(44,24,0),(44,29,0),(45,8,0),(45,13,0),(46,12,0),(46,13,0),(47,10,0),(47,24,0),(48,8,0),(48,24,0),(54,13,0),(54,29,0),(55,13,0),(55,30,0),(64,13,0),(65,13,0),(72,24,0),(72,38,0),(76,1,0),(76,5,0),(76,13,0),(76,31,0),(78,24,0),(78,26,0),(78,31,0),(84,24,0),(89,24,0),(89,33,0),(94,24,0),(98,13,0),(101,24,0),(101,42,0),(105,24,0),(105,43,0),(116,24,0),(118,24,0),(118,44,0),(129,24,0),(129,34,0),(139,24,0),(140,13,0),(141,24,0),(144,24,0),(144,41,0),(149,13,0),(149,33,0),(151,13,0),(151,34,0),(152,24,0),(155,24,0),(156,24,0),(157,24,0),(159,24,0),(161,24,0),(163,24,0),(165,24,0),(167,24,0),(169,24,0),(192,24,0),(192,40,0),(199,24,0),(201,24,0),(202,24,0),(203,24,0),(208,24,0),(213,24,0),(214,24,0),(215,24,0),(216,24,0),(217,24,0),(218,24,0),(220,24,0),(221,24,0),(222,24,0),(223,24,0),(224,24,0),(224,45,0),(229,24,0),(229,39,0),(234,13,0),(234,38,0),(236,13,0),(236,39,0),(238,13,0),(238,40,0),(240,13,0),(240,41,0),(242,13,0),(242,42,0),(244,13,0),(244,43,0),(246,13,0),(246,44,0),(248,13,0),(248,45,0),(257,24,0),(262,24,0),(264,24,0),(270,24,0),(271,24,0),(272,24,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT 0,
`count` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_taxonomy`
--
LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'wp_theme','',0,1),(3,3,'nav_menu','',0,2),(4,4,'wp_theme','',0,1),(5,5,'post_tag','',0,0),(6,6,'category','',0,1),(7,7,'post_tag','',0,1),(8,8,'job_listing_type','',0,0),(9,9,'job_listing_type','',0,0),(10,10,'job_listing_type','',0,0),(11,11,'job_listing_type','',0,0),(12,12,'job_listing_type','',0,0),(13,13,'language','a:3:{s:6:\"locale\";s:5:\"ar_EG\";s:3:\"rtl\";i:1;s:9:\"flag_code\";s:2:\"eg\";}',0,10),(14,14,'term_language','',0,9),(15,15,'term_translations','a:2:{s:2:\"ar\";i:1;s:2:\"en\";i:26;}',0,2),(16,16,'term_translations','a:1:{s:2:\"ar\";i:5;}',0,1),(17,17,'term_translations','a:1:{s:2:\"ar\";i:6;}',0,1),(18,18,'term_translations','a:1:{s:2:\"ar\";i:7;}',0,1),(19,19,'term_translations','a:1:{s:2:\"ar\";i:8;}',0,1),(20,20,'term_translations','a:1:{s:2:\"ar\";i:9;}',0,1),(21,21,'term_translations','a:1:{s:2:\"ar\";i:10;}',0,1),(22,22,'term_translations','a:1:{s:2:\"ar\";i:11;}',0,1),(23,23,'term_translations','a:1:{s:2:\"ar\";i:12;}',0,1),(24,24,'language','a:3:{s:6:\"locale\";s:5:\"en_US\";s:3:\"rtl\";i:0;s:9:\"flag_code\";s:2:\"us\";}',0,40),(25,25,'term_language','',0,1),(26,26,'category','',0,0),(27,27,'term_translations','a:1:{s:2:\"ar\";i:26;}',0,0),(29,29,'post_translations','a:2:{s:2:\"ar\";i:54;s:2:\"en\";i:44;}',0,2),(30,30,'post_translations','a:2:{s:2:\"ar\";i:55;s:2:\"en\";i:41;}',0,2),(31,31,'post_translations','a:2:{s:2:\"en\";i:78;s:2:\"ar\";i:76;}',0,2),(33,33,'post_translations','a:2:{s:2:\"ar\";i:149;s:2:\"en\";i:89;}',0,2),(34,34,'post_translations','a:2:{s:2:\"ar\";i:151;s:2:\"en\";i:129;}',0,2),(38,38,'post_translations','a:2:{s:2:\"ar\";i:234;s:2:\"en\";i:72;}',0,2),(39,39,'post_translations','a:2:{s:2:\"ar\";i:236;s:2:\"en\";i:229;}',0,2),(40,40,'post_translations','a:2:{s:2:\"ar\";i:238;s:2:\"en\";i:192;}',0,2),(41,41,'post_translations','a:2:{s:2:\"ar\";i:240;s:2:\"en\";i:144;}',0,2),(42,42,'post_translations','a:2:{s:2:\"ar\";i:242;s:2:\"en\";i:101;}',0,2),(43,43,'post_translations','a:2:{s:2:\"ar\";i:244;s:2:\"en\";i:105;}',0,2),(44,44,'post_translations','a:2:{s:2:\"ar\";i:246;s:2:\"en\";i:118;}',0,2),(45,45,'post_translations','a:2:{s:2:\"ar\";i:248;s:2:\"en\";i:224;}',0,2);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_termmeta`
--
DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_termmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `term_id` (`term_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_termmeta`
--
LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
INSERT INTO `wp_termmeta` VALUES (1,8,'employment_type','FULL_TIME'),(2,9,'employment_type','PART_TIME'),(3,10,'employment_type','TEMPORARY'),(4,11,'employment_type','CONTRACTOR'),(5,12,'employment_type','INTERN');
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_terms`
--
DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT 0,
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_terms`
--
LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'twentytwentytwo','twentytwentytwo',0),(3,'Menu 1','menu-1',0),(4,'adef','adef',0),(5,'tools','tools',0),(6,'News','news',0),(7,'Accountant','accountant',0),(8,'Full Time','full-time',0),(9,'Part Time','part-time',0),(10,'Temporary','temporary',0),(11,'Freelance','freelance',0),(12,'Internship','internship',0),(13,'ع','ar',0),(14,'ع','pll_ar',0),(15,'pll_62e74c47646a3','pll_62e74c47646a3',0),(16,'pll_62e74c7202cac','pll_62e74c7202cac',0),(17,'pll_62e74c7202d04','pll_62e74c7202d04',0),(18,'pll_62e74c7202d2f','pll_62e74c7202d2f',0),(19,'pll_62e74c7202d6d','pll_62e74c7202d6d',0),(20,'pll_62e74c7202d93','pll_62e74c7202d93',0),(21,'pll_62e74c7202db6','pll_62e74c7202db6',0),(22,'pll_62e74c7202dd9','pll_62e74c7202dd9',0),(23,'pll_62e74c7202dfc','pll_62e74c7202dfc',0),(24,'En','en',0),(25,'En','pll_en',0),(26,'Uncategorized','uncategorized-en',0),(27,'pll_62e74d0ea23dc','pll_62e74d0ea23dc',0),(29,'pll_62e7500499edb','pll_62e7500499edb',0),(30,'pll_62e7502f44d5c','pll_62e7502f44d5c',0),(31,'pll_62ee9134a5ca0','pll_62ee9134a5ca0',0),(33,'pll_62f38c6e717f2','pll_62f38c6e717f2',0),(34,'pll_62f3ab5e36bf8','pll_62f3ab5e36bf8',0),(38,'pll_62f66f2722484','pll_62f66f2722484',0),(39,'pll_62f66f806c2f1','pll_62f66f806c2f1',0),(40,'pll_62f66fd6aee14','pll_62f66fd6aee14',0),(41,'pll_62f66fefc05c7','pll_62f66fefc05c7',0),(42,'pll_62f6703b4b42b','pll_62f6703b4b42b',0),(43,'pll_62f670768708b','pll_62f670768708b',0),(44,'pll_62f6709a537ad','pll_62f6709a537ad',0),(45,'pll_62f670cb963b8','pll_62f670cb963b8',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_usermeta`
--
LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','admin'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','false'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers','lingotek-professional-translation,lingotek-translation,lingotek-new-ui'),(15,1,'show_welcome_panel','0'),(16,1,'session_tokens','a:4:{s:64:\"89ebf4f282e12c470ae68d0827cfcf24e46b42e5ef21a3b721a9e9c202af10ba\";a:4:{s:10:\"expiration\";i:1661322971;s:2:\"ip\";s:12:\"41.128.89.82\";s:2:\"ua\";s:70:\"Mozilla/5.0 (X11; Linux x86_64; rv:104.0) Gecko/20100101 Firefox/104.0\";s:5:\"login\";i:1660113371;}s:64:\"ff8c0ee3c245aac9c082c398f1e3708b02f55b0f3bdd0208e8e272f27995a2fa\";a:4:{s:10:\"expiration\";i:1661438903;s:2:\"ip\";s:13:\"154.176.30.75\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36\";s:5:\"login\";i:1660229303;}s:64:\"ae90a849e0e716ba6a07f3d4316513299470ffebc94ea8bb776033f93863f865\";a:4:{s:10:\"expiration\";i:1660749533;s:2:\"ip\";s:12:\"197.52.6.187\";s:2:\"ua\";s:105:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36\";s:5:\"login\";i:1660576733;}s:64:\"16e3bab7bebb322c9c131dfee550a0afd17639d27eacf91a6a9c93a16bf3a4f0\";a:4:{s:10:\"expiration\";i:1660826731;s:2:\"ip\";s:14:\"196.132.73.116\";s:2:\"ua\";s:135:\"Mozilla/5.0 (iPhone; CPU iPhone OS 15_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6 Mobile/15E148 Safari/604.1\";s:5:\"login\";i:1660653931;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','256'),(18,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(19,1,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}'),(20,1,'wp_user-settings','libraryContent=browse&hidetb=1&posts_list_mode=list'),(21,1,'wp_user-settings-time','1660128652'),(22,1,'closedpostboxes_space','a:0:{}'),(23,1,'metaboxhidden_space','a:0:{}'),(24,1,'meta-box-order_space','a:4:{s:6:\"normal\";s:0:\"\";s:8:\"advanced\";s:23:\"acf-group_62e17abf8485c\";s:4:\"side\";s:0:\"\";s:15:\"acf_after_title\";s:0:\"\";}'),(25,1,'nav_menu_recently_edited','3'),(26,1,'closedpostboxes_job_listing','a:0:{}'),(27,1,'metaboxhidden_job_listing','a:0:{}'),(28,1,'meta-box-order_job_listing','a:4:{s:6:\"normal\";s:16:\"job_listing_data\";s:8:\"advanced\";s:16:\"job_listing_type\";s:4:\"side\";s:0:\"\";s:15:\"acf_after_title\";s:0:\"\";}'),(29,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"196.132.73.0\";}'),(30,1,'closedpostboxes_dashboard','a:3:{i:0;s:18:\"dashboard_activity\";i:1;s:21:\"dashboard_quick_press\";i:2;s:17:\"dashboard_primary\";}'),(31,1,'meta-box-order_dashboard','a:4:{s:6:\"normal\";s:60:\"dashboard_site_health,dashboard_right_now,dashboard_activity\";s:4:\"side\";s:39:\"dashboard_quick_press,dashboard_primary\";s:7:\"column3\";s:0:\"\";s:7:\"column4\";s:0:\"\";}'),(32,1,'metaboxhidden_dashboard','a:0:{}'),(33,1,'edit_space_per_page','20'),(34,1,'pll_filter_content',''),(35,1,'rtladminbar','ltr'),(36,1,'closedpostboxes_toplevel_page_mlang','a:0:{}'),(37,1,'metaboxhidden_toplevel_page_mlang','a:0:{}'),(38,1,'manageedit-pagecolumnshidden','a:2:{i:0;s:6:\"author\";i:1;s:8:\"comments\";}'),(39,1,'edit_page_per_page','20'),(40,1,'closedpostboxes_page','a:1:{i:0;s:18:\"easy_image_gallery\";}'),(41,1,'metaboxhidden_page','a:0:{}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT 0,
`display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`),
KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_users`
--
LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'admin','$P$BKVuoc6BKIIPGgJZ7onTR61rTa0fRT/','admin','[email protected]','http://adef.local','2022-07-27 09:37:51','',0,'admin');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2022-09-20 15:32:31