summaryrefslogtreecommitdiff
path: root/play.html
diff options
context:
space:
mode:
Diffstat (limited to 'play.html')
-rw-r--r--play.html888
1 files changed, 888 insertions, 0 deletions
diff --git a/play.html b/play.html
new file mode 100644
index 0000000..d397148
--- /dev/null
+++ b/play.html
@@ -0,0 +1,888 @@
+<!DOCTYPE html>
+<html>
+<head>
+<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1">
+<meta charset="UTF-8">
+<title>HAMMER OF THE SCOTS</title>
+<link rel="icon" href="Scottish_Thistle_(Heraldry).svg">
+<link rel="stylesheet" href="/fonts/fonts.css">
+<link rel="stylesheet" href="/common/grid.css">
+<link rel="stylesheet" href="/common/battle_abc.css">
+<link rel="stylesheet" href="blocks.css">
+<script defer src="/socket.io/socket.io.min.js"></script>
+<script defer src="/common/client.js"></script>
+<script defer src="data.js"></script>
+<script defer src="ui.js"></script>
+<style>
+
+.grid_center { background-color: slategray; }
+.grid_role { background-color: silver; }
+.grid_top { background-color: silver; }
+.grid_top.your_turn { background-color: orange; }
+.one .role_name { background-color: salmon; }
+.two .role_name { background-color: skyblue; }
+
+.card {
+ width: 225px;
+ height: 350px;
+ border-radius: 10px;
+ background-color: #883737;
+}
+
+.small_card {
+ width: 90px;
+ height: 140px;
+ border-radius: 4px;
+}
+
+.role_info {
+ display: flex;
+ justify-content: center;
+}
+
+/* MAP */
+
+.map {
+ position: relative;
+ display: block;
+ background-color: darkslategray;
+ width: 1688px;
+ height: 1950px;
+}
+
+.map svg {
+ position: absolute;
+}
+
+.map svg image {
+ pointer-events: none;
+}
+
+.map svg path.area {
+ opacity: 0;
+ fill-opacity: 0.4;
+ fill: white;
+}
+.map svg path.area.where {
+ opacity: 1;
+ fill: darkslategray;
+}
+.map svg path.area.highlight {
+ cursor: pointer;
+ opacity: 1;
+ fill: white;
+}
+
+.map.hide_blocks div.blocks {
+ visibility: hidden;
+}
+
+/* TURN MARKER */
+
+div.turn {
+ pointer-events: none;
+ position: absolute;
+ width: 66px;
+ height: 66px;
+ background-size: cover;
+ background-repeat: no-repeat;
+ background-image: url(turn_marker.jpg);
+ box-shadow: 1px 1px 3px rgba(0,0,0,0.5);
+ border-radius: 4px;
+ transition: 700ms ease;
+}
+
+
+div.turn.year_1297 { left: 1511px; top: 221px; }
+div.turn.year_1298 { left: 1511px; top: 306px; }
+div.turn.year_1299 { left: 1511px; top: 392px; }
+div.turn.year_1300 { left: 1511px; top: 478px; }
+div.turn.year_1301 { left: 1511px; top: 563px; }
+div.turn.year_1302 { left: 1511px; top: 649px; }
+div.turn.year_1303 { left: 1511px; top: 734px; }
+div.turn.year_1304 { left: 1511px; top: 820px; }
+div.turn.year_1305 { left: 1511px; top: 906px; }
+div.turn.year_1306 { left: 1511px; top: 992px; }
+div.turn.year_1307 { left: 1511px; top: 1077px; }
+div.turn.year_1308 { left: 1511px; top: 1163px; }
+div.turn.year_1309 { left: 1511px; top: 1249px; }
+div.turn.year_1310 { left: 1511px; top: 1334px; }
+div.turn.year_1311 { left: 1511px; top: 1420px; }
+div.turn.year_1312 { left: 1511px; top: 1506px; }
+div.turn.year_1313 { left: 1511px; top: 1591px; }
+div.turn.year_1314 { left: 1511px; top: 1677px; }
+
+/* BLOCKS */
+
+.oldblocks div.block { border-radius: 8px; }
+.newblocks div.block { border-radius: 4px; }
+
+.map div.block {
+ position: absolute;
+}
+
+div.block {
+ background-size: cover;
+ background-repeat: no-repeat;
+ width: 60px;
+ height: 60px;
+ box-shadow: 0px 0px 3px black;
+}
+
+.oldblocks div.block.England { border: 3px solid brown; background-color: brown; }
+.oldblocks div.block.Scotland { border: 3px solid #06a; background-color: #06a; }
+.oldblocks div.block.highlight { border-color: white; }
+.oldblocks div.block.selected { border-color: yellow; }
+.oldblocks div.block.highlight { box-shadow: 0px 0px 4px 1px white; }
+.oldblocks div.block.selected { box-shadow: 0 0 4px 1px yellow; }
+
+.newblocks div.block.England { border: 2px solid #a12; background-color: #a12; }
+.newblocks div.block.Scotland { border: 2px solid #059; background-color: #059; }
+.newblocks div.block.highlight { box-shadow: 0px 0px 2px 3px white; }
+.newblocks div.block.selected { box-shadow: 0px 0px 2px 3px yellow; }
+
+div.block.highlight { cursor: pointer; }
+div.block.moved { filter: grayscale(50%) brightness(80%); }
+div.block.highlight.moved { filter: grayscale(60%) brightness(95%); }
+
+div.block.r1 { transform: rotate(-90deg); }
+div.block.r2 { transform: rotate(-180deg); }
+div.block.r3 { transform: rotate(-270deg); }
+
+div.block:hover { z-index: 1; }
+
+div.block {
+ transition-property: top, left, transform;
+ transition-duration: 700ms, 700ms, 200ms;
+ transition-timing-function: ease;
+}
+
+/* HERALD DIALOG */
+
+.herald {
+ background-color: white;
+ border: 1px solid black;
+ position: absolute;
+ top: 100px;
+ left: 100px;
+ box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.5);
+ z-index: 50;
+ user-select: none;
+ visibility: hidden;
+}
+.herald.show {
+ visibility: visible;
+}
+.herald_header {
+ font-weight: bold;
+ cursor: move;
+ border-bottom: 1px solid black;
+ background-color: lightsteelblue;
+ padding: 3px 1em;
+}
+.herald_noble {
+ padding: 3px 1em;
+ display: none;
+}
+.herald_noble:hover {
+ color: white;
+ background-color: black;
+}
+.herald_noble.show {
+ display: block;
+}
+
+/* BATTLE BOARD */
+
+.battle { background-color: silver; }
+.battle .battle_message { background-color: lightsteelblue; }
+.battle .battle_header { background-color: steelblue; color: white; font-weight: bold; }
+.battle .battle_separator { background-color: steelblue; }
+
+.battle_line.enemy .battle_menu_list { min-height: 0; }
+.battle_reserves > td > div { height: 66px; }
+.battle_a_cell > div { min-width: 240px; }
+.battle_b_cell > div { min-width: 240px; }
+.battle_c_cell > div { min-width: 240px; }
+
+/* CARD AND MARKER IMAGES */
+
+div.card_back {
+ background-image: url('cards/card_back.svg');
+ background-color: gainsboro;
+ background-size: contain;
+ background-position: 0% 40%;
+ background-repeat: no-repeat;
+}
+
+div.card_truce{background-image:url('cards/card_truce.jpg')}
+div.card_herald{background-image:url('cards/card_herald.jpg')}
+div.card_sea_move{background-image:url('cards/card_sea_move.jpg')}
+div.card_pillage{background-image:url('cards/card_pillage.jpg')}
+div.card_victuals{background-image:url('cards/card_victuals.jpg')}
+div.card_1{background-image:url('cards/card_1.jpg')}
+div.card_2{background-image:url('cards/card_2.jpg')}
+div.card_3{background-image:url('cards/card_3.jpg')}
+
+</style>
+</head>
+<body class="oldlabels">
+
+<div class="status" id="status"></div>
+
+<div class="chat_window">
+<div class="chat_header">Chat</div>
+<div class="chat_text"></div>
+<form class="chat_form" action=""><input id="chat_input" autocomplete="off"></form>
+</div>
+
+<table class="battle">
+<tr>
+<th class="battle_header" colspan=4></th>
+<tr class="battle_reserves enemy">
+<td colspan=4><div id="ER"></div></td>
+<tr class="battle_line enemy">
+<td class="battle_a_cell"><div id="EA"></div></td>
+<td class="battle_b_cell"><div id="EB"></div></td>
+<td class="battle_c_cell"><div id="EC"></div></td>
+<tr class="battle_separator">
+<td colspan=4>
+<tr class="battle_line friendly">
+<td class="battle_a_cell"><div id="FA"></div></td>
+<td class="battle_b_cell"><div id="FB"></div></td>
+<td class="battle_c_cell"><div id="FC"></div></td>
+<tr class="battle_reserves friendly">
+<td colspan=4><div id="FR"></div></td>
+<tr>
+<th class="battle_message" colspan=4></th>
+</table>
+
+<div class="herald">
+<div class="herald_header">Name an enemy noble:</div>
+<div id="herald+Angus" class="herald_noble" onclick="on_herald('Angus')">Angus</div>
+<div id="herald+Argyll" class="herald_noble" onclick="on_herald('Argyll')">Argyll</div>
+<div id="herald+Atholl" class="herald_noble" onclick="on_herald('Atholl')">Atholl</div>
+<div id="herald+Bruce" class="herald_noble" onclick="on_herald('Bruce')">Bruce</div>
+<div id="herald+Buchan" class="herald_noble" onclick="on_herald('Buchan')">Buchan</div>
+<div id="herald+Comyn" class="herald_noble" onclick="on_herald('Comyn')">Comyn</div>
+<div id="herald+Dunbar" class="herald_noble" onclick="on_herald('Dunbar')">Dunbar</div>
+<div id="herald+Galloway" class="herald_noble" onclick="on_herald('Galloway')">Galloway</div>
+<div id="herald+Lennox" class="herald_noble" onclick="on_herald('Lennox')">Lennox</div>
+<div id="herald+Mar" class="herald_noble" onclick="on_herald('Mar')">Mar</div>
+<div id="herald+Mentieth" class="herald_noble" onclick="on_herald('Mentieth')">Mentieth</div>
+<div id="herald+Ross" class="herald_noble" onclick="on_herald('Ross')">Ross</div>
+<div id="herald+Steward" class="herald_noble" onclick="on_herald('Steward')">Steward</div>
+</div>
+
+<div class="grid_window">
+
+ <div class="grid_top">
+ <div class="menu">
+ <div class="menu_title"><img src="/images/cog.svg"></div>
+ <div class="menu_popup">
+ <div class="menu_item" onclick="toggle_fullscreen()">Fullscreen</div>
+ <div class="menu_separator"></div>
+ <div class="menu_item" onclick="old_block_style()">Old labels</div>
+ <div class="menu_item" onclick="new_block_style()">New labels</div>
+ <div class="menu_separator"></div>
+ <div class="menu_item" onclick="window.open('info/notes.html', '_blank')">Notes</div>
+ <div class="menu_item" onclick="window.open('info/rules.html', '_blank')">Rules</div>
+ <div class="menu_item" onclick="window.open('info/cards.html', '_blank')">Cards</div>
+ <div class="menu_item" onclick="window.open('info/blocks.html', '_blank')">Blocks</div>
+ <div class="menu_separator"></div>
+ <div class="menu_item" onclick="confirm_resign()">Resign</div>
+ <div class="menu_separator"></div>
+ <div class="menu_item" onclick="send_save()">&#x1F41E; Save</div>
+ <div class="menu_item" onclick="send_restore()">&#x1F41E; Restore</div>
+ <div class="menu_separator"></div>
+ <div class="menu_item" onclick="send_restart('Braveheart')">Braveheart</div>
+ <div class="menu_item" onclick="send_restart('The Bruce')">The Bruce</div>
+ <div class="menu_item" onclick="send_restart('Campaign')">Campaign</div>
+ </div>
+ </div>
+
+ <div class="image_button" onclick="toggle_blocks()"><img src="/images/earth-africa-europe.svg"></div>
+ <div class="image_button" onclick="toggle_log()"><img src="/images/scroll-quill.svg"></div>
+ <div class="image_button chat_button" onclick="toggle_chat()"><img src="/images/chat-bubble.svg"></div>
+
+ <div id="prompt" class="prompt">Connecting...</div>
+
+ <button id="end_pillage_button" onclick="on_button_end_pillage()" class="hide">
+ End pillage
+ </button>
+ <button id="end_builds_button" onclick="on_button_end_builds()" class="hide">
+ End builds
+ </button>
+ <button id="end_disbanding_button" onclick="on_button_end_disbanding()" class="hide">
+ End disbanding
+ </button>
+ <button id="disband_button" onclick="on_button_disband()" class="hide">
+ Disband
+ </button>
+ <button id="eliminate_button" onclick="on_button_eliminate()" class="hide">
+ Eliminate
+ </button>
+ <button id="end_retreat_button" onclick="on_button_end_retreat()" class="hide">
+ End retreat
+ </button>
+ <button id="end_regroup_button" onclick="on_button_end_regroup()" class="hide">
+ End regroup
+ </button>
+ <button id="end_move_phase_button" onclick="on_button_end_move_phase()" class="hide">
+ End move phase
+ </button>
+ <button id="crown_bruce_button" onclick="on_crown_bruce()" class="hide">
+ Coronation: Bruce
+ </button>
+ <button id="crown_comyn_button" onclick="on_crown_comyn()" class="hide">
+ Coronation: Comyn
+ </button>
+ <button id="return_of_the_king_button" onclick="on_return_of_the_king()" class="hide">
+ Return of the King
+ </button>
+ <button id="play_event_button" onclick="on_button_play_event()" class="hide">
+ Play event
+ </button>
+ <button id="pass_button" onclick="on_button_pass()" class="hide">
+ Pass
+ </button>
+ <button id="undo_button" onclick="on_button_undo()" class="hide">
+ Undo
+ </button>
+ </div>
+
+ <div class="grid_role">
+
+ <div class="role one">
+ <div class="role_vp" id="england_vp"></div>
+ <div class="role_name">England (<span class="role_user">$USER</span>)</div>
+ <div class="role_info">
+ <div class="small_card card_back" id="england_card"></div>
+ </div>
+ </div>
+
+ <div class="role two">
+ <div class="role_vp" id="scotland_vp"></div>
+ <div class="role_name">Scotland (<span class="role_user">$USER</span>)</div>
+ <div class="role_info">
+ <div class="small_card card_back" id="scotland_card"></div>
+ </div>
+ </div>
+
+ </div>
+
+ <div class="grid_log">
+ <div class="log" id="log"></div>
+ </div>
+
+ <div class="grid_center">
+
+<div id="map" class="map">
+
+<svg id="svgmap" width="1688px" height="1950px" viewBox="0 0 1688 1950">
+<g id="areas" transform="translate(0,1950) scale(0.1,-0.1)">
+<path id="area+Ross" class="area" d="M4865 17971 c-23 -5 -37 -19 -64 -68 -43 -77 -74 -94 -130 -69 -26
+12 -49 15 -73 11 -33 -6 -38 -4 -64 31 -47 61 -85 94 -109 94 -55 0 -65 -74
+-17 -123 24 -25 32 -42 32 -70 0 -41 23 -62 81 -73 54 -11 67 -21 94 -75 23
+-45 55 -92 114 -170 11 -14 39 -31 63 -38 24 -7 60 -28 80 -47 20 -18 55 -38
+77 -44 80 -21 104 -93 50 -154 -37 -43 -35 -47 60 -139 38 -38 73 -77 76 -87
+3 -10 22 -29 43 -42 39 -27 90 -116 112 -196 9 -37 9 -48 -5 -68 -33 -51 -61
+-24 -119 117 -41 99 -44 103 -82 116 -26 9 -74 44 -131 98 -50 47 -102 89
+-116 94 -25 10 -139 -7 -165 -23 -7 -4 -4 -22 6 -47 13 -34 25 -46 67 -65 27
+-13 55 -24 61 -24 18 0 51 -43 69 -88 14 -34 15 -45 5 -57 -17 -21 -44 -19
+-119 10 -116 45 -151 66 -176 110 -27 46 -62 80 -120 119 -53 35 -83 34 -91
+-1 -4 -16 -23 -65 -42 -111 -26 -61 -41 -84 -58 -88 -21 -5 -154 43 -202 74
+-31 20 -51 61 -63 130 -15 85 -17 89 -53 112 -54 33 -81 27 -111 -23 -54 -94
+-43 -183 30 -235 24 -17 56 -49 71 -72 26 -40 27 -43 16 -104 -7 -35 -12 -80
+-12 -100 0 -26 -7 -44 -25 -62 -15 -15 -25 -36 -25 -53 0 -33 -27 -61 -60 -61
+-29 0 -86 61 -125 131 -23 43 -27 59 -22 99 5 37 1 58 -20 101 -14 30 -28 77
+-32 104 l-6 50 -75 -1 c-45 0 -94 -8 -122 -18 -42 -16 -48 -23 -54 -54 -4 -19
+-3 -74 1 -121 10 -104 10 -143 1 -241 l-7 -75 48 -34 c44 -32 122 -61 164 -61
+32 0 68 -40 84 -95 18 -64 12 -100 -21 -122 -22 -14 -28 -13 -94 18 -71 32
+-72 32 -104 15 -25 -13 -41 -37 -75 -111 -24 -52 -41 -101 -38 -109 3 -8 24
+-26 45 -40 72 -45 142 -148 142 -207 0 -26 10 -41 50 -78 37 -34 50 -53 50
+-74 0 -15 9 -36 19 -46 17 -17 29 -18 106 -13 127 7 252 -14 288 -49 62 -62 6
+-139 -85 -116 -42 10 -164 1 -173 -14 -4 -5 -16 -9 -27 -9 -12 0 -32 -10 -44
+-21 -34 -32 -63 -19 -143 61 -38 39 -77 70 -86 70 -10 0 -47 32 -84 71 -65 70
+-113 105 -131 94 -17 -11 -59 -115 -73 -187 -9 -40 -20 -85 -26 -101 -20 -52
+-32 -158 -22 -191 5 -17 12 -48 16 -68 5 -31 11 -39 33 -44 77 -16 94 -43 67
+-106 -12 -31 -13 -45 -3 -82 10 -39 10 -51 -5 -81 -23 -49 -22 -62 14 -104 16
+-20 39 -46 49 -58 36 -44 101 -27 195 51 52 43 132 95 198 129 35 18 39 18 63
+3 40 -27 51 -61 31 -96 -9 -15 -17 -35 -17 -42 0 -27 35 -48 79 -48 37 0 49 6
+94 49 29 27 72 78 97 112 66 92 104 129 132 129 14 0 35 12 49 26 34 36 72 54
+116 54 59 0 101 16 142 53 49 45 137 78 231 87 119 13 185 27 229 49 22 12 50
+21 61 21 44 0 164 -61 215 -109 28 -26 59 -52 70 -58 26 -13 145 -31 280 -42
+69 -6 142 -19 195 -36 118 -37 212 -45 345 -29 141 17 302 72 439 152 55 33
+122 68 147 79 25 11 70 37 100 58 30 20 77 47 104 60 28 12 64 34 81 48 17 14
+56 35 86 47 31 11 75 35 99 53 83 61 323 178 448 219 85 27 100 35 142 82 26
+28 82 87 123 132 53 56 78 90 82 115 10 50 20 65 59 89 39 24 135 162 156 225
+8 24 43 71 85 115 95 101 185 232 170 247 -2 3 -20 0 -38 -5 -62 -20 -116 -24
+-140 -11 -13 7 -43 29 -67 51 -61 53 -85 51 -181 -17 -93 -65 -119 -69 -181
+-22 -24 17 -64 43 -88 57 -99 56 -104 113 -16 162 77 43 92 48 146 48 66 0 85
+12 94 57 4 20 14 51 22 67 12 22 14 46 9 97 -6 57 -3 81 19 152 33 111 57 132
+200 178 47 15 91 38 133 72 56 44 64 55 79 109 22 80 115 181 183 198 25 7 71
+31 104 54 79 55 223 193 212 203 -9 9 -4027 14 -4071 4z"/>
+<path id="area+Strathspey" class="area" d="M9580 15955 c-201 -58 -206 -61 -225 -111 -23 -61 -61 -103 -114
+-127 -39 -17 -57 -18 -166 -12 -67 4 -148 4 -181 0 -49 -7 -63 -13 -89 -42
+-16 -20 -54 -50 -82 -69 -29 -19 -53 -40 -53 -48 0 -29 22 -72 55 -106 34 -36
+53 -82 75 -182 12 -55 12 -59 -16 -115 -17 -35 -29 -77 -30 -105 -1 -25 -8
+-57 -15 -70 -15 -28 -80 -106 -132 -160 -44 -44 -117 -199 -117 -247 0 -35
+-20 -80 -45 -101 -9 -7 -44 -23 -78 -34 -66 -23 -107 -66 -107 -111 0 -30 76
+-124 106 -131 13 -3 46 -1 73 6 37 9 72 9 135 1 85 -10 86 -10 153 21 38 17
+93 51 123 74 63 48 146 92 181 95 13 1 52 1 86 1 57 -2 66 -5 108 -42 25 -22
+51 -40 57 -40 6 0 35 -25 64 -56 l54 -56 83 8 c45 5 118 8 162 6 371 -13 416
+-6 527 77 35 26 91 62 124 80 34 18 85 56 113 84 174 175 222 227 246 267 16
+25 49 70 75 101 25 30 52 71 60 90 8 19 23 50 35 69 12 19 37 73 55 119 19 46
+44 96 56 111 13 15 56 41 97 58 63 26 82 30 128 25 48 -5 59 -2 83 19 19 16
+31 39 37 72 5 26 25 74 44 106 36 59 72 169 82 247 5 40 3 44 -24 54 -15 6
+-53 11 -83 11 -30 0 -82 9 -115 20 -34 12 -83 20 -113 20 -36 -1 -67 5 -93 18
+-63 33 -125 22 -210 -37 -85 -58 -219 -113 -275 -113 -71 0 -185 32 -326 90
+-132 54 -160 69 -265 142 -61 42 -75 47 -138 51 -59 5 -87 1 -185 -28z"/>
+<path id="area+Buchan" class="area" d="M12891 15833 c-13 -3 -52 -27 -86 -53 -85 -68 -98 -71 -170 -49 -33
+10 -74 19 -91 19 -17 0 -52 11 -78 25 -26 14 -52 25 -58 25 -6 0 -32 -20 -58
+-44 -55 -52 -30 -48 -370 -49 -217 0 -238 1 -275 20 -35 18 -119 30 -177 25
+-16 -2 -54 -107 -73 -202 -4 -19 -24 -69 -45 -110 -21 -41 -43 -94 -50 -117
+-24 -93 -103 -145 -205 -137 -50 5 -68 2 -105 -18 -42 -21 -48 -30 -91 -128
+-90 -205 -173 -329 -330 -495 -47 -49 -93 -102 -102 -117 -19 -30 -109 -101
+-182 -143 -27 -15 -75 -47 -105 -71 -111 -85 -164 -100 -387 -110 -143 -6
+-153 -8 -153 -26 0 -13 14 -25 48 -40 26 -11 61 -32 77 -45 48 -38 179 -123
+191 -123 6 0 20 -11 33 -24 17 -18 24 -44 33 -115 12 -99 20 -107 67 -75 24
+17 192 74 218 74 15 0 92 -30 243 -95 47 -20 101 -41 120 -47 19 -6 64 -25
+100 -44 36 -18 88 -39 115 -45 28 -6 79 -22 115 -34 122 -43 212 -59 287 -50
+37 4 118 8 180 10 62 2 116 6 121 9 5 3 34 -1 63 -8 88 -22 166 -30 316 -30
+126 -1 144 -3 166 -21 14 -11 52 -42 85 -69 64 -50 114 -116 176 -228 54 -99
+102 -117 217 -81 50 15 93 17 248 10 37 -2 47 2 63 24 11 14 22 44 25 66 5 35
+1 47 -23 78 -81 106 -11 396 197 818 27 55 119 169 256 316 34 37 64 79 68 96
+13 58 26 80 61 103 22 15 43 41 56 70 12 26 39 75 61 110 32 51 38 68 31 90
+-4 15 -8 61 -8 102 -1 52 -6 83 -18 101 -23 36 -36 89 -31 126 4 21 -4 51 -22
+90 -22 46 -29 77 -33 151 l-4 94 -52 33 c-62 40 -87 67 -116 125 -13 25 -36
+64 -52 88 -27 40 -32 42 -77 42 -67 0 -105 16 -136 56 -25 32 -30 35 -65 29
+-24 -4 -50 -1 -75 9 -36 15 -83 18 -134 9z"/>
+<path id="area+Moray" class="area" d="M8505 15441 c-102 -65 -142 -75 -295 -75 -116 1 -141 3 -175 21 -38
+20 -43 20 -105 6 -36 -8 -84 -23 -108 -34 -62 -28 -80 -24 -123 22 -35 38 -42
+41 -74 36 -20 -3 -69 -22 -108 -41 -40 -20 -76 -36 -81 -36 -5 0 -24 -11 -42
+-25 -18 -14 -54 -34 -79 -45 -25 -11 -63 -33 -84 -50 -21 -17 -62 -40 -92 -51
+-30 -11 -70 -33 -89 -48 -19 -15 -57 -38 -84 -49 -27 -12 -72 -39 -100 -59
+-28 -20 -82 -52 -120 -70 -38 -19 -108 -57 -155 -86 -168 -101 -410 -165 -627
+-167 -45 0 -75 -5 -82 -12 -5 -7 -12 -54 -14 -105 -4 -87 -6 -95 -42 -147 -52
+-76 -100 -200 -93 -243 4 -20 23 -53 48 -81 52 -59 89 -139 89 -195 0 -48 -40
+-122 -82 -151 -85 -60 -165 -105 -206 -116 -97 -24 -137 -44 -182 -89 -53 -53
+-65 -88 -79 -229 -7 -67 -19 -111 -51 -187 -24 -55 -43 -111 -44 -125 -1 -31
+23 -37 157 -39 104 -1 143 -12 201 -56 22 -17 56 -30 93 -35 212 -32 269 -51
+337 -110 60 -54 104 -34 182 81 54 78 184 193 286 251 32 18 93 58 134 89 44
+33 99 64 132 74 32 10 83 26 115 37 31 10 73 18 92 18 20 0 50 6 68 14 51 21
+168 146 228 241 30 48 75 111 100 139 25 28 54 67 64 86 10 19 48 64 84 100
+36 36 81 85 100 109 22 28 55 53 95 73 34 16 85 43 115 59 30 16 68 29 85 29
+38 0 237 48 252 61 6 5 14 35 17 67 9 105 66 183 153 208 62 18 79 36 88 91
+10 69 83 224 126 268 114 117 125 133 125 194 1 57 12 87 39 111 37 30 13 152
+-43 214 -20 22 -45 53 -54 69 -10 15 -21 27 -25 27 -4 0 -34 -18 -67 -39z"/>
+<path id="area+Garmoran" class="area" d="M4970 14940 c-19 -11 -49 -19 -66 -20 -18 0 -47 -6 -65 -14 -21 -9
+-53 -12 -90 -9 -77 7 -150 -19 -201 -72 -37 -38 -42 -40 -119 -46 -79 -5 -80
+-6 -128 -55 -26 -27 -62 -59 -79 -72 -18 -13 -32 -29 -32 -36 0 -19 -144 -177
+-177 -194 -15 -8 -59 -18 -98 -22 -53 -5 -81 -14 -114 -35 -37 -25 -51 -28
+-111 -27 -59 1 -72 -2 -84 -19 -7 -11 -34 -33 -60 -49 -52 -33 -72 -71 -59
+-110 8 -24 13 -25 103 -31 54 -3 114 -14 140 -24 32 -13 69 -17 132 -16 89 1
+118 -10 118 -44 0 -34 -94 -89 -180 -105 -59 -11 -120 -39 -133 -61 -8 -12 -4
+-25 13 -49 13 -18 23 -46 23 -61 0 -35 -35 -87 -88 -129 -77 -61 -93 -112 -50
+-155 20 -21 34 -25 82 -25 99 -1 202 -65 224 -141 8 -24 29 -54 56 -78 27 -26
+43 -48 43 -64 0 -30 -34 -67 -62 -67 -34 0 -112 56 -148 106 -24 34 -48 53
+-88 71 -52 23 -60 24 -121 13 -104 -18 -113 -22 -136 -65 -13 -23 -45 -55 -74
+-75 -28 -19 -60 -48 -71 -65 -21 -32 -27 -75 -10 -75 5 0 25 -16 44 -35 35
+-34 36 -35 79 -23 53 14 91 5 124 -28 22 -22 24 -30 18 -79 -6 -45 -4 -60 14
+-88 12 -19 35 -40 52 -47 42 -18 170 -7 242 20 52 20 64 21 103 10 55 -16 196
+-5 277 21 33 10 70 19 84 19 13 0 52 12 86 26 54 23 72 26 142 21 59 -3 95
+-11 135 -31 67 -32 87 -32 153 -4 66 27 119 69 238 188 88 88 98 103 128 180
+22 56 38 122 47 195 8 61 22 130 31 154 33 90 143 175 260 201 26 6 87 34 134
+63 146 86 153 130 43 265 -61 75 -72 116 -51 201 15 63 62 174 106 249 21 36
+38 165 26 201 -10 32 -60 52 -154 62 -356 36 -332 32 -398 72 -33 20 -68 49
+-78 63 -16 25 -92 64 -123 64 -9 -1 -33 -9 -52 -20z"/>
+<path id="area+Badenoch" class="area" d="M8983 14261 c-29 -16 -71 -43 -93 -61 -41 -32 -144 -86 -191 -100
+-14 -4 -68 -4 -119 2 -62 6 -110 5 -142 -1 -55 -12 -132 0 -182 30 -30 17 -33
+17 -151 -7 -66 -14 -143 -29 -171 -34 -58 -9 -67 -13 -143 -64 -29 -20 -58
+-36 -65 -36 -16 0 -209 -207 -229 -245 -8 -17 -25 -39 -38 -50 -12 -11 -61
+-78 -108 -150 -60 -91 -111 -153 -167 -206 -84 -80 -106 -91 -239 -117 -151
+-30 -246 -72 -300 -132 -11 -12 -49 -37 -85 -55 -100 -50 -225 -155 -281 -235
+-27 -38 -49 -78 -49 -89 0 -11 20 -36 46 -58 111 -92 127 -110 156 -170 17
+-34 41 -69 52 -77 21 -13 109 -40 186 -55 44 -10 110 -43 132 -68 28 -30 48
+-89 48 -139 0 -104 -46 -183 -133 -230 -94 -50 -90 -40 -91 -236 -1 -170 -1
+-174 -30 -227 -49 -95 -36 -144 51 -183 38 -17 45 -17 71 -4 15 8 44 32 64 53
+169 178 261 259 329 287 24 10 93 17 215 22 205 8 227 14 351 109 38 29 84 60
+101 69 40 20 52 44 52 98 0 28 9 59 26 88 14 25 37 72 50 105 28 68 58 103
+127 147 40 25 63 32 128 38 70 6 86 12 135 45 45 31 62 51 91 109 47 95 74
+129 139 177 83 61 152 89 236 96 58 5 91 14 164 49 96 47 172 105 318 247 105
+102 253 224 311 258 22 13 61 41 86 63 25 23 74 57 108 76 105 59 124 74 158
+120 19 25 47 62 64 83 34 42 45 87 32 134 -9 37 -90 94 -308 218 -62 36 -73
+46 -98 98 l-29 59 -92 -7 c-112 -9 -152 5 -191 63 -15 22 -40 46 -56 52 -16 7
+-46 26 -66 41 -49 40 -109 39 -180 0z"/>
+<path id="area+Mar" class="area" d="M10264 13606 c-33 -12 -81 -37 -106 -55 -31 -22 -62 -35 -94 -39 -44
+-5 -55 -12 -119 -76 -41 -42 -103 -90 -151 -119 -45 -26 -89 -58 -98 -72 -9
+-14 -35 -34 -59 -46 -55 -28 -198 -145 -319 -261 -250 -239 -368 -311 -539
+-328 -140 -13 -225 -74 -303 -219 -39 -72 -61 -99 -106 -136 -70 -55 -94 -64
+-188 -75 -110 -12 -143 -38 -198 -155 -23 -51 -46 -104 -49 -118 -9 -34 10
+-67 38 -67 13 0 50 -16 83 -36 58 -36 111 -55 264 -95 41 -11 117 -41 169 -67
+80 -40 103 -58 153 -115 32 -37 58 -73 58 -80 0 -6 11 -36 25 -64 33 -72 54
+-71 97 4 38 64 84 93 174 112 29 5 75 24 101 41 140 91 204 130 258 158 62 31
+167 105 239 168 52 45 194 130 240 143 22 6 63 6 108 0 53 -7 104 -5 188 6 63
+8 132 15 153 15 22 0 85 13 141 29 55 16 113 32 127 35 15 3 49 25 75 49 27
+25 69 54 94 67 25 12 68 40 96 61 57 43 175 88 317 119 127 28 167 49 246 130
+63 65 191 238 191 259 0 13 121 243 142 270 10 13 28 56 39 95 12 39 30 86 41
+104 11 18 18 38 15 46 -3 7 -34 20 -69 29 -64 17 -186 18 -394 1 -60 -5 -95
+-2 -136 10 -31 9 -71 16 -88 16 -18 0 -58 11 -89 25 -31 13 -85 31 -120 40
+-36 9 -90 29 -120 44 -31 16 -67 32 -81 36 -14 4 -93 36 -177 71 -83 35 -164
+64 -180 63 -15 0 -55 -10 -89 -23z"/>
+<path id="area+Angus" class="area" d="M11965 13303 c-16 -3 -36 -10 -43 -16 -22 -18 -78 -138 -91 -194 -7
+-28 -23 -66 -36 -83 -13 -18 -54 -94 -91 -169 -37 -75 -80 -151 -96 -169 -15
+-18 -36 -49 -47 -70 -10 -20 -57 -78 -104 -128 -96 -101 -167 -142 -287 -165
+-163 -31 -306 -101 -478 -237 -37 -28 -83 -56 -102 -61 -19 -5 -71 -19 -115
+-31 -44 -13 -98 -26 -120 -31 -78 -16 -282 -33 -390 -34 l-111 0 -84 -49 c-47
+-27 -103 -64 -125 -82 -69 -59 -222 -164 -262 -180 -21 -9 -94 -54 -163 -100
+-98 -66 -137 -86 -180 -94 -81 -15 -107 -28 -132 -68 -12 -20 -41 -58 -65 -84
+-24 -27 -43 -59 -43 -71 0 -12 12 -69 26 -127 14 -58 29 -148 34 -200 11 -116
+15 -129 49 -136 78 -15 116 -32 215 -95 127 -80 130 -80 299 -48 142 27 202
+23 233 -17 59 -75 57 -74 143 -74 59 0 100 7 155 25 88 30 127 31 182 6 102
+-46 128 -160 74 -317 -19 -52 -20 -66 -10 -119 6 -33 22 -93 37 -133 l26 -73
+72 6 c46 5 92 3 128 -5 55 -13 57 -12 104 18 82 53 114 62 218 62 86 0 101 3
+155 30 74 37 124 39 191 4 70 -35 90 -30 105 27 15 62 18 65 78 104 29 18 92
+72 141 119 62 61 114 101 173 133 57 31 92 58 108 82 99 146 124 188 124 205
+0 10 -11 31 -25 48 -19 22 -25 41 -25 76 0 59 26 103 81 139 23 16 54 40 70
+54 27 25 27 29 22 100 -10 140 64 306 155 350 43 21 90 53 166 110 24 19 210
+288 245 356 39 76 54 150 57 296 4 137 6 151 29 185 13 20 33 62 44 94 25 73
+35 91 91 163 78 99 142 211 138 242 -7 59 -99 73 -226 33 -85 -26 -147 -23
+-211 9 -33 17 -51 40 -103 127 -50 85 -80 122 -147 183 l-84 76 -71 1 c-39 1
+-84 0 -101 -3z"/>
+<path id="area+Lochaber" class="area" d="M5057 12858 c-81 -81 -131 -115 -212 -144 -84 -31 -140 -30 -215 1
+-76 32 -163 34 -221 4 -22 -11 -64 -23 -92 -25 -29 -3 -72 -12 -97 -19 -63
+-18 -273 -38 -321 -30 -40 7 -87 -4 -244 -55 -60 -20 -61 -20 -117 -1 -110 38
+-150 70 -174 143 -22 66 -41 74 -140 60 -97 -13 -117 -31 -140 -127 -9 -38
+-34 -115 -55 -170 -22 -55 -39 -105 -39 -112 0 -7 12 -24 26 -38 22 -22 25
+-31 19 -67 l-7 -41 43 7 c179 26 210 28 234 12 50 -33 40 -74 -27 -114 -37
+-21 -35 -46 3 -62 29 -13 32 -12 82 39 54 52 85 63 106 37 17 -20 0 -49 -44
+-75 -19 -11 -35 -27 -35 -36 0 -9 -11 -27 -25 -40 -18 -19 -35 -25 -68 -25
+-24 0 -70 -9 -103 -19 -32 -11 -87 -27 -121 -37 -44 -12 -63 -23 -63 -34 0
+-25 48 -66 111 -94 70 -33 97 -59 79 -80 -9 -11 -23 -14 -55 -9 -33 4 -54 1
+-82 -14 -21 -11 -55 -23 -75 -27 l-37 -7 19 -32 c36 -58 21 -117 -30 -117 -21
+0 -35 9 -50 30 -19 27 -26 30 -56 24 -36 -7 -58 9 -115 86 -25 33 -27 34 -55
+21 -30 -14 -68 -23 -189 -42 -52 -8 -89 -8 -145 0 -68 11 -81 10 -143 -9 -59
+-18 -70 -26 -79 -51 -6 -17 -27 -41 -50 -55 -53 -34 -66 -65 -45 -109 9 -19
+28 -42 42 -51 34 -22 106 -30 136 -13 16 8 57 12 119 10 85 -2 99 -5 135 -29
+58 -39 159 -63 211 -50 34 8 48 7 75 -8 42 -22 232 -38 263 -22 12 6 49 38 83
+71 60 58 65 61 122 65 79 6 123 -11 170 -64 55 -63 88 -74 199 -67 63 4 100 2
+122 -7 41 -17 33 -34 -21 -41 -24 -3 -62 -14 -83 -23 -31 -14 -54 -16 -100
+-11 -78 8 -168 41 -197 71 -35 38 -77 32 -141 -19 -125 -102 -236 -142 -413
+-150 -153 -7 -175 -15 -175 -62 0 -64 122 -278 196 -346 33 -29 198 -93 294
+-113 42 -9 94 -31 147 -62 110 -66 135 -81 155 -96 15 -10 32 -5 110 32 75 37
+108 61 179 130 47 47 97 103 111 125 90 146 126 196 153 211 16 9 57 43 91 75
+40 38 74 61 101 68 30 8 56 28 97 72 31 33 56 64 56 69 0 5 34 38 75 74 58 51
+83 66 107 66 17 0 46 9 64 21 21 12 46 19 66 17 28 -2 35 -9 44 -38 10 -29 18
+-37 51 -45 53 -13 73 -31 73 -67 0 -26 -6 -32 -56 -54 -31 -14 -71 -36 -89
+-49 -17 -14 -47 -28 -66 -31 -47 -9 -89 -32 -89 -48 0 -20 19 -24 59 -13 23 6
+54 5 90 -2 69 -14 253 -17 344 -6 43 5 93 4 140 -4 58 -10 87 -9 152 2 102 18
+132 10 184 -50 23 -25 41 -49 41 -54 0 -12 121 -94 173 -117 34 -15 73 -22
+135 -24 81 -3 90 -1 127 25 31 21 51 27 92 27 73 0 96 12 141 73 53 71 90 88
+189 86 55 -1 90 3 117 15 38 17 198 160 204 183 2 7 -14 21 -36 32 -50 25 -98
+80 -111 126 -11 42 3 110 42 193 24 51 25 60 20 191 -8 194 9 237 118 291 70
+36 99 82 99 159 0 42 -4 53 -30 74 -16 14 -53 30 -82 37 -29 6 -90 22 -135 36
+-92 28 -106 40 -152 139 -19 39 -44 74 -67 92 -20 15 -59 47 -88 71 -46 39
+-55 43 -89 38 -47 -8 -94 11 -156 62 -62 53 -76 59 -156 71 -208 31 -189 25
+-290 86 -36 22 -52 25 -150 25 -82 1 -124 6 -165 20 -30 11 -58 19 -63 20 -4
+0 -35 -28 -70 -62z"/>
+<path id="area+Atholl" class="area" d="M7858 11726 c-31 -13 -86 -46 -123 -73 -37 -28 -101 -68 -142 -88
+l-74 -37 -169 -3 c-92 -2 -179 -6 -192 -10 -41 -13 -141 -91 -201 -156 -137
+-150 -224 -243 -261 -277 -121 -116 -192 -173 -243 -199 -52 -25 -67 -28 -142
+-26 l-85 3 -65 -69 c-59 -62 -72 -71 -123 -82 -36 -7 -59 -18 -62 -28 -22 -73
+-29 -140 -31 -291 l-2 -175 -41 -97 c-35 -80 -42 -107 -42 -161 0 -61 -1 -65
+-39 -98 -33 -30 -39 -43 -45 -91 -4 -30 -4 -67 -1 -81 9 -32 -26 -111 -55
+-127 -29 -16 -41 -51 -29 -92 9 -34 11 -35 90 -52 45 -10 123 -19 175 -22 104
+-4 132 -14 243 -91 67 -45 158 -78 194 -70 84 19 267 87 294 109 19 15 106
+300 118 388 6 52 33 100 67 124 54 39 143 87 180 96 95 26 182 76 230 131 25
+30 66 68 90 84 23 16 64 48 89 71 33 30 66 49 115 64 62 19 83 21 209 15 121
+-6 153 -4 233 14 51 11 106 30 123 41 38 28 130 60 168 60 44 0 289 85 357
+123 91 51 98 66 102 215 3 121 1 134 -36 277 -63 239 -115 372 -166 429 -42
+47 -195 125 -280 142 -38 8 -77 19 -86 24 -10 5 -39 14 -65 20 -26 6 -77 28
+-113 50 -36 22 -75 40 -86 40 -12 0 -46 -11 -78 -24z"/>
+<path id="area+Argyll" class="area" d="M4475 10895 c-22 -7 -52 -16 -67 -19 -14 -3 -54 -29 -87 -57 -50 -41
+-68 -65 -97 -127 -19 -43 -45 -88 -58 -102 -13 -14 -35 -61 -51 -105 -19 -55
+-40 -93 -67 -123 -41 -45 -42 -62 -4 -62 50 0 94 -97 83 -181 -8 -58 -28 -76
+-93 -81 -76 -7 -112 -42 -123 -122 -7 -51 -13 -63 -59 -109 -60 -61 -94 -134
+-93 -197 0 -47 -19 -80 -49 -80 -35 0 -78 -53 -85 -106 -4 -27 -13 -71 -20
+-99 -7 -27 -16 -76 -19 -109 l-6 -58 72 6 c40 3 88 7 107 8 69 6 69 -63 -1
+-101 -71 -39 -88 -59 -88 -105 0 -29 -15 -69 -51 -142 -29 -56 -50 -107 -47
+-114 2 -8 24 5 58 34 65 56 105 62 115 18 10 -47 -10 -109 -54 -165 -42 -56
+-71 -114 -71 -145 0 -10 14 -29 31 -41 29 -22 31 -27 27 -72 -3 -27 -11 -55
+-18 -64 -16 -19 -54 -19 -84 0 -13 9 -31 13 -39 9 -21 -8 -124 -153 -144 -203
+-8 -20 -33 -64 -55 -99 -23 -34 -38 -66 -34 -69 13 -13 41 14 70 66 32 59 75
+91 124 91 25 0 32 -4 32 -19 0 -43 -57 -145 -169 -303 -55 -78 -120 -210 -123
+-250 -5 -53 23 -47 96 21 56 53 71 61 104 61 76 0 81 -36 15 -117 -44 -54 -74
+-104 -144 -243 -38 -76 -64 -221 -47 -257 14 -27 23 -34 75 -53 26 -10 35 -21
+43 -51 6 -22 17 -39 24 -39 8 0 43 16 78 37 34 20 79 44 99 54 21 10 56 45 85
+85 75 103 117 144 149 144 37 0 85 30 91 57 4 13 11 23 16 23 11 0 4 71 -17
+170 -8 36 -18 101 -24 145 -5 44 -19 102 -31 128 -20 45 -21 56 -12 167 12
+171 42 207 112 135 19 -19 42 -35 53 -35 10 0 42 23 72 51 46 43 56 59 65 105
+17 79 33 94 106 97 66 2 94 -11 94 -45 0 -20 -45 -158 -62 -191 -5 -9 -29 -40
+-53 -67 -26 -30 -47 -64 -51 -85 -6 -32 -4 -50 12 -125 3 -14 -4 -53 -15 -87
+-11 -33 -23 -96 -27 -140 l-7 -79 36 -47 c19 -25 40 -62 47 -82 12 -36 39 -56
+92 -69 16 -3 48 -21 73 -38 55 -39 74 -30 52 23 -25 62 -50 180 -44 215 7 40
+87 153 124 172 39 21 74 6 174 -73 51 -41 102 -75 112 -75 18 0 19 6 15 71 -5
+59 -13 86 -49 156 -38 73 -44 94 -44 147 0 54 2 61 20 61 19 0 33 -20 56 -85
+7 -19 30 -52 51 -73 47 -49 75 -134 89 -272 15 -158 35 -195 105 -195 29 0 36
+7 74 70 23 39 55 111 71 161 16 51 42 116 59 145 16 30 30 67 30 84 0 24 -7
+33 -40 50 -52 27 -75 61 -60 89 12 24 35 26 70 6 14 -8 36 -14 49 -15 26 0 26
+-3 1 189 -11 82 -7 93 54 181 39 54 37 87 -5 140 -30 37 -34 49 -32 94 0 28 4
+70 8 93 6 34 2 49 -19 85 -45 78 -28 170 37 201 19 9 39 17 44 17 20 0 46 41
+54 87 14 73 45 128 91 158 l41 27 -7 63 c-7 71 4 106 41 130 27 18 30 51 6 78
+-14 14 -19 41 -22 109 -3 101 12 159 54 198 17 16 25 34 25 57 0 19 4 53 9 76
+6 23 13 59 16 80 3 21 19 53 36 72 25 28 29 40 24 65 -5 23 5 55 46 147 l52
+118 -6 90 c-4 50 -2 133 4 185 7 74 6 97 -4 107 -8 8 -48 14 -112 16 -112 4
+-157 20 -291 103 -55 34 -77 55 -98 93 -14 27 -33 52 -42 55 -9 3 -54 1 -99
+-6 -65 -9 -98 -9 -148 0 -85 16 -122 15 -182 -4 -40 -12 -63 -13 -110 -5 -106
+18 -246 21 -290 6z"/>
+<path id="area+Fife" class="area" d="M8858 10613 c-8 -10 -24 -34 -36 -54 -17 -29 -42 -47 -115 -82 -50
+-25 -128 -57 -172 -70 -44 -14 -104 -35 -133 -46 -29 -12 -67 -21 -84 -21 -17
+0 -63 -17 -102 -39 -39 -21 -85 -42 -102 -45 -55 -12 -65 -33 -75 -158 -12
+-137 -41 -301 -76 -424 -16 -59 -22 -97 -17 -106 16 -28 105 -89 148 -102 31
+-10 67 -37 137 -105 164 -161 232 -201 384 -226 32 -5 55 -22 117 -83 68 -67
+83 -89 117 -168 22 -50 43 -108 47 -129 4 -22 19 -64 33 -95 23 -48 26 -69 27
+-165 1 -60 5 -135 9 -165 3 -31 3 -78 -2 -105 -6 -34 -5 -70 3 -109 7 -33 10
+-65 8 -71 -14 -35 45 -115 84 -115 30 0 176 -56 213 -82 15 -10 50 -23 77 -29
+48 -12 52 -11 82 14 17 15 44 27 59 27 15 0 42 11 61 25 19 14 39 25 45 25 6
+0 27 12 46 26 65 48 111 67 164 66 62 -2 186 26 202 45 6 8 14 38 18 66 13
+114 23 135 94 191 36 30 76 58 88 65 12 6 36 31 54 55 17 25 55 61 84 80 29
+19 93 73 143 119 82 77 97 87 148 97 94 20 194 -9 224 -65 8 -15 22 -31 32
+-36 26 -14 92 4 184 50 43 22 104 49 134 60 31 12 76 34 100 50 53 34 244 208
+248 226 2 7 -10 20 -25 29 -15 10 -62 53 -103 96 -70 73 -79 79 -125 85 -119
+14 -225 56 -273 108 -28 29 -82 141 -82 168 0 10 9 40 19 67 11 27 23 88 27
+136 l7 86 -60 0 c-48 0 -68 5 -97 25 -56 38 -103 34 -157 -14 -54 -47 -136
+-93 -206 -116 -28 -9 -63 -25 -77 -36 -14 -11 -89 -49 -167 -84 -78 -36 -170
+-83 -205 -106 -67 -43 -193 -89 -247 -89 -40 0 -77 24 -77 51 0 23 43 51 125
+81 49 18 75 37 145 107 47 48 111 117 142 154 62 74 64 85 31 167 -24 59 -54
+209 -47 238 3 15 15 56 25 91 25 82 24 132 -1 164 -30 38 -68 42 -136 14 -86
+-36 -109 -39 -221 -28 -111 10 -140 23 -174 77 -24 40 -44 42 -152 17 -40 -9
+-113 -17 -162 -17 l-91 -1 -104 66 c-58 37 -115 72 -127 78 -33 17 -88 14
+-105 -6z"/>
+<path id="area+Mentieth" class="area" d="M7607 10210 c-35 -11 -74 -33 -100 -57 -23 -21 -63 -54 -88 -73 -25
+-19 -58 -52 -74 -73 -37 -51 -79 -78 -210 -130 -61 -25 -136 -60 -166 -80 -59
+-38 -74 -62 -82 -133 -3 -22 -27 -112 -55 -200 -45 -140 -57 -166 -97 -212
+-40 -48 -45 -59 -45 -102 0 -63 32 -149 75 -201 65 -77 77 -198 27 -267 -54
+-76 -53 -75 -49 -142 3 -44 15 -86 35 -130 16 -36 38 -89 47 -118 22 -67 50
+-87 109 -79 117 16 163 -32 235 -248 29 -85 56 -179 61 -209 10 -65 85 -201
+144 -264 48 -51 104 -86 164 -102 24 -6 78 -29 120 -50 43 -21 139 -54 217
+-75 76 -20 172 -50 211 -66 40 -16 79 -29 88 -29 9 0 39 -9 68 -21 33 -13 101
+-26 178 -33 117 -12 129 -11 185 7 47 16 76 35 135 92 42 40 86 75 97 79 12 4
+35 29 52 55 34 56 94 91 157 91 21 0 45 4 52 9 17 11 31 72 32 139 0 64 -24
+92 -103 118 -29 9 -72 27 -95 41 -34 19 -52 24 -80 19 -150 -25 -184 -20 -214
+30 -17 29 -25 34 -45 30 -28 -8 -80 17 -87 41 -3 10 -8 44 -12 75 -5 45 -3 63
+10 83 22 33 36 32 86 -10 51 -43 78 -50 125 -35 20 6 61 10 93 8 52 -3 57 -1
+70 22 8 16 10 39 6 65 -7 38 -10 121 -16 400 -3 102 -6 126 -25 162 -13 23
+-27 63 -33 89 -15 65 -75 193 -108 227 -58 62 -101 87 -188 113 -129 37 -174
+66 -310 197 -81 77 -135 122 -160 131 -39 14 -95 46 -146 86 -33 26 -52 88
+-45 150 3 25 19 88 36 140 30 94 39 144 62 329 9 76 9 96 -3 106 -8 8 -60 14
+-148 18 -114 5 -144 3 -193 -13z"/>
+<path id="area+Lennox" class="area" d="M5747 9313 c-2 -4 -8 -23 -12 -41 -3 -17 -22 -50 -40 -72 -31 -37
+-33 -44 -28 -93 7 -66 -12 -107 -66 -143 -40 -26 -54 -51 -67 -114 -13 -71
+-32 -99 -88 -135 -31 -20 -56 -41 -56 -47 0 -6 9 -42 21 -81 17 -56 19 -84 14
+-138 -7 -68 -7 -69 26 -101 49 -49 58 -72 47 -120 -5 -22 -20 -60 -34 -85 -21
+-34 -25 -51 -20 -81 4 -20 11 -71 15 -112 8 -74 31 -151 52 -177 13 -15 87
+-17 109 -3 12 8 11 13 -8 40 -57 76 -74 108 -97 182 -31 99 -33 158 -5 183 20
+18 21 18 40 -1 11 -11 31 -51 45 -88 29 -81 77 -162 114 -194 14 -12 56 -38
+92 -57 76 -39 109 -75 109 -118 0 -21 9 -37 31 -56 17 -14 47 -41 66 -59 33
+-30 34 -34 21 -54 -17 -25 -109 -67 -150 -68 -32 0 -146 50 -192 85 -42 32
+-120 34 -186 4 -71 -32 -90 -55 -90 -109 0 -26 -10 -73 -22 -106 -18 -50 -22
+-85 -25 -226 l-4 -168 37 -97 c67 -176 58 -262 -40 -371 -58 -66 -59 -90 -7
+-140 51 -49 136 -162 167 -223 32 -64 62 -79 112 -55 35 17 102 67 199 149 24
+20 59 45 76 53 17 9 53 34 80 55 27 22 61 41 75 44 191 36 239 58 337 155 95
+94 135 114 210 105 67 -9 113 14 173 84 24 28 61 60 82 71 22 11 54 33 72 49
+45 39 91 61 128 61 59 0 194 42 245 76 83 55 183 158 206 210 32 77 26 92 -61
+135 -93 47 -170 124 -239 238 -53 87 -81 162 -81 213 0 16 -9 50 -19 76 -10
+26 -31 87 -47 136 -38 125 -51 136 -144 139 -98 3 -142 28 -165 95 -9 26 -26
+70 -37 97 -60 148 -70 187 -66 260 3 63 8 78 41 126 51 74 51 119 0 185 -47
+62 -83 152 -91 228 l-7 61 -42 -2 c-22 -1 -71 -11 -107 -22 l-67 -21 -93 30
+c-68 22 -112 44 -161 80 -71 53 -82 56 -215 65 -47 3 -101 8 -121 11 -20 3
+-39 2 -42 -3z"/>
+<path id="area+Dunbar" class="area" d="M11034 7945 c-16 -7 -53 -40 -82 -74 -62 -71 -62 -84 -1 -133 56 -45
+77 -85 94 -172 16 -82 30 -116 76 -179 56 -77 29 -177 -65 -245 -27 -19 -59
+-56 -76 -85 -27 -47 -30 -59 -28 -132 3 -76 1 -83 -35 -147 -20 -36 -37 -78
+-37 -92 0 -28 52 -137 74 -156 10 -7 30 -9 59 -5 45 7 117 -15 117 -36 0 -5
+31 -39 69 -77 53 -52 79 -89 119 -167 28 -55 60 -127 73 -160 32 -87 35 -90
+110 -76 55 9 69 17 112 58 27 27 60 69 73 95 27 53 41 63 99 73 22 3 68 13
+102 22 51 13 73 14 119 4 32 -6 78 -11 104 -11 40 0 60 -9 146 -63 76 -49 104
+-73 122 -105 13 -23 27 -42 31 -42 4 0 46 25 94 55 48 30 112 66 142 80 45 20
+59 31 71 62 26 61 91 150 127 172 41 25 228 232 241 266 8 21 1 44 -47 138
+-31 61 -59 130 -63 152 -8 50 -16 59 -75 92 -56 30 -75 54 -85 109 -9 51 -20
+64 -54 64 -16 0 -59 16 -96 36 -55 29 -74 35 -103 29 -89 -15 -111 -15 -192 3
+-106 24 -210 82 -264 148 -51 62 -139 125 -242 174 -76 36 -90 40 -135 34
+l-50 -7 -65 69 c-36 38 -79 91 -95 117 -45 72 -85 88 -248 99 -74 5 -151 13
+-171 17 -24 6 -46 4 -65 -4z"/>
+<path id="area+Lothian" class="area" d="M10808 7634 c-12 -25 -37 -59 -55 -75 -33 -28 -43 -32 -114 -44 -20
+-3 -58 -21 -85 -40 -70 -50 -134 -69 -234 -70 -93 0 -122 11 -175 64 -16 17
+-53 51 -82 75 l-51 43 -74 -3 c-40 -2 -114 -6 -164 -10 -105 -8 -148 3 -200
+49 -35 30 -35 30 -89 17 -43 -10 -71 -10 -150 0 -80 11 -99 10 -105 0 -5 -7
+-11 -54 -15 -104 -4 -50 -13 -106 -21 -124 -16 -38 -63 -62 -123 -62 -60 0
+-88 -15 -111 -60 -12 -23 -35 -49 -53 -58 -44 -24 -97 -77 -97 -98 0 -9 19
+-64 42 -122 53 -133 99 -186 171 -195 78 -11 105 -31 136 -101 16 -34 36 -87
+45 -118 12 -43 27 -65 65 -101 28 -26 58 -47 67 -47 9 0 33 10 52 22 55 34
+116 28 246 -21 60 -22 117 -41 127 -41 10 0 39 18 64 40 61 52 66 55 160 74
+60 12 89 14 115 6 19 -5 101 -10 182 -10 l146 0 33 41 c39 49 81 69 146 69
+107 1 162 31 184 99 6 20 25 59 42 86 27 45 30 58 28 122 -1 65 2 80 33 140
+23 47 54 87 100 129 44 40 66 69 66 83 0 13 -16 49 -35 80 -40 64 -55 109 -55
+162 0 21 -10 50 -23 70 -23 35 -81 79 -103 79 -7 0 -23 -21 -36 -46z"/>
+<path id="area+Lanark" class="area" d="M7596 7148 c-29 -61 -49 -86 -123 -154 -48 -44 -106 -92 -128 -107
+-41 -27 -210 -77 -262 -77 -35 -1 -57 -13 -119 -68 -47 -42 -48 -44 -35 -75 7
+-18 18 -50 23 -72 34 -130 72 -168 288 -276 30 -15 69 -42 86 -61 74 -78 134
+-211 134 -296 0 -52 2 -57 49 -102 33 -32 54 -63 62 -92 21 -70 16 -173 -13
+-268 -40 -129 -43 -155 -18 -180 11 -11 29 -20 41 -20 11 0 54 -14 94 -31 82
+-34 110 -61 210 -199 35 -49 101 -120 160 -172 55 -49 126 -114 158 -144 32
+-30 79 -64 105 -75 25 -11 66 -39 91 -62 58 -54 117 -91 135 -84 8 3 17 23 20
+44 4 21 24 65 46 98 40 62 74 85 240 158 30 14 81 47 113 74 40 35 76 56 117
+68 33 10 74 27 91 37 29 17 31 23 26 58 -3 21 -26 85 -52 141 -68 148 -68 157
+-6 283 45 93 51 114 51 168 0 35 7 92 16 128 11 50 13 80 5 135 -5 38 -8 108
+-7 155 1 78 5 93 44 174 23 48 42 92 42 97 0 5 -32 39 -70 75 -60 57 -73 75
+-86 123 -22 75 -59 157 -75 167 -7 4 -37 11 -67 15 -29 4 -64 15 -77 23 -36
+24 -102 126 -129 202 -14 37 -33 76 -44 86 -19 19 -20 19 -78 -3 -51 -20 -75
+-22 -178 -20 -77 2 -143 9 -185 21 -168 47 -240 69 -286 88 -60 25 -315 92
+-350 92 -22 0 -30 -11 -59 -72z"/>
+<path id="area+Carrick" class="area" d="M6760 6562 c-40 -24 -55 -27 -136 -28 -103 0 -110 -3 -175 -83 -57
+-70 -125 -107 -260 -142 -94 -24 -124 -38 -192 -84 -137 -93 -257 -191 -257
+-209 0 -8 30 -39 68 -69 40 -34 81 -78 102 -113 34 -56 35 -62 36 -159 l1
+-101 46 -67 c62 -90 66 -119 32 -210 -14 -40 -35 -100 -44 -134 -10 -35 -24
+-70 -31 -78 -7 -8 -63 -31 -125 -50 -98 -31 -118 -41 -148 -74 -50 -55 -56
+-70 -63 -153 -8 -83 -22 -118 -58 -141 -14 -9 -52 -44 -85 -78 l-61 -61 0 -96
+c0 -76 -5 -108 -21 -148 -12 -29 -19 -58 -16 -66 5 -14 127 -54 232 -78 28 -6
+66 -21 86 -33 20 -12 72 -42 115 -67 43 -25 101 -68 129 -97 74 -77 101 -85
+232 -73 105 10 141 16 233 38 25 7 106 17 180 23 74 6 173 15 220 20 47 5 124
+6 171 3 72 -5 97 -3 150 14 35 12 100 26 144 31 44 6 121 16 170 22 78 10 99
+9 145 -4 72 -22 149 -81 180 -139 32 -60 65 -95 110 -118 19 -10 59 -30 88
+-45 l52 -28 119 12 c66 6 153 11 194 11 86 0 100 10 116 80 17 74 13 151 -9
+193 -36 67 -21 107 58 149 l31 17 -22 60 -22 61 22 62 c28 77 23 87 -80 157
+-40 27 -79 56 -87 66 -8 9 -38 28 -68 41 -36 16 -86 55 -151 116 -53 51 -131
+123 -172 159 -40 36 -101 104 -133 150 -33 46 -73 99 -90 117 -31 33 -118 72
+-162 72 -47 0 -94 27 -109 64 -21 49 -19 88 10 197 41 155 46 185 34 240 -9
+42 -17 54 -45 71 -47 28 -65 66 -73 163 -7 68 -15 95 -45 151 -53 96 -71 113
+-203 180 -150 76 -213 135 -238 220 -9 32 -21 66 -25 74 -12 25 -52 21 -100
+-8z"/>
+<path id="area+England" class="area" d="M13092 6528 c-33 -35 -80 -88 -105 -119 -25 -31 -68 -72 -95 -91 -36
+-27 -57 -52 -82 -102 -34 -69 -69 -103 -130 -128 -43 -18 -170 -99 -187 -119
+-7 -8 -18 -36 -24 -62 -13 -45 -12 -47 19 -91 58 -80 79 -153 117 -398 3 -20
+30 -85 61 -144 30 -59 60 -129 65 -156 9 -42 8 -53 -16 -106 -22 -49 -55 -88
+-183 -214 -143 -142 -164 -159 -242 -196 -82 -38 -245 -95 -420 -146 -47 -14
+-112 -36 -145 -49 -33 -13 -96 -37 -139 -53 -113 -41 -185 -109 -222 -207 -40
+-107 -98 -215 -149 -277 -25 -30 -45 -60 -45 -66 0 -21 -71 -117 -136 -186
+-35 -36 -64 -71 -64 -76 0 -5 -26 -39 -57 -75 -121 -136 -151 -174 -201 -255
+-57 -91 -99 -147 -177 -233 -27 -30 -86 -97 -130 -148 -44 -51 -97 -101 -118
+-112 -50 -26 -65 -58 -42 -93 28 -43 13 -71 -55 -106 -91 -46 -138 -42 -224
+18 -121 84 -109 79 -163 59 -27 -11 -70 -25 -98 -33 -50 -14 -105 -60 -105
+-88 0 -21 22 -35 65 -39 44 -5 68 -31 59 -61 -3 -12 -24 -37 -45 -57 -21 -20
+-39 -41 -39 -47 0 -20 -29 -20 -61 -1 -84 48 -121 60 -151 48 -37 -15 -83 -89
+-123 -201 -18 -51 -45 -120 -59 -153 -22 -53 -24 -69 -19 -137 9 -115 -25
+-181 -140 -275 -42 -35 -35 -51 26 -58 28 -3 1185 -5 2569 -3 2049 2 2519 5
+2530 16 11 11 13 369 13 1920 l0 1907 -26 40 c-20 29 -28 58 -33 108 -9 113
+-22 141 -100 215 -83 78 -132 100 -177 77 -66 -34 -114 -3 -103 66 8 45 -4 53
+-67 50 -42 -2 -52 2 -88 34 -51 46 -95 113 -121 184 -17 44 -37 70 -101 130
+-71 65 -162 175 -211 252 -9 14 -18 41 -20 59 -2 19 -8 35 -14 37 -6 2 -38
+-25 -72 -59z"/>
+<path id="area+Selkirk" class="area" d="M10758 6560 c-9 -6 -29 -10 -45 -11 -15 0 -55 -3 -88 -6 -56 -5 -62
+-8 -112 -61 l-53 -55 -225 5 c-124 4 -241 2 -260 -2 -34 -8 -53 -19 -144 -85
+-45 -33 -74 -32 -189 11 -181 68 -182 68 -252 -26 -100 -134 -125 -242 -99
+-430 8 -62 7 -83 -5 -119 -10 -26 -16 -76 -16 -123 0 -65 -5 -89 -24 -127 -37
+-71 -76 -162 -76 -177 0 -8 20 -54 44 -102 24 -48 54 -115 66 -149 21 -59 25
+-63 75 -83 29 -12 63 -33 76 -47 52 -56 100 -83 148 -83 25 0 66 -5 91 -11 24
+-5 108 -12 185 -14 77 -2 214 -9 304 -14 108 -7 170 -7 182 -1 10 6 30 32 45
+58 15 26 46 76 70 112 24 36 55 96 69 133 14 38 34 86 45 107 20 40 93 110
+163 157 305 204 291 191 316 298 24 98 104 193 199 236 34 16 65 35 68 44 9
+22 -40 148 -89 230 -23 39 -72 100 -108 136 l-68 67 -74 4 c-86 4 -109 18
+-128 77 -6 20 -16 42 -22 49 -11 14 -45 15 -69 2z"/>
+<path id="area+Teviot" class="area" d="M11867 6155 c-49 -13 -90 -25 -91 -27 -64 -101 -141 -182 -187 -196
+-19 -5 -68 -15 -109 -21 -134 -20 -204 -41 -240 -70 -48 -38 -98 -114 -105
+-159 -14 -95 -26 -114 -112 -177 -44 -33 -127 -91 -184 -130 -153 -104 -187
+-142 -233 -259 -22 -54 -58 -126 -80 -161 -23 -35 -50 -78 -61 -96 -11 -18
+-27 -43 -35 -55 -13 -20 -12 -25 13 -61 14 -21 32 -54 38 -73 7 -19 20 -46 29
+-60 21 -31 105 -207 115 -240 18 -61 57 -112 102 -132 89 -39 157 -103 233
+-218 40 -60 80 -116 91 -126 19 -17 21 -16 50 12 50 47 102 131 158 254 65
+145 134 223 227 257 81 30 181 71 228 93 21 10 82 29 135 41 126 29 339 101
+415 141 38 20 94 65 147 118 47 47 108 105 135 130 28 25 60 67 73 93 29 60
+25 79 -54 235 -30 59 -55 118 -55 131 0 33 -30 184 -51 261 -13 44 -32 81 -59
+114 -33 40 -40 56 -40 91 0 27 -12 69 -34 116 -33 70 -39 77 -113 125 -72 46
+-86 51 -154 57 -41 3 -81 8 -89 11 -8 2 -55 -6 -103 -19z"/>
+<path id="area+Annan" class="area" d="M9175 4916 c-27 -13 -64 -26 -81 -30 -17 -4 -63 -33 -103 -66 -39
+-32 -93 -67 -118 -77 -199 -78 -219 -104 -252 -328 -5 -33 -18 -80 -29 -104
+-21 -46 -20 -57 13 -121 8 -16 15 -42 15 -59 0 -29 -5 -35 -79 -89 -21 -16
+-22 -21 -12 -57 16 -59 14 -185 -5 -236 -14 -40 -37 -221 -37 -293 0 -31 5
+-36 165 -178 101 -90 159 -194 202 -363 29 -113 89 -175 168 -175 42 0 126 39
+157 74 30 32 55 33 92 2 39 -33 115 -48 208 -40 67 6 83 4 126 -16 44 -20 55
+-21 98 -11 102 23 178 24 241 2 75 -26 79 -26 124 4 23 16 51 25 75 25 56 0
+83 18 168 111 163 179 277 322 335 417 44 72 115 162 180 226 17 17 47 56 67
+86 20 30 52 71 71 89 20 19 36 42 36 50 0 9 -13 37 -28 64 -121 211 -184 285
+-280 329 -70 32 -109 76 -141 162 -19 50 -70 156 -147 305 -36 69 -44 78 -104
+110 -59 33 -72 36 -150 37 -209 2 -461 17 -523 30 -38 8 -82 14 -98 14 -39 0
+-64 13 -121 67 -26 24 -59 48 -73 53 -43 16 -107 11 -160 -14z"/>
+<path id="area+Galloway" class="area" d="M5272 4010 c-53 -56 -113 -129 -132 -163 -26 -45 -55 -76 -105 -115
+-55 -42 -73 -62 -84 -95 -53 -161 -77 -219 -111 -272 -50 -77 -79 -142 -86
+-197 -7 -51 34 -195 83 -293 32 -63 73 -195 73 -234 0 -53 -62 -111 -119 -111
+-29 0 -118 84 -130 123 -15 52 -22 163 -11 192 16 41 -26 179 -61 201 -13 8
+-118 -14 -137 -29 -40 -31 -59 -111 -68 -293 -6 -99 -5 -103 26 -164 17 -34
+40 -96 51 -138 10 -42 27 -87 36 -101 9 -14 67 -76 130 -137 62 -61 113 -116
+113 -123 0 -6 25 -38 55 -71 40 -44 55 -68 55 -89 0 -58 32 -135 72 -172 32
+-31 38 -43 38 -77 0 -22 4 -52 10 -66 7 -20 5 -35 -7 -61 -9 -19 -14 -38 -10
+-41 9 -9 110 -10 124 -1 10 6 9 16 -2 45 -7 20 -21 75 -30 121 -9 46 -27 111
+-40 145 -13 33 -29 86 -35 116 -6 30 -20 78 -31 105 -24 59 -20 77 38 150 31
+39 65 64 144 108 57 32 116 67 130 78 23 19 30 19 70 9 57 -15 64 -22 116
+-102 28 -43 52 -69 66 -72 147 -28 139 -24 202 -90 73 -76 149 -136 209 -165
+50 -25 67 -47 97 -127 17 -45 40 -74 117 -151 79 -78 110 -101 181 -135 47
+-22 105 -54 127 -70 39 -28 43 -29 70 -15 64 33 88 83 72 148 -9 32 -8 64 0
+125 8 52 9 91 3 106 -12 31 4 115 25 139 28 31 13 52 -64 92 -83 44 -101 66
+-120 151 -25 111 -25 157 -3 194 23 36 76 72 107 72 21 0 57 -32 67 -61 3 -8
+21 -40 40 -71 29 -45 48 -61 104 -90 81 -43 131 -58 158 -48 11 4 41 26 67 49
+72 64 120 48 93 -30 -22 -61 0 -133 61 -202 19 -20 34 -43 34 -50 0 -7 14 -26
+31 -43 26 -25 38 -29 90 -30 l59 -1 9 36 c5 20 12 53 16 74 6 40 64 107 91
+107 22 0 74 -55 74 -79 0 -11 -9 -44 -21 -73 -22 -56 -19 -92 9 -106 9 -5 50
+-12 91 -15 79 -7 92 -3 151 44 19 16 74 46 122 69 48 22 90 45 93 51 4 5 24
+21 46 35 l40 25 -26 44 -26 44 22 42 c23 46 100 129 119 129 7 0 32 -18 57
+-40 25 -22 52 -40 60 -40 23 0 55 20 98 60 59 56 92 62 237 39 l123 -19 37 39
+c50 53 55 80 28 143 -18 42 -21 62 -16 107 17 147 18 179 6 245 -15 91 -56
+209 -91 264 -15 24 -81 93 -147 153 -76 70 -125 122 -132 142 -7 20 -8 62 -4
+113 l7 82 -38 12 c-26 9 -57 10 -99 4 -34 -4 -117 -8 -186 -8 l-125 -1 -100
+55 c-91 50 -104 61 -145 122 -59 87 -77 106 -125 130 -34 18 -51 20 -135 15
+-137 -8 -236 -24 -305 -48 -51 -18 -74 -20 -155 -15 -52 4 -142 2 -200 -3
+-249 -24 -389 -39 -398 -45 -23 -14 -190 -37 -281 -38 -117 -2 -171 19 -227
+88 -20 24 -62 58 -93 76 -31 17 -81 49 -111 70 -43 29 -79 43 -165 63 -60 14
+-118 28 -128 31 -12 4 -44 -23 -115 -96z"/>
+</g>
+</svg>
+
+<div id="turn" class="turn year_1297"></div>
+<div id="blocks" class="blocks"></div>
+<div id="offmap" class="offmap" style="visibility:hidden"></div>
+
+</div>
+
+<div class="hand">
+<div id="card+1" class="card card_herald"></div>
+<div id="card+2" class="card card_pillage"></div>
+<div id="card+3" class="card card_sea_move"></div>
+<div id="card+4" class="card card_truce"></div>
+<div id="card+5" class="card card_victuals"></div>
+<div id="card+6" class="card card_3"></div>
+<div id="card+7" class="card card_3"></div>
+<div id="card+8" class="card card_3"></div>
+<div id="card+9" class="card card_2"></div>
+<div id="card+10" class="card card_2"></div>
+<div id="card+11" class="card card_2"></div>
+<div id="card+12" class="card card_2"></div>
+<div id="card+13" class="card card_2"></div>
+<div id="card+14" class="card card_2"></div>
+<div id="card+15" class="card card_2"></div>
+<div id="card+16" class="card card_2"></div>
+<div id="card+17" class="card card_2"></div>
+<div id="card+18" class="card card_2"></div>
+<div id="card+19" class="card card_1"></div>
+<div id="card+20" class="card card_1"></div>
+<div id="card+21" class="card card_1"></div>
+<div id="card+22" class="card card_1"></div>
+<div id="card+23" class="card card_1"></div>
+<div id="card+24" class="card card_1"></div>
+<div id="card+25" class="card card_1"></div>
+</div>
+
+ </div>
+
+</div>
+</body>