-
Notifications
You must be signed in to change notification settings - Fork 4
/
main.php
531 lines (454 loc) · 75.1 KB
/
main.php
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
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
<?php
session_start();
$title = "Main";
include 'init.php';
?>
<div class="w3-container" style="width:-webkit-fill-available;">
<?php
if(isset($_SESSION["id"])){
$interests = explode(" ",$_SESSION["interests"]);
$rand_interest = array_rand($interests);
if(!empty(trim($interests[$rand_interest]))){
$items = getInterest($interests[$rand_interest], $_SESSION["id"]);
if(!empty($items)){
?>
<div class="w3-card w3-white w3-margin-top w3-padding">
<h4 class="w3-text-teal w3-margin"><b><?php echo lang("AD-SUGGESTIONS") ?>..</b></h4>
<div class="w3-row-padding">
<?php
foreach($items as $item){ ?>
<div class="w3-quarter w3-margin-bottom w3-center w3-animate-zoom" id="<?php echo $item["itemID"] ?>">
<div class="w3-border-bottom w3-border w3-hover-shadow">
<div class="w3-display-container" >
<div class="img-container">
<?php
if(!empty(trim($item["image"]))){ ?>
<img class="" src="uploads/items_images/<?php echo $item["image"] ?>" style="width:100%">
<?php
}
else{
echo '<img src="uploads/items_images/ads.png" style="width:100%">';
}
?>
</div>
<?php if(strtotime($item["add_date"]) > strtotime('- 7 days')){
echo '<span class="w3-tag w3-display-topleft w3-teal">'. lang("NEW") . '</span>';
}
?>
<span class="w3-tag w3-display-topright w3-teal"><?php echo $item["status"] ?> /5</span>
<h4 class="w3-padding w3-nowrap"><?php echo $item["item_name"] ?></h4>
<p class="w3-text-teal"><i class="fa fa-tag fa-fw"></i><b><?php echo $item["price"] ?> DA</b></p>
<p class="w3-opacity w3-nowrap"><?php echo proDate($item["add_date"]) ?></p>
<div class="w3-display-middle w3-display-hover">
<a href="showAd.php?itemID=<?php echo $item["itemID"] ?>" class="w3-button w3-teal"><?php echo lang("FULL-DETAILS") ?> <i class="fa fa-plus-circle"></i></a>
</div>
</div>
<div class="w3-row">
<?php
$citem = $item["itemID"];
if(isset($_SESSION["id"])) $user = $_SESSION["id"];
$list = getAllFrom("*","likes","WHERE itemID = '$citem' AND userID = '$user'");
if(count($list) > 0){ ?>
<a href="<?php echo $func ?>update.php?u=rlike&itemID=<?php echo $item["itemID"] ?>&userID=<?php echo $user ?>"><div class="w3-third w3-text-teal w3-padding w3-hover-teal w3-nowrap"><i class="fa fa-fw fa-check"></i><?php echo countItems("*","likes",true,"itemID",$item["itemID"]) ?>
</div>
</a>
<?php
}
else { ?>
<a href="<?php echo $func ?>update.php?u=alike&itemID=<?php echo $item["itemID"] ?>&userID=<?php echo $user ?>">
<div class="w3-third w3-text-grey w3-padding w3-hover-teal w3-nowrap"><i class="far fa-fw fa-thumbs-up"></i><?php echo countItems("*","likes",true,"itemID",$item["itemID"]) ?>
</div>
</a>
<?php
}
?>
<div class="w3-third w3-text-grey w3-padding w3-nowrap"><i class="fa fa-fw fa-eye"></i><?php echo $item["views"] ?></div>
<a href="showAd.php?itemID=<?php echo $item["itemID"] ?>#demo"><div class="w3-third w3-text-grey w3-padding w3-hover-teal w3-nowrap"><i class="fa fa-fw fa-comments"></i><?php echo countItems("comID","comments",true,"itemID",$item["itemID"]) ?></div></a>
</div>
</div>
</div>
<?php
}
?>
</div>
</div>
<br>
<?php }
}
}
else { ?>
<!-- Header -->
<header class="w3-container w3-center site-header w3-margin-top w3-round" style="padding:48px 16px">
<h1 class="w3-margin w3-text-teal" style="font-size: -webkit-xxx-large;">BelfortCom</h1>
<p class="w3-xlarge"><?php echo lang("SITE-HEAD-MSG") ?></p>
<a href="login.php" class="w3-button w3-teal w3-padding-large w3-large w3-margin-top"><?php echo lang("GET-INVOLVED") ?></a>
</header>
<?php
}
?>
<div class="w3-padding-32 w3-center w3-card w3-white w3-margin-top">
<h4 style="margin-bottom:25px"><b class="w3-text-teal"><?php echo lang("WILAYA-MSG") ?></b></h4>
<div class="w3-row w3-white w3-margin-top">
<div class="w3-half w3-padding">
<div class="mapdiv" >
<?xml version="1.0"?>
<!--
************* Copyright (c) 2017 Pareto Softare, LLC DBA Simplemaps.com *******************
************* Free for Commercial Use, full terms at http://simplemaps.com/resources/svg-license ************
************* Attribution is appreciated! http://simplemaps.com ***************************
-->
<svg version="1.2" viewbox="0 0 1000 1001" xmlns="http://www.w3.org/2000/svg">
<a xlink:title="Adrar" href="store.php?wilaya=Adrar">
<path d="M521.1 466.6l2.6 30-0.6 11.1-2.7 11.9-6.1 68.9-0.4 1.3-0.5 1.3-0.9 1.3-2.1 2.3-1.5 1.3-3.1 3.3-0.6 0.2-5 0.8-0.9 0.3-0.4 0.4-3 4.2-1.3 1.4-0.8 0.6-1.4 0.7-3.9 1.2-0.5 0.1-6.7-0.1-0.4 0.1-1.8 0.6-0.7 0-2.7-0.3-3.5 0.2-0.4 0.2-0.4 0.2-3.3 2.4-3.5 1.3-2.2 1.1-0.5 0.4-0.9 1.2-0.5 1.1 0.1 0.8 0.5 0.7 4.1 3.9 7.6 10.5 0.5 0.9 0.4 1 0.3 1.1 0.2 1.1 0.1 3.1-0.7 5.3 0.4 1.5 0.6 1.1 8.1 6.3 0.7 0.6 0.3 0.5 0.1 0.7-0.4 173.1 0.9 1.7 2.4 3.1 106.6 62.8 5 4.7 3.6 5.2 1.5 11.8 0.4 76.4 0 0.1-11.9 2.4-5.1 1-3.9 0.9-1.2 0.1-0.7-0.1-0.5-0.2-1.2-0.7-2.8-2.9-2.2-0.9-1.1-0.6-0.9-0.8-0.9-0.8-0.8-1.2-0.1-0.9 0.5-0.9 0.7-1.1 0.4-1 0.2-0.5 0.6-0.4 1.1-1.1 0.2-0.9 0.3-2 0.4-0.9 0.9-0.8 1-0.6 0.9-0.7 0.5-1.1-0.2-1.2-0.5-0.8-0.6-0.7-0.4-1 0-0.5 0.3-1 0-0.3-0.2-0.5-0.5-0.3-0.3-0.3-0.6-1.9-0.1-2 0.9-10.4-0.2-0.7-0.6-0.6-0.8-0.4-1.7-0.5-0.8-0.4-2.8-2.2-6.1-2.7-13.3-2.8-2.6-0.2-4.5-0.8-0.5-0.1-0.9-0.2-1.8-0.9-0.9-0.4-1.2-0.3-0.7-0.3-0.6-0.5-1.9-3.6-1.6-2.2-1.7-2-3-2.3-0.9-0.5-0.8-0.3-1.1 0.2-1.1 0.7-1.9 1.9-1.3 0.6-0.7-0.1-3.1-1.1-0.5-0.3-0.3-0.3-0.4-0.3-0.6-0.1-0.7 0.2-0.8 0.8-0.5 0.3-1.1-0.1-0.4-0.6-0.1-1-0.5-1-0.8-0.6-0.7-0.1-0.9 0.1-1.1 0-1-0.5-5.7-4.8-0.5-0.8 0-3.8-0.3-1.9-0.9-1.5-3.1-2.3-1.9-1-1.8-0.3-0.9-0.6-0.9-0.3-1.9-0.3-2.1-0.7-0.8-0.5-0.8-1-1-1.8-0.6-0.6-1.2-0.3-1 0-1.9 0.5-1 0-1.1-0.2-0.7-0.2-0.4-0.7-0.1-1.3 0-1 1.1-4.7 0.6-5.6-0.1-1.2-0.9-3.3-0.6-1-9.9-6.9-8.3-5.9-4.2-3-21-14.7-8.3-5.9-16.8-11.8-8.4-5.9-12.5-8.9-12.6-8.9-12.5-8.9-4.2-2.9-8.4-6-4.2-2.9-12.6-9-8.3-5.9-12.6-9-12.6-8.9-20.9-15-8.4-6-3.8-2.7-7.7-5.5-11.6-8.3-19.2-13.8-7.7-5.6-11.6-8.3-5.4-3.9-7.3-5-7.4-5.1-8.4-5.8-16.8-11.4-8.4-5.7-7-4.6 0.6-0.6 129.3-90.8-37.6-74.6 9.6-0.9 8.6 4.4 5.1 3.5 11.9 5.9 10.1 2 11.8-4.7 6.8-4.3 15.2-11.9 6-3.6 5.5-2.1 44.4-8 6.4-4.7 30.3-40.9 28.9-53.9 16.9-18.1 4.5-3.8 9.2-5.9 50.9-25.9-0.7 45.2-6.2 42.9 6.6 58.9z" id="DZA2143" name="Adrar">
</a>
</path>
<a xlink:title="Aïn Témouchent" href="store.php?wilaya=Aïn Témouchent">
<path d="M388.3 106.6l-4.1 0.8-0.7 0.6-1.5 2-0.8 0.5-0.8 0.1-0.7 0-1.1 0.2-0.6 0.4-0.3 0.7 0.1 0.7 0.3 0.8 0.2 1-0.1 1.2-0.6 1.2-0.8 0.5-0.8 0.2-0.8 0.1-1 0.5-0.7 0.7-1.3 2.3-2.3-0.6-10.8-5.8-0.6 0-0.6 0.1-0.6 0.3-0.4 0-0.6 0-0.4-0.1-0.2-0.3-0.1-0.3 0-0.6-0.1-0.5 0.1-0.3 0.6-0.5 0.2-0.2 0.1-0.4 0.1-1.4 0.2-1.1-0.1-0.3-0.3-0.5-0.2-0.2-0.4-0.2-0.7 0.1-0.2-0.1-0.1-0.9 0.1-0.1 1.3-1.6 0.9-0.3 0.9-0.6 0.8-0.8 0.5-0.8 0.4-1.2 0.6-2.8 0.5-1 0.6-1 1.7-4.4 0.3-0.6 0.6-0.3 1.1-0.1 0.3-0.2 1.2-1.8 0.5-0.4 1.4 3.4 1.6 1.4 1.4 0.6 0.4 0.4 0.1 0.5-0.3 0.5-0.4 0.5-1.7 1.4-0.4 0.6-0.3 0.7-0.1 1.1 0 0.7 0.2 0.5 0.4 0.3 0.5-0.2 0.5-0.7 0.4-1 0.3-0.6 0.3-0.2 0.5 0.2 1.1 0.7 0.6 0.2 0.9 0 10.3-2.6 1.2 0 1.3 0.3 0.8 0.9 1.8 2.3 0.3 0.8-0.2 0.7-1.1 0.7-0.3 0.3-0.1 0.3 0.2 0.3 0.3 0.5 0.1 0.5 0 0.5-0.8 0.8z" id="DZA2144" name="Aïn Témouchent">
</path>
</a>
<a xlink:title="Oran" href="store.php?wilaya=Oran">
<path d="M415.1 79.4l0 0.3-2 2.2-2.3 3.1-0.9 0.7-0.8 0.4-1.1-0.1-0.5 0-0.7 0.1-0.8 0.5-0.5 0.5-0.5 1.4-0.6 0.9-0.7 0.7-2.8 2.1-0.5 0.7-0.3 0.7-0.3 1.1-0.4 0.9-0.3 0.6-0.5 0.4-1.2 0.4-0.6 0.2-0.4 0.5 0 1.6-0.4 0.9-0.5 0.4-1.1 0.7-0.2 0.5-0.5 0-0.6 0.4-0.3 0.6-0.3 0.7-0.4 2.4-0.2 0.7-0.4 0.7-0.5 0.6-0.5 0.4-0.5 0.3-0.6 0.2-0.5-0.1-0.4-0.3-0.2-1.8 0.8-0.8 0-0.5-0.1-0.5-0.3-0.5-0.2-0.3 0.1-0.3 0.3-0.3 1.1-0.7 0.2-0.7-0.3-0.8-1.8-2.3-0.8-0.9-1.3-0.3-1.2 0-10.3 2.6-0.9 0-0.6-0.2-1.1-0.7-0.5-0.2-0.3 0.2-0.3 0.6-0.4 1-0.5 0.7-0.5 0.2-0.4-0.3-0.2-0.5 0-0.7 0.1-1.1 0.3-0.7 0.4-0.6 1.7-1.4 0.4-0.5 0.3-0.5-0.1-0.5-0.4-0.4-1.4-0.6-1.6-1.4-1.4-3.4 1.2-0.8 1.4-1.4 0.6-1 0.4-0.3 1.7-0.4 0.9-0.7 0.8-0.6 0.8-0.5 1.1-0.4 0.6 0.1 0.3 0.5 0.2 0.2 0.6-0.2 1.8-1.1 1.2-2.1 1.1-0.3 0.4 0.3 0.4 0.4 0.4 0.4 0.7 0.2 0.4 0 1 0.3 0.5 0.1 0.6 0.2 0.3 0.4 0.2 0.5 0.4 0.5 0.5 0.1 1.8-0.1 0.9-0.2 1-0.5 0.8-0.7 0.6-1.7 0.6-0.1 0.6 0.2 0.5 0.1 0.6-0.3 0.3-0.4 2.2-4.8 0.1-0.6-0.2-0.5 0-0.7 0.3-0.1 0.7 0.5 0.5-0.1 1 0.1 0.5 0 2-1 1.3-0.4 0.6 0.4 0.3 0.6 0.5 0.4 0.5 0.1 0.4 0.2 0.2 0.7-0.3 0.8 0.1 0.6 0.8 0.9 1.3 0.6 3.4 0.8 2.1 0.9 1 0.2 0.5-0.2z" id="DZA2145" name="Oran">
</path>
</a>
<a xlink:title="Sidi Bel Abbes" href="store.php?wilaya=Sidi Bel Abbes">
<path d="M412.6 119l-0.8-0.1-0.4 0-0.4 0.3-0.4 0.4-0.5 0.3-0.7 0.1-0.3 0-0.4 0.4-0.4 0.7 0 0.8 0 0.5 0.2 1 0.1 0.4 0.5 0.4 0.1 0.3 0 0.3-0.3 0.5-0.3 0.2-0.3 0.1-0.3 0-0.5-0.2-0.4-0.1-0.2 0.1-0.2 0.2-0.2 0.3-0.1 0.6-0.2 0.4-0.1 0.4 0.3 0.4 0.1 0.4-0.2 1.6 0.1 0.5 0.2 0.4 0.4 0.3 0.4 0.4 0.1 0.3-0.1 0.3-0.3 0.2-0.3 0.2-1.2 0.3-1 0.5-0.3 0-0.4-0.3-0.3 0-0.5 0.3-0.3 0.5 0 0.3 0.2 0.3 0.3 0.2 1.9 0.8 0.7 0.5 0.3 0.6 0 0.8 0 0.4 0.2 0.3 0.3 0.2 0.9 0.3 0.4 0.3 0.2 0.4 0.2 0.1 1.2 0 0.5 0.2 0.2 0.3 0.1 0.4 0 0.7 0.2 0.3 0.8 0.6 0.4 0.4 1.7 1.3 1.6 1.6 2.5 3.8 0.3 0.8 0.1 1-0.1 1.2-0.3 1-0.3 0.9-0.2 0.3-20 17.6-0.7-2.1-0.4-0.6-0.7-0.9-0.7-0.5-0.9-0.5-1.1-0.3-0.9 0-0.9 0.1-1 0.4-2 1.3-3 2.4-1.2 0.7-1.2 0.5-2.2 0.3-3.7-0.3-1.1-0.3-0.9-0.5-0.8-0.6-0.9-0.6-0.6-0.2-0.5 0-1.5 0.4-1 0.1-0.8-0.2-0.7-0.3-1.3-0.8 1.2-1.9 1.9-2 7.8-6.6 0.8-1 0.3-0.9 0-0.4-0.1-0.6-0.4-0.7-0.7-0.8-0.2-0.3-0.2-0.4 0.1-0.5 0.4-0.5 0.6-0.3 2.1-0.7 0.3-0.2 0.4-0.4 0.8-2.3 0.9-2 0.7-1.2 0.7-1.5 0.1-0.6 0-0.4-0.4-0.8-0.4-0.3-3.1 0.3-1.2-0.1-1-0.5-0.5-1.1-0.1-1.4 0.4-1.9 0.1-1.1-0.1-0.5-0.6 0-0.6 0.1-0.7 0.2-0.3 0-0.3-0.2-0.1-0.5 0.2-0.5 0.7-1 0-0.3-0.2-0.3-0.9-0.2-0.3-0.4-0.3-0.6-0.3-0.9-0.1-0.4 0-0.8 0.1-1.1 0.6-2.3 0.2-0.4 0.5-0.8 0.5-1.2 0-0.4-0.2-0.2-2.8-1.9-0.5-0.2 1.3-2.3 0.7-0.7 1-0.5 0.8-0.1 0.8-0.2 0.8-0.5 0.6-1.2 0.1-1.2-0.2-1-0.3-0.8-0.1-0.7 0.3-0.7 0.6-0.4 1.1-0.2 0.7 0 0.8-0.1 0.8-0.5 1.5-2 0.7-0.6 4.1-0.8 0.2 1.8 0.4 0.3 0.5 0.1 0.6-0.2 0.5-0.3 0.5-0.4 0.5-0.6 0.4-0.7 0.2-0.7 0.4-2.4 0.3-0.7 0.3-0.6 0.6-0.4 0.5 0 1-0.1 1.1-0.3 1-0.4 0.8-0.2 0.3 0.1 0.3 0.4-0.1 0.9-0.5 0.8-0.8 1.1 0.2 0.4 0.7 0.5 1.6 0.7 1 0.3 0.7 0 0.7-0.8 0.4-0.2 0.5 0 7.5 2.9 0.8 0.6 0.1 0.8-0.3 1.1-0.2 1-0.2 0.5-0.2 0.9 0 0.8-0.1 0.6-0.4 0.4 0 0.3 0.1 0.5 1 0.9 0.6 0.9 0.8 1.8z" id="DZA2146" name="Sidi Bel Abbès">
</path>
</a>
<a xlink:title="Tlemcen" href="store.php?wilaya=Tlemcen">
<path d="M372.2 121.1l0.5 0.2 2.8 1.9 0.2 0.2 0 0.4-0.5 1.2-0.5 0.8-0.2 0.4-0.6 2.3-0.1 1.1 0 0.8 0.1 0.4 0.3 0.9 0.3 0.6 0.3 0.4 0.9 0.2 0.2 0.3 0 0.3-0.7 1-0.2 0.5 0.1 0.5 0.3 0.2 0.3 0 0.7-0.2 0.6-0.1 0.6 0 0.1 0.5-0.1 1.1-0.4 1.9 0.1 1.4 0.5 1.1 1 0.5 1.2 0.1 3.1-0.3 0.4 0.3 0.4 0.8 0 0.4-0.1 0.6-0.7 1.5-0.7 1.2-0.9 2-0.8 2.3-0.4 0.4-0.3 0.2-2.1 0.7-0.6 0.3-0.4 0.5-0.1 0.5 0.2 0.4 0.2 0.3 0.7 0.8 0.4 0.7 0.1 0.6 0 0.4-0.3 0.9-0.8 1-7.8 6.6-1.9 2-1.2 1.9-0.8 0.7-0.6 0.4-2.9 1.3-0.3 0.2-0.6 0.6-0.6 0.5-0.4 0.2-0.5 0.1-3.3 0.3-1.1-0.1-2.3 0.1-1.5-0.1-0.7 0.1-1.7 0.5-8.6 5.3-0.7 0.4-0.1-0.8-3.5-10.8-1.2-2.6-1.9-2.2 5.2-6.3-0.6-0.3-1.7-0.5-5.8-6 0.4-1 2.5-4 1.2-2.6 0.6-0.5 0.2-0.4-0.9-0.9-5.1-3.3-1.6-1.5-2.6-1.6-0.6-0.8-0.3-0.8 0-0.8-0.2-0.7-0.7-0.5-2.1-0.2-1.7-1.1-1.5-1.4-1.8-1.3-1.4-0.6-0.9-1.2-0.5-1.5 0-2.3 1.1-0.5 0.5 0.2 0.1 0.3 1.5-0.7 1.6 0.3 1.8 0.8 1.6 0.4 3.1-0.4 1.1 0.3 0.4 0.1 0.4-0.1 0.8-0.7 4.5-1.3 1.3-0.9 0.4-0.1 1.4 0 0.7-0.1 0.7-0.6 1.6-1.9 3.1-1 0.5-0.4 0.4-1 5.8-4.9 0.9-0.4 4.6-0.5 1.3-0.4 0.4-0.2 0.1 0.9 0.2 0.1 0.7-0.1 0.4 0.2 0.2 0.2 0.3 0.5 0.1 0.3-0.2 1.1-0.1 1.4-0.1 0.4-0.2 0.2-0.6 0.5-0.1 0.3 0.1 0.5 0 0.6 0.1 0.3 0.2 0.3 0.4 0.1 0.6 0 0.4 0 0.6-0.3 0.6-0.1 0.6 0 10.8 5.8 2.3 0.6z" id="DZA2147" name="Tlemcen">
</path>
</a>
<a xlink:title="Béchar" href="store.php?wilaya=Béchar">
<path d="M439.9 373.3l-28.9 53.9-30.3 40.9-6.4 4.7-44.4 8-5.5 2.1-6 3.6-15.2 11.9-6.8 4.3-11.8 4.7-10.1-2-11.9-5.9-5.1-3.5-8.6-4.4-9.6 0.9-73.2 19.7-35.5-75.7 5.7-1.2 6.1-0.8 1.7 5.1 4.1 1.5 4.7-1.5 5.1-6.6 4.3-7 3.4-6.7 4.7-5 5.1-3.5 5.4-4.7 4.1-3.1 5-2.8 7.1-3.1 6.8-5.5 5.4-7 4.7-2.8 5.8-1.6 7.4-0.4 8.1-1.9 9.1-4.7-0.7-7.1 2.4-2.4 2.7-4.3-2.6-4.2-0.1-1.1-0.2-1-0.5-1.1-0.5-0.5-1.8-0.8-0.8-0.9-1.3-2.1-0.7-0.7-0.9-0.3-0.7 0.4-1.4 1.4-0.9 0.3-0.8 0-0.6-0.5-0.1-1 0.3-1.1 1-1.7 0.1-1.3-0.3-4.3 0.2-1 0.6-0.8 2.7-2 3.6-0.2 0.6-14.7 3.3-1.7 2.1 0.5 1.8-0.2 14.1-2.5 10.5-3.2 8.4-1.2-2-5.6-3.3-8.9 2.8-1.5 8.9-0.8 8.7-2.4 9.7 0.4 19.7 0.9 12.3 0.6 10 0.5 4.3 0.2 5.2 0.2 1.9-0.4 1-2-0.3-1.2-0.8-0.7-1-0.3-0.9 0-1.8 0.7-0.8 0-0.2-1 0.2-0.3 0.8-0.6 0.3-0.4 0.3-0.6 0.1-0.4-0.1-0.5 0.1-0.7 0.8 0 6.9-0.8 3.2 0.1 1 0.2 0.9 0.4 0.8 0.4 0.5 0.5 0.5 0.6 0.5 0.8 0.6 1.1 1.5 3.7 1.1 0.1 2.4-0.3 39-12.4-17.5 51.1 0 2.2 1.5 3.1 10.4 12 26.8 23.4z" id="DZA2148" name="Béchar">
</path>
</a>
<a xlink:title="Naâma" href="store.php?wilaya=Naâma">
<path d="M397.1 171.5l-0.6 1.4-0.1 0.7 0.3 1.1 0.3 1 3.6 7.2 1.3 3.5 0.1 0.7-0.1 0.4 0 0.5 0.1 0.5 0.9 1 0.5 0.3 0.3-0.3 0-0.4 0-0.7 0-0.5 0.1-0.4 0.4-0.3 0.6-0.1 0.7 0.1 0.4-0.4 0.4-0.8 1.7-2.5 1.5-1.8 0.4-0.3 0.5-0.2 0.9-0.3 1.7-0.6 0.4-0.4 0.6-0.1 1.2 0 1.4 0.3 0.4 0.3 0.3 0.3 0.3 1.1 0.1 1.7 0.1 0.9-0.2 0.6 0.1 0.5 0.2 0.2 0.6-0.1 2.1-1.1 2.3-1.7 1-0.6 0.8-0.1 0 2.4-1.7 11.9-0.2 10.4 1.1 14.3-0.2 4-0.5 2.1-2.6 9-0.9 3.2-0.4 2.3-0.1 1.2 1.2 10.4-0.1 0.8-0.4 1.2-4.1 11.1-0.1 1.4 0.1 1.2 0.7 1.2 0.8 0.5 0.7 0.3 0.8 0.1 0.6 0.2 0.5 0.3 0.4 0.8 0.1 0.6 0 0.8 0 1-0.4 2.5-1.3 4.2-39 12.4-2.4 0.3-1.1-0.1-1.5-3.7-0.6-1.1-0.5-0.8-0.5-0.6-0.5-0.5-0.8-0.4-0.9-0.4-1-0.2-3.2-0.1-6.9 0.8-0.8 0 0.8-5.2 0.7-2.1 0.4-1 0.8-1 0.8-0.4 2-0.3 1.8-0.8 1.6-1.2 2.8-3.2-0.7-1.3-13.5-10.4-3.1-1.1-1.6-1.4-6.5-11 2-1.5 0.4-0.4 0.3-0.5 0.2-0.5 0.1-0.6 0.1-1.3 0-1.3-0.3-1.2-0.8-0.8-1.4-1-1.3-1.2-1-1.4-0.6-1.8-0.9-1.7-2.4-2.4-0.5-1.9 0-5.7 0.5-1.4 0.7-1.5 0.9-3.2 0.7-1.1 0.7-1.6-0.3-1.9-2.1-5.2-0.6-0.7-0.8-0.6-1.7-0.6-0.7-0.6-0.3-0.9 0.2-0.9 0.5-0.6 0.5-0.5 0.5-0.6 0.4-0.8 0-0.7-0.5-1.7-0.4-2.8 0.1-2.8 2.3-9.4 0.1-1.1-0.1-0.8 0.7-0.4 8.6-5.3 1.7-0.5 0.7-0.1 1.5 0.1 2.3-0.1 1.1 0.1 3.3-0.3 0.5-0.1 0.4-0.2 0.6-0.5 0.6-0.6 0.3-0.2 2.9-1.3 0.6-0.4 0.8-0.7 1.3 0.8 0.7 0.3 0.8 0.2 1-0.1 1.5-0.4 0.5 0 0.6 0.2 0.9 0.6 0.8 0.6 0.9 0.5 1.1 0.3 3.7 0.3 2.2-0.3 1.2-0.5 1.2-0.7 3-2.4 2-1.3 1-0.4 0.9-0.1 0.9 0 1.1 0.3 0.9 0.5 0.7 0.5 0.7 0.9 0.4 0.6 0.7 2.1z" id="DZA2149" name="Naâma">
</path>
</a>
<a xlink:title="Tindouf" href="store.php?wilaya=Tindouf">
<path d="M239.3 492.5l37.6 74.6-129.3 90.8-0.6 0.6-6.9-4.5-16.2-10.6-17.7-11.6-9.6-6.2-9.5-6.3-9.6-6.3-9.6-6.3-19.1-12.5-9.5-6.3-9.6-6.3-9.6-6.4-9.5-6.3-9.6-6.3 0-75.6 0.2-1.5 0.5-1 0.9-0.8 6.2-3.4 2.2-1.7 2.2-1.2 0.6-0.7 1.6-2.9 0.8-0.6 1.7-0.8 0.8-0.5 3.2-3 3.3-2.3 5.4-2.4 1.6-1.2 4.4-4.2 5.2-3.5 2.9-2.7 2.3-1.3 0.8-0.5 2.9-3.1 1.7-0.7 2.2 0.1 2.2 0.4 1 0 1.1-0.1 1-0.4 5.5 0.3 4.4-4.6 5.4-2.3 3.7-0.4 5.4 0.4 8.5 3.4 4-3.8 6.8-0.8 7.1-2 6.7-0.7 13.2 0 35.5 75.7 73.2-19.7z" id="DZA2150" name="Tindouf">
</path>
</a>
<a xlink:title="Annaba" href="store.php?wilaya=Annaba">
<path d="M796.3 13.4l-0.6 0.2-0.2 0.5-0.1 5.7-0.2 0.7-0.2 0.4-1 0.4-0.5 0.3-0.3 0.5-0.9 1.9-1.3 1.7-0.7 1.3-1 1.6-0.4 0.5-0.4 0.4-0.5 0.2-0.5 0.2-1.4 0.2-0.7 0-0.7-0.2-0.7-0.3-1.1-0.6-0.8-0.2-0.2-0.3-0.2-0.6 0-1.3-0.4-0.8-0.3-0.6-3.6-2-0.6-3.8-0.9-2.8 0-0.7 0.1-0.7 0.3-0.5 0.2-0.8-0.3-0.6-0.5-0.5-1.3-0.7-0.7-1.1-2.1-8.6 0-0.3 0.6 0.4 0.3-0.2 0.3-0.5 0.5-0.1 0.4 0.1 0.9 0.6 0.5 0.1 0.4-0.1 1.3-0.7 0.6 0 0.5 0.8 0.2 0.7 0.3 0.4 0.7 0.1 1 0 0.4 0.2 0.4 0.2 0.8-0.4 0.9-0.3 1.7 1.3 1.4 1.5 1.6 1.2 2.2 0.5 0.5-0.2 0.4-0.2 0.5-0.1 0.6 0.1 0.5 0.3 0.5 0.3 0.4 0.4 0.4 0.4 2.3-0.2 0.5-0.2 0.9-1 0.5-0.4-0.4 1.2-0.6 1.3-0.2 1.2 0.8 0.8-0.8 1.8z" id="DZA2163" name="Annaba">
</path>
</a>
<a xlink:title="El Tarf" href="store.php?wilaya=El Taref">
<path d="M815.3 37.3l-0.4 0.3-0.9 0.7-0.6 0.7-1 1.5-0.5 0.5-0.7 0.5-0.7 0.4-0.6 0.3-0.8 0.3-0.8 0.1-0.5-0.1-0.3-0.4-0.2-2.8-0.7-1.5-0.2-0.5-0.2-0.5-0.2-0.4-0.5-0.3-8.7-3.7-0.6-0.5-0.4-0.6-0.3-0.9-0.3-0.6-0.5-0.7-1.6-1.4-0.5-0.3-2.3-0.4 0.7-1.3 1.3-1.7 0.9-1.9 0.3-0.5 0.5-0.3 1-0.4 0.2-0.4 0.2-0.7 0.1-5.7 0.2-0.5 0.6-0.2 1.7 1.3 2.7 0.8 2.1 0.3 6.8-1.7 1.1-0.6 1-0.9 6.8-3.4 0.8 0.6 0.9 0.9 0.9 0.5 2.2-0.1 1.1 0.1 0.9 0.4 0.7-0.3 0.6 0.3 0.6 0.5 0.7 0.4 1.7 0.1 1.6-0.1 5.1-2.1 0.2 1.6-0.1 0.7 0.2 0.6 1.7 2.6-0.1 0.7-0.9 0.6-3.3 1.4-1.7 0.3-1.8-0.1-1.8 0.2-1.5 0.8-0.3 0.9 1.6 0.9 1 1.2-0.4 2.2-1.1 2.1-1.1 1.2-5.8 3.5-3.2 1.2-1.4 0.9-1.1 1.4-0.1 2z" id="DZA2164" name="El Tarf">
</path>
</a>
<a xlink:title="Jijel" href="store.php?wilaya=Jijel">
<path d="M732.6 32.1l-6.2-1.3-0.4-0.2-0.2-0.3-0.3-0.8-0.3-0.1-0.4 0-1.3 0.8-1.1 0.4-0.3 0.4-0.6 0.7-0.5 0.2-0.9 0-1.5-0.1-1.9-0.5-2.6-0.2-1.7-0.5-0.7-0.1-1 0.1-1.8 0.8-0.7 0.5-0.5 0.7-0.3 0.7-0.5 0.5-1 0.3-1.7 0.2-1.1-0.1-1.2-0.4-0.7-0.4-0.9-0.2-0.6-0.1-1.9 0.4-2.9 1.2-0.6-0.1-0.7-0.1-1.2-0.9-0.5-0.1-0.7 0.3-0.4 0.3-0.8 0.8-0.4 0.3-0.6 0.2-0.5 0-0.6-0.1-0.5-0.3-0.5-0.5-0.3-0.9 0-0.7-0.3-1.1-1.1-0.4-0.9-0.7-1.2-0.4-0.2-0.2 0-0.3 0.2-0.3 0.2-0.6-0.4-1.9 0.3-0.1 1.5 0 0.2-0.1 0.6-0.8 0.4-0.3 1.9-0.7 1-0.8 0.6-2.2 0.7-0.9 0.8-0.7 0.9-0.5 2.1-0.6 0.9-0.5 1.8-1.6 1.1-0.4 1.2 0 3.3 0.7 2-0.1 8.1-1.9 7.8-2.9 1.8-1.1 0.6-0.9 0.3 0.2 0.8 0.8 0.2 0.4 0.1 0.3 0 0.6-0.3 1.1 0.1 0.5 0.1 0.2 1 0.1 0.5 0.1 0.5 0.2 0.4 0.4 0.4 0.5 0.3 0.5 0.2 0.7 0.2 0.9 0 1.7 0.3 1 0.6 1.5 2.6 2.8 2.3 1.2 0.4 0.4 0.2 0.5-1 2.3-0.1 2.6z" id="DZA2165" name="Jijel">
</path>
</a>
<a xlink:title="Skikda" href="store.php?wilaya=Skikda">
<path d="M771.6 2.1l0 0.3 2.1 8.6 0.7 1.1 1.3 0.7 0.5 0.5 0.3 0.6-0.2 0.8-0.3 0.5-0.1 0.7 0 0.7 0.9 2.8 0.6 3.8-0.8 0.3-0.9 0.6-0.4 0.3-0.6 0.8-0.1 0.7-0.2 1.4-0.3 0.4-0.5 0.3-0.8 0-1.2 0.3-1.3 0.5-5.4 2.9-1.1 0.9-1.2 1.5-0.3 0.8 0 0.6 0.2 0.4 0.1 0.5-0.1 0.3-0.2 0.2-0.4 0.2-3.7 1.1-1.2 0.7-1.1 2-3.6-0.9-0.8-0.4-0.7-0.1-0.5-0.2-0.2-0.4 0.1-0.4 0.3-0.4 0.6-0.5 0.1-0.3 0-0.5-0.1-1.2 0.1-0.4 0.2-0.2 0.7-0.3 0.5-0.1 0.6 0.1 0.6 0.3 0.4 0.1 0.4-0.2 0.3-0.5 0.1-0.6 0-0.4-0.4-0.2-0.9 0-5.6 0.3-2.1-0.6-2.6-1.2-0.3-0.5-0.2-0.5-0.3-0.3-0.5 0-2.6 2-0.9 0.2-2-0.4-1.7 0-2.3-0.1 0.1-2.6 1-2.3-0.2-0.5-0.4-0.4-2.3-1.2-2.6-2.8-0.6-1.5-0.3-1 0-1.7-0.2-0.9-0.2-0.7-0.3-0.5-0.4-0.5-0.4-0.4-0.5-0.2-0.5-0.1-1-0.1-0.1-0.2-0.1-0.5 0.3-1.1 0-0.6-0.1-0.3-0.2-0.4-0.8-0.8-0.3-0.2 0.5-0.6 0-1.3-0.1-1-0.1-0.9 0.6-1.2 0.4-0.4 2-1.5 0.6-0.8 0.5-0.4 1.6-0.9 2.1-0.5 2.3-0.1 1.9 0.7 1.8 1.3 0.2 0.1 0.1 0.6 0.1 0.5 0.2 0.3 0.5 0.1 0.5 0.4 0.5 2.3 0.8 1 0.7-0.3 0.9 0.4 0.9 0.5 1 0.2 7.3 0.5 0.6 0.2 0.9 0.5 0.8 0.7 0.5 0.6 0 1 1.4 0.6 1.9 0.1 1.3 0 4.3-1.4 1.3-0.7 0.8 0.3 1.2 0.3 1.2 0.1 0.5-0.5 0.4-0.6 2-1.7 0.7-0.4 0.3-0.3 0.4-0.6 0.4-0.8 0.1-0.6-0.1-0.6-0.2-0.5-1.9-2.1-1.4-1.2 0-0.3 0.5-0.1 0.9-0.3 0.5 0 0.5 0.1 0.9 0.5 0.6 0.2z" id="DZA2166" name="Skikda">
</path>
</a>
<a xlink:title="Illizi" href="store.php?wilaya=Illizi">
<path d="M986.5 738.8l-144.9-0.1-0.6-0.1-0.4-0.1-0.5-0.4-1.3-1.4-1.3-1.6-1.2-1.7-2.1-4.6-0.5-0.8-0.6-0.7-0.7-0.6-0.6-0.1-0.5-0.1-1.2 0.1-3.9-0.5-4.5-1.3-0.3-0.2-1.5-1.4-0.5-0.2-1-0.1-0.3 0-0.8-0.3-1.8-1.2-3.6-1.1-1.2-0.2-2.4-0.1-3.2-0.6-0.4-0.2-1.5-0.9-0.5-0.5-1.1-1.2-0.4-0.3-1-0.5-0.6-0.4-3-3.1-0.4-0.2-1.1-0.4-0.2-0.1-2.1-1.2-0.5-0.6-0.5-0.6-1.2-1.2-0.4-0.3-0.9-0.6-0.5-0.1-1 0.1-0.6-0.3-0.6-0.6-0.6-0.2-0.5-0.2-0.6-0.3-0.9-0.8-0.4-0.3-0.6-0.2-0.3 0-2 0.2-1.9-0.3-2.1-0.8-0.6-0.4-0.9-0.8-0.9-0.6-0.6-0.6-0.5-0.9-1.5-1.8-1.3-2.4-0.7-0.8-0.8-0.8-3.1-2.1-0.9-0.8-0.5-0.8-0.4-0.7-1-4.2 0-5.7 0.2-1 1-2.5 0.2-0.4 2.2-3.1 0.4-1 0.1-0.4 0-1.1-0.1-0.6-0.2-0.6-0.5-0.9-0.7-1.1-1.5-1.4-5.4-6.9-0.6-10.1-0.5-2.4-0.7-1.4-12-3.3-1.5-0.7-1.2-0.7-5.2-2.2-0.8-0.6-0.6-0.6-10.2-13.7-0.4-0.3-5-2.5-0.6-0.4-0.2-0.3-0.2-0.7-0.1-0.8 0.1-1.7 0.2-1.2 0.4-1.2 4-9.6 0.2-0.9 0.1-0.5-0.1-0.7-0.1-1-0.5-1.6-0.9-1.5-1.8-1.8-9.5-7.3-2-2.1-0.5-0.7-0.3-0.8-5.4-18.5-1.2-6.5 1.1-4.6 1.7-2.7 3-2.7 3.6-2.7 12-11.5 13-5 1.9-1.7-1-6.6-1.7-4.4-2.9-2.9-24-19.1 22.6-13.3 17.7-7.6 7.2 0 10.1 1.6 107.5-65.7 2.5 3.1 6.2 9.2 5.7 10.8 3.8 13.4 3.9 13.3 1 8.4 0.2 10.5-1.2 9.2-2.4 19.3 0.6 3.2 7.1 18.8-0.1 2.1-3.5 11.4-0.8 1.1-1.3 0.7-1.2 0.9 0.1 1.1 0.8 1.3 0.4 1.1-0.4 1-2 2.3-0.7 1.2-0.7 3.2-0.8 2.2-0.2 0.8 0 0.9 4.1 14.5 0.9 5.7 0.5 1.1 0.5 0.5 2.2 1.2 0.7 0.6 0.2 0.8-1.2 5.8-0.1 1.9 0.5 1.5 0.1 1.1-2 7-0.9 1-17.1 8.2 0 1.1-0.2 0.9-0.4 0.8-1.7 1.6-0.8 2.1-0.7 0.9-1.2 2.5 1.1 3 6.8 9.5 7.4 10.4 13.3 18.7 1.8 3.4 0.7 3.4 0.4 14.6 0.1 7.3 0.6 1.5 7.2 4.2 0.9 1.5 0.9 4.9 0.6 1.9 0.8 0.9 6.4 5.2 0.9 0.3 1.9-0.2 11-4.1 1-0.1 1.1 0.2 9.2 3.1 28.9 9.6 1.5 0.9 1.3 1.6 6.9 14.1z" id="DZA2188" name="Illizi">
</path>
</a>
<a xlink:title="Tamanrasset" href="store.php?wilaya=Tamanrasset">
<path d="M708.3 496.7l24 19.1 2.9 2.9 1.7 4.4 1 6.6-1.9 1.7-13 5-12 11.5-3.6 2.7-3 2.7-1.7 2.7-1.1 4.6 1.2 6.5 5.4 18.5 0.3 0.8 0.5 0.7 2 2.1 9.5 7.3 1.8 1.8 0.9 1.5 0.5 1.6 0.1 1 0.1 0.7-0.1 0.5-0.2 0.9-4 9.6-0.4 1.2-0.2 1.2-0.1 1.7 0.1 0.8 0.2 0.7 0.2 0.3 0.6 0.4 5 2.5 0.4 0.3 10.2 13.7 0.6 0.6 0.8 0.6 5.2 2.2 1.2 0.7 1.5 0.7 12 3.3 0.7 1.4 0.5 2.4 0.6 10.1 5.4 6.9 1.5 1.4 0.7 1.1 0.5 0.9 0.2 0.6 0.1 0.6 0 1.1-0.1 0.4-0.4 1-2.2 3.1-0.2 0.4-1 2.5-0.2 1 0 5.7 1 4.2 0.4 0.7 0.5 0.8 0.9 0.8 3.1 2.1 0.8 0.8 0.7 0.8 1.3 2.4 1.5 1.8 0.5 0.9 0.6 0.6 0.9 0.6 0.9 0.8 0.6 0.4 2.1 0.8 1.9 0.3 2-0.2 0.3 0 0.6 0.2 0.4 0.3 0.9 0.8 0.6 0.3 0.5 0.2 0.6 0.2 0.6 0.6 0.6 0.3 1-0.1 0.5 0.1 0.9 0.6 0.4 0.3 1.2 1.2 0.5 0.6 0.5 0.6 2.1 1.2 0.2 0.1 1.1 0.4 0.4 0.2 3 3.1 0.6 0.4 1 0.5 0.4 0.3 1.1 1.2 0.5 0.5 1.5 0.9 0.4 0.2 3.2 0.6 2.4 0.1 1.2 0.2 3.6 1.1 1.8 1.2 0.8 0.3 0.3 0 1 0.1 0.5 0.2 1.5 1.4 0.3 0.2 4.5 1.3 3.9 0.5 1.2-0.1 0.5 0.1 0.6 0.1 0.7 0.6 0.6 0.7 0.5 0.8 2.1 4.6 1.2 1.7 1.3 1.6 1.3 1.4 0.5 0.4 0.4 0.1 0.6 0.1 144.9 0.1 5.4 11.1 7.1 14.4-3.3 2.1-9.9 6.4-9.8 6.3-13.2 8.4-6.5 4.3-9.9 6.3-13.2 8.4-9.8 6.3-13.2 8.4-9.9 6.3-9.8 6.3-16.5 10.5-6.5 4.1-13.2 8.4-3.3 2.1-13.1 8.3-16.5 10.4-6.6 4.2-3.2 2.1-6.6 4.1-3.3 2.1-6.6 4.2-3.3 2.1-9.6 6-11.7 10.2-10.6 9.3-1.9 1.7-11.9 10.9-6.1 5.6-6.1 5.6-3 2.8-12.2 11.1-6.1 5.6-9.9 9-2.1 1.5-2.2 0.8-11 2.3-26 5.3-36.5 7.4-21.1 4.1 0-0.1-0.4-76.4-1.5-11.8-3.6-5.2-5-4.7-106.6-62.8-2.4-3.1-0.9-1.7 0.4-173.1-0.1-0.7-0.3-0.5-0.7-0.6-8.1-6.3-0.6-1.1-0.4-1.5 0.7-5.3-0.1-3.1-0.2-1.1-0.3-1.1-0.4-1-0.5-0.9-7.6-10.5-4.1-3.9-0.5-0.7-0.1-0.8 0.5-1.1 0.9-1.2 0.5-0.4 2.2-1.1 3.5-1.3 3.3-2.4 0.4-0.2 0.4-0.2 3.5-0.2 2.7 0.3 0.7 0 1.8-0.6 0.4-0.1 6.7 0.1 0.5-0.1 3.9-1.2 1.4-0.7 0.8-0.6 1.3-1.4 3-4.2 0.4-0.4 0.9-0.3 5-0.8 0.6-0.2 3.1-3.3 1.5-1.3 2.1-2.3 0.9-1.3 0.5-1.3 0.4-1.3 6.1-68.9 2.7-11.9 0.6-11.1-2.6-30 43.8-4.9 40.1 31.9 45.2 4.6 58.1-1.5z" id="DZA2189" name="Tamanrasset">
</path>
</a>
<a xlink:title="El Bayadh" href="store.php?wilaya=El Bayadh">
<path d="M485.2 180.9l2.6 5.3 0.9 0.9 0.9 0.6 2.6 1.2 2.1 1.2 7.4 2.1 2.3 0.9 1.6 1 0.9 0.6 0.8 0.9 0.8 1.2 3.5 7.2 6.6 10 0.6 1.8 0.2 2.5-0.2 1.9-0.6 1.5-1.8 2.1-0.3 0.6-0.2 0.7 0.1 0.9 0.6 1 0.9 1.4 0.5 0.8 0.3 0.8 0.5 3.6 0.4 1.3 0.7 1.7 1.1 1.9 4.7 5.8 1.5 3.4 2.7 9.9 1.4 2.8 0.4 1.8 0.3 2.6-0.4 13.8 0.3 2.1 1.5 5.6 0.3 2 0.2 2-0.1 2.3-0.5 2.1-0.8 2-4.2 6.3-0.7 1.6-0.1 2 0.3 1.6 0.9 2.7 0.2 1.2-0.1 1-0.8 1.2-1.1 1-4.1 2.9-1.4 1.4-50.9 25.9-9.2 5.9-4.5 3.8-16.9 18.1-26.8-23.4-10.4-12-1.5-3.1 0-2.2 17.5-51.1 1.3-4.2 0.4-2.5 0-1 0-0.8-0.1-0.6-0.4-0.8-0.5-0.3-0.6-0.2-0.8-0.1-0.7-0.3-0.8-0.5-0.7-1.2-0.1-1.2 0.1-1.4 4.1-11.1 0.4-1.2 0.1-0.8-1.2-10.4 0.1-1.2 0.4-2.3 0.9-3.2 2.6-9 0.5-2.1 0.2-4-1.1-14.3 0.2-10.4 1.7-11.9 0-2.4 0.6-1.6 0.5-1 0.4-0.7 1.4-1.5 1.8-1.5 0.7-0.8 0.4-0.5 0.3-0.9 0.4-0.9 0.5-0.8 0.7-0.4 0.8-0.3 1-0.1 2.9 0.1 0.5-0.2 2-1.7 0.4-0.4 10.5-6.5 0.2-0.1 3.5-2.2 1.6-0.7 1.4-0.1 10.4 3.3 2 1.5 0.9 1-0.7 7 0 1 0.3 0.6 0.7 0.2 7.4-0.5 1.9 0.3 0.9 0.5 0.6 1 1 2.4 2.6 3.3z" id="DZA2190" name="El Bayadh">
</path>
</a>
<a xlink:title="El Oued" href="store.php?wilaya=El Oued">
<path d="M744.2 162.9l0.9 2.9 1.4 1.6 10.5 6.2 2.7 0.9 5.7 1 3.3 1.7 3.3 1.1 2.7 0.3 10.2-0.3-1 1-0.7 1.6-0.1 4.3-1 5.9 0.2 2.2 0.7 3.2 0.3 1 1.4 2.8 0.5 3 0.4 1.5 6.8 11.8 0.7 2.3 0.1 7.9 0.7 2.7 1.3 1.4 1.7 0.5 2.3 0.2 1.8 0.6 5.4 3.9 0.9 0.5 1 0.3 1 0.1 1-0.2 1.1 0.6 4.6 7.2 4.9 7.7 0.6 1.8 0.7 8.1 0.4 5.9 0.6 1.9 1.4 1.6 5.9 3.8 7.7 5.6 10.2 7.3 8.1 5.9 0.7 0.8 0.5 1.1 0.9 4.1-84.6-0.1-6.9-0.8-6.7-2.1-4.9-5.1-3.8-5.6-6-10.8-2.1-4.8-10.6-37.1-4.2-9.3-8.9-3.4-57.3-3.8 5.5-7.5 4.7-8 2.5-3.3 2.1-2.2 0.6-1.1 0.4-1.3 1.9-12.4-0.1-2.9-0.1-1.3-0.5-2.1-0.8-2-0.5-1-1.5-2.2-1.8-2.2-3.4-3-0.2-0.3-0.2-0.4 0.1-0.8 0.2-0.7 0.3-0.7 0.4-0.6 0.5-0.5 0.6-0.3 2-0.8 0.8-0.5 0.6-0.6 0.1-0.8-0.1-0.9 0.3-0.8 0.3-0.3 0.4-0.1 3 1.4 4.6 1.5 25.2 3.2 9.4-2 0.9 0 7.7 2.2 2.8 1.3 0.4 0.5 0.4 0.6 0.5 0.6 0.7 0.6 1 0.4 0.7 0.2 1 0.2 1.5 0 1.6-0.3 1.7-0.7 1.7-1 1.7-1.5z" id="DZA2191" name="El Oued">
</path>
</a>
<a xlink:title="Ghardaïa" href="store.php?wilaya=Ghardaïa">
<path d="M661.2 252l-11.6 17.8-9.5 8.9-6.9 4.6-1.2 1.3-0.8 1-1.7 3.2-1.9 5.4-4 7.5-4.3 10.4-3 13.5-11.9 88-4 7-5.9 5.4-3.5 4.1-2.3 3.2-3.9 15.1-2.6 3.2-17.3 10.1-43.8 4.9-6.6-58.9 6.2-42.9 0.7-45.2 1.4-1.4 4.1-2.9 1.1-1 0.8-1.2 0.1-1-0.2-1.2-0.9-2.7-0.3-1.6 0.1-2 0.7-1.6 4.2-6.3 0.8-2 0.5-2.1 0.1-2.3-0.2-2-0.3-2-1.5-5.6-0.3-2.1 0.4-13.8-0.3-2.6-0.4-1.8 17.4-3.3 5.5-2.1 5.9-1.3 10.3-1.1 2.8 0.4 1.2 0.5 4 2 1.4 0.2 1.3-0.2 1.3-0.8 0.9-1.1 1.9-2.5 1-1.1 14.9-7 0.2-0.2 1.2-0.1 2.4 0.1 0.5 0.2 1.3 0.7 1.6 0.2 14.1-2.7 38.8 10.8z" id="DZA2192" name="Ghardaïa">
</path>
</a>
<a xlink:title="Laghouat" href="store.php?wilaya=Laghouat">
<path d="M622.4 241.2l-14.1 2.7-1.6-0.2-1.3-0.7-0.5-0.2-2.4-0.1-1.2 0.1-0.2 0.2-14.9 7-1 1.1-1.9 2.5-0.9 1.1-1.3 0.8-1.3 0.2-1.4-0.2-4-2-1.2-0.5-2.8-0.4-10.3 1.1-5.9 1.3-5.5 2.1-17.4 3.3-1.4-2.8-2.7-9.9-1.5-3.4-4.7-5.8-1.1-1.9-0.7-1.7-0.4-1.3-0.5-3.6-0.3-0.8-0.5-0.8-0.9-1.4-0.6-1-0.1-0.9 0.2-0.7 0.3-0.6 1.8-2.1 0.6-1.5 0.2-1.9-0.2-2.5-0.6-1.8-6.6-10-3.5-7.2-0.8-1.2-0.8-0.9-0.9-0.6-1.6-1-2.3-0.9-7.4-2.1-2.1-1.2-2.6-1.2-0.9-0.6-0.9-0.9-2.6-5.3 14.7-11 0.8-0.9 0.5-1.5 0.3-1.2 0.8-1.6 1.2-1.7 2.6-2.9 1.8-1.5 1.3-0.9 6-1.8 1.1-0.7 5.2-4.5 4.5-2.6 0.7-0.8 0.4-0.7 0.4-0.8 0.4-0.4 0.9-0.3 3.7-0.7 2-0.1 0.4 3.2-0.3 0.7-0.4 0.9-1.3 1.5-0.7 1.3-0.4 1.9-0.4 3.3 0.1 2.1 0.5 1.6 0.6 0.8 1 1 0.6 0.7 0.5 1 0.4 1.4 0.8 5.1 0.4 0.9 0.6 1 1.8 2 0.7 1 0.6 1.2 0.6 1.4 0.2 0.9-0.1 1-1 3.1-0.3 1.4 0 0.6 0.4 3.3 0.4 0.7 0.7 0.4 1.4 0 3.8 0.5 1.7 0 0.3-0.1 0.2-0.3 0.2-1.4 0.1-1.8-0.2-6.3 0.1-0.6 0.2-0.5 0.2-0.3 0.6-0.2 4.3-0.7 2.3-0.8 0.7-0.4 0.5-0.5 0.4-1.4 0.4-0.8 0.6-0.7 3.6-3.4 0.8-0.5 0.7-0.1 0.6 0.1 1.1 0.7 0.4 0.2 0.8 0 2.3 0 1.1 0.5 0.5 0.6 1.2 3.4 0.6 4.3 0.4 1.3 0.5 1.4 3.5 6.1 19.7 22.2 18.8 16.5 1.4 1.6 1.3 1.6 1.6 3.2 2.3 6.2 0.5 1.9z" id="DZA2193" name="Laghouat">
</path>
</a>
<a xlink:title="Ouargla" href="store.php?wilaya=Ouargla">
<path d="M858.6 300.2l1.5 6.9 1.4 6.2 1.3 6.3 2.8 12.5 1.3 6.2 1.4 6.2 1.4 6.2 2.7 12.5 1.4 6.1 2.7 12.4 4.1 18.5-11.2 6.3 1.1 1.8 2.9 3.4-107.5 65.7-10.1-1.6-7.2 0-17.7 7.6-22.6 13.3-58.1 1.5-45.2-4.6-40.1-31.9 17.3-10.1 2.6-3.2 3.9-15.1 2.3-3.2 3.5-4.1 5.9-5.4 4-7 11.9-88 3-13.5 4.3-10.4 4-7.5 1.9-5.4 1.7-3.2 0.8-1 1.2-1.3 6.9-4.6 9.5-8.9 11.6-17.8-1.2-23.1 1.5-5.5 1.1-6.1 57.3 3.8 8.9 3.4 4.2 9.3 10.6 37.1 2.1 4.8 6 10.8 3.8 5.6 4.9 5.1 6.7 2.1 6.9 0.8 84.6 0.1z" id="DZA2194" name="Ouargla">
</path>
</a>
<a xlink:title="Alger" href="store.php?wilaya=Alger">
<path d="M573.9 22.2l2.8 3.5-2.3 1.2-2.3 0.4-0.6 0.3-0.6 0.2-0.6 0-0.7-0.2-0.6-0.4-0.4-0.9 0-1-0.4-0.7-1.4-0.4 0.1-1.4-0.5-0.4-1.9-0.1-0.4-0.1-0.2-0.3 0.2-0.3 0.3-0.6 0.1-1.3 0.3-1.4 0-0.4 1.5 0.2 1.6 1 1.2 1.4 1.4 1.2 1.8 0.6 1.6-0.1z" id="DZA2195" name="Alger">
</path>
</a>
<a xlink:title="Boumerdès" href="store.php?wilaya=Boumerdés">
<path d="M615.8 12.9l-0.1 2.1-0.2 0.8-0.4 0.8-1.4 1.9-1.2 1.4-0.8 0.4-0.6 0.1-0.5 0.3-0.1 0.4 0.2 0.5 0.2 0.5 0.4 0.6 0.9 1 0 0.4-0.3 0.5-0.8 0.8-0.5 0.7-0.5 0.5-0.6 0.2-1-0.1-1.5-0.5-0.5-0.2-0.5 0.2-0.5 0.6-0.2 0.6-0.4 0.5-0.5 0.1-0.4 0-0.5-0.6-0.3-0.2-0.4-0.1-0.9 0.2-0.3 0.2-0.4 0.5-0.1 0.4-0.1 2-3.2 0.6-0.8 0-0.4-0.2-0.2-0.4 0.2-0.5 0.3-0.7 1.4-1.8 0.2-0.6-0.1-0.4-0.2-0.4-0.4-0.3-0.9-0.4-0.6-0.1-0.6-0.1-0.8 0.2-1.9 0.8-1.4 0.1-3-0.7-1 0.6-0.4 0.2-0.5-0.1-2.3-1-0.4-0.6-0.5-0.4-0.8-0.2-1.5 0.1-1.7 0.3-2.8 1.3-2.8-3.5 0.3 0 1.5-0.8 0.6-0.9 0.2-0.9 0.1-1.6 0.5 0 3.1 1.5 1.8 0.4 5.8 0.4 1-0.1 1.9-0.6 1-0.1 0.5-0.2 0.3-0.4 0.3-0.4 0.3-0.2 0.5-0.1 1.1 0.1 0.4 0 1.9-1 2.9-2.9 1.5-1.1 4.2-1.3 2.2-0.3 1.9 0.3 1.7 1.1 0.8 0.2 0.5-0.1 1-0.3 1.7 0 0.4 0z" id="DZA2196" name="Boumerdès">
</path>
</a>
<a xlink:title="Tizi Ouzou" href="store.php?wilaya=Tizi Ouzou">
<path d="M642.5 13l0.1 0.4 0.1 1 0.3 0.7 2 3 0.1 0.4 0.1 0.6-0.1 0.6-0.3 1.3-0.2 0.6-0.5 0.3-0.5-0.1-1.2-0.5-0.5-0.1-0.7 0.1-0.6 0.4-0.4 0.4-0.2 0.8 0.1 0.4 0.3 0.5 0.4 0.3 1 0.4 0.5 0.2 0.3 0.3 0.3 0.5-0.1 0.8-0.3 0.8-2 3.2-0.6 1.7-0.5 0.7-3.6 4.1-1.3 0.8-2.7 0.9-0.9-0.3-2.1 0.5-0.8 0-2.1-0.6-0.7-0.1-1.5 0.7-0.8 0.2-12.1-0.5-2.3-0.8-1.8-1.1-1.6-1.6-1.2-0.9-1.5-1.2-1.4-2.4 0.1-2 0.1-0.4 0.4-0.5 0.3-0.2 0.9-0.2 0.4 0.1 0.3 0.2 0.5 0.6 0.4 0 0.5-0.1 0.4-0.5 0.2-0.6 0.5-0.6 0.5-0.2 0.5 0.2 1.5 0.5 1 0.1 0.6-0.2 0.5-0.5 0.5-0.7 0.8-0.8 0.3-0.5 0-0.4-0.9-1-0.4-0.6-0.2-0.5-0.2-0.5 0.1-0.4 0.5-0.3 0.6-0.1 0.8-0.4 1.2-1.4 1.4-1.9 0.4-0.8 0.2-0.8 0.1-2.1 2.2 0.3 1 0.5 2-1.1 0.6-0.1 0.6 0.1 1.2 0.5 0.7 0.2 0.6-0.2 1.2-0.8 0.7-0.3 0.8 0.1 1.3 0.6 0.7 0.2 5.8-0.9 0.6 0.1 0.7 0.3 0.7 0.3 0.5 0.4 0.6 0.3 1.5 0 0.7 0.3 1.5-0.7 0.5 0z" id="DZA2197" name="Tizi Ouzou">
</path>
</a>
<a xlink:title="Tipaza" href="store.php?wilaya=Tipaza">
<path d="M564.8 17.9l0 0.4-0.3 1.4-0.1 1.3-0.3 0.6-0.2 0.3 0.2 0.3 0.4 0.1 1.9 0.1 0.5 0.4-0.1 1.4 0 0.8 0.4 1.2 0.1 0.4-0.1 0.3-0.2 0.2-0.3 0.2-1 0.2-0.6 0.3-0.3 0.4-0.4 0.2-0.7 0.2-5.5-0.2-0.5 0.2-0.2 0.4-0.1 0.4-0.2 0.5-0.7 0.6-3 1.5-0.9 0.3-0.8 0.5-0.9 0.7-2.2 2.1-0.8 0.5-0.4 0.7-0.2 1-0.4 0.6-0.5 0.4-1 0.2-1.8 0.1-0.4-0.1-1.4-0.4-0.4 0-0.4 0.4-0.3 0.3-0.4 2.3-9.3 0.4-6.8-1.4-1.2 0-3.2 1.1-1.8 0.4-0.6 0.2-1.2-0.1-1.5-0.5-6.7-0.8-0.8 0.1-0.5 0.4-0.3 1.4-0.3 0.5-0.5 0.5-0.5 0.3-1.1 0.6-0.4 0.2-0.5-0.1-1.3-2.7-1.6-1.8 0.2-1.1 1.3-2.1 0.5-1.1 0.6-2 0.7 0 0.5-0.1 1.2-0.6 0.5-0.1 0.4 0 1.1 0.3 0.5 0 2.7-0.7 2.7-0.2 2.2 0.5 0.6 0.1 4.2-0.6 12.1-3.6 1-0.4 1-0.1 1.1 0.3 0.9 0.6 0.3 0.5 0.1 0.6 0.2 0.4 0.5 0.2 0.6 0 1 0.3 0.4 0.1 7-0.4 1.5-0.6 4.6-3.6 3.2-1.7 1.2-1 1.2-1.8 0.3-0.8 1.3-1.3 2.7-2 2.2-0.5 0.3 0.1z" id="DZA2198" name="Tipaza">
</path>
</a>
<a xlink:title="Aïn Defla" href="store.php?wilaya=Aïn Defla">
<path d="M540.3 41.6l0.5 1.2 0.5 0.6 0.5 0.2 0.2 0.3 0.1 0.7 0.4 0.4 0.9-0.1 2.3-0.9 1.4-0.3 1.2-0.7 0.3 0.1 0.2 0.2 0.4 1.8-0.1 0.7-0.1 0.5-0.4 0.6-0.9 0.9-0.8 0.5-0.8 0.3-3 0.1-0.4 0.2-0.3 0.3-0.5 0.6-0.6 0.7-0.3 0.4-0.2 0.5 0 1 0.2 0.7 0.8 0.7 0.3 0.5 0.2 0.5 0.4 0.5 0.2 0.2 0.5-0.2 1.1-0.9 0.3-0.2 0.3 0 0.9 0.4 1.6 0 0.4 0.1 0.3 0.2 0 0.5-0.2 0.6-1.5 1.5-0.7 1.1-0.6 1.5-0.4 0.8-5.1 3.3-0.4 0.4-0.3 0.6-0.3 0.7-0.3 1.4-0.4 0.8-0.6 0.9-3.1 2.9-2.1 2.9-3.3-1.3-2.3-1.4-1.2-0.3-1.2-0.1-2.3 0.4-2.6-0.1-1.7-0.3-1.1 0.4-0.5 0.6-0.2 0.9-0.4 0.4-0.8 0.2-2.4-0.7-0.7 0.2-0.8 1.1-0.6 0.4-0.6-0.3-0.3-0.6-1.5-1.6-4.4-1.3-0.2-1.1 0.2-0.8 0.3-0.6-0.1-0.5-0.3-0.5-1.2-1.2-1.5-3.1-0.4-1.1 0-1.5-0.3-0.3-1.1-0.6-0.7-0.6-0.7-1.2-0.2-0.7 0.2-0.6 0.4-0.3 0.7-0.2 0.5-0.3 0.3-0.6 0-1.4-0.2-0.6-0.5-0.4-0.5-0.1-0.4-0.3 0-0.5 0.5-1.6-0.1-0.6-1-1.3-0.7-1.1-0.7-1.9-0.1-1 0.4-0.8 3.4-2.6 0.8-1.1 1.6 1.8 1.3 2.7 0.5 0.1 0.4-0.2 1.1-0.6 0.5-0.3 0.5-0.5 0.3-0.5 0.3-1.4 0.5-0.4 0.8-0.1 6.7 0.8 1.5 0.5 1.2 0.1 0.6-0.2 1.8-0.4 3.2-1.1 1.2 0 6.8 1.4 9.3-0.4z" id="DZA2199" name="Aïn Defla">
</path>
</a>
<a xlink:title="Chlef" href="store.php?wilaya=Chlef">
<path d="M502.8 34l-0.6 2-0.5 1.1-1.3 2.1-0.2 1.1-0.8 1.1-3.4 2.6-0.4 0.8 0.1 1 0.7 1.9 0.7 1.1 1 1.3 0.1 0.6-0.5 1.6 0 0.5 0.4 0.3 0.5 0.1 0.5 0.4 0.2 0.6 0 1.4-0.3 0.6-0.5 0.3-0.7 0.2-0.4 0.3-0.2 0.6 0.2 0.7 0.7 1.2 0.7 0.6 1.1 0.6 0.3 0.3 0 1.5 0.4 1.1 1.5 3.1 1.2 1.2 0.3 0.5 0.1 0.5-0.3 0.6-0.2 0.8 0.2 1.1-1.3 0.3-0.6-0.1-1.7-0.8-1.3-0.8-0.3-0.3-0.3-0.5-0.2-0.9-0.1-0.4-0.3-0.3-1.2-1.1-0.4 0-0.3 0.1-0.6 1.1-0.8 0.8-0.2 0.3-0.1 1.1-0.2 0.5-0.2 0.3-0.3 0.2-2.1 0.8-0.3 0.3-0.1 0.3 0.4 0.9-0.2 0.4-1.5 1-0.4 0.3-0.2 0.7 0.2 0.7-1.7-0.7-0.4-0.3-0.6-0.6-0.4-1-0.3-0.4-0.8-1-0.4-0.7-1-2.4-0.3-0.3-0.4-0.2-0.5 0.1-4.6 1.4-0.8-0.1-0.9-0.3-1.8-1.2-0.7-0.4-0.5-0.3-0.3-0.5-0.3-0.6-0.6-1-0.3-0.3-0.3-0.2-1.8-0.1-1.8 0.1-0.5-0.1-0.4-0.3-1.3-2-0.1-0.5 0-0.4 0.4-0.9 0-0.4 0-0.4-0.9-2.5-0.2-0.6-0.2-1.7-0.1-0.5-0.6-0.2-0.8 0-2.8 0.8-2 0.8-0.8 0-0.9-0.1-1.5-0.6-0.1-1.2 1.6-4.8 0.2-0.8 0.1-1.1 0-1.2 0.6 0 0.7-0.4 1.7-1.1 3-0.9 0.7-0.6 0.5-0.5 1.2-0.8 0.5-0.5 0.2-0.5 0.1-0.5 0.2-0.5 0.5-0.6 0.8-0.3 2.2-0.5 1.8-1.2 3.5-0.1 1-0.3 2-1.1 1.1-0.2 2.1 0 0.9-0.1 1.1-0.3 2.9-1.4 1-0.2 0.9 0.1 2.1 0.8 1.1 0.3 1.1-0.1 2-0.6 8.9-0.5z" id="DZA2200" name="Chlef">
</path>
</a>
<a xlink:title="Mascara" href="store.php?wilaya=Mascara">
<path d="M431.7 85l1.8 1.6 0.5 1.6 0.4 2.3 0.4 1.1 0.5 1 0.7 0.6 1.2 0.2 0.7-0.1 1.7-0.4 0.9-0.1 1.1 0.1 1.1 0.3 1.2 0.9 1.5 1.4 0.9 0.5 0.9 0.1 1-0.3 0.8-0.1 0.8 0.1 1 0.7 0.4 0.5 0.5 0.5 0.8 0.4 3.2 0.5 2.6 1.2 2.3 0.4-0.3 1.1 0.3 0.4 0.5 0.5 1.7 1 0.3 0.4-0.1 0.7-0.5 0.9-2.3 3.1-0.8 1-1.2 0.6-0.7 0.1-0.6-0.2-0.7-0.3-1.8-0.7-0.7-0.1-0.5 0-0.7 0.2-0.7 0.3-0.7 0.4-0.7 0.5-0.6 0.9-0.6 1-1.3 3.1-2.5 3.4-1 2.8-0.7 0.5-1.4 1.1-0.9 0.5-1 0.3-1-0.1-2-0.5-0.8 0.1-1.8 0.8-1.5 0.3-0.8 0.3-0.8 0.3-1 0.3-0.9-0.2-1.2-0.8-0.6-0.8-0.8-1.6-0.6-0.7-0.6-0.3-0.5 0.1-0.7 0.3-0.8 0-1.3-0.3-0.9 0.1-0.6 0.5-0.4 0.9-0.4 0.3-0.5 0-1-0.7-0.8-0.8-0.4-0.3-0.7-0.1-0.5-0.4-0.3-0.3-0.1-0.7 0-0.8 0-0.6-0.3-0.6-0.3-0.4-0.3-0.1-0.4 0.2-0.3 0.5-0.2 0.8-0.3 0.5-1.4 0.3-0.8-1.8-0.6-0.9-1-0.9-0.1-0.5 0-0.3 0.4-0.4 0.1-0.6 0-0.8 0.2-0.9 0.2-0.5 0.2-1 0.3-1.1-0.1-0.8-0.8-0.6-7.5-2.9-0.5 0-0.4 0.2-0.7 0.8-0.7 0-1-0.3-1.6-0.7-0.7-0.5-0.2-0.4 0.8-1.1 0.5-0.8 0.1-0.9-0.3-0.4-0.3-0.1-0.8 0.2-1 0.4-1.1 0.3-1 0.1 0.2-0.5 1.1-0.7 0.5-0.4 0.4-0.9 0-1.6 0.4-0.5 0.6-0.2 1.2-0.4 0.5-0.4 0.3-0.6 0.4-0.9 0.3-1.1 0.3-0.7 0.5-0.7 2.8-2.1 0.7-0.7 0.6-0.9 0.5-1.4 0.5-0.5 0.8-0.5 0.7-0.1 0.5 0 1.1 0.1 0.8-0.4 0.9-0.7 2.3-3.1 2-2.2 0.1 0.7 0.6 0.9-0.1 0.6 0.1 0.4 0.4 0.3 1.8 1 0.5 0.3 0.7 0.1 0.9-0.2 2.3-0.6 1.4-0.6 1.4-1 0.4-0.2 0.3 0 0.4 0.3 0.4 0.8 0.3 0.5 0.8 2.5 0.3 0.3 0.7-0.5 1-0.3 1.9 0z" id="DZA2201" name="Mascara">
</path>
</a>
<a xlink:title="Mostaganem" href="store.php?wilaya=Mostaganem">
<path d="M454.6 55.7l-1.1 1.2-0.5 1-0.6 0.7-1.7 1.7-0.3 0.5-0.6 1.3-0.4 0.4-0.6 0.4-1.3 0.4-0.4 0.3-0.3 0.3-0.1 0.7 0 1.4-0.1 0.9-0.1 1.1-0.1 0.5-0.2 0.2-0.6 0.3-0.4 0.1-1.4 0.2-0.4-0.1-0.5 0.2-0.5 0.3-0.6 1.2-0.3 0.7-0.1 0.7 0 0.3 0.2 0.2 0.4 0.2 0.3 0.3 0 0.4-0.7 3-0.2 0.5-0.3 0.5-0.6 0.7-0.9 0.9-0.7 0.5-0.8 0.2-0.8-0.1-0.4 0-0.4 0.1-0.5 0.3-0.6 0.5-1.5 1.3-0.5 0.7-0.6 0.5-0.8 0.7-0.3 1-1.9 0-1 0.3-0.7 0.5-0.3-0.3-0.8-2.5-0.3-0.5-0.4-0.8-0.4-0.3-0.3 0-0.4 0.2-1.4 1-1.4 0.6-2.3 0.6-0.9 0.2-0.7-0.1-0.5-0.3-1.8-1-0.4-0.3-0.1-0.4 0.1-0.6-0.6-0.9-0.1-0.7 0-0.3 1.5-0.3 2.1-1.1 2-1.5 1.6-1.5 1.7-3.5 0.5-1.5 1.6-3.8 0.4-1.4 0.1-0.6 0.1-0.4 0.4-0.3 0.5-0.2 0.4-0.3 2.4-2.5 0.8-0.6 3.1-1.1 0.5-0.4 0.2-0.4 1.1-0.7 0.4-0.3 0.2-0.6 0.2-1.4 0.2-0.5 0.9-0.5 1.2-0.2 2.1-0.1 1.1-0.2 0.8-0.6 0.7-0.6 3.6-2.5 1.8-0.5 0.9-0.8 0.7-0.8 0.8-0.6 0.9-0.2 3.8-0.3 0 1.2-0.1 1.1-0.2 0.8-1.6 4.8 0.1 1.2z" id="DZA2202" name="Mostaganem">
</path>
</a>
<a xlink:title="Relizane" href="store.php?wilaya=Relizane">
<path d="M488.8 76.3l-0.4 1.5-1.3 1.7-0.7 0.7-0.7 0.4-0.7 0-1.3-0.5-0.7-0.1-0.8 0.2-0.3 0.7-0.2 0.9-0.1 1.9-0.1 1.1-0.7 3.1-1.9 0.1-1 0.3-2.6 1.5-1.8 0.6-2.3 1.5-1.4 0.1-0.4 0.2 0 0.4 0.2 0.4 0.4 0.4 0.1 0.5-0.5 0.1-0.5-0.5-0.7-0.3-0.5 0.1-0.4 0.1-0.5 0.4-3.4 3.7-0.3 0.5-0.1 0.4 0.2 0.9-0.2 0.7-0.4 0.3-0.4 0.1-0.8-0.1-1-0.3-2.3-0.4-2.6-1.2-3.2-0.5-0.8-0.4-0.5-0.5-0.4-0.5-1-0.7-0.8-0.1-0.8 0.1-1 0.3-0.9-0.1-0.9-0.5-1.5-1.4-1.2-0.9-1.1-0.3-1.1-0.1-0.9 0.1-1.7 0.4-0.7 0.1-1.2-0.2-0.7-0.6-0.5-1-0.4-1.1-0.4-2.3-0.5-1.6-1.8-1.6 0.3-1 0.8-0.7 0.6-0.5 0.5-0.7 1.5-1.3 0.6-0.5 0.5-0.3 0.4-0.1 0.4 0 0.8 0.1 0.8-0.2 0.7-0.5 0.9-0.9 0.6-0.7 0.3-0.5 0.2-0.5 0.7-3 0-0.4-0.3-0.3-0.4-0.2-0.2-0.2 0-0.3 0.1-0.7 0.3-0.7 0.6-1.2 0.5-0.3 0.5-0.2 0.4 0.1 1.4-0.2 0.4-0.1 0.6-0.3 0.2-0.2 0.1-0.5 0.1-1.1 0.1-0.9 0-1.4 0.1-0.7 0.3-0.3 0.4-0.3 1.3-0.4 0.6-0.4 0.4-0.4 0.6-1.3 0.3-0.5 1.7-1.7 0.6-0.7 0.5-1 1.1-1.2 1.5 0.6 0.9 0.1 0.8 0 2-0.8 2.8-0.8 0.8 0 0.6 0.2 0.1 0.5 0.2 1.7 0.2 0.6 0.9 2.5 0 0.4 0 0.4-0.4 0.9 0 0.4 0.1 0.5 1.3 2 0.4 0.3 0.5 0.1 1.8-0.1 1.8 0.1 0.3 0.2 0.3 0.3 0.6 1 0.3 0.6 0.3 0.5 0.5 0.3 0.7 0.4 1.8 1.2 0.9 0.3 0.8 0.1 4.6-1.4 0.5-0.1 0.4 0.2 0.3 0.3 1 2.4 0.4 0.7 0.8 1 0.3 0.4 0.4 1 0.6 0.6 0.4 0.3 1.7 0.7z" id="DZA2203" name="Relizane">
</path>
</a>
<a xlink:title="Saida" href="store.php?wilaya=Saida">
<path d="M444.4 121.1l6.4-0.5 1.3 0.3 0.1 1.3 0.3 0.6 1.1 0.7 1.7 0.8 1 0.7 0.7 0.8 1 1.3 0.4 0.7 0.1 0.9-0.1 0.6-0.4 0.8-4.5 4-0.5 0.6-0.2 0.8 0.1 1.3 0.2 1.8 1 3.2 7.9 13.7-0.1 0.6-0.3 0.5-0.5 0.4-3 1.6-0.9 0.7-1.4 0.1-1.6 0.7-3.5 2.2-0.2 0.1-10.5 6.5-0.4 0.4-2 1.7-0.5 0.2-2.9-0.1-1 0.1-0.8 0.3-0.7 0.4-0.5 0.8-0.4 0.9-0.3 0.9-0.4 0.5-0.7 0.8-1.8 1.5-1.4 1.5-0.4 0.7-0.5 1-0.6 1.6-0.8 0.1-1 0.6-2.3 1.7-2.1 1.1-0.6 0.1-0.2-0.2-0.1-0.5 0.2-0.6-0.1-0.9-0.1-1.7-0.3-1.1-0.3-0.3-0.4-0.3-1.4-0.3-1.2 0-0.6 0.1-0.4 0.4-1.7 0.6-0.9 0.3-0.5 0.2-0.4 0.3-1.5 1.8-1.7 2.5-0.4 0.8-0.4 0.4-0.7-0.1-0.6 0.1-0.4 0.3-0.1 0.4 0 0.5 0 0.7 0 0.4-0.3 0.3-0.5-0.3-0.9-1-0.1-0.5 0-0.5 0.1-0.4-0.1-0.7-1.3-3.5-3.6-7.2-0.3-1-0.3-1.1 0.1-0.7 0.6-1.4 20-17.6 0.2-0.3 0.3-0.9 0.3-1 0.1-1.2-0.1-1-0.3-0.8-2.5-3.8-1.6-1.6-1.7-1.3-0.4-0.4-0.8-0.6-0.2-0.3 0-0.7-0.1-0.4-0.2-0.3-0.5-0.2-1.2 0-0.2-0.1-0.2-0.4-0.4-0.3-0.9-0.3-0.3-0.2-0.2-0.3 0-0.4 0-0.8-0.3-0.6-0.7-0.5-1.9-0.8-0.3-0.2-0.2-0.3 0-0.3 0.3-0.5 0.5-0.3 0.3 0 0.4 0.3 0.3 0 1-0.5 1.2-0.3 0.3-0.2 0.3-0.2 0.1-0.3-0.1-0.3-0.4-0.4-0.4-0.3-0.2-0.4-0.1-0.5 0.2-1.6-0.1-0.4-0.3-0.4 0.1-0.4 0.2-0.4 0.1-0.6 0.2-0.3 0.2-0.2 0.2-0.1 0.4 0.1 0.5 0.2 0.3 0 0.3-0.1 0.3-0.2 0.3-0.5 0-0.3-0.1-0.3-0.5-0.4-0.1-0.4-0.2-1 0-0.5 0-0.8 0.4-0.7 0.4-0.4 0.3 0 0.7-0.1 0.5-0.3 0.4-0.4 0.4-0.3 0.4 0 0.8 0.1 1.4-0.3 0.3-0.5 0.2-0.8 0.3-0.5 0.4-0.2 0.3 0.1 0.3 0.4 0.3 0.6 0 0.6 0 0.8 0.1 0.7 0.3 0.3 0.5 0.4 0.7 0.1 0.4 0.3 0.8 0.8 1 0.7 0.5 0 0.4-0.3 0.4-0.9 0.6-0.5 0.9-0.1 1.3 0.3 0.8 0 0.7-0.3 0.5-0.1 0.6 0.3 0.6 0.7 0.8 1.6 0.6 0.8 1.2 0.8 0.9 0.2 1-0.3 0.8-0.3 0.8-0.3 1.5-0.3 1.8-0.8 0.8-0.1 2 0.5 1 0.1 1-0.3 0.9-0.5 1.4-1.1 0.7-0.5z" id="DZA2204" name="Saida">
</path>
</a>
<a xlink:title="Tiaret" href="store.php?wilaya=Tiaret">
<path d="M529.3 93.1l1.7 7.1 0.1 6.6 0.3 0.4 0.4 0.4 0.8 0.5 0.5 0.1 0.9 0.2 0.3 0.3 0.3 0.5 0.7 1.4 0.3 0.8 0.1 0.9-0.3 0.7 0 0.7 0.2 0.4 0.3 0.4 10.5 8.5 0.6 0.7 0.2 0.7-0.4 0.5-0.7 0.3-3.4 1-0.2 0.1-0.8 1.6-2.2 6-1 1.7-3.4 3.8-0.6 4.9-2 0.1-3.7 0.7-0.9 0.3-0.4 0.4-0.4 0.8-0.4 0.7-0.7 0.8-4.5 2.6-5.2 4.5-1.1 0.7-6 1.8-1.3 0.9-1.8 1.5-2.6 2.9-1.2 1.7-0.8 1.6-0.3 1.2-0.5 1.5-0.8 0.9-14.7 11-2.6-3.3-1-2.4-0.6-1-0.9-0.5-1.9-0.3-7.4 0.5-0.7-0.2-0.3-0.6 0-1 0.7-7-0.9-1-2-1.5-10.4-3.3 0.9-0.7 3-1.6 0.5-0.4 0.3-0.5 0.1-0.6-7.9-13.7-1-3.2-0.2-1.8-0.1-1.3 0.2-0.8 0.5-0.6 4.5-4 0.4-0.8 0.1-0.6-0.1-0.9-0.4-0.7-1-1.3-0.7-0.8-1-0.7-1.7-0.8-1.1-0.7-0.3-0.6-0.1-1.3-1.3-0.3-6.4 0.5 1-2.8 2.5-3.4 1.3-3.1 0.6-1 0.6-0.9 0.7-0.5 0.7-0.4 0.7-0.3 0.7-0.2 0.5 0 0.7 0.1 1.8 0.7 0.7 0.3 0.6 0.2 0.7-0.1 1.2-0.6 0.8-1 2.3-3.1 0.5-0.9 0.1-0.7-0.3-0.4-1.7-1-0.5-0.5-0.3-0.4 0.3-1.1 1 0.3 0.8 0.1 0.4-0.1 0.4-0.3 0.2-0.7-0.2-0.9 0.1-0.4 0.3-0.5 3.4-3.7 0.5-0.4 0.4-0.1 0.5-0.1 0.7 0.3 0.5 0.5 0.5-0.1-0.1-0.5-0.4-0.4-0.2-0.4 0-0.4 0.4-0.2 1.4-0.1 2.3-1.5 1.8-0.6 2.6-1.5 1-0.3 1.9-0.1 1.1 1.4 0.5 0.2 0.6 0.1 0.6-0.3 0.3-0.6 0.4-1.8 0.3-0.8 0.4-0.7 0.7-0.1 0.6 0.2 0.7 0.4 1.3 0.2 2.7 1.3 0.6 0.4 0.4 0.5 0.2 0.7 0.2 1.3 0.3 0.7 0.4 0.1 0.7-0.2 0.9-0.4 1.2-0.2 0.9 0.6 1.5 1.8 1.3 0.9 1.1 0.2 0.7-0.4 0.5-1.2 0.5-0.4 0.3 0.1 0.3 0.4 0.3 0.5 0.3 0.3 0.5 0.3 0.8 0.1 5.5-0.2 4.4-1 4.9-0.2 0.5 0.3 0.2 0.6 0.1 0.6 0.1 0.4 0.5 0 1.6-0.6 2.3-0.4 4.3 0.1z" id="DZA2205" name="Tiaret">
</path>
</a>
<a xlink:title="Tissemsilt" href="store.php?wilaya=Tissemsilet">
<path d="M503.4 71.4l4.4 1.3 1.5 1.6 0.3 0.6 0.6 0.3 0.6-0.4 0.8-1.1 0.7-0.2 2.4 0.7 0.8-0.2 0.4-0.4 0.2-0.9 0.5-0.6 1.1-0.4 1.7 0.3 2.6 0.1 2.3-0.4 1.2 0.1 1.2 0.3 2.3 1.4 3.3 1.3-3.4 7.3-0.7 0.7-0.9 0.4-0.9 0.1-0.8 0.3-0.5 0.6-0.2 0.6 0.1 0.9 0.4 1 1 1.2 0.8 0.5 1.8 0.8 0.5 0.6 0.4 0.6-0.6 2.7-4.3-0.1-2.3 0.4-1.6 0.6-0.5 0-0.1-0.4-0.1-0.6-0.2-0.6-0.5-0.3-4.9 0.2-4.4 1-5.5 0.2-0.8-0.1-0.5-0.3-0.3-0.3-0.3-0.5-0.3-0.4-0.3-0.1-0.5 0.4-0.5 1.2-0.7 0.4-1.1-0.2-1.3-0.9-1.5-1.8-0.9-0.6-1.2 0.2-0.9 0.4-0.7 0.2-0.4-0.1-0.3-0.7-0.2-1.3-0.2-0.7-0.4-0.5-0.6-0.4-2.7-1.3-1.3-0.2-0.7-0.4-0.6-0.2-0.7 0.1-0.4 0.7-0.3 0.8-0.4 1.8-0.3 0.6-0.6 0.3-0.6-0.1-0.5-0.2-1.1-1.4 0.7-3.1 0.1-1.1 0.1-1.9 0.2-0.9 0.3-0.7 0.8-0.2 0.7 0.1 1.3 0.5 0.7 0 0.7-0.4 0.7-0.7 1.3-1.7 0.4-1.5-0.2-0.7 0.2-0.7 0.4-0.3 1.5-1 0.2-0.4-0.4-0.9 0.1-0.3 0.3-0.3 2.1-0.8 0.3-0.2 0.2-0.3 0.2-0.5 0.1-1.1 0.2-0.3 0.8-0.8 0.6-1.1 0.3-0.1 0.4 0 1.2 1.1 0.3 0.3 0.1 0.4 0.2 0.9 0.3 0.5 0.3 0.3 1.3 0.8 1.7 0.8 0.6 0.1 1.3-0.3z" id="DZA2206" name="Tissemsilt">
</path>
</a>
<a xlink:title="Bordj Bou Arréridj" href="store.php?wilaya=Bordj Bou Arréridj">
<path d="M652.6 44.1l-0.6 0.8-0.1 0.5-0.1 0.7 0.3 0.7 0.7 1 0.8 0.7 0.8 0.1 0.7 0 2.2 0.3 0.7 0 1.5-0.2 2.3-0.8 0.7 0 1.4 0.3 1.4 0.6 0.5 0.4 0.5 0.8 1.1 2.1 0.9 0.8 0.9 0.2 0.8-0.3 0.7-0.5 0.6-0.2 0.5 0.3 0.2 0.4 0.2 0.8 0.1 0.8 0.2 0.7 0.4 0.1 0.3-0.2 0.5-0.5 0.5 0.1 0.3 0.4 0 1-0.1 0.7-0.4 0.9-0.8 1-0.8 0.4-0.7 0.2-0.4 0.3-0.2 0.4 0.2 0.8 0.4 1.2 0 0.5-0.5 0.8-0.2 0.5-0.1 1.2-0.2 1-1.1 2-0.4 1.1-0.3 1.7-0.1 1.4 0.2 2.5 0 0.8-0.3 0.5-0.6 0.2-2.1 0.1-0.6 0.2-0.3 0.6-0.2 0.5 0 2.6-1.9-0.1-0.8-0.3-1.1-0.7-1.1-1-0.4-0.3-0.8-0.2-0.5-0.1-0.6-0.4-0.4-0.4-1.1-1.5-0.5-0.5-0.5-0.2-0.8 0-1.7 0.4-1.9 0.1-0.7 0.1-1.5 0.4-3.7 1.7-1 0.3-1 0.1-4.9-0.1-0.8-0.2-0.8-0.3-0.8-1-0.2-0.7 0.2-0.6 1.5-1.3 0.4-0.6 0.2-0.6 0.3-0.9 0.3-0.4 1-0.1 0.5-0.2 0.2-0.2 0-0.4-0.2-0.4-0.5-0.7-0.2-0.6-0.4-1.1-0.2-1-0.2-0.4-0.2-0.4-0.3-0.2-0.6 0-1 0.4-1.8 1.3-1 0.5-1.2 0.1-1.6-0.2-6.3-1.4-1.5 0.2-0.7 0.3-0.3 0.3-0.1 0.2-0.2 0.3-0.4 0-0.6 0-1.2-0.3-0.4-1-0.2-0.3-0.7-0.4 0.4-1 0.3-0.3 1.5-1.3 0.7-0.9 0.5-1.2 0.6-2.2 0.4-1 0.7-0.9 2.2-1.9 1.1-1.3 2.3-3.6 2.4-3.1 1 1.3 0.7 3.1 0.8 1.8 0.8 0.7 1 0.2 3.2-0.2 0.7-0.1 1.7-0.7 2.9-0.5 0.4-0.3 0.2-0.6-0.2-0.7-0.1-0.7 0-0.8 0.2-1.8 0.2-0.5 0.4-0.4 1.7-0.8 0.7-0.5 0.6-0.6 1.3-2.1 0.7-0.6 0.5-0.2 0.5 0 0.3 0.2 0.3 0.4 0.7 1.6 0.3 0.5z" id="DZA2207" name="Bordj Bou Arréridj">
</path>
</a>
<a xlink:title="Béjaia" href="store.php?wilaya=Béjaia">
<path d="M682.9 27l0.4 1.9-0.2 0.6-0.2 0.3 0 0.3 0.2 0.2 1.2 0.4 0.9 0.7-0.7 1.1-0.2 0.7 0 0.8 0.1 0.9 0.2 1 0 0.4-0.1 0.4-0.4 0.4-1.3 0.9-0.9 0.4-1.8 0.4-1.6 0.8-0.4 0.3-0.3 0.3-0.3 0.6-0.2 0.7 0.1 0.7-0.2 0.8-0.3 0.5-1.3 0.5-1 0.1-1.6-0.3-0.8-0.5-0.9-0.9 0-0.5 0.3-1.4 0-0.6-0.2-0.7-0.3-0.6-0.8-1.1-0.1-0.3 0.3-0.3 0.5-0.4 0.4-0.4 0.2-0.5 0-0.4-0.3-0.4-1.5-1.2-0.7-0.6-0.3-0.3-0.5-0.2-1.2-0.3-0.5 0-0.7 0.2-0.6 0.7-0.1 0.6-0.1 0.8-0.2 0.5-0.5 0.4-0.8 0.1-1.4-0.4-2.1 1.2-0.3 0.4-0.1 0.2 0.3 0.5 1.2 0.9 0.4 0.4 0 0.4-0.3 0.4-0.9 0.5-0.5 0.6-0.2 0.6 0 0.6-0.2 0.6-0.3 0.5-0.7 0.6-0.7 0.4-1 0.3-0.8 0.1-3.4-0.2-0.3-0.5-0.7-1.6-0.3-0.4-0.3-0.2-0.5 0-0.5 0.2-0.7 0.6-1.3 2.1-0.6 0.6-0.7 0.5-1.7 0.8-0.4 0.4-0.2 0.5-0.2 1.8 0 0.8 0.1 0.7 0.2 0.7-0.2 0.6-0.4 0.3-2.9 0.5-1.7 0.7-0.7 0.1-3.2 0.2-1-0.2-0.8-0.7-0.8-1.8-0.7-3.1-1-1.3 0.5-0.5 0.6-0.4 0.6-0.3 0.3-0.3 0.1-0.4-0.2-0.9 0.1-0.8 0.1-0.6 0.2-0.4 0-0.5-0.1-0.6-1-1.2-0.5-1 2.7-0.9 1.3-0.8 3.6-4.1 0.5-0.7 0.6-1.7 2-3.2 0.3-0.8 0.1-0.8-0.3-0.5-0.3-0.3-0.5-0.2-1-0.4-0.4-0.3-0.3-0.5-0.1-0.4 0.2-0.8 0.4-0.4 0.6-0.4 0.7-0.1 0.5 0.1 1.2 0.5 0.5 0.1 0.5-0.3 0.2-0.6 0.3-1.3 0.1-0.6-0.1-0.6-0.1-0.4-2-3-0.3-0.7-0.1-1-0.1-0.4 1.5 0 3.6 0.3 3.5-0.4 0.8 0.1 7.9 3.4 0.9 0.8 0.2 0.4 0.6 0.2 0.7-0.1 0.5 0.1 0.3 0.3 0.4 0.8 0.2 0.2 0.8 0.4 1 0.3 1 0.1 0.9 0-1 2.9 0.3 1 1.3 1.1 5.7 2.9 1.6 0.4 1.7 0.1 3.3-0.5 2.7-0.8z" id="DZA2208" name="Béjaïa">
</path>
</a>
<a xlink:title="Blida" href="store.php?wilaya=Blida">
<path d="M588.6 25.5l1.5 2.8 0.1 0.6 0 0.5-0.5 0.4-0.3 0.3-0.8 1.3-0.4 0.5-0.6 0.3-0.6 0.3-5.2 1-0.7 0.3-0.5 0.5-0.3 0.5-0.5 1.2-0.6 1.5-1.8 0.4-1.2 0.1-0.8 0.4-0.4 0.4-0.3 0.7-0.3 0.7-1 0.9-1.2 0.7-1.7 0.6-2.4 1.5-1.3 1.1-0.8 0.5-0.6 0.2-0.7-0.1-0.7-0.4-0.8-0.7-0.5-0.9-0.4-0.9-0.4-0.6-0.7-0.1-0.5 0.4-1.1 1.2-0.7 0.6-0.8 0.5-1 0.3-0.9 0-1.1-0.2-4.8 0.4-1.1-0.1-0.4-1.8-0.2-0.2-0.3-0.1-1.2 0.7-1.4 0.3-2.3 0.9-0.9 0.1-0.4-0.4-0.1-0.7-0.2-0.3-0.5-0.2-0.5-0.6-0.5-1.2 0.4-2.3 0.3-0.3 0.4-0.4 0.4 0 1.4 0.4 0.4 0.1 1.8-0.1 1-0.2 0.5-0.4 0.4-0.6 0.2-1 0.4-0.7 0.8-0.5 2.2-2.1 0.9-0.7 0.8-0.5 0.9-0.3 3-1.5 0.7-0.6 0.2-0.5 0.1-0.4 0.2-0.4 0.5-0.2 5.5 0.2 0.7-0.2 0.4-0.2 0.3-0.4 0.6-0.3 1-0.2 0.3-0.2 0.2-0.2 0.1-0.3-0.1-0.4-0.4-1.2 0-0.8 1.4 0.4 0.4 0.7 0 1 0.4 0.9 0.6 0.4 0.7 0.2 0.6 0 0.6-0.2 0.6-0.3 2.3-0.4 2.3-1.2 2.8-1.3 1.7-0.3 1.5-0.1 0.8 0.2 0.5 0.4 0.4 0.6 2.3 1 0.5 0.1 0.4-0.2 1-0.6z" id="DZA2209" name="Blida">
</path>
</a>
<a xlink:title="Bouira" href="store.php?wilaya=Bouira">
<path d="M601 30.4l1.4 2.4 1.5 1.2 1.2 0.9 1.6 1.6 1.8 1.1 2.3 0.8 12.1 0.5 0.8-0.2 1.5-0.7 0.7 0.1 2.1 0.6 0.8 0 2.1-0.5 0.9 0.3 0.5 1 1 1.2 0.1 0.6 0 0.5-0.2 0.4-0.1 0.6-0.1 0.8 0.2 0.9-0.1 0.4-0.3 0.3-0.6 0.3-0.6 0.4-0.5 0.5-2.4 3.1-2.3 3.6-1.1 1.3-2.2 1.9-0.7 0.9-0.4 1-0.6 2.2-0.5 1.2-0.7 0.9-1.5 1.3-0.3 0.3-0.4 1-1.9 4.9-0.3 2.3 0.1 0.8 0 0.9-0.3 0.6-0.6 0.2-0.8-0.3-1.9-1-0.6-0.1-0.7 0-0.7 0.4-1.6 1-1 0.3-1 0-1-0.4-0.7-0.7-0.5-0.6-0.5-0.5-0.5-0.3-0.6-0.2-0.6-0.3-1-1-0.2-0.1-1.4-0.1-3.8 0.5-2.4-4.5-0.7-3.1-0.1-1.7 0-1.6 0.6-5.2 0-1.7-0.2-1.1-0.8-2.5-0.1-1 0.1-0.6 0.2-0.4 0.9-0.8 0.3-0.6-0.1-0.7-0.8-1.5-0.1-1 0-1.3-0.3-0.6-0.5-0.4-0.6-0.1-1.1-0.5-0.5 0-0.4 0.2-1.6 0.6-0.5 0.4-0.6 0.8-0.6-0.1-0.9-0.6-1.1-1.5-0.9-1-1-0.6-2.9-1.2 0.6-1.5 0.5-1.2 0.3-0.5 0.5-0.5 0.7-0.3 5.2-1 0.6-0.3 0.6-0.3 0.4-0.5 0.8-1.3 0.3-0.3 0.5-0.4 0-0.5-0.1-0.6-1.5-2.8 3 0.7 1.4-0.1 1.9-0.8 0.8-0.2 0.6 0.1 0.6 0.1 0.9 0.4 0.4 0.3 0.2 0.4 0.1 0.4-0.2 0.6-1.4 1.8-0.3 0.7-0.2 0.5 0.2 0.4 0.4 0.2 0.8 0 3.2-0.6z" id="DZA2210" name="Bouira">
</path>
</a>
<a xlink:title="Biskra" href="store.php?wilaya=Biskra">
<path d="M739 139.3l0.8 0 0.6 0 2.4-0.7 0.8-0.1 0.7 0 0.4 0 0.4 0.2 0.2 0.2 0.4 0.6 0.7 1.9 0.3 1 0.1 0.8-0.4 2.4-0.1 2-0.2 2.1-0.8 3.7-0.7 2.4-0.2 0.5-0.2 0.8 0 0.6 0.4 3.1-0.4 2.1-1.7 1.5-1.7 1-1.7 0.7-1.6 0.3-1.5 0-1-0.2-0.7-0.2-1-0.4-0.7-0.6-0.5-0.6-0.4-0.6-0.4-0.5-2.8-1.3-7.7-2.2-0.9 0-9.4 2-25.2-3.2-4.6-1.5-3-1.4-0.4 0.1-0.3 0.3-0.3 0.8 0.1 0.9-0.1 0.8-0.6 0.6-0.8 0.5-2 0.8-0.6 0.3-0.5 0.5-0.4 0.6-0.3 0.7-0.2 0.7-0.1 0.8 0.2 0.4 0.2 0.3 3.4 3 1.8 2.2 1.5 2.2 0.5 1 0.8 2 0.5 2.1 0.1 1.3 0.1 2.9-1.9 12.4-0.4 1.3-0.6 1.1-2.1 2.2-2.5 3.3-4.7 8-34.6-20.7-2.1-1.7-1-1.1-0.3-0.6-0.4-1.5-0.9-6-0.2-0.6-0.3-0.6-0.5-0.4-1.6-0.4-1-0.4-0.8-0.6-0.3-0.5-0.1-0.4 0.3-0.9 0-0.6-0.1-1.5 3.5-0.2 0.6-0.2 0.7-0.3 0.2-0.4-0.1-0.7-0.4-0.6-0.6-0.7-0.6-0.7-0.7-1.8-1.2-1.7-0.6-1.1-1.1-5.2-0.3-0.7-0.4-0.4-0.3-0.5-0.1-0.9 0.6-1.1 1.8-2.1 0.6-1.1 0.6-1.5 0.7-1.1 3.6-3.8 0.8-1.1 1.5-2.2 0.9-1 1-0.6 0.9-0.1 0.8 0 1.5 0.3 0.6 0 0.7-0.2 2-0.6 2.2-0.3 4.2-1.5 0.7-0.1 1.3 0.2 0.8-0.1 1.3-0.4 0.6-0.1 0.8 0.2 0.8 0 4.9-1.2 1.3-0.6 2-1.5 1.3-1.5 0.6-1.1 0.1-1.1-0.2-8.6 1.7 0.1 3.3 1.7 2.1 1.3 2.4 0.6 1.8 0.1 1.6-0.1 1.2-0.6 1.3-0.8 1-0.5 1-0.3 5.6-0.3 1.1-0.2 0.7-0.3 0.7-0.5 0.5-0.3 1-0.4 0.5-0.4 0.3-0.5-0.1-0.7-0.1-0.4-0.3-0.6-0.2-0.4-2-1.8-0.4-0.7 0.2-0.4 3.5-0.9 4.2-2.6 2.2-1.1 3-1.1 0.5 0 0.5 0.2 1.7 1.5 4.1 1.7 1.1 0 0.7 0.1 0.3 0.2 0.1 0.6-0.4 0.7-0.5 0.6-1.9 1.7-0.6 0.7-0.2 0.5 0.6 2.2-0.1 0.9-0.8 1.8 0 1 0.6 0.9 1.2 1 0.5 0.6 0.9 0.8 0.9 0 0.6-0.4 0.3-0.2 0.7-2.2 0.4-0.8 0.4-0.4 0.5-0.1 0.6 0.1 0.6 0.3 0.5 0.5 0.3 0.7 0.2 0.7 0.4 1.1 0.4 0.2 0.7 0.3 0.9 0 1.1-0.5 0.2 0 0.9 0.1 0.2-0.3 0.4-1 0.5-0.6 1.4-0.8 0.7-0.3 0.8-0.1 1.2 0 2.5-0.5 1.1-0.4 0.9-0.1 0.8 0.2 0.9 1.1 0.5 0.8 0.1 0.9-0.2 0.5-0.4 1-0.1 0.6-0.1 0.9 0 2.4-0.6 3.2 0 1 0.4 1 0.6 0.8 0.8 0.7 1.5 1.8 0.4 0.4 0.7 0.3 0.9 0.2 0.8 0.1 1.1-0.3 0.4-0.5z" id="DZA2211" name="Biskra">
</path>
</a>
<a xlink:title="Djelfa" href="store.php?wilaya=Djelfa">
<path d="M583.9 81.7l2.8 4.7 0.6 0.8 3.5 2.9 0.7 0.4 1.1 0.9 5.8 5.5 0.5 0.6 0.3 0.8 0.1 1.1-0.1 1-0.3 0.9-0.3 0.7-0.4 0.5-0.4 0.5-0.3 0.5-0.2 0.6 0.2 0.9 0.4 2.3 0 0.8-0.2 0.7-0.5 0.6-8.7 7.5 0.1 0.6 2.2 4.7 0.5 0.8 0.4 0.1 0.5 0 1.8-0.9 0.6-0.1 0.4 0.2 0 0.6-0.2 0.5-0.4 0.6-0.5 0.5-0.4 0.6-0.3 0.5 0 0.6 0.3 0.7 0.6 1.5 0.2 0.6 0.1 0.6-0.3 1.2 0 0.6 0.2 0.8 0.2 0.7 0.5 0.9 0.7 0.6 1 0.6 0.3 0.5 0.1 0.6 0.1 0.7 0.2 0.9 0.6 0.9 0.8 0.4 0.9 0 1.6-0.4 0.8 0 7.3 1.6 0.4 0.3 0.2 0.3 0.1 0.7-0.2 1.8 0.1 1.1 0.1 1.1 2.1 7.5 0.7 1.7 2.4 3.4 0.4 1 0.1 1 0 1.1-0.1 1.1 0.1 0.9 0.4 1 1 1.1 4.2 2.8 0.7 0.8 1.3 1.9 0.8 0.5 0.1 1.5 0 0.6-0.3 0.9 0.1 0.4 0.3 0.5 0.8 0.6 1 0.4 1.6 0.4 0.5 0.4 0.3 0.6 0.2 0.6 0.9 6 0.4 1.5 0.3 0.6 1 1.1 2.1 1.7 34.6 20.7-5.5 7.5-1.1 6.1-1.5 5.5 1.2 23.1-38.8-10.8-0.5-1.9-2.3-6.2-1.6-3.2-1.3-1.6-1.4-1.6-18.8-16.5-19.7-22.2-3.5-6.1-0.5-1.4-0.4-1.3-0.6-4.3-1.2-3.4-0.5-0.6-1.1-0.5-2.3 0-0.8 0-0.4-0.2-1.1-0.7-0.6-0.1-0.7 0.1-0.8 0.5-3.6 3.4-0.6 0.7-0.4 0.8-0.4 1.4-0.5 0.5-0.7 0.4-2.3 0.8-4.3 0.7-0.6 0.2-0.2 0.3-0.2 0.5-0.1 0.6 0.2 6.3-0.1 1.8-0.2 1.4-0.2 0.3-0.3 0.1-1.7 0-3.8-0.5-1.4 0-0.7-0.4-0.4-0.7-0.4-3.3 0-0.6 0.3-1.4 1-3.1 0.1-1-0.2-0.9-0.6-1.4-0.6-1.2-0.7-1-1.8-2-0.6-1-0.4-0.9-0.8-5.1-0.4-1.4-0.5-1-0.6-0.7-1-1-0.6-0.8-0.5-1.6-0.1-2.1 0.4-3.3 0.4-1.9 0.7-1.3 1.3-1.5 0.4-0.9 0.3-0.7-0.4-3.2 0.6-4.9 3.4-3.8 1-1.7 2.2-6 0.8-1.6 0.2-0.1 3.4-1 0.7-0.3 0.4-0.5-0.2-0.7-0.6-0.7-10.5-8.5-0.3-0.4-0.2-0.4 0-0.7 0.3-0.7-0.1-0.9-0.3-0.8-0.7-1.4-0.3-0.5-0.3-0.3-0.9-0.2-0.5-0.1-0.8-0.5-0.4-0.4-0.3-0.4-0.1-6.6 9.3-3.2 2.4-0.4 0.1 0 3.7 2.9 0.7 0.3 0.8 0.3 0.8-0.1 0.9-0.2 0.7-0.4 0.8-0.7 0.5-0.8 0.9-1.4 0.2-0.4 0.5-0.7 0.9-0.8 5.7-4.6 0.5-0.6 0.3-0.5 0.1-0.7 0-0.8-0.2-1.8 0-0.5 0.1-1.2-0.1-0.5-0.4-1.7-0.2-0.9 0-0.9 0.3-0.6 0.4-0.3 0.6-0.1 0.9-0.1 1.4-0.3 1.1 0.2 0.6 0.6 0.3 0.6 0.3 1.4 0.3 0.7 0.3 0.6 1 0.6 0.2 0.4 0.2 0.5 0.4 1.6 0.4 0.5 0.8 0.2 4.7-0.8 0.9-0.5 0.5-0.5 0.4-0.9 0.7-3.1 0.5-1 0.7-0.7 0.5-0.1 0.4 0.3 0.6 1.2 0.4 0.7 0.6 0.5 0.7 0.3 0.7 0.1 2.1-0.2z" id="DZA2212" name="Djelfa">
</path>
</a>
<a xlink:title="Médéa" href="store.php?wilaya=Médéa">
<path d="M595.9 71.4l0.1 0.8 0.2 1.2-0.1 0.6-0.3 0.5-0.7 1-0.1 1-0.3 0.4-1.9 0.7-1.1 0.9-0.2 0.7 0.1 0.9 0.6 1.4 0.2 0.9 0.1 0.9-0.1 1.9-0.2 0.8-0.4 0.4-0.9-0.8-0.6-0.6-0.4-0.8-0.5-1-0.6-1.1-2.3-3.1-0.6-0.4-0.5-0.2-0.5 0.4-0.3 0.3-0.7 2.6-2.1 0.2-0.7-0.1-0.7-0.3-0.6-0.5-0.4-0.7-0.6-1.2-0.4-0.3-0.5 0.1-0.7 0.7-0.5 1-0.7 3.1-0.4 0.9-0.5 0.5-0.9 0.5-4.7 0.8-0.8-0.2-0.4-0.5-0.4-1.6-0.2-0.5-0.2-0.4-1-0.6-0.3-0.6-0.3-0.7-0.3-1.4-0.3-0.6-0.6-0.6-1.1-0.2-1.4 0.3-0.9 0.1-0.6 0.1-0.4 0.3-0.3 0.6 0 0.9 0.2 0.9 0.4 1.7 0.1 0.5-0.1 1.2 0 0.5 0.2 1.8 0 0.8-0.1 0.7-0.3 0.5-0.5 0.6-5.7 4.6-0.9 0.8-0.5 0.7-0.2 0.4-0.9 1.4-0.5 0.8-0.8 0.7-0.7 0.4-0.9 0.2-0.8 0.1-0.8-0.3-0.7-0.3-3.7-2.9-0.1 0-2.4 0.4-9.3 3.2-1.7-7.1 0.6-2.7-0.4-0.6-0.5-0.6-1.8-0.8-0.8-0.5-1-1.2-0.4-1-0.1-0.9 0.2-0.6 0.5-0.6 0.8-0.3 0.9-0.1 0.9-0.4 0.7-0.7 3.4-7.3 2.1-2.9 3.1-2.9 0.6-0.9 0.4-0.8 0.3-1.4 0.3-0.7 0.3-0.6 0.4-0.4 5.1-3.3 0.4-0.8 0.6-1.5 0.7-1.1 1.5-1.5 0.2-0.6 0-0.5-0.3-0.2-0.4-0.1-1.6 0-0.9-0.4-0.3 0-0.3 0.2-1.1 0.9-0.5 0.2-0.2-0.2-0.4-0.5-0.2-0.5-0.3-0.5-0.8-0.7-0.2-0.7 0-1 0.2-0.5 0.3-0.4 0.6-0.7 0.5-0.6 0.3-0.3 0.4-0.2 3-0.1 0.8-0.3 0.8-0.5 0.9-0.9 0.4-0.6 0.1-0.5 0.1-0.7 1.1 0.1 4.8-0.4 1.1 0.2 0.9 0 1-0.3 0.8-0.5 0.7-0.6 1.1-1.2 0.5-0.4 0.7 0.1 0.4 0.6 0.4 0.9 0.5 0.9 0.8 0.7 0.7 0.4 0.7 0.1 0.6-0.2 0.8-0.5 1.3-1.1 2.4-1.5 1.7-0.6 1.2-0.7 1-0.9 0.3-0.7 0.3-0.7 0.4-0.4 0.8-0.4 1.2-0.1 1.8-0.4 2.9 1.2 1 0.6 0.9 1 1.1 1.5 0.9 0.6 0.6 0.1 0.6-0.8 0.5-0.4 1.6-0.6 0.4-0.2 0.5 0 1.1 0.5 0.6 0.1 0.5 0.4 0.3 0.6 0 1.3 0.1 1 0.8 1.5 0.1 0.7-0.3 0.6-0.9 0.8-0.2 0.4-0.1 0.6 0.1 1 0.8 2.5 0.2 1.1 0 1.7-0.6 5.2 0 1.6 0.1 1.7 0.7 3.1 2.4 4.5z" id="DZA2213" name="Médéa">
</path>
</a>
<a xlink:title="M'Sila" href="">
<path d="M664.9 80.1l0.2 0.6 0.3 0.3 0.7 0.6 1 0.7 3.4 1.4 0.3 0.4 0.3 1.2 0.8 0.8 1.3 0.8 7.4 1.8-5.6 5-1.4 0.8-1.2 0.4-1.8 1.1-0.8 0.2-0.8-0.3-0.8-0.4-0.9-0.2-2.9 0-1.1 0.1-0.8 0.3-0.3 0.3-0.6 0.7-1.2 0.6-0.7-0.1-0.6-0.3-0.2-0.2-0.9-1.1-0.4-0.3-0.4-0.3-0.4 0-0.4 0.1-0.1 0.4 0 0.5 0.9 3.5 0.3 2.1 0 2.2-0.1 1.5-0.5 3.2-0.4 1-0.8 1.2-1.4 1.7-1.8 1.6-0.8 0.9-0.3 0.7 0.1 0.4 0.2 0.4 0.3 0.3 0.5 0.2 3.6 0.3 1.3 0.2 1.2 0.4 1 0.5 1.1 0.7 0.7 0.9 0.6 0.9 0.4 0.4 0.5 0.1 0.7 0.1 0.5-0.1 0.2 8.6-0.1 1.1-0.6 1.1-1.3 1.5-2 1.5-1.3 0.6-4.9 1.2-0.8 0-0.8-0.2-0.6 0.1-1.3 0.4-0.8 0.1-1.3-0.2-0.7 0.1-4.2 1.5-2.2 0.3-2 0.6-0.7 0.2-0.6 0-1.5-0.3-0.8 0-0.9 0.1-1 0.6-0.9 1-1.5 2.2-0.8 1.1-3.6 3.8-0.7 1.1-0.6 1.5-0.6 1.1-1.8 2.1-0.6 1.1 0.1 0.9 0.3 0.5 0.4 0.4 0.3 0.7 1.1 5.2 0.6 1.1 1.2 1.7 0.7 1.8 0.6 0.7 0.6 0.7 0.4 0.6 0.1 0.7-0.2 0.4-0.7 0.3-0.6 0.2-3.5 0.2-0.8-0.5-1.3-1.9-0.7-0.8-4.2-2.8-1-1.1-0.4-1-0.1-0.9 0.1-1.1 0-1.1-0.1-1-0.4-1-2.4-3.4-0.7-1.7-2.1-7.5-0.1-1.1-0.1-1.1 0.2-1.8-0.1-0.7-0.2-0.3-0.4-0.3-7.3-1.6-0.8 0-1.6 0.4-0.9 0-0.8-0.4-0.6-0.9-0.2-0.9-0.1-0.7-0.1-0.6-0.3-0.5-1-0.6-0.7-0.6-0.5-0.9-0.2-0.7-0.2-0.8 0-0.6 0.3-1.2-0.1-0.6-0.2-0.6-0.6-1.5-0.3-0.7 0-0.6 0.3-0.5 0.4-0.6 0.5-0.5 0.4-0.6 0.2-0.5 0-0.6-0.4-0.2-0.6 0.1-1.8 0.9-0.5 0-0.4-0.1-0.5-0.8-2.2-4.7-0.1-0.6 8.7-7.5 0.5-0.6 0.2-0.7 0-0.8-0.4-2.3-0.2-0.9 0.2-0.6 0.3-0.5 0.4-0.5 0.4-0.5 0.3-0.7 0.3-0.9 0.1-1-0.1-1.1-0.3-0.8-0.5-0.6-5.8-5.5-1.1-0.9-0.7-0.4-3.5-2.9-0.6-0.8-2.8-4.7 0.7-2.6 0.3-0.3 0.5-0.4 0.5 0.2 0.6 0.4 2.3 3.1 0.6 1.1 0.5 1 0.4 0.8 0.6 0.6 0.9 0.8 0.4-0.4 0.2-0.8 0.1-1.9-0.1-0.9-0.2-0.9-0.6-1.4-0.1-0.9 0.2-0.7 1.1-0.9 1.9-0.7 0.3-0.4 0.1-1 0.7-1 0.3-0.5 0.1-0.6-0.2-1.2-0.1-0.8 3.8-0.5 1.4 0.1 0.2 0.1 1 1 0.6 0.3 0.6 0.2 0.5 0.3 0.5 0.5 0.5 0.6 0.7 0.7 1 0.4 1 0 1-0.3 1.6-1 0.7-0.4 0.7 0 0.6 0.1 1.9 1 0.8 0.3 0.6-0.2 0.3-0.6 0-0.9-0.1-0.8 0.3-2.3 1.9-4.9 0.7 0.4 0.2 0.3 0.4 1 1.2 0.3 0.6 0 0.4 0 0.2-0.3 0.1-0.2 0.3-0.3 0.7-0.3 1.5-0.2 6.3 1.4 1.6 0.2 1.2-0.1 1-0.5 1.8-1.3 1-0.4 0.6 0 0.3 0.2 0.2 0.4 0.2 0.4 0.2 1 0.4 1.1 0.2 0.6 0.5 0.7 0.2 0.4 0 0.4-0.2 0.2-0.5 0.2-1 0.1-0.3 0.4-0.3 0.9-0.2 0.6-0.4 0.6-1.5 1.3-0.2 0.6 0.2 0.7 0.8 1 0.8 0.3 0.8 0.2 4.9 0.1 1-0.1 1-0.3 3.7-1.7 1.5-0.4 0.7-0.1 1.9-0.1 1.7-0.4 0.8 0 0.5 0.2 0.5 0.5 1.1 1.5 0.4 0.4 0.6 0.4 0.5 0.1 0.8 0.2 0.4 0.3 1.1 1 1.1 0.7 0.8 0.3 1.9 0.1z" id="DZA2214" name="M'Sila">
</path>
</a>
<a xlink:title="Sétif" href="store.php?wilaya=Sétif">
<path d="M697.8 33.5l0.8 0.8 0.2 0.4 0.4 0.6 0.2 0.7 0 1-0.2 1.8 0 0.9 0.5 0.8 0.7 0.4 1 0.1 0.9 0 0.9 0.1 0.7 0.6 0.5 1.1 0.1 2.3-0.1 3.8-0.3 1.5 0 1.1 0.6 1 0.7 0.2 0.9 0 0.6 0.1 0.4 0.6-0.2 1-0.4 0.7-0.6 0.4-0.4 0.5 0 0.7 0.5 0.9 0.6 0.6 0.3 0.5 0.1 0.4 0 0.7 0.2 0.4 0.6 0.7 0.8 0.4 0.6 0.8 0.3 1.2-0.5 5.8 0.3 0.9-0.1 1.9-1.4 1-0.1 0.2 0 0.5 0.2 0.5 0 0.8-0.4 0.2-0.9-0.3-2.1-1.6-1.1-0.8-1.6-0.5-1.1 0.1-1.1 0.4-1.5 1-0.7 0.5-0.5 0.6-0.4 0.7-0.1 0.6 0.2 0.6 0.5 0.3 0.8 0.3 0.6 0.5 0.3 0.6-0.7 1.7-0.5 0.7-0.7 0.1-1.9-0.8-0.6-0.4-0.5-0.5-0.5-0.3-1.2-0.5-0.9-0.5-0.8-0.2-0.7 0.3-0.4 0.6-0.3 0.8-0.3 0.8-0.9 0.4-2.5 1.8-0.3 0.5-0.3 0.5-0.1 0.7-0.1 1.8-0.3 0.9-0.4 0.8-0.7 0.9-0.7 0.4-0.7 0.2-1.4-0.1-7.4-1.8-1.3-0.8-0.8-0.8-0.3-1.2-0.3-0.4-3.4-1.4-1-0.7-0.7-0.6-0.3-0.3-0.2-0.6 0-2.6 0.2-0.5 0.3-0.6 0.6-0.2 2.1-0.1 0.6-0.2 0.3-0.5 0-0.8-0.2-2.5 0.1-1.4 0.3-1.7 0.4-1.1 1.1-2 0.2-1 0.1-1.2 0.2-0.5 0.5-0.8 0-0.5-0.4-1.2-0.2-0.8 0.2-0.4 0.4-0.3 0.7-0.2 0.8-0.4 0.8-1 0.4-0.9 0.1-0.7 0-1-0.3-0.4-0.5-0.1-0.5 0.5-0.3 0.2-0.4-0.1-0.2-0.7-0.1-0.8-0.2-0.8-0.2-0.4-0.5-0.3-0.6 0.2-0.7 0.5-0.8 0.3-0.9-0.2-0.9-0.8-1.1-2.1-0.5-0.8-0.5-0.4-1.4-0.6-1.4-0.3-0.7 0-2.3 0.8-1.5 0.2-0.7 0-2.2-0.3-0.7 0-0.8-0.1-0.8-0.7-0.7-1-0.3-0.7 0.1-0.7 0.1-0.5 0.6-0.8 3.4 0.2 0.8-0.1 1-0.3 0.7-0.4 0.7-0.6 0.3-0.5 0.2-0.6 0-0.6 0.2-0.6 0.5-0.6 0.9-0.5 0.3-0.4 0-0.4-0.4-0.4-1.2-0.9-0.3-0.5 0.1-0.2 0.3-0.4 2.1-1.2 1.4 0.4 0.8-0.1 0.5-0.4 0.2-0.5 0.1-0.8 0.1-0.6 0.6-0.7 0.7-0.2 0.5 0 1.2 0.3 0.5 0.2 0.3 0.3 0.7 0.6 1.5 1.2 0.3 0.4 0 0.4-0.2 0.5-0.4 0.4-0.5 0.4-0.3 0.3 0.1 0.3 0.8 1.1 0.3 0.6 0.2 0.7 0 0.6-0.3 1.4 0 0.5 0.9 0.9 0.8 0.5 1.6 0.3 1-0.1 1.3-0.5 0.3-0.5 0.2-0.8-0.1-0.7 0.2-0.7 0.3-0.6 0.3-0.3 0.4-0.3 1.6-0.8 1.8-0.4 0.9-0.4 1.3-0.9 0.4-0.4 0.1-0.4 0-0.4-0.2-1-0.1-0.9 0-0.8 0.2-0.7 0.7-1.1 1.1 0.4 0.3 1.1 0 0.7 0.3 0.9 0.5 0.5 0.5 0.3 0.6 0.1 0.5 0 0.6-0.2 0.4-0.3 0.8-0.8 0.4-0.3 0.7-0.3 0.5 0.1 1.2 0.9 0.7 0.1 0.6 0.1 2.9-1.2z" id="DZA2215" name="Sétif">
</path>
</a>
<a xlink:title="Batna" href="store.php?wilaya=Batna">
<path d="M717.8 72.8l6.1 2 0.9 0 1-0.1 0.7-0.9 0.5-0.2 0.5 0.1 1.3 1.3 0.7 0.4 0.8 0.2 2.4 0.2 0.4 0.2 0.5 0.4 0.2 0.7 0 0.6-0.1 0.7 0 0.7 0.4 0.8 0.7 0.1 0.9-0.2 2.9-1.1 1.1-0.1 1.1 0 1.1 0.4 2.4 1.8 3.4 4.9 0.3 2.9 0.6 2.6-0.1 0.9-0.2 0.8-0.7 1.5-0.5 0.7-0.7 0.7-1 0.5-2.6 0.9-0.9 0.4-1 0.7-0.8 0.8-0.9 1.3-0.3 0.8 0.1 1.8-0.2 2 0 0.9 0.2 0.6 0.5 0.3 0.7-0.2 0.4 0 0.3 0.2 0 0.7-0.4 0.8-1.8 1.9-0.6 1-0.6 4-1.8 3.2-0.3 0.8-0.1 0.7-0.1 2.2 0.1 1 0.3 0.9 1.4 2.3 1.8 3.9 0.3 0.9 0.4 1-0.2 0.5-1 2.1-0.2 1 0 0.8 0.2 0.8 0.4 1.4 0.3 0.6-0.4 0.5-1.1 0.3-0.8-0.1-0.9-0.2-0.7-0.3-0.4-0.4-1.5-1.8-0.8-0.7-0.6-0.8-0.4-1 0-1 0.6-3.2 0-2.4 0.1-0.9 0.1-0.6 0.4-1 0.2-0.5-0.1-0.9-0.5-0.8-0.9-1.1-0.8-0.2-0.9 0.1-1.1 0.4-2.5 0.5-1.2 0-0.8 0.1-0.7 0.3-1.4 0.8-0.5 0.6-0.4 1-0.2 0.3-0.9-0.1-0.2 0-1.1 0.5-0.9 0-0.7-0.3-0.4-0.2-0.4-1.1-0.2-0.7-0.3-0.7-0.5-0.5-0.6-0.3-0.6-0.1-0.5 0.1-0.4 0.4-0.4 0.8-0.7 2.2-0.3 0.2-0.6 0.4-0.9 0-0.9-0.8-0.5-0.6-1.2-1-0.6-0.9 0-1 0.8-1.8 0.1-0.9-0.6-2.2 0.2-0.5 0.6-0.7 1.9-1.7 0.5-0.6 0.4-0.7-0.1-0.6-0.3-0.2-0.7-0.1-1.1 0-4.1-1.7-1.7-1.5-0.5-0.2-0.5 0-3 1.1-2.2 1.1-4.2 2.6-3.5 0.9-0.2 0.4 0.4 0.7 2 1.8 0.2 0.4 0.3 0.6 0.1 0.4 0.1 0.7-0.3 0.5-0.5 0.4-1 0.4-0.5 0.3-0.7 0.5-0.7 0.3-1.1 0.2-5.6 0.3-1 0.3-1 0.5-1.3 0.8-1.2 0.6-1.6 0.1-1.8-0.1-2.4-0.6-2.1-1.3-3.3-1.7-1.7-0.1-0.5 0.1-0.7-0.1-0.5-0.1-0.4-0.4-0.6-0.9-0.7-0.9-1.1-0.7-1-0.5-1.2-0.4-1.3-0.2-3.6-0.3-0.5-0.2-0.3-0.3-0.2-0.4-0.1-0.4 0.3-0.7 0.8-0.9 1.8-1.6 1.4-1.7 0.8-1.2 0.4-1 0.5-3.2 0.1-1.5 0-2.2-0.3-2.1-0.9-3.5 0-0.5 0.1-0.4 0.4-0.1 0.4 0 0.4 0.3 0.4 0.3 0.9 1.1 0.2 0.2 0.6 0.3 0.7 0.1 1.2-0.6 0.6-0.7 0.3-0.3 0.8-0.3 1.1-0.1 2.9 0 0.9 0.2 0.8 0.4 0.8 0.3 0.8-0.2 1.8-1.1 1.2-0.4 1.4-0.8 5.6-5 1.4 0.1 0.7-0.2 0.7-0.4 0.7-0.9 0.4-0.8 0.3-0.9 0.1-1.8 0.1-0.7 0.3-0.5 0.3-0.5 2.5-1.8 0.9-0.4 0.3-0.8 0.3-0.8 0.4-0.6 0.7-0.3 0.8 0.2 0.9 0.5 1.2 0.5 0.5 0.3 0.5 0.5 0.6 0.4 1.9 0.8 0.7-0.1 0.5-0.7 0.7-1.7-0.3-0.6-0.6-0.5-0.8-0.3-0.5-0.3-0.2-0.6 0.1-0.6 0.4-0.7 0.5-0.6 0.7-0.5 1.5-1 1.1-0.4 1.1-0.1 1.6 0.5 1.1 0.8 2.1 1.6 0.9 0.3 0.4-0.2 0-0.8-0.2-0.5 0-0.5 0.1-0.2 1.4-1 1.9 0.6 0.6 0.3 1.9 0.4 4-0.4z" id="DZA2216" name="Batna">
</path>
</a>
<a xlink:title="Constantine" href="store.php?wilaya=Constantine">
<path d="M755.9 40.9l0.5 0.5 0.6 1.4 0.3 0.9 0.1 0.7 0.4 0.6 0.9 0.6 0.2 0.3 0.1 0.6 0 1 0 0.6 0.4 0.8 1 0.4 0.4 0.4 0.3 0.6 0.1 2.3-0.2 1.5-0.2 1.1-1.4 2.4-1.3 0.3-1 0.1-0.7 0.3-1.4 1.4-1 0.7-0.5-0.1-0.2-0.5 0.1-0.9-0.3-0.8-4.5-2.7-0.7-0.1-0.6 0.3-0.4 0.4-0.6 0.3-0.5 0.3-2.4 0.6-0.8 0.4-0.9 0.6-2.3 1-0.3 0.8-0.3 0.3-0.4 0-0.2-0.1-1.2-1.6-1.5-1.7 0.4-2.3-0.2-0.6-2.5-3.6-4.4-4.5-0.7-0.3-1.4 0.1-0.6-0.3-0.2-0.6 0.2-0.7 0.4-0.5 0.9-0.7 1-0.5 0.4-0.1 1.1-0.4 3.2-0.4 0.6-0.4 0.2-0.7-0.2-0.9-0.6-1.6-0.1-0.5 0.1-0.3 0.2-0.2 0.7-0.4 0.4-0.6 0.2-1 0.3-2.7 1.7 0 2 0.4 0.9-0.2 2.6-2 0.5 0 0.3 0.3 0.2 0.5 0.3 0.5 2.6 1.2 2.1 0.6 5.6-0.3 0.9 0 0.4 0.2 0 0.4-0.1 0.6-0.3 0.5-0.4 0.2-0.4-0.1-0.6-0.3-0.6-0.1-0.5 0.1-0.7 0.3-0.2 0.2-0.1 0.4 0.1 1.2 0 0.5-0.1 0.3-0.6 0.5-0.3 0.4-0.1 0.4 0.2 0.4 0.5 0.2 0.7 0.1 0.8 0.4 3.6 0.9z" id="DZA2217" name="Constantine">
</path>
</a>
<a xlink:title="Guelma" href="store.php?wilaya=Guelma">
<path d="M790.3 27l2.3 0.4 0.5 0.3 1.6 1.4 0.5 0.7 0.3 0.6 0.3 0.9 0.4 0.6 0.6 0.5 8.7 3.7 0.5 0.3 0.2 0.4 0.2 0.5 0.2 0.5-5.6 3.1-1.4 0.1-2-0.6-0.3 0-0.1 0.4 0.7 1.8 0.1 0.5 0.1 1.3 0.3 0.6 0.6 0.9 0.2 0.9-0.2 1.2-0.8 0.6-0.9 0.4-0.8 0.2-1.7 0.1-4.8 2.5-4.8 1.6-0.5 0.4-0.7 1-0.6 0.3-0.6 0.2-1 0-3.1 0.7-0.6 0.4-0.5 0.6-0.6 1.3-0.3 0.5-0.5 0.3-0.6 0.1-1 0-1.7-0.9-2.4-0.3-0.8 0.2-0.5 0.3-0.2 0.6-0.1 1.8-0.6 1.1-1 0.7-2 1-1.3 0.4-1.3 0.2-0.6-0.3-0.3-0.5-0.1-0.5-0.2-0.5-0.5-0.5-0.6-0.5-0.4-0.6-0.2-0.8-0.2-0.8-0.1-1.3-0.1-0.4 1.4-2.4 0.2-1.1 0.2-1.5-0.1-2.3-0.3-0.6-0.4-0.4-1-0.4-0.4-0.8 0-0.6 0-1-0.1-0.6-0.2-0.3-0.9-0.6-0.4-0.6-0.1-0.7-0.3-0.9-0.6-1.4-0.5-0.5 1.1-2 1.2-0.7 3.7-1.1 0.4-0.2 0.2-0.2 0.1-0.3-0.1-0.5-0.2-0.4 0-0.6 0.3-0.8 1.2-1.5 1.1-0.9 5.4-2.9 1.3-0.5 1.2-0.3 0.8 0 0.5-0.3 0.3-0.4 0.2-1.4 0.1-0.7 0.6-0.8 0.4-0.3 0.9-0.6 0.8-0.3 3.6 2 0.3 0.6 0.4 0.8 0 1.3 0.2 0.6 0.2 0.3 0.8 0.2 1.1 0.6 0.7 0.3 0.7 0.2 0.7 0 1.4-0.2 0.5-0.2 0.5-0.2 0.4-0.4 0.4-0.5 1-1.6z" id="DZA2218" name="Guelma">
</path>
</a>
<a xlink:title="Khenchela" href="store.php?wilaya=Khenchla">
<path d="M785.2 99.7l-1.2 1.2-4.5 1.8-0.7 0.7 0 0.6 0.3 0.7 0 0.9-0.3 2 0.1 0.8 0.1 0.9 0 1-0.6 1.2-0.1 0.9 0.2 0.9 0.3 1 0.2 1.1-0.2 1.6-0.5 1.2-0.7 1.1-2.9 3.2-1.7 2.4-1.5 1.4-1.6 2.4-0.3 0.7-0.1 0.5 0.1 0.6 0.1 0.6 0 0.7 0.1 0.6 0.3 0.5 0.4 0.8 0.1 0.6 0.2 0.5 0.4 1.1 0.2 0.2 0.3 0 0.4-0.2 0.1-0.3 0-0.3-0.3-0.8 0-1-0.2-0.6-0.1-0.2-0.4-0.7 0-0.4 0.1-1.1 0.4-0.8 0.1-0.2 0.9-0.4 0.3-0.3 0.5-1 0.3-0.2 0.2-0.1 0.8 0.4 0.9 0.1 0.6 0.2 0.4 0.5 0.2 0.6-0.1 1.3 0.1 0.7 0.1 0.5 0.4 0.8 0.2 0.8-0.2 3.2 0.1 0.6 0.7 2.2 0.1 0.9 0 0.9-0.2 1.1-1.1 2.7-0.9 1.7-1.8 2.6-0.9 2.2-0.2 0.3-0.6 0.6-0.5 0.9-0.9 2.7-0.5 1.9-0.8 5.4-1.1 4.3-3.4 7.9-5.7-1-2.7-0.9-10.5-6.2-1.4-1.6-0.9-2.9 0.4-2.1-0.4-3.1 0-0.6 0.2-0.8 0.2-0.5 0.7-2.4 0.8-3.7 0.2-2.1 0.1-2 0.4-2.4-0.1-0.8-0.3-1-0.7-1.9-0.4-0.6-0.2-0.2-0.4-0.2-0.4 0-0.7 0-0.8 0.1-2.4 0.7-0.6 0-0.8 0-0.3-0.6-0.4-1.4-0.2-0.8 0-0.8 0.2-1 1-2.1 0.2-0.5-0.4-1-0.3-0.9-1.8-3.9-1.4-2.3-0.3-0.9-0.1-1 0.1-2.2 0.1-0.7 0.3-0.8 1.8-3.2 0.6-4 0.6-1 1.8-1.9 0.4-0.8 0-0.7-0.3-0.2-0.4 0-0.7 0.2-0.5-0.3-0.2-0.6 0-0.9 0.2-2-0.1-1.8 0.3-0.8 0.9-1.3 0.8-0.8 1-0.7 0.9-0.4 2.6-0.9 1-0.5 0.7-0.7 0.5-0.7 0.7-1.5 0.2-0.8 0.1-0.9-0.6-2.6-0.3-2.9 0.9 1.4 0.6 1.2 0.5 0.5 0.7 0.5 1.3 0.2 1 0.1 5.8-0.8 0.5 0.1 0.6 0.4 1 2 0.7 0.7 1.6 0.1 0.9-0.5 0.8-0.8 0.5-0.8 0.6-0.4 0.5-0.1 2.7 0.4 0.3 0 0.2-0.2 0.2-0.6 0.3 0 1 0.1 0.9 0.2 1 0.5 0.7 0.7 0.4 1.2-0.1 2.1 0.3 0.6 0.8-0.1 0.5-0.5 0.5-0.9 0.4-0.6 0.5-0.3 0.7 0.3 0.7 0.5 1.2 1.7 0.6 0.2 0.4-0.2 0.4-0.3 0.4 0 0.4 0.4 0.5 1.7 0.2 0.5 0.4 0.5 1.4 0.9 1.1 1.4z" id="DZA2219" name="Khenchela">
</path>
</a>
<a xlink:title="Mila" href="store.php?wilaya=Mila">
<path d="M732.6 32.1l2.3 0.1-0.3 2.7-0.2 1-0.4 0.6-0.7 0.4-0.2 0.2-0.1 0.3 0.1 0.5 0.6 1.6 0.2 0.9-0.2 0.7-0.6 0.4-3.2 0.4-1.1 0.4-0.4 0.1-1 0.5-0.9 0.7-0.4 0.5-0.2 0.7 0.2 0.6 0.6 0.3 1.4-0.1 0.7 0.3 4.4 4.5 2.5 3.6 0.2 0.6-0.4 2.3-0.4 0-0.8 0.2-0.7 0.2-1.5 0.9-1.2 1.1-0.7 0.9-0.3 1.2 0.1 1.9-0.1 0.9-0.2 0.9-0.9 0.9-1.3 1-2.5 1.1-3.1 0.9-2.2 0.5-0.9 0.3-0.6 0.3-0.3 0.6-0.2 0.5 0.1 1.6-4 0.4-1.9-0.4-0.6-0.3-1.9-0.6 0.1-1.9-0.3-0.9 0.5-5.8-0.3-1.2-0.6-0.8-0.8-0.4-0.6-0.7-0.2-0.4 0-0.7-0.1-0.4-0.3-0.5-0.6-0.6-0.5-0.9 0-0.7 0.4-0.5 0.6-0.4 0.4-0.7 0.2-1-0.4-0.6-0.6-0.1-0.9 0-0.7-0.2-0.6-1 0-1.1 0.3-1.5 0.1-3.8-0.1-2.3-0.5-1.1-0.7-0.6-0.9-0.1-0.9 0-1-0.1-0.7-0.4-0.5-0.8 0-0.9 0.2-1.8 0-1-0.2-0.7-0.4-0.6-0.2-0.4-0.8-0.8 1.9-0.4 0.6 0.1 0.9 0.2 0.7 0.4 1.2 0.4 1.1 0.1 1.7-0.2 1-0.3 0.5-0.5 0.3-0.7 0.5-0.7 0.7-0.5 1.8-0.8 1-0.1 0.7 0.1 1.7 0.5 2.6 0.2 1.9 0.5 1.5 0.1 0.9 0 0.5-0.2 0.6-0.7 0.3-0.4 1.1-0.4 1.3-0.8 0.4 0 0.3 0.1 0.3 0.8 0.2 0.3 0.4 0.2 6.2 1.3z" id="DZA2220" name="Mila">
</path>
</a>
<a xlink:title="Oum El Bouaghi" href="">
<path d="M759.4 57.6l0.1 0.4 0.1 1.3 0.2 0.8 0.2 0.8 0.4 0.6 0.6 0.5 0.5 0.5 0.2 0.5 0.1 0.5 0.3 0.5 0.6 0.3 1.3-0.2 1.3-0.4 2-1 1-0.7 0.6-1.1 0.1-1.8 0.2-0.6 0.5-0.3 0.8-0.2 2.4 0.3 1.7 0.9 0 2.9 2.1 4.6 1.4 2.1 0.9 0.9 1.7 2 0.8 0.6 0.7 0.4 2 0.5 0.7 0.5 0.5 0.7 0.7 2 0.7 0.4 3.1 0.1 0.9-0.2 0.4-0.5 0.1-0.7 0-0.7 0.3-0.5 0.8-0.8 0.4-0.7 0.3-0.9 0.5-0.7 0.8-0.4 1.2 0 0.9 0.5 0.9 0.5 3.3 3.5-0.2 0.9 0 0.6 0.2 0.7-0.2 0.5-1.8 4.4-0.1 1.6 0.1 1.3 0.8 2.5 0.2 1.1-0.2 0.9-0.8 0.5-0.8 0.3-0.8 0.2-0.8 0.3-11.1 8.6-1.1-1.4-1.4-0.9-0.4-0.5-0.2-0.5-0.5-1.7-0.4-0.4-0.4 0-0.4 0.3-0.4 0.2-0.6-0.2-1.2-1.7-0.7-0.5-0.7-0.3-0.5 0.3-0.4 0.6-0.5 0.9-0.5 0.5-0.8 0.1-0.3-0.6 0.1-2.1-0.4-1.2-0.7-0.7-1-0.5-0.9-0.2-1-0.1-0.3 0-0.2 0.6-0.2 0.2-0.3 0-2.7-0.4-0.5 0.1-0.6 0.4-0.5 0.8-0.8 0.8-0.9 0.5-1.6-0.1-0.7-0.7-1-2-0.6-0.4-0.5-0.1-5.8 0.8-1-0.1-1.3-0.2-0.7-0.5-0.5-0.5-0.6-1.2-0.9-1.4-3.4-4.9-2.4-1.8-1.1-0.4-1.1 0-1.1 0.1-2.9 1.1-0.9 0.2-0.7-0.1-0.4-0.8 0-0.7 0.1-0.7 0-0.6-0.2-0.7-0.5-0.4-0.4-0.2-2.4-0.2-0.8-0.2-0.7-0.4-1.3-1.3-0.5-0.1-0.5 0.2-0.7 0.9-1 0.1-0.9 0-6.1-2-0.1-1.6 0.2-0.5 0.3-0.6 0.6-0.3 0.9-0.3 2.2-0.5 3.1-0.9 2.5-1.1 1.3-1 0.9-0.9 0.2-0.9 0.1-0.9-0.1-1.9 0.3-1.2 0.7-0.9 1.2-1.1 1.5-0.9 0.7-0.2 0.8-0.2 0.4 0 1.5 1.7 1.2 1.6 0.2 0.1 0.4 0 0.3-0.3 0.3-0.8 2.3-1 0.9-0.6 0.8-0.4 2.4-0.6 0.5-0.3 0.6-0.3 0.4-0.4 0.6-0.3 0.7 0.1 4.5 2.7 0.3 0.8-0.1 0.9 0.2 0.5 0.5 0.1 1-0.7 1.4-1.4 0.7-0.3 1-0.1 1.3-0.3z" id="DZA2221" name="Oum el Bouaghi">
</path>
</a>
<a xlink:title="Souk Ahras" href="store.php?wilaya=Souk Ahras">
<path d="M820.2 68.6l-1.9-0.7-0.8-0.6-0.6-0.6-0.5-0.1-0.4 0.3-0.4 0.3-0.3 0.1-1.8 0.1-0.9 0.3-1.5 0.3-2.1 0.2-1.7 0.4-0.5 0.2-0.6 0.4-0.3 1-0.2 0.5-0.7 0.6-1.8 0.9-0.5 0.4-0.5 0.6-0.5 0.8-1 1.3-3.3-3.5-0.9-0.5-0.9-0.5-1.2 0-0.8 0.4-0.5 0.7-0.3 0.9-0.4 0.7-0.8 0.8-0.3 0.5 0 0.7-0.1 0.7-0.4 0.5-0.9 0.2-3.1-0.1-0.7-0.4-0.7-2-0.5-0.7-0.7-0.5-2-0.5-0.7-0.4-0.8-0.6-1.7-2-0.9-0.9-1.4-2.1-2.1-4.6 0-2.9 1 0 0.6-0.1 0.5-0.3 0.3-0.5 0.6-1.3 0.5-0.6 0.6-0.4 3.1-0.7 1 0 0.6-0.2 0.6-0.3 0.7-1 0.5-0.4 4.8-1.6 4.8-2.5 1.7-0.1 0.8-0.2 0.9-0.4 0.8-0.6 0.2-1.2-0.2-0.9-0.6-0.9-0.3-0.6-0.1-1.3-0.1-0.5-0.7-1.8 0.1-0.4 0.3 0 2 0.6 1.4-0.1 5.6-3.1 0.7 1.5 0.2 2.8 0.3 0.4 0.5 0.1 0.8-0.1 0.8-0.3 0.6-0.3 0.7-0.4 0.7-0.5 0.5-0.5 1-1.5 0.6-0.7 0.9-0.7 0.4-0.3 0 0.1 2 0.8 4.2 0.5 0.9 0.5 0.9 0.3 0.8 0.4 0.4 1.1 0.1 1.2-0.1 2.5-0.2 1.1-2.3 6.5-0.2 2.4 0.2 1.2 0.4 1.1 0.1 1.1-0.4 1.1-0.6 1-1 4.4-0.1 3.3-0.2 0.7z" id="DZA2222" name="Souk Ahras">
</path>
</a>
<a xlink:title="Tébessa" href="store.php?wilaya=Tébessa">
<path d="M820.2 68.6l-1.1 3.8-0.2 4.7 0.2 2.6 0.6 2 2.3 3.9 0.8 2 0.7 6.8 0 1.7-1.8 4.2-0.5 2.1-0.1 2.2 0.3 2.4 1.1 2.1 1.9 0.9 2 0.6 1.6 1.3-0.4 1.2-3 4.5-2.2 2.5-0.7 2.1-0.8 4.4-1.2 3.1-0.5 2.3 0.1 2.2 0.9 5.9-0.1 0.8-0.5 0.7-1.5 1.6-0.6 0.9-0.1 0.9 1.2 2-0.3 0.6-1.8 1.1-0.3 0.5-0.3 1-0.2 0.4-0.4 0.4-1.2 0.7-2.4 2.2-4.5 2.1-2.1 1.4-4.2 1.9-1.8 1.4-1 2-1.8 7-0.4 0.9-0.6 0.7-1 0.5-3 0.5-1.9 1-1.3 1.3-1.2 1.6-2 2.1-10.2 0.3-2.7-0.3-3.3-1.1-3.3-1.7 3.4-7.9 1.1-4.3 0.8-5.4 0.5-1.9 0.9-2.7 0.5-0.9 0.6-0.6 0.2-0.3 0.9-2.2 1.8-2.6 0.9-1.7 1.1-2.7 0.2-1.1 0-0.9-0.1-0.9-0.7-2.2-0.1-0.6 0.2-3.2-0.2-0.8-0.4-0.8-0.1-0.5-0.1-0.7 0.1-1.3-0.2-0.6-0.4-0.5-0.6-0.2-0.9-0.1-0.8-0.4-0.2 0.1-0.3 0.2-0.5 1-0.3 0.3-0.9 0.4-0.1 0.2-0.4 0.8-0.1 1.1 0 0.4 0.4 0.7 0.1 0.2 0.2 0.6 0 1 0.3 0.8 0 0.3-0.1 0.3-0.4 0.2-0.3 0-0.2-0.2-0.4-1.1-0.2-0.5-0.1-0.6-0.4-0.8-0.3-0.5-0.1-0.6 0-0.7-0.1-0.6-0.1-0.6 0.1-0.5 0.3-0.7 1.6-2.4 1.5-1.4 1.7-2.4 2.9-3.2 0.7-1.1 0.5-1.2 0.2-1.6-0.2-1.1-0.3-1-0.2-0.9 0.1-0.9 0.6-1.2 0-1-0.1-0.9-0.1-0.8 0.3-2 0-0.9-0.3-0.7 0-0.6 0.7-0.7 4.5-1.8 1.2-1.2 11.1-8.6 0.8-0.3 0.8-0.2 0.8-0.3 0.8-0.5 0.2-0.9-0.2-1.1-0.8-2.5-0.1-1.3 0.1-1.6 1.8-4.4 0.2-0.5-0.2-0.7 0-0.6 0.2-0.9 1-1.3 0.5-0.8 0.5-0.6 0.5-0.4 1.8-0.9 0.7-0.6 0.2-0.5 0.3-1 0.6-0.4 0.5-0.2 1.7-0.4 2.1-0.2 1.5-0.3 0.9-0.3 1.8-0.1 0.3-0.1 0.4-0.3 0.4-0.3 0.5 0.1 0.6 0.6 0.8 0.6 1.9 0.7z" id="DZA2223" name="Tébessa">
</path>
</a>
<circle cx="664.1" cy="28.9" id="0">
</circle>
<circle cx="646.5" cy="28" id="1">
</circle>
<circle cx="688.5" cy="146.9" id="2">
</circle>
</svg>
</div>
</div>
<div class="w3-half">
<div class="w3-row">
<div class="w3-third w3-text-grey w3-padding w3-center">
<?php
$wilayas = getAllFrom("*","wilayas","WHERE code between 1 AND 16","ORDER BY code", "ASC");
foreach($wilayas as $wilaya){
echo "<a class='w3-margin-bottom' href='store.php?wilaya=".$wilaya["wilaya"] . "' style='text-decoration: none; margin-bottom:10px;'>";
echo '<span>'. $wilaya["wilaya"] . '</span><br>';
echo "</a>";
}
?>
</div>
<div class="w3-third w3-text-grey w3-padding w3-center">
<?php
$wilayas = getAllFrom("*","wilayas","WHERE code between 17 AND 32","ORDER BY code", "ASC");
foreach($wilayas as $wilaya){
echo "<a class='w3-margin-bottom' href='store.php?wilaya=".$wilaya["wilaya"] . "' style='text-decoration: none; margin-bottom:10px;'>";
echo '<span>'. $wilaya["wilaya"] . '</span><br>';
echo "</a>";
}
?>
</div>
<div class="w3-third w3-text-grey w3-padding w3-center">
<?php
$wilayas = getAllFrom("*","wilayas","WHERE code between 33 AND 48","ORDER BY code", "ASC");
foreach($wilayas as $wilaya){
echo "<a class='w3-margin-bottom' href='store.php?wilaya=".$wilaya["wilaya"] . "' style='text-decoration: none; margin-bottom:10px;'>";
echo '<span>'. $wilaya["wilaya"] . '</span><br>';
echo "</a>";
}
?>
</div>
</div>
</div>
</div>
<hr style="margin-left:25% ;max-width:50%">
<div class="w3-row-padding w3-padding w3-margin">
<h4 class="w3-darkcyan w3-margin-bottom w3-margin-top"><b><?php echo lang("BRAND-TITLE") ?></b></h4>
<?php
foreach(getCategories() as $category){
?>
<div class="w3-quarter w3-margin-bottom w3-padding ">
<a class="w3-margin-bottom" href="store.php?catID=<?php echo $category["catID"] ?>" >
<img class="w3-hover-shadow w3-circle w3-border" style="width:170px !important; height:160px !important ; max-width: -webkit-fill-available;" src="admin/uploads/cat_images/<?php echo $category["cat_image"] ?>">
</a>
</div>
<?php } ?>
<div class="w3-quarter w3-margin-bottom w3-padding ">
<a class="w3-margin-bottom" href="store.php?catID=13" >
<img class="w3-hover-shadow w3-circle w3-border" style="width:170px !important; height:160px !important ; max-width: -webkit-fill-available;" src="admin/uploads/cat_images/<?php if ($language=="fr") echo "Autre.png"; else echo "Other.png" ?>">
</a>
</div>
</div>
</div>
<div class="w3-row-padding w3-light-grey">
<div class="w3-twothird">
<?php
$items = getMostViewed2() ;
if(!empty($items)){
?>
<div class="w3-row-padding w3-white w3-card w3-margin w3-padding-32">
<h4 class="w3-darkcyan w3-center w3-margin-bottom"><b><?php echo lang("MOST-CONSULTED") ?></b></h4>
<?php
foreach($items as $item){ ?>
<div class="w3-third w3-margin-bottom w3-center w3-animate-zoom" id="<?php echo $item["itemID"] ?>">
<div class="w3-border-bottom w3-border w3-hover-shadow">
<div class="w3-display-container" >
<div class="img-container">
<?php
if(!empty(trim($item["image"]))){ ?>
<img class="" src="uploads/items_images/<?php echo $item["image"] ?>" style="width:100%">
<?php
}
else{
echo '<img src="uploads/items_images/ads.png" style="width:100%">';
}
?>
</div>
<?php if(strtotime($item["add_date"]) > strtotime('- 7 days')){
echo '<span class="w3-tag w3-display-topleft w3-teal">'. lang("NEW") . '</span>';
}
?>
<span class="w3-tag w3-display-topright w3-teal"><?php echo $item["status"] ?> /5</span>
<h4 class="w3-padding w3-nowrap"><?php echo $item["item_name"] ?></h4>
<p class="w3-text-teal w3-nowrap"><i class="fa fa-tag fa-fw"></i><b><?php echo $item["price"] ?> DA</b></p>
<p class="w3-opacity w3-nowrap"><?php echo proDate($item["add_date"]) ?></p>
<div class="w3-display-middle w3-display-hover">
<a href="showAd.php?itemID=<?php echo $item["itemID"] ?>" class="w3-button w3-teal"><?php echo lang("FULL-DETAILS") ?> <i class="fa fa-plus-circle"></i></a>
</div>
</div>
<div class="w3-row">
<?php
$citem = $item["itemID"];
if(isset($_SESSION["id"])) $user = $_SESSION["id"];
$list = getAllFrom("*","likes","WHERE itemID = '$citem' AND userID = '$user'");
if(count($list) > 0){ ?>
<a href="<?php echo $func ?>update.php?u=rlike&itemID=<?php echo $item["itemID"] ?>&userID=<?php echo $user ?>"><div class="w3-third w3-text-teal w3-padding w3-hover-teal w3-nowrap"><i class="fa fa-fw fa-check"></i><?php echo countItems("*","likes",true,"itemID",$item["itemID"]) ?>
</div>
</a>
<?php
}
else { ?>
<a href="<?php echo $func ?>update.php?u=alike&itemID=<?php echo $item["itemID"] ?>&userID=<?php echo $user ?>">
<div class="w3-third w3-text-grey w3-padding w3-hover-teal w3-nowrap"><i class="far fa-fw fa-thumbs-up"></i><?php echo countItems("*","likes",true,"itemID",$item["itemID"]) ?>
</div>
</a>
<?php
}
?>
<div class="w3-third w3-text-grey w3-padding w3-nowrap"><i class="fa fa-fw fa-eye"></i><?php echo countItems("*","user_likes",true,"itemID",$item["itemID"]) ?></div>
<a href="showAd.php?itemID=<?php echo $item["itemID"] ?>#demo"><div class="w3-third w3-text-grey w3-padding w3-hover-teal w3-nowrap"><i class="fa fa-fw fa-comments"></i><?php echo countItems("comID","comments",true,"itemID",$item["itemID"]) ?></div></a>
</div>
</div>
</div>
<?php
}
?>
</div>
<?php
}
?>
</div>
<div class="w3-third">
<!-- Posts -->
<div class="w3-white w3-margin-top">
<div class="w3-container w3-padding w3-teal">
<h5><?php echo lang("LATEST-ADS-PUBLISHED") ?></h5>
</div>
<ul class="w3-ul w3-hoverable w3-white">
<?php
$latestAds = getAllFrom("*","items","WHERE pending = 1","ORDER BY add_date","DESC","LIMIT 10");
if(!empty($latestAds)){
foreach($latestAds as $ad){
?>
<a href="showAd.php?itemID=<?php echo $ad["itemID"]?>">
<li class="w3-padding-16">
<img src="uploads/items_images/<?php echo $ad["image"] ?>" alt="Image" class="w3-left w3-margin-right" style="width:50px; height:50px">
<span class=""><?php echo $ad["item_name"] ?></span><br>
<span class="w3-text-teal w3-nowrap"><i class="fa fa-fw fa-tag"></i><?php echo $ad["price"] ?> DA</span>
</li>
</a>
<?php
}
}
?>
</ul>
</div>
</div>
</div>
</div>
<?php
include $tmp . 'footer.php';
?>