summaryrefslogtreecommitdiff
path: root/play.html
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2023-11-01 14:04:15 +0100
committerTor Andersson <tor@ccxvii.net>2023-11-01 14:06:13 +0100
commit02a81dfcc5beb1fbe784a3e261fd6416590f4755 (patch)
treea13177f7230cdf4bbae8d9a41000f157c04b7a26 /play.html
parent3a0b106015952d13512fef95f0d33893cebc94d3 (diff)
downloadalgeria-02a81dfcc5beb1fbe784a3e261fd6416590f4755.tar.gz
Clean up map. Use JS to layout stacks.
Change size to be an even multiple of the track boxes (1503x1103). Move boxes and text into play.html part. Render area outlines and borders to bitmap. Focus stacks by clicking as in wilderness war. Stacks expand different directions based on the sub-location so that they don't collide with stacks in the same area. NOTE: Layout values have been manually tweaked. Do not re-run the genlayout script.
Diffstat (limited to 'play.html')
-rw-r--r--play.html526
1 files changed, 272 insertions, 254 deletions
diff --git a/play.html b/play.html
index 24e7f37..9d3e2a1 100644
--- a/play.html
+++ b/play.html
@@ -8,15 +8,20 @@
<title>ALGERIA</title>
<link rel="icon" href="favicon.svg">
<link rel="stylesheet" href="/fonts/fonts.css">
-<link rel="stylesheet" href="/common/client.css?v=4134">
-<script defer src="/common/client.js?v=4134"></script>
+<link rel="stylesheet" href="/common/client.css">
+<script defer src="/common/client.js"></script>
<script defer src="data.js"></script>
-<script defer src="play.js?v=4135"></script>
+<script defer src="play.js"></script>
<style>
+@font-face { font-family: "URW Gothic"; src: url(URWGothic-Book.woff2); }
+@font-face { font-family: "URW Gothic"; font-weight: bold; src: url(URWGothic-Demi.woff2); }
+@font-face { font-family: "URW Gothic"; font-style: italic; src: url(URWGothic-BookOblique.woff2); }
+@font-face { font-family: "URW Gothic"; font-style: italic; font-weight: bold; src: url(URWGothic-DemiOblique.woff2); }
+
:root {
--area-highlight-color: white;
- --urban-highlight-color: navy;
+ --urban-highlight-color: white;
--rural-highlight-color: green;
--remote-highlight-color: brown;
--highlight-color: yellow;
@@ -30,21 +35,6 @@
--counter-algerian-color: #FFE7BD;
--counter-remote-color: #DFD9C1;
--counter-fln-color: #51a36d;
-
- --counter-french-border: navy;
- --counter-elite-border: navy;
- --counter-algerian-border: navy;
- --counter-remote-border: navy;
- --counter-fln-border: darkgreen;
-
- --stack-2-left: 10px;
- --stack-2-top: -13px;
- --stack-3-left: 8px;
- --stack-3-top: -10px;
- --stack-4-left: 6px;
- --stack-4-top: -7px;
- --stack-5-left: 4px;
- --stack-5-top: -4px;
}
main { background-color: dimgray }
@@ -61,7 +51,7 @@ main { background-color: dimgray }
#log { background-color: whitesmoke; }
#log .h1 { background-color: silver; font-weight: bold; padding-top:4px; padding-bottom:4px; margin: 8px 0; text-align: center; }
#log .h2 { background-color: gainsboro; padding-top:2px; padding-bottom:2px; text-align: center; }
-#log .h3 { background-color: gainsboro; padding-top:2px; padding-bottom:2px; text-align: center; }
+#log .h3 { text-decoration: underline; }
#log .fln { background-color: #C1E1C1; }
#log .gov { background-color: #BCDDFF; }
@@ -100,177 +90,156 @@ main { background-color: dimgray }
border: 1px solid #222;
}
-#mapwrap {
- width: 1500px;
- height: 1101px;
-}
-
#map {
- width: 1500px;
- height: 1101px;
- background-size: 1500px 1101px;
+ width: 1503px;
+ height: 1103px;
+ background-size: 1503px 1103px;
background-position: center;
- background-image: url(map.svg?v=3);
+ background-image: url(map.webp);
}
+/* MAP ELEMENTS */
+
#map svg {
position: absolute;
}
-#map svg image {
- pointer-events: none;
+svg .urban2 {
+ fill: #614528;
+ fill-opacity: 0.4;
}
-#map svg path.area {
- fill-opacity: 0;
- fill: white;
- stroke-width: 6;
+svg .urban2.action {
+ fill: #614528;
+ fill-opacity: 1;
+ stroke: white;
+ stroke-width: 3;
}
-#map svg path.area.action {
- fill-opacity: 0.2;
- fill: var(--area-highlight-color);
+svg .urban2.target {
+ fill: brown;
+ fill-opacity: 1;
stroke: white;
+ stroke-width: 3;
}
-#map svg path.area.rural {
- fill: var(--rural-highlight-color);
+svg .area {
+ fill-opacity: 0;
+ stroke-opacity: 0;
+ fill: white;
+ stroke: white;
+ stroke-width: 3;
}
-#map svg path.area.urban {
- fill: var(--urban-highlight-color);
-}
+svg .area.urban { fill: var(--urban-highlight-color); }
+svg .area.rural { fill: var(--rural-highlight-color); }
+svg .area.remote { fill: var(--remote-highlight-color); }
-#map svg path.area.remote {
- fill: var(--remote-highlight-color);
+svg .area.action {
+ fill-opacity: 0.2;
+ stroke-opacity: 1.0;
}
-#map svg path.area.target {
+svg .area.target {
fill-opacity: 0.4;
+ stroke-opacity: 1.0;
fill: var(--target-color);
stroke: var(--target-color);
}
-#map svg path.area.tip {
- fill-opacity: 0.2;
+svg .area.tip {
+ fill-opacity: 0.4;
+ stroke-opacity: 1.0;
fill: var(--tip-color);
stroke: var(--tip-color);
stroke-dasharray: 12 6;
}
-/* SPACES */
-
-.space{position:absolute;box-sizing:border-box;border:4px solid transparent;}
-.space.loc{border-radius:50%;}
-.space.action{border-color:var(--highlight-color);}
-.space.target{border-color:var(--target-color);}
-.space.loc.action{border-color:var(--highlight-color);}
-.space.selected{border-color:var(--selected-color);}
-.space.tip { border-color: var(--tip-color);}
+.area_markers {
+ pointer-events: none;
+ position: absolute;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ flex-wrap: wrap;
+ gap: 4px;
+}
-.stack {
+.box {
pointer-events: none;
+ position:absolute;
+ box-sizing:border-box;
+ display:flex;
+ justify-content:center;
+ align-items:center;
+ flex-wrap: wrap;
+ gap: 4px;
+}
+
+.box.track1,
+.box.track5 {
+ width: 47px;
+ height: 47px;
+ font-size: 28px;
+ font-weight: bold;
}
-.stack > div { position: absolute; transition: inset 200ms ease; }
-.stack:hover > div { z-index: 100; }
-
-.stack.m > div:nth-child(1 of :not(.hide)) { left: calc(0 * 8px); top: calc(0 * 8px); }
-.stack.m > div:nth-child(2 of :not(.hide)) { left: calc(1 * 8px); top: calc(1 * 8px); }
-.stack.m > div:nth-child(3 of :not(.hide)) { left: calc(2 * 8px); top: calc(2 * 8px); }
-.stack.m > div:nth-child(4 of :not(.hide)) { left: calc(3 * 8px); top: calc(3 * 8px); }
-.stack.m > div:nth-child(5 of :not(.hide)) { left: calc(4 * 8px); top: calc(4 * 8px); }
-.stack.m > div:nth-child(6 of :not(.hide)) { left: calc(5 * 8px); top: calc(5 * 8px); }
-.stack.m > div:nth-child(7 of :not(.hide)) { left: calc(6 * 8px); top: calc(6 * 8px); }
-.stack.m > div:nth-child(8 of :not(.hide)) { left: calc(7 * 8px); top: calc(7 * 8px); }
-.stack.m > div:nth-child(9 of :not(.hide)) { left: calc(8 * 8px); top: calc(8 * 8px); }
-
-.stack.m:hover > div:nth-child(1 of :not(.hide)) { left: calc(0 * 24px); top: calc(0 * 24px); }
-.stack.m:hover > div:nth-child(2 of :not(.hide)) { left: calc(1 * 24px); top: calc(1 * 24px); }
-.stack.m:hover > div:nth-child(3 of :not(.hide)) { left: calc(2 * 24px); top: calc(2 * 24px); }
-.stack.m:hover > div:nth-child(4 of :not(.hide)) { left: calc(3 * 24px); top: calc(3 * 24px); }
-.stack.m:hover > div:nth-child(5 of :not(.hide)) { left: calc(4 * 24px); top: calc(4 * 24px); }
-.stack.m:hover > div:nth-child(6 of :not(.hide)) { left: calc(5 * 24px); top: calc(5 * 24px); }
-.stack.m:hover > div:nth-child(7 of :not(.hide)) { left: calc(6 * 24px); top: calc(6 * 24px); }
-.stack.m:hover > div:nth-child(8 of :not(.hide)) { left: calc(7 * 24px); top: calc(7 * 24px); }
-.stack.m:hover > div:nth-child(9 of :not(.hide)) { left: calc(8 * 24px); top: calc(8 * 24px); }
-
-.stack > div:nth-child(1 of :not(.hide)) { left: calc(0 * 12px); top: calc(0 * -16px); }
-.stack > div:nth-child(2 of :not(.hide)) { left: calc(1 * 12px); top: calc(1 * -16px); }
-.stack > div:nth-child(3 of :not(.hide)) { left: calc(2 * 12px); top: calc(2 * -16px); }
-.stack > div:nth-child(4 of :not(.hide)) { left: calc(3 * 12px); top: calc(3 * -16px); }
-.stack > div:nth-child(5 of :not(.hide)) { left: calc(4 * 12px); top: calc(4 * -16px); }
-.stack > div:nth-child(6 of :not(.hide)) { left: calc(5 * 12px); top: calc(5 * -16px); }
-.stack > div:nth-child(7 of :not(.hide)) { left: calc(6 * 12px); top: calc(6 * -16px); }
-.stack > div:nth-child(8 of :not(.hide)) { left: calc(7 * 12px); top: calc(7 * -16px); }
-.stack > div:nth-child(9 of :not(.hide)) { left: calc(8 * 12px); top: calc(8 * -16px); }
-
-/* stack of 2 */
-.stack:not(:hover) > div:nth-last-child(2 of :not(.hide)) ~ div:nth-child(2 of :not(.hide)) { left: calc(1 * var(--stack-2-left)); top: calc(1 * var(--stack-2-top)); }
-
-/* stack of 3 */
-.stack:not(:hover) > div:nth-last-child(3 of :not(.hide)) ~ div:nth-child(2 of :not(.hide)) { left: calc(1 * var(--stack-3-left)); top: calc(1 * var(--stack-3-top)); }
-.stack:not(:hover) > div:nth-last-child(3 of :not(.hide)) ~ div:nth-child(3 of :not(.hide)) { left: calc(2 * var(--stack-3-left)); top: calc(2 * var(--stack-3-top)); }
-
-/* stack of 4 */
-.stack:not(:hover) > div:nth-last-child(4 of :not(.hide)) ~ div:nth-child(2 of :not(.hide)) { left: calc(1 * var(--stack-4-left)); top: calc(1 * var(--stack-4-top)); }
-.stack:not(:hover) > div:nth-last-child(4 of :not(.hide)) ~ div:nth-child(3 of :not(.hide)) { left: calc(2 * var(--stack-4-left)); top: calc(2 * var(--stack-4-top)); }
-.stack:not(:hover) > div:nth-last-child(4 of :not(.hide)) ~ div:nth-child(4 of :not(.hide)) { left: calc(3 * var(--stack-4-left)); top: calc(3 * var(--stack-4-top)); }
-
-/* stack of 5 or more */
-.stack:not(:hover) > div:nth-last-child(n+5 of :not(.hide)) ~ div:nth-child(2 of :not(.hide)) { left: calc(1 * var(--stack-5-left)); top: calc(1 * var(--stack-5-top)); }
-.stack:not(:hover) > div:nth-last-child(n+5 of :not(.hide)) ~ div:nth-child(3 of :not(.hide)) { left: calc(2 * var(--stack-5-left)); top: calc(2 * var(--stack-5-top)); }
-.stack:not(:hover) > div:nth-last-child(n+5 of :not(.hide)) ~ div:nth-child(4 of :not(.hide)) { left: calc(3 * var(--stack-5-left)); top: calc(3 * var(--stack-5-top)); }
-.stack:not(:hover) > div:nth-last-child(n+5 of :not(.hide)) ~ div:nth-child(5 of :not(.hide)) { left: calc(4 * var(--stack-5-left)); top: calc(4 * var(--stack-5-top)); }
-.stack:not(:hover) > div:nth-last-child(n+5 of :not(.hide)) ~ div:nth-child(6 of :not(.hide)) { left: calc(5 * var(--stack-5-left)); top: calc(5 * var(--stack-5-top)); }
-.stack:not(:hover) > div:nth-last-child(n+5 of :not(.hide)) ~ div:nth-child(7 of :not(.hide)) { left: calc(6 * var(--stack-5-left)); top: calc(6 * var(--stack-5-top)); }
-.stack:not(:hover) > div:nth-last-child(n+5 of :not(.hide)) ~ div:nth-child(8 of :not(.hide)) { left: calc(7 * var(--stack-5-left)); top: calc(7 * var(--stack-5-top)); }
-.stack:not(:hover) > div:nth-last-child(n+5 of :not(.hide)) ~ div:nth-child(9 of :not(.hide)) { left: calc(8 * var(--stack-5-left)); top: calc(8 * var(--stack-5-top)); }
-
-.stack:hover > div:nth-child(1 of :not(.hide)) { left: calc(0 * 24px); top: calc(0 * -24px); }
-.stack:hover > div:nth-child(2 of :not(.hide)) { left: calc(1 * 24px); top: calc(1 * -24px); }
-.stack:hover > div:nth-child(3 of :not(.hide)) { left: calc(2 * 24px); top: calc(2 * -24px); }
-.stack:hover > div:nth-child(4 of :not(.hide)) { left: calc(3 * 24px); top: calc(3 * -24px); }
-.stack:hover > div:nth-child(5 of :not(.hide)) { left: calc(4 * 24px); top: calc(4 * -24px); }
-.stack:hover > div:nth-child(6 of :not(.hide)) { left: calc(5 * 24px); top: calc(5 * -24px); }
-.stack:hover > div:nth-child(7 of :not(.hide)) { left: calc(6 * 24px); top: calc(6 * -24px); }
-.stack:hover > div:nth-child(8 of :not(.hide)) { left: calc(7 * 24px); top: calc(7 * -24px); }
-.stack:hover > div:nth-child(9 of :not(.hide)) { left: calc(8 * 24px); top: calc(8 * -24px); }
-
-#tracker div {
- box-sizing: border-box;
+.box.track1 { background-color: #808080; color: #d9d9d9; }
+.box.track5 { background-color: #b3b3b3; color: #404040; }
+
+.box.drm_track {
+ background-color: #fff6;
+ color: #0006;
+ font-weight: bold;
+ font-size: 20px;
+ width: 51px;
+ height: 51px;
+}
+
+.box.ops {
+ background-image: url(images/ops.svg);
+ opacity: 0.4;
+}
+.box.ug {
+ background-image: url(images/ug.svg);
+ opacity: 0.4;
+}
+.box.ptl {
+ border-radius: 50%;
+ background-color: #fff;
+ opacity: 0.4;
+}
+.box.oc {
+ background-color: #fff;
+ opacity: 0.4;
+}
+
+.box.text {
+ font-weight: bold;
+ color: #0006;
+ text-align: center;
+ font-size: 14px;
}
/* COUNTERS */
+#pieces .counter {
+ position: absolute;
+ transition: top 200ms ease, left 200ms ease;
+}
+
.counter {
background-size: 1000%;
background-repeat: no-repeat;
border-style: solid;
- pointer-events: auto;
-}
-
-.counter {
+ border-color: #333;
width: 39px;
height: 39px;
border-width: 2px;
- border-radius: 8px;
- background-image: url(counters.svg?v=9);
+ background-image: url(images/counters.svg);
background-color: white;
}
-.counter.m {
- width: 42px;
- height: 42px;
- border-width: 4px;
-}
-
-.counter.s {
- width: 26px;
- height: 26px;
- border-width: 1px;
-}
-
.counter.action {
box-shadow: 0 0 0 2px var(--highlight-color);
}
@@ -284,7 +253,7 @@ main { background-color: dimgray }
}
.counter.selected {
- box-shadow: 0 0 0 3px var(--selected-color);
+ box-shadow: 0 0 0 2px var(--selected-color);
}
.counter.neutralized {
@@ -316,19 +285,19 @@ main { background-color: dimgray }
.unit[class*=' fr_x'] {
background-color: var(--counter-french-color);
- border-color: var(--counter-french-border);
+ border-color: color-mix(in srgb, var(--counter-french-color) 35%, black);
}
.unit[class*=' fr_elite_x_'] {
background-color: var(--counter-elite-color);
- border-color: var(--counter-elite-border);
+ border-color: color-mix(in srgb, var(--counter-elite-color) 35%, black);
}
.unit[class*=' alg_'] {
background-color: var(--counter-algerian-color);
- border-color: var(--counter-algerian-border);
+ border-color: color-mix(in srgb, var(--counter-algerian-color) 35%, black);
}
.unit[class*=' fln_'] {
background-color: var(--counter-fln-color);
- border-color: var(--counter-fln-border);
+ border-color: color-mix(in srgb, var(--counter-fln-color) 45%, black);
}
.unit.neutralized[class*=' fr_x'] {
background-color: color-mix(in srgb, var(--counter-french-color) 40%, white);
@@ -389,16 +358,17 @@ main { background-color: dimgray }
.panel {
max-width: 900px;
margin: 36px auto;
- background-color: #555;
+ background-color: #808080;
+ border: 3px solid #555;
}
.panel_header {
- background-color: #444;
+ background-color: #555;
color: white;
user-select: none;
font-weight: bold;
text-align: center;
- padding: 3px 1em;
+ padding-bottom: 2px;
}
.panel_body {
@@ -430,6 +400,7 @@ main { background-color: dimgray }
<li class="resign" onclick="confirm_resign()">Resign
</menu>
</details>
+ <button class="icon_button" onclick="toggle_pieces()"><img src="/images/earth-africa-europe.svg"></button>
</div>
</header>
@@ -457,127 +428,174 @@ main { background-color: dimgray }
<main>
-<div id="mapwrap" class="">
<div id="map">
-<svg id="svgmap" width="1500px" height="1101px" viewBox="0 0 1500 1101">
-
- <g
- class="area" id="areas"
- transform="scale(0.5545,0.5545)">
- <path
- class="area" id="France"
- d="m 1612.2246,390.50195 c 83.8535,0 167.707,0 251.5606,0 0,-65.99609 0,-131.99218 0,-197.98828 -83.8536,0 -167.7071,0 -251.5606,0 0,65.9961 0,131.99219 0,197.98828 z" />
- <path
- class="rural area" id="Philippeville"
- d="m 2263.6719,537.10938 c -0.9232,-0.0695 0.4345,0.54119 0.674,0.79599 3.1388,2.16404 6.4372,4.24061 8.9256,7.17666 1.7829,2.09766 2.7179,4.79493 2.8835,7.52322 0.4975,5.35357 -1.3721,10.59765 -3.8855,15.24045 -4.8028,8.67093 -11.573,16.04762 -18.6269,22.93164 -2.8754,2.68695 -6.0929,5.38767 -10.091,6.07827 -3.4497,0.6373 -6.8775,-0.66577 -9.872,-2.2759 -1.3792,-0.58908 -2.7943,-1.17351 -4.2987,-1.32971 -1.6952,2.4471 -3.0281,5.14273 -4.9833,7.40879 -1.3596,1.70154 -2.7885,3.34624 -4.1808,5.0209 -1.0228,-0.24571 -2.034,-0.62075 -3.0645,-0.78711 -2.4107,0.29978 -5.0433,0.28595 -7.3457,0.3164 -1.6148,0.0796 -3.2773,-0.0306 -4.8496,0.38672 -1.6867,0.69229 -2.952,2.09962 -4.6144,2.85217 -3.2697,1.78749 -7.3986,2.30417 -10.8197,0.62868 -1.2294,-0.57565 -2.3286,-1.40431 -3.2807,-2.36757 -2.4849,1.98863 -4.9493,4.01424 -7.2785,6.18403 -1.5463,1.46247 -2.7956,3.30622 -3.1578,5.43708 -1.0522,4.5414 -1.1286,9.23048 -1.4306,13.86273 -0.6802,14.68726 -1.0172,29.41407 -1.2603,44.15698 -0.093,6.15166 -0.1273,12.47534 -0.072,18.69777 0.097,34.75446 0.085,69.50919 0.057,104.26375 -0.023,16.90794 -0.047,33.81589 -0.07,50.72384 5.6496,0.60628 11.3604,1.5899 16.5095,4.1039 6.3368,3.072 11.5405,8.02532 16.0575,13.34422 3.4139,4.07042 6.0967,8.88535 6.9802,14.17264 0.9304,5.1635 0.6357,10.48689 -0.2729,15.63076 -1.2062,6.13283 -4.3033,11.928 -8.9957,16.09603 -4.576,4.16916 -10.1725,7.04419 -15.903,9.27947 -5.203,1.87489 -10.7739,2.20758 -16.2408,2.61126 -0.3295,0.1617 -1.4392,-0.22391 -1.3842,0.49945 -0.6643,3.28449 -1.3561,6.56497 -1.9713,9.85992 -0.1012,0.54712 -0.2583,1.43225 -0.3809,2.10938 -0.9259,5.14878 -1.3548,10.44393 -0.5303,15.63779 0.8898,6.2947 2.8238,12.38319 3.7872,18.66544 1.9797,11.74225 2.8058,23.64272 3.4127,35.52348 0.6803,14.3051 0.6719,28.6311 0.557,42.9487 7.4764,-2.2066 14.9554,-4.405 22.4062,-6.6973 1.7925,-0.5655 3.7882,-1.1792 5.6567,-1.7716 2.18,-0.7061 4.3571,-1.3911 6.4668,-2.0916 3.6274,-1.2604 7.4079,-2.4292 11.2143,-3.2683 8.0318,-1.8047 16.2735,-2.7182 24.5063,-2.6592 8.0735,0.1575 16.0535,1.5318 24.021,2.7256 7.4599,1.1588 14.8764,2.5747 22.2839,4.025 0.6317,0.1068 1.1328,0.1975 1.6654,0.2754 3.6237,0.5822 7.2674,1.0333 10.9181,1.4073 -0.013,-8.7532 -0.059,-17.5122 0.4594,-26.254 0.4679,-9.2618 1.2441,-18.50619 2.232,-27.72648 0.087,-0.88481 0.1964,-2.05745 0.292,-3.05283 1.793,-18.70063 3.2443,-37.43297 4.4925,-56.1811 0.534,-8.25483 0.9532,-16.66855 1.3665,-24.98873 0.6407,-12.76417 3.0247,-25.34618 5.069,-37.93684 2.4579,-14.46552 4.7868,-28.95423 7.5245,-43.37034 1.4899,-7.59618 3.0974,-15.20995 5.7225,-22.50769 2.1356,-5.84448 5.4269,-11.46951 10.4501,-15.28277 4.6031,-3.57493 10.0185,-5.89765 15.4227,-7.97152 8.7154,-3.1906 18.0455,-4.30287 27.2848,-4.37406 4.1848,-0.0694 8.3342,-0.0487 12.5297,-0.38099 0.2081,-0.0234 1.0382,-0.0954 1.4961,-0.13345 1.0704,-0.10636 2.179,-0.12831 3.205,-0.45835 1.0329,-1.45909 1.4324,-3.26179 1.9739,-4.94291 2.03,-7.09391 3.0925,-14.44983 5.6054,-21.4084 3.8873,-11.24196 9.5106,-21.76873 13.865,-32.82345 0.8503,-2.12434 1.6596,-4.26509 2.421,-6.4229 0.1222,-0.37051 0.3894,-1.13583 0.5671,-1.65747 2.2746,-6.69013 3.8578,-13.61839 4.5665,-20.65273 1.1094,-10.57643 0.7847,-21.22634 0.9238,-31.84191 0.036,-1.89892 -0.028,-3.8175 0.07,-5.70435 3.3861,-8.47283 6.8878,-16.94833 9.8163,-25.56098 1.3257,-3.81629 2.6793,-7.84222 3.912,-11.77726 0.8929,-2.84867 1.7514,-5.70818 2.5645,-8.58069 -10.3956,3.55389 -22.1655,3.56872 -32.3086,-0.8457 -4.9815,-2.22828 -9.595,-5.61177 -12.6035,-10.22266 -2.018,-3.29799 -2.5163,-7.29132 -3.1457,-10.94582 -0.762,-4.09731 -0.6964,-8.35296 0.3406,-12.39699 0.4672,-2.11992 1.1198,-4.20622 1.3754,-6.36812 -2.2563,-0.58569 -4.5459,-1.09642 -6.6699,-2.0882 -4.0482,-1.72939 -7.97,-4.22718 -10.4522,-7.94462 -0.3377,-0.53273 -0.6286,-1.09357 -0.8916,-1.6664 -5.3855,0.97724 -10.7143,2.30893 -16.1545,2.95778 -3.2839,0.34645 -6.7543,-0.32706 -9.4119,-2.36599 -0.8384,-0.59203 -1.6359,-1.23865 -2.4453,-1.86914 -0.2534,-0.20458 -0.8682,-0.65906 -1.2712,-0.93611 -3.1808,-1.92061 -6.8367,-3.14328 -10.5612,-3.32032 -2.4146,-0.20318 -4.5948,1.06307 -6.7659,1.91916 -2.8897,1.35664 -5.6773,2.9574 -8.7288,3.9424 -1.5729,0.57866 -3.1525,1.13868 -4.7276,1.71128 -3.2147,-3.10923 -6.5169,-6.18351 -9.0686,-9.88507 -0.3003,-0.67592 -1.1282,-0.26394 -1.713,-0.35557 -5.6929,0.0911 -11.3895,0.14283 -17.0738,0.49455 -0.3513,0.0232 -1.2526,0.0836 -1.588,0.11166 -2.3235,0.0897 -4.6134,0.69427 -6.9472,0.46646 -3.034,-0.19427 -5.9005,-1.27227 -8.7528,-2.23084 -4.6687,-1.27924 -9.567,-1.57846 -14.3878,-1.52306 z" />
- <path
- class="rural area" id="Setif"
- d="m 2082.8398,542.31445 c -1.6206,0.0173 -3.2387,0.27668 -4.739,0.89936 -3.9667,1.15299 -8.1393,1.242 -12.1594,2.1065 -0.7752,0.7022 -1.2224,1.72705 -1.9037,2.53023 -1.9435,2.76496 -4.7381,4.89152 -7.9208,6.02733 -1.6492,0.66666 -3.4398,1.01641 -4.9958,1.89166 -1.4371,1.23011 -2.2406,3.00363 -3.2899,4.54491 -1.4876,2.44379 -2.9094,4.95808 -3.8253,7.6797 2.6293,1.79627 5.2579,3.59357 7.8867,5.39063 -2.2515,1.13447 -4.4918,2.29129 -6.75,3.41211 -0.316,4.96829 -1.6043,10.05282 -4.627,14.08789 -2.1891,2.70662 -5.6249,3.84526 -8.8645,4.73046 -4.5354,1.36644 -9.2333,2.9034 -14.0339,2.25782 -5.5815,-0.63682 -10.877,-2.75713 -16.4375,-3.45703 -4.9473,2.94173 -9.8638,5.9416 -14.793,8.91601 -3.4574,2.18676 -7.4073,3.77767 -11.5449,3.83594 -2.1449,0.1718 -4.3508,-0.16719 -6.4531,0.34765 -1.2733,1.21152 -2.4946,2.54125 -4.1309,3.27149 -3.4028,1.74769 -7.3336,1.40009 -11.0312,1.39648 -3.1391,-0.091 -6.3855,-1.02443 -8.6719,-3.27148 -3.1184,2.0439 -6.4044,3.93632 -10.0254,4.92578 -0.1514,2.5452 -0.2863,5.11371 0.189,7.63651 0.1913,1.2396 0.5297,2.73427 0.8013,3.77464 1.9104,7.14117 4.6314,14.06915 6.0157,21.3475 0.74,4.95157 -0.1248,9.95308 -0.9374,14.83873 -1.5049,8.46079 -3.9495,16.71142 -6.3573,24.94838 -4.034,14.72499 -6.6892,29.79552 -8.6566,44.92494 -0.057,0.44207 -0.1526,1.25803 -0.2243,1.84328 -1.02,8.09613 -1.6885,16.23026 -2.2618,24.36832 -0.837,11.00106 -2.2135,22.17406 -6.5628,32.41152 -3.7697,8.86496 -9.3732,16.78174 -15.1092,24.46337 -11.0616,14.59394 -24.1192,27.58862 -38.2025,39.26011 -3.3307,2.81856 -6.6284,5.77295 -9.7816,8.67953 -2.5045,2.29989 -4.9752,4.6362 -7.4555,6.96216 -1.1278,1.06752 -2.4144,2.29827 -3.6033,3.42855 -17.6227,16.83759 -34.9589,33.962 -52.4264,50.95628 -8.5849,8.29341 -17.2703,16.48742 -26.262,24.34064 -2.9596,2.74743 -5.9968,5.47415 -8.4071,8.73311 -0.928,1.66899 -1.8303,3.36717 -3.0277,4.86368 -0.018,4.03908 1.6966,7.91371 4.1977,11.02499 4.3526,5.70807 9.9881,10.33721 16.0465,14.1334 3.9129,2.43292 8.1641,4.32804 12.6303,5.47896 14.1431,4.13736 28.3588,7.85811 42.6152,11.51421 10.03,2.5362 20.0868,5.0377 30.3166,6.6399 16.3151,2.6677 32.7342,3.8862 49.1199,5.945 15.691,1.9298 31.33,4.2857 47.0607,5.8906 1.7604,0.1882 3.5242,0.3429 5.2865,0.5116 0.6694,0.059 1.661,0.1405 2.454,0.2082 6.955,0.6056 13.9673,1.0589 20.9714,1.7374 10.6803,1.2657 21.2458,3.5789 31.4534,6.9713 7.5708,2.608 15.0519,5.4672 22.5798,8.1957 7.4886,2.783 15.0655,5.5566 23.0184,6.6586 3.7342,0.5242 7.4808,0.9586 11.2044,1.5609 13.1394,1.9708 26.1955,4.4472 39.3089,6.5763 1.1772,0.189 2.2109,0.3371 3.4309,0.5142 5.1827,0.7433 10.5173,1.3285 15.6686,1.6067 6.1112,0.3363 12.2287,0.5437 18.3477,0.668 1.201,0.012 2.654,0.047 3.9535,0.047 2.3273,0.01 4.6564,0.018 6.982,-0.076 0.066,-0.8303 0.1275,-1.9614 0.1543,-2.6192 0.019,-0.6018 0.049,-1.2646 0.059,-1.7198 0.19,-8.2613 0.2121,-16.5716 0.08,-24.8923 -0.026,-1.3066 -0.057,-2.8813 -0.098,-4.2925 -0.4033,-15.467 -1.2396,-30.96526 -3.6667,-46.26208 -0.1946,-1.17885 -0.4679,-2.62989 -0.6521,-3.63406 -1.1909,-6.24586 -3.0692,-12.37358 -3.5964,-18.73441 -0.7349,-7.06637 0.5827,-14.1149 1.7747,-21.05376 0.3839,-2.18362 0.7703,-4.36692 1.1127,-6.55753 -4.2902,-0.88293 -8.5681,-1.96917 -12.5531,-3.82529 -7.9984,-3.53928 -15.1836,-9.4075 -19.2887,-17.23135 -2.2399,-4.21185 -3.1622,-8.99393 -3.2707,-13.73122 -0.1774,-5.48169 0.4451,-11.07254 2.4487,-16.20671 2.4074,-5.70408 6.9798,-10.16202 11.8365,-13.84555 4.8488,-3.57229 10.2856,-6.4324 16.1054,-8.03664 2.1587,-0.57382 4.3792,-0.91335 6.6106,-1.01192 0.3514,-4.47912 0.4671,-8.99566 0.6373,-13.42982 0.4763,-13.57061 0.7125,-27.23142 0.9389,-40.75572 0.4748,-33.92758 0.675,-67.86247 0.1407,-101.79059 -0.1505,-16.32929 0.1795,-32.65924 0.6996,-48.97978 0.2761,-7.35567 0.4563,-14.71836 0.9405,-22.06433 0.3807,-4.70634 0.7783,-9.56672 2.9412,-13.85212 1.7008,-3.42962 4.3442,-6.27595 7.0152,-8.97332 3.1954,-3.16598 6.7553,-5.92665 10.2237,-8.77736 0.5296,-0.3998 -0.4957,-0.87021 -0.6792,-1.29985 -0.4575,-0.52933 -0.9322,-1.04465 -1.436,-1.53023 -3.049,1.27389 -6.6725,0.91932 -9.4414,-0.875 -1.474,-0.80721 -3.1144,-1.31801 -4.8008,-1.33398 -3.1679,-0.44704 -6.1987,-1.53177 -9.1602,-2.70508 -1.9192,2.436 -4.976,3.98931 -8.1046,3.79534 -3.6349,-0.24029 -7.1064,-1.50636 -10.478,-2.8081 -3.6421,-1.49099 -7.168,-3.34045 -10.2621,-5.78771 -1.1643,-0.87627 -2.5627,-1.5642 -4.0596,-1.38703 -3.0718,-0.0201 -6.3077,-1.0596 -8.2773,-3.53321 -2.4165,-2.88251 -3.0842,-6.71408 -3.794,-10.29398 -0.4464,-2.50345 -0.8781,-5.12837 -2.4483,-7.2135 -2.3297,-3.39339 -5.0666,-6.48202 -7.5223,-9.78287 -1.8195,-2.33464 -3.5466,-4.75526 -5.3448,-7.09636 -1.7552,-0.55321 -3.6334,-0.58962 -5.4533,-0.80209 -1.7945,-0.1542 -3.5973,-0.22394 -5.3983,-0.18034 z" />
- <path
- class="rural area" id="Tizi-Ouzou"
- d="m 1617.8418,577.42578 c -1.9235,2.07109 -4.2204,4.03963 -7.0987,4.51854 -1.5286,0.30006 -3.0969,0.16481 -4.6298,-0.0283 -1.0832,2.61576 -3.0788,4.74686 -5.18,6.59438 -1.6407,1.35953 -3.3274,2.71149 -5.2145,3.71226 -2.5451,1.20644 -5.5867,0.91225 -8.0471,-0.36268 -3.1681,-1.30841 -6.8143,-1.93965 -10.1472,-0.90775 -1.6102,0.92717 -3.1344,2.06228 -4.9609,2.54512 -4.0955,1.27589 -8.4061,0.35996 -12.4922,-0.45887 -0.9748,-0.18323 -1.9432,-0.40382 -2.9249,-0.54825 -2.1757,2.39562 -5.6829,2.96129 -8.7487,2.43421 -4.6231,-0.62493 -8.9465,-2.57456 -13.5764,-3.17 -2.8767,-0.51034 -5.8015,-0.53398 -8.7101,-0.65874 -2.6824,-0.19043 -5.3938,-0.59017 -7.873,-1.68164 -3.1737,2.04978 -7.2533,1.85926 -10.7509,0.83979 -2.8201,-0.8374 -5.5861,-2.44681 -7.1553,-5.00067 -0.4678,-0.83491 -0.7699,-1.79911 -1.5938,-2.37037 -2.5403,1.10374 -5.2353,1.83614 -7.9884,2.15115 -2.0341,0.23068 -4.0982,0.20014 -6.097,0.70201 -3.0896,0.62571 -6.0918,1.60486 -9.1451,2.37731 1.4102,0.0671 2.8203,0.13412 4.2305,0.20117 -7.5028,4.10975 -14.9631,8.29728 -22.4802,12.3799 -5.3625,2.79134 -10.9848,5.03695 -16.6019,7.2541 -6.3222,2.63232 -12.5753,5.44286 -18.6542,8.60038 7.0734,13.33649 14.4314,26.5203 21.8159,39.68633 4.0277,7.18848 8.2296,14.37837 12.4075,21.53214 3.357,5.90027 6.8205,11.86025 8.6652,18.43973 0.8619,3.76187 0.7713,7.65004 0.9807,11.48243 0.447,13.32413 0.3883,26.65934 0.2899,39.9889 -0.1176,9.32105 -0.2737,18.64782 -0.8493,27.95341 -0.399,5.24765 -0.5976,10.60415 -2.2745,15.63832 -0.4238,1.27221 -0.9305,2.51476 -1.4749,3.73968 4.475,-1.61518 9.2261,-2.27747 13.9633,-2.44834 9.4666,-0.39462 18.9282,0.47937 28.335,1.45685 7.9454,0.80665 15.8183,2.22994 23.7862,2.8266 11.9906,0.97289 24.0259,1.15112 36.0455,1.5098 17.6149,0.41336 35.2339,0.81057 52.8316,1.01769 5.0139,0.0483 10.0284,0.0724 15.0423,0.0143 1.0175,-0.017 2.3059,-0.0399 3.4277,-0.0703 0.6422,-0.0249 1.1499,-0.034 1.6869,-0.0636 4.4356,-0.13815 8.7558,-1.26868 13.0241,-2.39346 5.3241,-1.52954 10.5912,-3.51994 15.2378,-6.57938 1.9424,-1.31166 3.6189,-3.10946 4.3846,-5.36107 1.6659,-4.20621 2.2655,-8.72873 2.9774,-13.16881 1.4005,-9.53868 2.7721,-19.14148 4.4434,-28.66706 0.6553,-3.82632 1.3141,-7.6521 1.9275,-11.4854 0.1325,-0.84466 0.3041,-1.9769 0.4516,-2.93202 1.9257,-13.33451 3.4945,-26.7572 3.6558,-40.24376 2e-4,-0.56346 0.01,-1.46702 0.014,-2.16088 0.3102,-12.28117 1.4572,-24.57079 2.6774,-36.75123 0.1906,-2.11158 0.3586,-4.06377 0.5124,-6.19435 0.1806,-2.40777 0.319,-4.88155 0.408,-7.20363 0.2868,-7.29684 0.1668,-14.64226 0.051,-21.88943 -0.2211,-9.63316 -0.4136,-19.26942 -0.8687,-28.89478 0.1748,-0.86902 -0.3249,-0.78116 -0.9798,-0.53266 -3.901,0.79257 -7.9317,0.19565 -11.7647,-0.68168 -2.678,-0.63286 -5.2325,-1.71598 -7.9162,-2.31169 -1.2482,-0.25585 -2.3244,0.62417 -3.5278,0.78642 -2.8475,0.70966 -5.8658,0.40054 -8.5955,-0.62831 -0.6488,-0.323 -1.191,0.38065 -1.7826,0.59286 -3.5815,2.0883 -7.8283,3.06704 -11.955,2.50568 -6.1535,-0.76444 -12.2329,-2.66204 -17.5199,-5.94005 -1.0907,-0.6953 -2.164,-1.41759 -3.2411,-2.13377 -0.151,0.14713 -0.3021,0.29427 -0.4531,0.4414 z" />
- <path
- class="rural area" id="Souk-Ahras"
- d="m 2509.332,576.50195 c -3.0103,0.96912 -5.5051,3.04748 -8.4657,4.14356 -2.0917,0.89375 -4.325,1.44179 -6.5855,1.64608 -3.6589,1.01026 -7.0791,2.71441 -10.4833,4.36295 -5.1215,2.57765 -10.1622,5.34105 -15.443,7.58092 -0.5458,0.40432 -1.1778,0.68985 -1.8447,0.82118 -2.4447,6.68487 -4.2518,13.581 -6.3992,20.36366 -2.814,9.13753 -5.8841,18.2035 -9.5077,27.05471 -1.6138,4.19427 -3.3221,8.41915 -3.9954,12.88745 -0.6476,5.19966 -0.1207,10.44584 -0.03,15.66241 0.3529,10.80113 -0.827,21.64652 -3.5159,32.11428 -3.1125,12.34746 -8.2004,24.07072 -13.5015,35.60947 -3.2318,7.03557 -6.154,14.24913 -8.0194,21.77936 -1.8461,6.93964 -3.3091,14.08178 -5.9236,20.83772 -1.7532,4.29563 -5.8374,7.35189 -10.3019,8.3717 -5.5916,1.44951 -11.4191,1.38336 -17.1531,1.46182 -1.1604,0.0149 -2.4151,0.0195 -3.4491,0.0403 -0.9586,0.0244 -2.0436,0.0381 -2.8608,0.0693 -6.9859,0.18561 -14.0474,1.07153 -20.5764,3.68107 -3.4394,1.36483 -6.8118,2.96012 -9.923,4.97064 -2.3886,1.63729 -4.0173,4.1272 -5.1071,6.76905 -2.3129,5.47414 -3.5209,11.32725 -4.7945,17.10833 -3.0835,15.20877 -5.5064,30.59223 -8.0352,45.86719 -1.6526,10.3074 -3.3072,20.67321 -4.5653,31.08148 -0.1095,0.92759 -0.2209,1.84173 -0.3041,2.66757 -0.2818,2.61593 -0.5294,5.23592 -0.6911,7.86228 -0.036,0.72472 -0.1068,1.74489 -0.1465,2.58898 -0.4289,9.90525 -1.0356,19.8004 -1.7148,29.69161 -1.2799,18.52203 -2.9355,37.0161 -4.8095,55.48694 -0.3657,3.99976 -0.7093,8.16876 -0.9894,12.07036 -0.4046,5.7385 -0.7092,11.484 -0.8808,17.2344 -0.011,0.3958 -0.026,1.2004 -0.039,1.7527 -0.1188,5.1368 -0.04,10.2756 -0.063,15.4133 21.6659,0.311 43.3335,0.5427 64.998,0.918 11.1922,0.2098 22.4154,0.62 33.4916,2.3537 8.8584,1.2898 17.7515,2.5915 26.7213,2.6658 0.3941,-0 1.1784,0.01 1.7227,0.01 2.8268,-0.01 5.8695,-0.1234 8.5547,-0.2891 1.6555,-0.1021 3.52,-0.2581 5.0429,-0.3906 4.7325,-0.423 9.4855,-0.9699 14.1371,-1.5637 2.4977,-0.329 5.2137,-0.6863 7.7405,-1.0324 10.1168,-1.4253 20.2422,-2.7876 30.3917,-3.9581 11.1901,-1.3403 22.4097,-2.4113 33.6289,-3.4759 2.9033,-0.314 5.8724,-0.5602 8.7307,-0.964 0.4615,-5.1173 0.2457,-10.2652 0.5777,-15.3904 0.6101,-13.5025 1.7556,-26.98533 3.5407,-40.38382 1.6989,-11.18903 4.1729,-22.23927 6.4952,-33.31041 1.6192,-7.35257 3.0054,-14.76401 3.7973,-22.25549 0.3609,-3.18727 0.6608,-6.57028 0.8763,-9.60717 0.5621,-7.87636 0.7958,-15.77165 0.9043,-23.66602 0.01,-1.39983 0.026,-3.0373 0.032,-4.5277 0.056,-7.02329 -0.029,-14.19126 -0.1116,-21.12269 -0.1634,-8.97578 -0.3459,-17.95216 -0.7246,-26.92188 -0.061,-1.18787 -0.1255,-2.62881 -0.1914,-3.91428 -0.068,-1.19782 -0.1531,-2.6086 -0.211,-3.67556 -0.1623,-2.5142 -0.3682,-5.23602 -0.5781,-7.61719 -0.212,-2.34301 -0.4536,-4.707 -0.732,-6.96274 -1.7795,-15.12024 -5.6744,-29.87388 -9.5943,-44.55149 -4.3401,-16.27362 -8.2978,-32.64544 -12.2787,-49.00938 -1.9348,-8.00618 -3.8434,-16.02094 -6.0239,-23.96467 -0.16,-0.55492 -0.4534,-1.58799 -0.6055,-2.13476 -1.9697,-6.91986 -4.4042,-13.70929 -7.416,-20.2461 -4.1125,-9.06461 -8.6829,-17.92452 -12.3833,-27.17332 -1.8337,-4.42422 -3.5382,-8.95447 -4.216,-13.7203 -1.4015,-8.58624 -1.3297,-17.34168 -0.7653,-25.9994 0.5362,-7.66532 1.7575,-15.26847 3.4254,-22.76546 0.2529,-1.25854 0.515,-2.51528 0.7615,-3.77511 -2.6964,-0.13665 -5.4232,-1.50147 -6.6978,-3.96086 -0.7407,-1.40857 -1.0436,-2.98962 -1.7026,-4.43644 -0.2951,-0.77867 -0.6243,-1.54402 -0.9942,-2.2902 -0.075,0.0195 -0.1497,0.0391 -0.2246,0.0586 z" />
- <path
- class="rural area" id="Bougie"
- d="m 1701.4121,590.54102 c 0.094,12.30795 0.6287,24.69125 0.5937,37.03749 -0,8.50717 -0.5333,17.00456 -1.3828,25.46688 -0.7052,7.20068 -1.4311,14.40197 -1.8515,21.62649 -0.2344,3.9561 -0.4878,8.09928 -0.5393,12.13473 -0.017,8.0288 -0.5226,16.04952 -1.3955,24.02923 -1.619,15.2409 -4.0553,30.37901 -6.4558,45.51182 -1.315,8.23367 -2.5663,16.54608 -3.9249,24.79837 -1.2816,6.80529 -3.9851,13.5631 -8.9232,18.55126 -2.5715,2.63754 -5.6191,4.78038 -8.8687,6.49998 9.7409,2.68079 19.2084,6.24455 28.6522,9.80978 7.0992,2.73714 14.1897,5.4983 21.2548,8.32163 4.254,1.81574 8.2787,4.11386 12.3621,6.27531 4.7344,2.58154 9.4299,5.23122 14.1508,7.83742 1.456,0.78426 3.0912,1.69621 4.6298,2.50682 7.2017,3.77452 14.3476,7.69472 21.8448,10.86232 6.5709,2.68987 13.3004,4.97019 20.0566,7.14453 0.5374,0.16305 1.4005,0.43689 2.0628,0.64242 9.6089,3.02981 19.3608,5.58724 29.1846,7.81681 0.7613,0.1796 1.5226,0.35921 2.2839,0.53881 4.6467,-4.74257 9.3255,-9.46083 14.3068,-13.85619 10.6478,-9.68513 22.2485,-18.32886 32.2076,-28.76089 4.3068,-4.52529 8.3528,-9.29143 12.3927,-14.05408 5.1653,-6.22218 10.2388,-12.58089 14.3179,-19.58384 3.2809,-5.63272 5.738,-11.74897 7.1251,-18.12352 2.215,-9.68929 2.5575,-19.65866 3.2026,-29.53851 1.13,-14.28198 3.45,-28.44428 6.2369,-42.48818 1.8431,-9.20609 4.0543,-18.34212 6.7858,-27.32611 2.0792,-7.61206 3.8482,-15.35907 4.4381,-23.24438 0.163,-1.68306 -0.1801,-3.3412 -0.6444,-4.94873 -2.1011,-8.49077 -5.471,-16.69276 -6.5234,-25.42322 -0.3141,-2.57988 -0.092,-5.21787 -0.7844,-7.74936 -0.3584,-1.60296 -0.9029,-3.16123 -1.5926,-4.65103 -2.8648,-0.0466 -5.7925,0.0906 -8.4878,1.15837 -2.8981,1.12929 -5.6916,2.57075 -8.7487,3.24754 -1.6039,0.43077 -3.2715,0.5448 -4.9121,0.69666 -1.9486,0.7176 -3.2836,2.42839 -4.9272,3.6258 -2.7285,2.22635 -6.2529,3.44564 -9.7777,3.30288 -2.2093,0.11667 -4.0509,1.63949 -5.1699,3.46094 -2.1982,3.37729 -3.2078,7.32985 -4.5354,11.09085 -1.1631,3.79972 -1.9609,7.70308 -3.0798,11.51266 -0.1903,1.59707 -1.4744,2.97492 -3.0469,3.29883 -3.683,3.85064 -7.7156,7.36022 -11.9082,10.64258 -2.6935,1.9658 -6.0129,3.08749 -9.3601,2.954 -2.1668,-0.0133 -4.3333,0.5044 -6.187,1.64652 -2.8007,1.65178 -6.0276,2.31082 -9.175,2.95914 -6.9135,1.24175 -13.9586,1.57575 -20.9717,1.6174 -3.6173,-0.0224 -7.306,-0.005 -10.785,-1.13806 -4.201,-1.27788 -8.0989,-3.34864 -12.0292,-5.27097 -7.2759,-3.72356 -14.1905,-8.1131 -20.9061,-12.75953 -2.7164,-1.96531 -5.2035,-4.48158 -6.2975,-7.72257 -0.9332,-2.72124 -1.4201,-5.60681 -1.4674,-8.48203 -0.021,-3.08101 0.7343,-6.1601 2.2003,-8.86888 0.236,-0.63708 0.3985,-1.30049 0.5197,-1.96823 -3.1146,-0.0488 -6.5454,-0.33287 -9.0037,-2.46187 -2.0876,-1.73089 -3.1417,-4.34615 -3.7502,-6.91508 -3.9059,-0.65254 -7.6558,-2.0923 -11.1439,-3.94505 -3.0948,-1.71723 -6.0692,-3.81177 -8.3092,-6.58229 -0.832,-1.03494 -1.4353,-2.23375 -2.1953,-3.31055 -1.3837,-0.93266 -3.1467,-0.96042 -4.671,-1.57631 -3.2198,-1.0436 -6.2166,-2.73432 -8.7955,-4.9219 -2.5602,-1.76955 -5.4153,-3.05065 -8.2855,-4.2264 0,0.42383 0,0.84766 0,1.27149 z" />
- <path
- class="area" id="Tunisia"
- d="m 2597.5742,584.81445 c -3.6864,0.14167 -7.4115,0.12326 -11.0488,0.78907 -1.9125,0.84457 -3.3356,2.47953 -5.1628,3.4798 -3.9697,2.43764 -8.6158,3.31747 -13.1473,4.05549 -4.7925,0.79577 -9.8087,1.77659 -14.5843,0.35746 -3.228,-0.9031 -5.8887,-3.0575 -8.2794,-5.32244 -0.9633,-0.76994 -1.8549,-1.91252 -3.207,-1.87277 -2.3467,-0.11828 -4.6993,-0.0747 -7.0489,-0.0862 -2.4425,9.25729 -4.0996,18.72521 -4.9102,28.26563 -0.023,0.37694 -0.088,1.1975 -0.1272,1.74429 -0.1689,2.49336 -0.2698,4.99111 -0.2966,7.49008 0,0.37858 -7e-4,1.23376 0,1.79493 0.099,6.05315 0.4702,12.24012 2.5996,17.96679 1.098,2.82881 2.2598,5.63282 3.4649,8.41797 0.3595,0.80809 0.8245,1.88566 1.228,2.79591 5.0342,11.34861 10.9742,22.32728 14.9246,34.13101 4.1222,12.01886 6.8619,24.44455 9.8148,36.78526 4.0521,17.28314 8.3443,34.51068 12.9856,51.64553 4.1004,15.39153 7.7726,30.9735 9.2411,46.86682 1.6183,16.73687 1.6732,33.56803 1.9724,50.36527 0.2758,19.72652 0.2706,39.54621 -2.4704,59.12414 -2.0566,15.22824 -5.4741,30.22203 -8.5336,45.26825 -1.5891,8.04627 -2.6622,16.1914 -3.2289,24.37328 -0.028,0.4953 -0.089,1.345 -0.1234,1.9088 -0.1456,2.3812 -0.2731,4.7601 -0.3638,7.0743 -0.2396,5.6842 -0.3407,11.4861 -0.4249,17.1028 -0.2002,18.2375 -0.1788,36.4775 0.016,54.7149 0.1187,8.2003 0.306,16.5705 0.7299,24.8268 0.1511,2.9069 0.3509,6.032 0.5773,9.0288 1.1883,15.3063 2.6507,30.6716 1.6614,46.0334 -0.6622,11.7319 -3.191,23.2762 -6.563,34.5065 -3.9428,13.0343 -8.6794,25.8096 -13.3463,38.5967 -11.2893,30.5582 -23.4276,60.8146 -36.8669,90.4947 -4.3957,9.6155 -8.8839,19.2094 -14.1411,28.3906 -5.1974,9.1056 -11.1722,17.7461 -17.5943,26.0271 -9.8142,12.7425 -20.3421,24.9098 -30.7504,37.165 -5.4473,6.4024 -10.8145,12.757 -16.1196,19.254 -1.8598,2.2207 -3.663,4.4983 -5.1014,7.0213 -4.8237,8.1954 -7.5247,17.4174 -9.7233,26.6083 -0.378,1.5762 -0.7507,3.2476 -1.0638,4.7218 -0.2914,1.3611 -0.5302,2.4981 -0.7992,3.864 -0.5003,2.5303 -0.9706,5.0547 -1.4008,7.5318 -1.3298,7.8222 -2.5704,15.6621 -3.6137,23.528 -0.6702,5.2336 -1.1554,10.7208 -1.2129,15.8621 -0.1579,14.4892 1.7947,28.9321 1.2251,43.4237 -0.414,7.2348 -1.8964,14.3584 -3.5394,21.3998 -3.4535,14.1865 -8.935,27.8114 -15.5188,40.8204 -2.2021,4.5892 -4.4498,9.1789 -6.1303,13.9907 -0.4279,1.1786 -0.7123,2.4244 -0.4494,3.6763 0.5955,4.1562 3.4932,7.4656 6.4437,10.2407 6.5734,5.9993 14.4076,10.3346 21.9394,14.9825 6.8819,4.2912 13.8226,8.8581 18.9222,15.2784 5.035,6.3339 7.791,14.0612 10.3603,21.6345 3.4245,10.3574 5.9367,20.9989 7.8272,31.7372 1.1698,6.0699 3.108,11.9997 5.9362,17.5034 4.0106,7.9429 9.17,15.2214 14.1185,22.5926 7.5878,11.0783 15.9436,21.6073 24.6303,31.839 4.5855,5.4808 9.1129,11.0594 12.8078,17.1929 2.0656,3.5838 3.5171,7.478 5.0064,11.3256 2.8115,7.5987 5.0851,15.3942 6.9442,23.2783 0.9318,4.0981 1.7084,8.229 2.5215,12.3516 24.0657,0 48.1315,0 72.1972,0 -3e-4,-282.3895 0,-564.7789 -0.022,-847.1684 -0.034,-112.28201 -0.062,-224.56414 -0.2704,-336.84603 -0.095,-35.2458 -0.1256,-70.49262 -0.5142,-105.73672 -0.01,-0.62266 -0.017,-1.24533 -0.025,-1.86799 -0.7285,0.0989 -1.457,0.19791 -2.1855,0.29687 0,-1.54948 0,-3.09896 0,-4.64844 l -0.1,0.003 z" />
- <path
- class="urban area" id="Algiers"
- d="m 1341.7891,307.6875 c -41.448,0.003 -82.8964,-0.0151 -124.3441,0.0231 -13.0418,0.32407 -25.8699,5.57326 -35.4353,14.43807 -10.4517,9.58385 -17.0108,23.35382 -17.5818,37.54842 -0.1865,4.71149 -0.034,9.42877 -0.082,14.1428 0,47.0032 -0.01,94.00663 0.019,141.00968 0.2495,13.50708 5.8033,26.81061 15.1809,36.52798 9.4036,9.8526 22.5838,16.0647 36.2101,16.76433 4.4782,0.24459 8.9656,0.0604 13.448,0.11621 39.1346,-0.003 78.2694,0.0131 117.4038,-0.023 13.4273,-0.27251 26.6453,-5.78608 36.3294,-15.08378 10.0344,-9.52177 16.3031,-22.95828 16.893,-36.8016 0.1944,-4.57877 0.036,-9.16383 0.086,-13.74541 -0,-47.17012 0.011,-94.3405 -0.02,-141.51045 -0.2436,-13.23178 -5.5794,-26.26813 -14.6144,-35.92953 -9.3875,-10.14115 -22.7255,-16.5713 -36.5436,-17.35399 -2.3135,-0.13875 -4.6322,-0.15085 -6.9491,-0.12283 z m -46.8438,293.16016 c -2.6166,2.13866 -6.159,2.24665 -9.3793,2.35673 -2.2352,0.0628 -4.5153,-0.10061 -6.6988,0.4792 -0.5842,2.71442 -0.9029,5.61208 -2.5527,7.94336 -1.5463,2.40767 -4.3221,3.63088 -7.0489,4.1211 -1.5833,0.30255 -3.1942,0.4033 -4.7968,0.55078 -0.1798,3.89472 -0.6791,8.0585 -3.1368,11.24023 -1.4809,1.77656 -2.6905,3.76647 -3.6855,5.85156 1.6323,1.97568 3.55,3.72432 5.6227,5.22744 0.8108,0.68533 1.8359,-0.0338 2.6853,-0.27517 4.3715,-1.75095 8.619,-3.95347 13.2835,-4.84678 5.8099,-1.28984 11.889,-0.54791 17.5072,1.25139 1.1274,0.31022 2.2417,0.70626 3.411,0.82672 3.7242,-2.70426 6.5061,-6.64431 7.8516,-11.04405 1.2337,-3.84955 1.2123,-7.98289 0.6695,-11.95122 -0.4598,-3.11095 -1.7957,-6.22629 -4.3509,-8.17879 -2.3707,-1.87907 -5.2175,-3.18867 -8.1861,-3.76512 -0.4462,-0.0601 -0.8711,-0.19705 -1.195,0.21262 z" />
- <path
- class="rural area" id="Medea"
- d="m 1350.9727,608.33203 c -0.6418,3.54478 -0.9059,7.32489 -2.9454,10.41765 -2.4147,3.88621 -6.6793,6.10664 -10.9097,7.47734 -4.3642,1.40916 -8.9988,2.08206 -13.5805,1.69486 -1.4505,4.02793 -3.6426,7.7493 -5.998,11.30859 -2.9115,4.25101 -6.5792,8.20992 -11.3241,10.398 -3.7688,1.76903 -8.1169,1.4638 -12.0446,0.43307 -3.9227,-0.98854 -8.0043,-2.3407 -12.0806,-1.45607 -2.1015,0.52242 -3.9479,1.7215 -5.9598,2.49244 -3.2245,1.35781 -6.5075,2.64505 -9.923,3.43139 -2.8709,0.54494 -5.8123,-0.18549 -8.39,-1.46246 -1.4051,-0.60964 -2.8102,-1.21923 -4.2154,-1.82856 0.1069,-0.66654 -0.4407,-0.94413 -0.9121,-1.26172 -2.4302,-1.80601 -4.5133,-4.01303 -6.6016,-6.18945 -0.5343,-0.69104 -1.4428,-0.42289 -2.1891,-0.53198 -1.8366,-0.054 -3.7007,-0.1331 -5.5199,0.1394 -1.8145,0.65981 -3.2799,1.99 -4.8552,3.06675 -8.1112,6.11336 -16.243,12.24485 -24.996,17.42494 -1.3761,0.77933 -2.6696,1.78504 -4.1804,2.26441 -8.7376,-0.28834 -17.4004,-0.73516 -26.1446,-0.85375 -0.4398,0.11882 -1.4129,-0.24576 -1.4933,0.20096 1.4837,14.31145 2.9488,28.74136 5.4734,42.954 1.4788,8.27974 3.4938,16.4732 6.2965,24.40874 2.1943,6.24557 3.9976,12.62399 5.4222,19.08833 2.4805,11.1089 3.8158,22.462 4.1083,33.83812 0.7871,20.10769 1.1651,40.22929 1.7623,60.34318 0.2956,8.86625 0.7062,17.76283 2.2953,26.50809 1.7178,9.55686 3.3923,19.14109 4.1302,28.83305 0.9249,11.35856 0.7345,22.81456 -0.6878,34.12435 -1.4458,12.35689 -2.815,24.88149 -4.071,37.25961 -2.3431,23.20469 -4.4193,46.43939 -5.9193,69.71499 -0.122,2.0032 -0.2581,4.2075 -0.3766,6.2892 -0.4316,7.6365 -0.793,15.279 -0.9066,22.9276 -0.013,1.3785 -0.014,2.9913 -0.014,4.4602 -0,2.5608 -0.01,5.1216 -0.01,7.6824 10.5518,-6.8733 20.8619,-14.1105 31.356,-21.0713 5.2266,-3.4965 10.4589,-6.9854 15.6303,-10.5635 5.0308,-3.5264 10.2297,-7.1584 15.2818,-10.7866 10.0628,-7.3119 20.2695,-14.5279 31.3717,-20.1991 6.3063,-3.3023 13.0188,-5.7342 19.3687,-8.9434 6.3686,-3.2347 12.4456,-7.0293 18.1946,-11.2662 0.271,-0.211 0.9603,-0.7208 1.3916,-1.0463 3.9123,-2.97237 7.7287,-6.08665 11.318,-9.44226 12.7063,-13.11945 24.3815,-27.18353 36.7887,-40.57854 5.2897,-5.64733 10.7103,-11.22502 16.8181,-15.9993 4.9571,-3.80002 10.395,-6.98976 16.1614,-9.39239 3.6733,-1.4921 7.6085,-2.18288 11.5452,-2.49209 4.49,-0.45989 9.0721,-0.62986 13.412,-1.96781 1.6536,-0.66518 2.8928,-2.02963 4.1803,-3.21411 1.358,-1.42178 2.6624,-2.97032 3.4628,-4.7793 0.3213,-1.74244 0.125,-3.53751 0.096,-5.29907 -0.052,-0.98692 -0.1209,-2.16491 -0.1907,-2.99604 -0.1696,-2.30572 -0.4295,-4.60307 -0.7042,-6.89825 -0.049,-0.33202 -0.1591,-1.19007 -0.2316,-1.72371 -1.3941,-10.46868 -3.6372,-20.79732 -5.3215,-31.2193 -1.7862,-11.14715 -3.3785,-22.38459 -3.3578,-33.698 0.04,-4.25334 0.13,-8.5757 1.4056,-12.67271 1.6188,-5.6067 4.7744,-10.58413 7.7573,-15.54225 2.3663,-3.92237 4.942,-7.73043 7.0512,-11.80143 2.3235,-4.96177 2.4786,-10.54179 2.8323,-15.91136 0.2983,-5.58718 0.3493,-11.29659 0.4602,-16.81796 0.1548,-14.56187 0.4408,-29.12357 0.4005,-43.68666 -0.069,-4.37534 0,-8.7785 -0.6173,-13.11998 -0.3783,-2.58697 -1.8377,-4.81114 -2.9166,-7.14156 -1.138,-2.23117 -2.3402,-4.48847 -3.5133,-6.60408 -4.2152,-7.53829 -8.6514,-14.95013 -12.8647,-22.48924 -6.1504,-10.76773 -12.121,-21.63736 -18.2329,-32.42678 -1.3773,-2.38068 -2.7289,-4.7796 -4.244,-7.07662 -3.7434,0.67181 -7.5804,0.18709 -11.3011,-0.4086 -5.688,-0.96376 -11.1641,-2.82854 -16.6051,-4.6951 -4.7167,-1.46943 -9.6467,-2.93089 -14.6382,-3.5036 -3.4013,-0.43845 -6.7995,-1.54063 -9.4659,-3.76426 -1.8445,-1.40724 -3.4052,-3.15337 -5.2904,-4.5093 l -0.022,0.0976 z" />
- <path
- class="rural area" id="Orleansville"
- d="m 1147.2051,649.39453 c -3.566,0.15697 -7.2248,0.31368 -10.5682,1.69499 -5.1852,1.67495 -10.3241,3.48808 -15.4689,5.28353 0.2936,-0.54504 0.8643,-1.31925 -0.1334,-0.79647 -4.0565,1.24951 -8.0085,2.80081 -11.9592,4.34332 -8.8807,3.25715 -18.1865,5.27141 -27.5604,6.44999 -4.702,0.53361 -9.4585,0.90122 -14.1864,0.52993 -4.1818,-0.3897 -8.1217,-1.92497 -12.1115,-3.12175 -1.9114,-0.54802 -3.9145,-0.49656 -5.8633,-0.20986 -3.8282,0.47337 -7.6561,0.98234 -11.5155,1.11382 -11.1746,0.64782 -22.3724,0.46674 -33.5592,0.61659 -4.2272,0.0724 -8.55578,0.26264 -12.53476,1.83734 -4.81938,1.7022 -9.91117,3.30067 -15.08479,2.61668 -4.18259,-0.42928 -8.40018,0.0131 -12.50582,0.84119 -4.627,0.74747 -9.41914,0.38368 -13.87001,-1.0918 -4.48563,-1.36211 -8.63872,-3.57875 -12.98294,-5.30086 -2.76657,-1.00409 -5.73828,-1.05163 -8.64414,-0.98633 -0.72843,-0.22722 -1.01006,0.47785 -1.41034,0.93535 -2.80011,3.48452 -5.60126,6.96819 -8.4006,10.45333 -3.54575,-0.26827 -7.09295,-0.5179 -10.63672,-0.81055 -0.0382,3.25391 0.18263,6.53823 1.13485,9.6676 1.61632,5.87328 3.93552,11.52529 5.73355,17.33795 2.11203,6.31124 4.00046,12.69462 6.04876,19.02582 2.28043,6.75493 4.94688,13.3845 8.12966,19.76651 3.26603,6.98967 6.14334,14.15337 8.79705,21.39547 4.77493,12.3935 10.12481,24.55296 15.19905,36.82401 3.49418,8.50637 6.88328,17.07001 9.56424,25.87301 0.52435,1.7318 1.16112,3.44661 1.57501,5.20194 1.16836,25.08901 2.50769,50.17128 3.41797,75.27135 0.2486,7.88994 0.44451,15.85575 -0.98889,23.65588 -0.87609,5.90388 -2.03216,11.90087 -1.25135,17.88188 0.88148,5.52099 3.3769,10.59206 4.88789,15.94258 3.64015,11.90072 5.48835,24.24107 7.44893,36.50134 2.2604,14.81089 4.38112,29.64479 6.35907,44.49609 0.93462,7.8597 1.78426,15.7478 1.94183,23.6668 0.003,1.2401 0.01,2.4802 0.0102,3.7203 5.1929,-0.3623 10.4116,-0.1076 15.5637,0.6107 11.5885,1.5632 22.8346,5.0995 33.6011,9.5949 9.3768,4.001 18.4158,8.8644 28.1944,11.866 4.1819,1.2856 8.4135,2.4182 12.6726,3.4182 5.0745,1.1966 10.3146,1.2776 15.4987,1.4824 12.5734,0.3681 25.1148,0.4176 37.7089,0.5796 9.7546,0.07 19.5147,0.197 29.2645,-0.1905 0.3152,-0.014 1.0494,-0.048 1.5375,-0.076 0.6761,-0.04 1.1084,-0.062 1.6936,-0.111 4.7107,-0.3116 9.4128,-1.1277 13.8336,-2.8234 0.9526,-0.3433 1.7478,-0.6394 2.6931,-0.9932 -0.011,-11.7211 -0.067,-23.4487 0.4643,-35.1597 0.426,-11.7204 1.3221,-23.4174 2.4128,-35.0922 2.3515,-26.3745 4.8947,-52.73245 7.6791,-79.06435 0.5508,-4.81762 1.2043,-9.63106 1.3522,-14.48443 0.217,-4.13458 0.3034,-8.25153 0.3748,-12.41611 -0,-0.38737 0.01,-1.20071 0.01,-1.75115 0.014,-3.19216 -0.01,-6.59288 -0.041,-9.6551 -0.068,-6.33575 -0.5751,-12.66751 -1.6465,-18.91473 -1.2117,-7.321 -2.6544,-14.60971 -3.4589,-21.99165 -2.6086,-21.5045 -2.8231,-43.19983 -2.8638,-64.83382 -0.016,-1.51095 -0.017,-2.95612 -0.045,-4.39909 -0.2459,-14.30986 -0.8517,-28.75588 -4.2984,-42.70893 -1.2811,-5.28746 -3.0003,-10.45308 -4.8095,-15.57923 -3.9159,-11.75175 -6.5124,-23.90758 -8.3849,-36.13966 -1.4952,-11.33306 -2.626,-22.71086 -3.7386,-34.08622 -0.3769,-3.62273 -0.5993,-7.26022 -0.8169,-10.89355 -0.3569,-2.27722 -1.3291,-4.73793 -3.4202,-5.9336 -1.8783,-0.6782 -3.9195,-0.66941 -5.8884,-0.84179 -1.3835,-0.0549 -2.768,-0.0651 -4.1523,-0.0391 z" />
- <path
- class="rural area" id="Mostaganem"
- d="m 892.39258,673.16992 c -1.49113,0.96956 -2.8414,2.19435 -4.5464,2.79777 -4.4032,1.80543 -9.23828,0.96361 -13.85009,1.41537 -1.91229,0.13767 -3.75627,0.72865 -5.43689,1.63891 -5.70765,2.63755 -11.95109,3.72511 -17.8539,5.81427 -3.72648,1.28209 -7.51557,2.49875 -10.98065,4.40442 -3.16973,1.70337 -4.86459,5.04497 -6.51994,8.07651 -2.14524,3.67332 -3.51356,7.84974 -6.3844,11.06174 -2.49815,2.65071 -6.22388,3.60864 -9.74782,3.81716 -2.84545,0.30937 -5.78053,0.14552 -8.54319,0.97971 -2.29447,1.10073 -4.1125,2.9421 -6.10127,4.49092 -2.21227,1.84946 -4.42533,3.69798 -6.63701,5.54814 -7.45704,0 -14.91407,0 -22.3711,0 -6.5421,4.84877 -12.90972,10.10988 -20.3977,13.46503 -2.99194,1.39871 -6.18472,2.3096 -9.13527,3.80462 -3.09575,1.44639 -6.00092,3.2651 -8.72156,5.32723 -6.15803,4.33187 -13.04355,7.96887 -20.56157,9.12193 -2.37221,0.36449 -4.78267,0.19888 -7.16238,0.41594 -1.46337,0.16363 -2.45167,1.37613 -3.55076,2.22301 -1.19512,1.00741 -2.28278,2.30789 -2.42388,3.9274 -0.71539,3.66443 -1.28369,7.59593 -3.66211,10.61523 -1.9436,2.41221 -4.90989,3.64087 -7.82373,4.42674 -5.69414,1.79558 -11.57037,3.34785 -16.72705,6.45217 -0.90098,0.6519 -1.98205,1.34656 -2.28907,2.48047 0.0523,1.03512 0.23484,2.314 0.38086,3.17187 0.71134,4.01851 1.59857,7.87834 2.46849,11.86665 3.36418,15.20501 6.78331,30.40694 9.46981,45.75032 1.79337,10.06901 2.89765,20.24227 4.50909,30.33988 1.55621,10.34209 3.32497,20.56258 5.19439,30.85331 1.6961,9.53424 3.43342,19.06908 4.64573,28.67946 0.61439,5.21953 0.85936,10.47147 1.16367,15.71546 0.0506,0.69861 0.0883,1.38759 0.14603,2.09852 0.0817,1.05477 0.16897,2.30318 0.24629,3.22378 0.16715,1.95953 0.32858,3.76814 0.53407,5.74686 0.69655,6.8917 1.61145,13.76086 2.75329,20.59295 0.073,0.39625 0.2051,1.18304 0.30071,1.72878 0.19737,1.12367 0.37525,2.21256 0.56829,3.24949 0.42847,2.35911 0.88468,4.71374 1.36187,6.99078 0.41566,1.99283 0.80947,3.81221 1.27523,5.80178 0.31031,1.3362 0.63053,2.6606 0.98095,4.0532 1.08905,4.3506 2.26145,8.6915 3.94506,12.856 2.18735,5.7456 4.76287,11.3565 7.38702,16.8937 3.62214,7.6759 7.16012,15.391 10.58126,23.1587 0.86848,1.9245 1.82793,4.023 2.78854,5.988 3.57004,7.4185 7.56595,14.6198 11.46281,21.869 3.1193,5.8619 5.86184,11.9775 7.41864,18.4551 1.32985,5.2286 2.11053,10.62 4.13162,15.652 4.17119,10.9878 10.73486,20.8811 17.91697,30.1141 3.22941,4.1541 6.75674,8.0611 10.13885,12.0878 5.78847,7.2216 9.83339,15.6049 14.06645,23.7794 3.51889,6.9301 7.03679,13.8622 10.73823,20.6972 4.15692,-2.747 8.30247,-5.5328 12.75,-7.7969 12.42132,-6.5324 25.76225,-11.1976 39.37118,-14.5455 7.71188,-1.81 15.51586,-3.1954 23.22984,-4.9982 12.7932,-2.8549 25.56692,-5.9651 38.60831,-7.4801 9.36866,-1.187 18.82507,-1.3375 28.25629,-1.2848 1.58959,0 3.17917,0.01 4.76876,0.012 -1.24775,-5.1103 -1.00377,-10.4156 -1.04297,-15.6328 0.0815,-8.1405 0.87539,-16.2981 2.82189,-24.215 2.05537,-8.6893 5.24132,-17.0462 8.24993,-25.4356 2.04174,-5.9129 3.72124,-11.9758 4.5688,-18.1834 0.12388,-0.9778 0.30807,-2.225 0.41283,-3.3122 0.53266,-4.7946 0.74043,-9.617 0.96022,-14.4339 0.0593,-1.4028 0.11242,-3.0417 0.14412,-4.5366 0.14238,-9.2653 -1.37412,-18.4385 -2.60115,-27.5923 -2.36032,-16.5535 -4.67303,-33.274 -7.50604,-49.81579 -1.68026,-9.72766 -3.63875,-19.46377 -7.0883,-28.74067 -2.50334,-6.46017 -3.96427,-13.40368 -3.55101,-20.35393 0.21753,-5.48641 1.39562,-10.86558 2.19867,-16.28009 0.45512,-3.73937 0.41194,-7.51417 0.39785,-11.27434 -0.004,-0.40429 -0.019,-1.20052 -0.0272,-1.75484 -0.0851,-4.05571 -0.19739,-8.11071 -0.33218,-12.16508 -0.58959,-16.70364 -1.25578,-33.57566 -2.26948,-50.32507 -0.36307,-5.11036 -0.63761,-10.23681 -1.34521,-15.31365 -0.64465,-4.12646 -1.95803,-8.10888 -3.26227,-12.06441 -0.13436,-0.39563 -0.39945,-1.15025 -0.58398,-1.68359 -4.55482,-12.66823 -10.50981,-24.76503 -15.54573,-37.23885 -3.24976,-7.79082 -6.08661,-15.74454 -9.28491,-23.55574 -1.86965,-4.52763 -3.83227,-9.01612 -5.88616,-13.46322 -0.57558,-1.24659 -1.27158,-2.69507 -1.86403,-4.03366 -3.36567,-7.69432 -6.13588,-15.63645 -8.49566,-23.69289 -2.35658,-7.7885 -4.91453,-15.51402 -7.59971,-23.19481 -1.82315,-5.38586 -3.2709,-10.99262 -3.18785,-16.71988 -0.0227,-0.9417 -0.0188,-1.88362 -0.0227,-2.82556 -0.12956,0.071 -0.25911,0.14193 -0.38867,0.21289 z" />
- <path
- class="rural area" id="Sidi-Bel-Abbes"
- d="m 657.38672,800.83203 c -1.99217,5.76885 -5.22311,11.00288 -8.75724,15.94315 -2.71421,3.68173 -5.21327,7.52086 -7.41761,11.53023 -1.50649,2.58749 -2.70681,5.32884 -3.94328,8.05015 -2.67924,5.67651 -5.68425,11.21645 -9.19316,16.42555 -2.75025,4.06009 -6.07096,7.74068 -9.9475,10.75464 -5.07097,4.08978 -10.40993,7.89703 -16.17976,10.94152 -2.97089,1.50294 -6.1332,2.66488 -9.39736,3.32932 -2.63036,0.49746 -5.35284,0.19606 -7.87213,-0.67449 -3.32945,-0.97905 -6.74233,-1.90571 -10.23596,-1.91767 -0.42755,0.16156 -0.51164,0.8314 -0.79599,1.20245 -2.56649,5.10841 -5.72117,10.17334 -10.50227,13.48559 -4.50135,3.24855 -10.16881,4.32661 -15.62491,4.33081 -2.85042,0.31887 -5.65884,0.94586 -8.44728,1.60852 -0.44247,0.10611 -1.24111,0.30809 -1.82154,0.45038 -6.86044,1.66366 -13.60765,3.75533 -20.2867,6.03202 -6.82447,2.1416 -14.29695,2.65303 -21.20114,0.56604 -5.02085,-1.41174 -9.52533,-4.11881 -13.95026,-6.80113 -2.95638,-1.76166 -5.93492,-3.57797 -9.27189,-4.52788 -6.27022,-2.01466 -12.73054,-3.4434 -19.27512,-4.19209 -4.01642,-0.61864 -7.95898,-2.38397 -10.66723,-5.48187 -1.71713,-1.82473 -2.94725,-4.02102 -4.34058,-6.08454 -0.75261,0.3029 -1.58761,0.62911 -2.16316,1.18185 -1.86867,5.08253 -3.71317,10.17386 -5.55168,15.26737 -3.09582,-0.12053 -6.19565,0.0654 -9.28909,-0.0983 -3.78428,-0.15053 -7.35124,-1.71362 -10.44548,-3.81951 -0.46814,-0.25073 -1.04288,-0.69923 -1.58313,-0.5377 -2.26679,1.70247 -3.30377,4.45527 -4.70641,6.8222 -0.94846,1.72472 -1.89694,3.44943 -2.84503,5.17436 -3.14243,-0.28126 -6.24912,-0.88246 -9.39684,-1.09663 -0.86652,-0.13769 -1.85801,0.0336 -2.33165,0.85636 -2.25685,2.8374 -3.27156,6.45162 -5.5824,9.2594 -1.76866,2.41414 -4.63721,3.76529 -7.53913,4.21224 -0.86745,0.28557 -1.93323,0.18532 -2.54509,0.97261 -3.32578,3.14748 -5.62255,7.2551 -9.21622,10.14367 -2.7517,2.33877 -6.45974,3.19778 -10.00573,3.07575 -0.21291,0.25752 0.0658,0.9762 -0.0216,1.41058 -0.36571,5.4424 -2.36906,10.60481 -4.47657,15.58008 -1.10096,2.484 -2.33378,4.90571 -3.53125,7.34375 5.35989,9.02504 11.17463,17.85754 15.21271,27.58646 2.77386,6.58901 4.59476,13.56374 5.45826,20.65865 0.65662,5.29531 1.13741,10.61111 1.82552,15.90271 1.15254,10.2228 2.88061,20.3759 3.77902,30.6275 0.59274,6.0669 0.94991,12.1578 0.96818,18.2544 0.34935,10.8153 1.51967,21.5986 3.33639,32.2633 0.0993,0.5203 0.24021,1.3113 0.35547,1.9355 0.0679,0.3586 0.2325,1.178 0.33742,1.7131 0.75424,3.8033 1.88063,7.5437 3.40008,11.0783 3.74397,9.0841 8.38467,17.7647 13.13851,26.3521 5.96869,10.6569 12.26853,21.1223 18.34708,31.716 4.44124,7.6815 8.79392,15.4149 13.33746,23.037 0.51451,0.8621 1.13171,1.8948 1.66841,2.7719 2.09493,3.4619 4.27597,7.0118 6.68571,10.3513 4.18383,6.0564 8.10507,12.294 12.06081,18.5049 4.8537,7.7877 9.93173,15.4439 14.36495,23.4849 3.68051,6.597 7.19463,13.2862 10.59121,20.0335 4.55605,9.0139 9.36875,18.0423 14.7149,26.6713 5.84432,9.5237 12.2955,18.6622 19.07807,27.5376 3.90226,0.1445 7.80601,-0.2071 11.69994,-0.4444 10.38611,-0.7536 20.83354,-1.6895 31.30184,-2.5937 14.85051,-1.0979 29.41655,-4.9 43.21753,-10.4164 7.68079,-3.0581 15.10382,-6.7399 22.24097,-10.9087 6.43205,-3.6859 13.03764,-7.0639 19.71055,-10.2904 4.24159,-2.0213 8.61494,-3.8137 12.56627,-6.3885 5.04184,-3.1561 9.46484,-7.1705 13.96492,-11.0317 5.76809,-5.0868 11.52638,-10.2221 17.60487,-14.9593 10.97705,-8.6992 22.42434,-16.859 34.59713,-23.8093 7.08003,-4.007 14.63463,-7.3417 22.65734,-8.8941 9.29595,-1.9383 18.75836,-2.8814 28.1795,-3.9813 10.11976,-1.1391 20.26368,-2.1997 30.27867,-4.0829 -6.11471,-11.9927 -11.9329,-24.1528 -18.71281,-35.7919 -1.26029,-2.1428 -2.5635,-4.2692 -4.21665,-6.137 -6.08152,-7.4291 -12.26734,-14.7972 -17.65841,-22.7551 -3.89043,-5.6646 -7.73102,-11.4093 -10.70705,-17.6188 -4.12298,-9.093 -5.26636,-19.1384 -8.52887,-28.5202 -1.31086,-3.9492 -3.16427,-7.6842 -5.13129,-11.3411 -0.28224,-0.5287 -0.72912,-1.3493 -1.07451,-1.9899 -1.11225,-2.023 -2.32539,-4.2203 -3.4626,-6.3187 -4.47844,-8.4071 -8.56726,-17.0225 -12.38593,-25.7522 -3.99364,-8.8877 -8.22236,-17.8159 -12.19411,-26.7922 -4.30845,-9.9139 -7.49014,-20.2986 -9.6703,-30.8816 -3.23681,-15.14216 -5.44699,-30.5101 -6.42492,-45.96627 -0.25706,-4.10384 -0.45991,-8.21402 -0.94778,-12.29912 -0.1382,-1.17087 -0.29313,-2.59569 -0.458,-3.86195 -0.25387,-2.06131 -0.5139,-3.98571 -0.79591,-6.02282 -0.15994,-1.12592 -0.36394,-2.50713 -0.54082,-3.73117 -0.2925,-2.01617 -0.62215,-4.09693 -0.93574,-6.17703 -0.0876,-0.55338 -0.23725,-1.44775 -0.34864,-2.13187 -1.80493,-11.02044 -3.87646,-21.99521 -5.62894,-33.02435 -1.51301,-9.25299 -2.89526,-18.52757 -4.1119,-27.82433 -2.01374,-14.96839 -5.45602,-29.68957 -8.6519,-44.43631 -1.10723,-5.06795 -2.22134,-10.13464 -3.32893,-15.20228 -0.13477,0.39257 -0.26954,0.78515 -0.4043,1.17773 z" />
- <path
- class="rural area" id="Bordj-Bou-Arreridj"
- d="m 1477.5684,807.74414 c -3.1231,-0.0364 -6.2509,0.41474 -9.1935,1.47896 -6.2301,2.04362 -12.1855,4.95963 -17.6043,8.65031 -1.4266,1.02252 -2.9257,2.06868 -3.9249,3.53284 -0.681,2.44673 -0.6988,5.0222 -0.7673,7.54529 -0.022,1.61761 0.02,3.42542 0.088,4.9176 0.1404,3.16844 0.3969,6.33033 0.707,9.48633 0.04,0.4093 0.1261,1.19402 0.1837,1.74702 0.2461,2.22961 0.5383,4.69717 0.8557,7.02955 1.3922,10.63223 3.4055,21.16828 5.3735,31.70481 1.528,8.92885 2.921,17.94893 2.775,27.03293 -0.057,3.63985 -0.6852,7.39669 -2.7073,10.49597 -3.9633,6.75548 -10.4812,12.13084 -18.1216,14.10888 -4.788,1.34803 -9.7829,1.52583 -14.6926,2.1218 -5.8254,0.79149 -11.4738,2.91142 -16.3034,6.27823 -3.8726,2.60271 -7.3955,5.68777 -10.736,8.93589 -0.3777,0.36867 -0.9987,0.97085 -1.4625,1.44572 -0.636,0.64847 -1.4371,1.44803 -1.9573,1.98951 -2.2147,2.27355 -4.3618,4.61135 -6.4884,6.96711 -0.7129,0.80628 -1.6077,1.7975 -2.3881,2.67988 -3.6991,4.1749 -7.357,8.38583 -11.1041,12.51739 7.6119,2.64466 15.3318,4.96005 23.0108,7.39716 6.3667,2.11825 12.5101,4.94222 18.142,8.60258 5.54,3.54996 10.8366,7.4657 16.4155,10.9573 11.0671,7.1512 22.3266,14.013 33.8673,20.375 0.2839,0.1544 1.0066,0.5335 1.4589,0.7754 5.9752,3.0466 12.122,5.736 18.1946,8.5793 6.7282,3.0402 13.4672,6.1105 20.4808,8.4434 5.318,1.6891 10.7866,2.9157 16.311,3.6885 2.8039,0.2994 5.602,-0.3783 8.1729,-1.464 1.4652,-0.5617 2.8955,-1.208 4.329,-1.8449 0.2831,-0.138 1.0884,-0.5067 1.5718,-0.7332 5.2223,-2.5181 10.5256,-4.8718 15.9567,-6.9047 6.4331,-2.3942 13.0799,-4.412 19.9323,-5.1087 9.515,-0.8689 19.1207,1.1792 27.8816,4.845 10.3763,4.3973 19.7727,11.3695 26.4754,20.4775 3.5923,5.0137 5.9004,10.8998 6.9068,16.973 6.0531,-8.4394 12.361,-16.691 18.7647,-24.8665 9.1358,-11.6935 18.3929,-23.293 27.7671,-34.7958 11.763,-13.97553 24.7013,-26.91911 38.1136,-39.30371 9.1592,-8.44944 18.9191,-16.27555 27.4363,-25.39985 1.777,-2.16701 3.5456,-4.345 5.561,-6.29893 5.7189,-5.89944 12.1525,-11.03401 18.1134,-16.67742 6.3825,-5.92688 12.5988,-12.05024 18.7391,-18.16743 8.9381,-8.79805 17.9832,-17.48688 27.1723,-26.02295 0.439,-0.4286 0.8857,-0.84935 1.3189,-1.28387 -1.8769,-0.51509 -3.7023,-0.98674 -5.6307,-1.49015 -9.4179,-2.38999 -18.8258,-4.87384 -27.9914,-8.11918 -12.8575,-4.48243 -25.1943,-10.34128 -37.1029,-16.91954 -6.7404,-3.69778 -13.3522,-7.63107 -20.2125,-11.10785 -5.8529,-2.97956 -11.7694,-5.87608 -17.9587,-8.09717 -6.7849,-2.5074 -13.4825,-5.23939 -20.2264,-7.85277 -3.1786,-1.22653 -6.4385,-2.22046 -9.6899,-3.2317 -0.5738,-0.17569 -1.4687,-0.44189 -2.1656,-0.65229 -5.5026,-1.65815 -11.0497,-3.16686 -16.6274,-4.55083 -0.4364,-0.10052 -1.2323,-0.29555 -1.8064,-0.43227 -3.9699,-0.91205 -7.9289,-1.94261 -11.9749,-2.46031 -3.6115,-0.19655 -7.1991,-0.27493 -10.7855,-0.40675 -26.0792,-0.83026 -52.1717,-1.14849 -78.2526,-1.9179 -11.0534,-0.3673 -22.123,-0.72182 -33.1163,-2.00772 -6.8216,-0.8155 -13.6183,-1.84297 -20.4597,-2.49376 -2.3795,-0.2367 -4.7616,-0.44354 -7.1456,-0.62895 -0.3947,-0.0298 -1.1979,-0.0821 -1.749,-0.12049 -3.9035,-0.27174 -7.8156,-0.45389 -11.7295,-0.41857 z" />
- <path
- class="urban area" id="Oran"
- d="m 581.72852,545.6875 c -41.44799,0.003 -82.89629,-0.015 -124.34408,0.023 -13.03036,0.32569 -25.85009,5.562 -35.41146,14.41643 -10.25438,9.39181 -16.7696,22.80619 -17.56225,36.71088 -0.25921,4.82951 -0.0691,9.66853 -0.12577,14.50238 0.002,47.16973 -0.0126,94.33972 0.02,141.50928 0.24673,13.46578 5.76976,26.72799 15.09383,36.43849 9.32406,9.81115 22.38324,16.03585 35.91732,16.83387 4.93696,0.27677 9.88465,0.0772 14.82644,0.13618 38.80149,-0.003 77.60326,0.013 116.40458,-0.023 13.39916,-0.27216 26.59104,-5.76219 36.26849,-15.02671 10.1729,-9.61863 16.48467,-23.26097 16.97113,-37.27543 0.16209,-4.74205 0.0244,-9.48884 0.0689,-14.23295 -0.003,-46.86816 0.0134,-93.73659 -0.0208,-140.60459 -0.24699,-13.59294 -5.87763,-26.97672 -15.3569,-36.71306 -9.52345,-9.89075 -22.87474,-16.05252 -36.61672,-16.61194 -2.04233,-0.10621 -4.08835,-0.10499 -6.13277,-0.0829 z m -43.4629,292.53516 c -2.89218,0.0997 -5.26469,1.9882 -7.65133,3.40716 -3.55145,2.2911 -7.73522,3.69258 -11.98871,3.58028 -0.83549,0.0125 -1.67211,0.0529 -2.50058,0.1649 -1.54069,4.31811 -2.5862,8.79171 -4.04094,13.13817 -1.74393,5.54574 -3.83207,10.9742 -5.79109,16.44581 -3.61223,-0.41813 -7.24442,-0.85967 -10.79464,-1.24607 -0.54097,0.0561 -1.18935,-0.36198 -1.50393,0.0273 -1.38291,3.07287 -2.90327,6.13129 -4.08424,9.26564 3.8787,2.55219 8.06559,4.95606 12.73178,5.62141 5.01861,0.61095 9.91236,-1.11252 14.60231,-2.67308 7.14466,-2.39043 14.42622,-4.39478 21.81044,-5.89755 3.69837,-0.76746 7.44481,-1.25834 11.18431,-1.76591 1.43681,-0.25817 2.92747,-0.46512 4.28235,-0.99071 1.92518,-1.89033 3.43254,-4.1763 4.70521,-6.54416 -2.59153,-2.43211 -5.8314,-4.20393 -7.89844,-7.17188 -2.28266,-3.08032 -2.77778,-7.03182 -3.11606,-10.71333 -0.16155,-1.188 -0.21555,-2.43843 -0.65737,-3.5562 -1.22932,-1.19227 -2.76293,-2.0331 -3.97266,-3.25781 -2.23846,-2.1151 -3.89506,-4.85176 -4.67187,-7.83594 -0.21485,6.5e-4 -0.42969,0.001 -0.64454,0.002 z" />
- <path
- class="urban area" id="Constantine"
- d="m 2219.7344,270.71484 c -41.4487,0.003 -82.8976,-0.015 -124.3461,0.023 -12.9518,0.3267 -25.6988,5.49672 -35.2389,14.25972 -8.7021,7.92808 -14.7977,18.71657 -16.9209,30.30907 -0.2658,1.31675 -0.4798,2.79764 -0.623,4.19141 -0.039,0.33626 -0.1064,1.14767 -0.1397,1.66519 -0.3441,4.99543 -0.1139,10.00645 -0.1787,15.00903 0.01,47.23431 -0.012,94.46888 0.021,141.70302 0.2478,13.52661 5.8199,26.84883 15.2202,36.57089 8.0925,8.44538 18.9462,14.23493 30.5033,16.1046 1.4776,0.2635 3.1918,0.45689 4.7735,0.57031 5.3063,0.31939 10.6254,0.10225 15.9375,0.1643 38.6028,-0.003 77.2059,0.0131 115.8085,-0.023 13.4433,-0.27041 26.6756,-5.79933 36.3628,-15.11587 8.3133,-7.92154 14.0719,-18.51052 16.0787,-29.82623 0.1492,-0.81444 0.3301,-1.91497 0.439,-2.84965 0.6942,-5.75439 0.3431,-11.56017 0.4262,-17.3398 -0,-47.33587 0.011,-94.67201 -0.02,-142.00771 -0.2445,-13.50961 -5.8052,-26.81394 -15.1836,-36.53245 -7.9189,-8.27969 -18.4883,-14.01804 -29.781,-16.01062 -1.1147,-0.21044 -2.4827,-0.41762 -3.7085,-0.53348 -3.1308,-0.33375 -6.2845,-0.36935 -9.4301,-0.33176 z m -56.1602,597.92383 c -4.4393,0.04 -8.9844,0.43674 -13.0819,2.27867 -4.4096,1.83543 -8.6834,4.23763 -12.0809,7.63644 -2.4525,2.6156 -3.778,6.12918 -4.013,9.6806 -0.4665,4.22402 -0.2156,8.76629 2.0805,12.46774 2.8835,4.6929 7.7986,7.62449 12.7184,9.79788 2.2605,1.03027 4.7041,1.59506 7.1817,1.72531 5.4764,0.34844 10.9748,0.62482 16.4608,0.33914 0.2506,-0.0175 1.094,-0.0659 1.582,-0.11589 4.3769,-0.3201 8.7442,-1.339 12.6223,-3.44213 2.7276,-1.50301 5.3912,-3.28973 7.3835,-5.71499 1.958,-2.41641 2.8623,-5.49621 3.0905,-8.5589 0.2956,-3.25517 0.3287,-6.66296 -0.9933,-9.71977 -1.5703,-3.90597 -4.5244,-7.05117 -7.5916,-9.84628 -2.2619,-1.92713 -4.7149,-3.74511 -7.5225,-4.78316 -3.0819,-0.95405 -6.3301,-1.17423 -9.5246,-1.48313 -2.7646,-0.21663 -5.5393,-0.29257 -8.3119,-0.26153 z" />
- <path
- class="rural area" id="Tlemcen"
- d="m 339.37695,969.55469 c -2.98029,6.45212 -6.18827,12.80392 -9.68418,18.99242 -1.50522,2.71518 -3.28786,5.25596 -5.13488,7.74638 -3.75555,5.20181 -7.52342,10.39651 -11.28445,15.59521 0,-4.1114 0,-8.2227 0,-12.33401 -2.61007,2.57181 -5.40157,5.11781 -8.88644,6.42861 -5.59262,2.2758 -11.74216,1.9754 -17.65848,2.1827 -1.89621,0.088 -3.92375,0.2836 -5.45406,1.5287 -3.59373,2.387 -7.6571,3.924 -11.56649,5.7032 -4.20741,1.7562 -7.92615,4.5075 -11.14098,7.7131 -2.89264,2.629 -6.07306,4.9419 -9.49492,6.8309 -3.0994,2.097 -5.55328,4.9542 -8.05885,7.6936 -2.59075,2.6646 -5.84156,4.7276 -9.45472,5.6659 -3.10264,1.1591 -5.53147,3.4815 -7.9681,5.6339 -4.09171,3.4411 -8.24556,6.8596 -12.83063,9.6292 -3.69791,2.0417 -7.98134,2.4246 -12.11524,2.707 -2.51985,0.2135 -5.09258,0.2466 -7.54492,0.9062 -1.6738,0.94 -2.8643,2.5218 -4.42551,3.6241 -2.73869,2.2573 -6.27237,3.508 -9.82494,3.4246 -4.43055,0.291 -8.6738,1.716 -12.89408,2.9924 -2.91534,0.8607 -6.06278,1.1088 -9.00934,0.2477 -2.47534,-0.6599 -4.91957,-1.4802 -7.48036,-1.7499 -3.87384,-0.5731 -7.79717,-0.4692 -11.69823,-0.5932 -3.54763,-0.1651 -7.04718,-1.1866 -10.08746,-3.0316 -0.76728,-0.4299 -1.52871,-0.8699 -2.29102,-1.3086 -0.0483,1.8953 -0.0917,4.0114 -0.12305,5.7715 -0.0713,7.3104 -0.0579,14.6215 0.0313,21.9316 0.0203,1.1969 0.0463,2.6442 0.0741,3.9393 0.26792,14.9497 1.32995,29.8851 3.24947,44.7142 0.37552,2.9693 0.76127,5.9157 1.17863,8.8224 1.16333,8.2577 2.41224,16.4257 3.77982,24.6716 2.74165,16.464 5.98001,32.9749 9.32985,49.3786 0.53225,2.6493 1.06368,5.1545 1.6264,7.8124 1.31247,6.2655 2.67114,12.5212 4.09183,18.7631 0.44743,1.895 0.92066,3.993 1.3984,5.9626 3.11926,12.916 7.12131,25.6508 9.11143,38.8156 1.69075,11.7235 1.65779,23.5942 2.27087,35.4006 0.25648,5.4244 0.57144,10.8476 1.08063,16.2548 0.0427,0.3832 0.13122,1.3029 0.16938,1.6814 0.87079,8.2791 2.53405,16.4505 4.50445,24.5315 0.15123,0.5975 0.39388,1.6063 0.54161,2.1996 0.61498,2.443 1.2745,4.9023 1.94264,7.2517 2.34893,8.2218 4.9833,16.3641 7.88967,24.4056 0.81603,2.1955 1.70181,4.3687 2.66319,6.5025 12.50207,0.4368 25.04051,0.6738 37.4668,2.2286 3.32823,0.4647 6.59989,1.2941 9.96039,1.5333 9.89887,0.8325 19.91139,-0.246 29.52376,-2.6811 5.05643,-1.2914 9.96734,-3.0939 14.73317,-5.2112 4.46558,-1.8969 9.28511,-3.0419 14.15484,-2.9704 6.84463,-0.046 13.65249,0.7853 20.46598,1.3264 7.60434,0.6514 15.20634,1.4328 22.83568,1.7392 2.1697,0.07 4.36317,-0.1782 6.38533,-1.0028 5.87073,-2.0775 10.7612,-6.0915 15.50507,-10.0017 10.70831,-9.034 20.34869,-19.2339 30.77996,-28.5737 4.19035,-3.8768 8.56901,-7.5413 12.9845,-11.1566 5.81899,-4.9016 11.40012,-10.0739 16.97263,-15.2508 5.24332,-4.7689 11.03442,-9.2405 17.87612,-11.4117 7.79076,-2.5468 16.05081,-2.8427 24.14171,-3.6625 9.36383,-0.8709 18.68174,-2.1846 27.96601,-3.6707 0.8659,-0.1503 2.08001,-0.3451 2.90476,-0.488 1.80181,-0.3172 3.60312,-0.6377 5.39798,-0.9924 -4.95214,-7.0709 -10.08791,-14.0202 -14.65353,-21.3531 -6.96118,-11.0265 -12.78897,-22.7067 -18.69516,-34.3167 -9.9537,-19.1947 -21.44768,-37.5515 -33.66625,-55.3763 -6.19067,-9.7615 -12.02954,-19.7403 -17.86021,-29.7193 -8.23406,-14.2188 -16.42589,-28.4625 -24.61285,-42.7079 -6.6947,-11.8456 -12.89494,-24.2282 -15.69364,-37.64 -1.48476,-7.2486 -2.37124,-14.6054 -3.13372,-21.9603 -0.7458,-7.2552 -1.14264,-14.5444 -1.2146,-21.8363 -0.16946,-4.1153 -0.47291,-8.2238 -0.85481,-12.3245 -0.0536,-0.4853 -0.1335,-1.3272 -0.19717,-1.9491 -0.10533,-1.0975 -0.20524,-2.0066 -0.33259,-3.1386 -0.20077,-1.8131 -0.41988,-3.646 -0.65669,-5.5218 -1.10706,-8.193 -2.26425,-16.3805 -3.15267,-24.6011 -0.81186,-6.4199 -1.01443,-12.94242 -2.55949,-19.24997 -0.89862,-3.85448 -2.81222,-7.32411 -4.53503,-10.85223 -2.18187,-4.29069 -4.46721,-8.52937 -6.85542,-12.7087 -0.0677,0.15429 -0.13542,0.30859 -0.20313,0.46289 z" />
- <path
- class="rural area" id="Barika"
- d="m 1731.8574,979.00781 c -17.5997,15.41216 -34.2371,32.00759 -48.8422,50.31019 -14.4488,17.8496 -28.6076,35.9399 -42.2216,54.4358 -3.3462,4.6259 -6.7429,9.2268 -9.7818,14.0631 -0.18,0.5062 -0.9246,1.0067 -0.4473,1.5366 1.8909,2.8633 4.7165,4.9169 7.3081,7.1012 5.496,4.343 11.1775,8.4862 16.186,13.4048 6.2039,5.9782 11.4682,13.0935 14.4808,21.2173 2.6461,6.8855 3.8158,14.2315 4.3715,21.5574 1.1644,12.901 1.8226,25.846 2.1078,38.7954 0.1345,5.1704 0.017,10.3564 -0.6729,15.488 -1.7192,15.4236 -3.9384,30.7858 -6.2088,46.1361 -1.2914,8.4959 -2.6766,16.9872 -3.9149,25.4248 -2.0758,14.3258 -3.9917,28.927 -5.7615,43.3397 -0.8414,6.8555 -1.6627,13.8192 -2.443,20.6154 -1.5415,14.0428 -3.1707,28.086 -4.0391,42.1904 0.2576,0.3463 1.1783,0.081 1.6916,0.1913 6.1739,0.1145 12.3205,0.7857 18.4588,1.4132 10.7644,1.2219 21.486,2.8416 32.1067,4.9848 4.0824,0.7966 8.0375,1.5432 12.1462,2.2593 8.5947,1.5613 17.2649,2.6694 25.8464,4.3061 15.5588,2.8676 31.0401,6.1486 46.4613,9.6783 4.1896,1.0141 8.3998,1.9812 12.5152,3.269 4.3536,1.5259 8.5194,3.5252 12.7508,5.3513 5.1942,2.3291 10.32,4.8056 15.4507,7.2704 8.2064,-10.8248 16.2578,-21.7688 23.9919,-32.9368 2.7632,-3.9691 5.4848,-7.967 8.1761,-11.9851 2.2661,-3.4087 4.6198,-6.9885 6.8611,-10.5015 6.4456,-9.8789 13.406,-19.4137 20.6534,-28.7176 12.0705,-15.7955 23.0287,-32.4469 34.0988,-48.9137 11.1439,-16.7688 22.533,-33.3727 34.0533,-49.8846 27.4481,-39.4089 55.2889,-78.5356 83.0261,-117.7409 6.1931,-8.8155 12.4747,-17.5727 18.4256,-26.5547 2.1404,-3.4139 4.5102,-6.7845 5.6276,-10.7061 1.3653,-4.8015 2.303,-9.9254 5.3677,-14.0095 2.5716,-3.5586 6.0054,-6.404 8.4773,-10.0366 1.0369,-1.9501 0.9812,-4.236 1.2763,-6.3723 -2.6832,-0.5366 -5.4074,-0.9402 -8.0235,-1.3651 -5.9172,-0.9414 -12.038,-1.6724 -18.0138,-2.6926 -10.0362,-1.802 -19.5166,-5.6901 -29.0365,-9.2081 -7.0477,-2.6988 -14.0359,-5.6387 -21.385,-7.4394 -6.5989,-1.7062 -13.3266,-2.8647 -20.0783,-3.7694 -0.7483,-0.091 -1.8693,-0.2418 -2.6318,-0.3367 -12.9673,-1.5951 -26.0326,-2.195 -39.0083,-3.7134 -5.1922,-0.6406 -10.361,-1.4649 -15.5513,-2.1257 -11.3578,-1.4968 -22.7242,-2.9356 -34.1051,-4.2441 -1.711,-0.1935 -3.2875,-0.3511 -5.0339,-0.526 -5.9262,-0.5393 -12.0303,-1.195 -18.0031,-2.0118 -8.8892,-1.1989 -17.7382,-2.7056 -26.5122,-4.5697 -0.091,0.1917 -1.1238,-0.2295 -1.5746,-0.272 -6.0724,-1.4431 -12.1932,-2.6963 -18.219,-4.3256 -2.8359,-0.9157 -5.7399,-1.6187 -8.6121,-2.4159 -12.9148,-3.4847 -25.9326,-6.6415 -38.6401,-10.8443 -7.9851,-2.8588 -15.2228,-7.556 -21.5715,-13.13491 -5.8851,-5.23074 -11.0847,-11.41804 -14.3625,-18.62545 -0.1753,-0.89022 -0.8241,0.30225 -1.2451,0.49273 -1.9921,1.71565 -3.9842,3.43129 -5.9763,5.14694 z" />
- <path
- class="remote area" id="Sidi-Aissa"
- d="m 1359.5312,991.30469 c -5.3861,4.36623 -9.9823,9.59691 -15.1894,14.16411 -0.077,0.3749 -0.8828,0.7668 -1.2267,1.1479 -3.695,3.0665 -7.2898,6.2513 -10.9393,9.3716 0.3648,-0.845 0.2483,-1.0197 -0.4607,-0.3693 -8.3995,6.0364 -17.5079,11.0836 -27.091,14.9782 -0.8121,0.3587 -1.6581,0.7195 -2.361,1.0423 -5.2528,2.3506 -10.4183,4.9004 -15.4486,7.6964 4.871,11.7885 9.8569,23.6214 16.7729,34.3881 7.2618,11.5613 15.7181,22.2934 23.5444,33.4618 7.0172,10.1223 13.4004,20.9081 16.8702,32.8064 3.1529,10.7879 4.0937,22.0931 4.0889,33.2917 -0.093,11.8488 -2.0647,23.6116 -5.0537,35.0553 -3.0073,12.3738 -5.4363,24.9696 -5.8536,37.7272 -0.01,0.3039 -0.022,1.1645 -0.027,1.684 -0.049,5.3977 0.4119,10.8237 1.7716,16.0598 1.6238,6.5712 2.6104,13.3107 2.6823,20.0859 0.1583,10.7933 -1.3355,21.5166 -2.6942,32.1988 -0.9644,7.1936 -1.8868,14.4378 -1.5691,21.712 0.4526,12.089 3.6862,23.8189 5.4928,35.7296 1.2175,7.3767 2.168,14.7953 2.8995,22.2354 0.4094,3.6421 0.896,7.2749 1.3644,10.9097 0.1968,1.4009 0.4182,3.0381 0.6244,4.5299 2.228,16.0062 4.8821,31.9501 6.9684,47.9759 1.5541,11.569 2.7868,23.1772 3.9697,34.7892 0.2029,1.7808 0.3948,3.6179 0.609,5.4225 0.1657,1.4121 0.3155,2.7893 0.4887,4.1361 3.1031,-0.7853 6.2065,-1.6853 9.2033,-2.5834 7.9411,-2.3421 15.9334,-4.9505 23.7704,-7.7687 12.894,-4.6191 25.8178,-9.0961 38.6869,-13.7694 13.7728,-5.1007 26.9951,-11.5472 40.0269,-18.2887 6.9319,-3.5784 13.909,-7.4265 21.3276,-10.0503 5.8129,-2.041 12.0678,-3.0167 18.2098,-2.2276 7.4244,0.8528 14.4914,3.4356 21.5072,5.8796 6.561,2.3999 12.7994,5.6065 18.7326,9.2816 10.6321,6.4556 20.8405,13.6135 31.7956,19.5312 6.0707,3.3246 12.3419,6.4315 19.0471,8.2489 4.3177,1.1265 9.1288,1.5214 13.256,-0.4837 2.7646,-1.3993 4.5711,-4.0538 6.2374,-6.5664 3.1222,-5.085 5.1555,-10.7623 6.7139,-16.4984 1.6401,-6.1393 2.4722,-12.4616 2.896,-18.7929 0.5291,-6.4902 1.2094,-12.9667 1.9847,-19.4319 2.1422,-20.777 3.8235,-41.8629 5.8195,-62.7677 3.1265,-32.3547 7.2466,-64.614 12.4337,-96.7036 2.1991,-14.1607 4.5542,-28.3025 6.2903,-42.5299 0.5048,-4.3588 0.913,-8.7296 1.1509,-13.1116 0.015,-0.395 0.056,-1.1994 0.081,-1.7511 0.2765,-7.6343 0.1563,-15.3061 0.067,-22.9735 -0.017,-0.8889 -0.045,-2.0663 -0.066,-3.066 -0.2533,-9.8848 -0.5734,-19.8124 -2.1941,-29.5847 -1.2242,-7.2373 -3.4858,-14.5036 -8.0035,-20.3968 -5.4291,-7.2913 -12.9373,-12.5805 -19.9949,-18.1577 -3.4686,-2.7711 -6.9258,-5.5904 -10.0132,-8.787 -2.1035,-2.3993 -2.8348,-5.6149 -3.1521,-8.7073 -1.0206,-8.4844 -0.7666,-17.0592 -1.5695,-25.5605 -0.2266,-2.7955 -1.1836,-5.4757 -2.5706,-7.8996 -3.5681,-6.3692 -9.3903,-11.1598 -15.6368,-14.7666 -6.6398,-3.7412 -14.0498,-6.2952 -21.6902,-6.7652 -0.198,-0.01 -1.0083,-0.05 -1.4355,-0.055 -4.3816,-0.1949 -8.6748,0.9095 -12.8121,2.2359 -8.5932,2.6479 -16.9163,6.1288 -24.9393,10.1799 -5.2806,2.523 -11.0957,4.3332 -17.0103,3.8909 -6.8348,-0.3974 -13.4505,-2.3614 -19.9403,-4.4181 -14.1319,-4.6317 -27.702,-10.8021 -41.0207,-17.3788 -6.3686,-3.1643 -12.4135,-6.9249 -18.4961,-10.5968 -11.0904,-6.8374 -22.1183,-13.7879 -32.8526,-21.1758 -4.3565,-2.7925 -8.779,-5.6051 -13.7162,-7.2612 -10.0985,-3.6493 -20.3236,-6.94135 -30.5861,-10.09683 -0.588,-0.15898 -1.1909,-0.39076 -1.7709,-0.50608 z" />
- <path
- class="rural area" id="Ain-Qussera"
- d="m 1273.3574,1048.2871 c -6.6106,4.6109 -13.0219,9.481 -19.6638,14.1024 -13.1884,9.3251 -26.7796,18.0602 -40.1276,27.1522 -7.9009,5.3197 -15.7731,10.7244 -24.1341,15.3072 -5.2789,2.8346 -10.917,5.0086 -16.7703,6.3102 -5.1393,1.2638 -10.4285,1.8253 -15.7157,1.8667 -10.2189,0.2293 -20.4411,3e-4 -30.6609,-0.071 -13.5537,-0.1543 -27.1136,-0.1116 -40.6596,-0.639 -5.1897,-0.2335 -10.3947,-0.8264 -15.3854,-2.3243 -13.0521,-3.4627 -25.7423,-8.2327 -37.9247,-14.0496 -4.498,-2.0989 -9.0383,-4.1135 -13.6708,-5.8991 -0.2973,-0.104 -1.1254,-0.418 -1.6263,-0.6026 -2.5831,-0.9008 -5.3074,-1.3137 -7.9816,-1.8578 -5.7526,-1.0178 -11.53851,-1.9555 -17.37615,-2.2969 -2.13899,-0.1166 -4.28443,-0.1068 -6.42217,0.029 -0.59,2.1864 -0.86025,4.4208 -1.27422,6.6806 -0.26917,1.6125 -0.49044,3.2322 -0.93579,4.8044 -1.53822,7.0623 -3.76873,13.9564 -6.38212,20.6899 -1.01753,2.7877 -1.96707,5.6 -2.83365,8.4383 -0.12338,0.4262 -0.38345,1.2738 -0.50663,1.6922 -2.59515,8.9794 -4.56344,18.2152 -4.86986,27.5828 -0.10742,4.4626 0.25137,9.0023 1.8103,13.2196 2.97804,8.3176 7.52564,15.9774 12.52429,23.2258 3.99863,5.7511 8.42046,11.192 13.00161,16.4859 7.38189,8.6272 12.11799,19.202 15.21739,30.0458 1.3597,4.8437 2.5258,9.7502 3.3508,14.7141 0.7787,5.3712 1.0465,10.8009 1.371,16.214 0.3864,7.5269 0.6519,15.0567 1.3728,22.5697 0.2779,3.1065 0.5832,6.2102 0.9021,9.3126 0.1016,0.8834 0.2274,2.0543 0.3383,3.0481 1.0605,9.5512 2.3209,19.079 3.6891,28.5906 0.4422,3.0757 0.9269,6.3096 1.4017,9.419 2.0356,13.611 4.4941,27.1536 6.7559,40.7275 1.3397,8.2642 2.6954,16.5372 3.4822,24.8757 0.06,0.7565 0.1439,1.5522 0.2215,2.4075 0.1336,1.285 0.2466,2.339 0.4004,3.6191 0.3813,3.0391 0.7794,6.0765 1.248,9.1035 0.5905,3.8327 1.3848,7.837 1.9549,11.7527 1.5773,11.2888 2.4963,22.6562 3.2021,34.029 0.1487,2.1017 0.2899,4.2039 0.4563,6.3043 0.046,0.4644 0.1139,1.3027 0.1719,1.9101 0.2734,2.3197 0.427,4.6794 1.0398,6.9391 0.704,1.8737 2.0994,3.3916 3.4675,4.8138 3.1555,2.9748 6.7316,5.4933 10.4834,7.6579 1.9123,1.1151 3.9857,1.94 6.1655,2.3466 6.1048,1.4208 12.3876,1.9011 18.6426,1.9692 0.3975,-0 1.2208,0 1.7813,0 0.8932,-0.01 1.7042,-0.01 2.5123,-0.03 1.8788,-0.026 3.7559,-0.1094 5.6322,-0.2065 0.4869,-0.026 1.3315,-0.079 1.9554,-0.1154 5.9643,-0.3744 12.1276,-0.9081 18.1776,-1.257 10.7072,-0.7154 21.427,-1.2372 32.1268,-2.0632 8.272,-0.6204 16.7158,-1.3377 25.0657,-2.0981 11.1886,-1.0123 22.4103,-1.6449 33.6369,-2.0402 10.0112,-0.3458 20.0301,-0.2935 30.0454,-0.4242 6.2963,3.3294 12.7907,6.3277 18.7324,10.2911 4.2791,2.7506 8.3681,5.7894 12.2651,9.0573 2.602,1.9939 5.2447,4.0437 8.2931,5.3041 2.4301,0.4704 4.9263,0.4076 7.3914,0.5002 7.2406,0.091 14.6322,-0.2333 21.7692,-0.4808 5.8048,-0.2353 11.6891,-0.4241 17.3017,-2.0778 8.8255,-2.6136 17.6073,-5.4316 26.6202,-7.348 -1.0118,-10.3403 -1.9772,-20.6633 -3.1172,-30.9746 -1.8799,-16.6274 -4.4231,-33.3252 -6.9347,-49.9315 -1.8739,-12.4216 -3.5669,-24.8735 -4.8208,-37.3745 -0.7086,-5.9438 -1.6343,-11.86 -2.6625,-17.7565 -0.2755,-1.5466 -0.5909,-3.3155 -0.9066,-4.9429 -1.2037,-6.2189 -2.5652,-12.4154 -3.3111,-18.7123 -1.0465,-8.0245 -1.156,-16.1681 -0.2698,-24.2134 0.4387,-4.2293 1.0792,-8.5673 1.6398,-12.6958 0.9584,-7.338 1.7713,-14.7083 1.9649,-22.1114 0.01,-0.3042 0.024,-1.1618 0.024,-1.5675 0.012,-0.8261 0,-1.8598 -0,-2.5406 -0.013,-0.694 -0.017,-1.1085 -0.043,-1.7005 -0.1695,-6.0106 -1.08,-11.978 -2.4558,-17.8254 -1.7877,-7.6107 -2.0369,-15.495 -1.6331,-23.2748 0.8185,-13.9835 3.7742,-27.7308 7.13,-41.2958 1.9656,-8.6082 3.5921,-17.3654 3.6133,-26.225 -0,-0.3271 0,-1.061 0,-1.545 -0.01,-1.5097 -0.05,-3.2061 -0.1114,-4.5976 -0.3532,-7.1372 -0.9327,-14.2996 -2.4638,-21.2924 -1.0681,-4.786 -3.1643,-9.2649 -5.3325,-13.637 -4.2283,-8.3436 -9.2285,-16.2876 -14.8443,-23.7659 -5.9717,-8.024 -11.7932,-16.2816 -17.2397,-24.7156 -5.8041,-9.0462 -11.1592,-18.4202 -15.3242,-28.344 -1.2014,-2.8172 -2.4024,-5.6362 -3.5396,-8.4795 -0.1393,0.096 -0.2787,0.1914 -0.418,0.2871 z" />
- <path
- class="rural area" id="Tebessa"
- d="m 2237.3047,1052.6758 c -3.7306,0.071 -7.4578,0.5164 -11.0601,1.5083 -11.598,2.8399 -22.8722,6.8103 -34.2895,10.2725 -8.8957,2.7831 -17.8036,5.527 -26.7129,8.2661 -11.5604,-0.1834 -23.1221,-0.2617 -34.6805,-0.5248 -8.0266,-0.2518 -16.0477,-0.9807 -23.9441,-2.4682 -3.9838,-0.6644 -7.9587,-1.3825 -11.9477,-2.0168 -0.5681,4.4838 -1.5752,9.061 -4.1814,12.8404 -2.4253,3.755 -6.1702,6.4767 -8.366,10.3926 -1.3526,2.3256 -1.6574,5.0465 -2.5628,7.5458 -1.7786,5.6136 -4.3292,10.9797 -7.6276,15.8612 -3.7272,5.6756 -7.819,11.0995 -11.6912,16.6753 -18.414,25.98 -36.7226,51.9772 -54.8946,78.131 -1.9247,2.7784 -3.8521,5.5549 -5.7545,8.3486 7.1135,3.7757 14.2314,7.6005 21.7258,10.5773 4.5606,1.7823 9.3583,2.9967 14.2512,3.3408 7.1988,0.8297 14.2282,2.8206 20.9781,5.4184 4.6622,1.8308 9.1645,4.1255 13.1879,7.1269 6.6416,4.7571 13.4323,9.3077 20.3188,13.7029 3.8766,2.4027 7.7346,4.8551 11.7843,6.9587 4.9187,2.3686 10.1373,4.0253 15.2911,5.7936 15.9771,5.2325 32.1884,9.7251 48.4803,13.8633 6.7441,1.6952 13.5061,3.3219 20.2989,4.8119 0.5879,0.1202 1.5005,0.3175 2.2129,0.4672 6.6726,1.4661 13.4146,2.5722 20.1402,3.758 18.8193,3.3644 37.5347,7.1688 56.33,10.6349 13.344,2.5223 26.7152,4.8985 40.0597,7.4169 8.8557,1.7315 17.7109,3.5232 26.4247,5.8783 7.4316,2.0847 14.7704,4.7196 22.4772,5.6081 6.9112,0.8345 13.8866,1.078 20.7665,2.1826 8.4023,1.2322 16.8791,3.1534 25.0185,5.0833 10.0634,2.2886 20.168,4.4062 30.3412,6.1495 9.1439,1.6394 18.2482,3.4853 27.363,5.2765 10.2815,1.9893 20.5913,3.8687 30.947,5.6277 0.4957,0.08 1.2176,0.1985 1.8039,0.2939 2.6392,-4.1175 4.7801,-8.5454 6.9704,-12.9274 6.8263,-14.1539 13.0206,-28.6024 19.0935,-43.0925 9.6348,-23.1627 18.8474,-46.5721 27.372,-70.21 1.5557,-4.3541 3.088,-8.6686 4.553,-12.9803 2.6356,-7.757 5.246,-15.704 7.3939,-23.6863 2.8759,-10.9502 3.5881,-22.3341 3.4707,-33.6152 -0,-0.3704 -0.02,-1.2006 -0.028,-1.747 -0.035,-2.494 -0.1338,-5.1724 -0.2315,-7.5479 -0.227,-5.2943 -0.6258,-10.5631 -1.01,-15.8053 -1.1596,-15.4575 -1.8004,-30.9495 -2.2317,-46.443 -0.2275,-7.6813 -0.2551,-15.3713 -0.7009,-23.0445 0.1058,-0.7883 -0.1541,-1.156 -0.9608,-0.8952 -9.5639,0.7262 -19.0957,1.817 -28.6285,2.8638 -10.208,1.1512 -20.4802,2.377 -30.6263,3.664 -10.249,1.2966 -20.4853,2.6926 -30.7143,4.1345 -9.7082,1.3273 -19.5656,1.1649 -29.3048,0.2712 -5.2069,-0.4515 -10.3699,-1.2723 -15.5379,-2.0276 -9.7719,-1.2265 -19.636,-1.3204 -29.4672,-1.611 -22.2048,-0.4912 -44.4159,-0.6556 -66.6198,-1.1963 -11.7448,-0.2704 -23.5309,-0.7847 -35.1188,-2.8454 -7.4188,-1.2235 -14.7767,-2.7914 -22.202,-3.9773 -0.6458,-0.1006 -1.602,-0.2493 -2.3739,-0.3601 -1.0349,-0.1553 -2.3473,-0.3255 -3.216,-0.4349 -7.4198,-0.8933 -14.8909,-1.472 -22.3691,-1.289 z" />
- <path
- class="area" id="Morocco"
- d="m 106.72266,1069.459 c -1.16969,0.5835 -2.33848,1.1708 -3.50782,1.7558 0,269.8549 0,539.7097 0,809.5645 38.66862,0 77.33724,0 116.00586,0 2.54195,-2.9354 5.13419,-5.828 7.61914,-8.8125 0.2971,-0.3604 0.82307,-0.9989 1.20136,-1.4742 1.91574,-2.4241 3.82594,-4.8771 5.36114,-7.5649 -1.98116,-2.8797 -4.6225,-5.2231 -6.67029,-8.0542 -3.49509,-4.7027 -6.39703,-9.826 -8.96441,-15.0854 -2.01142,-4.2759 -3.88394,-8.6505 -5.10633,-13.2242 -1.08937,-4.1711 -1.12964,-8.5116 -1.42877,-12.7868 -0.4675,-10.0575 -0.5774,-20.1285 -0.75401,-30.1938 -0.18413,-12.61 -0.31282,-25.1384 -0.6536,-37.7471 -0.0812,-2.5848 -0.14269,-5.1333 -0.24035,-7.6587 -0.15142,-4.4545 -0.35401,-9.0314 -0.59435,-13.4041 -0.512,-9.1205 -1.25948,-18.2326 -2.46875,-27.289 -0.11445,-0.8417 -0.27023,-1.9697 -0.40428,-2.9225 -0.59667,-4.1048 -1.23656,-8.0551 -1.97843,-12.1554 -0.69791,-3.892 -1.46572,-7.7835 -2.25976,-11.5962 -2.58098,-12.5461 -5.81106,-24.9466 -8.42496,-37.4849 -2.94478,-13.621 -3.70973,-27.5726 -4.52567,-41.4464 -0.96349,-16.9429 -1.73251,-33.8973 -2.80729,-50.8341 -0.26755,-4.0562 -0.52517,-8.2653 -0.93307,-12.3693 -0.55489,-6.8344 -0.79324,-13.6581 -1.19081,-20.5057 -0.0266,-1.1054 -0.20456,-2.6419 -0.13495,-3.4729 -0.54148,-11.6926 -0.99033,-23.4014 -2.21014,-35.0479 -0.20004,-1.8552 -0.43403,-3.7064 -0.68532,-5.5553 -0.0553,-0.3978 -0.1735,-1.1881 -0.25287,-1.7362 -0.19114,-1.1747 -0.34769,-2.1387 -0.57636,-3.3184 -0.5131,-2.8651 -1.36272,-5.6594 -2.51153,-8.3328 -1.73009,-4.3514 -3.62368,-8.6357 -5.57916,-12.89 -0.61441,-1.3122 -1.32084,-2.8414 -1.97063,-4.237 -3.8494,-8.0722 -7.49237,-16.2503 -10.58185,-24.6467 -3.69016,-9.8602 -6.59045,-19.9975 -9.00791,-30.2393 -1.6146,-6.9244 -3.15099,-13.8733 -4.33714,-20.8852 -1.97409,-12.428 -1.99505,-25.043 -2.60775,-37.5826 -0.1934,-4.6506 -0.40191,-9.3013 -0.73301,-13.9444 -0.0336,-0.3533 -0.0932,-1.1322 -0.13671,-1.6484 -0.36242,-4.2774 -0.91716,-8.5448 -1.86719,-12.7344 -0.13077,-0.5917 -0.3299,-1.5059 -0.50071,-2.2207 -2.0429,-8.6034 -4.6247,-17.0685 -6.62534,-25.6829 -5.56522,-22.9448 -10.18181,-46.1089 -14.40105,-69.3351 -3.41948,-19.0909 -6.57704,-38.2378 -8.88306,-57.4976 -2.356,-21.3169 -2.03826,-42.7949 -2.77344,-64.1992 -0.0431,-1.2004 -0.0986,-2.6042 -0.14648,-3.8828 -0.25065,0.1263 -0.5013,0.2526 -0.75195,0.3789 z" />
- <path
- class="remote area" id="Mascara"
- d="m 940.71875,1186.5098 c -8.00651,0.1145 -16.06791,0.2319 -23.9671,1.6786 -8.23766,1.5393 -16.33889,3.2353 -24.53767,4.993 -10.53984,2.2795 -21.1458,4.5647 -31.68536,7.012 -14.3919,3.6264 -28.21471,9.4873 -40.86999,17.2346 -5.33326,3.3112 -10.33851,7.2497 -16.20304,9.6167 -5.71212,2.4203 -11.88985,3.3946 -17.98985,4.2832 -14.56,1.9689 -29.24696,2.9528 -43.74928,5.3561 -0.94256,0.1672 -1.69726,0.3091 -2.66808,0.5034 -3.34878,0.629 -6.60009,1.6836 -9.76322,2.9376 0.91152,2.8188 1.98008,5.594 2.56573,8.5075 1.87029,8.1959 2.69593,16.5786 3.70671,24.9107 1.18435,9.9752 2.16351,19.9936 2.20557,30.0478 0.22006,14.2496 -0.0916,28.5004 -0.22365,42.7495 -0.20588,17.16 -0.41176,34.3199 -0.61764,51.4798 3.04743,10.9535 6.19847,21.8891 8.65334,32.9948 1.65948,7.8122 2.70832,15.7435 3.30188,23.7055 0.87349,10.294 1.24248,20.6204 1.64045,30.9409 0.40733,9.3184 1.17511,18.6347 2.78111,27.8299 2.09,12.2085 4.88878,24.2796 7.49879,36.3837 1.44846,6.4235 2.69583,12.912 4.70036,19.1925 0.83199,2.5537 2.21747,4.9046 4.04392,6.8732 2.98464,3.4993 5.91514,7.0463 8.62753,10.7621 3.6475,4.8963 7.08547,9.9425 10.63543,14.9092 9.39119,-7.4556 19.43272,-14.0377 28.93824,-21.3433 4.76688,-3.6249 9.44887,-7.3647 13.93621,-11.3318 4.75093,-4.0687 9.96369,-7.7359 15.87749,-9.8977 7.75669,-2.9427 16.03966,-4.0117 24.19827,-5.2237 2.68502,-0.3809 5.36821,-0.7737 8.04979,-1.1781 0.53431,-0.09 1.48117,-0.2363 2.0449,-0.328 3.84447,-0.6412 7.82419,-1.3562 11.56057,-2.0802 1.49241,-0.2992 2.94376,-0.5741 4.36018,-0.8723 7.44624,-1.5703 14.90157,-3.1867 22.16608,-5.4726 4.02047,-1.3659 7.81734,-3.2961 11.64644,-5.1128 6.11455,-2.9399 12.02282,-6.281 18.05499,-9.3805 6.43489,-3.2745 13.1436,-6.0038 20.04576,-8.1248 10.37771,-3.2928 21.04759,-5.6096 31.31689,-9.2526 2.6534,-0.9988 5.3925,-1.8633 7.8461,-3.308 3.2758,-2.0796 6.1507,-4.725 8.9513,-7.3934 3.7237,-3.6117 7.2519,-7.4547 10.2705,-11.6807 -0.6259,-2.168 -1.2602,-4.3431 -1.4789,-6.5985 -1.4572,-10.2483 -1.6978,-20.6124 -2.652,-30.9093 -0.1453,-1.6065 -0.3274,-3.4323 -0.5031,-5.1209 -0.3521,-3.3028 -0.7575,-6.5998 -1.2215,-9.8888 -0.059,-0.3512 -0.1779,-1.1608 -0.2598,-1.6875 -1.6438,-9.2633 -3.0742,-18.5745 -3.8466,-27.9542 -0.081,-0.878 -0.2234,-2.0255 -0.292,-2.7236 -2.3526,-18.5593 -6.0853,-36.9363 -9.0171,-55.4281 -1.3602,-8.7564 -2.4206,-17.5556 -3.6368,-26.3325 -1.8027,-13.5362 -3.8257,-27.0749 -4.4099,-40.7333 -0.1248,-5.0591 0.01,-10.1267 -0.4048,-15.1761 -0.91679,-13.2313 -3.64049,-26.543 -9.71989,-38.4212 -2.64068,-5.1637 -6.02138,-9.9268 -9.90175,-14.2305 -6.16126,-7.3193 -11.94955,-14.9776 -16.9906,-23.1155 -0.86627,-1.4635 -1.69458,-2.9491 -2.51686,-4.4378 -6.8327,-0.057 -13.66482,-0.2011 -20.49805,-0.164 z" />
- <path
- class="remote area" id="Batna"
- d="m 1989.8926,1231.3516 c -7.9544,10.4413 -15.4566,21.2169 -22.9531,31.9888 -8.3701,12.0619 -16.6893,24.3259 -24.8834,36.5095 -13.9502,20.6905 -27.4919,41.6951 -42.7945,61.4305 -7.8136,10.0647 -15.1166,20.5208 -21.9433,31.2786 -9.6708,14.8875 -20.1829,29.2019 -30.646,43.5351 -0.9079,1.2645 -1.8043,2.4886 -2.6579,3.6979 -0.7088,0.5567 0.3136,0.6438 0.711,0.9073 11.8274,5.5474 23.4128,11.5982 35.2746,17.0741 0.7956,0.3622 1.9188,0.8784 2.7059,1.225 0.9777,0.4298 1.9348,0.864 2.8297,1.2471 10.383,4.5454 21.1887,8.0172 31.9646,11.491 14.1896,4.4839 28.4611,8.7174 42.5249,13.5907 8.9499,3.0548 17.8389,6.2887 26.6301,9.7743 11.424,4.4499 22.9229,8.708 34.5069,12.7229 19.091,6.7762 38.165,13.6478 56.8359,21.5233 12.1629,5.1856 23.9727,11.197 35.2895,18.0367 10.9271,6.5309 21.4892,13.6438 32.1691,20.5653 8.754,5.5335 17.8595,10.5036 27.2075,14.9585 0.4736,0.2266 1.2674,0.5958 1.8637,0.877 14.1378,6.6162 28.7977,12.0786 43.7066,16.6836 1.7754,0.5477 3.7548,1.144 5.614,1.6908 8.4229,2.4663 16.9374,4.603 25.3608,7.0675 8.9109,2.5224 17.7456,5.3011 26.6311,7.9096 7.2934,2.1129 14.6381,4.0982 21.9497,5.9719 9.966,2.5205 19.8487,5.3772 29.5921,8.6572 8.1247,2.5703 16.3648,4.7516 24.6147,6.8766 8.0477,2.1667 15.9927,4.7569 23.6692,8.0119 0.3776,-4.0256 2.1468,-7.7346 3.7888,-11.3722 3.6346,-7.567 7.6129,-14.9751 10.8265,-22.7389 1.2689,-3.0131 2.4515,-6.0631 3.5273,-9.1506 0.1377,-0.3937 0.3996,-1.176 0.5859,-1.7188 2.7819,-8.415 4.9427,-17.0408 6.4024,-25.7832 0.7342,-5.0156 0.8015,-10.1015 0.6582,-15.1601 -0.018,-0.4043 -0.048,-1.2956 -0.065,-1.7855 -0.469,-11.9796 -1.6711,-24.1595 -1.0778,-36.2401 0.6389,-12.7523 2.9012,-25.3428 4.9657,-37.9208 2.1383,-12.1196 4.6055,-24.2897 9.2545,-35.7323 2.7156,-6.5528 6.139,-12.8359 10.4679,-18.4683 5.1762,-6.7721 10.8198,-13.1684 16.3169,-19.6785 8.0233,-9.4326 16.0678,-18.9451 23.8465,-28.5222 5.4992,-6.7995 11.006,-13.6025 16.1386,-20.6855 -17.2909,-3.0688 -34.4964,-6.5914 -51.762,-9.8001 -9.799,-1.8434 -19.6301,-3.539 -29.3436,-5.8038 -6.1389,-1.3577 -12.2253,-2.953 -18.4022,-4.1364 -0.8191,-0.1508 -1.9275,-0.3667 -2.86,-0.5286 -0.7805,-0.144 -1.7298,-0.3045 -2.4466,-0.4245 -1.7575,-0.2896 -3.7242,-0.5836 -5.3594,-0.8086 -1.3996,-0.1836 -2.6032,-0.3345 -4.0207,-0.4926 -5.4652,-0.5972 -10.9689,-0.8371 -16.4032,-1.7092 -8.2329,-1.1443 -16.1906,-3.6132 -24.137,-5.9688 -2.8941,-0.8669 -5.9703,-1.5402 -8.8356,-2.2024 -17.4772,-3.9023 -35.1585,-6.7742 -52.7477,-10.1064 -14.8382,-2.7522 -29.6494,-5.6501 -44.4691,-8.503 -8.1608,-1.5401 -16.4373,-3.1289 -24.6676,-4.5518 -9.0947,-1.5564 -18.145,-3.3882 -27.081,-5.6935 -12.8515,-3.2426 -25.6074,-6.8468 -38.3787,-10.3864 -9.8536,-2.7941 -19.7608,-5.5023 -29.3058,-9.249 -5.0987,-2.0316 -9.917,-4.6911 -14.5567,-7.6092 -7.6657,-4.7054 -15.2464,-9.5732 -22.4705,-14.9373 -4.917,-3.7629 -10.2809,-7.0598 -16.2123,-8.949 -4.0393,-1.334 -8.2176,-2.1998 -12.4172,-2.8465 -0.3897,-0.061 -1.1875,-0.1779 -1.7334,-0.2603 -5.0645,-0.7195 -10.1842,-1.529 -15.0518,-3.201 -9.8437,-3.2001 -18.6747,-8.7171 -27.9297,-13.2301 -0.2727,0.3509 -0.5455,0.7019 -0.8183,1.0528 z" />
- <path
- class="remote area" id="Saida"
- d="m 715.18359,1247.541 c -6.74669,4.1983 -13.42097,8.5276 -19.76171,13.3242 -0.85717,0.6437 -1.92373,1.4497 -2.8502,2.1696 -8.50987,6.557 -16.54729,13.6941 -24.575,20.8244 -5.17418,4.5382 -10.57128,8.9085 -16.67832,12.1408 -6.10516,3.2833 -12.48483,6.0174 -18.62491,9.2337 -6.55201,3.2784 -12.93017,6.8857 -19.33177,10.4439 -13.03473,7.0174 -27.15007,11.8069 -41.4796,15.3867 -5.05553,1.2784 -10.21938,2.0537 -15.40038,2.6027 -11.28301,1.2503 -22.60815,2.0401 -33.92063,2.9668 -5.53428,0.4086 -11.06131,0.9095 -16.5806,1.4853 -0.88332,0.1016 -2.05425,0.2276 -3.04805,0.3385 -4.04845,0.445 -7.95856,0.9184 -11.98808,1.4604 -8.02348,1.0839 -16.18546,2.4133 -24.27754,3.4849 -4.21472,0.5739 -8.43942,1.0753 -12.67461,1.4721 1.42797,5.5809 2.99705,11.13 4.22301,16.7598 1.56773,7.9085 1.28765,16.0114 1.38568,24.03 0.0112,13.241 -0.27439,26.4807 -0.70573,39.7141 -0.1383,3.961 -0.28376,7.9219 -0.35413,11.8848 -0.008,1.0176 -0.0275,2.3069 -0.036,3.4288 -0.042,3.6239 -0.012,7.2482 0.0282,10.872 0.009,0.5521 0.0292,1.4362 0.0439,2.1198 0.0708,3.3134 0.18026,6.6257 0.3213,9.9368 0.064,1.2071 0.12278,2.6654 0.19771,3.9701 0.34873,6.5214 0.86386,13.1484 1.48197,19.5768 0.89405,9.6037 2.26119,19.1526 3.42874,28.7244 2.0246,16.5417 3.51675,33.1525 4.22301,49.8046 0.63156,14.0306 0.82895,28.0758 1.16857,42.1155 3.2728,12.9383 6.42818,25.846 9.79827,38.7379 1.86944,7.1489 4.20843,14.1944 7.39357,20.8725 3.65513,7.9649 7.40968,15.8865 11.33941,23.7197 4.63551,-1.1303 9.24821,-2.3593 13.82812,-3.6992 0.89548,-0.2719 2.09908,-0.6207 3.00564,-0.8941 7.98589,-2.416 15.95462,-5.1016 23.91042,-7.8133 7.67785,-2.618 15.39237,-5.333 23.20963,-7.7283 11.43411,-3.5248 22.98897,-6.6748 34.66082,-9.3117 6.28184,-1.3692 12.59726,-2.6903 19.01977,-3.182 8.52275,-0.7408 17.08451,-0.6828 25.63122,-0.7503 0.7692,-0.015 1.83707,-0.032 2.72476,-0.058 2.34452,-0.051 4.68711,-0.1899 7.02134,-0.4148 0.41894,-0.041 1.21462,-0.1248 1.77497,-0.1976 0.78359,-0.092 1.83314,-0.2507 2.44573,-0.3434 6.35015,-1.048 12.4934,-3.0342 18.64334,-4.8831 13.34357,-4.1777 26.88683,-7.6704 40.44537,-11.0701 7.62725,-1.9811 15.26384,-3.9512 22.77066,-6.3573 0.35568,-0.121 1.30196,-0.4355 1.6543,-0.5489 5.93903,-1.9862 11.71521,-4.4742 17.15192,-7.5909 3.42963,-1.9077 6.65487,-3.8541 9.94541,-6.0305 0.92879,-0.6149 1.92572,-1.2906 2.73209,-1.8588 1.59388,-1.1086 3.15583,-2.2622 4.69792,-3.4416 0.27477,-0.2236 0.90228,-0.7026 1.30976,-1.0303 0.90205,-0.7244 1.7788,-1.479 2.64728,-2.2432 -3.59861,-5.161 -7.12805,-10.1959 -10.90993,-15.2721 -2.87972,-3.905 -5.94271,-7.669 -9.03549,-11.405 -2.52885,-3.1712 -4.60121,-6.7199 -5.90144,-10.5715 -2.30786,-6.4114 -3.66161,-13.1093 -5.16895,-19.7399 -2.24189,-10.2126 -4.41559,-20.4405 -6.4873,-30.6886 -3.58415,-18.6419 -5.85979,-37.5854 -5.88832,-56.5872 -0.0344,-3.7425 -0.11135,-7.6897 -0.37225,-11.4056 -0.3022,-4.9102 -0.80993,-9.808 -1.54882,-14.6719 -0.0552,-0.3625 -0.18991,-1.1856 -0.27554,-1.7245 -1.00557,-6.2207 -2.51383,-12.3489 -4.34021,-18.3767 -2.33996,-8.0975 -4.5491,-16.318 -5.01316,-24.7738 -0.62127,-9.5206 -0.52453,-19.0673 -0.65499,-28.6026 -0.14195,-17.6619 0.15091,-35.3255 0.82474,-52.9748 0.14849,-4.6864 0.25641,-9.3766 0.15056,-14.0652 -0.0169,-0.3364 -0.043,-1.1999 -0.0635,-1.7383 -0.0123,-0.4688 -0.0485,-1.0537 -0.076,-1.6521 -0.0952,-1.9053 -0.23938,-3.8739 -0.38921,-5.6783 -0.76147,-8.5611 -1.83467,-17.0913 -2.88542,-25.6207 -0.16457,-1.1903 -0.34525,-2.6329 -0.53216,-3.9194 -0.75805,-5.0089 -1.3737,-10.0955 -3.0694,-14.8951 -0.11328,0.07 -0.22657,0.1394 -0.33985,0.209 z" />
- <path
- class="remote area" id="Mecheria"
- d="m 437.60352,1346.5254 c -2.23837,0.014 -4.4117,0.6729 -6.37812,1.7163 -5.27587,2.6247 -9.66901,6.6454 -13.99551,10.5742 -5.91697,5.5535 -11.9553,10.9815 -18.25995,16.0937 -5.94623,4.8917 -11.5483,10.1827 -17.17632,15.4323 -9.00509,8.4881 -17.67991,17.3704 -27.39307,25.0678 -5.55673,4.3865 -11.80799,8.1985 -18.8249,9.629 -3.78763,0.8359 -7.68746,0.9261 -11.54636,0.7031 -10.94317,-0.4258 -21.82349,-1.7365 -32.7376,-2.5697 -4.70763,-0.3318 -9.62299,-0.7 -14.11845,1.0502 -3.69888,1.372 -7.25802,3.1039 -11.01724,4.3187 -12.87329,4.4822 -26.67295,6.1073 -40.25246,5.1412 -5.07494,-0.3182 -10.1034,-1.0964 -15.13212,-1.8138 -5.83476,-0.7306 -11.70203,-1.1659 -17.5722,-1.4875 -0.79359,-0.043 -1.80736,-0.092 -2.68555,-0.1368 -0.33671,-0.01 -1.16742,-0.04 -1.69336,-0.057 -1.01801,-0.036 -2.03615,-0.071 -3.05469,-0.088 3.47937,7.5016 6.9749,15.082 8.81715,23.1841 2.53185,10.6103 3.12626,21.5456 3.80944,32.3949 0.76087,13.7343 1.20973,27.4857 2.11951,41.212 0.0307,0.2763 0.10676,1.1954 0.15489,1.7188 0.50061,4.263 0.67681,8.5576 0.97717,12.8386 1.21329,19.9951 2.07992,40.0105 3.29447,60.0056 0.61237,10.0741 1.52655,20.1691 3.76075,30.0303 3.48493,15.9444 7.8138,31.7082 10.65018,47.7913 2.01257,11.1401 3.2012,22.4093 4.04734,33.6926 1.24244,16.452 2.27909,32.9257 2.7054,49.4212 0.11522,3.6987 0.10409,7.3993 0.13636,11.0993 0.004,0.4884 0.019,1.2321 0.0273,1.8183 6.03618,-2.7234 12.04572,-5.5175 17.94377,-8.5276 4.77943,-2.6929 9.0006,-6.2342 13.33453,-9.5683 4.81866,-3.7901 9.45739,-7.8043 14.27003,-11.6 2.62834,-1.9691 5.30511,-3.9789 8.364,-5.2249 3.9573,-1.2935 8.12748,-1.7025 12.23025,-2.2881 6.06583,-0.7586 12.10942,-1.3161 18.15178,-2.0135 1.1601,-0.171 2.39869,-0.061 3.4204,-0.7347 11.20341,-5.2558 22.28346,-10.8867 34.05466,-14.799 12.83409,-4.4016 26.15114,-7.1563 39.47222,-9.6093 8.9567,-1.7163 17.99838,-3.4006 26.49678,-6.814 7.31169,-2.8276 14.64221,-5.999 22.50946,-6.8644 6.2149,-0.7785 12.47629,-0.1304 18.70916,-0.032 0.44626,0 1.26721,0.01 1.85696,0.014 4.93795,0.045 9.91299,0.022 14.77993,-0.9148 3.51432,-0.5579 7.02915,-1.1127 10.53889,-1.6988 -4.33304,-9.0337 -8.9613,-18.1676 -12.72497,-27.5538 -4.92101,-12.2735 -7.66721,-25.251 -10.87963,-38.0215 -2.10422,-8.5274 -4.07983,-17.1404 -4.63101,-25.9318 -0.57688,-8.2324 -0.59506,-16.4904 -0.87871,-24.7357 -0.11544,-4.2453 -0.27764,-8.5502 -0.45795,-12.724 -0.42375,-9.4505 -1.09095,-18.8898 -2.01367,-28.3047 -0.13632,-1.3636 -0.30172,-2.9649 -0.44922,-4.4199 -1.31689,-12.6936 -3.14674,-25.3267 -4.54722,-38.0101 -2.46083,-22.6782 -3.32062,-45.5354 -2.40174,-68.3312 0.27562,-8.6766 0.46621,-17.3558 0.60326,-26.0357 0.1045,-8.1156 0.0888,-16.418 0.0215,-24.6055 -0.01,-0.6648 -0.0304,-1.6527 -0.0565,-2.441 -0.0791,-4.1254 -0.53249,-8.2527 -1.61722,-12.2417 -1.30125,-4.928 -2.68383,-9.8332 -4.00795,-14.7548 -0.2513,0 -0.5026,0 -0.7539,0.01 z" />
- <path
- class="remote area" id="Biskra"
- d="m 1650.7891,1410.7051 c -1.5887,14.4413 -3.3792,28.8636 -4.5624,43.3462 -0.3743,5.0439 -0.9405,10.0903 -2.1714,15.0056 -1.0235,4.3788 -2.6585,8.5762 -4.028,12.8513 3.2184,4.1023 6.3729,8.3004 8.6983,12.9887 5.5394,10.7794 8.0182,22.7607 10.2805,34.5706 1.686,8.6741 3.4959,17.4292 5.2588,26.1339 1.3046,6.8916 2.0259,13.8992 1.988,20.9163 0.022,0.7703 0.052,1.6624 0.081,2.3202 0.056,1.0972 0.1016,2.2298 0.1611,3.2141 0.3524,6.6901 1.0954,13.3508 1.6069,20.0283 0.7946,12.5057 0.8041,25.0424 0.9192,37.568 0.1759,29.7683 0.057,59.5379 -0.1928,89.3055 -0.2636,25.6686 -0.6243,51.3459 -1.9502,76.9851 -0.9577,17.7439 -2.3607,35.5248 -5.8154,52.9804 -1.4118,7.1562 -3.3,14.2053 -5.303,21.2155 34.8027,0.2893 69.6069,0.3097 104.4105,0.4019 131.1036,0.239 262.2075,0.2468 393.3113,0.2462 119.7816,7e-4 239.5631,10e-5 359.3446,3e-4 -1.957,-10.3176 -4.5747,-20.531 -8.1999,-30.3941 -1.6674,-4.292 -3.4078,-8.6282 -6.1631,-12.3583 -5.6965,-8.0164 -12.3379,-15.2883 -18.4614,-22.9692 -7.1845,-8.8445 -13.8082,-18.1287 -20.1216,-27.6099 -6.1945,-9.2022 -12.2446,-18.7152 -15.6715,-29.3458 -1.9631,-5.9911 -3.09,-12.2075 -4.1596,-18.407 -1.8204,-9.1805 -4.4914,-18.1818 -7.707,-26.966 -1.8122,-4.8363 -3.7066,-9.8812 -7.4703,-13.5757 -3.524,-3.5197 -7.7589,-6.2056 -11.9011,-8.9267 -6.6919,-4.2109 -13.6115,-8.0917 -19.9105,-12.8954 -3.0805,-2.2734 -5.9539,-4.8121 -8.6715,-7.505 -6.2757,-5.6404 -14.1781,-8.9881 -22.0303,-11.8033 -3.4588,-1.2292 -6.959,-2.3388 -10.4756,-3.3901 -0.9209,-0.2724 -2.1115,-0.6179 -3.1361,-0.9184 -8.1358,-2.3022 -16.3368,-4.3719 -24.4309,-6.8218 -5.0748,-1.468 -10.0674,-3.1989 -15.1194,-4.7396 -4.3576,-1.3046 -8.8831,-2.5578 -13.1886,-3.7038 -9.878,-2.5474 -19.7585,-5.0951 -29.5323,-8.0234 -7.5073,-2.2216 -14.98,-4.5607 -22.5204,-6.6699 -1.592,-0.439 -3.4206,-0.9593 -5.0288,-1.4014 -7.8166,-2.1277 -15.6709,-4.1258 -23.4055,-6.5432 -20.1254,-6.1846 -39.7886,-13.9503 -58.5408,-23.5384 -9.4832,-4.8615 -18.6586,-10.3177 -27.459,-16.3277 -6.7004,-4.4381 -13.5942,-8.8825 -20.3745,-13.0038 -13.7156,-8.3302 -27.9313,-15.9258 -42.894,-21.7769 -13.6063,-5.3453 -27.2093,-10.4818 -40.9484,-15.4766 -2.7265,-0.9959 -5.6182,-2.0286 -8.267,-2.975 -6.2146,-2.1129 -12.4138,-4.2733 -18.5341,-6.648 -13.1731,-4.9932 -26.2327,-10.2941 -39.5529,-14.8927 -1.9313,-0.6787 -3.8657,-1.3489 -5.7997,-2.0199 -0.4234,-0.1459 -1.2018,-0.4019 -1.7612,-0.5899 -10.1338,-3.3593 -20.3717,-6.3886 -30.5424,-9.6321 -12.0349,-3.7948 -24.0976,-7.5505 -35.88,-12.0846 -13.0376,-5.1111 -25.4351,-11.6588 -38.0255,-17.751 -14.7357,-7.1962 -29.5007,-14.343 -44.478,-21.0258 -3.9926,-1.7219 -7.9414,-3.6714 -12.2236,-4.5699 -4.8724,-1.1951 -9.8978,-2.2429 -14.728,-3.2881 -6.6969,-1.4077 -13.3359,-2.7822 -20.067,-4.1148 -9.7682,-1.9243 -19.6321,-3.8867 -29.5033,-5.4966 -10.93,-1.6091 -21.8112,-3.5377 -32.6437,-5.7053 -7.6855,-1.4258 -15.4411,-2.4318 -23.2059,-3.3102 -1.1883,-0.1325 -2.6295,-0.2807 -3.916,-0.4079 -2.0423,-0.1977 -3.9837,-0.3753 -6.0637,-0.5341 -3.086,-0.2365 -6.1789,-0.4022 -9.2742,-0.433 -0.016,0.1641 -0.033,0.3281 -0.049,0.4922 z" />
- <path
- class="remote area" id="Laghouat"
- d="m 1489.0508,1469.3633 c -7.6579,3.8455 -15.2701,7.7836 -22.791,11.8904 -13.8448,7.2208 -28.5859,12.4907 -43.3437,17.4953 -10.0199,3.4336 -19.9629,7.0876 -29.9806,10.5265 -14.1684,4.7911 -28.4795,9.1936 -42.9955,12.8097 -6.5316,1.5262 -13.0823,3.0178 -19.4578,5.1231 -4.0131,1.3033 -7.9535,2.9147 -12.1449,3.5727 -6.0364,1.0483 -12.1796,1.1675 -18.2819,1.5371 -8.0753,0.3823 -16.162,0.9555 -24.249,0.6309 -5.5183,-0.2581 -11.1196,-1.4373 -15.8669,-4.3748 -5.7109,-3.394 -10.2199,-8.4079 -15.8043,-11.9829 -4.0814,-2.8107 -8.4315,-5.203 -12.8901,-7.3558 -1.0205,-0.5249 -1.9046,-0.9803 -2.9619,-1.4914 -7.1374,0.1036 -14.2747,0.2071 -21.4121,0.3106 -0.6719,0.014 -1.6664,0.041 -2.4621,0.059 -2.5919,0.067 -5.2413,0.1706 -7.7465,0.2774 -12.3378,0.5081 -24.6525,1.4556 -36.9463,2.5976 -13.3527,1.1598 -26.7248,2.079 -40.1063,2.8355 -8.3607,0.5201 -16.6262,1.0508 -24.9497,1.7293 -7.8618,0.6273 -15.8102,0.973 -23.6427,-0.1799 -7.5517,-0.9362 -15.3029,-2.0084 -22.1184,-5.6162 -3.9551,-2.0569 -7.4865,-4.8035 -11.0378,-7.4726 -5.7832,6.2478 -11.4861,12.647 -18.1672,17.9632 -4.0298,3.0805 -8.776,5.0528 -13.6206,6.4513 -9.13227,2.8164 -18.39141,5.1961 -27.59313,7.7695 -2.08656,0.5728 -4.17311,1.1455 -6.25967,1.7183 -0.016,34.2117 0.0937,68.4243 -0.26358,102.6348 -0.19941,22.0211 -0.59483,44.0399 -1.18536,66.0542 -0.11373,4.4893 -0.19619,8.9792 -0.27371,13.4692 -0.004,0.8897 -0.018,2.0679 -0.0254,3.0684 -0.016,2.3222 -0.0167,4.6446 0.01,6.9668 0.006,0.4042 0.0241,1.2004 0.0346,1.7547 0.0433,2.1389 0.13919,4.1233 0.26627,6.2778 0.093,1.5779 0.23206,3.4047 0.37775,5.1003 0.21476,2.536 0.46128,4.9038 0.72299,7.4402 1.18275,10.6202 2.27529,21.2157 2.93226,31.8814 0.50782,7.9162 1.08784,15.8324 1.98838,23.7155 0.14283,1.1617 0.30443,2.5697 0.47126,3.8258 1.1647,9.0803 2.9582,18.0836 5.476,26.8871 1.11454,3.907 2.38905,7.9453 3.71502,11.8556 0.40587,1.21 0.74492,2.2019 1.17107,3.4108 0.78505,2.2234 1.66212,4.6534 2.462,6.8313 2.15896,5.862 4.4533,11.7659 6.73284,17.6435 0.74766,1.9301 1.49554,3.86 2.24329,5.79 213.44853,0 426.89713,0 640.34573,0 0.4931,-1.3643 0.997,-3.0388 1.3452,-4.2467 2.2308,-7.9684 4.197,-16.0695 5.9009,-24.1986 0.058,-0.3164 0.2096,-1.0586 0.3027,-1.5391 0.1108,-0.6177 0.2444,-1.3161 0.3231,-1.7802 0.099,-0.6022 0.2009,-1.1665 0.2686,-1.6445 0.2262,-1.4345 0.4216,-2.8737 0.5958,-4.3155 0.03,-0.3059 0.1159,-1.0755 0.1719,-1.5566 0.483,-4.1618 0.8926,-8.3286 1.2539,-12.4629 0.092,-1.1684 0.2106,-2.5915 0.3127,-3.8578 1.1546,-14.4629 1.806,-28.9604 2.3162,-43.4586 0.2657,-8.2983 0.4871,-16.767 0.6399,-25.1333 0.643,-35.5488 0.4806,-71.2334 -0.067,-106.8337 -0.3177,-18.9591 -0.6356,-37.9996 -1.2375,-56.9847 -0.098,-3.2101 -0.2193,-6.3022 -0.3487,-9.5307 -0.1231,-2.7738 -0.2715,-5.7784 -0.4399,-8.6452 -0.1096,-2.026 -0.2473,-4.0503 -0.3987,-6.0736 -0.071,-0.8565 -0.1558,-1.9994 -0.2526,-2.9663 -0.062,-0.6233 -0.1224,-1.3279 -0.1787,-1.8006 -0.4584,-4.6305 -1.2484,-9.2276 -2.4342,-13.7279 -1.7419,-7.4186 -3.019,-14.9334 -4.4506,-22.4149 -0.5074,-2.5398 -1.0804,-5.0661 -1.7014,-7.5805 -0.1124,-0.4435 -0.3144,-1.2414 -0.4679,-1.8221 -0.1918,-0.704 -0.358,-1.354 -0.5292,-1.9541 -0.5192,-1.8596 -1.1001,-3.7014 -1.7119,-5.5324 -0.1205,-0.3499 -0.3782,-1.1095 -0.5645,-1.6142 -1.5258,-4.2544 -3.3983,-8.4191 -5.9609,-12.1573 -3.2223,4.4267 -7.9949,7.4197 -12.9652,9.5358 -4.0157,1.8715 -8.5594,1.689 -12.8708,1.3978 -1.1583,-0.1225 -2.5627,0.013 -3.771,-0.3426 -1.4251,-0.4122 -2.9313,-0.552 -4.3675,-0.9569 -9.2665,-2.2689 -17.7958,-6.7326 -26.0509,-11.398 -8.4977,-4.849 -16.6145,-10.3216 -24.886,-15.5378 -0.887,-0.5529 -1.9898,-1.2124 -2.7507,-1.6846 -8.0664,-4.7992 -16.4545,-9.3312 -25.5957,-11.7001 -4.5454,-1.2049 -9.2387,-1.7469 -13.9333,-1.8574 -1.798,-0.048 -3.6235,-0.2268 -5.4045,-0.1934 -3.4877,1.7125 -6.9754,3.4251 -10.463,5.1376 z" />
- <path
- class="remote area" id="Ain-Sefra"
- d="m 954.69141,1544.0684 c -9.30942,4.8804 -18.58807,9.892 -28.38015,13.754 -4.71035,1.8016 -9.65134,2.8851 -14.54291,4.066 -11.05401,2.5237 -22.21986,4.5393 -33.42069,6.2893 -4.1114,0.6368 -8.23288,1.2056 -12.33985,1.8711 -0.55265,0.092 -1.44609,0.2471 -2.12942,0.3633 -5.6092,0.9691 -11.39064,2.1733 -16.1553,5.4676 -5.39158,3.6279 -9.86481,8.4114 -15.07782,12.2727 -7.64398,6.009 -15.5931,11.613 -23.40843,17.3932 -3.77911,2.8143 -7.53132,5.665 -11.23098,8.5833 -0.66476,0.5366 -1.56217,1.2491 -2.31629,1.8533 -3.10702,2.4592 -6.07734,5.0805 -9.0763,7.6676 -7.68655,6.4772 -15.94053,12.3092 -24.73691,17.1828 -7.77206,4.2377 -16.12326,7.3113 -24.63492,9.6905 -8.97292,2.5929 -18.05181,4.7949 -27.09691,7.1175 -1.6257,0.4284 -3.43608,0.8977 -5.13281,1.3418 -1.70402,0.4503 -3.60813,0.9732 -5.38494,1.4644 -5.98857,1.6582 -11.96441,3.2797 -17.94634,5.0981 -10.08458,3.0671 -20.22389,6.4033 -30.80384,7.1835 -7.86943,0.6608 -15.77285,0.4034 -23.6598,0.5216 -1.19504,0.014 -2.64262,0.045 -3.93422,0.09 -3.25137,0.1075 -6.5014,0.338 -9.72008,0.8222 -0.3107,0.054 -1.04178,0.1529 -1.52428,0.2397 -5.37622,0.9065 -10.75088,2.0645 -16.02132,3.258 -2.72112,0.6231 -5.50304,1.3045 -8.1206,1.9785 -9.8378,2.5339 -19.69232,5.4964 -29.29083,8.5648 -13.75205,4.368 -27.42233,9.397 -41.29191,13.6096 -13.41891,4.0717 -27.06664,7.5899 -41.00337,9.3288 -8.64292,1.0823 -17.41402,1.4499 -26.08702,1.2264 -5.71955,-0.029 -11.5639,-0.3477 -17.1241,1.2654 -5.78518,1.622 -11.22001,4.016 -16.88946,6.0101 -10.61604,3.8075 -21.78592,5.6123 -32.82278,7.7279 -15.25989,2.9801 -30.49541,6.7449 -44.69377,13.2117 -7.72065,3.4228 -15.01023,8.0388 -23.33368,9.9229 -7.92109,1.8319 -16.08791,2.0566 -24.097,3.3406 -1.92728,0.2968 -3.88953,0.5177 -5.76798,1.0273 -5.73219,3.4817 -10.53391,8.2234 -15.78576,12.3491 -7.68598,6.285 -15.91985,11.947 -24.81347,16.3913 -6.14943,3.1412 -12.48242,5.8998 -18.78189,8.7217 0.27798,8.3619 0.39149,16.7312 0.86204,25.0853 0.21874,3.7587 0.70158,7.5928 2.38906,11.0084 2.97762,6.8377 6.6022,13.4581 11.31374,19.2632 2.86832,3.193 6.43291,5.975 8.11515,10.0446 1.27771,3.1715 0.86725,6.801 -0.54979,9.8546 -1.95619,4.6733 -5.07376,8.7223 -8.14582,12.7049 136.30169,0.1059 272.60337,0.2271 408.90507,0.3074 104.12108,0.028 208.24222,0.096 312.36327,-0.01 7.00757,-0.011 14.01516,-0.021 21.02267,-0.053 -2.92812,-7.6089 -6.0371,-15.1497 -8.73848,-22.844 -4.41269,-12.3566 -7.96288,-25.0461 -10.08499,-38.0047 -2.8819,-16.9009 -3.80988,-34.0412 -5.25516,-51.1024 -0.48064,-5.5584 -1.03262,-11.1604 -1.6567,-16.7459 -0.46157,-4.8313 -0.43306,-9.6925 -0.58872,-14.5397 -0.32673,-18.6258 -0.30905,-37.2563 -0.33491,-55.8848 0.0174,-35.8087 0.12951,-71.6174 0.08,-107.4261 -0.0175,-10.1522 -0.0312,-20.3044 -0.10662,-30.4563 -0.33723,0.1758 -0.67447,0.3516 -1.01171,0.5274 z" />
+<svg id="svgmap" width="1503px" height="1103px" viewBox="0 0 1503 1103">
+<g fill="#555">
+<rect width="1503" height="53" x="0" y="0" />
+<rect width="1503" height="53" x="0" y="1050" />
+<rect width="53" height="1103" x="0" y="0" />
+<rect width="53" height="1103" x="1450" y="0" />
</g>
-</svg>
-<!-- scale 1.80333333333333333333 -->
+<g font-family="URW Gothic" text-anchor="middle" fill="white">
+<text font-size="48" x="200" y="120" fill="white">ALGERIA</text>
+<text fill-opacity="0.7" font-weight="bold" letter-spacing="0.5" font-size="12" x="200" y="145" fill="white">The War of Independence 1954-1962</text>
+<text fill-opacity="0.7" font-weight="bold" letter-spacing="0.5" font-size="12" x="200" y="165" fill="white">Game design by Brian Train</text>
+</g>
+
+<rect x="895" y="110" width="135" height="100" fill="#888" />
+<rect x="895" y="110" width="45" height="100" opacity="0.6" fill="#002153" />
+<rect x="940" y="110" width="45" height="100" opacity="0.6" fill="#ffffff" />
+<rect x="985" y="110" width="45" height="100" opacity="0.6" fill="#cf0821" />
+<rect class="country area" id="France" x="895.5" y="110.5" width="135" height="100" stroke-width="3" />
+
+<circle class="urban2" id="Oran-2" cx="290" cy="340" r="85" />
+<circle class="urban2" id="Algiers-2" cx="715" cy="210" r="85" />
+<circle class="urban2" id="Constantine-2" cx="1200" cy="195" r="85" />
+
+<path class="country area" id="Morocco" d="M59 594c-3 1-1 4-2 7v444h65c2-4 11-9 5-13-6-8-10-17-10-26-1-28 1-55-6-82-3-12-6-24-6-37l-3-51c-1-12 0-24-5-35-7-13-12-26-15-41-4-16 0-34-6-50-6-26-11-53-15-79l-1-37h-1z" />
+<path class="country area" id="Tunisia" d="M1443 325c-6-1-10 4-15 4-6 2-11 1-15-3-8-2-6 9-7 13-1 8-1 17 3 24 5 11 10 22 13 34l12 49c3 17 3 35 3 53 0 16-4 32-7 48-3 18-2 36-2 53 0 16 3 31 2 46-1 17-9 34-14 50-8 19-16 39-25 57-11 19-27 33-39 50-6 12-8 25-9 38-2 14 2 29-2 43-2 11-8 20-12 30-2 6 5 10 9 13 8 5 17 10 20 19 4 9 6 19 8 28 4 10 11 19 17 28 7 8 15 15 17 25l5 18h40V364l-1-37c-2 2 0-1-1-2z" />
+
+<path class="urban area" id="Oran" d="M299 466l-13 5c-2 4-2 13-6 15-4-3-9 2-7 5 5 4 12 2 17 0l18-4c7-4-5-6-3-12 0-4-5-6-6-9z" />
+<path class="urban area" id="Algiers" d="M719 334c-4 2-10-1-10 6-3 3-8 1-7 6-2 4-5 8 1 9 6-3 13-5 19-2 6-4 7-12 3-17-2-1-4-3-6-2z" />
+<path class="urban area" id="Constantine" d="M1202 483c-6 0-13 2-16 8-2 5 1 12 7 14 6 3 13 2 19 1 7-1 11-8 8-14-2-6-8-9-13-9h-5z" />
+
+<path class="rural area" id="Philippeville" d="M1258 298c4 3 9 8 6 13-3 8-8 14-15 19-4 5-11-4-13 4-3 5-10 0-14 4-5 2-8-3-11 2-4 5-3 11-3 17l-1 92v23c10 1 18 7 22 16 2 8-1 18-9 22-4 4-11 3-15 5-1 7-2 14 0 21 3 16 3 32 3 48 10-3 19-7 29-9 14-2 29 3 43 4 0-21 3-41 4-62 1-12 1-24 4-36 2-12 3-25 7-38 4-9 15-12 25-13 4-2 12 2 15-3 2-8 4-16 8-23 4-10 8-21 8-32 0-6-1-13 2-18l7-20c-9 3-21 1-26-8-3-5 0-12-1-15-6-1-8-9-15-5-5 2-9-3-14-4-6-3-12 7-16 1-3-6-11-2-17-3l-13-2z" />
+<path class="rural area" id="Setif" d="M1157 301c-5 1-10 1-13 6-5 1-12 9-4 12-6 1-3 11-11 12-6 4-13-2-19 0-5 4-11 7-17 7-4 5-11-1-15 2-7 2-1 10-1 14 4 9 0 19-3 28-4 15-5 30-6 46-2 14-12 26-22 36-8 9-18 16-27 25l-42 41c-5 3-3 9 1 13 5 5 12 8 20 10 16 4 33 9 50 10l54 6c14 1 26 8 39 12l36 6h22c1-18 1-36-4-54-1-6 1-12 2-18-10-1-20-8-20-19-1-8 4-15 11-19 5-3 12-1 10-8l1-93 1-33c2-5 7-9 11-13l-14-4c-5 5-11 1-16-2-5-1-10-4-10-10-2-5-5-12-11-13h-3z" />
+<path class="rural area" id="Tizi-Ouzou" d="M899 321c-4 3-8 2-10 7-5 4-11-3-15 2-5 0-9-1-14 1-6-2-13-4-19-3-6 2-7-7-13-3l-7 2c-8 5-16 9-25 12-4 2-8 4-3 8l19 36c3 6 2 14 3 21-1 11 0 23-2 35-3 5 5 0 9 1 13 0 27 4 40 3l49 1c6-2 14-2 17-9l5-29c2-12 2-23 2-35 2-12 2-24 2-37-1-4 2-11-5-9-6-1-12-3-17 0-6 1-12-2-16-4z" />
+<path class="rural area" id="Souk-Ahras" d="M1394 320c-5 3-12 4-17 8-7 1-8 6-10 12l-8 23c0 8 1 16-1 24-3 14-11 26-14 41-1 5-4 11-10 11-9 1-18 0-26 5-7 3-6 11-8 18-3 18-7 36-7 55-1 21-5 42-5 64l53 1c11 2 22 3 32 1l46-5c0-17 2-34 6-50 4-20 3-40 3-60-1-19-7-38-12-56-3-14-5-27-12-40-4-7-8-16-7-25l2-21c-3 0-4-4-5-6z" />
+<path class="rural area" id="Bougie" d="M945 328c1 14 1 27-1 41-1 11 0 23-2 35l-6 33c-1 5-5 9-9 11 11 3 21 7 31 12 13 6 25 14 38 18 6 1 13 5 19 3 10-10 23-18 32-30 6-8 12-16 12-26 1-12 2-24 5-36 2-10 6-19 6-29-2-6-4-13-4-20-2-6-10 1-14 1-3 5-11 2-12 8-2 5-2 11-7 14-3 5-9 5-14 7-7 2-14 2-21 1-7-2-14-6-20-11-5-3-1-12-3-14-5 0-5-7-11-7-5-2-7-7-12-8-1 0-6-5-7-3z" />
+<path class="rural area" id="Medea" d="M751 338c0 6-5 10-11 11-7-2-7 8-12 11-5 4-11-1-17 1-4 2-11 5-15 0-4-7-11-3-15 1-5 4-10 10-17 8-5 0-13-3-10 5 2 12 3 25 8 36 5 17 4 36 4 54 0 10 1 19 3 29 3 17-1 34-2 51-2 19-4 38-4 57l45-30c9-6 20-9 29-16 11-9 19-21 29-31 7-7 15-13 25-13 6 0 11-4 9-10-1-16-7-31-5-47 2-8 11-14 10-24l1-41-9-18-15-25c-8 1-16-4-25-5-2 0-4-3-6-4z" />
+<path class="rural area" id="Orleansville" d="M637 361c-5-1-11 3-14 3-10 4-21 8-32 6-5-2-10-1-16-1l-23 1c-6 3-12 1-18 3-7 1-12-5-19-4-2 4-5 7-10 5 0 8 4 14 5 21 3 11 9 21 12 31l14 34 2 51c-1 7-3 15 0 21 5 15 6 31 9 46l1 16c14 0 27 6 40 12 8 3 16 4 25 4 12-1 24 1 36-1 10 0 4-11 6-17l6-69c1-12 1-25-2-38-3-19-1-38-3-56 0-13-7-24-8-37-2-9-2-19-3-28-1-4-5-3-8-3z" />
+<path class="rural area" id="Mostaganem" d="M496 374c-5 4-12 1-17 5-5 2-12 2-15 7s-5 11-11 10-8 7-14 6h-9c-5 4-11 7-17 9-6 4-12 9-19 9s-3 11-11 11c-5 2-13 4-9 11l8 47c3 15 6 29 7 44s3 30 11 44l14 29c4 7 4 16 8 23 5 10 14 17 19 27l8 14c12-8 27-12 42-15 13-3 25-5 38-5 2-1 0-8 1-12 0-14 9-26 9-40 1-13-2-27-4-40-1-10-3-19-6-29-3-8 1-16 0-25l-2-43c-3-13-10-25-15-37l-11-30c-2-6-5-13-5-20z" />
+<path class="rural area" id="Sidi-Bel-Abbes" d="M365 445c-3 7-9 13-12 21-3 7-8 13-15 17-4 4-10 6-15 4-7-3-7 10-14 9l-24 6c-7 2-14-2-19-5s-12-3-17-5c-4-2-7-9-8-2 0 8-9 6-14 3-2 4-4 9-10 6-2 4-5 8-10 9-2 5-7 7-10 8 0 7-7 13-1 18 5 8 8 17 9 27 1 12 3 23 3 35 1 10 2 20 7 28l24 42c10 14 18 28 26 43 4 9 10 17 16 25l32-2c12-2 23-8 34-14 6-3 14-6 19-12 11-10 23-19 37-25 12-4 25-4 38-6-5-10-9-21-17-29-6-8-13-17-15-27-2-11-9-19-13-29-5-12-11-24-13-37-3-15-3-30-6-44l-7-46-5-19v1z" />
+<path class="rural area" id="Bordj-Bou-Arreridj" d="M821 449c-6 0-12 3-17 7-2 6 0 12 1 19 1 11 5 22 4 34-3 7-10 12-18 12-11 0-19 10-26 18-2 3-6 5-1 6 8 2 17 4 23 10 13 8 27 16 41 22 5 3 11 5 18 5 10-4 20-11 31-9 13 2 26 10 28 23l32-40 30-29c7-8 16-14 23-21l17-17c-14-3-28-8-41-15-9-6-18-10-27-13-9-4-19-6-28-8-23-1-45 0-67-2l-23-2z" />
+<path class="rural area" id="Tlemcen" d="M189 539c-4 8-9 16-15 23v-7c-4 6-11 5-17 6-5 3-11 4-15 8l-11 10c-7 2-11 10-19 10-6-1-9 6-15 5-6 3-12 2-18 1-4 1-9-3-10-2-1 19 0 39 4 58 3 21 8 42 13 63 4 16 1 33 6 49l7 23 27 2c10 1 18-2 27-5 8-2 17 0 25 0 7 2 12-2 17-6l27-25c6-5 12-12 21-13s19-1 28-3c-8-10-14-22-19-33-9-17-20-31-29-48-7-12-15-23-20-36-5-15-3-32-5-47-2-8-1-16-4-23l-5-10z" />
+<path class="rural area" id="Barika" d="M962 544c-16 13-29 29-41 46-5 7-11 13-15 21 4 5 11 8 15 14 8 7 8 18 9 28 1 11 1 21-1 31l-9 70-2 21c17 0 34 5 51 7 11 3 22 4 33 8 5 1 11 7 15 5 10-12 18-26 27-39 17-21 31-44 47-66l54-77c3-5 3-12 8-16 3-2 3-7-2-6-9-1-18-3-26-7-13-6-27-7-41-8l-46-5c-17-2-34-7-51-12-9-3-17-10-21-18l-4 3z" />
+<path class="rural area" id="Ain-Qussera" d="M707 582c-14 11-29 21-44 30-8 6-19 7-29 6-12 0-24 1-36-1s-22-7-33-12c-6-1-13-4-18-1-1 13-9 24-9 37-1 10 6 18 11 26 6 6 11 13 13 22 3 12 2 24 4 36 2 22 7 43 9 64l4 34c2 6 8 9 14 10 12 2 25-1 38-1 18-2 35-3 53-3 7 3 14 8 20 12 4 3 10 2 15 2l20-3c4-2 10-2 7-8-1-22-6-43-8-65-2-11-5-23-3-34s3-22 0-33c-2-14 3-27 5-41 1-9 1-18-2-26-6-14-18-25-25-39l-6-12z" />
+<path class="rural area" id="Tebessa" d="M1243 585c-10 1-19 5-29 8-6 2-13 4-20 3l-30-3c0 7-7 10-8 16-3 10-11 18-16 26l-29 41c7 4 14 8 22 8 8 2 15 6 22 10 7 5 14 10 23 12 18 6 37 11 57 14l58 11 22 5c13 1 26 5 39 7l29 6c9-16 15-32 22-48 5-16 12-31 15-46 3-17 0-34 0-50l-1-19-55 7c-12 0-23-3-35-3-18 0-36 1-55-1-10-2-20-5-31-4z" />
+
+<path class="remote area" id="Sidi-Aissa" d="M755 551l-15 13c-4 2-10 7-16 9-4 2-12 3-7 9 6 15 17 27 25 41 9 15 8 34 4 51-3 10-4 21-1 32 3 15-5 31-1 46l7 48 4 35 45-15 29-14c10-3 20 1 28 5 12 6 22 15 35 18 8 2 11-8 13-15 2-9 2-19 3-29 3-30 6-59 11-89l3-36c-1-11 0-23-8-31-5-5-11-8-15-13-3-8 0-16-4-23-5-8-16-13-25-11-8 1-14 5-22 8-8 2-17-2-25-5-16-7-30-17-45-26-7-4-15-6-23-8z" />
+<path class="remote area" id="Mascara" d="M523 659c-14 0-27 4-41 7-12 2-23 8-33 15-10 4-20 4-30 5l-14 3c3 10 4 21 5 31l-1 57c4 12 7 25 7 38 1 12 2 25 5 37 2 7 2 15 5 22 5 4 9 13 13 15l26-20c9-6 21-5 31-8 9-1 18-4 25-8 9-5 19-9 29-11 6-2 12-4 16-9 7-4 4-11 3-18 0-13-3-25-4-38-2-16-6-32-7-48-2-9-2-18-2-27-1-11-5-21-12-29l-11-14h-10z" />
+<path class="remote area" id="Batna" d="M1105 684c-17 24-32 49-50 72-10 13-18 27-27 40-3 2-5 5 0 6 12 6 25 12 39 16l49 17c22 8 45 15 65 29 13 9 27 17 42 22l44 13 34 10c6 1 13 3 19 6 1-8 6-14 9-22 4-10 6-21 5-32-2-16 1-33 5-49 2-10 8-18 15-25 8-10 17-20 24-31-18-3-38-6-56-11-10-1-19-1-28-4-17-5-35-7-53-11l-48-10c-13-4-26-7-37-14-8-5-14-12-23-13s-16-3-23-8c-1 0-4-2-5-1z" />
+<path class="remote area" id="Saida" d="M397 693c-11 7-20 16-30 24l-25 13c-13 7-28 11-42 12l-44 5c-7-1 0 8-1 13 1 22-2 44 1 66 2 18 4 36 4 54 1 7 0 13 2 19 3 11 5 22 11 32 2 4 3 11 8 7 21-5 40-14 61-17 10-1 20 1 30-3l42-12c6-2 12-6 18-11l-14-18-7-29c-3-13-3-26-4-39 0-10-4-20-5-30-2-15-1-30-1-45 1-13-1-26-3-39 0 0 0-3-1-2z" />
+<path class="remote area" id="Mecheria" d="M243 748c-7 1-11 8-17 12l-31 28c-5 4-13 5-20 4-7 0-14-3-21-1-11 6-25 7-37 4-4 0-11-2-13 0 7 13 6 28 7 43l3 52c0 18 8 35 9 53l3 43c7-3 13-6 19-11 5-4 9-9 16-9 7-1 15-1 22-6 12-6 27-8 41-11 8-2 16-7 25-6 6 0 13 0 19-2-5-10-10-20-12-31-3-10-4-19-4-29 0-18-3-36-5-54-2-22 0-44 0-67l-4-12z" />
+<path class="remote area" id="Biskra" d="M917 784l-3 31c-2 5-4 10 1 14 6 11 7 24 10 36l2 25v83c-1 24 0 48-7 72h476c-2-10-4-21-12-29-9-11-19-23-25-36l-7-28c-2-6-7-11-13-14s-11-7-16-12c-12-7-26-8-38-13l-38-11c-24-6-47-14-67-28-13-9-27-16-41-21l-46-17c-20-8-42-12-62-23-12-5-23-12-36-16-20-5-40-8-61-12-5-1-12-2-17-1z" />
+<path class="remote area" id="Laghouat" d="M827 816c-10 6-21 11-32 15-17 6-35 12-52 16-7 3-13 4-19 4-9 0-20 3-27-4-4-4-10-8-15-9-22-1-44 2-65 3-11 1-23 3-34-2-4-2-7-7-10 0-4 4-10 8-16 10-5 2-13 2-17 5l-1 104c0 13 3 25 3 38 1 15 5 29 11 43 1 4 2 7 6 6h352c4-13 6-27 6-40a1611 1611 0 00-3-149c-1-9-3-17-7-24-5 6-12 7-19 5-17-4-29-19-46-23-5-1-10-1-15 2z" />
+<path class="remote area" id="Ain-Sefra" d="M530 858c-8 5-17 9-27 10-9 3-19 3-29 6-6 3-10 8-16 12l-26 20c-9 7-21 11-33 14l-34 9c-11 1-21-1-32 3-24 4-46 16-70 19-9 1-19-1-27 3-15 6-31 6-46 12-6 3-13 7-21 7-4 1-10 1-14 4-8 7-17 14-27 18-5 1-1 9-2 14 0 7 4 13 8 18 5 3 6 10 2 14-3 3-2 4 2 4h408c-6-14-11-29-12-45l-3-34V858h-1z" />
+
+<g pointer-events="none" font-family="Source Sans" font-weight="bold" font-style="italic" text-anchor="middle">
+
+<g font-size="14" fill="#ddf">
+<text x="450" y="130">Border Zone DRM</text>
+</g>
+
+<g font-size="16" fill="#ddf">
+<text x="290" y="250">Oran (U)</text>
+<text x="715" y="120">Algiers (U)</text>
+<text x="1200" y="105">Constantine (U)</text>
+</g>
+
+<g font-size="13" fill="#ddf">
+<text x="840" y="294">Tizi Ouzou</text>
+<text x="840" y="308">III • 1</text>
+</g>
+
+<g font-size="13" fill="#444">
+
+<text x="130" y="754">Tlemcen</text>
+<text x="130" y="767">V • 2</text>
+
+<text x="960" y="440">Bougie</text>
+<text x="960" y="453">III • 3</text>
+
+<text x="1025" y="609">Barika</text>
+<text x="1025" y="622">I • 1</text>
+
+<text x="1220" y="818">Batna (R)</text>
+<text x="1220" y="831">I • 2</text>
+
+<text x="1085" y="948">Biskra (R)</text>
+<text x="1085" y="961">I • 3</text>
+
+<text x="1300" y="657">Tebessa</text>
+<text x="1300" y="671">I • 4</text>
+
+<text x="1105" y="356">Setif</text>
+<text x="1105" y="370">II • 1</text>
+
+<text x="1317" y="356">Philippeville</text>
+<text x="1317" y="370">II • 2</text>
-<div id="tracker"></div>
-<div id="drm"></div>
+<text x="1380" y="439">Souk Ahras</text>
+<text x="1380" y="452">II • 3</text>
+
+<text x="865" y="460">Bordj Bou Arreridj</text>
+<text x="860" y="474">III • 2</text>
+
+<text x="725" y="383">Medea</text>
+<text x="725" y="396">IV • 1</text>
+
+<text x="610" y="577">Orleansville</text>
+<text x="610" y="590">IV • 2</text>
+
+<text x="690" y="733">Ain Qussera</text>
+<text x="690" y="747">VI • 2</text>
+
+<text x="790" y="724">Sidi Aissa (R)</text>
+<text x="790" y="737">VI • 1</text>
+
+
+<text x="155" y="878">Mecheria (R)</text>
+<text x="155" y="891">V • 1</text>
+
+<text x="290" y="584">Sidi Bel Abbes</text>
+<text x="290" y="597">V • 3</text>
+
+<text x="430" y="515">Mostaganem</text>
+<text x="430" y="528">V • 4</text>
+
+<text x="300" y="839">Saida (R)</text>
+<text x="300" y="852">V • 5</text>
+
+<text x="450" y="707">Mascara (R)</text>
+<text x="450" y="720">V • 6</text>
+
+<text x="310" y="967">Ain Sefra (R)</text>
+<text x="310" y="981">V • 7</text>
+
+<text x="750" y="971">Laghouat (R)</text>
+<text x="750" y="984">V • 8</text>
+
+</g>
+
+<g font-size="27" letter-spacing="3">
+<text x="830" y="-1410" transform="rotate(90)">Tunisia</text>
+<text x="-880" y="85" transform="rotate(-90)">Morocco</text>
+</g>
+
+</g>
+</svg>
+
+<div id="decor"></div>
-<div id="areas"></div>
-<div id="area_markers"></div>
<div id="boxes"></div>
-<div id="markers">
+<div id="pieces">
<div id="turn_now" class="counter turn_now"></div>
<div id="fln_psl" class="counter fln_psl"></div>
<div id="fln_ap" class="counter fln_ap"></div>
<div id="gov_psl" class="counter gov_psl"></div>
- <div id="air_avail" class="counter air_avail"></div>
+ <div id="air_avail" class="counter air_avail hide"></div>
<div id="air_max" class="counter air_max"></div>
- <div id="helo_avail" class="counter helo_avail"></div>
+ <div id="helo_avail" class="counter helo_avail hide"></div>
<div id="helo_max" class="counter helo_max"></div>
<div id="naval" class="counter naval_pts"></div>
- <div id="border_zone" class="counter border_zone"></div>
+ <div id="border_zone" class="counter border_zone hide"></div>
</div>
-<div id="units"></div>
-
-</div>
</div>
<div id="gov_supply_panel" class="panel">