Skip to content

Instantly share code, notes, and snippets.

@diraol
Last active October 13, 2020 15:07
Show Gist options
  • Save diraol/83d409877098fb2b3cdcd474ee3a5059 to your computer and use it in GitHub Desktop.
Save diraol/83d409877098fb2b3cdcd474ee3a5059 to your computer and use it in GitHub Desktop.
profile_report_minimal_settings_bug_report.ipynb
Display the source blob
Display the rendered blob
Raw
{
"nbformat": 4,
"nbformat_minor": 0,
"metadata": {
"colab": {
"name": "profile_report_minimal_settings_bug_report.ipynb",
"provenance": []
},
"kernelspec": {
"name": "python3",
"display_name": "Python 3"
}
},
"cells": [
{
"cell_type": "code",
"metadata": {
"id": "VPdBdQN7eQI3"
},
"source": [
"!pip install --upgrade pandas-profiling[notebook]"
],
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"metadata": {
"id": "7qaBZUjtesQD"
},
"source": [
"import numpy as np\n",
"import pandas as pd\n",
"\n",
"import pandas_profiling\n",
"from pandas_profiling.utils.cache import cache_file"
],
"execution_count": 3,
"outputs": []
},
{
"cell_type": "code",
"metadata": {
"id": "aaOYKeAbe9PD"
},
"source": [
"file_name = cache_file(\n",
" \"meteorites.csv\",\n",
" \"https://data.nasa.gov/api/views/gh4g-9sfh/rows.csv?accessType=DOWNLOAD\",\n",
")\n",
" \n",
"df = pd.read_csv(file_name)\n",
" \n",
"# Note: Pandas does not support dates before 1880, so we ignore these for this analysis\n",
"df['year'] = pd.to_datetime(df['year'], errors='coerce')\n",
"\n",
"# Example: Constant variable\n",
"df['source'] = \"NASA\"\n",
"\n",
"# Example: Boolean variable\n",
"df['boolean'] = np.random.choice([True, False], df.shape[0])\n",
"\n",
"# Example: Mixed with base types\n",
"df['mixed'] = np.random.choice([1, \"A\"], df.shape[0])\n",
"\n",
"# Example: Highly correlated variables\n",
"df['reclat_city'] = df['reclat'] + np.random.normal(scale=5,size=(len(df)))\n",
"\n",
"# Example: Duplicate observations\n",
"duplicates_to_add = pd.DataFrame(df.iloc[0:10])\n",
"duplicates_to_add[u'name'] = duplicates_to_add[u'name'] + \" copy\"\n",
"\n",
"df = df.append(duplicates_to_add, ignore_index=True)"
],
"execution_count": 4,
"outputs": []
},
{
"cell_type": "code",
"metadata": {
"id": "8NwGsJVJfSHG",
"outputId": "d28f576a-3ba4-4b6b-868a-ab5be0ce97fa",
"colab": {
"base_uri": "https://localhost:8080/",
"height": 821
}
},
"source": [
"profile_report = df.profile_report(progress_bar=False)\n",
"profile_report"
],
"execution_count": 7,
"outputs": [
{
"output_type": "display_data",
"data": {
"text/html": [
"<iframe width=\"100%\" height=\"800px\" srcdoc=\"&lt;!doctype html&gt;&lt;html lang=en&gt;&lt;head&gt;&lt;meta charset=utf-8&gt;&lt;meta name=viewport content=&quot;width=device-width, initial-scale=1, shrink-to-fit=no&quot;&gt;&lt;meta name=description content=&quot;Profile report generated with the `pandas-profiling` Python package&quot;&gt;&lt;meta name=author content=&quot;Simon Brugman and the open source community.&quot;&gt;&lt;meta name=generator content=&quot;Pandas Profiling v2.9.0&quot;&gt;&lt;meta name=url content=https://github.com/pandas-profiling/pandas-profiling&gt;&lt;meta name=date content=&quot;2020-10-13 15:05:01.441368&quot;&gt;&lt;title&gt;Pandas Profiling Report&lt;/title&gt;&lt;style&gt;\n",
"/*!\n",
" * Bootstrap v3.3.7 (http://getbootstrap.com)\n",
" * Copyright 2011-2016 Twitter, Inc.\n",
" * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n",
" *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:&quot; (&quot; attr(href) &quot;)&quot;}abbr[title]:after{content:&quot; (&quot; attr(title) &quot;)&quot;}a[href^=&quot;javascript:&quot;]:after,a[href^=&quot;#&quot;]:after{content:&quot;&quot;}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn&gt;.caret,.dropup&gt;.btn&gt;.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:&#x27;Glyphicons Halflings&#x27;;src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format(&#x27;embedded-opentype&#x27;),url(../fonts/glyphicons-halflings-regular.woff2) format(&#x27;woff2&#x27;),url(../fonts/glyphicons-halflings-regular.woff) format(&#x27;woff&#x27;),url(../fonts/glyphicons-halflings-regular.ttf) format(&#x27;truetype&#x27;),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format(&#x27;svg&#x27;)}.glyphicon{position:relative;top:1px;display:inline-block;font-family:&#x27;Glyphicons Halflings&#x27;;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:&quot;\\002a&quot;}.glyphicon-plus:before{content:&quot;\\002b&quot;}.glyphicon-eur:before,.glyphicon-euro:before{content:&quot;\\20ac&quot;}.glyphicon-minus:before{content:&quot;\\2212&quot;}.glyphicon-cloud:before{content:&quot;\\2601&quot;}.glyphicon-envelope:before{content:&quot;\\2709&quot;}.glyphicon-pencil:before{content:&quot;\\270f&quot;}.glyphicon-glass:before{content:&quot;\\e001&quot;}.glyphicon-music:before{content:&quot;\\e002&quot;}.glyphicon-search:before{content:&quot;\\e003&quot;}.glyphicon-heart:before{content:&quot;\\e005&quot;}.glyphicon-star:before{content:&quot;\\e006&quot;}.glyphicon-star-empty:before{content:&quot;\\e007&quot;}.glyphicon-user:before{content:&quot;\\e008&quot;}.glyphicon-film:before{content:&quot;\\e009&quot;}.glyphicon-th-large:before{content:&quot;\\e010&quot;}.glyphicon-th:before{content:&quot;\\e011&quot;}.glyphicon-th-list:before{content:&quot;\\e012&quot;}.glyphicon-ok:before{content:&quot;\\e013&quot;}.glyphicon-remove:before{content:&quot;\\e014&quot;}.glyphicon-zoom-in:before{content:&quot;\\e015&quot;}.glyphicon-zoom-out:before{content:&quot;\\e016&quot;}.glyphicon-off:before{content:&quot;\\e017&quot;}.glyphicon-signal:before{content:&quot;\\e018&quot;}.glyphicon-cog:before{content:&quot;\\e019&quot;}.glyphicon-trash:before{content:&quot;\\e020&quot;}.glyphicon-home:before{content:&quot;\\e021&quot;}.glyphicon-file:before{content:&quot;\\e022&quot;}.glyphicon-time:before{content:&quot;\\e023&quot;}.glyphicon-road:before{content:&quot;\\e024&quot;}.glyphicon-download-alt:before{content:&quot;\\e025&quot;}.glyphicon-download:before{content:&quot;\\e026&quot;}.glyphicon-upload:before{content:&quot;\\e027&quot;}.glyphicon-inbox:before{content:&quot;\\e028&quot;}.glyphicon-play-circle:before{content:&quot;\\e029&quot;}.glyphicon-repeat:before{content:&quot;\\e030&quot;}.glyphicon-refresh:before{content:&quot;\\e031&quot;}.glyphicon-list-alt:before{content:&quot;\\e032&quot;}.glyphicon-lock:before{content:&quot;\\e033&quot;}.glyphicon-flag:before{content:&quot;\\e034&quot;}.glyphicon-headphones:before{content:&quot;\\e035&quot;}.glyphicon-volume-off:before{content:&quot;\\e036&quot;}.glyphicon-volume-down:before{content:&quot;\\e037&quot;}.glyphicon-volume-up:before{content:&quot;\\e038&quot;}.glyphicon-qrcode:before{content:&quot;\\e039&quot;}.glyphicon-barcode:before{content:&quot;\\e040&quot;}.glyphicon-tag:before{content:&quot;\\e041&quot;}.glyphicon-tags:before{content:&quot;\\e042&quot;}.glyphicon-book:before{content:&quot;\\e043&quot;}.glyphicon-bookmark:before{content:&quot;\\e044&quot;}.glyphicon-print:before{content:&quot;\\e045&quot;}.glyphicon-camera:before{content:&quot;\\e046&quot;}.glyphicon-font:before{content:&quot;\\e047&quot;}.glyphicon-bold:before{content:&quot;\\e048&quot;}.glyphicon-italic:before{content:&quot;\\e049&quot;}.glyphicon-text-height:before{content:&quot;\\e050&quot;}.glyphicon-text-width:before{content:&quot;\\e051&quot;}.glyphicon-align-left:before{content:&quot;\\e052&quot;}.glyphicon-align-center:before{content:&quot;\\e053&quot;}.glyphicon-align-right:before{content:&quot;\\e054&quot;}.glyphicon-align-justify:before{content:&quot;\\e055&quot;}.glyphicon-list:before{content:&quot;\\e056&quot;}.glyphicon-indent-left:before{content:&quot;\\e057&quot;}.glyphicon-indent-right:before{content:&quot;\\e058&quot;}.glyphicon-facetime-video:before{content:&quot;\\e059&quot;}.glyphicon-picture:before{content:&quot;\\e060&quot;}.glyphicon-map-marker:before{content:&quot;\\e062&quot;}.glyphicon-adjust:before{content:&quot;\\e063&quot;}.glyphicon-tint:before{content:&quot;\\e064&quot;}.glyphicon-edit:before{content:&quot;\\e065&quot;}.glyphicon-share:before{content:&quot;\\e066&quot;}.glyphicon-check:before{content:&quot;\\e067&quot;}.glyphicon-move:before{content:&quot;\\e068&quot;}.glyphicon-step-backward:before{content:&quot;\\e069&quot;}.glyphicon-fast-backward:before{content:&quot;\\e070&quot;}.glyphicon-backward:before{content:&quot;\\e071&quot;}.glyphicon-play:before{content:&quot;\\e072&quot;}.glyphicon-pause:before{content:&quot;\\e073&quot;}.glyphicon-stop:before{content:&quot;\\e074&quot;}.glyphicon-forward:before{content:&quot;\\e075&quot;}.glyphicon-fast-forward:before{content:&quot;\\e076&quot;}.glyphicon-step-forward:before{content:&quot;\\e077&quot;}.glyphicon-eject:before{content:&quot;\\e078&quot;}.glyphicon-chevron-left:before{content:&quot;\\e079&quot;}.glyphicon-chevron-right:before{content:&quot;\\e080&quot;}.glyphicon-plus-sign:before{content:&quot;\\e081&quot;}.glyphicon-minus-sign:before{content:&quot;\\e082&quot;}.glyphicon-remove-sign:before{content:&quot;\\e083&quot;}.glyphicon-ok-sign:before{content:&quot;\\e084&quot;}.glyphicon-question-sign:before{content:&quot;\\e085&quot;}.glyphicon-info-sign:before{content:&quot;\\e086&quot;}.glyphicon-screenshot:before{content:&quot;\\e087&quot;}.glyphicon-remove-circle:before{content:&quot;\\e088&quot;}.glyphicon-ok-circle:before{content:&quot;\\e089&quot;}.glyphicon-ban-circle:before{content:&quot;\\e090&quot;}.glyphicon-arrow-left:before{content:&quot;\\e091&quot;}.glyphicon-arrow-right:before{content:&quot;\\e092&quot;}.glyphicon-arrow-up:before{content:&quot;\\e093&quot;}.glyphicon-arrow-down:before{content:&quot;\\e094&quot;}.glyphicon-share-alt:before{content:&quot;\\e095&quot;}.glyphicon-resize-full:before{content:&quot;\\e096&quot;}.glyphicon-resize-small:before{content:&quot;\\e097&quot;}.glyphicon-exclamation-sign:before{content:&quot;\\e101&quot;}.glyphicon-gift:before{content:&quot;\\e102&quot;}.glyphicon-leaf:before{content:&quot;\\e103&quot;}.glyphicon-fire:before{content:&quot;\\e104&quot;}.glyphicon-eye-open:before{content:&quot;\\e105&quot;}.glyphicon-eye-close:before{content:&quot;\\e106&quot;}.glyphicon-warning-sign:before{content:&quot;\\e107&quot;}.glyphicon-plane:before{content:&quot;\\e108&quot;}.glyphicon-calendar:before{content:&quot;\\e109&quot;}.glyphicon-random:before{content:&quot;\\e110&quot;}.glyphicon-comment:before{content:&quot;\\e111&quot;}.glyphicon-magnet:before{content:&quot;\\e112&quot;}.glyphicon-chevron-up:before{content:&quot;\\e113&quot;}.glyphicon-chevron-down:before{content:&quot;\\e114&quot;}.glyphicon-retweet:before{content:&quot;\\e115&quot;}.glyphicon-shopping-cart:before{content:&quot;\\e116&quot;}.glyphicon-folder-close:before{content:&quot;\\e117&quot;}.glyphicon-folder-open:before{content:&quot;\\e118&quot;}.glyphicon-resize-vertical:before{content:&quot;\\e119&quot;}.glyphicon-resize-horizontal:before{content:&quot;\\e120&quot;}.glyphicon-hdd:before{content:&quot;\\e121&quot;}.glyphicon-bullhorn:before{content:&quot;\\e122&quot;}.glyphicon-bell:before{content:&quot;\\e123&quot;}.glyphicon-certificate:before{content:&quot;\\e124&quot;}.glyphicon-thumbs-up:before{content:&quot;\\e125&quot;}.glyphicon-thumbs-down:before{content:&quot;\\e126&quot;}.glyphicon-hand-right:before{content:&quot;\\e127&quot;}.glyphicon-hand-left:before{content:&quot;\\e128&quot;}.glyphicon-hand-up:before{content:&quot;\\e129&quot;}.glyphicon-hand-down:before{content:&quot;\\e130&quot;}.glyphicon-circle-arrow-right:before{content:&quot;\\e131&quot;}.glyphicon-circle-arrow-left:before{content:&quot;\\e132&quot;}.glyphicon-circle-arrow-up:before{content:&quot;\\e133&quot;}.glyphicon-circle-arrow-down:before{content:&quot;\\e134&quot;}.glyphicon-globe:before{content:&quot;\\e135&quot;}.glyphicon-wrench:before{content:&quot;\\e136&quot;}.glyphicon-tasks:before{content:&quot;\\e137&quot;}.glyphicon-filter:before{content:&quot;\\e138&quot;}.glyphicon-briefcase:before{content:&quot;\\e139&quot;}.glyphicon-fullscreen:before{content:&quot;\\e140&quot;}.glyphicon-dashboard:before{content:&quot;\\e141&quot;}.glyphicon-paperclip:before{content:&quot;\\e142&quot;}.glyphicon-heart-empty:before{content:&quot;\\e143&quot;}.glyphicon-link:before{content:&quot;\\e144&quot;}.glyphicon-phone:before{content:&quot;\\e145&quot;}.glyphicon-pushpin:before{content:&quot;\\e146&quot;}.glyphicon-usd:before{content:&quot;\\e148&quot;}.glyphicon-gbp:before{content:&quot;\\e149&quot;}.glyphicon-sort:before{content:&quot;\\e150&quot;}.glyphicon-sort-by-alphabet:before{content:&quot;\\e151&quot;}.glyphicon-sort-by-alphabet-alt:before{content:&quot;\\e152&quot;}.glyphicon-sort-by-order:before{content:&quot;\\e153&quot;}.glyphicon-sort-by-order-alt:before{content:&quot;\\e154&quot;}.glyphicon-sort-by-attributes:before{content:&quot;\\e155&quot;}.glyphicon-sort-by-attributes-alt:before{content:&quot;\\e156&quot;}.glyphicon-unchecked:before{content:&quot;\\e157&quot;}.glyphicon-expand:before{content:&quot;\\e158&quot;}.glyphicon-collapse-down:before{content:&quot;\\e159&quot;}.glyphicon-collapse-up:before{content:&quot;\\e160&quot;}.glyphicon-log-in:before{content:&quot;\\e161&quot;}.glyphicon-flash:before{content:&quot;\\e162&quot;}.glyphicon-log-out:before{content:&quot;\\e163&quot;}.glyphicon-new-window:before{content:&quot;\\e164&quot;}.glyphicon-record:before{content:&quot;\\e165&quot;}.glyphicon-save:before{content:&quot;\\e166&quot;}.glyphicon-open:before{content:&quot;\\e167&quot;}.glyphicon-saved:before{content:&quot;\\e168&quot;}.glyphicon-import:before{content:&quot;\\e169&quot;}.glyphicon-export:before{content:&quot;\\e170&quot;}.glyphicon-send:before{content:&quot;\\e171&quot;}.glyphicon-floppy-disk:before{content:&quot;\\e172&quot;}.glyphicon-floppy-saved:before{content:&quot;\\e173&quot;}.glyphicon-floppy-remove:before{content:&quot;\\e174&quot;}.glyphicon-floppy-save:before{content:&quot;\\e175&quot;}.glyphicon-floppy-open:before{content:&quot;\\e176&quot;}.glyphicon-credit-card:before{content:&quot;\\e177&quot;}.glyphicon-transfer:before{content:&quot;\\e178&quot;}.glyphicon-cutlery:before{content:&quot;\\e179&quot;}.glyphicon-header:before{content:&quot;\\e180&quot;}.glyphicon-compressed:before{content:&quot;\\e181&quot;}.glyphicon-earphone:before{content:&quot;\\e182&quot;}.glyphicon-phone-alt:before{content:&quot;\\e183&quot;}.glyphicon-tower:before{content:&quot;\\e184&quot;}.glyphicon-stats:before{content:&quot;\\e185&quot;}.glyphicon-sd-video:before{content:&quot;\\e186&quot;}.glyphicon-hd-video:before{content:&quot;\\e187&quot;}.glyphicon-subtitles:before{content:&quot;\\e188&quot;}.glyphicon-sound-stereo:before{content:&quot;\\e189&quot;}.glyphicon-sound-dolby:before{content:&quot;\\e190&quot;}.glyphicon-sound-5-1:before{content:&quot;\\e191&quot;}.glyphicon-sound-6-1:before{content:&quot;\\e192&quot;}.glyphicon-sound-7-1:before{content:&quot;\\e193&quot;}.glyphicon-copyright-mark:before{content:&quot;\\e194&quot;}.glyphicon-registration-mark:before{content:&quot;\\e195&quot;}.glyphicon-cloud-download:before{content:&quot;\\e197&quot;}.glyphicon-cloud-upload:before{content:&quot;\\e198&quot;}.glyphicon-tree-conifer:before{content:&quot;\\e199&quot;}.glyphicon-tree-deciduous:before{content:&quot;\\e200&quot;}.glyphicon-cd:before{content:&quot;\\e201&quot;}.glyphicon-save-file:before{content:&quot;\\e202&quot;}.glyphicon-open-file:before{content:&quot;\\e203&quot;}.glyphicon-level-up:before{content:&quot;\\e204&quot;}.glyphicon-copy:before{content:&quot;\\e205&quot;}.glyphicon-paste:before{content:&quot;\\e206&quot;}.glyphicon-alert:before{content:&quot;\\e209&quot;}.glyphicon-equalizer:before{content:&quot;\\e210&quot;}.glyphicon-king:before{content:&quot;\\e211&quot;}.glyphicon-queen:before{content:&quot;\\e212&quot;}.glyphicon-pawn:before{content:&quot;\\e213&quot;}.glyphicon-bishop:before{content:&quot;\\e214&quot;}.glyphicon-knight:before{content:&quot;\\e215&quot;}.glyphicon-baby-formula:before{content:&quot;\\e216&quot;}.glyphicon-tent:before{content:&quot;\\26fa&quot;}.glyphicon-blackboard:before{content:&quot;\\e218&quot;}.glyphicon-bed:before{content:&quot;\\e219&quot;}.glyphicon-apple:before{content:&quot;\\f8ff&quot;}.glyphicon-erase:before{content:&quot;\\e221&quot;}.glyphicon-hourglass:before{content:&quot;\\231b&quot;}.glyphicon-lamp:before{content:&quot;\\e223&quot;}.glyphicon-duplicate:before{content:&quot;\\e224&quot;}.glyphicon-piggy-bank:before{content:&quot;\\e225&quot;}.glyphicon-scissors:before{content:&quot;\\e226&quot;}.glyphicon-bitcoin:before{content:&quot;\\e227&quot;}.glyphicon-btc:before{content:&quot;\\e227&quot;}.glyphicon-xbt:before{content:&quot;\\e227&quot;}.glyphicon-yen:before{content:&quot;\\00a5&quot;}.glyphicon-jpy:before{content:&quot;\\00a5&quot;}.glyphicon-ruble:before{content:&quot;\\20bd&quot;}.glyphicon-rub:before{content:&quot;\\20bd&quot;}.glyphicon-scale:before{content:&quot;\\e230&quot;}.glyphicon-ice-lolly:before{content:&quot;\\e231&quot;}.glyphicon-ice-lolly-tasted:before{content:&quot;\\e232&quot;}.glyphicon-education:before{content:&quot;\\e233&quot;}.glyphicon-option-horizontal:before{content:&quot;\\e234&quot;}.glyphicon-option-vertical:before{content:&quot;\\e235&quot;}.glyphicon-menu-hamburger:before{content:&quot;\\e236&quot;}.glyphicon-modal-window:before{content:&quot;\\e237&quot;}.glyphicon-oil:before{content:&quot;\\e238&quot;}.glyphicon-grain:before{content:&quot;\\e239&quot;}.glyphicon-sunglasses:before{content:&quot;\\e240&quot;}.glyphicon-text-size:before{content:&quot;\\e241&quot;}.glyphicon-text-color:before{content:&quot;\\e242&quot;}.glyphicon-text-background:before{content:&quot;\\e243&quot;}.glyphicon-object-align-top:before{content:&quot;\\e244&quot;}.glyphicon-object-align-bottom:before{content:&quot;\\e245&quot;}.glyphicon-object-align-horizontal:before{content:&quot;\\e246&quot;}.glyphicon-object-align-left:before{content:&quot;\\e247&quot;}.glyphicon-object-align-vertical:before{content:&quot;\\e248&quot;}.glyphicon-object-align-right:before{content:&quot;\\e249&quot;}.glyphicon-triangle-right:before{content:&quot;\\e250&quot;}.glyphicon-triangle-left:before{content:&quot;\\e251&quot;}.glyphicon-triangle-bottom:before{content:&quot;\\e252&quot;}.glyphicon-triangle-top:before{content:&quot;\\e253&quot;}.glyphicon-console:before{content:&quot;\\e254&quot;}.glyphicon-superscript:before{content:&quot;\\e255&quot;}.glyphicon-subscript:before{content:&quot;\\e256&quot;}.glyphicon-menu-left:before{content:&quot;\\e257&quot;}.glyphicon-menu-right:before{content:&quot;\\e258&quot;}.glyphicon-menu-down:before{content:&quot;\\e259&quot;}.glyphicon-menu-up:before{content:&quot;\\e260&quot;}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner&gt;.item&gt;a&gt;img,.carousel-inner&gt;.item&gt;img,.img-responsive,.thumbnail a&gt;img,.thumbnail&gt;img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline&gt;li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:&#x27;\\2014 \\00A0&#x27;}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:&#x27;&#x27;}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:&#x27;\\00A0 \\2014&#x27;}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,&quot;Courier New&quot;,monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table&gt;tbody&gt;tr&gt;td,.table&gt;tbody&gt;tr&gt;th,.table&gt;tfoot&gt;tr&gt;td,.table&gt;tfoot&gt;tr&gt;th,.table&gt;thead&gt;tr&gt;td,.table&gt;thead&gt;tr&gt;th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table&gt;thead&gt;tr&gt;th{vertical-align:bottom;border-bottom:2px solid #ddd}.table&gt;caption+thead&gt;tr:first-child&gt;td,.table&gt;caption+thead&gt;tr:first-child&gt;th,.table&gt;colgroup+thead&gt;tr:first-child&gt;td,.table&gt;colgroup+thead&gt;tr:first-child&gt;th,.table&gt;thead:first-child&gt;tr:first-child&gt;td,.table&gt;thead:first-child&gt;tr:first-child&gt;th{border-top:0}.table&gt;tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed&gt;tbody&gt;tr&gt;td,.table-condensed&gt;tbody&gt;tr&gt;th,.table-condensed&gt;tfoot&gt;tr&gt;td,.table-condensed&gt;tfoot&gt;tr&gt;th,.table-condensed&gt;thead&gt;tr&gt;td,.table-condensed&gt;thead&gt;tr&gt;th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered&gt;tbody&gt;tr&gt;td,.table-bordered&gt;tbody&gt;tr&gt;th,.table-bordered&gt;tfoot&gt;tr&gt;td,.table-bordered&gt;tfoot&gt;tr&gt;th,.table-bordered&gt;thead&gt;tr&gt;td,.table-bordered&gt;thead&gt;tr&gt;th{border:1px solid #ddd}.table-bordered&gt;thead&gt;tr&gt;td,.table-bordered&gt;thead&gt;tr&gt;th{border-bottom-width:2px}.table-striped&gt;tbody&gt;tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover&gt;tbody&gt;tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table&gt;tbody&gt;tr.active&gt;td,.table&gt;tbody&gt;tr.active&gt;th,.table&gt;tbody&gt;tr&gt;td.active,.table&gt;tbody&gt;tr&gt;th.active,.table&gt;tfoot&gt;tr.active&gt;td,.table&gt;tfoot&gt;tr.active&gt;th,.table&gt;tfoot&gt;tr&gt;td.active,.table&gt;tfoot&gt;tr&gt;th.active,.table&gt;thead&gt;tr.active&gt;td,.table&gt;thead&gt;tr.active&gt;th,.table&gt;thead&gt;tr&gt;td.active,.table&gt;thead&gt;tr&gt;th.active{background-color:#f5f5f5}.table-hover&gt;tbody&gt;tr.active:hover&gt;td,.table-hover&gt;tbody&gt;tr.active:hover&gt;th,.table-hover&gt;tbody&gt;tr:hover&gt;.active,.table-hover&gt;tbody&gt;tr&gt;td.active:hover,.table-hover&gt;tbody&gt;tr&gt;th.active:hover{background-color:#e8e8e8}.table&gt;tbody&gt;tr.success&gt;td,.table&gt;tbody&gt;tr.success&gt;th,.table&gt;tbody&gt;tr&gt;td.success,.table&gt;tbody&gt;tr&gt;th.success,.table&gt;tfoot&gt;tr.success&gt;td,.table&gt;tfoot&gt;tr.success&gt;th,.table&gt;tfoot&gt;tr&gt;td.success,.table&gt;tfoot&gt;tr&gt;th.success,.table&gt;thead&gt;tr.success&gt;td,.table&gt;thead&gt;tr.success&gt;th,.table&gt;thead&gt;tr&gt;td.success,.table&gt;thead&gt;tr&gt;th.success{background-color:#dff0d8}.table-hover&gt;tbody&gt;tr.success:hover&gt;td,.table-hover&gt;tbody&gt;tr.success:hover&gt;th,.table-hover&gt;tbody&gt;tr:hover&gt;.success,.table-hover&gt;tbody&gt;tr&gt;td.success:hover,.table-hover&gt;tbody&gt;tr&gt;th.success:hover{background-color:#d0e9c6}.table&gt;tbody&gt;tr.info&gt;td,.table&gt;tbody&gt;tr.info&gt;th,.table&gt;tbody&gt;tr&gt;td.info,.table&gt;tbody&gt;tr&gt;th.info,.table&gt;tfoot&gt;tr.info&gt;td,.table&gt;tfoot&gt;tr.info&gt;th,.table&gt;tfoot&gt;tr&gt;td.info,.table&gt;tfoot&gt;tr&gt;th.info,.table&gt;thead&gt;tr.info&gt;td,.table&gt;thead&gt;tr.info&gt;th,.table&gt;thead&gt;tr&gt;td.info,.table&gt;thead&gt;tr&gt;th.info{background-color:#d9edf7}.table-hover&gt;tbody&gt;tr.info:hover&gt;td,.table-hover&gt;tbody&gt;tr.info:hover&gt;th,.table-hover&gt;tbody&gt;tr:hover&gt;.info,.table-hover&gt;tbody&gt;tr&gt;td.info:hover,.table-hover&gt;tbody&gt;tr&gt;th.info:hover{background-color:#c4e3f3}.table&gt;tbody&gt;tr.warning&gt;td,.table&gt;tbody&gt;tr.warning&gt;th,.table&gt;tbody&gt;tr&gt;td.warning,.table&gt;tbody&gt;tr&gt;th.warning,.table&gt;tfoot&gt;tr.warning&gt;td,.table&gt;tfoot&gt;tr.warning&gt;th,.table&gt;tfoot&gt;tr&gt;td.warning,.table&gt;tfoot&gt;tr&gt;th.warning,.table&gt;thead&gt;tr.warning&gt;td,.table&gt;thead&gt;tr.warning&gt;th,.table&gt;thead&gt;tr&gt;td.warning,.table&gt;thead&gt;tr&gt;th.warning{background-color:#fcf8e3}.table-hover&gt;tbody&gt;tr.warning:hover&gt;td,.table-hover&gt;tbody&gt;tr.warning:hover&gt;th,.table-hover&gt;tbody&gt;tr:hover&gt;.warning,.table-hover&gt;tbody&gt;tr&gt;td.warning:hover,.table-hover&gt;tbody&gt;tr&gt;th.warning:hover{background-color:#faf2cc}.table&gt;tbody&gt;tr.danger&gt;td,.table&gt;tbody&gt;tr.danger&gt;th,.table&gt;tbody&gt;tr&gt;td.danger,.table&gt;tbody&gt;tr&gt;th.danger,.table&gt;tfoot&gt;tr.danger&gt;td,.table&gt;tfoot&gt;tr.danger&gt;th,.table&gt;tfoot&gt;tr&gt;td.danger,.table&gt;tfoot&gt;tr&gt;th.danger,.table&gt;thead&gt;tr.danger&gt;td,.table&gt;thead&gt;tr.danger&gt;th,.table&gt;thead&gt;tr&gt;td.danger,.table&gt;thead&gt;tr&gt;th.danger{background-color:#f2dede}.table-hover&gt;tbody&gt;tr.danger:hover&gt;td,.table-hover&gt;tbody&gt;tr.danger:hover&gt;th,.table-hover&gt;tbody&gt;tr:hover&gt;.danger,.table-hover&gt;tbody&gt;tr&gt;td.danger:hover,.table-hover&gt;tbody&gt;tr&gt;th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive&gt;.table{margin-bottom:0}.table-responsive&gt;.table&gt;tbody&gt;tr&gt;td,.table-responsive&gt;.table&gt;tbody&gt;tr&gt;th,.table-responsive&gt;.table&gt;tfoot&gt;tr&gt;td,.table-responsive&gt;.table&gt;tfoot&gt;tr&gt;th,.table-responsive&gt;.table&gt;thead&gt;tr&gt;td,.table-responsive&gt;.table&gt;thead&gt;tr&gt;th{white-space:nowrap}.table-responsive&gt;.table-bordered{border:0}.table-responsive&gt;.table-bordered&gt;tbody&gt;tr&gt;td:first-child,.table-responsive&gt;.table-bordered&gt;tbody&gt;tr&gt;th:first-child,.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr&gt;td:first-child,.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr&gt;th:first-child,.table-responsive&gt;.table-bordered&gt;thead&gt;tr&gt;td:first-child,.table-responsive&gt;.table-bordered&gt;thead&gt;tr&gt;th:first-child{border-left:0}.table-responsive&gt;.table-bordered&gt;tbody&gt;tr&gt;td:last-child,.table-responsive&gt;.table-bordered&gt;tbody&gt;tr&gt;th:last-child,.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr&gt;td:last-child,.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr&gt;th:last-child,.table-responsive&gt;.table-bordered&gt;thead&gt;tr&gt;td:last-child,.table-responsive&gt;.table-bordered&gt;thead&gt;tr&gt;th:last-child{border-right:0}.table-responsive&gt;.table-bordered&gt;tbody&gt;tr:last-child&gt;td,.table-responsive&gt;.table-bordered&gt;tbody&gt;tr:last-child&gt;th,.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr:last-child&gt;td,.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr:last-child&gt;th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group&gt;.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open&gt;.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open&gt;.dropdown-toggle.btn-default.focus,.open&gt;.dropdown-toggle.btn-default:focus,.open&gt;.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open&gt;.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open&gt;.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open&gt;.dropdown-toggle.btn-primary.focus,.open&gt;.dropdown-toggle.btn-primary:focus,.open&gt;.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open&gt;.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open&gt;.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open&gt;.dropdown-toggle.btn-success.focus,.open&gt;.dropdown-toggle.btn-success:focus,.open&gt;.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open&gt;.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open&gt;.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open&gt;.dropdown-toggle.btn-info.focus,.open&gt;.dropdown-toggle.btn-info:focus,.open&gt;.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open&gt;.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open&gt;.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open&gt;.dropdown-toggle.btn-warning.focus,.open&gt;.dropdown-toggle.btn-warning:focus,.open&gt;.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open&gt;.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open&gt;.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open&gt;.dropdown-toggle.btn-danger.focus,.open&gt;.dropdown-toggle.btn-danger:focus,.open&gt;.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open&gt;.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg&gt;.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm&gt;.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs&gt;.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu&gt;li&gt;a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu&gt;li&gt;a:focus,.dropdown-menu&gt;li&gt;a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu&gt;.active&gt;a,.dropdown-menu&gt;.active&gt;a:focus,.dropdown-menu&gt;.active&gt;a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu&gt;.disabled&gt;a,.dropdown-menu&gt;.disabled&gt;a:focus,.dropdown-menu&gt;.disabled&gt;a:hover{color:#777}.dropdown-menu&gt;.disabled&gt;a:focus,.dropdown-menu&gt;.disabled&gt;a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open&gt;.dropdown-menu{display:block}.open&gt;a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right&gt;.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:&quot;&quot;;border-top:0;border-bottom:4px dashed;border-bottom:4px solid\\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical&gt;.btn,.btn-group&gt;.btn{position:relative;float:left}.btn-group-vertical&gt;.btn.active,.btn-group-vertical&gt;.btn:active,.btn-group-vertical&gt;.btn:focus,.btn-group-vertical&gt;.btn:hover,.btn-group&gt;.btn.active,.btn-group&gt;.btn:active,.btn-group&gt;.btn:focus,.btn-group&gt;.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar&gt;.btn,.btn-toolbar&gt;.btn-group,.btn-toolbar&gt;.input-group{margin-left:5px}.btn-group&gt;.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group&gt;.btn:first-child{margin-left:0}.btn-group&gt;.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group&gt;.btn:last-child:not(:first-child),.btn-group&gt;.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group&gt;.btn-group{float:left}.btn-group&gt;.btn-group:not(:first-child):not(:last-child)&gt;.btn{border-radius:0}.btn-group&gt;.btn-group:first-child:not(:last-child)&gt;.btn:last-child,.btn-group&gt;.btn-group:first-child:not(:last-child)&gt;.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group&gt;.btn-group:last-child:not(:first-child)&gt;.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group&gt;.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group&gt;.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical&gt;.btn,.btn-group-vertical&gt;.btn-group,.btn-group-vertical&gt;.btn-group&gt;.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical&gt;.btn-group&gt;.btn{float:none}.btn-group-vertical&gt;.btn+.btn,.btn-group-vertical&gt;.btn+.btn-group,.btn-group-vertical&gt;.btn-group+.btn,.btn-group-vertical&gt;.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical&gt;.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical&gt;.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical&gt;.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical&gt;.btn-group:not(:first-child):not(:last-child)&gt;.btn{border-radius:0}.btn-group-vertical&gt;.btn-group:first-child:not(:last-child)&gt;.btn:last-child,.btn-group-vertical&gt;.btn-group:first-child:not(:last-child)&gt;.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical&gt;.btn-group:last-child:not(:first-child)&gt;.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified&gt;.btn,.btn-group-justified&gt;.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified&gt;.btn-group .btn{width:100%}.btn-group-justified&gt;.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]&gt;.btn input[type=checkbox],[data-toggle=buttons]&gt;.btn input[type=radio],[data-toggle=buttons]&gt;.btn-group&gt;.btn input[type=checkbox],[data-toggle=buttons]&gt;.btn-group&gt;.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg&gt;.form-control,.input-group-lg&gt;.input-group-addon,.input-group-lg&gt;.input-group-btn&gt;.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg&gt;.form-control,select.input-group-lg&gt;.input-group-addon,select.input-group-lg&gt;.input-group-btn&gt;.btn{height:46px;line-height:46px}select[multiple].input-group-lg&gt;.form-control,select[multiple].input-group-lg&gt;.input-group-addon,select[multiple].input-group-lg&gt;.input-group-btn&gt;.btn,textarea.input-group-lg&gt;.form-control,textarea.input-group-lg&gt;.input-group-addon,textarea.input-group-lg&gt;.input-group-btn&gt;.btn{height:auto}.input-group-sm&gt;.form-control,.input-group-sm&gt;.input-group-addon,.input-group-sm&gt;.input-group-btn&gt;.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm&gt;.form-control,select.input-group-sm&gt;.input-group-addon,select.input-group-sm&gt;.input-group-btn&gt;.btn{height:30px;line-height:30px}select[multiple].input-group-sm&gt;.form-control,select[multiple].input-group-sm&gt;.input-group-addon,select[multiple].input-group-sm&gt;.input-group-btn&gt;.btn,textarea.input-group-sm&gt;.form-control,textarea.input-group-sm&gt;.input-group-addon,textarea.input-group-sm&gt;.input-group-btn&gt;.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child&gt;.btn,.input-group-btn:first-child&gt;.btn-group&gt;.btn,.input-group-btn:first-child&gt;.dropdown-toggle,.input-group-btn:last-child&gt;.btn-group:not(:last-child)&gt;.btn,.input-group-btn:last-child&gt;.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child&gt;.btn-group:not(:first-child)&gt;.btn,.input-group-btn:first-child&gt;.btn:not(:first-child),.input-group-btn:last-child&gt;.btn,.input-group-btn:last-child&gt;.btn-group&gt;.btn,.input-group-btn:last-child&gt;.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn&gt;.btn{position:relative}.input-group-btn&gt;.btn+.btn{margin-left:-1px}.input-group-btn&gt;.btn:active,.input-group-btn&gt;.btn:focus,.input-group-btn&gt;.btn:hover{z-index:2}.input-group-btn:first-child&gt;.btn,.input-group-btn:first-child&gt;.btn-group{margin-right:-1px}.input-group-btn:last-child&gt;.btn,.input-group-btn:last-child&gt;.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav&gt;li{position:relative;display:block}.nav&gt;li&gt;a{position:relative;display:block;padding:10px 15px}.nav&gt;li&gt;a:focus,.nav&gt;li&gt;a:hover{text-decoration:none;background-color:#eee}.nav&gt;li.disabled&gt;a{color:#777}.nav&gt;li.disabled&gt;a:focus,.nav&gt;li.disabled&gt;a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open&gt;a,.nav .open&gt;a:focus,.nav .open&gt;a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav&gt;li&gt;a&gt;img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs&gt;li{float:left;margin-bottom:-1px}.nav-tabs&gt;li&gt;a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs&gt;li&gt;a:hover{border-color:#eee #eee #ddd}.nav-tabs&gt;li.active&gt;a,.nav-tabs&gt;li.active&gt;a:focus,.nav-tabs&gt;li.active&gt;a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified&gt;li{float:none}.nav-tabs.nav-justified&gt;li&gt;a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified&gt;.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified&gt;li{display:table-cell;width:1%}.nav-tabs.nav-justified&gt;li&gt;a{margin-bottom:0}}.nav-tabs.nav-justified&gt;li&gt;a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified&gt;.active&gt;a,.nav-tabs.nav-justified&gt;.active&gt;a:focus,.nav-tabs.nav-justified&gt;.active&gt;a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified&gt;li&gt;a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified&gt;.active&gt;a,.nav-tabs.nav-justified&gt;.active&gt;a:focus,.nav-tabs.nav-justified&gt;.active&gt;a:hover{border-bottom-color:#fff}}.nav-pills&gt;li{float:left}.nav-pills&gt;li&gt;a{border-radius:4px}.nav-pills&gt;li+li{margin-left:2px}.nav-pills&gt;li.active&gt;a,.nav-pills&gt;li.active&gt;a:focus,.nav-pills&gt;li.active&gt;a:hover{color:#fff;background-color:#337ab7}.nav-stacked&gt;li{float:none}.nav-stacked&gt;li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified&gt;li{float:none}.nav-justified&gt;li&gt;a{margin-bottom:5px;text-align:center}.nav-justified&gt;.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified&gt;li{display:table-cell;width:1%}.nav-justified&gt;li&gt;a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified&gt;li&gt;a{margin-right:0;border-radius:4px}.nav-tabs-justified&gt;.active&gt;a,.nav-tabs-justified&gt;.active&gt;a:focus,.nav-tabs-justified&gt;.active&gt;a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified&gt;li&gt;a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified&gt;.active&gt;a,.nav-tabs-justified&gt;.active&gt;a:focus,.nav-tabs-justified&gt;.active&gt;a:hover{border-bottom-color:#fff}}.tab-content&gt;.tab-pane{display:none}.tab-content&gt;.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid&gt;.navbar-collapse,.container-fluid&gt;.navbar-header,.container&gt;.navbar-collapse,.container&gt;.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid&gt;.navbar-collapse,.container-fluid&gt;.navbar-header,.container&gt;.navbar-collapse,.container&gt;.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand&gt;img{display:block}@media (min-width:768px){.navbar&gt;.container .navbar-brand,.navbar&gt;.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav&gt;li&gt;a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu&gt;li&gt;a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu&gt;li&gt;a{line-height:20px}.navbar-nav .open .dropdown-menu&gt;li&gt;a:focus,.navbar-nav .open .dropdown-menu&gt;li&gt;a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav&gt;li{float:left}.navbar-nav&gt;li&gt;a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group&gt;.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav&gt;li&gt;.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav&gt;li&gt;.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav&gt;li&gt;a{color:#777}.navbar-default .navbar-nav&gt;li&gt;a:focus,.navbar-default .navbar-nav&gt;li&gt;a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav&gt;.active&gt;a,.navbar-default .navbar-nav&gt;.active&gt;a:focus,.navbar-default .navbar-nav&gt;.active&gt;a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav&gt;.disabled&gt;a,.navbar-default .navbar-nav&gt;.disabled&gt;a:focus,.navbar-default .navbar-nav&gt;.disabled&gt;a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav&gt;.open&gt;a,.navbar-default .navbar-nav&gt;.open&gt;a:focus,.navbar-default .navbar-nav&gt;.open&gt;a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu&gt;li&gt;a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu&gt;li&gt;a:focus,.navbar-default .navbar-nav .open .dropdown-menu&gt;li&gt;a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu&gt;.active&gt;a,.navbar-default .navbar-nav .open .dropdown-menu&gt;.active&gt;a:focus,.navbar-default .navbar-nav .open .dropdown-menu&gt;.active&gt;a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu&gt;.disabled&gt;a,.navbar-default .navbar-nav .open .dropdown-menu&gt;.disabled&gt;a:focus,.navbar-default .navbar-nav .open .dropdown-menu&gt;.disabled&gt;a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav&gt;li&gt;a{color:#9d9d9d}.navbar-inverse .navbar-nav&gt;li&gt;a:focus,.navbar-inverse .navbar-nav&gt;li&gt;a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav&gt;.active&gt;a,.navbar-inverse .navbar-nav&gt;.active&gt;a:focus,.navbar-inverse .navbar-nav&gt;.active&gt;a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav&gt;.disabled&gt;a,.navbar-inverse .navbar-nav&gt;.disabled&gt;a:focus,.navbar-inverse .navbar-nav&gt;.disabled&gt;a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav&gt;.open&gt;a,.navbar-inverse .navbar-nav&gt;.open&gt;a:focus,.navbar-inverse .navbar-nav&gt;.open&gt;a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu&gt;.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu&gt;li&gt;a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu&gt;li&gt;a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu&gt;li&gt;a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu&gt;.active&gt;a,.navbar-inverse .navbar-nav .open .dropdown-menu&gt;.active&gt;a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu&gt;.active&gt;a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu&gt;.disabled&gt;a,.navbar-inverse .navbar-nav .open .dropdown-menu&gt;.disabled&gt;a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu&gt;.disabled&gt;a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb&gt;li{display:inline-block}.breadcrumb&gt;li+li:before{padding:0 5px;color:#ccc;content:&quot;/\\00a0&quot;}.breadcrumb&gt;.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination&gt;li{display:inline}.pagination&gt;li&gt;a,.pagination&gt;li&gt;span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination&gt;li:first-child&gt;a,.pagination&gt;li:first-child&gt;span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination&gt;li:last-child&gt;a,.pagination&gt;li:last-child&gt;span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination&gt;li&gt;a:focus,.pagination&gt;li&gt;a:hover,.pagination&gt;li&gt;span:focus,.pagination&gt;li&gt;span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination&gt;.active&gt;a,.pagination&gt;.active&gt;a:focus,.pagination&gt;.active&gt;a:hover,.pagination&gt;.active&gt;span,.pagination&gt;.active&gt;span:focus,.pagination&gt;.active&gt;span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination&gt;.disabled&gt;a,.pagination&gt;.disabled&gt;a:focus,.pagination&gt;.disabled&gt;a:hover,.pagination&gt;.disabled&gt;span,.pagination&gt;.disabled&gt;span:focus,.pagination&gt;.disabled&gt;span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg&gt;li&gt;a,.pagination-lg&gt;li&gt;span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg&gt;li:first-child&gt;a,.pagination-lg&gt;li:first-child&gt;span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg&gt;li:last-child&gt;a,.pagination-lg&gt;li:last-child&gt;span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm&gt;li&gt;a,.pagination-sm&gt;li&gt;span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm&gt;li:first-child&gt;a,.pagination-sm&gt;li:first-child&gt;span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm&gt;li:last-child&gt;a,.pagination-sm&gt;li:last-child&gt;span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li&gt;a,.pager li&gt;span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li&gt;a:focus,.pager li&gt;a:hover{text-decoration:none;background-color:#eee}.pager .next&gt;a,.pager .next&gt;span{float:right}.pager .previous&gt;a,.pager .previous&gt;span{float:left}.pager .disabled&gt;a,.pager .disabled&gt;a:focus,.pager .disabled&gt;a:hover,.pager .disabled&gt;span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs&gt;.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active&gt;.badge,.nav-pills&gt;.active&gt;a&gt;.badge{color:#337ab7;background-color:#fff}.list-group-item&gt;.badge{float:right}.list-group-item&gt;.badge+.badge{margin-right:5px}.nav-pills&gt;li&gt;a&gt;.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron&gt;hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a&gt;img,.thumbnail&gt;img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert&gt;p,.alert&gt;ul{margin-bottom:0}.alert&gt;p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media&gt;.pull-right{padding-left:10px}.media-left,.media&gt;.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading&gt;.small,.list-group-item.active .list-group-item-heading&gt;small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading&gt;.small,.list-group-item.active:focus .list-group-item-heading&gt;small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading&gt;.small,.list-group-item.active:hover .list-group-item-heading&gt;small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading&gt;.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title&gt;.small,.panel-title&gt;.small&gt;a,.panel-title&gt;a,.panel-title&gt;small,.panel-title&gt;small&gt;a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel&gt;.list-group,.panel&gt;.panel-collapse&gt;.list-group{margin-bottom:0}.panel&gt;.list-group .list-group-item,.panel&gt;.panel-collapse&gt;.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel&gt;.list-group:first-child .list-group-item:first-child,.panel&gt;.panel-collapse&gt;.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel&gt;.list-group:last-child .list-group-item:last-child,.panel&gt;.panel-collapse&gt;.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel&gt;.panel-heading+.panel-collapse&gt;.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel&gt;.panel-collapse&gt;.table,.panel&gt;.table,.panel&gt;.table-responsive&gt;.table{margin-bottom:0}.panel&gt;.panel-collapse&gt;.table caption,.panel&gt;.table caption,.panel&gt;.table-responsive&gt;.table caption{padding-right:15px;padding-left:15px}.panel&gt;.table-responsive:first-child&gt;.table:first-child,.panel&gt;.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child,.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child,.panel&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child,.panel&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child td:first-child,.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child th:first-child,.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child td:first-child,.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child th:first-child,.panel&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child td:first-child,.panel&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child th:first-child,.panel&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child td:first-child,.panel&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child th:first-child{border-top-left-radius:3px}.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child td:last-child,.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child th:last-child,.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child td:last-child,.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child th:last-child,.panel&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child td:last-child,.panel&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child th:last-child,.panel&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child td:last-child,.panel&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child th:last-child{border-top-right-radius:3px}.panel&gt;.table-responsive:last-child&gt;.table:last-child,.panel&gt;.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child,.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child,.panel&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child,.panel&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child td:first-child,.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child th:first-child,.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child td:first-child,.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child th:first-child,.panel&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child td:first-child,.panel&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child th:first-child,.panel&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child td:first-child,.panel&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child th:first-child{border-bottom-left-radius:3px}.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child td:last-child,.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child th:last-child,.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child td:last-child,.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child th:last-child,.panel&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child td:last-child,.panel&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child th:last-child,.panel&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child td:last-child,.panel&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child th:last-child{border-bottom-right-radius:3px}.panel&gt;.panel-body+.table,.panel&gt;.panel-body+.table-responsive,.panel&gt;.table+.panel-body,.panel&gt;.table-responsive+.panel-body{border-top:1px solid #ddd}.panel&gt;.table&gt;tbody:first-child&gt;tr:first-child td,.panel&gt;.table&gt;tbody:first-child&gt;tr:first-child th{border-top:0}.panel&gt;.table-bordered,.panel&gt;.table-responsive&gt;.table-bordered{border:0}.panel&gt;.table-bordered&gt;tbody&gt;tr&gt;td:first-child,.panel&gt;.table-bordered&gt;tbody&gt;tr&gt;th:first-child,.panel&gt;.table-bordered&gt;tfoot&gt;tr&gt;td:first-child,.panel&gt;.table-bordered&gt;tfoot&gt;tr&gt;th:first-child,.panel&gt;.table-bordered&gt;thead&gt;tr&gt;td:first-child,.panel&gt;.table-bordered&gt;thead&gt;tr&gt;th:first-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;tbody&gt;tr&gt;td:first-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;tbody&gt;tr&gt;th:first-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr&gt;td:first-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr&gt;th:first-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;thead&gt;tr&gt;td:first-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;thead&gt;tr&gt;th:first-child{border-left:0}.panel&gt;.table-bordered&gt;tbody&gt;tr&gt;td:last-child,.panel&gt;.table-bordered&gt;tbody&gt;tr&gt;th:last-child,.panel&gt;.table-bordered&gt;tfoot&gt;tr&gt;td:last-child,.panel&gt;.table-bordered&gt;tfoot&gt;tr&gt;th:last-child,.panel&gt;.table-bordered&gt;thead&gt;tr&gt;td:last-child,.panel&gt;.table-bordered&gt;thead&gt;tr&gt;th:last-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;tbody&gt;tr&gt;td:last-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;tbody&gt;tr&gt;th:last-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr&gt;td:last-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr&gt;th:last-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;thead&gt;tr&gt;td:last-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;thead&gt;tr&gt;th:last-child{border-right:0}.panel&gt;.table-bordered&gt;tbody&gt;tr:first-child&gt;td,.panel&gt;.table-bordered&gt;tbody&gt;tr:first-child&gt;th,.panel&gt;.table-bordered&gt;thead&gt;tr:first-child&gt;td,.panel&gt;.table-bordered&gt;thead&gt;tr:first-child&gt;th,.panel&gt;.table-responsive&gt;.table-bordered&gt;tbody&gt;tr:first-child&gt;td,.panel&gt;.table-responsive&gt;.table-bordered&gt;tbody&gt;tr:first-child&gt;th,.panel&gt;.table-responsive&gt;.table-bordered&gt;thead&gt;tr:first-child&gt;td,.panel&gt;.table-responsive&gt;.table-bordered&gt;thead&gt;tr:first-child&gt;th{border-bottom:0}.panel&gt;.table-bordered&gt;tbody&gt;tr:last-child&gt;td,.panel&gt;.table-bordered&gt;tbody&gt;tr:last-child&gt;th,.panel&gt;.table-bordered&gt;tfoot&gt;tr:last-child&gt;td,.panel&gt;.table-bordered&gt;tfoot&gt;tr:last-child&gt;th,.panel&gt;.table-responsive&gt;.table-bordered&gt;tbody&gt;tr:last-child&gt;td,.panel&gt;.table-responsive&gt;.table-bordered&gt;tbody&gt;tr:last-child&gt;th,.panel&gt;.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr:last-child&gt;td,.panel&gt;.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr:last-child&gt;th{border-bottom:0}.panel&gt;.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse&gt;.list-group,.panel-group .panel-heading+.panel-collapse&gt;.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default&gt;.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default&gt;.panel-heading+.panel-collapse&gt;.panel-body{border-top-color:#ddd}.panel-default&gt;.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default&gt;.panel-footer+.panel-collapse&gt;.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary&gt;.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary&gt;.panel-heading+.panel-collapse&gt;.panel-body{border-top-color:#337ab7}.panel-primary&gt;.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary&gt;.panel-footer+.panel-collapse&gt;.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success&gt;.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success&gt;.panel-heading+.panel-collapse&gt;.panel-body{border-top-color:#d6e9c6}.panel-success&gt;.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success&gt;.panel-footer+.panel-collapse&gt;.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info&gt;.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info&gt;.panel-heading+.panel-collapse&gt;.panel-body{border-top-color:#bce8f1}.panel-info&gt;.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info&gt;.panel-footer+.panel-collapse&gt;.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning&gt;.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning&gt;.panel-heading+.panel-collapse&gt;.panel-body{border-top-color:#faebcc}.panel-warning&gt;.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning&gt;.panel-footer+.panel-collapse&gt;.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger&gt;.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger&gt;.panel-heading+.panel-collapse&gt;.panel-body{border-top-color:#ebccd1}.panel-danger&gt;.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger&gt;.panel-footer+.panel-collapse&gt;.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover&gt;.arrow,.popover&gt;.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover&gt;.arrow{border-width:11px}.popover&gt;.arrow:after{content:&quot;&quot;;border-width:10px}.popover.top&gt;.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top&gt;.arrow:after{bottom:1px;margin-left:-10px;content:&quot; &quot;;border-top-color:#fff;border-bottom-width:0}.popover.right&gt;.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right&gt;.arrow:after{bottom:-10px;left:1px;content:&quot; &quot;;border-right-color:#fff;border-left-width:0}.popover.bottom&gt;.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom&gt;.arrow:after{top:1px;margin-left:-10px;content:&quot; &quot;;border-top-width:0;border-bottom-color:#fff}.popover.left&gt;.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left&gt;.arrow:after{right:1px;bottom:-10px;content:&quot; &quot;;border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner&gt;.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner&gt;.item&gt;a&gt;img,.carousel-inner&gt;.item&gt;img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner&gt;.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner&gt;.item.active.right,.carousel-inner&gt;.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner&gt;.item.active.left,.carousel-inner&gt;.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner&gt;.item.active,.carousel-inner&gt;.item.next.left,.carousel-inner&gt;.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner&gt;.active,.carousel-inner&gt;.next,.carousel-inner&gt;.prev{display:block}.carousel-inner&gt;.active{left:0}.carousel-inner&gt;.next,.carousel-inner&gt;.prev{position:absolute;top:0;width:100%}.carousel-inner&gt;.next{left:100%}.carousel-inner&gt;.prev{left:-100%}.carousel-inner&gt;.next.left,.carousel-inner&gt;.prev.right{left:0}.carousel-inner&gt;.active.left{left:-100%}.carousel-inner&gt;.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#80000000&#x27;, endColorstr=&#x27;#00000000&#x27;, GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#00000000&#x27;, endColorstr=&#x27;#80000000&#x27;, GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:&#x27;\\2039&#x27;}.carousel-control .icon-next:before{content:&#x27;\\203a&#x27;}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical&gt;.btn-group:after,.btn-group-vertical&gt;.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:&quot; &quot;}.btn-group-vertical&gt;.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}\n",
"/*# sourceMappingURL=bootstrap.min.css.map *//*!\n",
" * Bootstrap v3.3.7 (http://getbootstrap.com)\n",
" * Copyright 2011-2016 Twitter, Inc.\n",
" * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n",
" */.btn-danger,.btn-default,.btn-info,.btn-primary,.btn-success,.btn-warning{text-shadow:0 -1px 0 rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-success.active,.btn-success:active,.btn-warning.active,.btn-warning:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-danger.disabled,.btn-danger[disabled],.btn-default.disabled,.btn-default[disabled],.btn-info.disabled,.btn-info[disabled],.btn-primary.disabled,.btn-primary[disabled],.btn-success.disabled,.btn-success[disabled],.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-danger,fieldset[disabled] .btn-default,fieldset[disabled] .btn-info,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-success,fieldset[disabled] .btn-warning{-webkit-box-shadow:none;box-shadow:none}.btn-danger .badge,.btn-default .badge,.btn-info .badge,.btn-primary .badge,.btn-success .badge,.btn-warning .badge{text-shadow:none}.btn.active,.btn:active{background-image:none}.btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-o-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e0e0e0));background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#ffffffff&#x27;, endColorstr=&#x27;#ffe0e0e0&#x27;, GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc}.btn-default:focus,.btn-default:hover{background-color:#e0e0e0;background-position:0 -15px}.btn-default.active,.btn-default:active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#e0e0e0;background-image:none}.btn-primary{background-image:-webkit-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-o-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#265a88));background-image:linear-gradient(to bottom,#337ab7 0,#265a88 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#ff337ab7&#x27;, endColorstr=&#x27;#ff265a88&#x27;, GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#245580}.btn-primary:focus,.btn-primary:hover{background-color:#265a88;background-position:0 -15px}.btn-primary.active,.btn-primary:active{background-color:#265a88;border-color:#245580}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#265a88;background-image:none}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#419641));background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#ff5cb85c&#x27;, endColorstr=&#x27;#ff419641&#x27;, GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:focus,.btn-success:hover{background-color:#419641;background-position:0 -15px}.btn-success.active,.btn-success:active{background-color:#419641;border-color:#3e8f3e}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled.focus,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled].focus,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#419641;background-image:none}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#2aabd2));background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#ff5bc0de&#x27;, endColorstr=&#x27;#ff2aabd2&#x27;, GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:focus,.btn-info:hover{background-color:#2aabd2;background-position:0 -15px}.btn-info.active,.btn-info:active{background-color:#2aabd2;border-color:#28a4c9}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled.focus,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled].focus,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#2aabd2;background-image:none}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#eb9316));background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#fff0ad4e&#x27;, endColorstr=&#x27;#ffeb9316&#x27;, GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:focus,.btn-warning:hover{background-color:#eb9316;background-position:0 -15px}.btn-warning.active,.btn-warning:active{background-color:#eb9316;border-color:#e38d13}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled.focus,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled].focus,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#eb9316;background-image:none}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c12e2a));background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#ffd9534f&#x27;, endColorstr=&#x27;#ffc12e2a&#x27;, GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:focus,.btn-danger:hover{background-color:#c12e2a;background-position:0 -15px}.btn-danger.active,.btn-danger:active{background-color:#c12e2a;border-color:#b92c28}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled.focus,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled].focus,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#c12e2a;background-image:none}.img-thumbnail,.thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.dropdown-menu&gt;li&gt;a:focus,.dropdown-menu&gt;li&gt;a:hover{background-color:#e8e8e8;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#fff5f5f5&#x27;, endColorstr=&#x27;#ffe8e8e8&#x27;, GradientType=0);background-repeat:repeat-x}.dropdown-menu&gt;.active&gt;a,.dropdown-menu&gt;.active&gt;a:focus,.dropdown-menu&gt;.active&gt;a:hover{background-color:#2e6da4;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#ff337ab7&#x27;, endColorstr=&#x27;#ff2e6da4&#x27;, GradientType=0);background-repeat:repeat-x}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-o-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f8f8f8));background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#ffffffff&#x27;, endColorstr=&#x27;#fff8f8f8&#x27;, GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075)}.navbar-default .navbar-nav&gt;.active&gt;a,.navbar-default .navbar-nav&gt;.open&gt;a{background-image:-webkit-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-o-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dbdbdb),to(#e2e2e2));background-image:linear-gradient(to bottom,#dbdbdb 0,#e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#ffdbdbdb&#x27;, endColorstr=&#x27;#ffe2e2e2&#x27;, GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.075);box-shadow:inset 0 3px 9px rgba(0,0,0,.075)}.navbar-brand,.navbar-nav&gt;li&gt;a{text-shadow:0 1px 0 rgba(255,255,255,.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-o-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#3c3c3c),to(#222));background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#ff3c3c3c&#x27;, endColorstr=&#x27;#ff222222&#x27;, GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px}.navbar-inverse .navbar-nav&gt;.active&gt;a,.navbar-inverse .navbar-nav&gt;.open&gt;a{background-image:-webkit-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-o-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#080808),to(#0f0f0f));background-image:linear-gradient(to bottom,#080808 0,#0f0f0f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#ff080808&#x27;, endColorstr=&#x27;#ff0f0f0f&#x27;, GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.25);box-shadow:inset 0 3px 9px rgba(0,0,0,.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav&gt;li&gt;a{text-shadow:0 -1px 0 rgba(0,0,0,.25)}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}@media (max-width:767px){.navbar .navbar-nav .open .dropdown-menu&gt;.active&gt;a,.navbar .navbar-nav .open .dropdown-menu&gt;.active&gt;a:focus,.navbar .navbar-nav .open .dropdown-menu&gt;.active&gt;a:hover{color:#fff;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#ff337ab7&#x27;, endColorstr=&#x27;#ff2e6da4&#x27;, GradientType=0);background-repeat:repeat-x}}.alert{text-shadow:0 1px 0 rgba(255,255,255,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05)}.alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#c8e5bc));background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#ffdff0d8&#x27;, endColorstr=&#x27;#ffc8e5bc&#x27;, GradientType=0);background-repeat:repeat-x;border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#b9def0));background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#ffd9edf7&#x27;, endColorstr=&#x27;#ffb9def0&#x27;, GradientType=0);background-repeat:repeat-x;border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#f8efc0));background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#fffcf8e3&#x27;, endColorstr=&#x27;#fff8efc0&#x27;, GradientType=0);background-repeat:repeat-x;border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-o-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#e7c3c3));background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#fff2dede&#x27;, endColorstr=&#x27;#ffe7c3c3&#x27;, GradientType=0);background-repeat:repeat-x;border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#f5f5f5));background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#ffebebeb&#x27;, endColorstr=&#x27;#fff5f5f5&#x27;, GradientType=0);background-repeat:repeat-x}.progress-bar{background-image:-webkit-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-o-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#286090));background-image:linear-gradient(to bottom,#337ab7 0,#286090 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#ff337ab7&#x27;, endColorstr=&#x27;#ff286090&#x27;, GradientType=0);background-repeat:repeat-x}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#449d44));background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#ff5cb85c&#x27;, endColorstr=&#x27;#ff449d44&#x27;, GradientType=0);background-repeat:repeat-x}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#31b0d5));background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#ff5bc0de&#x27;, endColorstr=&#x27;#ff31b0d5&#x27;, GradientType=0);background-repeat:repeat-x}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#ec971f));background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#fff0ad4e&#x27;, endColorstr=&#x27;#ffec971f&#x27;, GradientType=0);background-repeat:repeat-x}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c9302c));background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#ffd9534f&#x27;, endColorstr=&#x27;#ffc9302c&#x27;, GradientType=0);background-repeat:repeat-x}.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{text-shadow:0 -1px 0 #286090;background-image:-webkit-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2b669a));background-image:linear-gradient(to bottom,#337ab7 0,#2b669a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#ff337ab7&#x27;, endColorstr=&#x27;#ff2b669a&#x27;, GradientType=0);background-repeat:repeat-x;border-color:#2b669a}.list-group-item.active .badge,.list-group-item.active:focus .badge,.list-group-item.active:hover .badge{text-shadow:none}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 1px 2px rgba(0,0,0,.05)}.panel-default&gt;.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#fff5f5f5&#x27;, endColorstr=&#x27;#ffe8e8e8&#x27;, GradientType=0);background-repeat:repeat-x}.panel-primary&gt;.panel-heading{background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#ff337ab7&#x27;, endColorstr=&#x27;#ff2e6da4&#x27;, GradientType=0);background-repeat:repeat-x}.panel-success&gt;.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#d0e9c6));background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#ffdff0d8&#x27;, endColorstr=&#x27;#ffd0e9c6&#x27;, GradientType=0);background-repeat:repeat-x}.panel-info&gt;.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#c4e3f3));background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#ffd9edf7&#x27;, endColorstr=&#x27;#ffc4e3f3&#x27;, GradientType=0);background-repeat:repeat-x}.panel-warning&gt;.panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#faf2cc));background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#fffcf8e3&#x27;, endColorstr=&#x27;#fffaf2cc&#x27;, GradientType=0);background-repeat:repeat-x}.panel-danger&gt;.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-o-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#ebcccc));background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#fff2dede&#x27;, endColorstr=&#x27;#ffebcccc&#x27;, GradientType=0);background-repeat:repeat-x}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#e8e8e8),to(#f5f5f5));background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&#x27;#ffe8e8e8&#x27;, endColorstr=&#x27;#fff5f5f5&#x27;, GradientType=0);background-repeat:repeat-x;border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)}\n",
"/*# sourceMappingURL=bootstrap-theme.min.css.map */ &lt;/style&gt;&lt;style&gt;body {\n",
" padding-top: 80px;\n",
"}\n",
".content .container-fluid{\n",
" margin-left: 20px !important;\n",
" margin-right: 20px !important;\n",
" margin-bottom: 20px;\n",
"}\n",
"\n",
".page-header{\n",
" border:0 !important;\n",
"}\n",
"\n",
".row.variable, .section-items &gt; .row {\n",
" border: 1px solid #e1e1e8;\n",
" border-top: hidden;\n",
"}\n",
"\n",
".row.spacing{\n",
" padding: 2em 1em;\n",
"}\n",
"\n",
".row.header {\n",
" border-bottom: 1px solid #e1e1e8;\n",
" /*background-color: #f5f5f5;*/\n",
" padding-left: 2em;\n",
"}\n",
"\n",
"\n",
".dl-horizontal dt {\n",
" text-align: left;\n",
" padding-right: 1em;\n",
" white-space: normal;\n",
"}\n",
"\n",
".dl-horizontal dd {\n",
" margin-left: 0;\n",
"}\n",
"\n",
".col-md-12 {\n",
" padding-left: 2em;\n",
"}\n",
"\n",
".indent {\n",
" margin-left: 1em;\n",
"}\n",
"\n",
".center-img {\n",
" margin-left: auto !important;\n",
" margin-right: auto !important;\n",
" display: block;\n",
"}\n",
"\n",
"/* Table example_values */\n",
"table.example_values {\n",
" border: 0;\n",
"}\n",
"\n",
".example_values th {\n",
" border: 0;\n",
" padding: 0;\n",
" color: #555;\n",
" font-weight: 600;\n",
"}\n",
"\n",
".example_values tr, .example_values td {\n",
" border: 0;\n",
" padding: 0;\n",
" color: #555;\n",
"}\n",
"\n",
"/* STATS */\n",
"table.stats, table.sample, table.duplicate{\n",
" border: 0;\n",
"}\n",
"\n",
".stats tr, .sample tr, .duplicate tr {\n",
" border: 0;\n",
"}\n",
"\n",
".stats th, .stats td{\n",
" color: #555;\n",
" border: 0;\n",
"}\n",
"\n",
".stats th {\n",
" padding: 0 2em 0 0;\n",
" font-weight: 600;\n",
"}\n",
"\n",
".stats td {\n",
" padding: 1px;\n",
"}\n",
"\n",
"\n",
"/* Sample table */\n",
"table.sample, table.duplicate{\n",
" margin-bottom: 2em;\n",
" margin-left: 1em;\n",
"}\n",
"\n",
".sample td, .sample th, .duplicate td, .duplicate th {\n",
" padding: 0.5em;\n",
" white-space: nowrap;\n",
" border: 0;\n",
"\n",
"}\n",
"\n",
".sample thead, .duplicate thead {\n",
" border-top: 0;\n",
" border-bottom: 2px solid #ddd;\n",
"}\n",
"\n",
".sample td, .duplicate td {\n",
" width: 100%;\n",
"}\n",
"\n",
"\n",
"/* There is no good solution available to make the divs equal height and then center ... */\n",
".histogram {\n",
" margin-top: 3em;\n",
"}\n",
"\n",
"/* Freq table */\n",
"table.freq {\n",
" margin-bottom: 2em;\n",
" border: 0;\n",
"}\n",
"\n",
"table.freq th, table.freq tr, table.freq td {\n",
" border: 0;\n",
" padding: 0;\n",
"}\n",
"\n",
".freq thead {\n",
" font-weight: 600;\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
"\n",
"}\n",
"\n",
"/* Freq mini */\n",
".freq.mini td {\n",
" width: 50%;\n",
" padding: 1px;\n",
" font-size: 12px;\n",
"\n",
"}\n",
"\n",
"table.freq.mini {\n",
" width: 100%;\n",
"}\n",
"\n",
".freq.mini th {\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" white-space: nowrap;\n",
" max-width: 5em;\n",
" font-weight: 400;\n",
" text-align: right;\n",
" padding-right: 0.5em;\n",
"}\n",
"\n",
"/* Message classes */\n",
".missing {\n",
" color: #a94442;\n",
"}\n",
"\n",
".alert, .alert &gt; th, .alert &gt; td {\n",
" color: #a94442;\n",
"}\n",
"\n",
".ignore {\n",
" opacity: 0.4;\n",
"}\n",
"\n",
"/* Bars in tables */\n",
".freq.table{\n",
" table-layout: fixed;\n",
"}\n",
"\n",
".freq:not(.mini) tr td:nth-child(1), .freq:not(.mini) tr th:nth-child(1){\n",
" width: auto;\n",
" max-width: none;\n",
"\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
"}\n",
"\n",
".freq:not(.mini) tr td:nth-child(2), .freq:not(.mini) tr td:nth-child(3), .freq:not(.mini) tr th:nth-child(2), .freq:not(.mini) tr th:nth-child(3){\n",
" width: 100px;\n",
" text-align: right;\n",
"}\n",
".freq:not(.mini) tr td:nth-child(4), .freq:not(.mini) tr th:nth-child(4){\n",
" width:200px;\n",
"}\n",
"\n",
".freq .bar {\n",
" float: left;\n",
" width: 0;\n",
" height: 100%;\n",
" line-height: 20px;\n",
" color: #fff;\n",
" text-align: center;\n",
" background-color: #337ab7;\n",
" border-radius: 3px;\n",
" margin-right: 4px;\n",
"}\n",
"\n",
".other .bar {\n",
" background-color: #999;\n",
"}\n",
"\n",
".missing .bar {\n",
" background-color: #a94442;\n",
"}\n",
"\n",
".tooltip-inner {\n",
" width: 100%;\n",
" white-space: nowrap;\n",
" text-align: left;\n",
"}\n",
"\n",
".extrapadding {\n",
" padding: 2em;\n",
"}\n",
"\n",
".variable .h4 {\n",
" text-overflow: ellipsis;\n",
" display:inline-block;\n",
" width: calc(90%); /* The trick is here! */\n",
" overflow:hidden;\n",
"}\n",
"\n",
".variable.ignore .h4{\n",
" text-decoration: line-through;\n",
"}\n",
"\n",
".table-responsive{\n",
" overflow: scroll;\n",
" width: 100%;\n",
" overflow-y: hidden;\n",
"}\n",
".img-responsive{\n",
" max-width: 99%;\n",
"}\n",
".footer-text{\n",
" padding:20px;\n",
"}\n",
"\n",
"table.list-warnings td{\n",
" padding-right:10px;\n",
"}\n",
"\n",
"a.anchor-pos {\n",
" display: block;\n",
" position: relative;\n",
" top: -70px;\n",
" visibility: hidden;\n",
"}\n",
"\n",
"a.anchor-pos-variable{\n",
" /*top: -70px;*/\n",
"}\n",
"\n",
"#sample-container, #duplicate-container{\n",
" overflow: auto;\n",
" width: 100%;\n",
" overflow-y: hidden;\n",
"}\n",
"\n",
"#overview-content td, #overview-content th{\n",
" border-top: 0;\n",
" line-height: 1;\n",
"}\n",
"\n",
".variable-description{\n",
" color: #777;\n",
" font-size: 10pt;\n",
" margin-top: 10px;\n",
" font-style: italic;\n",
"}\n",
"\n",
"select.multiple{\n",
" width: 180px;\n",
" height: 500px;\n",
" margin: 10px 0;\n",
"}\n",
"\n",
".named-list-item{\n",
" padding: 1em;\n",
"}\n",
"\n",
"/* not printing tabs */\n",
"@media print {\n",
" .tab-content &gt; .tab-pane, .collapse {\n",
" display: block !important;\n",
" opacity: 1 !important;\n",
" visibility: visible !important;\n",
" /*page-break-after: always;*/\n",
" page-break-after: right;\n",
" page-break-before: avoid;\n",
" }\n",
"\n",
" .nav-pills, .nav-tabs, button[data-toggle=&quot;collapse&quot;], .mini, .col-sm-3 img {\n",
" display:none !important;\n",
" }\n",
"\n",
" a[download=&quot;config.yml&quot;]:after {\n",
" content: none !important;\n",
" }\n",
"\n",
" .row {\n",
" border: 0 !important;\n",
" }\n",
"}\n",
"\n",
".text-placeholder {\n",
" display: inline-block;\n",
" background-color: #444;\n",
" height: 12px;\n",
" border-radius: 100px;\n",
" margin: 5px 0;\n",
" min-width: 200px;\n",
" opacity: .1;\n",
"}&lt;/style&gt;&lt;/head&gt;&lt;body&gt;&lt;a class=anchor-pos id=top&gt;&lt;/a&gt;&lt;nav class=&quot;navbar navbar-default navbar-fixed-top&quot;&gt;&lt;div class=container-fluid&gt;&lt;div class=navbar-header&gt;&lt;button type=button class=&quot;navbar-toggle collapsed&quot; data-toggle=collapse data-target=#navbar aria-expanded=false aria-controls=navbar&gt;&lt;span class=sr-only&gt;Toggle navigation&lt;/span&gt;&lt;span class=icon-bar&gt;&lt;/span&gt;&lt;span class=icon-bar&gt;&lt;/span&gt;&lt;span class=icon-bar&gt;&lt;/span&gt;&lt;/button&gt;&lt;a class=&quot;navbar-brand anchor&quot; href=#top&gt;Pandas Profiling Report&lt;/a&gt;&lt;/div&gt;&lt;div id=navbar class=&quot;navbar-collapse collapse&quot;&gt;&lt;ul class=&quot;nav navbar-nav navbar-right&quot;&gt;&lt;li&gt;&lt;a class=anchor href=#overview&gt;Overview&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=anchor href=#variables&gt;Variables&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=anchor href=#interactions&gt;Interactions&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=anchor href=#correlations&gt;Correlations&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=anchor href=#missing&gt;Missing values&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=anchor href=#sample&gt;Sample&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class=anchor href=#duplicate&gt;Duplicate rows&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;/div&gt;&lt;/nav&gt;&lt;div class=content&gt;&lt;div class=container&gt;&lt;div class=&quot;row header&quot;&gt;&lt;a class=anchor-pos id=overview&gt;&lt;/a&gt;&lt;h1 class=page-header&gt;Overview&lt;/h1&gt;&lt;/div&gt;&lt;div class=section-items&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-pills&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#overview-dataset_overview aria-controls=overview-dataset_overview role=tab data-toggle=tab&gt;Overview&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#overview-warnings aria-controls=overview-warnings role=tab data-toggle=tab&gt;Warnings &lt;span class=badge&gt;15&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#overview-reproduction aria-controls=overview-reproduction role=tab data-toggle=tab&gt;Reproduction&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content style=&quot;padding-top: 10px;&quot;&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=overview-dataset_overview&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Dataset statistics&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Number of variables&lt;/th&gt;&lt;td&gt;14&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Number of observations&lt;/th&gt;&lt;td&gt;45726&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing cells&lt;/th&gt;&lt;td&gt;29703&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing cells (%)&lt;/th&gt;&lt;td&gt;4.6%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Duplicate rows&lt;/th&gt;&lt;td&gt;10&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Duplicate rows (%)&lt;/th&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Total size in memory&lt;/th&gt;&lt;td&gt;4.6 MiB&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Average record size in memory&lt;/th&gt;&lt;td&gt;105.0 B&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Variable types&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;CAT&lt;/th&gt;&lt;td&gt;7&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;NUM&lt;/th&gt;&lt;td&gt;5&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;BOOL&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;DATE&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=overview-warnings&gt;&lt;table class=&quot;table table-condensed list-warnings&quot;&gt;&lt;p class=h4&gt;Warnings&lt;/p&gt;&lt;tr style=border-top:0&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_-5831749727506726561&gt;&lt;code&gt;source&lt;/code&gt;&lt;/a&gt; has constant value &quot;45726&quot; &lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-warning&quot;&gt;Constant&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt; Dataset has 10 (&lt; 0.1%) duplicate rows &lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-default&quot;&gt;Duplicates&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_5261117005264946518&gt;&lt;code&gt;name&lt;/code&gt;&lt;/a&gt; has a high cardinality: 45716 distinct values &lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-primary&quot;&gt;High cardinality&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_-456798071035655909&gt;&lt;code&gt;recclass&lt;/code&gt;&lt;/a&gt; has a high cardinality: 466 distinct values &lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-primary&quot;&gt;High cardinality&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_-1493230529857291722&gt;&lt;code&gt;GeoLocation&lt;/code&gt;&lt;/a&gt; has a high cardinality: 17100 distinct values &lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-primary&quot;&gt;High cardinality&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_1284642194645802616&gt;&lt;code&gt;reclat_city&lt;/code&gt;&lt;/a&gt; is highly correlated with &lt;code&gt;reclat&lt;/code&gt;&lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-default&quot;&gt;High correlation&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_-6426062946977577065&gt;&lt;code&gt;reclat&lt;/code&gt;&lt;/a&gt; is highly correlated with &lt;code&gt;reclat_city&lt;/code&gt;&lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-default&quot;&gt;High correlation&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_-6426062946977577065&gt;&lt;code&gt;reclat&lt;/code&gt;&lt;/a&gt; has 7315 (16.0%) missing values &lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-info&quot;&gt;Missing&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_-7823777393764928584&gt;&lt;code&gt;reclong&lt;/code&gt;&lt;/a&gt; has 7315 (16.0%) missing values &lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-info&quot;&gt;Missing&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_-1493230529857291722&gt;&lt;code&gt;GeoLocation&lt;/code&gt;&lt;/a&gt; has 7315 (16.0%) missing values &lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-info&quot;&gt;Missing&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_1284642194645802616&gt;&lt;code&gt;reclat_city&lt;/code&gt;&lt;/a&gt; has 7315 (16.0%) missing values &lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-info&quot;&gt;Missing&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_20951807112946069&gt;&lt;code&gt;mass (g)&lt;/code&gt;&lt;/a&gt; is highly skewed (γ1 = 76.91847245) &lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-info&quot;&gt;Skewed&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_5261117005264946518&gt;&lt;code&gt;name&lt;/code&gt;&lt;/a&gt; is uniformly distributed &lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-primary&quot;&gt;Uniform&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_-6426062946977577065&gt;&lt;code&gt;reclat&lt;/code&gt;&lt;/a&gt; has 6438 (14.1%) zeros &lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-info&quot;&gt;Zeros&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a class=anchor href=#pp_var_-7823777393764928584&gt;&lt;code&gt;reclong&lt;/code&gt;&lt;/a&gt; has 6214 (13.6%) zeros &lt;/td&gt;&lt;td&gt;&lt;span class=&quot;label label-info&quot;&gt;Zeros&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=overview-reproduction&gt;&lt;div class=col-sm-12&gt;&lt;p class=h4&gt;Reproduction&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Analysis started&lt;/th&gt;&lt;td&gt;2020-10-13 15:05:01.441368&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Analysis finished&lt;/th&gt;&lt;td&gt;2020-10-13 15:05:08.608403&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Duration&lt;/th&gt;&lt;td&gt;7.17 seconds&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Software version&lt;/th&gt;&lt;td&gt;&lt;a href=https://github.com/pandas-profiling/pandas-profiling&gt;pandas-profiling v2.9.0&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Download configuration&lt;/th&gt;&lt;td&gt;&lt;a download=config.yaml href=&quot;data:text/plain;charset=utf-8,progress_bar%3A%20no%0Atitle%3A%20Pandas%20Profiling%20Report%0Adataset%3A%0A%20%20%20%20description%3A%20%27%27%0A%20%20%20%20creator%3A%20%27%27%0A%20%20%20%20author%3A%20%27%27%0A%20%20%20%20copyright_holder%3A%20%27%27%0A%20%20%20%20copyright_year%3A%20%27%27%0A%20%20%20%20url%3A%20%27%27%0Avariables%3A%0A%20%20%20%20descriptions%3A%20%7B%7D%0Ashow_variable_description%3A%20yes%0Apool_size%3A%200%0Avars%3A%0A%20%20%20%20num%3A%0A%20%20%20%20%20%20%20%20quantiles%3A%0A%20%20%20%20%20%20%20%20-%200.05%0A%20%20%20%20%20%20%20%20-%200.25%0A%20%20%20%20%20%20%20%20-%200.5%0A%20%20%20%20%20%20%20%20-%200.75%0A%20%20%20%20%20%20%20%20-%200.95%0A%20%20%20%20%20%20%20%20skewness_threshold%3A%2020%0A%20%20%20%20%20%20%20%20low_categorical_threshold%3A%205%0A%20%20%20%20%20%20%20%20chi_squared_threshold%3A%200.999%0A%20%20%20%20cat%3A%0A%20%20%20%20%20%20%20%20length%3A%20yes%0A%20%20%20%20%20%20%20%20unicode%3A%20no%0A%20%20%20%20%20%20%20%20cardinality_threshold%3A%2050%0A%20%20%20%20%20%20%20%20n_obs%3A%205%0A%20%20%20%20%20%20%20%20chi_squared_threshold%3A%200.999%0A%20%20%20%20%20%20%20%20coerce_str_to_date%3A%20no%0A%20%20%20%20%20%20%20%20redact%3A%20no%0A%20%20%20%20bool%3A%0A%20%20%20%20%20%20%20%20n_obs%3A%203%0A%20%20%20%20file%3A%0A%20%20%20%20%20%20%20%20active%3A%20no%0A%20%20%20%20image%3A%0A%20%20%20%20%20%20%20%20active%3A%20no%0A%20%20%20%20%20%20%20%20exif%3A%20yes%0A%20%20%20%20%20%20%20%20hash%3A%20yes%0Asort%3A%20None%0Amissing_diagrams%3A%0A%20%20%20%20bar%3A%20yes%0A%20%20%20%20matrix%3A%20yes%0A%20%20%20%20heatmap%3A%20yes%0A%20%20%20%20dendrogram%3A%20yes%0Acorrelations%3A%0A%20%20%20%20pearson%3A%0A%20%20%20%20%20%20%20%20calculate%3A%20yes%0A%20%20%20%20%20%20%20%20warn_high_correlations%3A%20yes%0A%20%20%20%20%20%20%20%20threshold%3A%200.9%0A%20%20%20%20spearman%3A%0A%20%20%20%20%20%20%20%20calculate%3A%20yes%0A%20%20%20%20%20%20%20%20warn_high_correlations%3A%20no%0A%20%20%20%20kendall%3A%0A%20%20%20%20%20%20%20%20calculate%3A%20yes%0A%20%20%20%20%20%20%20%20warn_high_correlations%3A%20no%0A%20%20%20%20phi_k%3A%0A%20%20%20%20%20%20%20%20calculate%3A%20yes%0A%20%20%20%20%20%20%20%20warn_high_correlations%3A%20no%0A%20%20%20%20cramers%3A%0A%20%20%20%20%20%20%20%20calculate%3A%20yes%0A%20%20%20%20%20%20%20%20warn_high_correlations%3A%20yes%0A%20%20%20%20%20%20%20%20threshold%3A%200.9%0A%20%20%20%20recoded%3A%0A%20%20%20%20%20%20%20%20calculate%3A%20no%0A%20%20%20%20%20%20%20%20warn_high_correlations%3A%20no%0A%20%20%20%20%20%20%20%20threshold%3A%200.0%0Ainteractions%3A%0A%20%20%20%20targets%3A%20%5B%5D%0A%20%20%20%20continuous%3A%20yes%0Acategorical_maximum_correlation_distinct%3A%20100%0Aplot%3A%0A%20%20%20%20image_format%3A%20svg%0A%20%20%20%20dpi%3A%20800%0A%20%20%20%20scatter_threshold%3A%201000%0A%20%20%20%20correlation%3A%0A%20%20%20%20%20%20%20%20cmap%3A%20RdBu%0A%20%20%20%20%20%20%20%20bad%3A%20%27%23000000%27%0A%20%20%20%20missing%3A%0A%20%20%20%20%20%20%20%20cmap%3A%20RdBu%0A%20%20%20%20%20%20%20%20force_labels%3A%20yes%0A%20%20%20%20pie%3A%0A%20%20%20%20%20%20%20%20max_unique%3A%2010%0A%20%20%20%20histogram%3A%0A%20%20%20%20%20%20%20%20x_axis_labels%3A%20yes%0A%20%20%20%20%20%20%20%20bins%3A%2050%0A%20%20%20%20%20%20%20%20max_bins%3A%20250%0An_obs_unique%3A%205%0An_extreme_obs%3A%205%0An_freq_table_max%3A%2010%0Amemory_deep%3A%20no%0Aduplicates%3A%0A%20%20%20%20head%3A%2010%0Asamples%3A%0A%20%20%20%20head%3A%2010%0A%20%20%20%20tail%3A%2010%0Areject_variables%3A%20yes%0Anotebook%3A%0A%20%20%20%20iframe%3A%0A%20%20%20%20%20%20%20%20height%3A%20800px%0A%20%20%20%20%20%20%20%20width%3A%20100%25%0A%20%20%20%20%20%20%20%20attribute%3A%20srcdoc%0Ahtml%3A%0A%20%20%20%20minify_html%3A%20yes%0A%20%20%20%20use_local_assets%3A%20yes%0A%20%20%20%20inline%3A%20yes%0A%20%20%20%20navbar_show%3A%20yes%0A%20%20%20%20file_name%3A%20None%0A%20%20%20%20style%3A%0A%20%20%20%20%20%20%20%20theme%3A%20None%0A%20%20%20%20%20%20%20%20logo%3A%20%27%27%0A%20%20%20%20%20%20%20%20primary_color%3A%20%27%23337ab7%27%0A%20%20%20%20%20%20%20%20full_width%3A%20no%0A&quot;&gt;config.yaml&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;row header&quot;&gt;&lt;a class=anchor-pos id=variables&gt;&lt;/a&gt;&lt;h1 class=page-header&gt;Variables&lt;/h1&gt;&lt;/div&gt;&lt;div class=section-items&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;a class=&quot;anchor-pos anchor-pos-variable&quot; id=pp_var_5261117005264946518&gt;&lt;/a&gt;&lt;div class=variable&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4 title=name&gt;&lt;a href=#pp_var_5261117005264946518&gt;name&lt;/a&gt;&lt;br&gt;&lt;small&gt;Categorical&lt;/small&gt;&lt;/p&gt;&lt;code&gt;HIGH CARDINALITY&lt;/code&gt;&lt;br&gt;&lt;code&gt;UNIFORM&lt;/code&gt;&lt;br&gt;&lt;p class=variable-description&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr class=alert&gt;&lt;th&gt;Distinct&lt;/th&gt;&lt;td&gt;45716&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct (%)&lt;/th&gt;&lt;td&gt;&gt; 99.9%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Memory size&lt;/th&gt;&lt;td&gt;357.2 KiB&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;div class=&quot;col-sm- collapse in&quot; id=minifreqtable&gt;&lt;table class=&quot;mini freq&quot;&gt;&lt;tr class&gt;&lt;th width=50%&gt; Agen copy &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:0.0% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; &amp;nbsp; &lt;/div&gt; 2 &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; Abee copy &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:0.0% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; &amp;nbsp; &lt;/div&gt; 2 &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; Adzhi-Bogdo (stone) copy &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:0.0% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; &amp;nbsp; &lt;/div&gt; 2 &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; Aachen copy &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:0.0% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; &amp;nbsp; &lt;/div&gt; 2 &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; Adhi Kot copy &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:0.0% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; &amp;nbsp; &lt;/div&gt; 2 &lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;th width=50%&gt; Other values (45711) &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:100.0% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; 45716&amp;nbsp; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;col-sm-12 text-right&quot;&gt;&lt;button class=&quot;btn btn-default btn-sm&quot; data-toggle=collapse data-target=&quot;#bottom-5261117005264946518, #minifreqtable5261117005264946518&quot; aria-expanded=true aria-controls=collapseExample&gt;Toggle details&lt;/button&gt;&lt;/div&gt;&lt;div id=bottom-5261117005264946518 class=collapse&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#5261117005264946518bottom-5261117005264946518frequencies aria-controls=5261117005264946518bottom-5261117005264946518frequencies role=tab data-toggle=tab&gt;Frequencies&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#5261117005264946518bottom-5261117005264946518tbl aria-controls=5261117005264946518bottom-5261117005264946518tbl role=tab data-toggle=tab&gt;Length&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=5261117005264946518bottom-5261117005264946518frequencies&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#5261117005264946518frequencies-5261117005264946518common_values aria-controls=5261117005264946518frequencies-5261117005264946518common_values role=tab data-toggle=tab&gt;Common Values&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#5261117005264946518frequencies-5261117005264946518tbl aria-controls=5261117005264946518frequencies-5261117005264946518tbl role=tab data-toggle=tab&gt;Overview&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=5261117005264946518frequencies-5261117005264946518common_values&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=&quot;Agen copy&quot;&gt;Agen copy&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Abee copy&quot;&gt;Abee copy&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Adzhi-Bogdo (stone) copy&quot;&gt;Adzhi-Bogdo (stone) copy&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Aachen copy&quot;&gt;Aachen copy&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Adhi Kot copy&quot;&gt;Adhi Kot copy&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Aguila Blanca copy&quot;&gt;Aguila Blanca copy&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Aarhus copy&quot;&gt;Aarhus copy&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Acapulco copy&quot;&gt;Acapulco copy&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Aguada copy&quot;&gt;Aguada copy&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;Achiras copy&quot;&gt;Achiras copy&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;td title=&quot;Other values (45706)&quot;&gt;Other values (45706)&lt;/td&gt;&lt;td&gt;45706&lt;/td&gt;&lt;td&gt;&gt; 99.9%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=5261117005264946518frequencies-5261117005264946518tbl&gt;&lt;div class=col-sm-6&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=288pt version=1.1 viewbox=&quot;0 0 432 288&quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;defs&gt;&lt;style type=text/css&gt;\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" &lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 288 \n",
"L 432 288 \n",
"L 432 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 66.675 248.315224 \n",
"L 421.2 248.315224 \n",
"L 421.2 10.8 \n",
"L 66.675 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;defs&gt;&lt;path id=DejaVuSans-49 d=&quot;M 12.40625 8.296875 \n",
"L 28.515625 8.296875 \n",
"L 28.515625 63.921875 \n",
"L 10.984375 60.40625 \n",
"L 10.984375 69.390625 \n",
"L 28.421875 72.90625 \n",
"L 38.28125 72.90625 \n",
"L 38.28125 8.296875 \n",
"L 54.390625 8.296875 \n",
"L 54.390625 0 \n",
"L 12.40625 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-46 d=&quot;M 10.6875 12.40625 \n",
"L 21 12.40625 \n",
"L 21 0 \n",
"L 10.6875 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-48 d=&quot;M 31.78125 66.40625 \n",
"Q 24.171875 66.40625 20.328125 58.90625 \n",
"Q 16.5 51.421875 16.5 36.375 \n",
"Q 16.5 21.390625 20.328125 13.890625 \n",
"Q 24.171875 6.390625 31.78125 6.390625 \n",
"Q 39.453125 6.390625 43.28125 13.890625 \n",
"Q 47.125 21.390625 47.125 36.375 \n",
"Q 47.125 51.421875 43.28125 58.90625 \n",
"Q 39.453125 66.40625 31.78125 66.40625 \n",
"z\n",
"M 31.78125 74.21875 \n",
"Q 44.046875 74.21875 50.515625 64.515625 \n",
"Q 56.984375 54.828125 56.984375 36.375 \n",
"Q 56.984375 17.96875 50.515625 8.265625 \n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \n",
"Q 19.53125 -1.421875 13.0625 8.265625 \n",
"Q 6.59375 17.96875 6.59375 36.375 \n",
"Q 6.59375 54.828125 13.0625 64.515625 \n",
"Q 19.53125 74.21875 31.78125 74.21875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(79.118342 275.433338)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;defs&gt;&lt;path id=DejaVuSans-50 d=&quot;M 19.1875 8.296875 \n",
"L 53.609375 8.296875 \n",
"L 53.609375 0 \n",
"L 7.328125 0 \n",
"L 7.328125 8.296875 \n",
"Q 12.9375 14.109375 22.625 23.890625 \n",
"Q 32.328125 33.6875 34.8125 36.53125 \n",
"Q 39.546875 41.84375 41.421875 45.53125 \n",
"Q 43.3125 49.21875 43.3125 52.78125 \n",
"Q 43.3125 58.59375 39.234375 62.25 \n",
"Q 35.15625 65.921875 28.609375 65.921875 \n",
"Q 23.96875 65.921875 18.8125 64.3125 \n",
"Q 13.671875 62.703125 7.8125 59.421875 \n",
"L 7.8125 69.390625 \n",
"Q 13.765625 71.78125 18.9375 73 \n",
"Q 24.125 74.21875 28.421875 74.21875 \n",
"Q 39.75 74.21875 46.484375 68.546875 \n",
"Q 53.21875 62.890625 53.21875 53.421875 \n",
"Q 53.21875 48.921875 51.53125 44.890625 \n",
"Q 49.859375 40.875 45.40625 35.40625 \n",
"Q 44.1875 33.984375 37.640625 27.21875 \n",
"Q 31.109375 20.453125 19.1875 8.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(143.577433 275.433338)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-50 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;defs&gt;&lt;path id=DejaVuSans-52 d=&quot;M 37.796875 64.3125 \n",
"L 12.890625 25.390625 \n",
"L 37.796875 25.390625 \n",
"z\n",
"M 35.203125 72.90625 \n",
"L 47.609375 72.90625 \n",
"L 47.609375 25.390625 \n",
"L 58.015625 25.390625 \n",
"L 58.015625 17.1875 \n",
"L 47.609375 17.1875 \n",
"L 47.609375 0 \n",
"L 37.796875 0 \n",
"L 37.796875 17.1875 \n",
"L 4.890625 17.1875 \n",
"L 4.890625 26.703125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(208.036524 275.433338)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-52 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;defs&gt;&lt;path id=DejaVuSans-54 d=&quot;M 33.015625 40.375 \n",
"Q 26.375 40.375 22.484375 35.828125 \n",
"Q 18.609375 31.296875 18.609375 23.390625 \n",
"Q 18.609375 15.53125 22.484375 10.953125 \n",
"Q 26.375 6.390625 33.015625 6.390625 \n",
"Q 39.65625 6.390625 43.53125 10.953125 \n",
"Q 47.40625 15.53125 47.40625 23.390625 \n",
"Q 47.40625 31.296875 43.53125 35.828125 \n",
"Q 39.65625 40.375 33.015625 40.375 \n",
"z\n",
"M 52.59375 71.296875 \n",
"L 52.59375 62.3125 \n",
"Q 48.875 64.0625 45.09375 64.984375 \n",
"Q 41.3125 65.921875 37.59375 65.921875 \n",
"Q 27.828125 65.921875 22.671875 59.328125 \n",
"Q 17.53125 52.734375 16.796875 39.40625 \n",
"Q 19.671875 43.65625 24.015625 45.921875 \n",
"Q 28.375 48.1875 33.59375 48.1875 \n",
"Q 44.578125 48.1875 50.953125 41.515625 \n",
"Q 57.328125 34.859375 57.328125 23.390625 \n",
"Q 57.328125 12.15625 50.6875 5.359375 \n",
"Q 44.046875 -1.421875 33.015625 -1.421875 \n",
"Q 20.359375 -1.421875 13.671875 8.265625 \n",
"Q 6.984375 17.96875 6.984375 36.375 \n",
"Q 6.984375 53.65625 15.1875 63.9375 \n",
"Q 23.390625 74.21875 37.203125 74.21875 \n",
"Q 40.921875 74.21875 44.703125 73.484375 \n",
"Q 48.484375 72.75 52.59375 71.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(272.495614 275.433338)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-54 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;defs&gt;&lt;path id=DejaVuSans-56 d=&quot;M 31.78125 34.625 \n",
"Q 24.75 34.625 20.71875 30.859375 \n",
"Q 16.703125 27.09375 16.703125 20.515625 \n",
"Q 16.703125 13.921875 20.71875 10.15625 \n",
"Q 24.75 6.390625 31.78125 6.390625 \n",
"Q 38.8125 6.390625 42.859375 10.171875 \n",
"Q 46.921875 13.96875 46.921875 20.515625 \n",
"Q 46.921875 27.09375 42.890625 30.859375 \n",
"Q 38.875 34.625 31.78125 34.625 \n",
"z\n",
"M 21.921875 38.8125 \n",
"Q 15.578125 40.375 12.03125 44.71875 \n",
"Q 8.5 49.078125 8.5 55.328125 \n",
"Q 8.5 64.0625 14.71875 69.140625 \n",
"Q 20.953125 74.21875 31.78125 74.21875 \n",
"Q 42.671875 74.21875 48.875 69.140625 \n",
"Q 55.078125 64.0625 55.078125 55.328125 \n",
"Q 55.078125 49.078125 51.53125 44.71875 \n",
"Q 48 40.375 41.703125 38.8125 \n",
"Q 48.828125 37.15625 52.796875 32.3125 \n",
"Q 56.78125 27.484375 56.78125 20.515625 \n",
"Q 56.78125 9.90625 50.3125 4.234375 \n",
"Q 43.84375 -1.421875 31.78125 -1.421875 \n",
"Q 19.734375 -1.421875 13.25 4.234375 \n",
"Q 6.78125 9.90625 6.78125 20.515625 \n",
"Q 6.78125 27.484375 10.78125 32.3125 \n",
"Q 14.796875 37.15625 21.921875 38.8125 \n",
"z\n",
"M 18.3125 54.390625 \n",
"Q 18.3125 48.734375 21.84375 45.5625 \n",
"Q 25.390625 42.390625 31.78125 42.390625 \n",
"Q 38.140625 42.390625 41.71875 45.5625 \n",
"Q 45.3125 48.734375 45.3125 54.390625 \n",
"Q 45.3125 60.0625 41.71875 63.234375 \n",
"Q 38.140625 66.40625 31.78125 66.40625 \n",
"Q 25.390625 66.40625 21.84375 63.234375 \n",
"Q 18.3125 60.0625 18.3125 54.390625 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(336.954705 275.433338)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-56 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_6&gt;&lt;g id=text_6&gt;&lt;g style=fill:#262626; transform=&quot;translate(401.413796 275.433338)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_2&gt;&lt;g id=ytick_1&gt;&lt;g id=text_7&gt;&lt;g style=fill:#262626; transform=&quot;translate(49.8125 252.114442)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_2&gt;&lt;g id=text_8&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.3625 202.623134)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_3&gt;&lt;g id=text_9&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.3625 153.131825)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_4&gt;&lt;g id=text_10&gt;&lt;defs&gt;&lt;path id=DejaVuSans-51 d=&quot;M 40.578125 39.3125 \n",
"Q 47.65625 37.796875 51.625 33 \n",
"Q 55.609375 28.21875 55.609375 21.1875 \n",
"Q 55.609375 10.40625 48.1875 4.484375 \n",
"Q 40.765625 -1.421875 27.09375 -1.421875 \n",
"Q 22.515625 -1.421875 17.65625 -0.515625 \n",
"Q 12.796875 0.390625 7.625 2.203125 \n",
"L 7.625 11.71875 \n",
"Q 11.71875 9.328125 16.59375 8.109375 \n",
"Q 21.484375 6.890625 26.8125 6.890625 \n",
"Q 36.078125 6.890625 40.9375 10.546875 \n",
"Q 45.796875 14.203125 45.796875 21.1875 \n",
"Q 45.796875 27.640625 41.28125 31.265625 \n",
"Q 36.765625 34.90625 28.71875 34.90625 \n",
"L 20.21875 34.90625 \n",
"L 20.21875 43.015625 \n",
"L 29.109375 43.015625 \n",
"Q 36.375 43.015625 40.234375 45.921875 \n",
"Q 44.09375 48.828125 44.09375 54.296875 \n",
"Q 44.09375 59.90625 40.109375 62.90625 \n",
"Q 36.140625 65.921875 28.71875 65.921875 \n",
"Q 24.65625 65.921875 20.015625 65.03125 \n",
"Q 15.375 64.15625 9.8125 62.3125 \n",
"L 9.8125 71.09375 \n",
"Q 15.4375 72.65625 20.34375 73.4375 \n",
"Q 25.25 74.21875 29.59375 74.21875 \n",
"Q 40.828125 74.21875 47.359375 69.109375 \n",
"Q 53.90625 64.015625 53.90625 55.328125 \n",
"Q 53.90625 49.265625 50.4375 45.09375 \n",
"Q 46.96875 40.921875 40.578125 39.3125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.3625 103.640517)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-51 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_5&gt;&lt;g id=text_11&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.3625 54.149208)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-52 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_12&gt;&lt;defs&gt;&lt;path id=DejaVuSans-70 d=&quot;M 9.8125 72.90625 \n",
"L 51.703125 72.90625 \n",
"L 51.703125 64.59375 \n",
"L 19.671875 64.59375 \n",
"L 19.671875 43.109375 \n",
"L 48.578125 43.109375 \n",
"L 48.578125 34.8125 \n",
"L 19.671875 34.8125 \n",
"L 19.671875 0 \n",
"L 9.8125 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-114 d=&quot;M 41.109375 46.296875 \n",
"Q 39.59375 47.171875 37.8125 47.578125 \n",
"Q 36.03125 48 33.890625 48 \n",
"Q 26.265625 48 22.1875 43.046875 \n",
"Q 18.109375 38.09375 18.109375 28.8125 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 20.953125 51.171875 25.484375 53.578125 \n",
"Q 30.03125 56 36.53125 56 \n",
"Q 37.453125 56 38.578125 55.875 \n",
"Q 39.703125 55.765625 41.0625 55.515625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-101 d=&quot;M 56.203125 29.59375 \n",
"L 56.203125 25.203125 \n",
"L 14.890625 25.203125 \n",
"Q 15.484375 15.921875 20.484375 11.0625 \n",
"Q 25.484375 6.203125 34.421875 6.203125 \n",
"Q 39.59375 6.203125 44.453125 7.46875 \n",
"Q 49.3125 8.734375 54.109375 11.28125 \n",
"L 54.109375 2.78125 \n",
"Q 49.265625 0.734375 44.1875 -0.34375 \n",
"Q 39.109375 -1.421875 33.890625 -1.421875 \n",
"Q 20.796875 -1.421875 13.15625 6.1875 \n",
"Q 5.515625 13.8125 5.515625 26.8125 \n",
"Q 5.515625 40.234375 12.765625 48.109375 \n",
"Q 20.015625 56 32.328125 56 \n",
"Q 43.359375 56 49.78125 48.890625 \n",
"Q 56.203125 41.796875 56.203125 29.59375 \n",
"z\n",
"M 47.21875 32.234375 \n",
"Q 47.125 39.59375 43.09375 43.984375 \n",
"Q 39.0625 48.390625 32.421875 48.390625 \n",
"Q 24.90625 48.390625 20.390625 44.140625 \n",
"Q 15.875 39.890625 15.1875 32.171875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-113 d=&quot;M 14.796875 27.296875 \n",
"Q 14.796875 17.390625 18.875 11.75 \n",
"Q 22.953125 6.109375 30.078125 6.109375 \n",
"Q 37.203125 6.109375 41.296875 11.75 \n",
"Q 45.40625 17.390625 45.40625 27.296875 \n",
"Q 45.40625 37.203125 41.296875 42.84375 \n",
"Q 37.203125 48.484375 30.078125 48.484375 \n",
"Q 22.953125 48.484375 18.875 42.84375 \n",
"Q 14.796875 37.203125 14.796875 27.296875 \n",
"z\n",
"M 45.40625 8.203125 \n",
"Q 42.578125 3.328125 38.25 0.953125 \n",
"Q 33.9375 -1.421875 27.875 -1.421875 \n",
"Q 17.96875 -1.421875 11.734375 6.484375 \n",
"Q 5.515625 14.40625 5.515625 27.296875 \n",
"Q 5.515625 40.1875 11.734375 48.09375 \n",
"Q 17.96875 56 27.875 56 \n",
"Q 33.9375 56 38.25 53.625 \n",
"Q 42.578125 51.265625 45.40625 46.390625 \n",
"L 45.40625 54.6875 \n",
"L 54.390625 54.6875 \n",
"L 54.390625 -20.796875 \n",
"L 45.40625 -20.796875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-117 d=&quot;M 8.5 21.578125 \n",
"L 8.5 54.6875 \n",
"L 17.484375 54.6875 \n",
"L 17.484375 21.921875 \n",
"Q 17.484375 14.15625 20.5 10.265625 \n",
"Q 23.53125 6.390625 29.59375 6.390625 \n",
"Q 36.859375 6.390625 41.078125 11.03125 \n",
"Q 45.3125 15.671875 45.3125 23.6875 \n",
"L 45.3125 54.6875 \n",
"L 54.296875 54.6875 \n",
"L 54.296875 0 \n",
"L 45.3125 0 \n",
"L 45.3125 8.40625 \n",
"Q 42.046875 3.421875 37.71875 1 \n",
"Q 33.40625 -1.421875 27.6875 -1.421875 \n",
"Q 18.265625 -1.421875 13.375 4.4375 \n",
"Q 8.5 10.296875 8.5 21.578125 \n",
"z\n",
"M 31.109375 56 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-110 d=&quot;M 54.890625 33.015625 \n",
"L 54.890625 0 \n",
"L 45.90625 0 \n",
"L 45.90625 32.71875 \n",
"Q 45.90625 40.484375 42.875 44.328125 \n",
"Q 39.84375 48.1875 33.796875 48.1875 \n",
"Q 26.515625 48.1875 22.3125 43.546875 \n",
"Q 18.109375 38.921875 18.109375 30.90625 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 21.34375 51.125 25.703125 53.5625 \n",
"Q 30.078125 56 35.796875 56 \n",
"Q 45.21875 56 50.046875 50.171875 \n",
"Q 54.890625 44.34375 54.890625 33.015625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-99 d=&quot;M 48.78125 52.59375 \n",
"L 48.78125 44.1875 \n",
"Q 44.96875 46.296875 41.140625 47.34375 \n",
"Q 37.3125 48.390625 33.40625 48.390625 \n",
"Q 24.65625 48.390625 19.8125 42.84375 \n",
"Q 14.984375 37.3125 14.984375 27.296875 \n",
"Q 14.984375 17.28125 19.8125 11.734375 \n",
"Q 24.65625 6.203125 33.40625 6.203125 \n",
"Q 37.3125 6.203125 41.140625 7.25 \n",
"Q 44.96875 8.296875 48.78125 10.40625 \n",
"L 48.78125 2.09375 \n",
"Q 45.015625 0.34375 40.984375 -0.53125 \n",
"Q 36.96875 -1.421875 32.421875 -1.421875 \n",
"Q 20.0625 -1.421875 12.78125 6.34375 \n",
"Q 5.515625 14.109375 5.515625 27.296875 \n",
"Q 5.515625 40.671875 12.859375 48.328125 \n",
"Q 20.21875 56 33.015625 56 \n",
"Q 37.15625 56 41.109375 55.140625 \n",
"Q 45.0625 54.296875 48.78125 52.59375 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-121 d=&quot;M 32.171875 -5.078125 \n",
"Q 28.375 -14.84375 24.75 -17.8125 \n",
"Q 21.140625 -20.796875 15.09375 -20.796875 \n",
"L 7.90625 -20.796875 \n",
"L 7.90625 -13.28125 \n",
"L 13.1875 -13.28125 \n",
"Q 16.890625 -13.28125 18.9375 -11.515625 \n",
"Q 21 -9.765625 23.484375 -3.21875 \n",
"L 25.09375 0.875 \n",
"L 2.984375 54.6875 \n",
"L 12.5 54.6875 \n",
"L 29.59375 11.921875 \n",
"L 46.6875 54.6875 \n",
"L 56.203125 54.6875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(18.074844 157.970268)rotate(-90)scale(0.11 -0.11)&quot;&gt;&lt;use xlink:href=#DejaVuSans-70 /&gt;&lt;use x=50.269531 xlink:href=#DejaVuSans-114 /&gt;&lt;use x=89.132812 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=150.65625 xlink:href=#DejaVuSans-113 /&gt;&lt;use x=214.132812 xlink:href=#DejaVuSans-117 /&gt;&lt;use x=277.511719 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=339.035156 xlink:href=#DejaVuSans-110 /&gt;&lt;use x=402.414062 xlink:href=#DejaVuSans-99 /&gt;&lt;use x=457.394531 xlink:href=#DejaVuSans-121 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 82.789773 248.315224 \n",
"L 89.235682 248.315224 \n",
"L 89.235682 22.110249 \n",
"L 82.789773 22.110249 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 89.235682 248.315224 \n",
"L 95.681591 248.315224 \n",
"L 95.681591 248.315224 \n",
"L 89.235682 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 95.681591 248.315224 \n",
"L 102.1275 248.315224 \n",
"L 102.1275 248.315224 \n",
"L 95.681591 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 102.1275 248.315224 \n",
"L 108.573409 248.315224 \n",
"L 108.573409 248.315224 \n",
"L 102.1275 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 108.573409 248.315224 \n",
"L 115.019318 248.315224 \n",
"L 115.019318 248.315224 \n",
"L 108.573409 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 115.019318 248.315224 \n",
"L 121.465227 248.315224 \n",
"L 121.465227 248.315224 \n",
"L 115.019318 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_9&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 121.465227 248.315224 \n",
"L 127.911136 248.315224 \n",
"L 127.911136 248.315224 \n",
"L 121.465227 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_10&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 127.911136 248.315224 \n",
"L 134.357045 248.315224 \n",
"L 134.357045 248.315224 \n",
"L 127.911136 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_11&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 134.357045 248.315224 \n",
"L 140.802955 248.315224 \n",
"L 140.802955 248.315224 \n",
"L 134.357045 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_12&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 140.802955 248.315224 \n",
"L 147.248864 248.315224 \n",
"L 147.248864 248.315224 \n",
"L 140.802955 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_13&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 147.248864 248.315224 \n",
"L 153.694773 248.315224 \n",
"L 153.694773 248.315224 \n",
"L 147.248864 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_14&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 153.694773 248.315224 \n",
"L 160.140682 248.315224 \n",
"L 160.140682 248.315224 \n",
"L 153.694773 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_15&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 160.140682 248.315224 \n",
"L 166.586591 248.315224 \n",
"L 166.586591 248.315224 \n",
"L 160.140682 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_16&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 166.586591 248.315224 \n",
"L 173.0325 248.315224 \n",
"L 173.0325 248.315224 \n",
"L 166.586591 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_17&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 173.0325 248.315224 \n",
"L 179.478409 248.315224 \n",
"L 179.478409 248.315224 \n",
"L 173.0325 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_18&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 179.478409 248.315224 \n",
"L 185.924318 248.315224 \n",
"L 185.924318 248.315224 \n",
"L 179.478409 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_19&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 185.924318 248.315224 \n",
"L 192.370227 248.315224 \n",
"L 192.370227 248.315224 \n",
"L 185.924318 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_20&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 192.370227 248.315224 \n",
"L 198.816136 248.315224 \n",
"L 198.816136 248.315224 \n",
"L 192.370227 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_21&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 198.816136 248.315224 \n",
"L 205.262045 248.315224 \n",
"L 205.262045 248.315224 \n",
"L 198.816136 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_22&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 205.262045 248.315224 \n",
"L 211.707955 248.315224 \n",
"L 211.707955 248.315224 \n",
"L 205.262045 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_23&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 211.707955 248.315224 \n",
"L 218.153864 248.315224 \n",
"L 218.153864 248.315224 \n",
"L 211.707955 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_24&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 218.153864 248.315224 \n",
"L 224.599773 248.315224 \n",
"L 224.599773 248.315224 \n",
"L 218.153864 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_25&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 224.599773 248.315224 \n",
"L 231.045682 248.315224 \n",
"L 231.045682 248.315224 \n",
"L 224.599773 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_26&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 231.045682 248.315224 \n",
"L 237.491591 248.315224 \n",
"L 237.491591 248.315224 \n",
"L 231.045682 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_27&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 237.491591 248.315224 \n",
"L 243.9375 248.315224 \n",
"L 243.9375 248.315224 \n",
"L 237.491591 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_28&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 243.9375 248.315224 \n",
"L 250.383409 248.315224 \n",
"L 250.383409 248.315224 \n",
"L 243.9375 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_29&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 250.383409 248.315224 \n",
"L 256.829318 248.315224 \n",
"L 256.829318 248.315224 \n",
"L 250.383409 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_30&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 256.829318 248.315224 \n",
"L 263.275227 248.315224 \n",
"L 263.275227 248.315224 \n",
"L 256.829318 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_31&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 263.275227 248.315224 \n",
"L 269.721136 248.315224 \n",
"L 269.721136 248.315224 \n",
"L 263.275227 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_32&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 269.721136 248.315224 \n",
"L 276.167045 248.315224 \n",
"L 276.167045 248.315224 \n",
"L 269.721136 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_33&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 276.167045 248.315224 \n",
"L 282.612955 248.315224 \n",
"L 282.612955 248.315224 \n",
"L 276.167045 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_34&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 282.612955 248.315224 \n",
"L 289.058864 248.315224 \n",
"L 289.058864 248.315224 \n",
"L 282.612955 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_35&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 289.058864 248.315224 \n",
"L 295.504773 248.315224 \n",
"L 295.504773 248.315224 \n",
"L 289.058864 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_36&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 295.504773 248.315224 \n",
"L 301.950682 248.315224 \n",
"L 301.950682 248.315224 \n",
"L 295.504773 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_37&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 301.950682 248.315224 \n",
"L 308.396591 248.315224 \n",
"L 308.396591 248.315224 \n",
"L 301.950682 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_38&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 308.396591 248.315224 \n",
"L 314.8425 248.315224 \n",
"L 314.8425 248.315224 \n",
"L 308.396591 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_39&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 314.8425 248.315224 \n",
"L 321.288409 248.315224 \n",
"L 321.288409 248.315224 \n",
"L 314.8425 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_40&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 321.288409 248.315224 \n",
"L 327.734318 248.315224 \n",
"L 327.734318 248.315224 \n",
"L 321.288409 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_41&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 327.734318 248.315224 \n",
"L 334.180227 248.315224 \n",
"L 334.180227 248.315224 \n",
"L 327.734318 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_42&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 334.180227 248.315224 \n",
"L 340.626136 248.315224 \n",
"L 340.626136 248.315224 \n",
"L 334.180227 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_43&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 340.626136 248.315224 \n",
"L 347.072045 248.315224 \n",
"L 347.072045 248.315224 \n",
"L 340.626136 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_44&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 347.072045 248.315224 \n",
"L 353.517955 248.315224 \n",
"L 353.517955 248.315224 \n",
"L 347.072045 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_45&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 353.517955 248.315224 \n",
"L 359.963864 248.315224 \n",
"L 359.963864 248.315224 \n",
"L 353.517955 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_46&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 359.963864 248.315224 \n",
"L 366.409773 248.315224 \n",
"L 366.409773 248.315224 \n",
"L 359.963864 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_47&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 366.409773 248.315224 \n",
"L 372.855682 248.315224 \n",
"L 372.855682 248.315224 \n",
"L 366.409773 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_48&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 372.855682 248.315224 \n",
"L 379.301591 248.315224 \n",
"L 379.301591 248.315224 \n",
"L 372.855682 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_49&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 379.301591 248.315224 \n",
"L 385.7475 248.315224 \n",
"L 385.7475 248.315224 \n",
"L 379.301591 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_50&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 385.7475 248.315224 \n",
"L 392.193409 248.315224 \n",
"L 392.193409 248.315224 \n",
"L 385.7475 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_51&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 392.193409 248.315224 \n",
"L 398.639318 248.315224 \n",
"L 398.639318 248.315224 \n",
"L 392.193409 248.315224 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_52&gt;&lt;path clip-path=url(#pc7de0ad48d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 398.639318 248.315224 \n",
"L 405.085227 248.315224 \n",
"L 405.085227 248.265732 \n",
"L 398.639318 248.265732 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_53&gt;&lt;path style=fill:none; d=&quot;M 66.675 248.315224 \n",
"L 66.675 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_54&gt;&lt;path style=fill:none; d=&quot;M 421.2 248.315224 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_55&gt;&lt;path style=fill:none; d=&quot;M 66.675 248.315224 \n",
"L 421.2 248.315224 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_56&gt;&lt;path style=fill:none; d=&quot;M 66.675 10.8 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=pc7de0ad48d&gt;&lt;rect height=237.515224 width=354.525 x=66.675 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt; Frequencies of value counts &lt;/div&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Unique&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Unique&lt;/th&gt;&lt;td&gt;45706 &lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;The number of unique values (all values that occur exactly once in the dataset).&quot;&gt;?&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Unique (%)&lt;/th&gt;&lt;td&gt;&gt; 99.9%&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=5261117005264946518bottom-5261117005264946518tbl&gt;&lt;div class=col-sm-6&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=288pt version=1.1 viewbox=&quot;0 0 432 288&quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;defs&gt;&lt;style type=text/css&gt;\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" &lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 288 \n",
"L 432 288 \n",
"L 432 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 60.425 250.613321 \n",
"L 421.2 250.613321 \n",
"L 421.2 10.8 \n",
"L 60.425 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;defs&gt;&lt;path id=DejaVuSans-53 d=&quot;M 10.796875 72.90625 \n",
"L 49.515625 72.90625 \n",
"L 49.515625 64.59375 \n",
"L 19.828125 64.59375 \n",
"L 19.828125 46.734375 \n",
"Q 21.96875 47.46875 24.109375 47.828125 \n",
"Q 26.265625 48.1875 28.421875 48.1875 \n",
"Q 40.625 48.1875 47.75 41.5 \n",
"Q 54.890625 34.8125 54.890625 23.390625 \n",
"Q 54.890625 11.625 47.5625 5.09375 \n",
"Q 40.234375 -1.421875 26.90625 -1.421875 \n",
"Q 22.3125 -1.421875 17.546875 -0.640625 \n",
"Q 12.796875 0.140625 7.71875 1.703125 \n",
"L 7.71875 11.625 \n",
"Q 12.109375 9.234375 16.796875 8.0625 \n",
"Q 21.484375 6.890625 26.703125 6.890625 \n",
"Q 35.15625 6.890625 40.078125 11.328125 \n",
"Q 45.015625 15.765625 45.015625 23.390625 \n",
"Q 45.015625 31 40.078125 35.4375 \n",
"Q 35.15625 39.890625 26.703125 39.890625 \n",
"Q 22.75 39.890625 18.8125 39.015625 \n",
"Q 14.890625 38.140625 10.796875 36.28125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(114.369084 270.985194)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-53 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;defs&gt;&lt;path id=DejaVuSans-49 d=&quot;M 12.40625 8.296875 \n",
"L 28.515625 8.296875 \n",
"L 28.515625 63.921875 \n",
"L 10.984375 60.40625 \n",
"L 10.984375 69.390625 \n",
"L 28.421875 72.90625 \n",
"L 38.28125 72.90625 \n",
"L 38.28125 8.296875 \n",
"L 54.390625 8.296875 \n",
"L 54.390625 0 \n",
"L 12.40625 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-48 d=&quot;M 31.78125 66.40625 \n",
"Q 24.171875 66.40625 20.328125 58.90625 \n",
"Q 16.5 51.421875 16.5 36.375 \n",
"Q 16.5 21.390625 20.328125 13.890625 \n",
"Q 24.171875 6.390625 31.78125 6.390625 \n",
"Q 39.453125 6.390625 43.28125 13.890625 \n",
"Q 47.125 21.390625 47.125 36.375 \n",
"Q 47.125 51.421875 43.28125 58.90625 \n",
"Q 39.453125 66.40625 31.78125 66.40625 \n",
"z\n",
"M 31.78125 74.21875 \n",
"Q 44.046875 74.21875 50.515625 64.515625 \n",
"Q 56.984375 54.828125 56.984375 36.375 \n",
"Q 56.984375 17.96875 50.515625 8.265625 \n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \n",
"Q 19.53125 -1.421875 13.0625 8.265625 \n",
"Q 6.59375 17.96875 6.59375 36.375 \n",
"Q 6.59375 54.828125 13.0625 64.515625 \n",
"Q 19.53125 74.21875 31.78125 74.21875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(175.192153 275.484161)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;g style=fill:#262626; transform=&quot;translate(238.264706 275.484161)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-53 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;defs&gt;&lt;path id=DejaVuSans-50 d=&quot;M 19.1875 8.296875 \n",
"L 53.609375 8.296875 \n",
"L 53.609375 0 \n",
"L 7.328125 0 \n",
"L 7.328125 8.296875 \n",
"Q 12.9375 14.109375 22.625 23.890625 \n",
"Q 32.328125 33.6875 34.8125 36.53125 \n",
"Q 39.546875 41.84375 41.421875 45.53125 \n",
"Q 43.3125 49.21875 43.3125 52.78125 \n",
"Q 43.3125 58.59375 39.234375 62.25 \n",
"Q 35.15625 65.921875 28.609375 65.921875 \n",
"Q 23.96875 65.921875 18.8125 64.3125 \n",
"Q 13.671875 62.703125 7.8125 59.421875 \n",
"L 7.8125 69.390625 \n",
"Q 13.765625 71.78125 18.9375 73 \n",
"Q 24.125 74.21875 28.421875 74.21875 \n",
"Q 39.75 74.21875 46.484375 68.546875 \n",
"Q 53.21875 62.890625 53.21875 53.421875 \n",
"Q 53.21875 48.921875 51.53125 44.890625 \n",
"Q 49.859375 40.875 45.40625 35.40625 \n",
"Q 44.1875 33.984375 37.640625 27.21875 \n",
"Q 31.109375 20.453125 19.1875 8.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(301.337258 275.484161)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;g style=fill:#262626; transform=&quot;translate(364.409811 275.484161)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-53 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_2&gt;&lt;g id=ytick_1&gt;&lt;g id=text_6&gt;&lt;g style=fill:#262626; transform=&quot;translate(43.5625 254.412539)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_2&gt;&lt;g id=text_7&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.475 227.737272)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_3&gt;&lt;g id=text_8&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.475 201.062005)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_4&gt;&lt;g id=text_9&gt;&lt;defs&gt;&lt;path id=DejaVuSans-51 d=&quot;M 40.578125 39.3125 \n",
"Q 47.65625 37.796875 51.625 33 \n",
"Q 55.609375 28.21875 55.609375 21.1875 \n",
"Q 55.609375 10.40625 48.1875 4.484375 \n",
"Q 40.765625 -1.421875 27.09375 -1.421875 \n",
"Q 22.515625 -1.421875 17.65625 -0.515625 \n",
"Q 12.796875 0.390625 7.625 2.203125 \n",
"L 7.625 11.71875 \n",
"Q 11.71875 9.328125 16.59375 8.109375 \n",
"Q 21.484375 6.890625 26.8125 6.890625 \n",
"Q 36.078125 6.890625 40.9375 10.546875 \n",
"Q 45.796875 14.203125 45.796875 21.1875 \n",
"Q 45.796875 27.640625 41.28125 31.265625 \n",
"Q 36.765625 34.90625 28.71875 34.90625 \n",
"L 20.21875 34.90625 \n",
"L 20.21875 43.015625 \n",
"L 29.109375 43.015625 \n",
"Q 36.375 43.015625 40.234375 45.921875 \n",
"Q 44.09375 48.828125 44.09375 54.296875 \n",
"Q 44.09375 59.90625 40.109375 62.90625 \n",
"Q 36.140625 65.921875 28.71875 65.921875 \n",
"Q 24.65625 65.921875 20.015625 65.03125 \n",
"Q 15.375 64.15625 9.8125 62.3125 \n",
"L 9.8125 71.09375 \n",
"Q 15.4375 72.65625 20.34375 73.4375 \n",
"Q 25.25 74.21875 29.59375 74.21875 \n",
"Q 40.828125 74.21875 47.359375 69.109375 \n",
"Q 53.90625 64.015625 53.90625 55.328125 \n",
"Q 53.90625 49.265625 50.4375 45.09375 \n",
"Q 46.96875 40.921875 40.578125 39.3125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.475 174.386738)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-51 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_5&gt;&lt;g id=text_10&gt;&lt;defs&gt;&lt;path id=DejaVuSans-52 d=&quot;M 37.796875 64.3125 \n",
"L 12.890625 25.390625 \n",
"L 37.796875 25.390625 \n",
"z\n",
"M 35.203125 72.90625 \n",
"L 47.609375 72.90625 \n",
"L 47.609375 25.390625 \n",
"L 58.015625 25.390625 \n",
"L 58.015625 17.1875 \n",
"L 47.609375 17.1875 \n",
"L 47.609375 0 \n",
"L 37.796875 0 \n",
"L 37.796875 17.1875 \n",
"L 4.890625 17.1875 \n",
"L 4.890625 26.703125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.475 147.71147)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-52 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_6&gt;&lt;g id=text_11&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.475 121.036203)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-53 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_7&gt;&lt;g id=text_12&gt;&lt;defs&gt;&lt;path id=DejaVuSans-54 d=&quot;M 33.015625 40.375 \n",
"Q 26.375 40.375 22.484375 35.828125 \n",
"Q 18.609375 31.296875 18.609375 23.390625 \n",
"Q 18.609375 15.53125 22.484375 10.953125 \n",
"Q 26.375 6.390625 33.015625 6.390625 \n",
"Q 39.65625 6.390625 43.53125 10.953125 \n",
"Q 47.40625 15.53125 47.40625 23.390625 \n",
"Q 47.40625 31.296875 43.53125 35.828125 \n",
"Q 39.65625 40.375 33.015625 40.375 \n",
"z\n",
"M 52.59375 71.296875 \n",
"L 52.59375 62.3125 \n",
"Q 48.875 64.0625 45.09375 64.984375 \n",
"Q 41.3125 65.921875 37.59375 65.921875 \n",
"Q 27.828125 65.921875 22.671875 59.328125 \n",
"Q 17.53125 52.734375 16.796875 39.40625 \n",
"Q 19.671875 43.65625 24.015625 45.921875 \n",
"Q 28.375 48.1875 33.59375 48.1875 \n",
"Q 44.578125 48.1875 50.953125 41.515625 \n",
"Q 57.328125 34.859375 57.328125 23.390625 \n",
"Q 57.328125 12.15625 50.6875 5.359375 \n",
"Q 44.046875 -1.421875 33.015625 -1.421875 \n",
"Q 20.359375 -1.421875 13.671875 8.265625 \n",
"Q 6.984375 17.96875 6.984375 36.375 \n",
"Q 6.984375 53.65625 15.1875 63.9375 \n",
"Q 23.390625 74.21875 37.203125 74.21875 \n",
"Q 40.921875 74.21875 44.703125 73.484375 \n",
"Q 48.484375 72.75 52.59375 71.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.475 94.360936)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-54 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_8&gt;&lt;g id=text_13&gt;&lt;defs&gt;&lt;path id=DejaVuSans-55 d=&quot;M 8.203125 72.90625 \n",
"L 55.078125 72.90625 \n",
"L 55.078125 68.703125 \n",
"L 28.609375 0 \n",
"L 18.3125 0 \n",
"L 43.21875 64.59375 \n",
"L 8.203125 64.59375 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.475 67.685668)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-55 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_9&gt;&lt;g id=text_14&gt;&lt;defs&gt;&lt;path id=DejaVuSans-56 d=&quot;M 31.78125 34.625 \n",
"Q 24.75 34.625 20.71875 30.859375 \n",
"Q 16.703125 27.09375 16.703125 20.515625 \n",
"Q 16.703125 13.921875 20.71875 10.15625 \n",
"Q 24.75 6.390625 31.78125 6.390625 \n",
"Q 38.8125 6.390625 42.859375 10.171875 \n",
"Q 46.921875 13.96875 46.921875 20.515625 \n",
"Q 46.921875 27.09375 42.890625 30.859375 \n",
"Q 38.875 34.625 31.78125 34.625 \n",
"z\n",
"M 21.921875 38.8125 \n",
"Q 15.578125 40.375 12.03125 44.71875 \n",
"Q 8.5 49.078125 8.5 55.328125 \n",
"Q 8.5 64.0625 14.71875 69.140625 \n",
"Q 20.953125 74.21875 31.78125 74.21875 \n",
"Q 42.671875 74.21875 48.875 69.140625 \n",
"Q 55.078125 64.0625 55.078125 55.328125 \n",
"Q 55.078125 49.078125 51.53125 44.71875 \n",
"Q 48 40.375 41.703125 38.8125 \n",
"Q 48.828125 37.15625 52.796875 32.3125 \n",
"Q 56.78125 27.484375 56.78125 20.515625 \n",
"Q 56.78125 9.90625 50.3125 4.234375 \n",
"Q 43.84375 -1.421875 31.78125 -1.421875 \n",
"Q 19.734375 -1.421875 13.25 4.234375 \n",
"Q 6.78125 9.90625 6.78125 20.515625 \n",
"Q 6.78125 27.484375 10.78125 32.3125 \n",
"Q 14.796875 37.15625 21.921875 38.8125 \n",
"z\n",
"M 18.3125 54.390625 \n",
"Q 18.3125 48.734375 21.84375 45.5625 \n",
"Q 25.390625 42.390625 31.78125 42.390625 \n",
"Q 38.140625 42.390625 41.71875 45.5625 \n",
"Q 45.3125 48.734375 45.3125 54.390625 \n",
"Q 45.3125 60.0625 41.71875 63.234375 \n",
"Q 38.140625 66.40625 31.78125 66.40625 \n",
"Q 25.390625 66.40625 21.84375 63.234375 \n",
"Q 18.3125 60.0625 18.3125 54.390625 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.475 41.010401)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-56 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_15&gt;&lt;defs&gt;&lt;path id=DejaVuSans-70 d=&quot;M 9.8125 72.90625 \n",
"L 51.703125 72.90625 \n",
"L 51.703125 64.59375 \n",
"L 19.671875 64.59375 \n",
"L 19.671875 43.109375 \n",
"L 48.578125 43.109375 \n",
"L 48.578125 34.8125 \n",
"L 19.671875 34.8125 \n",
"L 19.671875 0 \n",
"L 9.8125 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-114 d=&quot;M 41.109375 46.296875 \n",
"Q 39.59375 47.171875 37.8125 47.578125 \n",
"Q 36.03125 48 33.890625 48 \n",
"Q 26.265625 48 22.1875 43.046875 \n",
"Q 18.109375 38.09375 18.109375 28.8125 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 20.953125 51.171875 25.484375 53.578125 \n",
"Q 30.03125 56 36.53125 56 \n",
"Q 37.453125 56 38.578125 55.875 \n",
"Q 39.703125 55.765625 41.0625 55.515625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-101 d=&quot;M 56.203125 29.59375 \n",
"L 56.203125 25.203125 \n",
"L 14.890625 25.203125 \n",
"Q 15.484375 15.921875 20.484375 11.0625 \n",
"Q 25.484375 6.203125 34.421875 6.203125 \n",
"Q 39.59375 6.203125 44.453125 7.46875 \n",
"Q 49.3125 8.734375 54.109375 11.28125 \n",
"L 54.109375 2.78125 \n",
"Q 49.265625 0.734375 44.1875 -0.34375 \n",
"Q 39.109375 -1.421875 33.890625 -1.421875 \n",
"Q 20.796875 -1.421875 13.15625 6.1875 \n",
"Q 5.515625 13.8125 5.515625 26.8125 \n",
"Q 5.515625 40.234375 12.765625 48.109375 \n",
"Q 20.015625 56 32.328125 56 \n",
"Q 43.359375 56 49.78125 48.890625 \n",
"Q 56.203125 41.796875 56.203125 29.59375 \n",
"z\n",
"M 47.21875 32.234375 \n",
"Q 47.125 39.59375 43.09375 43.984375 \n",
"Q 39.0625 48.390625 32.421875 48.390625 \n",
"Q 24.90625 48.390625 20.390625 44.140625 \n",
"Q 15.875 39.890625 15.1875 32.171875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-113 d=&quot;M 14.796875 27.296875 \n",
"Q 14.796875 17.390625 18.875 11.75 \n",
"Q 22.953125 6.109375 30.078125 6.109375 \n",
"Q 37.203125 6.109375 41.296875 11.75 \n",
"Q 45.40625 17.390625 45.40625 27.296875 \n",
"Q 45.40625 37.203125 41.296875 42.84375 \n",
"Q 37.203125 48.484375 30.078125 48.484375 \n",
"Q 22.953125 48.484375 18.875 42.84375 \n",
"Q 14.796875 37.203125 14.796875 27.296875 \n",
"z\n",
"M 45.40625 8.203125 \n",
"Q 42.578125 3.328125 38.25 0.953125 \n",
"Q 33.9375 -1.421875 27.875 -1.421875 \n",
"Q 17.96875 -1.421875 11.734375 6.484375 \n",
"Q 5.515625 14.40625 5.515625 27.296875 \n",
"Q 5.515625 40.1875 11.734375 48.09375 \n",
"Q 17.96875 56 27.875 56 \n",
"Q 33.9375 56 38.25 53.625 \n",
"Q 42.578125 51.265625 45.40625 46.390625 \n",
"L 45.40625 54.6875 \n",
"L 54.390625 54.6875 \n",
"L 54.390625 -20.796875 \n",
"L 45.40625 -20.796875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-117 d=&quot;M 8.5 21.578125 \n",
"L 8.5 54.6875 \n",
"L 17.484375 54.6875 \n",
"L 17.484375 21.921875 \n",
"Q 17.484375 14.15625 20.5 10.265625 \n",
"Q 23.53125 6.390625 29.59375 6.390625 \n",
"Q 36.859375 6.390625 41.078125 11.03125 \n",
"Q 45.3125 15.671875 45.3125 23.6875 \n",
"L 45.3125 54.6875 \n",
"L 54.296875 54.6875 \n",
"L 54.296875 0 \n",
"L 45.3125 0 \n",
"L 45.3125 8.40625 \n",
"Q 42.046875 3.421875 37.71875 1 \n",
"Q 33.40625 -1.421875 27.6875 -1.421875 \n",
"Q 18.265625 -1.421875 13.375 4.4375 \n",
"Q 8.5 10.296875 8.5 21.578125 \n",
"z\n",
"M 31.109375 56 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-110 d=&quot;M 54.890625 33.015625 \n",
"L 54.890625 0 \n",
"L 45.90625 0 \n",
"L 45.90625 32.71875 \n",
"Q 45.90625 40.484375 42.875 44.328125 \n",
"Q 39.84375 48.1875 33.796875 48.1875 \n",
"Q 26.515625 48.1875 22.3125 43.546875 \n",
"Q 18.109375 38.921875 18.109375 30.90625 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 21.34375 51.125 25.703125 53.5625 \n",
"Q 30.078125 56 35.796875 56 \n",
"Q 45.21875 56 50.046875 50.171875 \n",
"Q 54.890625 44.34375 54.890625 33.015625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-99 d=&quot;M 48.78125 52.59375 \n",
"L 48.78125 44.1875 \n",
"Q 44.96875 46.296875 41.140625 47.34375 \n",
"Q 37.3125 48.390625 33.40625 48.390625 \n",
"Q 24.65625 48.390625 19.8125 42.84375 \n",
"Q 14.984375 37.3125 14.984375 27.296875 \n",
"Q 14.984375 17.28125 19.8125 11.734375 \n",
"Q 24.65625 6.203125 33.40625 6.203125 \n",
"Q 37.3125 6.203125 41.140625 7.25 \n",
"Q 44.96875 8.296875 48.78125 10.40625 \n",
"L 48.78125 2.09375 \n",
"Q 45.015625 0.34375 40.984375 -0.53125 \n",
"Q 36.96875 -1.421875 32.421875 -1.421875 \n",
"Q 20.0625 -1.421875 12.78125 6.34375 \n",
"Q 5.515625 14.109375 5.515625 27.296875 \n",
"Q 5.515625 40.671875 12.859375 48.328125 \n",
"Q 20.21875 56 33.015625 56 \n",
"Q 37.15625 56 41.109375 55.140625 \n",
"Q 45.0625 54.296875 48.78125 52.59375 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-121 d=&quot;M 32.171875 -5.078125 \n",
"Q 28.375 -14.84375 24.75 -17.8125 \n",
"Q 21.140625 -20.796875 15.09375 -20.796875 \n",
"L 7.90625 -20.796875 \n",
"L 7.90625 -13.28125 \n",
"L 13.1875 -13.28125 \n",
"Q 16.890625 -13.28125 18.9375 -11.515625 \n",
"Q 21 -9.765625 23.484375 -3.21875 \n",
"L 25.09375 0.875 \n",
"L 2.984375 54.6875 \n",
"L 12.5 54.6875 \n",
"L 29.59375 11.921875 \n",
"L 46.6875 54.6875 \n",
"L 56.203125 54.6875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(18.187344 159.119317)rotate(-90)scale(0.11 -0.11)&quot;&gt;&lt;use xlink:href=#DejaVuSans-70 /&gt;&lt;use x=50.269531 xlink:href=#DejaVuSans-114 /&gt;&lt;use x=89.132812 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=150.65625 xlink:href=#DejaVuSans-113 /&gt;&lt;use x=214.132812 xlink:href=#DejaVuSans-117 /&gt;&lt;use x=277.511719 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=339.035156 xlink:href=#DejaVuSans-110 /&gt;&lt;use x=402.414062 xlink:href=#DejaVuSans-99 /&gt;&lt;use x=457.394531 xlink:href=#DejaVuSans-121 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#pc865f86dd2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 76.823864 250.613321 \n",
"L 88.97117 250.613321 \n",
"L 88.97117 250.55997 \n",
"L 76.823864 250.55997 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#pc865f86dd2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 88.97117 250.613321 \n",
"L 101.118476 250.613321 \n",
"L 101.118476 250.186516 \n",
"L 88.97117 250.186516 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path clip-path=url(#pc865f86dd2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 101.118476 250.613321 \n",
"L 113.265783 250.613321 \n",
"L 113.265783 248.07917 \n",
"L 101.118476 248.07917 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path clip-path=url(#pc865f86dd2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 113.265783 250.613321 \n",
"L 125.413089 250.613321 \n",
"L 125.413089 244.638061 \n",
"L 113.265783 244.638061 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path clip-path=url(#pc865f86dd2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 125.413089 250.613321 \n",
"L 137.560396 250.613321 \n",
"L 137.560396 239.489734 \n",
"L 125.413089 239.489734 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path clip-path=url(#pc865f86dd2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 137.560396 250.613321 \n",
"L 149.707702 250.613321 \n",
"L 149.707702 239.169631 \n",
"L 137.560396 239.169631 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_9&gt;&lt;path clip-path=url(#pc865f86dd2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 149.707702 250.613321 \n",
"L 161.855008 250.613321 \n",
"L 161.855008 238.689476 \n",
"L 149.707702 238.689476 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_10&gt;&lt;path clip-path=url(#pc865f86dd2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 161.855008 250.613321 \n",
"L 174.002315 250.613321 \n",
"L 174.002315 224.951714 \n",
"L 161.855008 224.951714 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_11&gt;&lt;path clip-path=url(#pc865f86dd2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 174.002315 250.613321 \n",
"L 186.149621 250.613321 \n",
"L 186.149621 213.481349 \n",
"L 174.002315 213.481349 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_12&gt;&lt;path clip-path=url(#pc865f86dd2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 186.149621 250.613321 \n",
"L 198.296928 250.613321 \n",
"L 198.296928 217.509314 \n",
"L 186.149621 217.509314 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_13&gt;&lt;path clip-path=url(#pc865f86dd2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 198.296928 250.613321 \n",
"L 210.444234 250.613321 \n",
"L 210.444234 144.899236 \n",
"L 198.296928 144.899236 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_14&gt;&lt;path clip-path=url(#pc865f86dd2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 210.444234 250.613321 \n",
"L 222.59154 250.613321 \n",
"L 222.59154 104.406181 \n",
"L 210.444234 104.406181 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_15&gt;&lt;path clip-path=url(#pc865f86dd2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 222.59154 250.613321 \n",
"L 234.738847 250.613321 \n",
"L 234.738847 242.690766 \n",
"L 222.59154 242.690766 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_16&gt;&lt;path clip-path=url(#pc865f86dd2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 234.738847 250.613321 \n",
"L 246.886153 250.613321 \n",
"L 246.886153 218.14952 \n",
"L 234.738847 218.14952 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_17&gt;&lt;path clip-path=url(#pc865f86dd2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 246.886153 250.613321 \n",
"L 259.03346 250.613321 \n",
"L 259.03346 244.291282 \n",
"L 246.886153 244.291282 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_18&gt;&lt;path clip-path=url(#pc865f86dd2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 259.03346 250.613321 \n",
"L 271.180766 250.613321 \n",
"L 271.180766 176.66948 \n",
"L 259.03346 176.66948 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_19&gt;&lt;path clip-path=url(#pc865f86dd2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 271.180766 250.613321 \n",
"L 283.328072 250.613321 \n",
"L 283.328072 192.034434 \n",
"L 271.180766 192.034434 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_20&gt;&lt;path clip-path=url(#pc865f86dd2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 283.328072 250.613321 \n",
"L 295.475379 250.613321 \n",
"L 295.475379 201.930958 \n",
"L 283.328072 201.930958 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_21&gt;&lt;path clip-path=url(#pc865f86dd2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 295.475379 250.613321 \n",
"L 307.622685 250.613321 \n",
"L 307.622685 159.19718 \n",
"L 295.475379 159.19718 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_22&gt;&lt;path clip-path=url(#pc865f86dd2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 307.622685 250.613321 \n",
"L 319.769992 250.613321 \n",
"L 319.769992 22.219682 \n",
"L 307.622685 22.219682 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_23&gt;&lt;path clip-path=url(#pc865f86dd2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 319.769992 250.613321 \n",
"L 331.917298 250.613321 \n",
"L 331.917298 113.36907 \n",
"L 319.769992 113.36907 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_24&gt;&lt;path clip-path=url(#pc865f86dd2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 331.917298 250.613321 \n",
"L 344.064604 250.613321 \n",
"L 344.064604 211.507379 \n",
"L 331.917298 211.507379 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_25&gt;&lt;path clip-path=url(#pc865f86dd2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 344.064604 250.613321 \n",
"L 356.211911 250.613321 \n",
"L 356.211911 249.679686 \n",
"L 344.064604 249.679686 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_26&gt;&lt;path clip-path=url(#pc865f86dd2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 356.211911 250.613321 \n",
"L 368.359217 250.613321 \n",
"L 368.359217 239.809837 \n",
"L 356.211911 239.809837 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_27&gt;&lt;path clip-path=url(#pc865f86dd2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 368.359217 250.613321 \n",
"L 380.506524 250.613321 \n",
"L 380.506524 250.05314 \n",
"L 368.359217 250.05314 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_28&gt;&lt;path clip-path=url(#pc865f86dd2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 380.506524 250.613321 \n",
"L 392.65383 250.613321 \n",
"L 392.65383 159.970762 \n",
"L 380.506524 159.970762 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_29&gt;&lt;path clip-path=url(#pc865f86dd2) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 392.65383 250.613321 \n",
"L 404.801136 250.613321 \n",
"L 404.801136 249.172856 \n",
"L 392.65383 249.172856 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_30&gt;&lt;path style=fill:none; d=&quot;M 60.425 250.613321 \n",
"L 60.425 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_31&gt;&lt;path style=fill:none; d=&quot;M 421.2 250.613321 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_32&gt;&lt;path style=fill:none; d=&quot;M 60.425 250.613321 \n",
"L 421.2 250.613321 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_33&gt;&lt;path style=fill:none; d=&quot;M 60.425 10.8 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=pc865f86dd2&gt;&lt;rect height=239.813321 width=360.775 x=60.425 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt; Histogram of lengths of the category &lt;/div&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Length&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Max length&lt;/th&gt;&lt;td&gt;28&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Median length&lt;/th&gt;&lt;td&gt;19&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Mean length&lt;/th&gt;&lt;td&gt;17.78467393&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Min length&lt;/th&gt;&lt;td&gt;2&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;a class=&quot;anchor-pos anchor-pos-variable&quot; id=pp_var_-6321857870592475507&gt;&lt;/a&gt;&lt;div class=variable&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4 title=id&gt;&lt;a href=#pp_var_-6321857870592475507&gt;id&lt;/a&gt;&lt;br&gt;&lt;small&gt;Real number (&amp;Ropf;&lt;sub&gt;&amp;ge;0&lt;/sub&gt;)&lt;/small&gt;&lt;/p&gt;&lt;p class=variable-description&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Distinct&lt;/th&gt;&lt;td&gt;45716&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct (%)&lt;/th&gt;&lt;td&gt;&gt; 99.9%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Infinite&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Infinite (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Mean&lt;/th&gt;&lt;td&gt;26883.9062&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Minimum&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Maximum&lt;/th&gt;&lt;td&gt;57458&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Zeros&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Zeros (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Memory size&lt;/th&gt;&lt;td&gt;357.2 KiB&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=162pt version=1.1 viewbox=&quot;0 0 216 162&quot; width=216pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;defs&gt;&lt;style type=text/css&gt;\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" &lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 162 \n",
"L 216 162 \n",
"L 216 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 10.8 116.569981 \n",
"L 194.055481 116.569981 \n",
"L 194.055481 10.8 \n",
"L 10.8 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;defs&gt;&lt;path id=DejaVuSans-48 d=&quot;M 31.78125 66.40625 \n",
"Q 24.171875 66.40625 20.328125 58.90625 \n",
"Q 16.5 51.421875 16.5 36.375 \n",
"Q 16.5 21.390625 20.328125 13.890625 \n",
"Q 24.171875 6.390625 31.78125 6.390625 \n",
"Q 39.453125 6.390625 43.28125 13.890625 \n",
"Q 47.125 21.390625 47.125 36.375 \n",
"Q 47.125 51.421875 43.28125 58.90625 \n",
"Q 39.453125 66.40625 31.78125 66.40625 \n",
"z\n",
"M 31.78125 74.21875 \n",
"Q 44.046875 74.21875 50.515625 64.515625 \n",
"Q 56.984375 54.828125 56.984375 36.375 \n",
"Q 56.984375 17.96875 50.515625 8.265625 \n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \n",
"Q 19.53125 -1.421875 13.0625 8.265625 \n",
"Q 6.59375 17.96875 6.59375 36.375 \n",
"Q 6.59375 54.828125 13.0625 64.515625 \n",
"Q 19.53125 74.21875 31.78125 74.21875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(18.888247 134.96748)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;defs&gt;&lt;path id=DejaVuSans-50 d=&quot;M 19.1875 8.296875 \n",
"L 53.609375 8.296875 \n",
"L 53.609375 0 \n",
"L 7.328125 0 \n",
"L 7.328125 8.296875 \n",
"Q 12.9375 14.109375 22.625 23.890625 \n",
"Q 32.328125 33.6875 34.8125 36.53125 \n",
"Q 39.546875 41.84375 41.421875 45.53125 \n",
"Q 43.3125 49.21875 43.3125 52.78125 \n",
"Q 43.3125 58.59375 39.234375 62.25 \n",
"Q 35.15625 65.921875 28.609375 65.921875 \n",
"Q 23.96875 65.921875 18.8125 64.3125 \n",
"Q 13.671875 62.703125 7.8125 59.421875 \n",
"L 7.8125 69.390625 \n",
"Q 13.765625 71.78125 18.9375 73 \n",
"Q 24.125 74.21875 28.421875 74.21875 \n",
"Q 39.75 74.21875 46.484375 68.546875 \n",
"Q 53.21875 62.890625 53.21875 53.421875 \n",
"Q 53.21875 48.921875 51.53125 44.890625 \n",
"Q 49.859375 40.875 45.40625 35.40625 \n",
"Q 44.1875 33.984375 37.640625 27.21875 \n",
"Q 31.109375 20.453125 19.1875 8.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(69.679663 149.364174)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;defs&gt;&lt;path id=DejaVuSans-52 d=&quot;M 37.796875 64.3125 \n",
"L 12.890625 25.390625 \n",
"L 37.796875 25.390625 \n",
"z\n",
"M 35.203125 72.90625 \n",
"L 47.609375 72.90625 \n",
"L 47.609375 25.390625 \n",
"L 58.015625 25.390625 \n",
"L 58.015625 17.1875 \n",
"L 47.609375 17.1875 \n",
"L 47.609375 0 \n",
"L 37.796875 0 \n",
"L 37.796875 17.1875 \n",
"L 4.890625 17.1875 \n",
"L 4.890625 26.703125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(127.669426 149.364174)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;use xlink:href=#DejaVuSans-52 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;defs&gt;&lt;path id=DejaVuSans-54 d=&quot;M 33.015625 40.375 \n",
"Q 26.375 40.375 22.484375 35.828125 \n",
"Q 18.609375 31.296875 18.609375 23.390625 \n",
"Q 18.609375 15.53125 22.484375 10.953125 \n",
"Q 26.375 6.390625 33.015625 6.390625 \n",
"Q 39.65625 6.390625 43.53125 10.953125 \n",
"Q 47.40625 15.53125 47.40625 23.390625 \n",
"Q 47.40625 31.296875 43.53125 35.828125 \n",
"Q 39.65625 40.375 33.015625 40.375 \n",
"z\n",
"M 52.59375 71.296875 \n",
"L 52.59375 62.3125 \n",
"Q 48.875 64.0625 45.09375 64.984375 \n",
"Q 41.3125 65.921875 37.59375 65.921875 \n",
"Q 27.828125 65.921875 22.671875 59.328125 \n",
"Q 17.53125 52.734375 16.796875 39.40625 \n",
"Q 19.671875 43.65625 24.015625 45.921875 \n",
"Q 28.375 48.1875 33.59375 48.1875 \n",
"Q 44.578125 48.1875 50.953125 41.515625 \n",
"Q 57.328125 34.859375 57.328125 23.390625 \n",
"Q 57.328125 12.15625 50.6875 5.359375 \n",
"Q 44.046875 -1.421875 33.015625 -1.421875 \n",
"Q 20.359375 -1.421875 13.671875 8.265625 \n",
"Q 6.984375 17.96875 6.984375 36.375 \n",
"Q 6.984375 53.65625 15.1875 63.9375 \n",
"Q 23.390625 74.21875 37.203125 74.21875 \n",
"Q 40.921875 74.21875 44.703125 73.484375 \n",
"Q 48.484375 72.75 52.59375 71.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(185.65919 149.364174)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;use xlink:href=#DejaVuSans-54 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 19.129795 116.569981 \n",
"L 22.461712 116.569981 \n",
"L 22.461712 15.836666 \n",
"L 19.129795 15.836666 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 22.461712 116.569981 \n",
"L 25.79363 116.569981 \n",
"L 25.79363 22.844201 \n",
"L 22.461712 22.844201 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 25.79363 116.569981 \n",
"L 29.125548 116.569981 \n",
"L 29.125548 81.795089 \n",
"L 25.79363 81.795089 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 29.125548 116.569981 \n",
"L 32.457466 116.569981 \n",
"L 32.457466 33.70588 \n",
"L 29.125548 33.70588 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 32.457466 116.569981 \n",
"L 35.789384 116.569981 \n",
"L 35.789384 25.822403 \n",
"L 32.457466 25.822403 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 35.789384 116.569981 \n",
"L 39.121302 116.569981 \n",
"L 39.121302 17.763738 \n",
"L 35.789384 17.763738 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_9&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 39.121302 116.569981 \n",
"L 42.453219 116.569981 \n",
"L 42.453219 16.625013 \n",
"L 39.121302 16.625013 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_10&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 42.453219 116.569981 \n",
"L 45.785137 116.569981 \n",
"L 45.785137 15.836666 \n",
"L 42.453219 15.836666 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_11&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 45.785137 116.569981 \n",
"L 49.117055 116.569981 \n",
"L 49.117055 16.625013 \n",
"L 45.785137 16.625013 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_12&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 49.117055 116.569981 \n",
"L 52.448973 116.569981 \n",
"L 52.448973 18.376897 \n",
"L 49.117055 18.376897 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_13&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 52.448973 116.569981 \n",
"L 55.780891 116.569981 \n",
"L 55.780891 19.165245 \n",
"L 52.448973 19.165245 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_14&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 55.780891 116.569981 \n",
"L 59.112809 116.569981 \n",
"L 59.112809 16.362231 \n",
"L 55.780891 16.362231 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_15&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 59.112809 116.569981 \n",
"L 62.444726 116.569981 \n",
"L 62.444726 16.537419 \n",
"L 59.112809 16.537419 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_16&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 62.444726 116.569981 \n",
"L 65.776644 116.569981 \n",
"L 65.776644 17.150579 \n",
"L 62.444726 17.150579 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_17&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 65.776644 116.569981 \n",
"L 69.108562 116.569981 \n",
"L 69.108562 17.851332 \n",
"L 65.776644 17.851332 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_18&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 69.108562 116.569981 \n",
"L 72.44048 116.569981 \n",
"L 72.44048 17.325767 \n",
"L 69.108562 17.325767 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_19&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 72.44048 116.569981 \n",
"L 75.772398 116.569981 \n",
"L 75.772398 17.062984 \n",
"L 72.44048 17.062984 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_20&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 75.772398 116.569981 \n",
"L 79.104316 116.569981 \n",
"L 79.104316 15.92426 \n",
"L 75.772398 15.92426 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_21&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 79.104316 116.569981 \n",
"L 82.436233 116.569981 \n",
"L 82.436233 15.92426 \n",
"L 79.104316 15.92426 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_22&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 82.436233 116.569981 \n",
"L 85.768151 116.569981 \n",
"L 85.768151 16.274637 \n",
"L 82.436233 16.274637 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_23&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 85.768151 116.569981 \n",
"L 89.100069 116.569981 \n",
"L 89.100069 20.74194 \n",
"L 85.768151 20.74194 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_24&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 89.100069 116.569981 \n",
"L 92.431987 116.569981 \n",
"L 92.431987 17.150579 \n",
"L 89.100069 17.150579 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_25&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 92.431987 116.569981 \n",
"L 95.763905 116.569981 \n",
"L 95.763905 31.253243 \n",
"L 92.431987 31.253243 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_26&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 95.763905 116.569981 \n",
"L 99.095823 116.569981 \n",
"L 99.095823 36.859271 \n",
"L 95.763905 36.859271 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_27&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 99.095823 116.569981 \n",
"L 102.42774 116.569981 \n",
"L 102.42774 44.830342 \n",
"L 99.095823 44.830342 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_28&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 102.42774 116.569981 \n",
"L 105.759658 116.569981 \n",
"L 105.759658 20.128781 \n",
"L 102.42774 20.128781 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_29&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 105.759658 116.569981 \n",
"L 109.091576 116.569981 \n",
"L 109.091576 27.574287 \n",
"L 105.759658 27.574287 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_30&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 109.091576 116.569981 \n",
"L 112.423494 116.569981 \n",
"L 112.423494 81.006741 \n",
"L 109.091576 81.006741 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_31&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 112.423494 116.569981 \n",
"L 115.755412 116.569981 \n",
"L 115.755412 58.845412 \n",
"L 112.423494 58.845412 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_32&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 115.755412 116.569981 \n",
"L 119.08733 116.569981 \n",
"L 119.08733 67.867613 \n",
"L 115.755412 67.867613 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_33&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 119.08733 116.569981 \n",
"L 122.419248 116.569981 \n",
"L 122.419248 36.158517 \n",
"L 119.08733 36.158517 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_34&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 122.419248 116.569981 \n",
"L 125.751165 116.569981 \n",
"L 125.751165 23.982925 \n",
"L 122.419248 23.982925 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_35&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 125.751165 116.569981 \n",
"L 129.083083 116.569981 \n",
"L 129.083083 74.787554 \n",
"L 125.751165 74.787554 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_36&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 129.083083 116.569981 \n",
"L 132.415001 116.569981 \n",
"L 132.415001 66.290918 \n",
"L 129.083083 66.290918 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_37&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 132.415001 116.569981 \n",
"L 135.746919 116.569981 \n",
"L 135.746919 62.261585 \n",
"L 132.415001 62.261585 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_38&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 135.746919 116.569981 \n",
"L 139.078837 116.569981 \n",
"L 139.078837 82.23306 \n",
"L 135.746919 82.23306 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_39&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 139.078837 116.569981 \n",
"L 142.410755 116.569981 \n",
"L 142.410755 116.569981 \n",
"L 139.078837 116.569981 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_40&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 142.410755 116.569981 \n",
"L 145.742672 116.569981 \n",
"L 145.742672 116.482387 \n",
"L 142.410755 116.482387 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_41&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 145.742672 116.569981 \n",
"L 149.07459 116.569981 \n",
"L 149.07459 75.225525 \n",
"L 145.742672 75.225525 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_42&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 149.07459 116.569981 \n",
"L 152.406508 116.569981 \n",
"L 152.406508 27.837069 \n",
"L 149.07459 27.837069 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_43&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 152.406508 116.569981 \n",
"L 155.738426 116.569981 \n",
"L 155.738426 18.902462 \n",
"L 152.406508 18.902462 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_44&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 155.738426 116.569981 \n",
"L 159.070344 116.569981 \n",
"L 159.070344 28.537823 \n",
"L 155.738426 28.537823 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_45&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 159.070344 116.569981 \n",
"L 162.402262 116.569981 \n",
"L 162.402262 39.487096 \n",
"L 159.070344 39.487096 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_46&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 162.402262 116.569981 \n",
"L 165.734179 116.569981 \n",
"L 165.734179 19.252839 \n",
"L 162.402262 19.252839 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_47&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 165.734179 116.569981 \n",
"L 169.066097 116.569981 \n",
"L 169.066097 30.202112 \n",
"L 165.734179 30.202112 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_48&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 169.066097 116.569981 \n",
"L 172.398015 116.569981 \n",
"L 172.398015 48.158921 \n",
"L 169.066097 48.158921 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_49&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 172.398015 116.569981 \n",
"L 175.729933 116.569981 \n",
"L 175.729933 34.844604 \n",
"L 172.398015 34.844604 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_50&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 175.729933 116.569981 \n",
"L 179.061851 116.569981 \n",
"L 179.061851 26.873533 \n",
"L 175.729933 26.873533 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_51&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 179.061851 116.569981 \n",
"L 182.393769 116.569981 \n",
"L 182.393769 27.574287 \n",
"L 179.061851 27.574287 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_52&gt;&lt;path clip-path=url(#pa25e813e37) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 182.393769 116.569981 \n",
"L 185.725686 116.569981 \n",
"L 185.725686 26.435562 \n",
"L 182.393769 26.435562 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_53&gt;&lt;path style=fill:none; d=&quot;M 10.8 116.569981 \n",
"L 10.8 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_54&gt;&lt;path style=fill:none; d=&quot;M 194.055481 116.569981 \n",
"L 194.055481 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_55&gt;&lt;path style=fill:none; d=&quot;M 10.8 116.569981 \n",
"L 194.055481 116.569981 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_56&gt;&lt;path style=fill:none; d=&quot;M 10.8 10.8 \n",
"L 194.055481 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=pa25e813e37&gt;&lt;rect height=105.769981 width=183.255481 x=10.8 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;/div&gt;&lt;div class=&quot;col-sm-12 text-right&quot;&gt;&lt;button class=&quot;btn btn-default btn-sm&quot; data-toggle=collapse data-target=&quot;#bottom--6321857870592475507, #minifreqtable-6321857870592475507&quot; aria-expanded=true aria-controls=collapseExample&gt;Toggle details&lt;/button&gt;&lt;/div&gt;&lt;div id=bottom--6321857870592475507 class=collapse&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#-6321857870592475507bottom--6321857870592475507statistics aria-controls=-6321857870592475507bottom--6321857870592475507statistics role=tab data-toggle=tab&gt;Statistics&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-6321857870592475507bottom--6321857870592475507histogram aria-controls=-6321857870592475507bottom--6321857870592475507histogram role=tab data-toggle=tab&gt;Histogram&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-6321857870592475507bottom--6321857870592475507common_values aria-controls=-6321857870592475507bottom--6321857870592475507common_values role=tab data-toggle=tab&gt;Common values&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-6321857870592475507bottom--6321857870592475507extreme_values aria-controls=-6321857870592475507bottom--6321857870592475507extreme_values role=tab data-toggle=tab&gt;Extreme values&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=-6321857870592475507bottom--6321857870592475507statistics&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Quantile statistics&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Minimum&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;5-th percentile&lt;/th&gt;&lt;td&gt;2388.75&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Q1&lt;/th&gt;&lt;td&gt;12681.25&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;median&lt;/th&gt;&lt;td&gt;24256.5&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Q3&lt;/th&gt;&lt;td&gt;40653.5&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;95-th percentile&lt;/th&gt;&lt;td&gt;54890.75&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Maximum&lt;/th&gt;&lt;td&gt;57458&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Range&lt;/th&gt;&lt;td&gt;57457&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Interquartile range (IQR)&lt;/th&gt;&lt;td&gt;27972.25&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Descriptive statistics&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Standard deviation&lt;/th&gt;&lt;td&gt;16863.44557&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Coefficient of variation (CV)&lt;/th&gt;&lt;td&gt;0.6272691713&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Kurtosis&lt;/th&gt;&lt;td&gt;-1.160130804&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Mean&lt;/th&gt;&lt;td&gt;26883.9062&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Median Absolute Deviation (MAD)&lt;/th&gt;&lt;td&gt;13264&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Skewness&lt;/th&gt;&lt;td&gt;0.2665300704&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Sum&lt;/th&gt;&lt;td&gt;1229293495&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Variance&lt;/th&gt;&lt;td&gt;284375796.4&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Monotocity&lt;/th&gt;&lt;td&gt;Not monotonic&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-6321857870592475507bottom--6321857870592475507histogram&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=288pt version=1.1 viewbox=&quot;0 0 432 288&quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;defs&gt;&lt;style type=text/css&gt;\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" &lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 288 \n",
"L 432 288 \n",
"L 432 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 60.55 237.443457 \n",
"L 408.324321 237.443457 \n",
"L 408.324321 13.449441 \n",
"L 60.55 13.449441 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;defs&gt;&lt;path id=DejaVuSans-48 d=&quot;M 31.78125 66.40625 \n",
"Q 24.171875 66.40625 20.328125 58.90625 \n",
"Q 16.5 51.421875 16.5 36.375 \n",
"Q 16.5 21.390625 20.328125 13.890625 \n",
"Q 24.171875 6.390625 31.78125 6.390625 \n",
"Q 39.453125 6.390625 43.28125 13.890625 \n",
"Q 47.125 21.390625 47.125 36.375 \n",
"Q 47.125 51.421875 43.28125 58.90625 \n",
"Q 39.453125 66.40625 31.78125 66.40625 \n",
"z\n",
"M 31.78125 74.21875 \n",
"Q 44.046875 74.21875 50.515625 64.515625 \n",
"Q 56.984375 54.828125 56.984375 36.375 \n",
"Q 56.984375 17.96875 50.515625 8.265625 \n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \n",
"Q 19.53125 -1.421875 13.0625 8.265625 \n",
"Q 6.59375 17.96875 6.59375 36.375 \n",
"Q 6.59375 54.828125 13.0625 64.515625 \n",
"Q 19.53125 74.21875 31.78125 74.21875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(76.05411 257.815331)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;defs&gt;&lt;path id=DejaVuSans-49 d=&quot;M 12.40625 8.296875 \n",
"L 28.515625 8.296875 \n",
"L 28.515625 63.921875 \n",
"L 10.984375 60.40625 \n",
"L 10.984375 69.390625 \n",
"L 28.421875 72.90625 \n",
"L 38.28125 72.90625 \n",
"L 38.28125 8.296875 \n",
"L 54.390625 8.296875 \n",
"L 54.390625 0 \n",
"L 12.40625 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(122.081408 275.811198)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;defs&gt;&lt;path id=DejaVuSans-50 d=&quot;M 19.1875 8.296875 \n",
"L 53.609375 8.296875 \n",
"L 53.609375 0 \n",
"L 7.328125 0 \n",
"L 7.328125 8.296875 \n",
"Q 12.9375 14.109375 22.625 23.890625 \n",
"Q 32.328125 33.6875 34.8125 36.53125 \n",
"Q 39.546875 41.84375 41.421875 45.53125 \n",
"Q 43.3125 49.21875 43.3125 52.78125 \n",
"Q 43.3125 58.59375 39.234375 62.25 \n",
"Q 35.15625 65.921875 28.609375 65.921875 \n",
"Q 23.96875 65.921875 18.8125 64.3125 \n",
"Q 13.671875 62.703125 7.8125 59.421875 \n",
"L 7.8125 69.390625 \n",
"Q 13.765625 71.78125 18.9375 73 \n",
"Q 24.125 74.21875 28.421875 74.21875 \n",
"Q 39.75 74.21875 46.484375 68.546875 \n",
"Q 53.21875 62.890625 53.21875 53.421875 \n",
"Q 53.21875 48.921875 51.53125 44.890625 \n",
"Q 49.859375 40.875 45.40625 35.40625 \n",
"Q 44.1875 33.984375 37.640625 27.21875 \n",
"Q 31.109375 20.453125 19.1875 8.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(177.10664 275.811198)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;defs&gt;&lt;path id=DejaVuSans-51 d=&quot;M 40.578125 39.3125 \n",
"Q 47.65625 37.796875 51.625 33 \n",
"Q 55.609375 28.21875 55.609375 21.1875 \n",
"Q 55.609375 10.40625 48.1875 4.484375 \n",
"Q 40.765625 -1.421875 27.09375 -1.421875 \n",
"Q 22.515625 -1.421875 17.65625 -0.515625 \n",
"Q 12.796875 0.390625 7.625 2.203125 \n",
"L 7.625 11.71875 \n",
"Q 11.71875 9.328125 16.59375 8.109375 \n",
"Q 21.484375 6.890625 26.8125 6.890625 \n",
"Q 36.078125 6.890625 40.9375 10.546875 \n",
"Q 45.796875 14.203125 45.796875 21.1875 \n",
"Q 45.796875 27.640625 41.28125 31.265625 \n",
"Q 36.765625 34.90625 28.71875 34.90625 \n",
"L 20.21875 34.90625 \n",
"L 20.21875 43.015625 \n",
"L 29.109375 43.015625 \n",
"Q 36.375 43.015625 40.234375 45.921875 \n",
"Q 44.09375 48.828125 44.09375 54.296875 \n",
"Q 44.09375 59.90625 40.109375 62.90625 \n",
"Q 36.140625 65.921875 28.71875 65.921875 \n",
"Q 24.65625 65.921875 20.015625 65.03125 \n",
"Q 15.375 64.15625 9.8125 62.3125 \n",
"L 9.8125 71.09375 \n",
"Q 15.4375 72.65625 20.34375 73.4375 \n",
"Q 25.25 74.21875 29.59375 74.21875 \n",
"Q 40.828125 74.21875 47.359375 69.109375 \n",
"Q 53.90625 64.015625 53.90625 55.328125 \n",
"Q 53.90625 49.265625 50.4375 45.09375 \n",
"Q 46.96875 40.921875 40.578125 39.3125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(232.131872 275.811198)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-51 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;defs&gt;&lt;path id=DejaVuSans-52 d=&quot;M 37.796875 64.3125 \n",
"L 12.890625 25.390625 \n",
"L 37.796875 25.390625 \n",
"z\n",
"M 35.203125 72.90625 \n",
"L 47.609375 72.90625 \n",
"L 47.609375 25.390625 \n",
"L 58.015625 25.390625 \n",
"L 58.015625 17.1875 \n",
"L 47.609375 17.1875 \n",
"L 47.609375 0 \n",
"L 37.796875 0 \n",
"L 37.796875 17.1875 \n",
"L 4.890625 17.1875 \n",
"L 4.890625 26.703125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(287.157103 275.811198)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-52 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_6&gt;&lt;g id=text_6&gt;&lt;defs&gt;&lt;path id=DejaVuSans-53 d=&quot;M 10.796875 72.90625 \n",
"L 49.515625 72.90625 \n",
"L 49.515625 64.59375 \n",
"L 19.828125 64.59375 \n",
"L 19.828125 46.734375 \n",
"Q 21.96875 47.46875 24.109375 47.828125 \n",
"Q 26.265625 48.1875 28.421875 48.1875 \n",
"Q 40.625 48.1875 47.75 41.5 \n",
"Q 54.890625 34.8125 54.890625 23.390625 \n",
"Q 54.890625 11.625 47.5625 5.09375 \n",
"Q 40.234375 -1.421875 26.90625 -1.421875 \n",
"Q 22.3125 -1.421875 17.546875 -0.640625 \n",
"Q 12.796875 0.140625 7.71875 1.703125 \n",
"L 7.71875 11.625 \n",
"Q 12.109375 9.234375 16.796875 8.0625 \n",
"Q 21.484375 6.890625 26.703125 6.890625 \n",
"Q 35.15625 6.890625 40.078125 11.328125 \n",
"Q 45.015625 15.765625 45.015625 23.390625 \n",
"Q 45.015625 31 40.078125 35.4375 \n",
"Q 35.15625 39.890625 26.703125 39.890625 \n",
"Q 22.75 39.890625 18.8125 39.015625 \n",
"Q 14.890625 38.140625 10.796875 36.28125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(342.182335 275.811198)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-53 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_7&gt;&lt;g id=text_7&gt;&lt;defs&gt;&lt;path id=DejaVuSans-54 d=&quot;M 33.015625 40.375 \n",
"Q 26.375 40.375 22.484375 35.828125 \n",
"Q 18.609375 31.296875 18.609375 23.390625 \n",
"Q 18.609375 15.53125 22.484375 10.953125 \n",
"Q 26.375 6.390625 33.015625 6.390625 \n",
"Q 39.65625 6.390625 43.53125 10.953125 \n",
"Q 47.40625 15.53125 47.40625 23.390625 \n",
"Q 47.40625 31.296875 43.53125 35.828125 \n",
"Q 39.65625 40.375 33.015625 40.375 \n",
"z\n",
"M 52.59375 71.296875 \n",
"L 52.59375 62.3125 \n",
"Q 48.875 64.0625 45.09375 64.984375 \n",
"Q 41.3125 65.921875 37.59375 65.921875 \n",
"Q 27.828125 65.921875 22.671875 59.328125 \n",
"Q 17.53125 52.734375 16.796875 39.40625 \n",
"Q 19.671875 43.65625 24.015625 45.921875 \n",
"Q 28.375 48.1875 33.59375 48.1875 \n",
"Q 44.578125 48.1875 50.953125 41.515625 \n",
"Q 57.328125 34.859375 57.328125 23.390625 \n",
"Q 57.328125 12.15625 50.6875 5.359375 \n",
"Q 44.046875 -1.421875 33.015625 -1.421875 \n",
"Q 20.359375 -1.421875 13.671875 8.265625 \n",
"Q 6.984375 17.96875 6.984375 36.375 \n",
"Q 6.984375 53.65625 15.1875 63.9375 \n",
"Q 23.390625 74.21875 37.203125 74.21875 \n",
"Q 40.921875 74.21875 44.703125 73.484375 \n",
"Q 48.484375 72.75 52.59375 71.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(397.207567 275.811198)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-54 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_2&gt;&lt;g id=ytick_1&gt;&lt;g id=text_8&gt;&lt;g style=fill:#262626; transform=&quot;translate(43.6875 241.242676)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_2&gt;&lt;g id=text_9&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.9625 204.142218)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_3&gt;&lt;g id=text_10&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.9625 167.041759)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-52 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_4&gt;&lt;g id=text_11&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.9625 129.941301)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-54 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_5&gt;&lt;g id=text_12&gt;&lt;defs&gt;&lt;path id=DejaVuSans-56 d=&quot;M 31.78125 34.625 \n",
"Q 24.75 34.625 20.71875 30.859375 \n",
"Q 16.703125 27.09375 16.703125 20.515625 \n",
"Q 16.703125 13.921875 20.71875 10.15625 \n",
"Q 24.75 6.390625 31.78125 6.390625 \n",
"Q 38.8125 6.390625 42.859375 10.171875 \n",
"Q 46.921875 13.96875 46.921875 20.515625 \n",
"Q 46.921875 27.09375 42.890625 30.859375 \n",
"Q 38.875 34.625 31.78125 34.625 \n",
"z\n",
"M 21.921875 38.8125 \n",
"Q 15.578125 40.375 12.03125 44.71875 \n",
"Q 8.5 49.078125 8.5 55.328125 \n",
"Q 8.5 64.0625 14.71875 69.140625 \n",
"Q 20.953125 74.21875 31.78125 74.21875 \n",
"Q 42.671875 74.21875 48.875 69.140625 \n",
"Q 55.078125 64.0625 55.078125 55.328125 \n",
"Q 55.078125 49.078125 51.53125 44.71875 \n",
"Q 48 40.375 41.703125 38.8125 \n",
"Q 48.828125 37.15625 52.796875 32.3125 \n",
"Q 56.78125 27.484375 56.78125 20.515625 \n",
"Q 56.78125 9.90625 50.3125 4.234375 \n",
"Q 43.84375 -1.421875 31.78125 -1.421875 \n",
"Q 19.734375 -1.421875 13.25 4.234375 \n",
"Q 6.78125 9.90625 6.78125 20.515625 \n",
"Q 6.78125 27.484375 10.78125 32.3125 \n",
"Q 14.796875 37.15625 21.921875 38.8125 \n",
"z\n",
"M 18.3125 54.390625 \n",
"Q 18.3125 48.734375 21.84375 45.5625 \n",
"Q 25.390625 42.390625 31.78125 42.390625 \n",
"Q 38.140625 42.390625 41.71875 45.5625 \n",
"Q 45.3125 48.734375 45.3125 54.390625 \n",
"Q 45.3125 60.0625 41.71875 63.234375 \n",
"Q 38.140625 66.40625 31.78125 66.40625 \n",
"Q 25.390625 66.40625 21.84375 63.234375 \n",
"Q 18.3125 60.0625 18.3125 54.390625 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.9625 92.840843)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-56 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_6&gt;&lt;g id=text_13&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.6 55.740385)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_7&gt;&lt;g id=text_14&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.6 18.639927)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-50 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_15&gt;&lt;defs&gt;&lt;path id=DejaVuSans-70 d=&quot;M 9.8125 72.90625 \n",
"L 51.703125 72.90625 \n",
"L 51.703125 64.59375 \n",
"L 19.671875 64.59375 \n",
"L 19.671875 43.109375 \n",
"L 48.578125 43.109375 \n",
"L 48.578125 34.8125 \n",
"L 19.671875 34.8125 \n",
"L 19.671875 0 \n",
"L 9.8125 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-114 d=&quot;M 41.109375 46.296875 \n",
"Q 39.59375 47.171875 37.8125 47.578125 \n",
"Q 36.03125 48 33.890625 48 \n",
"Q 26.265625 48 22.1875 43.046875 \n",
"Q 18.109375 38.09375 18.109375 28.8125 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 20.953125 51.171875 25.484375 53.578125 \n",
"Q 30.03125 56 36.53125 56 \n",
"Q 37.453125 56 38.578125 55.875 \n",
"Q 39.703125 55.765625 41.0625 55.515625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-101 d=&quot;M 56.203125 29.59375 \n",
"L 56.203125 25.203125 \n",
"L 14.890625 25.203125 \n",
"Q 15.484375 15.921875 20.484375 11.0625 \n",
"Q 25.484375 6.203125 34.421875 6.203125 \n",
"Q 39.59375 6.203125 44.453125 7.46875 \n",
"Q 49.3125 8.734375 54.109375 11.28125 \n",
"L 54.109375 2.78125 \n",
"Q 49.265625 0.734375 44.1875 -0.34375 \n",
"Q 39.109375 -1.421875 33.890625 -1.421875 \n",
"Q 20.796875 -1.421875 13.15625 6.1875 \n",
"Q 5.515625 13.8125 5.515625 26.8125 \n",
"Q 5.515625 40.234375 12.765625 48.109375 \n",
"Q 20.015625 56 32.328125 56 \n",
"Q 43.359375 56 49.78125 48.890625 \n",
"Q 56.203125 41.796875 56.203125 29.59375 \n",
"z\n",
"M 47.21875 32.234375 \n",
"Q 47.125 39.59375 43.09375 43.984375 \n",
"Q 39.0625 48.390625 32.421875 48.390625 \n",
"Q 24.90625 48.390625 20.390625 44.140625 \n",
"Q 15.875 39.890625 15.1875 32.171875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-113 d=&quot;M 14.796875 27.296875 \n",
"Q 14.796875 17.390625 18.875 11.75 \n",
"Q 22.953125 6.109375 30.078125 6.109375 \n",
"Q 37.203125 6.109375 41.296875 11.75 \n",
"Q 45.40625 17.390625 45.40625 27.296875 \n",
"Q 45.40625 37.203125 41.296875 42.84375 \n",
"Q 37.203125 48.484375 30.078125 48.484375 \n",
"Q 22.953125 48.484375 18.875 42.84375 \n",
"Q 14.796875 37.203125 14.796875 27.296875 \n",
"z\n",
"M 45.40625 8.203125 \n",
"Q 42.578125 3.328125 38.25 0.953125 \n",
"Q 33.9375 -1.421875 27.875 -1.421875 \n",
"Q 17.96875 -1.421875 11.734375 6.484375 \n",
"Q 5.515625 14.40625 5.515625 27.296875 \n",
"Q 5.515625 40.1875 11.734375 48.09375 \n",
"Q 17.96875 56 27.875 56 \n",
"Q 33.9375 56 38.25 53.625 \n",
"Q 42.578125 51.265625 45.40625 46.390625 \n",
"L 45.40625 54.6875 \n",
"L 54.390625 54.6875 \n",
"L 54.390625 -20.796875 \n",
"L 45.40625 -20.796875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-117 d=&quot;M 8.5 21.578125 \n",
"L 8.5 54.6875 \n",
"L 17.484375 54.6875 \n",
"L 17.484375 21.921875 \n",
"Q 17.484375 14.15625 20.5 10.265625 \n",
"Q 23.53125 6.390625 29.59375 6.390625 \n",
"Q 36.859375 6.390625 41.078125 11.03125 \n",
"Q 45.3125 15.671875 45.3125 23.6875 \n",
"L 45.3125 54.6875 \n",
"L 54.296875 54.6875 \n",
"L 54.296875 0 \n",
"L 45.3125 0 \n",
"L 45.3125 8.40625 \n",
"Q 42.046875 3.421875 37.71875 1 \n",
"Q 33.40625 -1.421875 27.6875 -1.421875 \n",
"Q 18.265625 -1.421875 13.375 4.4375 \n",
"Q 8.5 10.296875 8.5 21.578125 \n",
"z\n",
"M 31.109375 56 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-110 d=&quot;M 54.890625 33.015625 \n",
"L 54.890625 0 \n",
"L 45.90625 0 \n",
"L 45.90625 32.71875 \n",
"Q 45.90625 40.484375 42.875 44.328125 \n",
"Q 39.84375 48.1875 33.796875 48.1875 \n",
"Q 26.515625 48.1875 22.3125 43.546875 \n",
"Q 18.109375 38.921875 18.109375 30.90625 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 21.34375 51.125 25.703125 53.5625 \n",
"Q 30.078125 56 35.796875 56 \n",
"Q 45.21875 56 50.046875 50.171875 \n",
"Q 54.890625 44.34375 54.890625 33.015625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-99 d=&quot;M 48.78125 52.59375 \n",
"L 48.78125 44.1875 \n",
"Q 44.96875 46.296875 41.140625 47.34375 \n",
"Q 37.3125 48.390625 33.40625 48.390625 \n",
"Q 24.65625 48.390625 19.8125 42.84375 \n",
"Q 14.984375 37.3125 14.984375 27.296875 \n",
"Q 14.984375 17.28125 19.8125 11.734375 \n",
"Q 24.65625 6.203125 33.40625 6.203125 \n",
"Q 37.3125 6.203125 41.140625 7.25 \n",
"Q 44.96875 8.296875 48.78125 10.40625 \n",
"L 48.78125 2.09375 \n",
"Q 45.015625 0.34375 40.984375 -0.53125 \n",
"Q 36.96875 -1.421875 32.421875 -1.421875 \n",
"Q 20.0625 -1.421875 12.78125 6.34375 \n",
"Q 5.515625 14.109375 5.515625 27.296875 \n",
"Q 5.515625 40.671875 12.859375 48.328125 \n",
"Q 20.21875 56 33.015625 56 \n",
"Q 37.15625 56 41.109375 55.140625 \n",
"Q 45.0625 54.296875 48.78125 52.59375 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-121 d=&quot;M 32.171875 -5.078125 \n",
"Q 28.375 -14.84375 24.75 -17.8125 \n",
"Q 21.140625 -20.796875 15.09375 -20.796875 \n",
"L 7.90625 -20.796875 \n",
"L 7.90625 -13.28125 \n",
"L 13.1875 -13.28125 \n",
"Q 16.890625 -13.28125 18.9375 -11.515625 \n",
"Q 21 -9.765625 23.484375 -3.21875 \n",
"L 25.09375 0.875 \n",
"L 2.984375 54.6875 \n",
"L 12.5 54.6875 \n",
"L 29.59375 11.921875 \n",
"L 46.6875 54.6875 \n",
"L 56.203125 54.6875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(18.312344 153.859105)rotate(-90)scale(0.11 -0.11)&quot;&gt;&lt;use xlink:href=#DejaVuSans-70 /&gt;&lt;use x=50.269531 xlink:href=#DejaVuSans-114 /&gt;&lt;use x=89.132812 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=150.65625 xlink:href=#DejaVuSans-113 /&gt;&lt;use x=214.132812 xlink:href=#DejaVuSans-117 /&gt;&lt;use x=277.511719 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=339.035156 xlink:href=#DejaVuSans-110 /&gt;&lt;use x=402.414062 xlink:href=#DejaVuSans-99 /&gt;&lt;use x=457.394531 xlink:href=#DejaVuSans-121 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 76.357924 237.443457 \n",
"L 82.681093 237.443457 \n",
"L 82.681093 24.115823 \n",
"L 76.357924 24.115823 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 82.681093 237.443457 \n",
"L 89.004263 237.443457 \n",
"L 89.004263 38.956006 \n",
"L 82.681093 38.956006 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 89.004263 237.443457 \n",
"L 95.327432 237.443457 \n",
"L 95.327432 163.799048 \n",
"L 89.004263 163.799048 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 95.327432 237.443457 \n",
"L 101.650602 237.443457 \n",
"L 101.650602 61.95829 \n",
"L 95.327432 61.95829 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 101.650602 237.443457 \n",
"L 107.973771 237.443457 \n",
"L 107.973771 45.263084 \n",
"L 101.650602 45.263084 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 107.973771 237.443457 \n",
"L 114.296941 237.443457 \n",
"L 114.296941 28.196873 \n",
"L 107.973771 28.196873 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_9&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 114.296941 237.443457 \n",
"L 120.62011 237.443457 \n",
"L 120.62011 25.785343 \n",
"L 114.296941 25.785343 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_10&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 120.62011 237.443457 \n",
"L 126.943279 237.443457 \n",
"L 126.943279 24.115823 \n",
"L 120.62011 24.115823 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_11&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 126.943279 237.443457 \n",
"L 133.266449 237.443457 \n",
"L 133.266449 25.785343 \n",
"L 126.943279 25.785343 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_12&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 133.266449 237.443457 \n",
"L 139.589618 237.443457 \n",
"L 139.589618 29.495389 \n",
"L 133.266449 29.495389 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_13&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 139.589618 237.443457 \n",
"L 145.912788 237.443457 \n",
"L 145.912788 31.16491 \n",
"L 139.589618 31.16491 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_14&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 145.912788 237.443457 \n",
"L 152.235957 237.443457 \n",
"L 152.235957 25.228836 \n",
"L 145.912788 25.228836 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_15&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 152.235957 237.443457 \n",
"L 158.559127 237.443457 \n",
"L 158.559127 25.599841 \n",
"L 152.235957 25.599841 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_16&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 158.559127 237.443457 \n",
"L 164.882296 237.443457 \n",
"L 164.882296 26.898357 \n",
"L 158.559127 26.898357 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_17&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 164.882296 237.443457 \n",
"L 171.205466 237.443457 \n",
"L 171.205466 28.382375 \n",
"L 164.882296 28.382375 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_18&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 171.205466 237.443457 \n",
"L 177.528635 237.443457 \n",
"L 177.528635 27.269362 \n",
"L 171.205466 27.269362 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_19&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 177.528635 237.443457 \n",
"L 183.851805 237.443457 \n",
"L 183.851805 26.712855 \n",
"L 177.528635 26.712855 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_20&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 183.851805 237.443457 \n",
"L 190.174974 237.443457 \n",
"L 190.174974 24.301325 \n",
"L 183.851805 24.301325 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_21&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 190.174974 237.443457 \n",
"L 196.498144 237.443457 \n",
"L 196.498144 24.301325 \n",
"L 190.174974 24.301325 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_22&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 196.498144 237.443457 \n",
"L 202.821313 237.443457 \n",
"L 202.821313 25.043334 \n",
"L 196.498144 25.043334 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_23&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 202.821313 237.443457 \n",
"L 209.144483 237.443457 \n",
"L 209.144483 34.503951 \n",
"L 202.821313 34.503951 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_24&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 209.144483 237.443457 \n",
"L 215.467652 237.443457 \n",
"L 215.467652 26.898357 \n",
"L 209.144483 26.898357 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_25&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 215.467652 237.443457 \n",
"L 221.790822 237.443457 \n",
"L 221.790822 56.764226 \n",
"L 215.467652 56.764226 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_26&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 221.790822 237.443457 \n",
"L 228.113991 237.443457 \n",
"L 228.113991 68.636372 \n",
"L 221.790822 68.636372 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_27&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 228.113991 237.443457 \n",
"L 234.43716 237.443457 \n",
"L 234.43716 85.517081 \n",
"L 228.113991 85.517081 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_28&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 234.43716 237.443457 \n",
"L 240.76033 237.443457 \n",
"L 240.76033 33.205435 \n",
"L 234.43716 33.205435 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_29&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 240.76033 237.443457 \n",
"L 247.083499 237.443457 \n",
"L 247.083499 48.97313 \n",
"L 240.76033 48.97313 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_30&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 247.083499 237.443457 \n",
"L 253.406669 237.443457 \n",
"L 253.406669 162.129527 \n",
"L 247.083499 162.129527 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_31&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 253.406669 237.443457 \n",
"L 259.729838 237.443457 \n",
"L 259.729838 115.197447 \n",
"L 253.406669 115.197447 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_32&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 259.729838 237.443457 \n",
"L 266.053008 237.443457 \n",
"L 266.053008 134.304183 \n",
"L 259.729838 134.304183 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_33&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 266.053008 237.443457 \n",
"L 272.376177 237.443457 \n",
"L 272.376177 67.152354 \n",
"L 266.053008 67.152354 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_34&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 272.376177 237.443457 \n",
"L 278.699347 237.443457 \n",
"L 278.699347 41.367536 \n",
"L 272.376177 41.367536 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_35&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 278.699347 237.443457 \n",
"L 285.022516 237.443457 \n",
"L 285.022516 148.958864 \n",
"L 278.699347 148.958864 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_36&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 285.022516 237.443457 \n",
"L 291.345686 237.443457 \n",
"L 291.345686 130.965142 \n",
"L 285.022516 130.965142 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_37&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 291.345686 237.443457 \n",
"L 297.668855 237.443457 \n",
"L 297.668855 122.432037 \n",
"L 291.345686 122.432037 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_38&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 297.668855 237.443457 \n",
"L 303.992025 237.443457 \n",
"L 303.992025 164.726559 \n",
"L 297.668855 164.726559 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_39&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 303.992025 237.443457 \n",
"L 310.315194 237.443457 \n",
"L 310.315194 237.443457 \n",
"L 303.992025 237.443457 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_40&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 310.315194 237.443457 \n",
"L 316.638364 237.443457 \n",
"L 316.638364 237.257955 \n",
"L 310.315194 237.257955 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_41&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 316.638364 237.443457 \n",
"L 322.961533 237.443457 \n",
"L 322.961533 149.886376 \n",
"L 316.638364 149.886376 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_42&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 322.961533 237.443457 \n",
"L 329.284703 237.443457 \n",
"L 329.284703 49.529637 \n",
"L 322.961533 49.529637 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_43&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 329.284703 237.443457 \n",
"L 335.607872 237.443457 \n",
"L 335.607872 30.608403 \n",
"L 329.284703 30.608403 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_44&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 335.607872 237.443457 \n",
"L 341.931042 237.443457 \n",
"L 341.931042 51.013655 \n",
"L 335.607872 51.013655 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_45&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 341.931042 237.443457 \n",
"L 348.254211 237.443457 \n",
"L 348.254211 74.201441 \n",
"L 341.931042 74.201441 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_46&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 348.254211 237.443457 \n",
"L 354.57738 237.443457 \n",
"L 354.57738 31.350412 \n",
"L 348.254211 31.350412 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_47&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 354.57738 237.443457 \n",
"L 360.90055 237.443457 \n",
"L 360.90055 54.538198 \n",
"L 354.57738 54.538198 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_48&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 360.90055 237.443457 \n",
"L 367.223719 237.443457 \n",
"L 367.223719 92.566168 \n",
"L 360.90055 92.566168 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_49&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 367.223719 237.443457 \n",
"L 373.546889 237.443457 \n",
"L 373.546889 64.36982 \n",
"L 367.223719 64.36982 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_50&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 373.546889 237.443457 \n",
"L 379.870058 237.443457 \n",
"L 379.870058 47.489111 \n",
"L 373.546889 47.489111 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_51&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 379.870058 237.443457 \n",
"L 386.193228 237.443457 \n",
"L 386.193228 48.97313 \n",
"L 379.870058 48.97313 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_52&gt;&lt;path clip-path=url(#p3d84330911) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 386.193228 237.443457 \n",
"L 392.516397 237.443457 \n",
"L 392.516397 46.5616 \n",
"L 386.193228 46.5616 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_53&gt;&lt;path style=fill:none; d=&quot;M 60.55 237.443457 \n",
"L 60.55 13.449441 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_54&gt;&lt;path style=fill:none; d=&quot;M 408.324321 237.443457 \n",
"L 408.324321 13.449441 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_55&gt;&lt;path style=fill:none; d=&quot;M 60.55 237.443457 \n",
"L 408.324321 237.443457 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_56&gt;&lt;path style=fill:none; d=&quot;M 60.55 13.449441 \n",
"L 408.324321 13.449441 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=p3d84330911&gt;&lt;rect height=223.994016 width=347.774321 x=60.55 y=13.449441 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt;&lt;strong&gt;Histogram with fixed size bins&lt;/strong&gt; (bins=50) &lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-6321857870592475507bottom--6321857870592475507common_values&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=417&gt;417&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=398&gt;398&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=6&gt;6&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=392&gt;392&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=370&gt;370&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=379&gt;379&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=2&gt;2&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=390&gt;390&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=10&gt;10&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;td title=&quot;Other values (45706)&quot;&gt;Other values (45706)&lt;/td&gt;&lt;td&gt;45706&lt;/td&gt;&lt;td&gt;&gt; 99.9%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-6321857870592475507bottom--6321857870592475507extreme_values&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#-6321857870592475507extreme_values--6321857870592475507firstn aria-controls=-6321857870592475507extreme_values--6321857870592475507firstn role=tab data-toggle=tab&gt;Minimum 5 values&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-6321857870592475507extreme_values--6321857870592475507lastn aria-controls=-6321857870592475507extreme_values--6321857870592475507lastn role=tab data-toggle=tab&gt;Maximum 5 values&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=-6321857870592475507extreme_values--6321857870592475507firstn&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=1&gt;1&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=2&gt;2&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=4&gt;4&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:50.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=5&gt;5&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:50.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=6&gt;6&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-6321857870592475507extreme_values--6321857870592475507lastn&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=57458&gt;57458&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=57457&gt;57457&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=57456&gt;57456&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=57455&gt;57455&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=57454&gt;57454&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;a class=&quot;anchor-pos anchor-pos-variable&quot; id=pp_var_-88400781667047614&gt;&lt;/a&gt;&lt;div class=variable&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4 title=nametype&gt;&lt;a href=#pp_var_-88400781667047614&gt;nametype&lt;/a&gt;&lt;br&gt;&lt;small&gt;Categorical&lt;/small&gt;&lt;/p&gt;&lt;p class=variable-description&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Distinct&lt;/th&gt;&lt;td&gt;2&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct (%)&lt;/th&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Memory size&lt;/th&gt;&lt;td&gt;357.2 KiB&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;div class=&quot;col-sm- collapse in&quot; id=minifreqtable&gt;&lt;table class=&quot;mini freq&quot;&gt;&lt;tr class&gt;&lt;th width=50%&gt; Valid &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:100.0% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; 45651&amp;nbsp; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; Relict &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:0.2% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; &amp;nbsp; &lt;/div&gt; 75 &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;col-sm-12 text-right&quot;&gt;&lt;button class=&quot;btn btn-default btn-sm&quot; data-toggle=collapse data-target=&quot;#bottom--88400781667047614, #minifreqtable-88400781667047614&quot; aria-expanded=true aria-controls=collapseExample&gt;Toggle details&lt;/button&gt;&lt;/div&gt;&lt;div id=bottom--88400781667047614 class=collapse&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#-88400781667047614bottom--88400781667047614frequencies aria-controls=-88400781667047614bottom--88400781667047614frequencies role=tab data-toggle=tab&gt;Frequencies&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-88400781667047614bottom--88400781667047614tbl aria-controls=-88400781667047614bottom--88400781667047614tbl role=tab data-toggle=tab&gt;Length&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=-88400781667047614bottom--88400781667047614frequencies&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#-88400781667047614frequencies--88400781667047614common_values aria-controls=-88400781667047614frequencies--88400781667047614common_values role=tab data-toggle=tab&gt;Common Values&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-88400781667047614frequencies--88400781667047614tbl aria-controls=-88400781667047614frequencies--88400781667047614tbl role=tab data-toggle=tab&gt;Overview&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-88400781667047614frequencies--88400781667047614pie_chart aria-controls=-88400781667047614frequencies--88400781667047614pie_chart role=tab data-toggle=tab&gt;Chart&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=-88400781667047614frequencies--88400781667047614common_values&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=Valid&gt;Valid&lt;/td&gt;&lt;td&gt;45651&lt;/td&gt;&lt;td&gt;99.8%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=Relict&gt;Relict&lt;/td&gt;&lt;td&gt;75&lt;/td&gt;&lt;td&gt;0.2%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.2%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-88400781667047614frequencies--88400781667047614tbl&gt;&lt;div class=col-sm-6&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=288pt version=1.1 viewbox=&quot;0 0 432 288&quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;defs&gt;&lt;style type=text/css&gt;\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" &lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 288 \n",
"L 432 288 \n",
"L 432 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 51.175 237.443457 \n",
"L 421.2 237.443457 \n",
"L 421.2 10.8 \n",
"L 51.175 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;defs&gt;&lt;path id=DejaVuSans-48 d=&quot;M 31.78125 66.40625 \n",
"Q 24.171875 66.40625 20.328125 58.90625 \n",
"Q 16.5 51.421875 16.5 36.375 \n",
"Q 16.5 21.390625 20.328125 13.890625 \n",
"Q 24.171875 6.390625 31.78125 6.390625 \n",
"Q 39.453125 6.390625 43.28125 13.890625 \n",
"Q 47.125 21.390625 47.125 36.375 \n",
"Q 47.125 51.421875 43.28125 58.90625 \n",
"Q 39.453125 66.40625 31.78125 66.40625 \n",
"z\n",
"M 31.78125 74.21875 \n",
"Q 44.046875 74.21875 50.515625 64.515625 \n",
"Q 56.984375 54.828125 56.984375 36.375 \n",
"Q 56.984375 17.96875 50.515625 8.265625 \n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \n",
"Q 19.53125 -1.421875 13.0625 8.265625 \n",
"Q 6.59375 17.96875 6.59375 36.375 \n",
"Q 6.59375 54.828125 13.0625 64.515625 \n",
"Q 19.53125 74.21875 31.78125 74.21875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(67.142449 257.815331)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;defs&gt;&lt;path id=DejaVuSans-49 d=&quot;M 12.40625 8.296875 \n",
"L 28.515625 8.296875 \n",
"L 28.515625 63.921875 \n",
"L 10.984375 60.40625 \n",
"L 10.984375 69.390625 \n",
"L 28.421875 72.90625 \n",
"L 38.28125 72.90625 \n",
"L 38.28125 8.296875 \n",
"L 54.390625 8.296875 \n",
"L 54.390625 0 \n",
"L 12.40625 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(131.952301 275.811198)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;defs&gt;&lt;path id=DejaVuSans-50 d=&quot;M 19.1875 8.296875 \n",
"L 53.609375 8.296875 \n",
"L 53.609375 0 \n",
"L 7.328125 0 \n",
"L 7.328125 8.296875 \n",
"Q 12.9375 14.109375 22.625 23.890625 \n",
"Q 32.328125 33.6875 34.8125 36.53125 \n",
"Q 39.546875 41.84375 41.421875 45.53125 \n",
"Q 43.3125 49.21875 43.3125 52.78125 \n",
"Q 43.3125 58.59375 39.234375 62.25 \n",
"Q 35.15625 65.921875 28.609375 65.921875 \n",
"Q 23.96875 65.921875 18.8125 64.3125 \n",
"Q 13.671875 62.703125 7.8125 59.421875 \n",
"L 7.8125 69.390625 \n",
"Q 13.765625 71.78125 18.9375 73 \n",
"Q 24.125 74.21875 28.421875 74.21875 \n",
"Q 39.75 74.21875 46.484375 68.546875 \n",
"Q 53.21875 62.890625 53.21875 53.421875 \n",
"Q 53.21875 48.921875 51.53125 44.890625 \n",
"Q 49.859375 40.875 45.40625 35.40625 \n",
"Q 44.1875 33.984375 37.640625 27.21875 \n",
"Q 31.109375 20.453125 19.1875 8.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(205.760087 275.811198)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;defs&gt;&lt;path id=DejaVuSans-51 d=&quot;M 40.578125 39.3125 \n",
"Q 47.65625 37.796875 51.625 33 \n",
"Q 55.609375 28.21875 55.609375 21.1875 \n",
"Q 55.609375 10.40625 48.1875 4.484375 \n",
"Q 40.765625 -1.421875 27.09375 -1.421875 \n",
"Q 22.515625 -1.421875 17.65625 -0.515625 \n",
"Q 12.796875 0.390625 7.625 2.203125 \n",
"L 7.625 11.71875 \n",
"Q 11.71875 9.328125 16.59375 8.109375 \n",
"Q 21.484375 6.890625 26.8125 6.890625 \n",
"Q 36.078125 6.890625 40.9375 10.546875 \n",
"Q 45.796875 14.203125 45.796875 21.1875 \n",
"Q 45.796875 27.640625 41.28125 31.265625 \n",
"Q 36.765625 34.90625 28.71875 34.90625 \n",
"L 20.21875 34.90625 \n",
"L 20.21875 43.015625 \n",
"L 29.109375 43.015625 \n",
"Q 36.375 43.015625 40.234375 45.921875 \n",
"Q 44.09375 48.828125 44.09375 54.296875 \n",
"Q 44.09375 59.90625 40.109375 62.90625 \n",
"Q 36.140625 65.921875 28.71875 65.921875 \n",
"Q 24.65625 65.921875 20.015625 65.03125 \n",
"Q 15.375 64.15625 9.8125 62.3125 \n",
"L 9.8125 71.09375 \n",
"Q 15.4375 72.65625 20.34375 73.4375 \n",
"Q 25.25 74.21875 29.59375 74.21875 \n",
"Q 40.828125 74.21875 47.359375 69.109375 \n",
"Q 53.90625 64.015625 53.90625 55.328125 \n",
"Q 53.90625 49.265625 50.4375 45.09375 \n",
"Q 46.96875 40.921875 40.578125 39.3125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(279.567872 275.811198)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-51 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;defs&gt;&lt;path id=DejaVuSans-52 d=&quot;M 37.796875 64.3125 \n",
"L 12.890625 25.390625 \n",
"L 37.796875 25.390625 \n",
"z\n",
"M 35.203125 72.90625 \n",
"L 47.609375 72.90625 \n",
"L 47.609375 25.390625 \n",
"L 58.015625 25.390625 \n",
"L 58.015625 17.1875 \n",
"L 47.609375 17.1875 \n",
"L 47.609375 0 \n",
"L 37.796875 0 \n",
"L 37.796875 17.1875 \n",
"L 4.890625 17.1875 \n",
"L 4.890625 26.703125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(353.375658 275.811198)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-52 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_2&gt;&lt;g id=ytick_1&gt;&lt;g id=text_6&gt;&lt;defs&gt;&lt;path id=DejaVuSans-46 d=&quot;M 10.6875 12.40625 \n",
"L 21 12.40625 \n",
"L 21 0 \n",
"L 10.6875 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.771875 241.242676)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_2&gt;&lt;g id=text_7&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.771875 198.072493)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-50 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_3&gt;&lt;g id=text_8&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.771875 154.902311)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-52 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_4&gt;&lt;g id=text_9&gt;&lt;defs&gt;&lt;path id=DejaVuSans-54 d=&quot;M 33.015625 40.375 \n",
"Q 26.375 40.375 22.484375 35.828125 \n",
"Q 18.609375 31.296875 18.609375 23.390625 \n",
"Q 18.609375 15.53125 22.484375 10.953125 \n",
"Q 26.375 6.390625 33.015625 6.390625 \n",
"Q 39.65625 6.390625 43.53125 10.953125 \n",
"Q 47.40625 15.53125 47.40625 23.390625 \n",
"Q 47.40625 31.296875 43.53125 35.828125 \n",
"Q 39.65625 40.375 33.015625 40.375 \n",
"z\n",
"M 52.59375 71.296875 \n",
"L 52.59375 62.3125 \n",
"Q 48.875 64.0625 45.09375 64.984375 \n",
"Q 41.3125 65.921875 37.59375 65.921875 \n",
"Q 27.828125 65.921875 22.671875 59.328125 \n",
"Q 17.53125 52.734375 16.796875 39.40625 \n",
"Q 19.671875 43.65625 24.015625 45.921875 \n",
"Q 28.375 48.1875 33.59375 48.1875 \n",
"Q 44.578125 48.1875 50.953125 41.515625 \n",
"Q 57.328125 34.859375 57.328125 23.390625 \n",
"Q 57.328125 12.15625 50.6875 5.359375 \n",
"Q 44.046875 -1.421875 33.015625 -1.421875 \n",
"Q 20.359375 -1.421875 13.671875 8.265625 \n",
"Q 6.984375 17.96875 6.984375 36.375 \n",
"Q 6.984375 53.65625 15.1875 63.9375 \n",
"Q 23.390625 74.21875 37.203125 74.21875 \n",
"Q 40.921875 74.21875 44.703125 73.484375 \n",
"Q 48.484375 72.75 52.59375 71.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.771875 111.732129)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-54 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_5&gt;&lt;g id=text_10&gt;&lt;defs&gt;&lt;path id=DejaVuSans-56 d=&quot;M 31.78125 34.625 \n",
"Q 24.75 34.625 20.71875 30.859375 \n",
"Q 16.703125 27.09375 16.703125 20.515625 \n",
"Q 16.703125 13.921875 20.71875 10.15625 \n",
"Q 24.75 6.390625 31.78125 6.390625 \n",
"Q 38.8125 6.390625 42.859375 10.171875 \n",
"Q 46.921875 13.96875 46.921875 20.515625 \n",
"Q 46.921875 27.09375 42.890625 30.859375 \n",
"Q 38.875 34.625 31.78125 34.625 \n",
"z\n",
"M 21.921875 38.8125 \n",
"Q 15.578125 40.375 12.03125 44.71875 \n",
"Q 8.5 49.078125 8.5 55.328125 \n",
"Q 8.5 64.0625 14.71875 69.140625 \n",
"Q 20.953125 74.21875 31.78125 74.21875 \n",
"Q 42.671875 74.21875 48.875 69.140625 \n",
"Q 55.078125 64.0625 55.078125 55.328125 \n",
"Q 55.078125 49.078125 51.53125 44.71875 \n",
"Q 48 40.375 41.703125 38.8125 \n",
"Q 48.828125 37.15625 52.796875 32.3125 \n",
"Q 56.78125 27.484375 56.78125 20.515625 \n",
"Q 56.78125 9.90625 50.3125 4.234375 \n",
"Q 43.84375 -1.421875 31.78125 -1.421875 \n",
"Q 19.734375 -1.421875 13.25 4.234375 \n",
"Q 6.78125 9.90625 6.78125 20.515625 \n",
"Q 6.78125 27.484375 10.78125 32.3125 \n",
"Q 14.796875 37.15625 21.921875 38.8125 \n",
"z\n",
"M 18.3125 54.390625 \n",
"Q 18.3125 48.734375 21.84375 45.5625 \n",
"Q 25.390625 42.390625 31.78125 42.390625 \n",
"Q 38.140625 42.390625 41.71875 45.5625 \n",
"Q 45.3125 48.734375 45.3125 54.390625 \n",
"Q 45.3125 60.0625 41.71875 63.234375 \n",
"Q 38.140625 66.40625 31.78125 66.40625 \n",
"Q 25.390625 66.40625 21.84375 63.234375 \n",
"Q 18.3125 60.0625 18.3125 54.390625 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.771875 68.561947)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-56 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_6&gt;&lt;g id=text_11&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.771875 25.391764)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_12&gt;&lt;defs&gt;&lt;path id=DejaVuSans-70 d=&quot;M 9.8125 72.90625 \n",
"L 51.703125 72.90625 \n",
"L 51.703125 64.59375 \n",
"L 19.671875 64.59375 \n",
"L 19.671875 43.109375 \n",
"L 48.578125 43.109375 \n",
"L 48.578125 34.8125 \n",
"L 19.671875 34.8125 \n",
"L 19.671875 0 \n",
"L 9.8125 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-114 d=&quot;M 41.109375 46.296875 \n",
"Q 39.59375 47.171875 37.8125 47.578125 \n",
"Q 36.03125 48 33.890625 48 \n",
"Q 26.265625 48 22.1875 43.046875 \n",
"Q 18.109375 38.09375 18.109375 28.8125 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 20.953125 51.171875 25.484375 53.578125 \n",
"Q 30.03125 56 36.53125 56 \n",
"Q 37.453125 56 38.578125 55.875 \n",
"Q 39.703125 55.765625 41.0625 55.515625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-101 d=&quot;M 56.203125 29.59375 \n",
"L 56.203125 25.203125 \n",
"L 14.890625 25.203125 \n",
"Q 15.484375 15.921875 20.484375 11.0625 \n",
"Q 25.484375 6.203125 34.421875 6.203125 \n",
"Q 39.59375 6.203125 44.453125 7.46875 \n",
"Q 49.3125 8.734375 54.109375 11.28125 \n",
"L 54.109375 2.78125 \n",
"Q 49.265625 0.734375 44.1875 -0.34375 \n",
"Q 39.109375 -1.421875 33.890625 -1.421875 \n",
"Q 20.796875 -1.421875 13.15625 6.1875 \n",
"Q 5.515625 13.8125 5.515625 26.8125 \n",
"Q 5.515625 40.234375 12.765625 48.109375 \n",
"Q 20.015625 56 32.328125 56 \n",
"Q 43.359375 56 49.78125 48.890625 \n",
"Q 56.203125 41.796875 56.203125 29.59375 \n",
"z\n",
"M 47.21875 32.234375 \n",
"Q 47.125 39.59375 43.09375 43.984375 \n",
"Q 39.0625 48.390625 32.421875 48.390625 \n",
"Q 24.90625 48.390625 20.390625 44.140625 \n",
"Q 15.875 39.890625 15.1875 32.171875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-113 d=&quot;M 14.796875 27.296875 \n",
"Q 14.796875 17.390625 18.875 11.75 \n",
"Q 22.953125 6.109375 30.078125 6.109375 \n",
"Q 37.203125 6.109375 41.296875 11.75 \n",
"Q 45.40625 17.390625 45.40625 27.296875 \n",
"Q 45.40625 37.203125 41.296875 42.84375 \n",
"Q 37.203125 48.484375 30.078125 48.484375 \n",
"Q 22.953125 48.484375 18.875 42.84375 \n",
"Q 14.796875 37.203125 14.796875 27.296875 \n",
"z\n",
"M 45.40625 8.203125 \n",
"Q 42.578125 3.328125 38.25 0.953125 \n",
"Q 33.9375 -1.421875 27.875 -1.421875 \n",
"Q 17.96875 -1.421875 11.734375 6.484375 \n",
"Q 5.515625 14.40625 5.515625 27.296875 \n",
"Q 5.515625 40.1875 11.734375 48.09375 \n",
"Q 17.96875 56 27.875 56 \n",
"Q 33.9375 56 38.25 53.625 \n",
"Q 42.578125 51.265625 45.40625 46.390625 \n",
"L 45.40625 54.6875 \n",
"L 54.390625 54.6875 \n",
"L 54.390625 -20.796875 \n",
"L 45.40625 -20.796875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-117 d=&quot;M 8.5 21.578125 \n",
"L 8.5 54.6875 \n",
"L 17.484375 54.6875 \n",
"L 17.484375 21.921875 \n",
"Q 17.484375 14.15625 20.5 10.265625 \n",
"Q 23.53125 6.390625 29.59375 6.390625 \n",
"Q 36.859375 6.390625 41.078125 11.03125 \n",
"Q 45.3125 15.671875 45.3125 23.6875 \n",
"L 45.3125 54.6875 \n",
"L 54.296875 54.6875 \n",
"L 54.296875 0 \n",
"L 45.3125 0 \n",
"L 45.3125 8.40625 \n",
"Q 42.046875 3.421875 37.71875 1 \n",
"Q 33.40625 -1.421875 27.6875 -1.421875 \n",
"Q 18.265625 -1.421875 13.375 4.4375 \n",
"Q 8.5 10.296875 8.5 21.578125 \n",
"z\n",
"M 31.109375 56 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-110 d=&quot;M 54.890625 33.015625 \n",
"L 54.890625 0 \n",
"L 45.90625 0 \n",
"L 45.90625 32.71875 \n",
"Q 45.90625 40.484375 42.875 44.328125 \n",
"Q 39.84375 48.1875 33.796875 48.1875 \n",
"Q 26.515625 48.1875 22.3125 43.546875 \n",
"Q 18.109375 38.921875 18.109375 30.90625 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 21.34375 51.125 25.703125 53.5625 \n",
"Q 30.078125 56 35.796875 56 \n",
"Q 45.21875 56 50.046875 50.171875 \n",
"Q 54.890625 44.34375 54.890625 33.015625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-99 d=&quot;M 48.78125 52.59375 \n",
"L 48.78125 44.1875 \n",
"Q 44.96875 46.296875 41.140625 47.34375 \n",
"Q 37.3125 48.390625 33.40625 48.390625 \n",
"Q 24.65625 48.390625 19.8125 42.84375 \n",
"Q 14.984375 37.3125 14.984375 27.296875 \n",
"Q 14.984375 17.28125 19.8125 11.734375 \n",
"Q 24.65625 6.203125 33.40625 6.203125 \n",
"Q 37.3125 6.203125 41.140625 7.25 \n",
"Q 44.96875 8.296875 48.78125 10.40625 \n",
"L 48.78125 2.09375 \n",
"Q 45.015625 0.34375 40.984375 -0.53125 \n",
"Q 36.96875 -1.421875 32.421875 -1.421875 \n",
"Q 20.0625 -1.421875 12.78125 6.34375 \n",
"Q 5.515625 14.109375 5.515625 27.296875 \n",
"Q 5.515625 40.671875 12.859375 48.328125 \n",
"Q 20.21875 56 33.015625 56 \n",
"Q 37.15625 56 41.109375 55.140625 \n",
"Q 45.0625 54.296875 48.78125 52.59375 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-121 d=&quot;M 32.171875 -5.078125 \n",
"Q 28.375 -14.84375 24.75 -17.8125 \n",
"Q 21.140625 -20.796875 15.09375 -20.796875 \n",
"L 7.90625 -20.796875 \n",
"L 7.90625 -13.28125 \n",
"L 13.1875 -13.28125 \n",
"Q 16.890625 -13.28125 18.9375 -11.515625 \n",
"Q 21 -9.765625 23.484375 -3.21875 \n",
"L 25.09375 0.875 \n",
"L 2.984375 54.6875 \n",
"L 12.5 54.6875 \n",
"L 29.59375 11.921875 \n",
"L 46.6875 54.6875 \n",
"L 56.203125 54.6875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(18.484219 152.534385)rotate(-90)scale(0.11 -0.11)&quot;&gt;&lt;use xlink:href=#DejaVuSans-70 /&gt;&lt;use x=50.269531 xlink:href=#DejaVuSans-114 /&gt;&lt;use x=89.132812 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=150.65625 xlink:href=#DejaVuSans-113 /&gt;&lt;use x=214.132812 xlink:href=#DejaVuSans-117 /&gt;&lt;use x=277.511719 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=339.035156 xlink:href=#DejaVuSans-110 /&gt;&lt;use x=402.414062 xlink:href=#DejaVuSans-99 /&gt;&lt;use x=457.394531 xlink:href=#DejaVuSans-121 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#p190bb687bc) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 67.994318 237.443457 \n",
"L 236.1875 237.443457 \n",
"L 236.1875 21.592546 \n",
"L 67.994318 21.592546 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#p190bb687bc) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 236.1875 237.443457 \n",
"L 404.380682 237.443457 \n",
"L 404.380682 21.592546 \n",
"L 236.1875 21.592546 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path style=fill:none; d=&quot;M 51.175 237.443457 \n",
"L 51.175 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path style=fill:none; d=&quot;M 421.2 237.443457 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path style=fill:none; d=&quot;M 51.175 237.443457 \n",
"L 421.2 237.443457 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path style=fill:none; d=&quot;M 51.175 10.8 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=p190bb687bc&gt;&lt;rect height=226.643457 width=370.025 x=51.175 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt; Frequencies of value counts &lt;/div&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Unique&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Unique&lt;/th&gt;&lt;td&gt;0 &lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;The number of unique values (all values that occur exactly once in the dataset).&quot;&gt;?&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Unique (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-88400781667047614frequencies--88400781667047614pie_chart&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=396pt version=1.1 viewbox=&quot;0 0 576 396&quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;defs&gt;&lt;style type=text/css&gt;\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" &lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 396 \n",
"L 576 396 \n",
"L 576 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=matplotlib.axis_1 /&gt;&lt;g id=matplotlib.axis_2 /&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#1f77b4;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 414.792 197.01 \n",
"C 414.792 181.331245 411.708725 165.804441 405.718056 151.315299 \n",
"C 399.727388 136.826156 390.945444 123.655519 379.873181 112.554693 \n",
"C 368.800917 101.453866 355.652951 92.638018 341.17929 86.610039 \n",
"C 326.70563 80.58206 311.186822 77.458792 295.508119 77.418397 \n",
"C 279.829416 77.378002 264.29472 80.421263 249.790191 86.374582 \n",
"C 235.285662 92.327901 222.092443 101.075882 210.963126 112.119508 \n",
"C 199.83381 123.163134 190.984117 136.288344 184.918868 150.746426 \n",
"C 178.853619 165.204507 175.690377 180.715217 175.609588 196.393764 \n",
"C 175.528798 212.072311 178.532025 227.614796 184.447955 242.134615 \n",
"C 190.363884 256.654434 199.077845 269.870148 210.092761 281.027881 \n",
"C 221.107676 292.185613 234.210042 301.069093 248.652449 307.171572 \n",
"C 263.094856 313.274051 278.597364 316.477244 294.275651 316.598428 \n",
"C 309.953938 316.719612 325.504109 313.756438 340.039122 307.877938 \n",
"C 354.574135 301.999437 367.812255 293.319554 378.99833 282.333422 \n",
"C 390.184405 271.34729 399.101612 258.267855 405.24128 243.841219 \n",
"C 411.380949 229.414582 414.624072 213.920378 414.785649 198.242456 \n",
"L 295.2 197.01 \n",
"L 414.792 197.01 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path style=fill:#ff7f0e;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 414.785649 198.242456 \n",
"C 414.787766 198.037053 414.789354 197.831645 414.790412 197.626234 \n",
"C 414.791471 197.420824 414.792 197.21541 414.792 197.009997 \n",
"L 295.2 197.01 \n",
"L 414.785649 198.242456 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=text_1&gt;&lt;defs&gt;&lt;path id=DejaVuSans-57 d=&quot;M 10.984375 1.515625 \n",
"L 10.984375 10.5 \n",
"Q 14.703125 8.734375 18.5 7.8125 \n",
"Q 22.3125 6.890625 25.984375 6.890625 \n",
"Q 35.75 6.890625 40.890625 13.453125 \n",
"Q 46.046875 20.015625 46.78125 33.40625 \n",
"Q 43.953125 29.203125 39.59375 26.953125 \n",
"Q 35.25 24.703125 29.984375 24.703125 \n",
"Q 19.046875 24.703125 12.671875 31.3125 \n",
"Q 6.296875 37.9375 6.296875 49.421875 \n",
"Q 6.296875 60.640625 12.9375 67.421875 \n",
"Q 19.578125 74.21875 30.609375 74.21875 \n",
"Q 43.265625 74.21875 49.921875 64.515625 \n",
"Q 56.59375 54.828125 56.59375 36.375 \n",
"Q 56.59375 19.140625 48.40625 8.859375 \n",
"Q 40.234375 -1.421875 26.421875 -1.421875 \n",
"Q 22.703125 -1.421875 18.890625 -0.6875 \n",
"Q 15.09375 0.046875 10.984375 1.515625 \n",
"z\n",
"M 30.609375 32.421875 \n",
"Q 37.25 32.421875 41.125 36.953125 \n",
"Q 45.015625 41.5 45.015625 49.421875 \n",
"Q 45.015625 57.28125 41.125 61.84375 \n",
"Q 37.25 66.40625 30.609375 66.40625 \n",
"Q 23.96875 66.40625 20.09375 61.84375 \n",
"Q 16.21875 57.28125 16.21875 49.421875 \n",
"Q 16.21875 41.5 20.09375 36.953125 \n",
"Q 23.96875 32.421875 30.609375 32.421875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-46 d=&quot;M 10.6875 12.40625 \n",
"L 21 12.40625 \n",
"L 21 0 \n",
"L 10.6875 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-56 d=&quot;M 31.78125 34.625 \n",
"Q 24.75 34.625 20.71875 30.859375 \n",
"Q 16.703125 27.09375 16.703125 20.515625 \n",
"Q 16.703125 13.921875 20.71875 10.15625 \n",
"Q 24.75 6.390625 31.78125 6.390625 \n",
"Q 38.8125 6.390625 42.859375 10.171875 \n",
"Q 46.921875 13.96875 46.921875 20.515625 \n",
"Q 46.921875 27.09375 42.890625 30.859375 \n",
"Q 38.875 34.625 31.78125 34.625 \n",
"z\n",
"M 21.921875 38.8125 \n",
"Q 15.578125 40.375 12.03125 44.71875 \n",
"Q 8.5 49.078125 8.5 55.328125 \n",
"Q 8.5 64.0625 14.71875 69.140625 \n",
"Q 20.953125 74.21875 31.78125 74.21875 \n",
"Q 42.671875 74.21875 48.875 69.140625 \n",
"Q 55.078125 64.0625 55.078125 55.328125 \n",
"Q 55.078125 49.078125 51.53125 44.71875 \n",
"Q 48 40.375 41.703125 38.8125 \n",
"Q 48.828125 37.15625 52.796875 32.3125 \n",
"Q 56.78125 27.484375 56.78125 20.515625 \n",
"Q 56.78125 9.90625 50.3125 4.234375 \n",
"Q 43.84375 -1.421875 31.78125 -1.421875 \n",
"Q 19.734375 -1.421875 13.25 4.234375 \n",
"Q 6.78125 9.90625 6.78125 20.515625 \n",
"Q 6.78125 27.484375 10.78125 32.3125 \n",
"Q 14.796875 37.15625 21.921875 38.8125 \n",
"z\n",
"M 18.3125 54.390625 \n",
"Q 18.3125 48.734375 21.84375 45.5625 \n",
"Q 25.390625 42.390625 31.78125 42.390625 \n",
"Q 38.140625 42.390625 41.71875 45.5625 \n",
"Q 45.3125 48.734375 45.3125 54.390625 \n",
"Q 45.3125 60.0625 41.71875 63.234375 \n",
"Q 38.140625 66.40625 31.78125 66.40625 \n",
"Q 25.390625 66.40625 21.84375 63.234375 \n",
"Q 18.3125 60.0625 18.3125 54.390625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-37 d=&quot;M 72.703125 32.078125 \n",
"Q 68.453125 32.078125 66.03125 28.46875 \n",
"Q 63.625 24.859375 63.625 18.40625 \n",
"Q 63.625 12.0625 66.03125 8.421875 \n",
"Q 68.453125 4.78125 72.703125 4.78125 \n",
"Q 76.859375 4.78125 79.265625 8.421875 \n",
"Q 81.6875 12.0625 81.6875 18.40625 \n",
"Q 81.6875 24.8125 79.265625 28.4375 \n",
"Q 76.859375 32.078125 72.703125 32.078125 \n",
"z\n",
"M 72.703125 38.28125 \n",
"Q 80.421875 38.28125 84.953125 32.90625 \n",
"Q 89.5 27.546875 89.5 18.40625 \n",
"Q 89.5 9.28125 84.9375 3.921875 \n",
"Q 80.375 -1.421875 72.703125 -1.421875 \n",
"Q 64.890625 -1.421875 60.34375 3.921875 \n",
"Q 55.8125 9.28125 55.8125 18.40625 \n",
"Q 55.8125 27.59375 60.375 32.9375 \n",
"Q 64.9375 38.28125 72.703125 38.28125 \n",
"z\n",
"M 22.3125 68.015625 \n",
"Q 18.109375 68.015625 15.6875 64.375 \n",
"Q 13.28125 60.75 13.28125 54.390625 \n",
"Q 13.28125 47.953125 15.671875 44.328125 \n",
"Q 18.0625 40.71875 22.3125 40.71875 \n",
"Q 26.5625 40.71875 28.96875 44.328125 \n",
"Q 31.390625 47.953125 31.390625 54.390625 \n",
"Q 31.390625 60.6875 28.953125 64.34375 \n",
"Q 26.515625 68.015625 22.3125 68.015625 \n",
"z\n",
"M 66.40625 74.21875 \n",
"L 74.21875 74.21875 \n",
"L 28.609375 -1.421875 \n",
"L 20.796875 -1.421875 \n",
"z\n",
"M 22.3125 74.21875 \n",
"Q 30.03125 74.21875 34.609375 68.875 \n",
"Q 39.203125 63.53125 39.203125 54.390625 \n",
"Q 39.203125 45.171875 34.640625 39.84375 \n",
"Q 30.078125 34.515625 22.3125 34.515625 \n",
"Q 14.546875 34.515625 10.03125 39.859375 \n",
"Q 5.515625 45.21875 5.515625 54.390625 \n",
"Q 5.515625 63.484375 10.046875 68.84375 \n",
"Q 14.59375 74.21875 22.3125 74.21875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#ffffff; transform=&quot;translate(207.562159 193.800727)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-57 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-57 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=159.033203 xlink:href=#DejaVuSans-56 /&gt;&lt;use x=222.65625 xlink:href=#DejaVuSans-37 /&gt;&lt;/g&gt;&lt;defs&gt;&lt;path id=DejaVuSans-40 d=&quot;M 31 75.875 \n",
"Q 24.46875 64.65625 21.28125 53.65625 \n",
"Q 18.109375 42.671875 18.109375 31.390625 \n",
"Q 18.109375 20.125 21.3125 9.0625 \n",
"Q 24.515625 -2 31 -13.1875 \n",
"L 23.1875 -13.1875 \n",
"Q 15.875 -1.703125 12.234375 9.375 \n",
"Q 8.59375 20.453125 8.59375 31.390625 \n",
"Q 8.59375 42.28125 12.203125 53.3125 \n",
"Q 15.828125 64.359375 23.1875 75.875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-52 d=&quot;M 37.796875 64.3125 \n",
"L 12.890625 25.390625 \n",
"L 37.796875 25.390625 \n",
"z\n",
"M 35.203125 72.90625 \n",
"L 47.609375 72.90625 \n",
"L 47.609375 25.390625 \n",
"L 58.015625 25.390625 \n",
"L 58.015625 17.1875 \n",
"L 47.609375 17.1875 \n",
"L 47.609375 0 \n",
"L 37.796875 0 \n",
"L 37.796875 17.1875 \n",
"L 4.890625 17.1875 \n",
"L 4.890625 26.703125 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-53 d=&quot;M 10.796875 72.90625 \n",
"L 49.515625 72.90625 \n",
"L 49.515625 64.59375 \n",
"L 19.828125 64.59375 \n",
"L 19.828125 46.734375 \n",
"Q 21.96875 47.46875 24.109375 47.828125 \n",
"Q 26.265625 48.1875 28.421875 48.1875 \n",
"Q 40.625 48.1875 47.75 41.5 \n",
"Q 54.890625 34.8125 54.890625 23.390625 \n",
"Q 54.890625 11.625 47.5625 5.09375 \n",
"Q 40.234375 -1.421875 26.90625 -1.421875 \n",
"Q 22.3125 -1.421875 17.546875 -0.640625 \n",
"Q 12.796875 0.140625 7.71875 1.703125 \n",
"L 7.71875 11.625 \n",
"Q 12.109375 9.234375 16.796875 8.0625 \n",
"Q 21.484375 6.890625 26.703125 6.890625 \n",
"Q 35.15625 6.890625 40.078125 11.328125 \n",
"Q 45.015625 15.765625 45.015625 23.390625 \n",
"Q 45.015625 31 40.078125 35.4375 \n",
"Q 35.15625 39.890625 26.703125 39.890625 \n",
"Q 22.75 39.890625 18.8125 39.015625 \n",
"Q 14.890625 38.140625 10.796875 36.28125 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-54 d=&quot;M 33.015625 40.375 \n",
"Q 26.375 40.375 22.484375 35.828125 \n",
"Q 18.609375 31.296875 18.609375 23.390625 \n",
"Q 18.609375 15.53125 22.484375 10.953125 \n",
"Q 26.375 6.390625 33.015625 6.390625 \n",
"Q 39.65625 6.390625 43.53125 10.953125 \n",
"Q 47.40625 15.53125 47.40625 23.390625 \n",
"Q 47.40625 31.296875 43.53125 35.828125 \n",
"Q 39.65625 40.375 33.015625 40.375 \n",
"z\n",
"M 52.59375 71.296875 \n",
"L 52.59375 62.3125 \n",
"Q 48.875 64.0625 45.09375 64.984375 \n",
"Q 41.3125 65.921875 37.59375 65.921875 \n",
"Q 27.828125 65.921875 22.671875 59.328125 \n",
"Q 17.53125 52.734375 16.796875 39.40625 \n",
"Q 19.671875 43.65625 24.015625 45.921875 \n",
"Q 28.375 48.1875 33.59375 48.1875 \n",
"Q 44.578125 48.1875 50.953125 41.515625 \n",
"Q 57.328125 34.859375 57.328125 23.390625 \n",
"Q 57.328125 12.15625 50.6875 5.359375 \n",
"Q 44.046875 -1.421875 33.015625 -1.421875 \n",
"Q 20.359375 -1.421875 13.671875 8.265625 \n",
"Q 6.984375 17.96875 6.984375 36.375 \n",
"Q 6.984375 53.65625 15.1875 63.9375 \n",
"Q 23.390625 74.21875 37.203125 74.21875 \n",
"Q 40.921875 74.21875 44.703125 73.484375 \n",
"Q 48.484375 72.75 52.59375 71.296875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-49 d=&quot;M 12.40625 8.296875 \n",
"L 28.515625 8.296875 \n",
"L 28.515625 63.921875 \n",
"L 10.984375 60.40625 \n",
"L 10.984375 69.390625 \n",
"L 28.421875 72.90625 \n",
"L 38.28125 72.90625 \n",
"L 38.28125 8.296875 \n",
"L 54.390625 8.296875 \n",
"L 54.390625 0 \n",
"L 12.40625 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-41 d=&quot;M 8.015625 75.875 \n",
"L 15.828125 75.875 \n",
"Q 23.140625 64.359375 26.78125 53.3125 \n",
"Q 30.421875 42.28125 30.421875 31.390625 \n",
"Q 30.421875 20.453125 26.78125 9.375 \n",
"Q 23.140625 -1.703125 15.828125 -13.1875 \n",
"L 8.015625 -13.1875 \n",
"Q 14.5 -2 17.703125 9.0625 \n",
"Q 20.90625 20.125 20.90625 31.390625 \n",
"Q 20.90625 42.671875 17.703125 53.65625 \n",
"Q 14.5 64.65625 8.015625 75.875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#ffffff; transform=&quot;translate(203.63794 204.99854)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-40 /&gt;&lt;use x=39.013672 xlink:href=#DejaVuSans-52 /&gt;&lt;use x=102.636719 xlink:href=#DejaVuSans-53 /&gt;&lt;use x=166.259766 xlink:href=#DejaVuSans-54 /&gt;&lt;use x=229.882812 xlink:href=#DejaVuSans-53 /&gt;&lt;use x=293.505859 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=357.128906 xlink:href=#DejaVuSans-41 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_2&gt;&lt;defs&gt;&lt;path id=DejaVuSans-48 d=&quot;M 31.78125 66.40625 \n",
"Q 24.171875 66.40625 20.328125 58.90625 \n",
"Q 16.5 51.421875 16.5 36.375 \n",
"Q 16.5 21.390625 20.328125 13.890625 \n",
"Q 24.171875 6.390625 31.78125 6.390625 \n",
"Q 39.453125 6.390625 43.28125 13.890625 \n",
"Q 47.125 21.390625 47.125 36.375 \n",
"Q 47.125 51.421875 43.28125 58.90625 \n",
"Q 39.453125 66.40625 31.78125 66.40625 \n",
"z\n",
"M 31.78125 74.21875 \n",
"Q 44.046875 74.21875 50.515625 64.515625 \n",
"Q 56.984375 54.828125 56.984375 36.375 \n",
"Q 56.984375 17.96875 50.515625 8.265625 \n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \n",
"Q 19.53125 -1.421875 13.0625 8.265625 \n",
"Q 6.59375 17.96875 6.59375 36.375 \n",
"Q 6.59375 54.828125 13.0625 64.515625 \n",
"Q 19.53125 74.21875 31.78125 74.21875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-50 d=&quot;M 19.1875 8.296875 \n",
"L 53.609375 8.296875 \n",
"L 53.609375 0 \n",
"L 7.328125 0 \n",
"L 7.328125 8.296875 \n",
"Q 12.9375 14.109375 22.625 23.890625 \n",
"Q 32.328125 33.6875 34.8125 36.53125 \n",
"Q 39.546875 41.84375 41.421875 45.53125 \n",
"Q 43.3125 49.21875 43.3125 52.78125 \n",
"Q 43.3125 58.59375 39.234375 62.25 \n",
"Q 35.15625 65.921875 28.609375 65.921875 \n",
"Q 23.96875 65.921875 18.8125 64.3125 \n",
"Q 13.671875 62.703125 7.8125 59.421875 \n",
"L 7.8125 69.390625 \n",
"Q 13.765625 71.78125 18.9375 73 \n",
"Q 24.125 74.21875 28.421875 74.21875 \n",
"Q 39.75 74.21875 46.484375 68.546875 \n",
"Q 53.21875 62.890625 53.21875 53.421875 \n",
"Q 53.21875 48.921875 51.53125 44.890625 \n",
"Q 49.859375 40.875 45.40625 35.40625 \n",
"Q 44.1875 33.984375 37.640625 27.21875 \n",
"Q 31.109375 20.453125 19.1875 8.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#ffffff; transform=&quot;translate(354.251904 194.540209)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-50 /&gt;&lt;use x=159.033203 xlink:href=#DejaVuSans-37 /&gt;&lt;/g&gt;&lt;defs&gt;&lt;path id=DejaVuSans-55 d=&quot;M 8.203125 72.90625 \n",
"L 55.078125 72.90625 \n",
"L 55.078125 68.703125 \n",
"L 28.609375 0 \n",
"L 18.3125 0 \n",
"L 43.21875 64.59375 \n",
"L 8.203125 64.59375 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#ffffff; transform=&quot;translate(356.690185 205.738022)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-40 /&gt;&lt;use x=39.013672 xlink:href=#DejaVuSans-55 /&gt;&lt;use x=102.636719 xlink:href=#DejaVuSans-52 /&gt;&lt;use x=166.259766 xlink:href=#DejaVuSans-41 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=legend_1&gt;&lt;g id=patch_4&gt;&lt;path style=fill:#ffffff;opacity:0.8;stroke:#cccccc;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 378.063437 84.87625 \n",
"L 437.69 84.87625 \n",
"Q 439.69 84.87625 439.69 82.87625 \n",
"L 439.69 54.52 \n",
"Q 439.69 52.52 437.69 52.52 \n",
"L 378.063437 52.52 \n",
"Q 376.063437 52.52 376.063437 54.52 \n",
"L 376.063437 82.87625 \n",
"Q 376.063437 84.87625 378.063437 84.87625 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path style=fill:#1f77b4;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 380.063437 64.118437 \n",
"L 400.063437 64.118437 \n",
"L 400.063437 57.118437 \n",
"L 380.063437 57.118437 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=text_3&gt;&lt;defs&gt;&lt;path id=DejaVuSans-86 d=&quot;M 28.609375 0 \n",
"L 0.78125 72.90625 \n",
"L 11.078125 72.90625 \n",
"L 34.1875 11.53125 \n",
"L 57.328125 72.90625 \n",
"L 67.578125 72.90625 \n",
"L 39.796875 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-97 d=&quot;M 34.28125 27.484375 \n",
"Q 23.390625 27.484375 19.1875 25 \n",
"Q 14.984375 22.515625 14.984375 16.5 \n",
"Q 14.984375 11.71875 18.140625 8.90625 \n",
"Q 21.296875 6.109375 26.703125 6.109375 \n",
"Q 34.1875 6.109375 38.703125 11.40625 \n",
"Q 43.21875 16.703125 43.21875 25.484375 \n",
"L 43.21875 27.484375 \n",
"z\n",
"M 52.203125 31.203125 \n",
"L 52.203125 0 \n",
"L 43.21875 0 \n",
"L 43.21875 8.296875 \n",
"Q 40.140625 3.328125 35.546875 0.953125 \n",
"Q 30.953125 -1.421875 24.3125 -1.421875 \n",
"Q 15.921875 -1.421875 10.953125 3.296875 \n",
"Q 6 8.015625 6 15.921875 \n",
"Q 6 25.140625 12.171875 29.828125 \n",
"Q 18.359375 34.515625 30.609375 34.515625 \n",
"L 43.21875 34.515625 \n",
"L 43.21875 35.40625 \n",
"Q 43.21875 41.609375 39.140625 45 \n",
"Q 35.0625 48.390625 27.6875 48.390625 \n",
"Q 23 48.390625 18.546875 47.265625 \n",
"Q 14.109375 46.140625 10.015625 43.890625 \n",
"L 10.015625 52.203125 \n",
"Q 14.9375 54.109375 19.578125 55.046875 \n",
"Q 24.21875 56 28.609375 56 \n",
"Q 40.484375 56 46.34375 49.84375 \n",
"Q 52.203125 43.703125 52.203125 31.203125 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-108 d=&quot;M 9.421875 75.984375 \n",
"L 18.40625 75.984375 \n",
"L 18.40625 0 \n",
"L 9.421875 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-105 d=&quot;M 9.421875 54.6875 \n",
"L 18.40625 54.6875 \n",
"L 18.40625 0 \n",
"L 9.421875 0 \n",
"z\n",
"M 9.421875 75.984375 \n",
"L 18.40625 75.984375 \n",
"L 18.40625 64.59375 \n",
"L 9.421875 64.59375 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-100 d=&quot;M 45.40625 46.390625 \n",
"L 45.40625 75.984375 \n",
"L 54.390625 75.984375 \n",
"L 54.390625 0 \n",
"L 45.40625 0 \n",
"L 45.40625 8.203125 \n",
"Q 42.578125 3.328125 38.25 0.953125 \n",
"Q 33.9375 -1.421875 27.875 -1.421875 \n",
"Q 17.96875 -1.421875 11.734375 6.484375 \n",
"Q 5.515625 14.40625 5.515625 27.296875 \n",
"Q 5.515625 40.1875 11.734375 48.09375 \n",
"Q 17.96875 56 27.875 56 \n",
"Q 33.9375 56 38.25 53.625 \n",
"Q 42.578125 51.265625 45.40625 46.390625 \n",
"z\n",
"M 14.796875 27.296875 \n",
"Q 14.796875 17.390625 18.875 11.75 \n",
"Q 22.953125 6.109375 30.078125 6.109375 \n",
"Q 37.203125 6.109375 41.296875 11.75 \n",
"Q 45.40625 17.390625 45.40625 27.296875 \n",
"Q 45.40625 37.203125 41.296875 42.84375 \n",
"Q 37.203125 48.484375 30.078125 48.484375 \n",
"Q 22.953125 48.484375 18.875 42.84375 \n",
"Q 14.796875 37.203125 14.796875 27.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(408.063437 64.118437)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-86 /&gt;&lt;use x=60.658203 xlink:href=#DejaVuSans-97 /&gt;&lt;use x=121.9375 xlink:href=#DejaVuSans-108 /&gt;&lt;use x=149.720703 xlink:href=#DejaVuSans-105 /&gt;&lt;use x=177.503906 xlink:href=#DejaVuSans-100 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path style=fill:#ff7f0e;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 380.063437 78.796562 \n",
"L 400.063437 78.796562 \n",
"L 400.063437 71.796562 \n",
"L 380.063437 71.796562 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=text_4&gt;&lt;defs&gt;&lt;path id=DejaVuSans-82 d=&quot;M 44.390625 34.1875 \n",
"Q 47.5625 33.109375 50.5625 29.59375 \n",
"Q 53.5625 26.078125 56.59375 19.921875 \n",
"L 66.609375 0 \n",
"L 56 0 \n",
"L 46.6875 18.703125 \n",
"Q 43.0625 26.03125 39.671875 28.421875 \n",
"Q 36.28125 30.8125 30.421875 30.8125 \n",
"L 19.671875 30.8125 \n",
"L 19.671875 0 \n",
"L 9.8125 0 \n",
"L 9.8125 72.90625 \n",
"L 32.078125 72.90625 \n",
"Q 44.578125 72.90625 50.734375 67.671875 \n",
"Q 56.890625 62.453125 56.890625 51.90625 \n",
"Q 56.890625 45.015625 53.6875 40.46875 \n",
"Q 50.484375 35.9375 44.390625 34.1875 \n",
"z\n",
"M 19.671875 64.796875 \n",
"L 19.671875 38.921875 \n",
"L 32.078125 38.921875 \n",
"Q 39.203125 38.921875 42.84375 42.21875 \n",
"Q 46.484375 45.515625 46.484375 51.90625 \n",
"Q 46.484375 58.296875 42.84375 61.546875 \n",
"Q 39.203125 64.796875 32.078125 64.796875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-101 d=&quot;M 56.203125 29.59375 \n",
"L 56.203125 25.203125 \n",
"L 14.890625 25.203125 \n",
"Q 15.484375 15.921875 20.484375 11.0625 \n",
"Q 25.484375 6.203125 34.421875 6.203125 \n",
"Q 39.59375 6.203125 44.453125 7.46875 \n",
"Q 49.3125 8.734375 54.109375 11.28125 \n",
"L 54.109375 2.78125 \n",
"Q 49.265625 0.734375 44.1875 -0.34375 \n",
"Q 39.109375 -1.421875 33.890625 -1.421875 \n",
"Q 20.796875 -1.421875 13.15625 6.1875 \n",
"Q 5.515625 13.8125 5.515625 26.8125 \n",
"Q 5.515625 40.234375 12.765625 48.109375 \n",
"Q 20.015625 56 32.328125 56 \n",
"Q 43.359375 56 49.78125 48.890625 \n",
"Q 56.203125 41.796875 56.203125 29.59375 \n",
"z\n",
"M 47.21875 32.234375 \n",
"Q 47.125 39.59375 43.09375 43.984375 \n",
"Q 39.0625 48.390625 32.421875 48.390625 \n",
"Q 24.90625 48.390625 20.390625 44.140625 \n",
"Q 15.875 39.890625 15.1875 32.171875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-99 d=&quot;M 48.78125 52.59375 \n",
"L 48.78125 44.1875 \n",
"Q 44.96875 46.296875 41.140625 47.34375 \n",
"Q 37.3125 48.390625 33.40625 48.390625 \n",
"Q 24.65625 48.390625 19.8125 42.84375 \n",
"Q 14.984375 37.3125 14.984375 27.296875 \n",
"Q 14.984375 17.28125 19.8125 11.734375 \n",
"Q 24.65625 6.203125 33.40625 6.203125 \n",
"Q 37.3125 6.203125 41.140625 7.25 \n",
"Q 44.96875 8.296875 48.78125 10.40625 \n",
"L 48.78125 2.09375 \n",
"Q 45.015625 0.34375 40.984375 -0.53125 \n",
"Q 36.96875 -1.421875 32.421875 -1.421875 \n",
"Q 20.0625 -1.421875 12.78125 6.34375 \n",
"Q 5.515625 14.109375 5.515625 27.296875 \n",
"Q 5.515625 40.671875 12.859375 48.328125 \n",
"Q 20.21875 56 33.015625 56 \n",
"Q 37.15625 56 41.109375 55.140625 \n",
"Q 45.0625 54.296875 48.78125 52.59375 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-116 d=&quot;M 18.3125 70.21875 \n",
"L 18.3125 54.6875 \n",
"L 36.8125 54.6875 \n",
"L 36.8125 47.703125 \n",
"L 18.3125 47.703125 \n",
"L 18.3125 18.015625 \n",
"Q 18.3125 11.328125 20.140625 9.421875 \n",
"Q 21.96875 7.515625 27.59375 7.515625 \n",
"L 36.8125 7.515625 \n",
"L 36.8125 0 \n",
"L 27.59375 0 \n",
"Q 17.1875 0 13.234375 3.875 \n",
"Q 9.28125 7.765625 9.28125 18.015625 \n",
"L 9.28125 47.703125 \n",
"L 2.6875 47.703125 \n",
"L 2.6875 54.6875 \n",
"L 9.28125 54.6875 \n",
"L 9.28125 70.21875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(408.063437 78.796562)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-82 /&gt;&lt;use x=64.982422 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=126.505859 xlink:href=#DejaVuSans-108 /&gt;&lt;use x=154.289062 xlink:href=#DejaVuSans-105 /&gt;&lt;use x=182.072266 xlink:href=#DejaVuSans-99 /&gt;&lt;use x=237.052734 xlink:href=#DejaVuSans-116 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/svg&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-88400781667047614bottom--88400781667047614tbl&gt;&lt;div class=col-sm-6&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=288pt version=1.1 viewbox=&quot;0 0 432 288&quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;defs&gt;&lt;style type=text/css&gt;\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" &lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 288 \n",
"L 432 288 \n",
"L 432 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 66.675 248.315224 \n",
"L 421.2 248.315224 \n",
"L 421.2 10.8 \n",
"L 66.675 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;defs&gt;&lt;path id=DejaVuSans-53 d=&quot;M 10.796875 72.90625 \n",
"L 49.515625 72.90625 \n",
"L 49.515625 64.59375 \n",
"L 19.828125 64.59375 \n",
"L 19.828125 46.734375 \n",
"Q 21.96875 47.46875 24.109375 47.828125 \n",
"Q 26.265625 48.1875 28.421875 48.1875 \n",
"Q 40.625 48.1875 47.75 41.5 \n",
"Q 54.890625 34.8125 54.890625 23.390625 \n",
"Q 54.890625 11.625 47.5625 5.09375 \n",
"Q 40.234375 -1.421875 26.90625 -1.421875 \n",
"Q 22.3125 -1.421875 17.546875 -0.640625 \n",
"Q 12.796875 0.140625 7.71875 1.703125 \n",
"L 7.71875 11.625 \n",
"Q 12.109375 9.234375 16.796875 8.0625 \n",
"Q 21.484375 6.890625 26.703125 6.890625 \n",
"Q 35.15625 6.890625 40.078125 11.328125 \n",
"Q 45.015625 15.765625 45.015625 23.390625 \n",
"Q 45.015625 31 40.078125 35.4375 \n",
"Q 35.15625 39.890625 26.703125 39.890625 \n",
"Q 22.75 39.890625 18.8125 39.015625 \n",
"Q 14.890625 38.140625 10.796875 36.28125 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-46 d=&quot;M 10.6875 12.40625 \n",
"L 21 12.40625 \n",
"L 21 0 \n",
"L 10.6875 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-48 d=&quot;M 31.78125 66.40625 \n",
"Q 24.171875 66.40625 20.328125 58.90625 \n",
"Q 16.5 51.421875 16.5 36.375 \n",
"Q 16.5 21.390625 20.328125 13.890625 \n",
"Q 24.171875 6.390625 31.78125 6.390625 \n",
"Q 39.453125 6.390625 43.28125 13.890625 \n",
"Q 47.125 21.390625 47.125 36.375 \n",
"Q 47.125 51.421875 43.28125 58.90625 \n",
"Q 39.453125 66.40625 31.78125 66.40625 \n",
"z\n",
"M 31.78125 74.21875 \n",
"Q 44.046875 74.21875 50.515625 64.515625 \n",
"Q 56.984375 54.828125 56.984375 36.375 \n",
"Q 56.984375 17.96875 50.515625 8.265625 \n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \n",
"Q 19.53125 -1.421875 13.0625 8.265625 \n",
"Q 6.59375 17.96875 6.59375 36.375 \n",
"Q 6.59375 54.828125 13.0625 64.515625 \n",
"Q 19.53125 74.21875 31.78125 74.21875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(79.118342 275.433338)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-53 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;defs&gt;&lt;path id=DejaVuSans-50 d=&quot;M 19.1875 8.296875 \n",
"L 53.609375 8.296875 \n",
"L 53.609375 0 \n",
"L 7.328125 0 \n",
"L 7.328125 8.296875 \n",
"Q 12.9375 14.109375 22.625 23.890625 \n",
"Q 32.328125 33.6875 34.8125 36.53125 \n",
"Q 39.546875 41.84375 41.421875 45.53125 \n",
"Q 43.3125 49.21875 43.3125 52.78125 \n",
"Q 43.3125 58.59375 39.234375 62.25 \n",
"Q 35.15625 65.921875 28.609375 65.921875 \n",
"Q 23.96875 65.921875 18.8125 64.3125 \n",
"Q 13.671875 62.703125 7.8125 59.421875 \n",
"L 7.8125 69.390625 \n",
"Q 13.765625 71.78125 18.9375 73 \n",
"Q 24.125 74.21875 28.421875 74.21875 \n",
"Q 39.75 74.21875 46.484375 68.546875 \n",
"Q 53.21875 62.890625 53.21875 53.421875 \n",
"Q 53.21875 48.921875 51.53125 44.890625 \n",
"Q 49.859375 40.875 45.40625 35.40625 \n",
"Q 44.1875 33.984375 37.640625 27.21875 \n",
"Q 31.109375 20.453125 19.1875 8.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(143.577433 275.433338)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-53 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-50 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;defs&gt;&lt;path id=DejaVuSans-52 d=&quot;M 37.796875 64.3125 \n",
"L 12.890625 25.390625 \n",
"L 37.796875 25.390625 \n",
"z\n",
"M 35.203125 72.90625 \n",
"L 47.609375 72.90625 \n",
"L 47.609375 25.390625 \n",
"L 58.015625 25.390625 \n",
"L 58.015625 17.1875 \n",
"L 47.609375 17.1875 \n",
"L 47.609375 0 \n",
"L 37.796875 0 \n",
"L 37.796875 17.1875 \n",
"L 4.890625 17.1875 \n",
"L 4.890625 26.703125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(208.036524 275.433338)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-53 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-52 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;defs&gt;&lt;path id=DejaVuSans-54 d=&quot;M 33.015625 40.375 \n",
"Q 26.375 40.375 22.484375 35.828125 \n",
"Q 18.609375 31.296875 18.609375 23.390625 \n",
"Q 18.609375 15.53125 22.484375 10.953125 \n",
"Q 26.375 6.390625 33.015625 6.390625 \n",
"Q 39.65625 6.390625 43.53125 10.953125 \n",
"Q 47.40625 15.53125 47.40625 23.390625 \n",
"Q 47.40625 31.296875 43.53125 35.828125 \n",
"Q 39.65625 40.375 33.015625 40.375 \n",
"z\n",
"M 52.59375 71.296875 \n",
"L 52.59375 62.3125 \n",
"Q 48.875 64.0625 45.09375 64.984375 \n",
"Q 41.3125 65.921875 37.59375 65.921875 \n",
"Q 27.828125 65.921875 22.671875 59.328125 \n",
"Q 17.53125 52.734375 16.796875 39.40625 \n",
"Q 19.671875 43.65625 24.015625 45.921875 \n",
"Q 28.375 48.1875 33.59375 48.1875 \n",
"Q 44.578125 48.1875 50.953125 41.515625 \n",
"Q 57.328125 34.859375 57.328125 23.390625 \n",
"Q 57.328125 12.15625 50.6875 5.359375 \n",
"Q 44.046875 -1.421875 33.015625 -1.421875 \n",
"Q 20.359375 -1.421875 13.671875 8.265625 \n",
"Q 6.984375 17.96875 6.984375 36.375 \n",
"Q 6.984375 53.65625 15.1875 63.9375 \n",
"Q 23.390625 74.21875 37.203125 74.21875 \n",
"Q 40.921875 74.21875 44.703125 73.484375 \n",
"Q 48.484375 72.75 52.59375 71.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(272.495614 275.433338)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-53 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-54 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;defs&gt;&lt;path id=DejaVuSans-56 d=&quot;M 31.78125 34.625 \n",
"Q 24.75 34.625 20.71875 30.859375 \n",
"Q 16.703125 27.09375 16.703125 20.515625 \n",
"Q 16.703125 13.921875 20.71875 10.15625 \n",
"Q 24.75 6.390625 31.78125 6.390625 \n",
"Q 38.8125 6.390625 42.859375 10.171875 \n",
"Q 46.921875 13.96875 46.921875 20.515625 \n",
"Q 46.921875 27.09375 42.890625 30.859375 \n",
"Q 38.875 34.625 31.78125 34.625 \n",
"z\n",
"M 21.921875 38.8125 \n",
"Q 15.578125 40.375 12.03125 44.71875 \n",
"Q 8.5 49.078125 8.5 55.328125 \n",
"Q 8.5 64.0625 14.71875 69.140625 \n",
"Q 20.953125 74.21875 31.78125 74.21875 \n",
"Q 42.671875 74.21875 48.875 69.140625 \n",
"Q 55.078125 64.0625 55.078125 55.328125 \n",
"Q 55.078125 49.078125 51.53125 44.71875 \n",
"Q 48 40.375 41.703125 38.8125 \n",
"Q 48.828125 37.15625 52.796875 32.3125 \n",
"Q 56.78125 27.484375 56.78125 20.515625 \n",
"Q 56.78125 9.90625 50.3125 4.234375 \n",
"Q 43.84375 -1.421875 31.78125 -1.421875 \n",
"Q 19.734375 -1.421875 13.25 4.234375 \n",
"Q 6.78125 9.90625 6.78125 20.515625 \n",
"Q 6.78125 27.484375 10.78125 32.3125 \n",
"Q 14.796875 37.15625 21.921875 38.8125 \n",
"z\n",
"M 18.3125 54.390625 \n",
"Q 18.3125 48.734375 21.84375 45.5625 \n",
"Q 25.390625 42.390625 31.78125 42.390625 \n",
"Q 38.140625 42.390625 41.71875 45.5625 \n",
"Q 45.3125 48.734375 45.3125 54.390625 \n",
"Q 45.3125 60.0625 41.71875 63.234375 \n",
"Q 38.140625 66.40625 31.78125 66.40625 \n",
"Q 25.390625 66.40625 21.84375 63.234375 \n",
"Q 18.3125 60.0625 18.3125 54.390625 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(336.954705 275.433338)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-53 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-56 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_6&gt;&lt;g id=text_6&gt;&lt;g style=fill:#262626; transform=&quot;translate(401.413796 275.433338)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-54 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_2&gt;&lt;g id=ytick_1&gt;&lt;g id=text_7&gt;&lt;g style=fill:#262626; transform=&quot;translate(49.8125 252.114442)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_2&gt;&lt;g id=text_8&gt;&lt;defs&gt;&lt;path id=DejaVuSans-49 d=&quot;M 12.40625 8.296875 \n",
"L 28.515625 8.296875 \n",
"L 28.515625 63.921875 \n",
"L 10.984375 60.40625 \n",
"L 10.984375 69.390625 \n",
"L 28.421875 72.90625 \n",
"L 38.28125 72.90625 \n",
"L 38.28125 8.296875 \n",
"L 54.390625 8.296875 \n",
"L 54.390625 0 \n",
"L 12.40625 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.3625 202.563507)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_3&gt;&lt;g id=text_9&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.3625 153.012572)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_4&gt;&lt;g id=text_10&gt;&lt;defs&gt;&lt;path id=DejaVuSans-51 d=&quot;M 40.578125 39.3125 \n",
"Q 47.65625 37.796875 51.625 33 \n",
"Q 55.609375 28.21875 55.609375 21.1875 \n",
"Q 55.609375 10.40625 48.1875 4.484375 \n",
"Q 40.765625 -1.421875 27.09375 -1.421875 \n",
"Q 22.515625 -1.421875 17.65625 -0.515625 \n",
"Q 12.796875 0.390625 7.625 2.203125 \n",
"L 7.625 11.71875 \n",
"Q 11.71875 9.328125 16.59375 8.109375 \n",
"Q 21.484375 6.890625 26.8125 6.890625 \n",
"Q 36.078125 6.890625 40.9375 10.546875 \n",
"Q 45.796875 14.203125 45.796875 21.1875 \n",
"Q 45.796875 27.640625 41.28125 31.265625 \n",
"Q 36.765625 34.90625 28.71875 34.90625 \n",
"L 20.21875 34.90625 \n",
"L 20.21875 43.015625 \n",
"L 29.109375 43.015625 \n",
"Q 36.375 43.015625 40.234375 45.921875 \n",
"Q 44.09375 48.828125 44.09375 54.296875 \n",
"Q 44.09375 59.90625 40.109375 62.90625 \n",
"Q 36.140625 65.921875 28.71875 65.921875 \n",
"Q 24.65625 65.921875 20.015625 65.03125 \n",
"Q 15.375 64.15625 9.8125 62.3125 \n",
"L 9.8125 71.09375 \n",
"Q 15.4375 72.65625 20.34375 73.4375 \n",
"Q 25.25 74.21875 29.59375 74.21875 \n",
"Q 40.828125 74.21875 47.359375 69.109375 \n",
"Q 53.90625 64.015625 53.90625 55.328125 \n",
"Q 53.90625 49.265625 50.4375 45.09375 \n",
"Q 46.96875 40.921875 40.578125 39.3125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.3625 103.461636)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-51 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_5&gt;&lt;g id=text_11&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.3625 53.910701)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-52 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_12&gt;&lt;defs&gt;&lt;path id=DejaVuSans-70 d=&quot;M 9.8125 72.90625 \n",
"L 51.703125 72.90625 \n",
"L 51.703125 64.59375 \n",
"L 19.671875 64.59375 \n",
"L 19.671875 43.109375 \n",
"L 48.578125 43.109375 \n",
"L 48.578125 34.8125 \n",
"L 19.671875 34.8125 \n",
"L 19.671875 0 \n",
"L 9.8125 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-114 d=&quot;M 41.109375 46.296875 \n",
"Q 39.59375 47.171875 37.8125 47.578125 \n",
"Q 36.03125 48 33.890625 48 \n",
"Q 26.265625 48 22.1875 43.046875 \n",
"Q 18.109375 38.09375 18.109375 28.8125 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 20.953125 51.171875 25.484375 53.578125 \n",
"Q 30.03125 56 36.53125 56 \n",
"Q 37.453125 56 38.578125 55.875 \n",
"Q 39.703125 55.765625 41.0625 55.515625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-101 d=&quot;M 56.203125 29.59375 \n",
"L 56.203125 25.203125 \n",
"L 14.890625 25.203125 \n",
"Q 15.484375 15.921875 20.484375 11.0625 \n",
"Q 25.484375 6.203125 34.421875 6.203125 \n",
"Q 39.59375 6.203125 44.453125 7.46875 \n",
"Q 49.3125 8.734375 54.109375 11.28125 \n",
"L 54.109375 2.78125 \n",
"Q 49.265625 0.734375 44.1875 -0.34375 \n",
"Q 39.109375 -1.421875 33.890625 -1.421875 \n",
"Q 20.796875 -1.421875 13.15625 6.1875 \n",
"Q 5.515625 13.8125 5.515625 26.8125 \n",
"Q 5.515625 40.234375 12.765625 48.109375 \n",
"Q 20.015625 56 32.328125 56 \n",
"Q 43.359375 56 49.78125 48.890625 \n",
"Q 56.203125 41.796875 56.203125 29.59375 \n",
"z\n",
"M 47.21875 32.234375 \n",
"Q 47.125 39.59375 43.09375 43.984375 \n",
"Q 39.0625 48.390625 32.421875 48.390625 \n",
"Q 24.90625 48.390625 20.390625 44.140625 \n",
"Q 15.875 39.890625 15.1875 32.171875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-113 d=&quot;M 14.796875 27.296875 \n",
"Q 14.796875 17.390625 18.875 11.75 \n",
"Q 22.953125 6.109375 30.078125 6.109375 \n",
"Q 37.203125 6.109375 41.296875 11.75 \n",
"Q 45.40625 17.390625 45.40625 27.296875 \n",
"Q 45.40625 37.203125 41.296875 42.84375 \n",
"Q 37.203125 48.484375 30.078125 48.484375 \n",
"Q 22.953125 48.484375 18.875 42.84375 \n",
"Q 14.796875 37.203125 14.796875 27.296875 \n",
"z\n",
"M 45.40625 8.203125 \n",
"Q 42.578125 3.328125 38.25 0.953125 \n",
"Q 33.9375 -1.421875 27.875 -1.421875 \n",
"Q 17.96875 -1.421875 11.734375 6.484375 \n",
"Q 5.515625 14.40625 5.515625 27.296875 \n",
"Q 5.515625 40.1875 11.734375 48.09375 \n",
"Q 17.96875 56 27.875 56 \n",
"Q 33.9375 56 38.25 53.625 \n",
"Q 42.578125 51.265625 45.40625 46.390625 \n",
"L 45.40625 54.6875 \n",
"L 54.390625 54.6875 \n",
"L 54.390625 -20.796875 \n",
"L 45.40625 -20.796875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-117 d=&quot;M 8.5 21.578125 \n",
"L 8.5 54.6875 \n",
"L 17.484375 54.6875 \n",
"L 17.484375 21.921875 \n",
"Q 17.484375 14.15625 20.5 10.265625 \n",
"Q 23.53125 6.390625 29.59375 6.390625 \n",
"Q 36.859375 6.390625 41.078125 11.03125 \n",
"Q 45.3125 15.671875 45.3125 23.6875 \n",
"L 45.3125 54.6875 \n",
"L 54.296875 54.6875 \n",
"L 54.296875 0 \n",
"L 45.3125 0 \n",
"L 45.3125 8.40625 \n",
"Q 42.046875 3.421875 37.71875 1 \n",
"Q 33.40625 -1.421875 27.6875 -1.421875 \n",
"Q 18.265625 -1.421875 13.375 4.4375 \n",
"Q 8.5 10.296875 8.5 21.578125 \n",
"z\n",
"M 31.109375 56 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-110 d=&quot;M 54.890625 33.015625 \n",
"L 54.890625 0 \n",
"L 45.90625 0 \n",
"L 45.90625 32.71875 \n",
"Q 45.90625 40.484375 42.875 44.328125 \n",
"Q 39.84375 48.1875 33.796875 48.1875 \n",
"Q 26.515625 48.1875 22.3125 43.546875 \n",
"Q 18.109375 38.921875 18.109375 30.90625 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 21.34375 51.125 25.703125 53.5625 \n",
"Q 30.078125 56 35.796875 56 \n",
"Q 45.21875 56 50.046875 50.171875 \n",
"Q 54.890625 44.34375 54.890625 33.015625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-99 d=&quot;M 48.78125 52.59375 \n",
"L 48.78125 44.1875 \n",
"Q 44.96875 46.296875 41.140625 47.34375 \n",
"Q 37.3125 48.390625 33.40625 48.390625 \n",
"Q 24.65625 48.390625 19.8125 42.84375 \n",
"Q 14.984375 37.3125 14.984375 27.296875 \n",
"Q 14.984375 17.28125 19.8125 11.734375 \n",
"Q 24.65625 6.203125 33.40625 6.203125 \n",
"Q 37.3125 6.203125 41.140625 7.25 \n",
"Q 44.96875 8.296875 48.78125 10.40625 \n",
"L 48.78125 2.09375 \n",
"Q 45.015625 0.34375 40.984375 -0.53125 \n",
"Q 36.96875 -1.421875 32.421875 -1.421875 \n",
"Q 20.0625 -1.421875 12.78125 6.34375 \n",
"Q 5.515625 14.109375 5.515625 27.296875 \n",
"Q 5.515625 40.671875 12.859375 48.328125 \n",
"Q 20.21875 56 33.015625 56 \n",
"Q 37.15625 56 41.109375 55.140625 \n",
"Q 45.0625 54.296875 48.78125 52.59375 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-121 d=&quot;M 32.171875 -5.078125 \n",
"Q 28.375 -14.84375 24.75 -17.8125 \n",
"Q 21.140625 -20.796875 15.09375 -20.796875 \n",
"L 7.90625 -20.796875 \n",
"L 7.90625 -13.28125 \n",
"L 13.1875 -13.28125 \n",
"Q 16.890625 -13.28125 18.9375 -11.515625 \n",
"Q 21 -9.765625 23.484375 -3.21875 \n",
"L 25.09375 0.875 \n",
"L 2.984375 54.6875 \n",
"L 12.5 54.6875 \n",
"L 29.59375 11.921875 \n",
"L 46.6875 54.6875 \n",
"L 56.203125 54.6875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(18.074844 157.970268)rotate(-90)scale(0.11 -0.11)&quot;&gt;&lt;use xlink:href=#DejaVuSans-70 /&gt;&lt;use x=50.269531 xlink:href=#DejaVuSans-114 /&gt;&lt;use x=89.132812 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=150.65625 xlink:href=#DejaVuSans-113 /&gt;&lt;use x=214.132812 xlink:href=#DejaVuSans-117 /&gt;&lt;use x=277.511719 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=339.035156 xlink:href=#DejaVuSans-110 /&gt;&lt;use x=402.414062 xlink:href=#DejaVuSans-99 /&gt;&lt;use x=457.394531 xlink:href=#DejaVuSans-121 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#p3869b9403f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 82.789773 248.315224 \n",
"L 243.9375 248.315224 \n",
"L 243.9375 22.110249 \n",
"L 82.789773 22.110249 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#p3869b9403f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 243.9375 248.315224 \n",
"L 405.085227 248.315224 \n",
"L 405.085227 247.943592 \n",
"L 243.9375 247.943592 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path style=fill:none; d=&quot;M 66.675 248.315224 \n",
"L 66.675 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path style=fill:none; d=&quot;M 421.2 248.315224 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path style=fill:none; d=&quot;M 66.675 248.315224 \n",
"L 421.2 248.315224 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path style=fill:none; d=&quot;M 66.675 10.8 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=p3869b9403f&gt;&lt;rect height=237.515224 width=354.525 x=66.675 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt; Histogram of lengths of the category &lt;/div&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Length&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Max length&lt;/th&gt;&lt;td&gt;6&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Median length&lt;/th&gt;&lt;td&gt;5&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Mean length&lt;/th&gt;&lt;td&gt;5.001640205&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Min length&lt;/th&gt;&lt;td&gt;5&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;a class=&quot;anchor-pos anchor-pos-variable&quot; id=pp_var_-456798071035655909&gt;&lt;/a&gt;&lt;div class=variable&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4 title=recclass&gt;&lt;a href=#pp_var_-456798071035655909&gt;recclass&lt;/a&gt;&lt;br&gt;&lt;small&gt;Categorical&lt;/small&gt;&lt;/p&gt;&lt;code&gt;HIGH CARDINALITY&lt;/code&gt;&lt;br&gt;&lt;p class=variable-description&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr class=alert&gt;&lt;th&gt;Distinct&lt;/th&gt;&lt;td&gt;466&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct (%)&lt;/th&gt;&lt;td&gt;1.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Memory size&lt;/th&gt;&lt;td&gt;357.2 KiB&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;div class=&quot;col-sm- collapse in&quot; id=minifreqtable&gt;&lt;table class=&quot;mini freq&quot;&gt;&lt;tr class&gt;&lt;th width=50%&gt; L6 &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:49.4% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; 8287&amp;nbsp; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; H5 &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:42.6% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; 7143&amp;nbsp; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; L5 &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:28.6% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; 4797&amp;nbsp; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; H6 &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:27.0% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; 4529&amp;nbsp; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; H4 &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:25.1% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; 4211&amp;nbsp; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;th width=50%&gt; Other values (461) &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:100.0% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; 16759&amp;nbsp; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;col-sm-12 text-right&quot;&gt;&lt;button class=&quot;btn btn-default btn-sm&quot; data-toggle=collapse data-target=&quot;#bottom--456798071035655909, #minifreqtable-456798071035655909&quot; aria-expanded=true aria-controls=collapseExample&gt;Toggle details&lt;/button&gt;&lt;/div&gt;&lt;div id=bottom--456798071035655909 class=collapse&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#-456798071035655909bottom--456798071035655909frequencies aria-controls=-456798071035655909bottom--456798071035655909frequencies role=tab data-toggle=tab&gt;Frequencies&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-456798071035655909bottom--456798071035655909tbl aria-controls=-456798071035655909bottom--456798071035655909tbl role=tab data-toggle=tab&gt;Length&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=-456798071035655909bottom--456798071035655909frequencies&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#-456798071035655909frequencies--456798071035655909common_values aria-controls=-456798071035655909frequencies--456798071035655909common_values role=tab data-toggle=tab&gt;Common Values&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-456798071035655909frequencies--456798071035655909tbl aria-controls=-456798071035655909frequencies--456798071035655909tbl role=tab data-toggle=tab&gt;Overview&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=-456798071035655909frequencies--456798071035655909common_values&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=L6&gt;L6&lt;/td&gt;&lt;td&gt;8287&lt;/td&gt;&lt;td&gt;18.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:84.1%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=H5&gt;H5&lt;/td&gt;&lt;td&gt;7143&lt;/td&gt;&lt;td&gt;15.6%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:72.5%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=L5&gt;L5&lt;/td&gt;&lt;td&gt;4797&lt;/td&gt;&lt;td&gt;10.5%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:48.7%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=H6&gt;H6&lt;/td&gt;&lt;td&gt;4529&lt;/td&gt;&lt;td&gt;9.9%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:46.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=H4&gt;H4&lt;/td&gt;&lt;td&gt;4211&lt;/td&gt;&lt;td&gt;9.2%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:42.7%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=LL5&gt;LL5&lt;/td&gt;&lt;td&gt;2766&lt;/td&gt;&lt;td&gt;6.0%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:28.1%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=LL6&gt;LL6&lt;/td&gt;&lt;td&gt;2043&lt;/td&gt;&lt;td&gt;4.5%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:20.7%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=L4&gt;L4&lt;/td&gt;&lt;td&gt;1253&lt;/td&gt;&lt;td&gt;2.7%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:12.7%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=H4/5&gt;H4/5&lt;/td&gt;&lt;td&gt;428&lt;/td&gt;&lt;td&gt;0.9%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:4.3%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=CM2&gt;CM2&lt;/td&gt;&lt;td&gt;416&lt;/td&gt;&lt;td&gt;0.9%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:4.2%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;td title=&quot;Other values (456)&quot;&gt;Other values (456)&lt;/td&gt;&lt;td&gt;9853&lt;/td&gt;&lt;td&gt;21.5%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-456798071035655909frequencies--456798071035655909tbl&gt;&lt;div class=col-sm-6&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=288pt version=1.1 viewbox=&quot;0 0 432 288&quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;defs&gt;&lt;style type=text/css&gt;\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" &lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 288 \n",
"L 432 288 \n",
"L 432 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 54.175 241.862874 \n",
"L 421.2 241.862874 \n",
"L 421.2 10.8 \n",
"L 54.175 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;defs&gt;&lt;path id=DejaVuSans-48 d=&quot;M 31.78125 66.40625 \n",
"Q 24.171875 66.40625 20.328125 58.90625 \n",
"Q 16.5 51.421875 16.5 36.375 \n",
"Q 16.5 21.390625 20.328125 13.890625 \n",
"Q 24.171875 6.390625 31.78125 6.390625 \n",
"Q 39.453125 6.390625 43.28125 13.890625 \n",
"Q 47.125 21.390625 47.125 36.375 \n",
"Q 47.125 51.421875 43.28125 58.90625 \n",
"Q 39.453125 66.40625 31.78125 66.40625 \n",
"z\n",
"M 31.78125 74.21875 \n",
"Q 44.046875 74.21875 50.515625 64.515625 \n",
"Q 56.984375 54.828125 56.984375 36.375 \n",
"Q 56.984375 17.96875 50.515625 8.265625 \n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \n",
"Q 19.53125 -1.421875 13.0625 8.265625 \n",
"Q 6.59375 17.96875 6.59375 36.375 \n",
"Q 6.59375 54.828125 13.0625 64.515625 \n",
"Q 19.53125 74.21875 31.78125 74.21875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(70.519376 262.234748)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;defs&gt;&lt;path id=DejaVuSans-50 d=&quot;M 19.1875 8.296875 \n",
"L 53.609375 8.296875 \n",
"L 53.609375 0 \n",
"L 7.328125 0 \n",
"L 7.328125 8.296875 \n",
"Q 12.9375 14.109375 22.625 23.890625 \n",
"Q 32.328125 33.6875 34.8125 36.53125 \n",
"Q 39.546875 41.84375 41.421875 45.53125 \n",
"Q 43.3125 49.21875 43.3125 52.78125 \n",
"Q 43.3125 58.59375 39.234375 62.25 \n",
"Q 35.15625 65.921875 28.609375 65.921875 \n",
"Q 23.96875 65.921875 18.8125 64.3125 \n",
"Q 13.671875 62.703125 7.8125 59.421875 \n",
"L 7.8125 69.390625 \n",
"Q 13.765625 71.78125 18.9375 73 \n",
"Q 24.125 74.21875 28.421875 74.21875 \n",
"Q 39.75 74.21875 46.484375 68.546875 \n",
"Q 53.21875 62.890625 53.21875 53.421875 \n",
"Q 53.21875 48.921875 51.53125 44.890625 \n",
"Q 49.859375 40.875 45.40625 35.40625 \n",
"Q 44.1875 33.984375 37.640625 27.21875 \n",
"Q 31.109375 20.453125 19.1875 8.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(144.30655 275.731649)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;defs&gt;&lt;path id=DejaVuSans-52 d=&quot;M 37.796875 64.3125 \n",
"L 12.890625 25.390625 \n",
"L 37.796875 25.390625 \n",
"z\n",
"M 35.203125 72.90625 \n",
"L 47.609375 72.90625 \n",
"L 47.609375 25.390625 \n",
"L 58.015625 25.390625 \n",
"L 58.015625 17.1875 \n",
"L 47.609375 17.1875 \n",
"L 47.609375 0 \n",
"L 37.796875 0 \n",
"L 37.796875 17.1875 \n",
"L 4.890625 17.1875 \n",
"L 4.890625 26.703125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(224.842174 275.731649)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-52 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;defs&gt;&lt;path id=DejaVuSans-54 d=&quot;M 33.015625 40.375 \n",
"Q 26.375 40.375 22.484375 35.828125 \n",
"Q 18.609375 31.296875 18.609375 23.390625 \n",
"Q 18.609375 15.53125 22.484375 10.953125 \n",
"Q 26.375 6.390625 33.015625 6.390625 \n",
"Q 39.65625 6.390625 43.53125 10.953125 \n",
"Q 47.40625 15.53125 47.40625 23.390625 \n",
"Q 47.40625 31.296875 43.53125 35.828125 \n",
"Q 39.65625 40.375 33.015625 40.375 \n",
"z\n",
"M 52.59375 71.296875 \n",
"L 52.59375 62.3125 \n",
"Q 48.875 64.0625 45.09375 64.984375 \n",
"Q 41.3125 65.921875 37.59375 65.921875 \n",
"Q 27.828125 65.921875 22.671875 59.328125 \n",
"Q 17.53125 52.734375 16.796875 39.40625 \n",
"Q 19.671875 43.65625 24.015625 45.921875 \n",
"Q 28.375 48.1875 33.59375 48.1875 \n",
"Q 44.578125 48.1875 50.953125 41.515625 \n",
"Q 57.328125 34.859375 57.328125 23.390625 \n",
"Q 57.328125 12.15625 50.6875 5.359375 \n",
"Q 44.046875 -1.421875 33.015625 -1.421875 \n",
"Q 20.359375 -1.421875 13.671875 8.265625 \n",
"Q 6.984375 17.96875 6.984375 36.375 \n",
"Q 6.984375 53.65625 15.1875 63.9375 \n",
"Q 23.390625 74.21875 37.203125 74.21875 \n",
"Q 40.921875 74.21875 44.703125 73.484375 \n",
"Q 48.484375 72.75 52.59375 71.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(305.377798 275.731649)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-54 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;defs&gt;&lt;path id=DejaVuSans-56 d=&quot;M 31.78125 34.625 \n",
"Q 24.75 34.625 20.71875 30.859375 \n",
"Q 16.703125 27.09375 16.703125 20.515625 \n",
"Q 16.703125 13.921875 20.71875 10.15625 \n",
"Q 24.75 6.390625 31.78125 6.390625 \n",
"Q 38.8125 6.390625 42.859375 10.171875 \n",
"Q 46.921875 13.96875 46.921875 20.515625 \n",
"Q 46.921875 27.09375 42.890625 30.859375 \n",
"Q 38.875 34.625 31.78125 34.625 \n",
"z\n",
"M 21.921875 38.8125 \n",
"Q 15.578125 40.375 12.03125 44.71875 \n",
"Q 8.5 49.078125 8.5 55.328125 \n",
"Q 8.5 64.0625 14.71875 69.140625 \n",
"Q 20.953125 74.21875 31.78125 74.21875 \n",
"Q 42.671875 74.21875 48.875 69.140625 \n",
"Q 55.078125 64.0625 55.078125 55.328125 \n",
"Q 55.078125 49.078125 51.53125 44.71875 \n",
"Q 48 40.375 41.703125 38.8125 \n",
"Q 48.828125 37.15625 52.796875 32.3125 \n",
"Q 56.78125 27.484375 56.78125 20.515625 \n",
"Q 56.78125 9.90625 50.3125 4.234375 \n",
"Q 43.84375 -1.421875 31.78125 -1.421875 \n",
"Q 19.734375 -1.421875 13.25 4.234375 \n",
"Q 6.78125 9.90625 6.78125 20.515625 \n",
"Q 6.78125 27.484375 10.78125 32.3125 \n",
"Q 14.796875 37.15625 21.921875 38.8125 \n",
"z\n",
"M 18.3125 54.390625 \n",
"Q 18.3125 48.734375 21.84375 45.5625 \n",
"Q 25.390625 42.390625 31.78125 42.390625 \n",
"Q 38.140625 42.390625 41.71875 45.5625 \n",
"Q 45.3125 48.734375 45.3125 54.390625 \n",
"Q 45.3125 60.0625 41.71875 63.234375 \n",
"Q 38.140625 66.40625 31.78125 66.40625 \n",
"Q 25.390625 66.40625 21.84375 63.234375 \n",
"Q 18.3125 60.0625 18.3125 54.390625 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(385.913422 275.731649)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-56 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_2&gt;&lt;g id=ytick_1&gt;&lt;g id=text_6&gt;&lt;g style=fill:#262626; transform=&quot;translate(37.3125 245.662093)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_2&gt;&lt;g id=text_7&gt;&lt;defs&gt;&lt;path id=DejaVuSans-49 d=&quot;M 12.40625 8.296875 \n",
"L 28.515625 8.296875 \n",
"L 28.515625 63.921875 \n",
"L 10.984375 60.40625 \n",
"L 10.984375 69.390625 \n",
"L 28.421875 72.90625 \n",
"L 38.28125 72.90625 \n",
"L 38.28125 8.296875 \n",
"L 54.390625 8.296875 \n",
"L 54.390625 0 \n",
"L 12.40625 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.5875 195.87479)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_3&gt;&lt;g id=text_8&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.5875 146.087487)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_4&gt;&lt;g id=text_9&gt;&lt;defs&gt;&lt;path id=DejaVuSans-51 d=&quot;M 40.578125 39.3125 \n",
"Q 47.65625 37.796875 51.625 33 \n",
"Q 55.609375 28.21875 55.609375 21.1875 \n",
"Q 55.609375 10.40625 48.1875 4.484375 \n",
"Q 40.765625 -1.421875 27.09375 -1.421875 \n",
"Q 22.515625 -1.421875 17.65625 -0.515625 \n",
"Q 12.796875 0.390625 7.625 2.203125 \n",
"L 7.625 11.71875 \n",
"Q 11.71875 9.328125 16.59375 8.109375 \n",
"Q 21.484375 6.890625 26.8125 6.890625 \n",
"Q 36.078125 6.890625 40.9375 10.546875 \n",
"Q 45.796875 14.203125 45.796875 21.1875 \n",
"Q 45.796875 27.640625 41.28125 31.265625 \n",
"Q 36.765625 34.90625 28.71875 34.90625 \n",
"L 20.21875 34.90625 \n",
"L 20.21875 43.015625 \n",
"L 29.109375 43.015625 \n",
"Q 36.375 43.015625 40.234375 45.921875 \n",
"Q 44.09375 48.828125 44.09375 54.296875 \n",
"Q 44.09375 59.90625 40.109375 62.90625 \n",
"Q 36.140625 65.921875 28.71875 65.921875 \n",
"Q 24.65625 65.921875 20.015625 65.03125 \n",
"Q 15.375 64.15625 9.8125 62.3125 \n",
"L 9.8125 71.09375 \n",
"Q 15.4375 72.65625 20.34375 73.4375 \n",
"Q 25.25 74.21875 29.59375 74.21875 \n",
"Q 40.828125 74.21875 47.359375 69.109375 \n",
"Q 53.90625 64.015625 53.90625 55.328125 \n",
"Q 53.90625 49.265625 50.4375 45.09375 \n",
"Q 46.96875 40.921875 40.578125 39.3125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.5875 96.300183)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-51 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_5&gt;&lt;g id=text_10&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.5875 46.51288)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-52 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_11&gt;&lt;defs&gt;&lt;path id=DejaVuSans-70 d=&quot;M 9.8125 72.90625 \n",
"L 51.703125 72.90625 \n",
"L 51.703125 64.59375 \n",
"L 19.671875 64.59375 \n",
"L 19.671875 43.109375 \n",
"L 48.578125 43.109375 \n",
"L 48.578125 34.8125 \n",
"L 19.671875 34.8125 \n",
"L 19.671875 0 \n",
"L 9.8125 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-114 d=&quot;M 41.109375 46.296875 \n",
"Q 39.59375 47.171875 37.8125 47.578125 \n",
"Q 36.03125 48 33.890625 48 \n",
"Q 26.265625 48 22.1875 43.046875 \n",
"Q 18.109375 38.09375 18.109375 28.8125 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 20.953125 51.171875 25.484375 53.578125 \n",
"Q 30.03125 56 36.53125 56 \n",
"Q 37.453125 56 38.578125 55.875 \n",
"Q 39.703125 55.765625 41.0625 55.515625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-101 d=&quot;M 56.203125 29.59375 \n",
"L 56.203125 25.203125 \n",
"L 14.890625 25.203125 \n",
"Q 15.484375 15.921875 20.484375 11.0625 \n",
"Q 25.484375 6.203125 34.421875 6.203125 \n",
"Q 39.59375 6.203125 44.453125 7.46875 \n",
"Q 49.3125 8.734375 54.109375 11.28125 \n",
"L 54.109375 2.78125 \n",
"Q 49.265625 0.734375 44.1875 -0.34375 \n",
"Q 39.109375 -1.421875 33.890625 -1.421875 \n",
"Q 20.796875 -1.421875 13.15625 6.1875 \n",
"Q 5.515625 13.8125 5.515625 26.8125 \n",
"Q 5.515625 40.234375 12.765625 48.109375 \n",
"Q 20.015625 56 32.328125 56 \n",
"Q 43.359375 56 49.78125 48.890625 \n",
"Q 56.203125 41.796875 56.203125 29.59375 \n",
"z\n",
"M 47.21875 32.234375 \n",
"Q 47.125 39.59375 43.09375 43.984375 \n",
"Q 39.0625 48.390625 32.421875 48.390625 \n",
"Q 24.90625 48.390625 20.390625 44.140625 \n",
"Q 15.875 39.890625 15.1875 32.171875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-113 d=&quot;M 14.796875 27.296875 \n",
"Q 14.796875 17.390625 18.875 11.75 \n",
"Q 22.953125 6.109375 30.078125 6.109375 \n",
"Q 37.203125 6.109375 41.296875 11.75 \n",
"Q 45.40625 17.390625 45.40625 27.296875 \n",
"Q 45.40625 37.203125 41.296875 42.84375 \n",
"Q 37.203125 48.484375 30.078125 48.484375 \n",
"Q 22.953125 48.484375 18.875 42.84375 \n",
"Q 14.796875 37.203125 14.796875 27.296875 \n",
"z\n",
"M 45.40625 8.203125 \n",
"Q 42.578125 3.328125 38.25 0.953125 \n",
"Q 33.9375 -1.421875 27.875 -1.421875 \n",
"Q 17.96875 -1.421875 11.734375 6.484375 \n",
"Q 5.515625 14.40625 5.515625 27.296875 \n",
"Q 5.515625 40.1875 11.734375 48.09375 \n",
"Q 17.96875 56 27.875 56 \n",
"Q 33.9375 56 38.25 53.625 \n",
"Q 42.578125 51.265625 45.40625 46.390625 \n",
"L 45.40625 54.6875 \n",
"L 54.390625 54.6875 \n",
"L 54.390625 -20.796875 \n",
"L 45.40625 -20.796875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-117 d=&quot;M 8.5 21.578125 \n",
"L 8.5 54.6875 \n",
"L 17.484375 54.6875 \n",
"L 17.484375 21.921875 \n",
"Q 17.484375 14.15625 20.5 10.265625 \n",
"Q 23.53125 6.390625 29.59375 6.390625 \n",
"Q 36.859375 6.390625 41.078125 11.03125 \n",
"Q 45.3125 15.671875 45.3125 23.6875 \n",
"L 45.3125 54.6875 \n",
"L 54.296875 54.6875 \n",
"L 54.296875 0 \n",
"L 45.3125 0 \n",
"L 45.3125 8.40625 \n",
"Q 42.046875 3.421875 37.71875 1 \n",
"Q 33.40625 -1.421875 27.6875 -1.421875 \n",
"Q 18.265625 -1.421875 13.375 4.4375 \n",
"Q 8.5 10.296875 8.5 21.578125 \n",
"z\n",
"M 31.109375 56 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-110 d=&quot;M 54.890625 33.015625 \n",
"L 54.890625 0 \n",
"L 45.90625 0 \n",
"L 45.90625 32.71875 \n",
"Q 45.90625 40.484375 42.875 44.328125 \n",
"Q 39.84375 48.1875 33.796875 48.1875 \n",
"Q 26.515625 48.1875 22.3125 43.546875 \n",
"Q 18.109375 38.921875 18.109375 30.90625 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 21.34375 51.125 25.703125 53.5625 \n",
"Q 30.078125 56 35.796875 56 \n",
"Q 45.21875 56 50.046875 50.171875 \n",
"Q 54.890625 44.34375 54.890625 33.015625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-99 d=&quot;M 48.78125 52.59375 \n",
"L 48.78125 44.1875 \n",
"Q 44.96875 46.296875 41.140625 47.34375 \n",
"Q 37.3125 48.390625 33.40625 48.390625 \n",
"Q 24.65625 48.390625 19.8125 42.84375 \n",
"Q 14.984375 37.3125 14.984375 27.296875 \n",
"Q 14.984375 17.28125 19.8125 11.734375 \n",
"Q 24.65625 6.203125 33.40625 6.203125 \n",
"Q 37.3125 6.203125 41.140625 7.25 \n",
"Q 44.96875 8.296875 48.78125 10.40625 \n",
"L 48.78125 2.09375 \n",
"Q 45.015625 0.34375 40.984375 -0.53125 \n",
"Q 36.96875 -1.421875 32.421875 -1.421875 \n",
"Q 20.0625 -1.421875 12.78125 6.34375 \n",
"Q 5.515625 14.109375 5.515625 27.296875 \n",
"Q 5.515625 40.671875 12.859375 48.328125 \n",
"Q 20.21875 56 33.015625 56 \n",
"Q 37.15625 56 41.109375 55.140625 \n",
"Q 45.0625 54.296875 48.78125 52.59375 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-121 d=&quot;M 32.171875 -5.078125 \n",
"Q 28.375 -14.84375 24.75 -17.8125 \n",
"Q 21.140625 -20.796875 15.09375 -20.796875 \n",
"L 7.90625 -20.796875 \n",
"L 7.90625 -13.28125 \n",
"L 13.1875 -13.28125 \n",
"Q 16.890625 -13.28125 18.9375 -11.515625 \n",
"Q 21 -9.765625 23.484375 -3.21875 \n",
"L 25.09375 0.875 \n",
"L 2.984375 54.6875 \n",
"L 12.5 54.6875 \n",
"L 29.59375 11.921875 \n",
"L 46.6875 54.6875 \n",
"L 56.203125 54.6875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(18.299844 154.744093)rotate(-90)scale(0.11 -0.11)&quot;&gt;&lt;use xlink:href=#DejaVuSans-70 /&gt;&lt;use x=50.269531 xlink:href=#DejaVuSans-114 /&gt;&lt;use x=89.132812 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=150.65625 xlink:href=#DejaVuSans-113 /&gt;&lt;use x=214.132812 xlink:href=#DejaVuSans-117 /&gt;&lt;use x=277.511719 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=339.035156 xlink:href=#DejaVuSans-110 /&gt;&lt;use x=402.414062 xlink:href=#DejaVuSans-99 /&gt;&lt;use x=457.394531 xlink:href=#DejaVuSans-121 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 70.857955 241.862874 \n",
"L 77.531136 241.862874 \n",
"L 77.531136 21.802994 \n",
"L 70.857955 21.802994 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 77.531136 241.862874 \n",
"L 84.204318 241.862874 \n",
"L 84.204318 236.386271 \n",
"L 77.531136 236.386271 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 84.204318 241.862874 \n",
"L 90.8775 241.862874 \n",
"L 90.8775 239.373509 \n",
"L 84.204318 239.373509 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 90.8775 241.862874 \n",
"L 97.550682 241.862874 \n",
"L 97.550682 241.862874 \n",
"L 90.8775 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 97.550682 241.862874 \n",
"L 104.223864 241.862874 \n",
"L 104.223864 241.862874 \n",
"L 97.550682 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 104.223864 241.862874 \n",
"L 110.897045 241.862874 \n",
"L 110.897045 241.862874 \n",
"L 104.223864 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_9&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 110.897045 241.862874 \n",
"L 117.570227 241.862874 \n",
"L 117.570227 241.862874 \n",
"L 110.897045 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_10&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 117.570227 241.862874 \n",
"L 124.243409 241.862874 \n",
"L 124.243409 241.365001 \n",
"L 117.570227 241.365001 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_11&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 124.243409 241.862874 \n",
"L 130.916591 241.862874 \n",
"L 130.916591 241.862874 \n",
"L 124.243409 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_12&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 130.916591 241.862874 \n",
"L 137.589773 241.862874 \n",
"L 137.589773 241.862874 \n",
"L 130.916591 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_13&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 137.589773 241.862874 \n",
"L 144.262955 241.862874 \n",
"L 144.262955 241.862874 \n",
"L 137.589773 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_14&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 144.262955 241.862874 \n",
"L 150.936136 241.862874 \n",
"L 150.936136 241.862874 \n",
"L 144.262955 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_15&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 150.936136 241.862874 \n",
"L 157.609318 241.862874 \n",
"L 157.609318 241.365001 \n",
"L 150.936136 241.365001 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_16&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 157.609318 241.862874 \n",
"L 164.2825 241.862874 \n",
"L 164.2825 241.862874 \n",
"L 157.609318 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_17&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 164.2825 241.862874 \n",
"L 170.955682 241.862874 \n",
"L 170.955682 241.862874 \n",
"L 164.2825 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_18&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 170.955682 241.862874 \n",
"L 177.628864 241.862874 \n",
"L 177.628864 241.862874 \n",
"L 170.955682 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_19&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 177.628864 241.862874 \n",
"L 184.302045 241.862874 \n",
"L 184.302045 241.365001 \n",
"L 177.628864 241.365001 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_20&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 184.302045 241.862874 \n",
"L 190.975227 241.862874 \n",
"L 190.975227 241.862874 \n",
"L 184.302045 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_21&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 190.975227 241.862874 \n",
"L 197.648409 241.862874 \n",
"L 197.648409 241.862874 \n",
"L 190.975227 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_22&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 197.648409 241.862874 \n",
"L 204.321591 241.862874 \n",
"L 204.321591 241.862874 \n",
"L 197.648409 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_23&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 204.321591 241.862874 \n",
"L 210.994773 241.862874 \n",
"L 210.994773 241.862874 \n",
"L 204.321591 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_24&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 210.994773 241.862874 \n",
"L 217.667955 241.862874 \n",
"L 217.667955 241.862874 \n",
"L 210.994773 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_25&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 217.667955 241.862874 \n",
"L 224.341136 241.862874 \n",
"L 224.341136 241.862874 \n",
"L 217.667955 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_26&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 224.341136 241.862874 \n",
"L 231.014318 241.862874 \n",
"L 231.014318 241.862874 \n",
"L 224.341136 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_27&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 231.014318 241.862874 \n",
"L 237.6875 241.862874 \n",
"L 237.6875 241.862874 \n",
"L 231.014318 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_28&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 237.6875 241.862874 \n",
"L 244.360682 241.862874 \n",
"L 244.360682 241.365001 \n",
"L 237.6875 241.365001 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_29&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 244.360682 241.862874 \n",
"L 251.033864 241.862874 \n",
"L 251.033864 241.862874 \n",
"L 244.360682 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_30&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 251.033864 241.862874 \n",
"L 257.707045 241.862874 \n",
"L 257.707045 241.365001 \n",
"L 251.033864 241.365001 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_31&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 257.707045 241.862874 \n",
"L 264.380227 241.862874 \n",
"L 264.380227 241.365001 \n",
"L 257.707045 241.365001 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_32&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 264.380227 241.862874 \n",
"L 271.053409 241.862874 \n",
"L 271.053409 241.862874 \n",
"L 264.380227 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_33&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 271.053409 241.862874 \n",
"L 277.726591 241.862874 \n",
"L 277.726591 241.862874 \n",
"L 271.053409 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_34&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 277.726591 241.862874 \n",
"L 284.399773 241.862874 \n",
"L 284.399773 241.862874 \n",
"L 277.726591 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_35&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 284.399773 241.862874 \n",
"L 291.072955 241.862874 \n",
"L 291.072955 241.862874 \n",
"L 284.399773 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_36&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 291.072955 241.862874 \n",
"L 297.746136 241.862874 \n",
"L 297.746136 241.862874 \n",
"L 291.072955 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_37&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 297.746136 241.862874 \n",
"L 304.419318 241.862874 \n",
"L 304.419318 241.862874 \n",
"L 297.746136 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_38&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 304.419318 241.862874 \n",
"L 311.0925 241.862874 \n",
"L 311.0925 241.862874 \n",
"L 304.419318 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_39&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 311.0925 241.862874 \n",
"L 317.765682 241.862874 \n",
"L 317.765682 241.862874 \n",
"L 311.0925 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_40&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 317.765682 241.862874 \n",
"L 324.438864 241.862874 \n",
"L 324.438864 241.862874 \n",
"L 317.765682 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_41&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 324.438864 241.862874 \n",
"L 331.112045 241.862874 \n",
"L 331.112045 241.862874 \n",
"L 324.438864 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_42&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 331.112045 241.862874 \n",
"L 337.785227 241.862874 \n",
"L 337.785227 241.862874 \n",
"L 331.112045 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_43&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 337.785227 241.862874 \n",
"L 344.458409 241.862874 \n",
"L 344.458409 241.862874 \n",
"L 337.785227 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_44&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 344.458409 241.862874 \n",
"L 351.131591 241.862874 \n",
"L 351.131591 241.862874 \n",
"L 344.458409 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_45&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 351.131591 241.862874 \n",
"L 357.804773 241.862874 \n",
"L 357.804773 241.862874 \n",
"L 351.131591 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_46&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 357.804773 241.862874 \n",
"L 364.477955 241.862874 \n",
"L 364.477955 241.365001 \n",
"L 357.804773 241.365001 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_47&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 364.477955 241.862874 \n",
"L 371.151136 241.862874 \n",
"L 371.151136 241.862874 \n",
"L 364.477955 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_48&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 371.151136 241.862874 \n",
"L 377.824318 241.862874 \n",
"L 377.824318 241.862874 \n",
"L 371.151136 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_49&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 377.824318 241.862874 \n",
"L 384.4975 241.862874 \n",
"L 384.4975 241.862874 \n",
"L 377.824318 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_50&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 384.4975 241.862874 \n",
"L 391.170682 241.862874 \n",
"L 391.170682 241.862874 \n",
"L 384.4975 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_51&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 391.170682 241.862874 \n",
"L 397.843864 241.862874 \n",
"L 397.843864 241.862874 \n",
"L 391.170682 241.862874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_52&gt;&lt;path clip-path=url(#p1b94dca13f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 397.843864 241.862874 \n",
"L 404.517045 241.862874 \n",
"L 404.517045 241.365001 \n",
"L 397.843864 241.365001 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_53&gt;&lt;path style=fill:none; d=&quot;M 54.175 241.862874 \n",
"L 54.175 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_54&gt;&lt;path style=fill:none; d=&quot;M 421.2 241.862874 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_55&gt;&lt;path style=fill:none; d=&quot;M 54.175 241.862874 \n",
"L 421.2 241.862874 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_56&gt;&lt;path style=fill:none; d=&quot;M 54.175 10.8 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=p1b94dca13f&gt;&lt;rect height=231.062874 width=367.025 x=54.175 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt; Frequencies of value counts &lt;/div&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Unique&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Unique&lt;/th&gt;&lt;td&gt;145 &lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;The number of unique values (all values that occur exactly once in the dataset).&quot;&gt;?&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Unique (%)&lt;/th&gt;&lt;td&gt;0.3%&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-456798071035655909bottom--456798071035655909tbl&gt;&lt;div class=col-sm-6&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=288pt version=1.1 viewbox=&quot;0 0 432 288&quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;defs&gt;&lt;style type=text/css&gt;\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" &lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 288 \n",
"L 432 288 \n",
"L 432 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 66.8 250.613321 \n",
"L 421.2 250.613321 \n",
"L 421.2 10.8 \n",
"L 66.8 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;defs&gt;&lt;path id=DejaVuSans-48 d=&quot;M 31.78125 66.40625 \n",
"Q 24.171875 66.40625 20.328125 58.90625 \n",
"Q 16.5 51.421875 16.5 36.375 \n",
"Q 16.5 21.390625 20.328125 13.890625 \n",
"Q 24.171875 6.390625 31.78125 6.390625 \n",
"Q 39.453125 6.390625 43.28125 13.890625 \n",
"Q 47.125 21.390625 47.125 36.375 \n",
"Q 47.125 51.421875 43.28125 58.90625 \n",
"Q 39.453125 66.40625 31.78125 66.40625 \n",
"z\n",
"M 31.78125 74.21875 \n",
"Q 44.046875 74.21875 50.515625 64.515625 \n",
"Q 56.984375 54.828125 56.984375 36.375 \n",
"Q 56.984375 17.96875 50.515625 8.265625 \n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \n",
"Q 19.53125 -1.421875 13.0625 8.265625 \n",
"Q 6.59375 17.96875 6.59375 36.375 \n",
"Q 6.59375 54.828125 13.0625 64.515625 \n",
"Q 19.53125 74.21875 31.78125 74.21875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(69.723508 270.985194)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;defs&gt;&lt;path id=DejaVuSans-53 d=&quot;M 10.796875 72.90625 \n",
"L 49.515625 72.90625 \n",
"L 49.515625 64.59375 \n",
"L 19.828125 64.59375 \n",
"L 19.828125 46.734375 \n",
"Q 21.96875 47.46875 24.109375 47.828125 \n",
"Q 26.265625 48.1875 28.421875 48.1875 \n",
"Q 40.625 48.1875 47.75 41.5 \n",
"Q 54.890625 34.8125 54.890625 23.390625 \n",
"Q 54.890625 11.625 47.5625 5.09375 \n",
"Q 40.234375 -1.421875 26.90625 -1.421875 \n",
"Q 22.3125 -1.421875 17.546875 -0.640625 \n",
"Q 12.796875 0.140625 7.71875 1.703125 \n",
"L 7.71875 11.625 \n",
"Q 12.109375 9.234375 16.796875 8.0625 \n",
"Q 21.484375 6.890625 26.703125 6.890625 \n",
"Q 35.15625 6.890625 40.078125 11.328125 \n",
"Q 45.015625 15.765625 45.015625 23.390625 \n",
"Q 45.015625 31 40.078125 35.4375 \n",
"Q 35.15625 39.890625 26.703125 39.890625 \n",
"Q 22.75 39.890625 18.8125 39.015625 \n",
"Q 14.890625 38.140625 10.796875 36.28125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(134.159871 270.985194)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-53 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;defs&gt;&lt;path id=DejaVuSans-49 d=&quot;M 12.40625 8.296875 \n",
"L 28.515625 8.296875 \n",
"L 28.515625 63.921875 \n",
"L 10.984375 60.40625 \n",
"L 10.984375 69.390625 \n",
"L 28.421875 72.90625 \n",
"L 38.28125 72.90625 \n",
"L 38.28125 8.296875 \n",
"L 54.390625 8.296875 \n",
"L 54.390625 0 \n",
"L 12.40625 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(196.346751 275.484161)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;g style=fill:#262626; transform=&quot;translate(260.783115 275.484161)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-53 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;defs&gt;&lt;path id=DejaVuSans-50 d=&quot;M 19.1875 8.296875 \n",
"L 53.609375 8.296875 \n",
"L 53.609375 0 \n",
"L 7.328125 0 \n",
"L 7.328125 8.296875 \n",
"Q 12.9375 14.109375 22.625 23.890625 \n",
"Q 32.328125 33.6875 34.8125 36.53125 \n",
"Q 39.546875 41.84375 41.421875 45.53125 \n",
"Q 43.3125 49.21875 43.3125 52.78125 \n",
"Q 43.3125 58.59375 39.234375 62.25 \n",
"Q 35.15625 65.921875 28.609375 65.921875 \n",
"Q 23.96875 65.921875 18.8125 64.3125 \n",
"Q 13.671875 62.703125 7.8125 59.421875 \n",
"L 7.8125 69.390625 \n",
"Q 13.765625 71.78125 18.9375 73 \n",
"Q 24.125 74.21875 28.421875 74.21875 \n",
"Q 39.75 74.21875 46.484375 68.546875 \n",
"Q 53.21875 62.890625 53.21875 53.421875 \n",
"Q 53.21875 48.921875 51.53125 44.890625 \n",
"Q 49.859375 40.875 45.40625 35.40625 \n",
"Q 44.1875 33.984375 37.640625 27.21875 \n",
"Q 31.109375 20.453125 19.1875 8.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(325.219479 275.484161)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_6&gt;&lt;g id=text_6&gt;&lt;g style=fill:#262626; transform=&quot;translate(389.655842 275.484161)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-53 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_2&gt;&lt;g id=ytick_1&gt;&lt;g id=text_7&gt;&lt;g style=fill:#262626; transform=&quot;translate(49.9375 254.412539)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_2&gt;&lt;g id=text_8&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.85 218.508364)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-53 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_3&gt;&lt;g id=text_9&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.4875 182.604189)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_4&gt;&lt;g id=text_10&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.4875 146.700014)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-53 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_5&gt;&lt;g id=text_11&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.4875 110.795839)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_6&gt;&lt;g id=text_12&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.4875 74.891664)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-53 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_7&gt;&lt;g id=text_13&gt;&lt;defs&gt;&lt;path id=DejaVuSans-51 d=&quot;M 40.578125 39.3125 \n",
"Q 47.65625 37.796875 51.625 33 \n",
"Q 55.609375 28.21875 55.609375 21.1875 \n",
"Q 55.609375 10.40625 48.1875 4.484375 \n",
"Q 40.765625 -1.421875 27.09375 -1.421875 \n",
"Q 22.515625 -1.421875 17.65625 -0.515625 \n",
"Q 12.796875 0.390625 7.625 2.203125 \n",
"L 7.625 11.71875 \n",
"Q 11.71875 9.328125 16.59375 8.109375 \n",
"Q 21.484375 6.890625 26.8125 6.890625 \n",
"Q 36.078125 6.890625 40.9375 10.546875 \n",
"Q 45.796875 14.203125 45.796875 21.1875 \n",
"Q 45.796875 27.640625 41.28125 31.265625 \n",
"Q 36.765625 34.90625 28.71875 34.90625 \n",
"L 20.21875 34.90625 \n",
"L 20.21875 43.015625 \n",
"L 29.109375 43.015625 \n",
"Q 36.375 43.015625 40.234375 45.921875 \n",
"Q 44.09375 48.828125 44.09375 54.296875 \n",
"Q 44.09375 59.90625 40.109375 62.90625 \n",
"Q 36.140625 65.921875 28.71875 65.921875 \n",
"Q 24.65625 65.921875 20.015625 65.03125 \n",
"Q 15.375 64.15625 9.8125 62.3125 \n",
"L 9.8125 71.09375 \n",
"Q 15.4375 72.65625 20.34375 73.4375 \n",
"Q 25.25 74.21875 29.59375 74.21875 \n",
"Q 40.828125 74.21875 47.359375 69.109375 \n",
"Q 53.90625 64.015625 53.90625 55.328125 \n",
"Q 53.90625 49.265625 50.4375 45.09375 \n",
"Q 46.96875 40.921875 40.578125 39.3125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.4875 38.987489)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-51 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_14&gt;&lt;defs&gt;&lt;path id=DejaVuSans-70 d=&quot;M 9.8125 72.90625 \n",
"L 51.703125 72.90625 \n",
"L 51.703125 64.59375 \n",
"L 19.671875 64.59375 \n",
"L 19.671875 43.109375 \n",
"L 48.578125 43.109375 \n",
"L 48.578125 34.8125 \n",
"L 19.671875 34.8125 \n",
"L 19.671875 0 \n",
"L 9.8125 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-114 d=&quot;M 41.109375 46.296875 \n",
"Q 39.59375 47.171875 37.8125 47.578125 \n",
"Q 36.03125 48 33.890625 48 \n",
"Q 26.265625 48 22.1875 43.046875 \n",
"Q 18.109375 38.09375 18.109375 28.8125 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 20.953125 51.171875 25.484375 53.578125 \n",
"Q 30.03125 56 36.53125 56 \n",
"Q 37.453125 56 38.578125 55.875 \n",
"Q 39.703125 55.765625 41.0625 55.515625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-101 d=&quot;M 56.203125 29.59375 \n",
"L 56.203125 25.203125 \n",
"L 14.890625 25.203125 \n",
"Q 15.484375 15.921875 20.484375 11.0625 \n",
"Q 25.484375 6.203125 34.421875 6.203125 \n",
"Q 39.59375 6.203125 44.453125 7.46875 \n",
"Q 49.3125 8.734375 54.109375 11.28125 \n",
"L 54.109375 2.78125 \n",
"Q 49.265625 0.734375 44.1875 -0.34375 \n",
"Q 39.109375 -1.421875 33.890625 -1.421875 \n",
"Q 20.796875 -1.421875 13.15625 6.1875 \n",
"Q 5.515625 13.8125 5.515625 26.8125 \n",
"Q 5.515625 40.234375 12.765625 48.109375 \n",
"Q 20.015625 56 32.328125 56 \n",
"Q 43.359375 56 49.78125 48.890625 \n",
"Q 56.203125 41.796875 56.203125 29.59375 \n",
"z\n",
"M 47.21875 32.234375 \n",
"Q 47.125 39.59375 43.09375 43.984375 \n",
"Q 39.0625 48.390625 32.421875 48.390625 \n",
"Q 24.90625 48.390625 20.390625 44.140625 \n",
"Q 15.875 39.890625 15.1875 32.171875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-113 d=&quot;M 14.796875 27.296875 \n",
"Q 14.796875 17.390625 18.875 11.75 \n",
"Q 22.953125 6.109375 30.078125 6.109375 \n",
"Q 37.203125 6.109375 41.296875 11.75 \n",
"Q 45.40625 17.390625 45.40625 27.296875 \n",
"Q 45.40625 37.203125 41.296875 42.84375 \n",
"Q 37.203125 48.484375 30.078125 48.484375 \n",
"Q 22.953125 48.484375 18.875 42.84375 \n",
"Q 14.796875 37.203125 14.796875 27.296875 \n",
"z\n",
"M 45.40625 8.203125 \n",
"Q 42.578125 3.328125 38.25 0.953125 \n",
"Q 33.9375 -1.421875 27.875 -1.421875 \n",
"Q 17.96875 -1.421875 11.734375 6.484375 \n",
"Q 5.515625 14.40625 5.515625 27.296875 \n",
"Q 5.515625 40.1875 11.734375 48.09375 \n",
"Q 17.96875 56 27.875 56 \n",
"Q 33.9375 56 38.25 53.625 \n",
"Q 42.578125 51.265625 45.40625 46.390625 \n",
"L 45.40625 54.6875 \n",
"L 54.390625 54.6875 \n",
"L 54.390625 -20.796875 \n",
"L 45.40625 -20.796875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-117 d=&quot;M 8.5 21.578125 \n",
"L 8.5 54.6875 \n",
"L 17.484375 54.6875 \n",
"L 17.484375 21.921875 \n",
"Q 17.484375 14.15625 20.5 10.265625 \n",
"Q 23.53125 6.390625 29.59375 6.390625 \n",
"Q 36.859375 6.390625 41.078125 11.03125 \n",
"Q 45.3125 15.671875 45.3125 23.6875 \n",
"L 45.3125 54.6875 \n",
"L 54.296875 54.6875 \n",
"L 54.296875 0 \n",
"L 45.3125 0 \n",
"L 45.3125 8.40625 \n",
"Q 42.046875 3.421875 37.71875 1 \n",
"Q 33.40625 -1.421875 27.6875 -1.421875 \n",
"Q 18.265625 -1.421875 13.375 4.4375 \n",
"Q 8.5 10.296875 8.5 21.578125 \n",
"z\n",
"M 31.109375 56 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-110 d=&quot;M 54.890625 33.015625 \n",
"L 54.890625 0 \n",
"L 45.90625 0 \n",
"L 45.90625 32.71875 \n",
"Q 45.90625 40.484375 42.875 44.328125 \n",
"Q 39.84375 48.1875 33.796875 48.1875 \n",
"Q 26.515625 48.1875 22.3125 43.546875 \n",
"Q 18.109375 38.921875 18.109375 30.90625 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 21.34375 51.125 25.703125 53.5625 \n",
"Q 30.078125 56 35.796875 56 \n",
"Q 45.21875 56 50.046875 50.171875 \n",
"Q 54.890625 44.34375 54.890625 33.015625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-99 d=&quot;M 48.78125 52.59375 \n",
"L 48.78125 44.1875 \n",
"Q 44.96875 46.296875 41.140625 47.34375 \n",
"Q 37.3125 48.390625 33.40625 48.390625 \n",
"Q 24.65625 48.390625 19.8125 42.84375 \n",
"Q 14.984375 37.3125 14.984375 27.296875 \n",
"Q 14.984375 17.28125 19.8125 11.734375 \n",
"Q 24.65625 6.203125 33.40625 6.203125 \n",
"Q 37.3125 6.203125 41.140625 7.25 \n",
"Q 44.96875 8.296875 48.78125 10.40625 \n",
"L 48.78125 2.09375 \n",
"Q 45.015625 0.34375 40.984375 -0.53125 \n",
"Q 36.96875 -1.421875 32.421875 -1.421875 \n",
"Q 20.0625 -1.421875 12.78125 6.34375 \n",
"Q 5.515625 14.109375 5.515625 27.296875 \n",
"Q 5.515625 40.671875 12.859375 48.328125 \n",
"Q 20.21875 56 33.015625 56 \n",
"Q 37.15625 56 41.109375 55.140625 \n",
"Q 45.0625 54.296875 48.78125 52.59375 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-121 d=&quot;M 32.171875 -5.078125 \n",
"Q 28.375 -14.84375 24.75 -17.8125 \n",
"Q 21.140625 -20.796875 15.09375 -20.796875 \n",
"L 7.90625 -20.796875 \n",
"L 7.90625 -13.28125 \n",
"L 13.1875 -13.28125 \n",
"Q 16.890625 -13.28125 18.9375 -11.515625 \n",
"Q 21 -9.765625 23.484375 -3.21875 \n",
"L 25.09375 0.875 \n",
"L 2.984375 54.6875 \n",
"L 12.5 54.6875 \n",
"L 29.59375 11.921875 \n",
"L 46.6875 54.6875 \n",
"L 56.203125 54.6875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(18.199844 159.119317)rotate(-90)scale(0.11 -0.11)&quot;&gt;&lt;use xlink:href=#DejaVuSans-70 /&gt;&lt;use x=50.269531 xlink:href=#DejaVuSans-114 /&gt;&lt;use x=89.132812 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=150.65625 xlink:href=#DejaVuSans-113 /&gt;&lt;use x=214.132812 xlink:href=#DejaVuSans-117 /&gt;&lt;use x=277.511719 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=339.035156 xlink:href=#DejaVuSans-110 /&gt;&lt;use x=402.414062 xlink:href=#DejaVuSans-99 /&gt;&lt;use x=457.394531 xlink:href=#DejaVuSans-121 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#ped85c32361) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 82.909091 250.613321 \n",
"L 96.333333 250.613321 \n",
"L 96.333333 22.219682 \n",
"L 82.909091 22.219682 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#ped85c32361) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 96.333333 250.613321 \n",
"L 109.757576 250.613321 \n",
"L 109.757576 198.171683 \n",
"L 96.333333 198.171683 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path clip-path=url(#ped85c32361) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 109.757576 250.613321 \n",
"L 123.181818 250.613321 \n",
"L 123.181818 235.275057 \n",
"L 109.757576 235.275057 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path clip-path=url(#ped85c32361) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 123.181818 250.613321 \n",
"L 136.606061 250.613321 \n",
"L 136.606061 246.290458 \n",
"L 123.181818 246.290458 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path clip-path=url(#ped85c32361) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 136.606061 250.613321 \n",
"L 150.030303 250.613321 \n",
"L 150.030303 249.636727 \n",
"L 136.606061 249.636727 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path clip-path=url(#ped85c32361) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 150.030303 250.613321 \n",
"L 163.454545 250.613321 \n",
"L 163.454545 248.056943 \n",
"L 150.030303 248.056943 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_9&gt;&lt;path clip-path=url(#ped85c32361) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 163.454545 250.613321 \n",
"L 176.878788 250.613321 \n",
"L 176.878788 248.179018 \n",
"L 163.454545 248.179018 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_10&gt;&lt;path clip-path=url(#ped85c32361) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 176.878788 250.613321 \n",
"L 190.30303 250.613321 \n",
"L 190.30303 244.969184 \n",
"L 176.878788 244.969184 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_11&gt;&lt;path clip-path=url(#ped85c32361) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 190.30303 250.613321 \n",
"L 203.727273 250.613321 \n",
"L 203.727273 247.85588 \n",
"L 190.30303 247.85588 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_12&gt;&lt;path clip-path=url(#ped85c32361) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 203.727273 250.613321 \n",
"L 217.151515 250.613321 \n",
"L 217.151515 247.848699 \n",
"L 203.727273 247.848699 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_13&gt;&lt;path clip-path=url(#ped85c32361) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 217.151515 250.613321 \n",
"L 230.575758 250.613321 \n",
"L 230.575758 248.408804 \n",
"L 217.151515 248.408804 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_14&gt;&lt;path clip-path=url(#ped85c32361) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 230.575758 250.613321 \n",
"L 244 250.613321 \n",
"L 244 247.389126 \n",
"L 230.575758 247.389126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_15&gt;&lt;path clip-path=url(#ped85c32361) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 244 250.613321 \n",
"L 257.424242 250.613321 \n",
"L 257.424242 248.796569 \n",
"L 244 248.796569 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_16&gt;&lt;path clip-path=url(#ped85c32361) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 257.424242 250.613321 \n",
"L 270.848485 250.613321 \n",
"L 270.848485 248.904282 \n",
"L 257.424242 248.904282 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_17&gt;&lt;path clip-path=url(#ped85c32361) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 270.848485 250.613321 \n",
"L 284.272727 250.613321 \n",
"L 284.272727 250.577417 \n",
"L 270.848485 250.577417 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_18&gt;&lt;path clip-path=url(#ped85c32361) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 284.272727 250.613321 \n",
"L 297.69697 250.613321 \n",
"L 297.69697 250.074758 \n",
"L 284.272727 250.074758 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_19&gt;&lt;path clip-path=url(#ped85c32361) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 297.69697 250.613321 \n",
"L 311.121212 250.613321 \n",
"L 311.121212 250.512789 \n",
"L 297.69697 250.512789 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_20&gt;&lt;path clip-path=url(#ped85c32361) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 311.121212 250.613321 \n",
"L 324.545455 250.613321 \n",
"L 324.545455 250.60614 \n",
"L 311.121212 250.60614 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_21&gt;&lt;path clip-path=url(#ped85c32361) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 324.545455 250.613321 \n",
"L 337.969697 250.613321 \n",
"L 337.969697 250.555874 \n",
"L 324.545455 250.555874 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_22&gt;&lt;path clip-path=url(#ped85c32361) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 337.969697 250.613321 \n",
"L 351.393939 250.613321 \n",
"L 351.393939 249.823429 \n",
"L 337.969697 249.823429 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_23&gt;&lt;path clip-path=url(#ped85c32361) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 351.393939 250.613321 \n",
"L 364.818182 250.613321 \n",
"L 364.818182 250.584597 \n",
"L 351.393939 250.584597 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_24&gt;&lt;path clip-path=url(#ped85c32361) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 364.818182 250.613321 \n",
"L 378.242424 250.613321 \n",
"L 378.242424 250.419438 \n",
"L 364.818182 250.419438 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_25&gt;&lt;path clip-path=url(#ped85c32361) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 378.242424 250.613321 \n",
"L 391.666667 250.613321 \n",
"L 391.666667 250.613321 \n",
"L 378.242424 250.613321 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_26&gt;&lt;path clip-path=url(#ped85c32361) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 391.666667 250.613321 \n",
"L 405.090909 250.613321 \n",
"L 405.090909 250.598959 \n",
"L 391.666667 250.598959 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_27&gt;&lt;path style=fill:none; d=&quot;M 66.8 250.613321 \n",
"L 66.8 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_28&gt;&lt;path style=fill:none; d=&quot;M 421.2 250.613321 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_29&gt;&lt;path style=fill:none; d=&quot;M 66.8 250.613321 \n",
"L 421.2 250.613321 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_30&gt;&lt;path style=fill:none; d=&quot;M 66.8 10.8 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=ped85c32361&gt;&lt;rect height=239.813321 width=354.4 x=66.8 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt; Histogram of lengths of the category &lt;/div&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Length&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Max length&lt;/th&gt;&lt;td&gt;26&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Median length&lt;/th&gt;&lt;td&gt;2&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Mean length&lt;/th&gt;&lt;td&gt;3.052530289&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Min length&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;a class=&quot;anchor-pos anchor-pos-variable&quot; id=pp_var_20951807112946069&gt;&lt;/a&gt;&lt;div class=variable&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4 title=&quot;mass (g)&quot;&gt;&lt;a href=#pp_var_20951807112946069&gt;mass (g)&lt;/a&gt;&lt;br&gt;&lt;small&gt;Real number (&amp;Ropf;&lt;sub&gt;&amp;ge;0&lt;/sub&gt;)&lt;/small&gt;&lt;/p&gt;&lt;code&gt;SKEWED&lt;/code&gt;&lt;br&gt;&lt;p class=variable-description&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Distinct&lt;/th&gt;&lt;td&gt;12576&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct (%)&lt;/th&gt;&lt;td&gt;27.6%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing&lt;/th&gt;&lt;td&gt;131&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing (%)&lt;/th&gt;&lt;td&gt;0.3%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Infinite&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Infinite (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Mean&lt;/th&gt;&lt;td&gt;13278.42646&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Minimum&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Maximum&lt;/th&gt;&lt;td&gt;60000000&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Zeros&lt;/th&gt;&lt;td&gt;19&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Zeros (%)&lt;/th&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Memory size&lt;/th&gt;&lt;td&gt;357.2 KiB&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=162pt version=1.1 viewbox=&quot;0 0 216 162&quot; width=216pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;defs&gt;&lt;style type=text/css&gt;\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" &lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 162 \n",
"L 216 162 \n",
"L 216 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 10.8 117.712117 \n",
"L 205.2 117.712117 \n",
"L 205.2 10.8 \n",
"L 10.8 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;defs&gt;&lt;path id=DejaVuSans-48 d=&quot;M 31.78125 66.40625 \n",
"Q 24.171875 66.40625 20.328125 58.90625 \n",
"Q 16.5 51.421875 16.5 36.375 \n",
"Q 16.5 21.390625 20.328125 13.890625 \n",
"Q 24.171875 6.390625 31.78125 6.390625 \n",
"Q 39.453125 6.390625 43.28125 13.890625 \n",
"Q 47.125 21.390625 47.125 36.375 \n",
"Q 47.125 51.421875 43.28125 58.90625 \n",
"Q 39.453125 66.40625 31.78125 66.40625 \n",
"z\n",
"M 31.78125 74.21875 \n",
"Q 44.046875 74.21875 50.515625 64.515625 \n",
"Q 56.984375 54.828125 56.984375 36.375 \n",
"Q 56.984375 17.96875 50.515625 8.265625 \n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \n",
"Q 19.53125 -1.421875 13.0625 8.265625 \n",
"Q 6.59375 17.96875 6.59375 36.375 \n",
"Q 6.59375 54.828125 13.0625 64.515625 \n",
"Q 19.53125 74.21875 31.78125 74.21875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(19.397715 136.109616)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;defs&gt;&lt;path id=DejaVuSans-50 d=&quot;M 19.1875 8.296875 \n",
"L 53.609375 8.296875 \n",
"L 53.609375 0 \n",
"L 7.328125 0 \n",
"L 7.328125 8.296875 \n",
"Q 12.9375 14.109375 22.625 23.890625 \n",
"Q 32.328125 33.6875 34.8125 36.53125 \n",
"Q 39.546875 41.84375 41.421875 45.53125 \n",
"Q 43.3125 49.21875 43.3125 52.78125 \n",
"Q 43.3125 58.59375 39.234375 62.25 \n",
"Q 35.15625 65.921875 28.609375 65.921875 \n",
"Q 23.96875 65.921875 18.8125 64.3125 \n",
"Q 13.671875 62.703125 7.8125 59.421875 \n",
"L 7.8125 69.390625 \n",
"Q 13.765625 71.78125 18.9375 73 \n",
"Q 24.125 74.21875 28.421875 74.21875 \n",
"Q 39.75 74.21875 46.484375 68.546875 \n",
"Q 53.21875 62.890625 53.21875 53.421875 \n",
"Q 53.21875 48.921875 51.53125 44.890625 \n",
"Q 49.859375 40.875 45.40625 35.40625 \n",
"Q 44.1875 33.984375 37.640625 27.21875 \n",
"Q 31.109375 20.453125 19.1875 8.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(78.306806 136.109616)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;defs&gt;&lt;path id=DejaVuSans-52 d=&quot;M 37.796875 64.3125 \n",
"L 12.890625 25.390625 \n",
"L 37.796875 25.390625 \n",
"z\n",
"M 35.203125 72.90625 \n",
"L 47.609375 72.90625 \n",
"L 47.609375 25.390625 \n",
"L 58.015625 25.390625 \n",
"L 58.015625 17.1875 \n",
"L 47.609375 17.1875 \n",
"L 47.609375 0 \n",
"L 37.796875 0 \n",
"L 37.796875 17.1875 \n",
"L 4.890625 17.1875 \n",
"L 4.890625 26.703125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(137.215897 136.109616)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;use xlink:href=#DejaVuSans-52 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;defs&gt;&lt;path id=DejaVuSans-54 d=&quot;M 33.015625 40.375 \n",
"Q 26.375 40.375 22.484375 35.828125 \n",
"Q 18.609375 31.296875 18.609375 23.390625 \n",
"Q 18.609375 15.53125 22.484375 10.953125 \n",
"Q 26.375 6.390625 33.015625 6.390625 \n",
"Q 39.65625 6.390625 43.53125 10.953125 \n",
"Q 47.40625 15.53125 47.40625 23.390625 \n",
"Q 47.40625 31.296875 43.53125 35.828125 \n",
"Q 39.65625 40.375 33.015625 40.375 \n",
"z\n",
"M 52.59375 71.296875 \n",
"L 52.59375 62.3125 \n",
"Q 48.875 64.0625 45.09375 64.984375 \n",
"Q 41.3125 65.921875 37.59375 65.921875 \n",
"Q 27.828125 65.921875 22.671875 59.328125 \n",
"Q 17.53125 52.734375 16.796875 39.40625 \n",
"Q 19.671875 43.65625 24.015625 45.921875 \n",
"Q 28.375 48.1875 33.59375 48.1875 \n",
"Q 44.578125 48.1875 50.953125 41.515625 \n",
"Q 57.328125 34.859375 57.328125 23.390625 \n",
"Q 57.328125 12.15625 50.6875 5.359375 \n",
"Q 44.046875 -1.421875 33.015625 -1.421875 \n",
"Q 20.359375 -1.421875 13.671875 8.265625 \n",
"Q 6.984375 17.96875 6.984375 36.375 \n",
"Q 6.984375 53.65625 15.1875 63.9375 \n",
"Q 23.390625 74.21875 37.203125 74.21875 \n",
"Q 40.921875 74.21875 44.703125 73.484375 \n",
"Q 48.484375 72.75 52.59375 71.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(196.124988 136.109616)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;use xlink:href=#DejaVuSans-54 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_5&gt;&lt;defs&gt;&lt;path id=DejaVuSans-49 d=&quot;M 12.40625 8.296875 \n",
"L 28.515625 8.296875 \n",
"L 28.515625 63.921875 \n",
"L 10.984375 60.40625 \n",
"L 10.984375 69.390625 \n",
"L 28.421875 72.90625 \n",
"L 38.28125 72.90625 \n",
"L 38.28125 8.296875 \n",
"L 54.390625 8.296875 \n",
"L 54.390625 0 \n",
"L 12.40625 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-101 d=&quot;M 56.203125 29.59375 \n",
"L 56.203125 25.203125 \n",
"L 14.890625 25.203125 \n",
"Q 15.484375 15.921875 20.484375 11.0625 \n",
"Q 25.484375 6.203125 34.421875 6.203125 \n",
"Q 39.59375 6.203125 44.453125 7.46875 \n",
"Q 49.3125 8.734375 54.109375 11.28125 \n",
"L 54.109375 2.78125 \n",
"Q 49.265625 0.734375 44.1875 -0.34375 \n",
"Q 39.109375 -1.421875 33.890625 -1.421875 \n",
"Q 20.796875 -1.421875 13.15625 6.1875 \n",
"Q 5.515625 13.8125 5.515625 26.8125 \n",
"Q 5.515625 40.234375 12.765625 48.109375 \n",
"Q 20.015625 56 32.328125 56 \n",
"Q 43.359375 56 49.78125 48.890625 \n",
"Q 56.203125 41.796875 56.203125 29.59375 \n",
"z\n",
"M 47.21875 32.234375 \n",
"Q 47.125 39.59375 43.09375 43.984375 \n",
"Q 39.0625 48.390625 32.421875 48.390625 \n",
"Q 24.90625 48.390625 20.390625 44.140625 \n",
"Q 15.875 39.890625 15.1875 32.171875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-55 d=&quot;M 8.203125 72.90625 \n",
"L 55.078125 72.90625 \n",
"L 55.078125 68.703125 \n",
"L 28.609375 0 \n",
"L 18.3125 0 \n",
"L 43.21875 64.59375 \n",
"L 8.203125 64.59375 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(186.321875 147.884502)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=125.146484 xlink:href=#DejaVuSans-55 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 19.636364 117.712117 \n",
"L 23.170909 117.712117 \n",
"L 23.170909 15.891053 \n",
"L 19.636364 15.891053 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 23.170909 117.712117 \n",
"L 26.705455 117.712117 \n",
"L 26.705455 117.669644 \n",
"L 23.170909 117.669644 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 26.705455 117.712117 \n",
"L 30.24 117.712117 \n",
"L 30.24 117.698704 \n",
"L 26.705455 117.698704 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 30.24 117.712117 \n",
"L 33.774545 117.712117 \n",
"L 33.774545 117.703175 \n",
"L 30.24 117.703175 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 33.774545 117.712117 \n",
"L 37.309091 117.712117 \n",
"L 37.309091 117.709881 \n",
"L 33.774545 117.709881 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 37.309091 117.712117 \n",
"L 40.843636 117.712117 \n",
"L 40.843636 117.709881 \n",
"L 37.309091 117.709881 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_9&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 40.843636 117.712117 \n",
"L 44.378182 117.712117 \n",
"L 44.378182 117.712117 \n",
"L 40.843636 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_10&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 44.378182 117.712117 \n",
"L 47.912727 117.712117 \n",
"L 47.912727 117.707646 \n",
"L 44.378182 117.707646 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_11&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 47.912727 117.712117 \n",
"L 51.447273 117.712117 \n",
"L 51.447273 117.709881 \n",
"L 47.912727 117.709881 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_12&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 51.447273 117.712117 \n",
"L 54.981818 117.712117 \n",
"L 54.981818 117.712117 \n",
"L 51.447273 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_13&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 54.981818 117.712117 \n",
"L 58.516364 117.712117 \n",
"L 58.516364 117.712117 \n",
"L 54.981818 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_14&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 58.516364 117.712117 \n",
"L 62.050909 117.712117 \n",
"L 62.050909 117.712117 \n",
"L 58.516364 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_15&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 62.050909 117.712117 \n",
"L 65.585455 117.712117 \n",
"L 65.585455 117.709881 \n",
"L 62.050909 117.709881 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_16&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 65.585455 117.712117 \n",
"L 69.12 117.712117 \n",
"L 69.12 117.709881 \n",
"L 65.585455 117.709881 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_17&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 69.12 117.712117 \n",
"L 72.654545 117.712117 \n",
"L 72.654545 117.712117 \n",
"L 69.12 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_18&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 72.654545 117.712117 \n",
"L 76.189091 117.712117 \n",
"L 76.189091 117.712117 \n",
"L 72.654545 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_19&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 76.189091 117.712117 \n",
"L 79.723636 117.712117 \n",
"L 79.723636 117.712117 \n",
"L 76.189091 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_20&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 79.723636 117.712117 \n",
"L 83.258182 117.712117 \n",
"L 83.258182 117.712117 \n",
"L 79.723636 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_21&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 83.258182 117.712117 \n",
"L 86.792727 117.712117 \n",
"L 86.792727 117.709881 \n",
"L 83.258182 117.709881 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_22&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 86.792727 117.712117 \n",
"L 90.327273 117.712117 \n",
"L 90.327273 117.709881 \n",
"L 86.792727 117.709881 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_23&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 90.327273 117.712117 \n",
"L 93.861818 117.712117 \n",
"L 93.861818 117.707646 \n",
"L 90.327273 117.707646 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_24&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 93.861818 117.712117 \n",
"L 97.396364 117.712117 \n",
"L 97.396364 117.709881 \n",
"L 93.861818 117.709881 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_25&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 97.396364 117.712117 \n",
"L 100.930909 117.712117 \n",
"L 100.930909 117.712117 \n",
"L 97.396364 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_26&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 100.930909 117.712117 \n",
"L 104.465455 117.712117 \n",
"L 104.465455 117.709881 \n",
"L 100.930909 117.709881 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_27&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 104.465455 117.712117 \n",
"L 108 117.712117 \n",
"L 108 117.712117 \n",
"L 104.465455 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_28&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 108 117.712117 \n",
"L 111.534545 117.712117 \n",
"L 111.534545 117.709881 \n",
"L 108 117.709881 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_29&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 111.534545 117.712117 \n",
"L 115.069091 117.712117 \n",
"L 115.069091 117.712117 \n",
"L 111.534545 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_30&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 115.069091 117.712117 \n",
"L 118.603636 117.712117 \n",
"L 118.603636 117.712117 \n",
"L 115.069091 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_31&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 118.603636 117.712117 \n",
"L 122.138182 117.712117 \n",
"L 122.138182 117.712117 \n",
"L 118.603636 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_32&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 122.138182 117.712117 \n",
"L 125.672727 117.712117 \n",
"L 125.672727 117.712117 \n",
"L 122.138182 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_33&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 125.672727 117.712117 \n",
"L 129.207273 117.712117 \n",
"L 129.207273 117.712117 \n",
"L 125.672727 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_34&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 129.207273 117.712117 \n",
"L 132.741818 117.712117 \n",
"L 132.741818 117.712117 \n",
"L 129.207273 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_35&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 132.741818 117.712117 \n",
"L 136.276364 117.712117 \n",
"L 136.276364 117.712117 \n",
"L 132.741818 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_36&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 136.276364 117.712117 \n",
"L 139.810909 117.712117 \n",
"L 139.810909 117.712117 \n",
"L 136.276364 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_37&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 139.810909 117.712117 \n",
"L 143.345455 117.712117 \n",
"L 143.345455 117.712117 \n",
"L 139.810909 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_38&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 143.345455 117.712117 \n",
"L 146.88 117.712117 \n",
"L 146.88 117.712117 \n",
"L 143.345455 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_39&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 146.88 117.712117 \n",
"L 150.414545 117.712117 \n",
"L 150.414545 117.712117 \n",
"L 146.88 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_40&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 150.414545 117.712117 \n",
"L 153.949091 117.712117 \n",
"L 153.949091 117.712117 \n",
"L 150.414545 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_41&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 153.949091 117.712117 \n",
"L 157.483636 117.712117 \n",
"L 157.483636 117.712117 \n",
"L 153.949091 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_42&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 157.483636 117.712117 \n",
"L 161.018182 117.712117 \n",
"L 161.018182 117.712117 \n",
"L 157.483636 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_43&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 161.018182 117.712117 \n",
"L 164.552727 117.712117 \n",
"L 164.552727 117.712117 \n",
"L 161.018182 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_44&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 164.552727 117.712117 \n",
"L 168.087273 117.712117 \n",
"L 168.087273 117.709881 \n",
"L 164.552727 117.709881 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_45&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 168.087273 117.712117 \n",
"L 171.621818 117.712117 \n",
"L 171.621818 117.712117 \n",
"L 168.087273 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_46&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 171.621818 117.712117 \n",
"L 175.156364 117.712117 \n",
"L 175.156364 117.712117 \n",
"L 171.621818 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_47&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 175.156364 117.712117 \n",
"L 178.690909 117.712117 \n",
"L 178.690909 117.712117 \n",
"L 175.156364 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_48&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 178.690909 117.712117 \n",
"L 182.225455 117.712117 \n",
"L 182.225455 117.712117 \n",
"L 178.690909 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_49&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 182.225455 117.712117 \n",
"L 185.76 117.712117 \n",
"L 185.76 117.712117 \n",
"L 182.225455 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_50&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 185.76 117.712117 \n",
"L 189.294545 117.712117 \n",
"L 189.294545 117.712117 \n",
"L 185.76 117.712117 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_51&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 189.294545 117.712117 \n",
"L 192.829091 117.712117 \n",
"L 192.829091 117.709881 \n",
"L 189.294545 117.709881 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_52&gt;&lt;path clip-path=url(#p934f344dcb) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 192.829091 117.712117 \n",
"L 196.363636 117.712117 \n",
"L 196.363636 117.709881 \n",
"L 192.829091 117.709881 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_53&gt;&lt;path style=fill:none; d=&quot;M 10.8 117.712117 \n",
"L 10.8 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_54&gt;&lt;path style=fill:none; d=&quot;M 205.2 117.712117 \n",
"L 205.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_55&gt;&lt;path style=fill:none; d=&quot;M 10.8 117.712117 \n",
"L 205.2 117.712117 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_56&gt;&lt;path style=fill:none; d=&quot;M 10.8 10.8 \n",
"L 205.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=p934f344dcb&gt;&lt;rect height=106.912117 width=194.4 x=10.8 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;/div&gt;&lt;div class=&quot;col-sm-12 text-right&quot;&gt;&lt;button class=&quot;btn btn-default btn-sm&quot; data-toggle=collapse data-target=&quot;#bottom-20951807112946069, #minifreqtable20951807112946069&quot; aria-expanded=true aria-controls=collapseExample&gt;Toggle details&lt;/button&gt;&lt;/div&gt;&lt;div id=bottom-20951807112946069 class=collapse&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#20951807112946069bottom-20951807112946069statistics aria-controls=20951807112946069bottom-20951807112946069statistics role=tab data-toggle=tab&gt;Statistics&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#20951807112946069bottom-20951807112946069histogram aria-controls=20951807112946069bottom-20951807112946069histogram role=tab data-toggle=tab&gt;Histogram&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#20951807112946069bottom-20951807112946069common_values aria-controls=20951807112946069bottom-20951807112946069common_values role=tab data-toggle=tab&gt;Common values&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#20951807112946069bottom-20951807112946069extreme_values aria-controls=20951807112946069bottom-20951807112946069extreme_values role=tab data-toggle=tab&gt;Extreme values&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=20951807112946069bottom-20951807112946069statistics&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Quantile statistics&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Minimum&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;5-th percentile&lt;/th&gt;&lt;td&gt;1.1&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Q1&lt;/th&gt;&lt;td&gt;7.2&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;median&lt;/th&gt;&lt;td&gt;32.61&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Q3&lt;/th&gt;&lt;td&gt;202.9&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;95-th percentile&lt;/th&gt;&lt;td&gt;4000&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Maximum&lt;/th&gt;&lt;td&gt;60000000&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Range&lt;/th&gt;&lt;td&gt;60000000&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Interquartile range (IQR)&lt;/th&gt;&lt;td&gt;195.7&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Descriptive statistics&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Standard deviation&lt;/th&gt;&lt;td&gt;574926.0121&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Coefficient of variation (CV)&lt;/th&gt;&lt;td&gt;43.2977517&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Kurtosis&lt;/th&gt;&lt;td&gt;6798.398388&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Mean&lt;/th&gt;&lt;td&gt;13278.42646&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Median Absolute Deviation (MAD)&lt;/th&gt;&lt;td&gt;30.51&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Skewness&lt;/th&gt;&lt;td&gt;76.91847245&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Sum&lt;/th&gt;&lt;td&gt;605429854.6&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Variance&lt;/th&gt;&lt;td&gt;3.305399193e+11&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Monotocity&lt;/th&gt;&lt;td&gt;Not monotonic&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=20951807112946069bottom-20951807112946069histogram&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=288pt version=1.1 viewbox=&quot;0 0 432 288&quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;defs&gt;&lt;style type=text/css&gt;\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" &lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 288 \n",
"L 432 288 \n",
"L 432 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 66.675 242.121126 \n",
"L 421.2 242.121126 \n",
"L 421.2 10.8 \n",
"L 66.675 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;defs&gt;&lt;path id=DejaVuSans-48 d=&quot;M 31.78125 66.40625 \n",
"Q 24.171875 66.40625 20.328125 58.90625 \n",
"Q 16.5 51.421875 16.5 36.375 \n",
"Q 16.5 21.390625 20.328125 13.890625 \n",
"Q 24.171875 6.390625 31.78125 6.390625 \n",
"Q 39.453125 6.390625 43.28125 13.890625 \n",
"Q 47.125 21.390625 47.125 36.375 \n",
"Q 47.125 51.421875 43.28125 58.90625 \n",
"Q 39.453125 66.40625 31.78125 66.40625 \n",
"z\n",
"M 31.78125 74.21875 \n",
"Q 44.046875 74.21875 50.515625 64.515625 \n",
"Q 56.984375 54.828125 56.984375 36.375 \n",
"Q 56.984375 17.96875 50.515625 8.265625 \n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \n",
"Q 19.53125 -1.421875 13.0625 8.265625 \n",
"Q 6.59375 17.96875 6.59375 36.375 \n",
"Q 6.59375 54.828125 13.0625 64.515625 \n",
"Q 19.53125 74.21875 31.78125 74.21875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(82.491462 262.493)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;defs&gt;&lt;path id=DejaVuSans-49 d=&quot;M 12.40625 8.296875 \n",
"L 28.515625 8.296875 \n",
"L 28.515625 63.921875 \n",
"L 10.984375 60.40625 \n",
"L 10.984375 69.390625 \n",
"L 28.421875 72.90625 \n",
"L 38.28125 72.90625 \n",
"L 38.28125 8.296875 \n",
"L 54.390625 8.296875 \n",
"L 54.390625 0 \n",
"L 12.40625 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(136.207371 262.493)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;defs&gt;&lt;path id=DejaVuSans-50 d=&quot;M 19.1875 8.296875 \n",
"L 53.609375 8.296875 \n",
"L 53.609375 0 \n",
"L 7.328125 0 \n",
"L 7.328125 8.296875 \n",
"Q 12.9375 14.109375 22.625 23.890625 \n",
"Q 32.328125 33.6875 34.8125 36.53125 \n",
"Q 39.546875 41.84375 41.421875 45.53125 \n",
"Q 43.3125 49.21875 43.3125 52.78125 \n",
"Q 43.3125 58.59375 39.234375 62.25 \n",
"Q 35.15625 65.921875 28.609375 65.921875 \n",
"Q 23.96875 65.921875 18.8125 64.3125 \n",
"Q 13.671875 62.703125 7.8125 59.421875 \n",
"L 7.8125 69.390625 \n",
"Q 13.765625 71.78125 18.9375 73 \n",
"Q 24.125 74.21875 28.421875 74.21875 \n",
"Q 39.75 74.21875 46.484375 68.546875 \n",
"Q 53.21875 62.890625 53.21875 53.421875 \n",
"Q 53.21875 48.921875 51.53125 44.890625 \n",
"Q 49.859375 40.875 45.40625 35.40625 \n",
"Q 44.1875 33.984375 37.640625 27.21875 \n",
"Q 31.109375 20.453125 19.1875 8.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(189.92328 262.493)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;defs&gt;&lt;path id=DejaVuSans-51 d=&quot;M 40.578125 39.3125 \n",
"Q 47.65625 37.796875 51.625 33 \n",
"Q 55.609375 28.21875 55.609375 21.1875 \n",
"Q 55.609375 10.40625 48.1875 4.484375 \n",
"Q 40.765625 -1.421875 27.09375 -1.421875 \n",
"Q 22.515625 -1.421875 17.65625 -0.515625 \n",
"Q 12.796875 0.390625 7.625 2.203125 \n",
"L 7.625 11.71875 \n",
"Q 11.71875 9.328125 16.59375 8.109375 \n",
"Q 21.484375 6.890625 26.8125 6.890625 \n",
"Q 36.078125 6.890625 40.9375 10.546875 \n",
"Q 45.796875 14.203125 45.796875 21.1875 \n",
"Q 45.796875 27.640625 41.28125 31.265625 \n",
"Q 36.765625 34.90625 28.71875 34.90625 \n",
"L 20.21875 34.90625 \n",
"L 20.21875 43.015625 \n",
"L 29.109375 43.015625 \n",
"Q 36.375 43.015625 40.234375 45.921875 \n",
"Q 44.09375 48.828125 44.09375 54.296875 \n",
"Q 44.09375 59.90625 40.109375 62.90625 \n",
"Q 36.140625 65.921875 28.71875 65.921875 \n",
"Q 24.65625 65.921875 20.015625 65.03125 \n",
"Q 15.375 64.15625 9.8125 62.3125 \n",
"L 9.8125 71.09375 \n",
"Q 15.4375 72.65625 20.34375 73.4375 \n",
"Q 25.25 74.21875 29.59375 74.21875 \n",
"Q 40.828125 74.21875 47.359375 69.109375 \n",
"Q 53.90625 64.015625 53.90625 55.328125 \n",
"Q 53.90625 49.265625 50.4375 45.09375 \n",
"Q 46.96875 40.921875 40.578125 39.3125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(243.639189 262.493)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-51 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;defs&gt;&lt;path id=DejaVuSans-52 d=&quot;M 37.796875 64.3125 \n",
"L 12.890625 25.390625 \n",
"L 37.796875 25.390625 \n",
"z\n",
"M 35.203125 72.90625 \n",
"L 47.609375 72.90625 \n",
"L 47.609375 25.390625 \n",
"L 58.015625 25.390625 \n",
"L 58.015625 17.1875 \n",
"L 47.609375 17.1875 \n",
"L 47.609375 0 \n",
"L 37.796875 0 \n",
"L 37.796875 17.1875 \n",
"L 4.890625 17.1875 \n",
"L 4.890625 26.703125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(297.355098 262.493)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-52 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_6&gt;&lt;g id=text_6&gt;&lt;defs&gt;&lt;path id=DejaVuSans-53 d=&quot;M 10.796875 72.90625 \n",
"L 49.515625 72.90625 \n",
"L 49.515625 64.59375 \n",
"L 19.828125 64.59375 \n",
"L 19.828125 46.734375 \n",
"Q 21.96875 47.46875 24.109375 47.828125 \n",
"Q 26.265625 48.1875 28.421875 48.1875 \n",
"Q 40.625 48.1875 47.75 41.5 \n",
"Q 54.890625 34.8125 54.890625 23.390625 \n",
"Q 54.890625 11.625 47.5625 5.09375 \n",
"Q 40.234375 -1.421875 26.90625 -1.421875 \n",
"Q 22.3125 -1.421875 17.546875 -0.640625 \n",
"Q 12.796875 0.140625 7.71875 1.703125 \n",
"L 7.71875 11.625 \n",
"Q 12.109375 9.234375 16.796875 8.0625 \n",
"Q 21.484375 6.890625 26.703125 6.890625 \n",
"Q 35.15625 6.890625 40.078125 11.328125 \n",
"Q 45.015625 15.765625 45.015625 23.390625 \n",
"Q 45.015625 31 40.078125 35.4375 \n",
"Q 35.15625 39.890625 26.703125 39.890625 \n",
"Q 22.75 39.890625 18.8125 39.015625 \n",
"Q 14.890625 38.140625 10.796875 36.28125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(351.071008 262.493)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-53 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_7&gt;&lt;g id=text_7&gt;&lt;defs&gt;&lt;path id=DejaVuSans-54 d=&quot;M 33.015625 40.375 \n",
"Q 26.375 40.375 22.484375 35.828125 \n",
"Q 18.609375 31.296875 18.609375 23.390625 \n",
"Q 18.609375 15.53125 22.484375 10.953125 \n",
"Q 26.375 6.390625 33.015625 6.390625 \n",
"Q 39.65625 6.390625 43.53125 10.953125 \n",
"Q 47.40625 15.53125 47.40625 23.390625 \n",
"Q 47.40625 31.296875 43.53125 35.828125 \n",
"Q 39.65625 40.375 33.015625 40.375 \n",
"z\n",
"M 52.59375 71.296875 \n",
"L 52.59375 62.3125 \n",
"Q 48.875 64.0625 45.09375 64.984375 \n",
"Q 41.3125 65.921875 37.59375 65.921875 \n",
"Q 27.828125 65.921875 22.671875 59.328125 \n",
"Q 17.53125 52.734375 16.796875 39.40625 \n",
"Q 19.671875 43.65625 24.015625 45.921875 \n",
"Q 28.375 48.1875 33.59375 48.1875 \n",
"Q 44.578125 48.1875 50.953125 41.515625 \n",
"Q 57.328125 34.859375 57.328125 23.390625 \n",
"Q 57.328125 12.15625 50.6875 5.359375 \n",
"Q 44.046875 -1.421875 33.015625 -1.421875 \n",
"Q 20.359375 -1.421875 13.671875 8.265625 \n",
"Q 6.984375 17.96875 6.984375 36.375 \n",
"Q 6.984375 53.65625 15.1875 63.9375 \n",
"Q 23.390625 74.21875 37.203125 74.21875 \n",
"Q 40.921875 74.21875 44.703125 73.484375 \n",
"Q 48.484375 72.75 52.59375 71.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(404.786917 262.493)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-54 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_8&gt;&lt;defs&gt;&lt;path id=DejaVuSans-101 d=&quot;M 56.203125 29.59375 \n",
"L 56.203125 25.203125 \n",
"L 14.890625 25.203125 \n",
"Q 15.484375 15.921875 20.484375 11.0625 \n",
"Q 25.484375 6.203125 34.421875 6.203125 \n",
"Q 39.59375 6.203125 44.453125 7.46875 \n",
"Q 49.3125 8.734375 54.109375 11.28125 \n",
"L 54.109375 2.78125 \n",
"Q 49.265625 0.734375 44.1875 -0.34375 \n",
"Q 39.109375 -1.421875 33.890625 -1.421875 \n",
"Q 20.796875 -1.421875 13.15625 6.1875 \n",
"Q 5.515625 13.8125 5.515625 26.8125 \n",
"Q 5.515625 40.234375 12.765625 48.109375 \n",
"Q 20.015625 56 32.328125 56 \n",
"Q 43.359375 56 49.78125 48.890625 \n",
"Q 56.203125 41.796875 56.203125 29.59375 \n",
"z\n",
"M 47.21875 32.234375 \n",
"Q 47.125 39.59375 43.09375 43.984375 \n",
"Q 39.0625 48.390625 32.421875 48.390625 \n",
"Q 24.90625 48.390625 20.390625 44.140625 \n",
"Q 15.875 39.890625 15.1875 32.171875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-55 d=&quot;M 8.203125 72.90625 \n",
"L 55.078125 72.90625 \n",
"L 55.078125 68.703125 \n",
"L 28.609375 0 \n",
"L 18.3125 0 \n",
"L 43.21875 64.59375 \n",
"L 8.203125 64.59375 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(402.321875 274.561999)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=125.146484 xlink:href=#DejaVuSans-55 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_2&gt;&lt;g id=ytick_1&gt;&lt;g id=text_9&gt;&lt;g style=fill:#262626; transform=&quot;translate(49.8125 245.920345)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_2&gt;&lt;g id=text_10&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.3625 197.553568)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_3&gt;&lt;g id=text_11&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.3625 149.18679)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_4&gt;&lt;g id=text_12&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.3625 100.820013)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-51 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_5&gt;&lt;g id=text_13&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.3625 52.453235)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-52 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_14&gt;&lt;defs&gt;&lt;path id=DejaVuSans-70 d=&quot;M 9.8125 72.90625 \n",
"L 51.703125 72.90625 \n",
"L 51.703125 64.59375 \n",
"L 19.671875 64.59375 \n",
"L 19.671875 43.109375 \n",
"L 48.578125 43.109375 \n",
"L 48.578125 34.8125 \n",
"L 19.671875 34.8125 \n",
"L 19.671875 0 \n",
"L 9.8125 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-114 d=&quot;M 41.109375 46.296875 \n",
"Q 39.59375 47.171875 37.8125 47.578125 \n",
"Q 36.03125 48 33.890625 48 \n",
"Q 26.265625 48 22.1875 43.046875 \n",
"Q 18.109375 38.09375 18.109375 28.8125 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 20.953125 51.171875 25.484375 53.578125 \n",
"Q 30.03125 56 36.53125 56 \n",
"Q 37.453125 56 38.578125 55.875 \n",
"Q 39.703125 55.765625 41.0625 55.515625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-113 d=&quot;M 14.796875 27.296875 \n",
"Q 14.796875 17.390625 18.875 11.75 \n",
"Q 22.953125 6.109375 30.078125 6.109375 \n",
"Q 37.203125 6.109375 41.296875 11.75 \n",
"Q 45.40625 17.390625 45.40625 27.296875 \n",
"Q 45.40625 37.203125 41.296875 42.84375 \n",
"Q 37.203125 48.484375 30.078125 48.484375 \n",
"Q 22.953125 48.484375 18.875 42.84375 \n",
"Q 14.796875 37.203125 14.796875 27.296875 \n",
"z\n",
"M 45.40625 8.203125 \n",
"Q 42.578125 3.328125 38.25 0.953125 \n",
"Q 33.9375 -1.421875 27.875 -1.421875 \n",
"Q 17.96875 -1.421875 11.734375 6.484375 \n",
"Q 5.515625 14.40625 5.515625 27.296875 \n",
"Q 5.515625 40.1875 11.734375 48.09375 \n",
"Q 17.96875 56 27.875 56 \n",
"Q 33.9375 56 38.25 53.625 \n",
"Q 42.578125 51.265625 45.40625 46.390625 \n",
"L 45.40625 54.6875 \n",
"L 54.390625 54.6875 \n",
"L 54.390625 -20.796875 \n",
"L 45.40625 -20.796875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-117 d=&quot;M 8.5 21.578125 \n",
"L 8.5 54.6875 \n",
"L 17.484375 54.6875 \n",
"L 17.484375 21.921875 \n",
"Q 17.484375 14.15625 20.5 10.265625 \n",
"Q 23.53125 6.390625 29.59375 6.390625 \n",
"Q 36.859375 6.390625 41.078125 11.03125 \n",
"Q 45.3125 15.671875 45.3125 23.6875 \n",
"L 45.3125 54.6875 \n",
"L 54.296875 54.6875 \n",
"L 54.296875 0 \n",
"L 45.3125 0 \n",
"L 45.3125 8.40625 \n",
"Q 42.046875 3.421875 37.71875 1 \n",
"Q 33.40625 -1.421875 27.6875 -1.421875 \n",
"Q 18.265625 -1.421875 13.375 4.4375 \n",
"Q 8.5 10.296875 8.5 21.578125 \n",
"z\n",
"M 31.109375 56 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-110 d=&quot;M 54.890625 33.015625 \n",
"L 54.890625 0 \n",
"L 45.90625 0 \n",
"L 45.90625 32.71875 \n",
"Q 45.90625 40.484375 42.875 44.328125 \n",
"Q 39.84375 48.1875 33.796875 48.1875 \n",
"Q 26.515625 48.1875 22.3125 43.546875 \n",
"Q 18.109375 38.921875 18.109375 30.90625 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 21.34375 51.125 25.703125 53.5625 \n",
"Q 30.078125 56 35.796875 56 \n",
"Q 45.21875 56 50.046875 50.171875 \n",
"Q 54.890625 44.34375 54.890625 33.015625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-99 d=&quot;M 48.78125 52.59375 \n",
"L 48.78125 44.1875 \n",
"Q 44.96875 46.296875 41.140625 47.34375 \n",
"Q 37.3125 48.390625 33.40625 48.390625 \n",
"Q 24.65625 48.390625 19.8125 42.84375 \n",
"Q 14.984375 37.3125 14.984375 27.296875 \n",
"Q 14.984375 17.28125 19.8125 11.734375 \n",
"Q 24.65625 6.203125 33.40625 6.203125 \n",
"Q 37.3125 6.203125 41.140625 7.25 \n",
"Q 44.96875 8.296875 48.78125 10.40625 \n",
"L 48.78125 2.09375 \n",
"Q 45.015625 0.34375 40.984375 -0.53125 \n",
"Q 36.96875 -1.421875 32.421875 -1.421875 \n",
"Q 20.0625 -1.421875 12.78125 6.34375 \n",
"Q 5.515625 14.109375 5.515625 27.296875 \n",
"Q 5.515625 40.671875 12.859375 48.328125 \n",
"Q 20.21875 56 33.015625 56 \n",
"Q 37.15625 56 41.109375 55.140625 \n",
"Q 45.0625 54.296875 48.78125 52.59375 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-121 d=&quot;M 32.171875 -5.078125 \n",
"Q 28.375 -14.84375 24.75 -17.8125 \n",
"Q 21.140625 -20.796875 15.09375 -20.796875 \n",
"L 7.90625 -20.796875 \n",
"L 7.90625 -13.28125 \n",
"L 13.1875 -13.28125 \n",
"Q 16.890625 -13.28125 18.9375 -11.515625 \n",
"Q 21 -9.765625 23.484375 -3.21875 \n",
"L 25.09375 0.875 \n",
"L 2.984375 54.6875 \n",
"L 12.5 54.6875 \n",
"L 29.59375 11.921875 \n",
"L 46.6875 54.6875 \n",
"L 56.203125 54.6875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(18.074844 154.873219)rotate(-90)scale(0.11 -0.11)&quot;&gt;&lt;use xlink:href=#DejaVuSans-70 /&gt;&lt;use x=50.269531 xlink:href=#DejaVuSans-114 /&gt;&lt;use x=89.132812 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=150.65625 xlink:href=#DejaVuSans-113 /&gt;&lt;use x=214.132812 xlink:href=#DejaVuSans-117 /&gt;&lt;use x=277.511719 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=339.035156 xlink:href=#DejaVuSans-110 /&gt;&lt;use x=402.414062 xlink:href=#DejaVuSans-99 /&gt;&lt;use x=457.394531 xlink:href=#DejaVuSans-121 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 82.789773 242.121126 \n",
"L 89.235682 242.121126 \n",
"L 89.235682 21.815292 \n",
"L 82.789773 21.815292 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 89.235682 242.121126 \n",
"L 95.681591 242.121126 \n",
"L 95.681591 242.02923 \n",
"L 89.235682 242.02923 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 95.681591 242.121126 \n",
"L 102.1275 242.121126 \n",
"L 102.1275 242.092106 \n",
"L 95.681591 242.092106 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 102.1275 242.121126 \n",
"L 108.573409 242.121126 \n",
"L 108.573409 242.10178 \n",
"L 102.1275 242.10178 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 108.573409 242.121126 \n",
"L 115.019318 242.121126 \n",
"L 115.019318 242.11629 \n",
"L 108.573409 242.11629 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 115.019318 242.121126 \n",
"L 121.465227 242.121126 \n",
"L 121.465227 242.11629 \n",
"L 115.019318 242.11629 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_9&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 121.465227 242.121126 \n",
"L 127.911136 242.121126 \n",
"L 127.911136 242.121126 \n",
"L 121.465227 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_10&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 127.911136 242.121126 \n",
"L 134.357045 242.121126 \n",
"L 134.357045 242.111453 \n",
"L 127.911136 242.111453 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_11&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 134.357045 242.121126 \n",
"L 140.802955 242.121126 \n",
"L 140.802955 242.11629 \n",
"L 134.357045 242.11629 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_12&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 140.802955 242.121126 \n",
"L 147.248864 242.121126 \n",
"L 147.248864 242.121126 \n",
"L 140.802955 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_13&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 147.248864 242.121126 \n",
"L 153.694773 242.121126 \n",
"L 153.694773 242.121126 \n",
"L 147.248864 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_14&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 153.694773 242.121126 \n",
"L 160.140682 242.121126 \n",
"L 160.140682 242.121126 \n",
"L 153.694773 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_15&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 160.140682 242.121126 \n",
"L 166.586591 242.121126 \n",
"L 166.586591 242.11629 \n",
"L 160.140682 242.11629 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_16&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 166.586591 242.121126 \n",
"L 173.0325 242.121126 \n",
"L 173.0325 242.11629 \n",
"L 166.586591 242.11629 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_17&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 173.0325 242.121126 \n",
"L 179.478409 242.121126 \n",
"L 179.478409 242.121126 \n",
"L 173.0325 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_18&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 179.478409 242.121126 \n",
"L 185.924318 242.121126 \n",
"L 185.924318 242.121126 \n",
"L 179.478409 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_19&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 185.924318 242.121126 \n",
"L 192.370227 242.121126 \n",
"L 192.370227 242.121126 \n",
"L 185.924318 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_20&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 192.370227 242.121126 \n",
"L 198.816136 242.121126 \n",
"L 198.816136 242.121126 \n",
"L 192.370227 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_21&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 198.816136 242.121126 \n",
"L 205.262045 242.121126 \n",
"L 205.262045 242.11629 \n",
"L 198.816136 242.11629 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_22&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 205.262045 242.121126 \n",
"L 211.707955 242.121126 \n",
"L 211.707955 242.11629 \n",
"L 205.262045 242.11629 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_23&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 211.707955 242.121126 \n",
"L 218.153864 242.121126 \n",
"L 218.153864 242.111453 \n",
"L 211.707955 242.111453 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_24&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 218.153864 242.121126 \n",
"L 224.599773 242.121126 \n",
"L 224.599773 242.11629 \n",
"L 218.153864 242.11629 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_25&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 224.599773 242.121126 \n",
"L 231.045682 242.121126 \n",
"L 231.045682 242.121126 \n",
"L 224.599773 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_26&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 231.045682 242.121126 \n",
"L 237.491591 242.121126 \n",
"L 237.491591 242.11629 \n",
"L 231.045682 242.11629 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_27&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 237.491591 242.121126 \n",
"L 243.9375 242.121126 \n",
"L 243.9375 242.121126 \n",
"L 237.491591 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_28&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 243.9375 242.121126 \n",
"L 250.383409 242.121126 \n",
"L 250.383409 242.11629 \n",
"L 243.9375 242.11629 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_29&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 250.383409 242.121126 \n",
"L 256.829318 242.121126 \n",
"L 256.829318 242.121126 \n",
"L 250.383409 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_30&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 256.829318 242.121126 \n",
"L 263.275227 242.121126 \n",
"L 263.275227 242.121126 \n",
"L 256.829318 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_31&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 263.275227 242.121126 \n",
"L 269.721136 242.121126 \n",
"L 269.721136 242.121126 \n",
"L 263.275227 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_32&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 269.721136 242.121126 \n",
"L 276.167045 242.121126 \n",
"L 276.167045 242.121126 \n",
"L 269.721136 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_33&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 276.167045 242.121126 \n",
"L 282.612955 242.121126 \n",
"L 282.612955 242.121126 \n",
"L 276.167045 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_34&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 282.612955 242.121126 \n",
"L 289.058864 242.121126 \n",
"L 289.058864 242.121126 \n",
"L 282.612955 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_35&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 289.058864 242.121126 \n",
"L 295.504773 242.121126 \n",
"L 295.504773 242.121126 \n",
"L 289.058864 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_36&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 295.504773 242.121126 \n",
"L 301.950682 242.121126 \n",
"L 301.950682 242.121126 \n",
"L 295.504773 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_37&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 301.950682 242.121126 \n",
"L 308.396591 242.121126 \n",
"L 308.396591 242.121126 \n",
"L 301.950682 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_38&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 308.396591 242.121126 \n",
"L 314.8425 242.121126 \n",
"L 314.8425 242.121126 \n",
"L 308.396591 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_39&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 314.8425 242.121126 \n",
"L 321.288409 242.121126 \n",
"L 321.288409 242.121126 \n",
"L 314.8425 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_40&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 321.288409 242.121126 \n",
"L 327.734318 242.121126 \n",
"L 327.734318 242.121126 \n",
"L 321.288409 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_41&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 327.734318 242.121126 \n",
"L 334.180227 242.121126 \n",
"L 334.180227 242.121126 \n",
"L 327.734318 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_42&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 334.180227 242.121126 \n",
"L 340.626136 242.121126 \n",
"L 340.626136 242.121126 \n",
"L 334.180227 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_43&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 340.626136 242.121126 \n",
"L 347.072045 242.121126 \n",
"L 347.072045 242.121126 \n",
"L 340.626136 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_44&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 347.072045 242.121126 \n",
"L 353.517955 242.121126 \n",
"L 353.517955 242.11629 \n",
"L 347.072045 242.11629 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_45&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 353.517955 242.121126 \n",
"L 359.963864 242.121126 \n",
"L 359.963864 242.121126 \n",
"L 353.517955 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_46&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 359.963864 242.121126 \n",
"L 366.409773 242.121126 \n",
"L 366.409773 242.121126 \n",
"L 359.963864 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_47&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 366.409773 242.121126 \n",
"L 372.855682 242.121126 \n",
"L 372.855682 242.121126 \n",
"L 366.409773 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_48&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 372.855682 242.121126 \n",
"L 379.301591 242.121126 \n",
"L 379.301591 242.121126 \n",
"L 372.855682 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_49&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 379.301591 242.121126 \n",
"L 385.7475 242.121126 \n",
"L 385.7475 242.121126 \n",
"L 379.301591 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_50&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 385.7475 242.121126 \n",
"L 392.193409 242.121126 \n",
"L 392.193409 242.121126 \n",
"L 385.7475 242.121126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_51&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 392.193409 242.121126 \n",
"L 398.639318 242.121126 \n",
"L 398.639318 242.11629 \n",
"L 392.193409 242.11629 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_52&gt;&lt;path clip-path=url(#p71da2d8bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 398.639318 242.121126 \n",
"L 405.085227 242.121126 \n",
"L 405.085227 242.11629 \n",
"L 398.639318 242.11629 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_53&gt;&lt;path style=fill:none; d=&quot;M 66.675 242.121126 \n",
"L 66.675 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_54&gt;&lt;path style=fill:none; d=&quot;M 421.2 242.121126 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_55&gt;&lt;path style=fill:none; d=&quot;M 66.675 242.121126 \n",
"L 421.2 242.121126 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_56&gt;&lt;path style=fill:none; d=&quot;M 66.675 10.8 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=p71da2d8bee&gt;&lt;rect height=231.321126 width=354.525 x=66.675 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt;&lt;strong&gt;Histogram with fixed size bins&lt;/strong&gt; (bins=50) &lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=20951807112946069bottom-20951807112946069common_values&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=1.3&gt;1.3&lt;/td&gt;&lt;td&gt;171&lt;/td&gt;&lt;td&gt;0.4%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.4%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1.2&gt;1.2&lt;/td&gt;&lt;td&gt;140&lt;/td&gt;&lt;td&gt;0.3%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.3%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1.4&gt;1.4&lt;/td&gt;&lt;td&gt;138&lt;/td&gt;&lt;td&gt;0.3%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.3%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=2.1&gt;2.1&lt;/td&gt;&lt;td&gt;130&lt;/td&gt;&lt;td&gt;0.3%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.3%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=2.4&gt;2.4&lt;/td&gt;&lt;td&gt;126&lt;/td&gt;&lt;td&gt;0.3%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.3%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1.6&gt;1.6&lt;/td&gt;&lt;td&gt;120&lt;/td&gt;&lt;td&gt;0.3%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.3%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=0.5&gt;0.5&lt;/td&gt;&lt;td&gt;119&lt;/td&gt;&lt;td&gt;0.3%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.3%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=1.1&gt;1.1&lt;/td&gt;&lt;td&gt;116&lt;/td&gt;&lt;td&gt;0.3%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.3%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=3.8&gt;3.8&lt;/td&gt;&lt;td&gt;114&lt;/td&gt;&lt;td&gt;0.2%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.3%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=0.7&gt;0.7&lt;/td&gt;&lt;td&gt;111&lt;/td&gt;&lt;td&gt;0.2%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.3%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;td title=&quot;Other values (12566)&quot;&gt;Other values (12566)&lt;/td&gt;&lt;td&gt;44310&lt;/td&gt;&lt;td&gt;96.9%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class=missing&gt;&lt;td title=(Missing)&gt;(Missing)&lt;/td&gt;&lt;td&gt;131&lt;/td&gt;&lt;td&gt;0.3%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:0.3%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=20951807112946069bottom-20951807112946069extreme_values&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#20951807112946069extreme_values-20951807112946069firstn aria-controls=20951807112946069extreme_values-20951807112946069firstn role=tab data-toggle=tab&gt;Minimum 5 values&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#20951807112946069extreme_values-20951807112946069lastn aria-controls=20951807112946069extreme_values-20951807112946069lastn role=tab data-toggle=tab&gt;Maximum 5 values&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=20951807112946069extreme_values-20951807112946069firstn&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=0&gt;0&lt;/td&gt;&lt;td&gt;19&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=0.01&gt;0.01&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:10.5%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=0.013&gt;0.013&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:5.3%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=0.02&gt;0.02&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:5.3%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=0.03&gt;0.03&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:5.3%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=20951807112946069extreme_values-20951807112946069lastn&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=60000000&gt;60000000&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=58200000&gt;58200000&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=50000000&gt;50000000&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=30000000&gt;30000000&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=28000000&gt;28000000&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;a class=&quot;anchor-pos anchor-pos-variable&quot; id=pp_var_-8955005718254123387&gt;&lt;/a&gt;&lt;div class=variable&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4 title=fall&gt;&lt;a href=#pp_var_-8955005718254123387&gt;fall&lt;/a&gt;&lt;br&gt;&lt;small&gt;Categorical&lt;/small&gt;&lt;/p&gt;&lt;p class=variable-description&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Distinct&lt;/th&gt;&lt;td&gt;2&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct (%)&lt;/th&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Memory size&lt;/th&gt;&lt;td&gt;357.2 KiB&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;div class=&quot;col-sm- collapse in&quot; id=minifreqtable&gt;&lt;table class=&quot;mini freq&quot;&gt;&lt;tr class&gt;&lt;th width=50%&gt; Found &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:100.0% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; 44609&amp;nbsp; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; Fell &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:2.5% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; &amp;nbsp; &lt;/div&gt; 1117 &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;col-sm-12 text-right&quot;&gt;&lt;button class=&quot;btn btn-default btn-sm&quot; data-toggle=collapse data-target=&quot;#bottom--8955005718254123387, #minifreqtable-8955005718254123387&quot; aria-expanded=true aria-controls=collapseExample&gt;Toggle details&lt;/button&gt;&lt;/div&gt;&lt;div id=bottom--8955005718254123387 class=collapse&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#-8955005718254123387bottom--8955005718254123387frequencies aria-controls=-8955005718254123387bottom--8955005718254123387frequencies role=tab data-toggle=tab&gt;Frequencies&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-8955005718254123387bottom--8955005718254123387tbl aria-controls=-8955005718254123387bottom--8955005718254123387tbl role=tab data-toggle=tab&gt;Length&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=-8955005718254123387bottom--8955005718254123387frequencies&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#-8955005718254123387frequencies--8955005718254123387common_values aria-controls=-8955005718254123387frequencies--8955005718254123387common_values role=tab data-toggle=tab&gt;Common Values&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-8955005718254123387frequencies--8955005718254123387tbl aria-controls=-8955005718254123387frequencies--8955005718254123387tbl role=tab data-toggle=tab&gt;Overview&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-8955005718254123387frequencies--8955005718254123387pie_chart aria-controls=-8955005718254123387frequencies--8955005718254123387pie_chart role=tab data-toggle=tab&gt;Chart&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=-8955005718254123387frequencies--8955005718254123387common_values&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=Found&gt;Found&lt;/td&gt;&lt;td&gt;44609&lt;/td&gt;&lt;td&gt;97.6%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=Fell&gt;Fell&lt;/td&gt;&lt;td&gt;1117&lt;/td&gt;&lt;td&gt;2.4%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:2.5%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-8955005718254123387frequencies--8955005718254123387tbl&gt;&lt;div class=col-sm-6&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=288pt version=1.1 viewbox=&quot;0 0 432 288&quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;defs&gt;&lt;style type=text/css&gt;\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" &lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 288 \n",
"L 432 288 \n",
"L 432 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 51.175 237.443457 \n",
"L 421.2 237.443457 \n",
"L 421.2 10.8 \n",
"L 51.175 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;defs&gt;&lt;path id=DejaVuSans-48 d=&quot;M 31.78125 66.40625 \n",
"Q 24.171875 66.40625 20.328125 58.90625 \n",
"Q 16.5 51.421875 16.5 36.375 \n",
"Q 16.5 21.390625 20.328125 13.890625 \n",
"Q 24.171875 6.390625 31.78125 6.390625 \n",
"Q 39.453125 6.390625 43.28125 13.890625 \n",
"Q 47.125 21.390625 47.125 36.375 \n",
"Q 47.125 51.421875 43.28125 58.90625 \n",
"Q 39.453125 66.40625 31.78125 66.40625 \n",
"z\n",
"M 31.78125 74.21875 \n",
"Q 44.046875 74.21875 50.515625 64.515625 \n",
"Q 56.984375 54.828125 56.984375 36.375 \n",
"Q 56.984375 17.96875 50.515625 8.265625 \n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \n",
"Q 19.53125 -1.421875 13.0625 8.265625 \n",
"Q 6.59375 17.96875 6.59375 36.375 \n",
"Q 6.59375 54.828125 13.0625 64.515625 \n",
"Q 19.53125 74.21875 31.78125 74.21875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(59.056635 257.815331)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;defs&gt;&lt;path id=DejaVuSans-49 d=&quot;M 12.40625 8.296875 \n",
"L 28.515625 8.296875 \n",
"L 28.515625 63.921875 \n",
"L 10.984375 60.40625 \n",
"L 10.984375 69.390625 \n",
"L 28.421875 72.90625 \n",
"L 38.28125 72.90625 \n",
"L 38.28125 8.296875 \n",
"L 54.390625 8.296875 \n",
"L 54.390625 0 \n",
"L 12.40625 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(127.403124 275.811198)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;defs&gt;&lt;path id=DejaVuSans-50 d=&quot;M 19.1875 8.296875 \n",
"L 53.609375 8.296875 \n",
"L 53.609375 0 \n",
"L 7.328125 0 \n",
"L 7.328125 8.296875 \n",
"Q 12.9375 14.109375 22.625 23.890625 \n",
"Q 32.328125 33.6875 34.8125 36.53125 \n",
"Q 39.546875 41.84375 41.421875 45.53125 \n",
"Q 43.3125 49.21875 43.3125 52.78125 \n",
"Q 43.3125 58.59375 39.234375 62.25 \n",
"Q 35.15625 65.921875 28.609375 65.921875 \n",
"Q 23.96875 65.921875 18.8125 64.3125 \n",
"Q 13.671875 62.703125 7.8125 59.421875 \n",
"L 7.8125 69.390625 \n",
"Q 13.765625 71.78125 18.9375 73 \n",
"Q 24.125 74.21875 28.421875 74.21875 \n",
"Q 39.75 74.21875 46.484375 68.546875 \n",
"Q 53.21875 62.890625 53.21875 53.421875 \n",
"Q 53.21875 48.921875 51.53125 44.890625 \n",
"Q 49.859375 40.875 45.40625 35.40625 \n",
"Q 44.1875 33.984375 37.640625 27.21875 \n",
"Q 31.109375 20.453125 19.1875 8.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(204.747547 275.811198)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;defs&gt;&lt;path id=DejaVuSans-51 d=&quot;M 40.578125 39.3125 \n",
"Q 47.65625 37.796875 51.625 33 \n",
"Q 55.609375 28.21875 55.609375 21.1875 \n",
"Q 55.609375 10.40625 48.1875 4.484375 \n",
"Q 40.765625 -1.421875 27.09375 -1.421875 \n",
"Q 22.515625 -1.421875 17.65625 -0.515625 \n",
"Q 12.796875 0.390625 7.625 2.203125 \n",
"L 7.625 11.71875 \n",
"Q 11.71875 9.328125 16.59375 8.109375 \n",
"Q 21.484375 6.890625 26.8125 6.890625 \n",
"Q 36.078125 6.890625 40.9375 10.546875 \n",
"Q 45.796875 14.203125 45.796875 21.1875 \n",
"Q 45.796875 27.640625 41.28125 31.265625 \n",
"Q 36.765625 34.90625 28.71875 34.90625 \n",
"L 20.21875 34.90625 \n",
"L 20.21875 43.015625 \n",
"L 29.109375 43.015625 \n",
"Q 36.375 43.015625 40.234375 45.921875 \n",
"Q 44.09375 48.828125 44.09375 54.296875 \n",
"Q 44.09375 59.90625 40.109375 62.90625 \n",
"Q 36.140625 65.921875 28.71875 65.921875 \n",
"Q 24.65625 65.921875 20.015625 65.03125 \n",
"Q 15.375 64.15625 9.8125 62.3125 \n",
"L 9.8125 71.09375 \n",
"Q 15.4375 72.65625 20.34375 73.4375 \n",
"Q 25.25 74.21875 29.59375 74.21875 \n",
"Q 40.828125 74.21875 47.359375 69.109375 \n",
"Q 53.90625 64.015625 53.90625 55.328125 \n",
"Q 53.90625 49.265625 50.4375 45.09375 \n",
"Q 46.96875 40.921875 40.578125 39.3125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(282.09197 275.811198)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-51 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;defs&gt;&lt;path id=DejaVuSans-52 d=&quot;M 37.796875 64.3125 \n",
"L 12.890625 25.390625 \n",
"L 37.796875 25.390625 \n",
"z\n",
"M 35.203125 72.90625 \n",
"L 47.609375 72.90625 \n",
"L 47.609375 25.390625 \n",
"L 58.015625 25.390625 \n",
"L 58.015625 17.1875 \n",
"L 47.609375 17.1875 \n",
"L 47.609375 0 \n",
"L 37.796875 0 \n",
"L 37.796875 17.1875 \n",
"L 4.890625 17.1875 \n",
"L 4.890625 26.703125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(359.436393 275.811198)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-52 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_2&gt;&lt;g id=ytick_1&gt;&lt;g id=text_6&gt;&lt;defs&gt;&lt;path id=DejaVuSans-46 d=&quot;M 10.6875 12.40625 \n",
"L 21 12.40625 \n",
"L 21 0 \n",
"L 10.6875 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.771875 241.242676)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_2&gt;&lt;g id=text_7&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.771875 198.072493)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-50 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_3&gt;&lt;g id=text_8&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.771875 154.902311)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-52 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_4&gt;&lt;g id=text_9&gt;&lt;defs&gt;&lt;path id=DejaVuSans-54 d=&quot;M 33.015625 40.375 \n",
"Q 26.375 40.375 22.484375 35.828125 \n",
"Q 18.609375 31.296875 18.609375 23.390625 \n",
"Q 18.609375 15.53125 22.484375 10.953125 \n",
"Q 26.375 6.390625 33.015625 6.390625 \n",
"Q 39.65625 6.390625 43.53125 10.953125 \n",
"Q 47.40625 15.53125 47.40625 23.390625 \n",
"Q 47.40625 31.296875 43.53125 35.828125 \n",
"Q 39.65625 40.375 33.015625 40.375 \n",
"z\n",
"M 52.59375 71.296875 \n",
"L 52.59375 62.3125 \n",
"Q 48.875 64.0625 45.09375 64.984375 \n",
"Q 41.3125 65.921875 37.59375 65.921875 \n",
"Q 27.828125 65.921875 22.671875 59.328125 \n",
"Q 17.53125 52.734375 16.796875 39.40625 \n",
"Q 19.671875 43.65625 24.015625 45.921875 \n",
"Q 28.375 48.1875 33.59375 48.1875 \n",
"Q 44.578125 48.1875 50.953125 41.515625 \n",
"Q 57.328125 34.859375 57.328125 23.390625 \n",
"Q 57.328125 12.15625 50.6875 5.359375 \n",
"Q 44.046875 -1.421875 33.015625 -1.421875 \n",
"Q 20.359375 -1.421875 13.671875 8.265625 \n",
"Q 6.984375 17.96875 6.984375 36.375 \n",
"Q 6.984375 53.65625 15.1875 63.9375 \n",
"Q 23.390625 74.21875 37.203125 74.21875 \n",
"Q 40.921875 74.21875 44.703125 73.484375 \n",
"Q 48.484375 72.75 52.59375 71.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.771875 111.732129)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-54 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_5&gt;&lt;g id=text_10&gt;&lt;defs&gt;&lt;path id=DejaVuSans-56 d=&quot;M 31.78125 34.625 \n",
"Q 24.75 34.625 20.71875 30.859375 \n",
"Q 16.703125 27.09375 16.703125 20.515625 \n",
"Q 16.703125 13.921875 20.71875 10.15625 \n",
"Q 24.75 6.390625 31.78125 6.390625 \n",
"Q 38.8125 6.390625 42.859375 10.171875 \n",
"Q 46.921875 13.96875 46.921875 20.515625 \n",
"Q 46.921875 27.09375 42.890625 30.859375 \n",
"Q 38.875 34.625 31.78125 34.625 \n",
"z\n",
"M 21.921875 38.8125 \n",
"Q 15.578125 40.375 12.03125 44.71875 \n",
"Q 8.5 49.078125 8.5 55.328125 \n",
"Q 8.5 64.0625 14.71875 69.140625 \n",
"Q 20.953125 74.21875 31.78125 74.21875 \n",
"Q 42.671875 74.21875 48.875 69.140625 \n",
"Q 55.078125 64.0625 55.078125 55.328125 \n",
"Q 55.078125 49.078125 51.53125 44.71875 \n",
"Q 48 40.375 41.703125 38.8125 \n",
"Q 48.828125 37.15625 52.796875 32.3125 \n",
"Q 56.78125 27.484375 56.78125 20.515625 \n",
"Q 56.78125 9.90625 50.3125 4.234375 \n",
"Q 43.84375 -1.421875 31.78125 -1.421875 \n",
"Q 19.734375 -1.421875 13.25 4.234375 \n",
"Q 6.78125 9.90625 6.78125 20.515625 \n",
"Q 6.78125 27.484375 10.78125 32.3125 \n",
"Q 14.796875 37.15625 21.921875 38.8125 \n",
"z\n",
"M 18.3125 54.390625 \n",
"Q 18.3125 48.734375 21.84375 45.5625 \n",
"Q 25.390625 42.390625 31.78125 42.390625 \n",
"Q 38.140625 42.390625 41.71875 45.5625 \n",
"Q 45.3125 48.734375 45.3125 54.390625 \n",
"Q 45.3125 60.0625 41.71875 63.234375 \n",
"Q 38.140625 66.40625 31.78125 66.40625 \n",
"Q 25.390625 66.40625 21.84375 63.234375 \n",
"Q 18.3125 60.0625 18.3125 54.390625 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.771875 68.561947)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-56 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_6&gt;&lt;g id=text_11&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.771875 25.391764)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_12&gt;&lt;defs&gt;&lt;path id=DejaVuSans-70 d=&quot;M 9.8125 72.90625 \n",
"L 51.703125 72.90625 \n",
"L 51.703125 64.59375 \n",
"L 19.671875 64.59375 \n",
"L 19.671875 43.109375 \n",
"L 48.578125 43.109375 \n",
"L 48.578125 34.8125 \n",
"L 19.671875 34.8125 \n",
"L 19.671875 0 \n",
"L 9.8125 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-114 d=&quot;M 41.109375 46.296875 \n",
"Q 39.59375 47.171875 37.8125 47.578125 \n",
"Q 36.03125 48 33.890625 48 \n",
"Q 26.265625 48 22.1875 43.046875 \n",
"Q 18.109375 38.09375 18.109375 28.8125 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 20.953125 51.171875 25.484375 53.578125 \n",
"Q 30.03125 56 36.53125 56 \n",
"Q 37.453125 56 38.578125 55.875 \n",
"Q 39.703125 55.765625 41.0625 55.515625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-101 d=&quot;M 56.203125 29.59375 \n",
"L 56.203125 25.203125 \n",
"L 14.890625 25.203125 \n",
"Q 15.484375 15.921875 20.484375 11.0625 \n",
"Q 25.484375 6.203125 34.421875 6.203125 \n",
"Q 39.59375 6.203125 44.453125 7.46875 \n",
"Q 49.3125 8.734375 54.109375 11.28125 \n",
"L 54.109375 2.78125 \n",
"Q 49.265625 0.734375 44.1875 -0.34375 \n",
"Q 39.109375 -1.421875 33.890625 -1.421875 \n",
"Q 20.796875 -1.421875 13.15625 6.1875 \n",
"Q 5.515625 13.8125 5.515625 26.8125 \n",
"Q 5.515625 40.234375 12.765625 48.109375 \n",
"Q 20.015625 56 32.328125 56 \n",
"Q 43.359375 56 49.78125 48.890625 \n",
"Q 56.203125 41.796875 56.203125 29.59375 \n",
"z\n",
"M 47.21875 32.234375 \n",
"Q 47.125 39.59375 43.09375 43.984375 \n",
"Q 39.0625 48.390625 32.421875 48.390625 \n",
"Q 24.90625 48.390625 20.390625 44.140625 \n",
"Q 15.875 39.890625 15.1875 32.171875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-113 d=&quot;M 14.796875 27.296875 \n",
"Q 14.796875 17.390625 18.875 11.75 \n",
"Q 22.953125 6.109375 30.078125 6.109375 \n",
"Q 37.203125 6.109375 41.296875 11.75 \n",
"Q 45.40625 17.390625 45.40625 27.296875 \n",
"Q 45.40625 37.203125 41.296875 42.84375 \n",
"Q 37.203125 48.484375 30.078125 48.484375 \n",
"Q 22.953125 48.484375 18.875 42.84375 \n",
"Q 14.796875 37.203125 14.796875 27.296875 \n",
"z\n",
"M 45.40625 8.203125 \n",
"Q 42.578125 3.328125 38.25 0.953125 \n",
"Q 33.9375 -1.421875 27.875 -1.421875 \n",
"Q 17.96875 -1.421875 11.734375 6.484375 \n",
"Q 5.515625 14.40625 5.515625 27.296875 \n",
"Q 5.515625 40.1875 11.734375 48.09375 \n",
"Q 17.96875 56 27.875 56 \n",
"Q 33.9375 56 38.25 53.625 \n",
"Q 42.578125 51.265625 45.40625 46.390625 \n",
"L 45.40625 54.6875 \n",
"L 54.390625 54.6875 \n",
"L 54.390625 -20.796875 \n",
"L 45.40625 -20.796875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-117 d=&quot;M 8.5 21.578125 \n",
"L 8.5 54.6875 \n",
"L 17.484375 54.6875 \n",
"L 17.484375 21.921875 \n",
"Q 17.484375 14.15625 20.5 10.265625 \n",
"Q 23.53125 6.390625 29.59375 6.390625 \n",
"Q 36.859375 6.390625 41.078125 11.03125 \n",
"Q 45.3125 15.671875 45.3125 23.6875 \n",
"L 45.3125 54.6875 \n",
"L 54.296875 54.6875 \n",
"L 54.296875 0 \n",
"L 45.3125 0 \n",
"L 45.3125 8.40625 \n",
"Q 42.046875 3.421875 37.71875 1 \n",
"Q 33.40625 -1.421875 27.6875 -1.421875 \n",
"Q 18.265625 -1.421875 13.375 4.4375 \n",
"Q 8.5 10.296875 8.5 21.578125 \n",
"z\n",
"M 31.109375 56 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-110 d=&quot;M 54.890625 33.015625 \n",
"L 54.890625 0 \n",
"L 45.90625 0 \n",
"L 45.90625 32.71875 \n",
"Q 45.90625 40.484375 42.875 44.328125 \n",
"Q 39.84375 48.1875 33.796875 48.1875 \n",
"Q 26.515625 48.1875 22.3125 43.546875 \n",
"Q 18.109375 38.921875 18.109375 30.90625 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 21.34375 51.125 25.703125 53.5625 \n",
"Q 30.078125 56 35.796875 56 \n",
"Q 45.21875 56 50.046875 50.171875 \n",
"Q 54.890625 44.34375 54.890625 33.015625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-99 d=&quot;M 48.78125 52.59375 \n",
"L 48.78125 44.1875 \n",
"Q 44.96875 46.296875 41.140625 47.34375 \n",
"Q 37.3125 48.390625 33.40625 48.390625 \n",
"Q 24.65625 48.390625 19.8125 42.84375 \n",
"Q 14.984375 37.3125 14.984375 27.296875 \n",
"Q 14.984375 17.28125 19.8125 11.734375 \n",
"Q 24.65625 6.203125 33.40625 6.203125 \n",
"Q 37.3125 6.203125 41.140625 7.25 \n",
"Q 44.96875 8.296875 48.78125 10.40625 \n",
"L 48.78125 2.09375 \n",
"Q 45.015625 0.34375 40.984375 -0.53125 \n",
"Q 36.96875 -1.421875 32.421875 -1.421875 \n",
"Q 20.0625 -1.421875 12.78125 6.34375 \n",
"Q 5.515625 14.109375 5.515625 27.296875 \n",
"Q 5.515625 40.671875 12.859375 48.328125 \n",
"Q 20.21875 56 33.015625 56 \n",
"Q 37.15625 56 41.109375 55.140625 \n",
"Q 45.0625 54.296875 48.78125 52.59375 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-121 d=&quot;M 32.171875 -5.078125 \n",
"Q 28.375 -14.84375 24.75 -17.8125 \n",
"Q 21.140625 -20.796875 15.09375 -20.796875 \n",
"L 7.90625 -20.796875 \n",
"L 7.90625 -13.28125 \n",
"L 13.1875 -13.28125 \n",
"Q 16.890625 -13.28125 18.9375 -11.515625 \n",
"Q 21 -9.765625 23.484375 -3.21875 \n",
"L 25.09375 0.875 \n",
"L 2.984375 54.6875 \n",
"L 12.5 54.6875 \n",
"L 29.59375 11.921875 \n",
"L 46.6875 54.6875 \n",
"L 56.203125 54.6875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(18.484219 152.534385)rotate(-90)scale(0.11 -0.11)&quot;&gt;&lt;use xlink:href=#DejaVuSans-70 /&gt;&lt;use x=50.269531 xlink:href=#DejaVuSans-114 /&gt;&lt;use x=89.132812 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=150.65625 xlink:href=#DejaVuSans-113 /&gt;&lt;use x=214.132812 xlink:href=#DejaVuSans-117 /&gt;&lt;use x=277.511719 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=339.035156 xlink:href=#DejaVuSans-110 /&gt;&lt;use x=402.414062 xlink:href=#DejaVuSans-99 /&gt;&lt;use x=457.394531 xlink:href=#DejaVuSans-121 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#p9e6355b63d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 67.994318 237.443457 \n",
"L 236.1875 237.443457 \n",
"L 236.1875 21.592546 \n",
"L 67.994318 21.592546 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#p9e6355b63d) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 236.1875 237.443457 \n",
"L 404.380682 237.443457 \n",
"L 404.380682 21.592546 \n",
"L 236.1875 21.592546 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path style=fill:none; d=&quot;M 51.175 237.443457 \n",
"L 51.175 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path style=fill:none; d=&quot;M 421.2 237.443457 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path style=fill:none; d=&quot;M 51.175 237.443457 \n",
"L 421.2 237.443457 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path style=fill:none; d=&quot;M 51.175 10.8 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=p9e6355b63d&gt;&lt;rect height=226.643457 width=370.025 x=51.175 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt; Frequencies of value counts &lt;/div&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Unique&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Unique&lt;/th&gt;&lt;td&gt;0 &lt;span class=&quot;badge pull-right&quot; style=color:#fff;background-color:#337ab7; title=&quot;The number of unique values (all values that occur exactly once in the dataset).&quot;&gt;?&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Unique (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-8955005718254123387frequencies--8955005718254123387pie_chart&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=396pt version=1.1 viewbox=&quot;0 0 576 396&quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;defs&gt;&lt;style type=text/css&gt;\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" &lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 396 \n",
"L 576 396 \n",
"L 576 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=matplotlib.axis_1 /&gt;&lt;g id=matplotlib.axis_2 /&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#1f77b4;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 414.792 197.01 \n",
"C 414.792 181.69131 411.848715 166.514327 406.122538 152.306119 \n",
"C 400.396362 138.097911 391.993235 125.121347 381.371086 114.083584 \n",
"C 370.748937 103.045821 358.104287 94.151071 344.126207 87.884051 \n",
"C 330.148127 81.617032 315.095226 78.09369 299.787812 77.506032 \n",
"C 284.480399 76.918373 269.201676 79.277269 254.784258 84.454173 \n",
"C 240.366841 89.631076 227.077466 97.530208 215.640339 107.721105 \n",
"C 204.203212 117.912002 194.829932 130.206122 188.031296 143.933496 \n",
"C 181.232659 157.66087 177.134449 172.567528 175.959997 187.84113 \n",
"C 174.785545 203.114732 176.55658 218.4727 181.176588 233.078103 \n",
"C 185.796597 247.683505 193.180105 261.266125 202.924747 273.085779 \n",
"C 212.669389 284.905432 224.59488 294.743442 238.051338 302.063686 \n",
"C 251.507797 309.38393 266.246266 314.050976 281.46357 315.810492 \n",
"C 296.680875 317.570009 312.095479 316.389443 326.867364 312.333131 \n",
"C 341.639249 308.276818 355.495119 301.419805 367.679898 292.135764 \n",
"C 379.864676 282.851722 390.152933 271.312418 397.984008 258.146685 \n",
"C 405.815082 244.980952 411.044093 230.432371 413.386084 215.293767 \n",
"L 295.2 197.01 \n",
"L 414.792 197.01 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path style=fill:#ff7f0e;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 413.386084 215.293767 \n",
"C 413.853859 212.27007 414.205424 209.229535 414.440002 206.178875 \n",
"C 414.674581 203.128215 414.792 200.069676 414.792 197.01001 \n",
"L 295.2 197.01 \n",
"L 413.386084 215.293767 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=text_1&gt;&lt;defs&gt;&lt;path id=DejaVuSans-57 d=&quot;M 10.984375 1.515625 \n",
"L 10.984375 10.5 \n",
"Q 14.703125 8.734375 18.5 7.8125 \n",
"Q 22.3125 6.890625 25.984375 6.890625 \n",
"Q 35.75 6.890625 40.890625 13.453125 \n",
"Q 46.046875 20.015625 46.78125 33.40625 \n",
"Q 43.953125 29.203125 39.59375 26.953125 \n",
"Q 35.25 24.703125 29.984375 24.703125 \n",
"Q 19.046875 24.703125 12.671875 31.3125 \n",
"Q 6.296875 37.9375 6.296875 49.421875 \n",
"Q 6.296875 60.640625 12.9375 67.421875 \n",
"Q 19.578125 74.21875 30.609375 74.21875 \n",
"Q 43.265625 74.21875 49.921875 64.515625 \n",
"Q 56.59375 54.828125 56.59375 36.375 \n",
"Q 56.59375 19.140625 48.40625 8.859375 \n",
"Q 40.234375 -1.421875 26.421875 -1.421875 \n",
"Q 22.703125 -1.421875 18.890625 -0.6875 \n",
"Q 15.09375 0.046875 10.984375 1.515625 \n",
"z\n",
"M 30.609375 32.421875 \n",
"Q 37.25 32.421875 41.125 36.953125 \n",
"Q 45.015625 41.5 45.015625 49.421875 \n",
"Q 45.015625 57.28125 41.125 61.84375 \n",
"Q 37.25 66.40625 30.609375 66.40625 \n",
"Q 23.96875 66.40625 20.09375 61.84375 \n",
"Q 16.21875 57.28125 16.21875 49.421875 \n",
"Q 16.21875 41.5 20.09375 36.953125 \n",
"Q 23.96875 32.421875 30.609375 32.421875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-55 d=&quot;M 8.203125 72.90625 \n",
"L 55.078125 72.90625 \n",
"L 55.078125 68.703125 \n",
"L 28.609375 0 \n",
"L 18.3125 0 \n",
"L 43.21875 64.59375 \n",
"L 8.203125 64.59375 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-46 d=&quot;M 10.6875 12.40625 \n",
"L 21 12.40625 \n",
"L 21 0 \n",
"L 10.6875 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-54 d=&quot;M 33.015625 40.375 \n",
"Q 26.375 40.375 22.484375 35.828125 \n",
"Q 18.609375 31.296875 18.609375 23.390625 \n",
"Q 18.609375 15.53125 22.484375 10.953125 \n",
"Q 26.375 6.390625 33.015625 6.390625 \n",
"Q 39.65625 6.390625 43.53125 10.953125 \n",
"Q 47.40625 15.53125 47.40625 23.390625 \n",
"Q 47.40625 31.296875 43.53125 35.828125 \n",
"Q 39.65625 40.375 33.015625 40.375 \n",
"z\n",
"M 52.59375 71.296875 \n",
"L 52.59375 62.3125 \n",
"Q 48.875 64.0625 45.09375 64.984375 \n",
"Q 41.3125 65.921875 37.59375 65.921875 \n",
"Q 27.828125 65.921875 22.671875 59.328125 \n",
"Q 17.53125 52.734375 16.796875 39.40625 \n",
"Q 19.671875 43.65625 24.015625 45.921875 \n",
"Q 28.375 48.1875 33.59375 48.1875 \n",
"Q 44.578125 48.1875 50.953125 41.515625 \n",
"Q 57.328125 34.859375 57.328125 23.390625 \n",
"Q 57.328125 12.15625 50.6875 5.359375 \n",
"Q 44.046875 -1.421875 33.015625 -1.421875 \n",
"Q 20.359375 -1.421875 13.671875 8.265625 \n",
"Q 6.984375 17.96875 6.984375 36.375 \n",
"Q 6.984375 53.65625 15.1875 63.9375 \n",
"Q 23.390625 74.21875 37.203125 74.21875 \n",
"Q 40.921875 74.21875 44.703125 73.484375 \n",
"Q 48.484375 72.75 52.59375 71.296875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-37 d=&quot;M 72.703125 32.078125 \n",
"Q 68.453125 32.078125 66.03125 28.46875 \n",
"Q 63.625 24.859375 63.625 18.40625 \n",
"Q 63.625 12.0625 66.03125 8.421875 \n",
"Q 68.453125 4.78125 72.703125 4.78125 \n",
"Q 76.859375 4.78125 79.265625 8.421875 \n",
"Q 81.6875 12.0625 81.6875 18.40625 \n",
"Q 81.6875 24.8125 79.265625 28.4375 \n",
"Q 76.859375 32.078125 72.703125 32.078125 \n",
"z\n",
"M 72.703125 38.28125 \n",
"Q 80.421875 38.28125 84.953125 32.90625 \n",
"Q 89.5 27.546875 89.5 18.40625 \n",
"Q 89.5 9.28125 84.9375 3.921875 \n",
"Q 80.375 -1.421875 72.703125 -1.421875 \n",
"Q 64.890625 -1.421875 60.34375 3.921875 \n",
"Q 55.8125 9.28125 55.8125 18.40625 \n",
"Q 55.8125 27.59375 60.375 32.9375 \n",
"Q 64.9375 38.28125 72.703125 38.28125 \n",
"z\n",
"M 22.3125 68.015625 \n",
"Q 18.109375 68.015625 15.6875 64.375 \n",
"Q 13.28125 60.75 13.28125 54.390625 \n",
"Q 13.28125 47.953125 15.671875 44.328125 \n",
"Q 18.0625 40.71875 22.3125 40.71875 \n",
"Q 26.5625 40.71875 28.96875 44.328125 \n",
"Q 31.390625 47.953125 31.390625 54.390625 \n",
"Q 31.390625 60.6875 28.953125 64.34375 \n",
"Q 26.515625 68.015625 22.3125 68.015625 \n",
"z\n",
"M 66.40625 74.21875 \n",
"L 74.21875 74.21875 \n",
"L 28.609375 -1.421875 \n",
"L 20.796875 -1.421875 \n",
"z\n",
"M 22.3125 74.21875 \n",
"Q 30.03125 74.21875 34.609375 68.875 \n",
"Q 39.203125 63.53125 39.203125 54.390625 \n",
"Q 39.203125 45.171875 34.640625 39.84375 \n",
"Q 30.078125 34.515625 22.3125 34.515625 \n",
"Q 14.546875 34.515625 10.03125 39.859375 \n",
"Q 5.515625 45.21875 5.515625 54.390625 \n",
"Q 5.515625 63.484375 10.046875 68.84375 \n",
"Q 14.59375 74.21875 22.3125 74.21875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#ffffff; transform=&quot;translate(207.772405 188.669147)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-57 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-55 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=159.033203 xlink:href=#DejaVuSans-54 /&gt;&lt;use x=222.65625 xlink:href=#DejaVuSans-37 /&gt;&lt;/g&gt;&lt;defs&gt;&lt;path id=DejaVuSans-40 d=&quot;M 31 75.875 \n",
"Q 24.46875 64.65625 21.28125 53.65625 \n",
"Q 18.109375 42.671875 18.109375 31.390625 \n",
"Q 18.109375 20.125 21.3125 9.0625 \n",
"Q 24.515625 -2 31 -13.1875 \n",
"L 23.1875 -13.1875 \n",
"Q 15.875 -1.703125 12.234375 9.375 \n",
"Q 8.59375 20.453125 8.59375 31.390625 \n",
"Q 8.59375 42.28125 12.203125 53.3125 \n",
"Q 15.828125 64.359375 23.1875 75.875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-52 d=&quot;M 37.796875 64.3125 \n",
"L 12.890625 25.390625 \n",
"L 37.796875 25.390625 \n",
"z\n",
"M 35.203125 72.90625 \n",
"L 47.609375 72.90625 \n",
"L 47.609375 25.390625 \n",
"L 58.015625 25.390625 \n",
"L 58.015625 17.1875 \n",
"L 47.609375 17.1875 \n",
"L 47.609375 0 \n",
"L 37.796875 0 \n",
"L 37.796875 17.1875 \n",
"L 4.890625 17.1875 \n",
"L 4.890625 26.703125 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-48 d=&quot;M 31.78125 66.40625 \n",
"Q 24.171875 66.40625 20.328125 58.90625 \n",
"Q 16.5 51.421875 16.5 36.375 \n",
"Q 16.5 21.390625 20.328125 13.890625 \n",
"Q 24.171875 6.390625 31.78125 6.390625 \n",
"Q 39.453125 6.390625 43.28125 13.890625 \n",
"Q 47.125 21.390625 47.125 36.375 \n",
"Q 47.125 51.421875 43.28125 58.90625 \n",
"Q 39.453125 66.40625 31.78125 66.40625 \n",
"z\n",
"M 31.78125 74.21875 \n",
"Q 44.046875 74.21875 50.515625 64.515625 \n",
"Q 56.984375 54.828125 56.984375 36.375 \n",
"Q 56.984375 17.96875 50.515625 8.265625 \n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \n",
"Q 19.53125 -1.421875 13.0625 8.265625 \n",
"Q 6.59375 17.96875 6.59375 36.375 \n",
"Q 6.59375 54.828125 13.0625 64.515625 \n",
"Q 19.53125 74.21875 31.78125 74.21875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-56 d=&quot;M 31.78125 34.625 \n",
"Q 24.75 34.625 20.71875 30.859375 \n",
"Q 16.703125 27.09375 16.703125 20.515625 \n",
"Q 16.703125 13.921875 20.71875 10.15625 \n",
"Q 24.75 6.390625 31.78125 6.390625 \n",
"Q 38.8125 6.390625 42.859375 10.171875 \n",
"Q 46.921875 13.96875 46.921875 20.515625 \n",
"Q 46.921875 27.09375 42.890625 30.859375 \n",
"Q 38.875 34.625 31.78125 34.625 \n",
"z\n",
"M 21.921875 38.8125 \n",
"Q 15.578125 40.375 12.03125 44.71875 \n",
"Q 8.5 49.078125 8.5 55.328125 \n",
"Q 8.5 64.0625 14.71875 69.140625 \n",
"Q 20.953125 74.21875 31.78125 74.21875 \n",
"Q 42.671875 74.21875 48.875 69.140625 \n",
"Q 55.078125 64.0625 55.078125 55.328125 \n",
"Q 55.078125 49.078125 51.53125 44.71875 \n",
"Q 48 40.375 41.703125 38.8125 \n",
"Q 48.828125 37.15625 52.796875 32.3125 \n",
"Q 56.78125 27.484375 56.78125 20.515625 \n",
"Q 56.78125 9.90625 50.3125 4.234375 \n",
"Q 43.84375 -1.421875 31.78125 -1.421875 \n",
"Q 19.734375 -1.421875 13.25 4.234375 \n",
"Q 6.78125 9.90625 6.78125 20.515625 \n",
"Q 6.78125 27.484375 10.78125 32.3125 \n",
"Q 14.796875 37.15625 21.921875 38.8125 \n",
"z\n",
"M 18.3125 54.390625 \n",
"Q 18.3125 48.734375 21.84375 45.5625 \n",
"Q 25.390625 42.390625 31.78125 42.390625 \n",
"Q 38.140625 42.390625 41.71875 45.5625 \n",
"Q 45.3125 48.734375 45.3125 54.390625 \n",
"Q 45.3125 60.0625 41.71875 63.234375 \n",
"Q 38.140625 66.40625 31.78125 66.40625 \n",
"Q 25.390625 66.40625 21.84375 63.234375 \n",
"Q 18.3125 60.0625 18.3125 54.390625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-41 d=&quot;M 8.015625 75.875 \n",
"L 15.828125 75.875 \n",
"Q 23.140625 64.359375 26.78125 53.3125 \n",
"Q 30.421875 42.28125 30.421875 31.390625 \n",
"Q 30.421875 20.453125 26.78125 9.375 \n",
"Q 23.140625 -1.703125 15.828125 -13.1875 \n",
"L 8.015625 -13.1875 \n",
"Q 14.5 -2 17.703125 9.0625 \n",
"Q 20.90625 20.125 20.90625 31.390625 \n",
"Q 20.90625 42.671875 17.703125 53.65625 \n",
"Q 14.5 64.65625 8.015625 75.875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#ffffff; transform=&quot;translate(203.848186 199.866959)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-40 /&gt;&lt;use x=39.013672 xlink:href=#DejaVuSans-52 /&gt;&lt;use x=102.636719 xlink:href=#DejaVuSans-52 /&gt;&lt;use x=166.259766 xlink:href=#DejaVuSans-54 /&gt;&lt;use x=229.882812 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=293.505859 xlink:href=#DejaVuSans-56 /&gt;&lt;use x=357.128906 xlink:href=#DejaVuSans-41 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_2&gt;&lt;defs&gt;&lt;path id=DejaVuSans-50 d=&quot;M 19.1875 8.296875 \n",
"L 53.609375 8.296875 \n",
"L 53.609375 0 \n",
"L 7.328125 0 \n",
"L 7.328125 8.296875 \n",
"Q 12.9375 14.109375 22.625 23.890625 \n",
"Q 32.328125 33.6875 34.8125 36.53125 \n",
"Q 39.546875 41.84375 41.421875 45.53125 \n",
"Q 43.3125 49.21875 43.3125 52.78125 \n",
"Q 43.3125 58.59375 39.234375 62.25 \n",
"Q 35.15625 65.921875 28.609375 65.921875 \n",
"Q 23.96875 65.921875 18.8125 64.3125 \n",
"Q 13.671875 62.703125 7.8125 59.421875 \n",
"L 7.8125 69.390625 \n",
"Q 13.765625 71.78125 18.9375 73 \n",
"Q 24.125 74.21875 28.421875 74.21875 \n",
"Q 39.75 74.21875 46.484375 68.546875 \n",
"Q 53.21875 62.890625 53.21875 53.421875 \n",
"Q 53.21875 48.921875 51.53125 44.890625 \n",
"Q 49.859375 40.875 45.40625 35.40625 \n",
"Q 44.1875 33.984375 37.640625 27.21875 \n",
"Q 31.109375 20.453125 19.1875 8.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#ffffff; transform=&quot;translate(354.041658 199.671794)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-52 /&gt;&lt;use x=159.033203 xlink:href=#DejaVuSans-37 /&gt;&lt;/g&gt;&lt;defs&gt;&lt;path id=DejaVuSans-49 d=&quot;M 12.40625 8.296875 \n",
"L 28.515625 8.296875 \n",
"L 28.515625 63.921875 \n",
"L 10.984375 60.40625 \n",
"L 10.984375 69.390625 \n",
"L 28.421875 72.90625 \n",
"L 38.28125 72.90625 \n",
"L 38.28125 8.296875 \n",
"L 54.390625 8.296875 \n",
"L 54.390625 0 \n",
"L 12.40625 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#ffffff; transform=&quot;translate(350.117439 210.869606)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-40 /&gt;&lt;use x=39.013672 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=102.636719 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=166.259766 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=229.882812 xlink:href=#DejaVuSans-55 /&gt;&lt;use x=293.505859 xlink:href=#DejaVuSans-41 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=legend_1&gt;&lt;g id=patch_4&gt;&lt;path style=fill:#ffffff;opacity:0.8;stroke:#cccccc;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 375.15875 84.87625 \n",
"L 437.69 84.87625 \n",
"Q 439.69 84.87625 439.69 82.87625 \n",
"L 439.69 54.52 \n",
"Q 439.69 52.52 437.69 52.52 \n",
"L 375.15875 52.52 \n",
"Q 373.15875 52.52 373.15875 54.52 \n",
"L 373.15875 82.87625 \n",
"Q 373.15875 84.87625 375.15875 84.87625 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path style=fill:#1f77b4;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 377.15875 64.118437 \n",
"L 397.15875 64.118437 \n",
"L 397.15875 57.118437 \n",
"L 377.15875 57.118437 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=text_3&gt;&lt;defs&gt;&lt;path id=DejaVuSans-70 d=&quot;M 9.8125 72.90625 \n",
"L 51.703125 72.90625 \n",
"L 51.703125 64.59375 \n",
"L 19.671875 64.59375 \n",
"L 19.671875 43.109375 \n",
"L 48.578125 43.109375 \n",
"L 48.578125 34.8125 \n",
"L 19.671875 34.8125 \n",
"L 19.671875 0 \n",
"L 9.8125 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-111 d=&quot;M 30.609375 48.390625 \n",
"Q 23.390625 48.390625 19.1875 42.75 \n",
"Q 14.984375 37.109375 14.984375 27.296875 \n",
"Q 14.984375 17.484375 19.15625 11.84375 \n",
"Q 23.34375 6.203125 30.609375 6.203125 \n",
"Q 37.796875 6.203125 41.984375 11.859375 \n",
"Q 46.1875 17.53125 46.1875 27.296875 \n",
"Q 46.1875 37.015625 41.984375 42.703125 \n",
"Q 37.796875 48.390625 30.609375 48.390625 \n",
"z\n",
"M 30.609375 56 \n",
"Q 42.328125 56 49.015625 48.375 \n",
"Q 55.71875 40.765625 55.71875 27.296875 \n",
"Q 55.71875 13.875 49.015625 6.21875 \n",
"Q 42.328125 -1.421875 30.609375 -1.421875 \n",
"Q 18.84375 -1.421875 12.171875 6.21875 \n",
"Q 5.515625 13.875 5.515625 27.296875 \n",
"Q 5.515625 40.765625 12.171875 48.375 \n",
"Q 18.84375 56 30.609375 56 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-117 d=&quot;M 8.5 21.578125 \n",
"L 8.5 54.6875 \n",
"L 17.484375 54.6875 \n",
"L 17.484375 21.921875 \n",
"Q 17.484375 14.15625 20.5 10.265625 \n",
"Q 23.53125 6.390625 29.59375 6.390625 \n",
"Q 36.859375 6.390625 41.078125 11.03125 \n",
"Q 45.3125 15.671875 45.3125 23.6875 \n",
"L 45.3125 54.6875 \n",
"L 54.296875 54.6875 \n",
"L 54.296875 0 \n",
"L 45.3125 0 \n",
"L 45.3125 8.40625 \n",
"Q 42.046875 3.421875 37.71875 1 \n",
"Q 33.40625 -1.421875 27.6875 -1.421875 \n",
"Q 18.265625 -1.421875 13.375 4.4375 \n",
"Q 8.5 10.296875 8.5 21.578125 \n",
"z\n",
"M 31.109375 56 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-110 d=&quot;M 54.890625 33.015625 \n",
"L 54.890625 0 \n",
"L 45.90625 0 \n",
"L 45.90625 32.71875 \n",
"Q 45.90625 40.484375 42.875 44.328125 \n",
"Q 39.84375 48.1875 33.796875 48.1875 \n",
"Q 26.515625 48.1875 22.3125 43.546875 \n",
"Q 18.109375 38.921875 18.109375 30.90625 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 21.34375 51.125 25.703125 53.5625 \n",
"Q 30.078125 56 35.796875 56 \n",
"Q 45.21875 56 50.046875 50.171875 \n",
"Q 54.890625 44.34375 54.890625 33.015625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-100 d=&quot;M 45.40625 46.390625 \n",
"L 45.40625 75.984375 \n",
"L 54.390625 75.984375 \n",
"L 54.390625 0 \n",
"L 45.40625 0 \n",
"L 45.40625 8.203125 \n",
"Q 42.578125 3.328125 38.25 0.953125 \n",
"Q 33.9375 -1.421875 27.875 -1.421875 \n",
"Q 17.96875 -1.421875 11.734375 6.484375 \n",
"Q 5.515625 14.40625 5.515625 27.296875 \n",
"Q 5.515625 40.1875 11.734375 48.09375 \n",
"Q 17.96875 56 27.875 56 \n",
"Q 33.9375 56 38.25 53.625 \n",
"Q 42.578125 51.265625 45.40625 46.390625 \n",
"z\n",
"M 14.796875 27.296875 \n",
"Q 14.796875 17.390625 18.875 11.75 \n",
"Q 22.953125 6.109375 30.078125 6.109375 \n",
"Q 37.203125 6.109375 41.296875 11.75 \n",
"Q 45.40625 17.390625 45.40625 27.296875 \n",
"Q 45.40625 37.203125 41.296875 42.84375 \n",
"Q 37.203125 48.484375 30.078125 48.484375 \n",
"Q 22.953125 48.484375 18.875 42.84375 \n",
"Q 14.796875 37.203125 14.796875 27.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(405.15875 64.118437)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-70 /&gt;&lt;use x=53.894531 xlink:href=#DejaVuSans-111 /&gt;&lt;use x=115.076172 xlink:href=#DejaVuSans-117 /&gt;&lt;use x=178.455078 xlink:href=#DejaVuSans-110 /&gt;&lt;use x=241.833984 xlink:href=#DejaVuSans-100 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path style=fill:#ff7f0e;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 377.15875 78.796562 \n",
"L 397.15875 78.796562 \n",
"L 397.15875 71.796562 \n",
"L 377.15875 71.796562 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=text_4&gt;&lt;defs&gt;&lt;path id=DejaVuSans-101 d=&quot;M 56.203125 29.59375 \n",
"L 56.203125 25.203125 \n",
"L 14.890625 25.203125 \n",
"Q 15.484375 15.921875 20.484375 11.0625 \n",
"Q 25.484375 6.203125 34.421875 6.203125 \n",
"Q 39.59375 6.203125 44.453125 7.46875 \n",
"Q 49.3125 8.734375 54.109375 11.28125 \n",
"L 54.109375 2.78125 \n",
"Q 49.265625 0.734375 44.1875 -0.34375 \n",
"Q 39.109375 -1.421875 33.890625 -1.421875 \n",
"Q 20.796875 -1.421875 13.15625 6.1875 \n",
"Q 5.515625 13.8125 5.515625 26.8125 \n",
"Q 5.515625 40.234375 12.765625 48.109375 \n",
"Q 20.015625 56 32.328125 56 \n",
"Q 43.359375 56 49.78125 48.890625 \n",
"Q 56.203125 41.796875 56.203125 29.59375 \n",
"z\n",
"M 47.21875 32.234375 \n",
"Q 47.125 39.59375 43.09375 43.984375 \n",
"Q 39.0625 48.390625 32.421875 48.390625 \n",
"Q 24.90625 48.390625 20.390625 44.140625 \n",
"Q 15.875 39.890625 15.1875 32.171875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-108 d=&quot;M 9.421875 75.984375 \n",
"L 18.40625 75.984375 \n",
"L 18.40625 0 \n",
"L 9.421875 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(405.15875 78.796562)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-70 /&gt;&lt;use x=52.019531 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=113.542969 xlink:href=#DejaVuSans-108 /&gt;&lt;use x=141.326172 xlink:href=#DejaVuSans-108 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/svg&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-8955005718254123387bottom--8955005718254123387tbl&gt;&lt;div class=col-sm-6&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=288pt version=1.1 viewbox=&quot;0 0 432 288&quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;defs&gt;&lt;style type=text/css&gt;\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" &lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 288 \n",
"L 432 288 \n",
"L 432 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 66.675 248.403612 \n",
"L 421.2 248.403612 \n",
"L 421.2 10.8 \n",
"L 66.675 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;defs&gt;&lt;path id=DejaVuSans-52 d=&quot;M 37.796875 64.3125 \n",
"L 12.890625 25.390625 \n",
"L 37.796875 25.390625 \n",
"z\n",
"M 35.203125 72.90625 \n",
"L 47.609375 72.90625 \n",
"L 47.609375 25.390625 \n",
"L 58.015625 25.390625 \n",
"L 58.015625 17.1875 \n",
"L 47.609375 17.1875 \n",
"L 47.609375 0 \n",
"L 37.796875 0 \n",
"L 37.796875 17.1875 \n",
"L 4.890625 17.1875 \n",
"L 4.890625 26.703125 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-46 d=&quot;M 10.6875 12.40625 \n",
"L 21 12.40625 \n",
"L 21 0 \n",
"L 10.6875 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-48 d=&quot;M 31.78125 66.40625 \n",
"Q 24.171875 66.40625 20.328125 58.90625 \n",
"Q 16.5 51.421875 16.5 36.375 \n",
"Q 16.5 21.390625 20.328125 13.890625 \n",
"Q 24.171875 6.390625 31.78125 6.390625 \n",
"Q 39.453125 6.390625 43.28125 13.890625 \n",
"Q 47.125 21.390625 47.125 36.375 \n",
"Q 47.125 51.421875 43.28125 58.90625 \n",
"Q 39.453125 66.40625 31.78125 66.40625 \n",
"z\n",
"M 31.78125 74.21875 \n",
"Q 44.046875 74.21875 50.515625 64.515625 \n",
"Q 56.984375 54.828125 56.984375 36.375 \n",
"Q 56.984375 17.96875 50.515625 8.265625 \n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \n",
"Q 19.53125 -1.421875 13.0625 8.265625 \n",
"Q 6.59375 17.96875 6.59375 36.375 \n",
"Q 6.59375 54.828125 13.0625 64.515625 \n",
"Q 19.53125 74.21875 31.78125 74.21875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(79.118342 275.521726)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-52 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;defs&gt;&lt;path id=DejaVuSans-50 d=&quot;M 19.1875 8.296875 \n",
"L 53.609375 8.296875 \n",
"L 53.609375 0 \n",
"L 7.328125 0 \n",
"L 7.328125 8.296875 \n",
"Q 12.9375 14.109375 22.625 23.890625 \n",
"Q 32.328125 33.6875 34.8125 36.53125 \n",
"Q 39.546875 41.84375 41.421875 45.53125 \n",
"Q 43.3125 49.21875 43.3125 52.78125 \n",
"Q 43.3125 58.59375 39.234375 62.25 \n",
"Q 35.15625 65.921875 28.609375 65.921875 \n",
"Q 23.96875 65.921875 18.8125 64.3125 \n",
"Q 13.671875 62.703125 7.8125 59.421875 \n",
"L 7.8125 69.390625 \n",
"Q 13.765625 71.78125 18.9375 73 \n",
"Q 24.125 74.21875 28.421875 74.21875 \n",
"Q 39.75 74.21875 46.484375 68.546875 \n",
"Q 53.21875 62.890625 53.21875 53.421875 \n",
"Q 53.21875 48.921875 51.53125 44.890625 \n",
"Q 49.859375 40.875 45.40625 35.40625 \n",
"Q 44.1875 33.984375 37.640625 27.21875 \n",
"Q 31.109375 20.453125 19.1875 8.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(143.577433 275.521726)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-52 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-50 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;g style=fill:#262626; transform=&quot;translate(208.036524 275.521726)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-52 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-52 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;defs&gt;&lt;path id=DejaVuSans-54 d=&quot;M 33.015625 40.375 \n",
"Q 26.375 40.375 22.484375 35.828125 \n",
"Q 18.609375 31.296875 18.609375 23.390625 \n",
"Q 18.609375 15.53125 22.484375 10.953125 \n",
"Q 26.375 6.390625 33.015625 6.390625 \n",
"Q 39.65625 6.390625 43.53125 10.953125 \n",
"Q 47.40625 15.53125 47.40625 23.390625 \n",
"Q 47.40625 31.296875 43.53125 35.828125 \n",
"Q 39.65625 40.375 33.015625 40.375 \n",
"z\n",
"M 52.59375 71.296875 \n",
"L 52.59375 62.3125 \n",
"Q 48.875 64.0625 45.09375 64.984375 \n",
"Q 41.3125 65.921875 37.59375 65.921875 \n",
"Q 27.828125 65.921875 22.671875 59.328125 \n",
"Q 17.53125 52.734375 16.796875 39.40625 \n",
"Q 19.671875 43.65625 24.015625 45.921875 \n",
"Q 28.375 48.1875 33.59375 48.1875 \n",
"Q 44.578125 48.1875 50.953125 41.515625 \n",
"Q 57.328125 34.859375 57.328125 23.390625 \n",
"Q 57.328125 12.15625 50.6875 5.359375 \n",
"Q 44.046875 -1.421875 33.015625 -1.421875 \n",
"Q 20.359375 -1.421875 13.671875 8.265625 \n",
"Q 6.984375 17.96875 6.984375 36.375 \n",
"Q 6.984375 53.65625 15.1875 63.9375 \n",
"Q 23.390625 74.21875 37.203125 74.21875 \n",
"Q 40.921875 74.21875 44.703125 73.484375 \n",
"Q 48.484375 72.75 52.59375 71.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(272.495614 275.521726)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-52 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-54 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;defs&gt;&lt;path id=DejaVuSans-56 d=&quot;M 31.78125 34.625 \n",
"Q 24.75 34.625 20.71875 30.859375 \n",
"Q 16.703125 27.09375 16.703125 20.515625 \n",
"Q 16.703125 13.921875 20.71875 10.15625 \n",
"Q 24.75 6.390625 31.78125 6.390625 \n",
"Q 38.8125 6.390625 42.859375 10.171875 \n",
"Q 46.921875 13.96875 46.921875 20.515625 \n",
"Q 46.921875 27.09375 42.890625 30.859375 \n",
"Q 38.875 34.625 31.78125 34.625 \n",
"z\n",
"M 21.921875 38.8125 \n",
"Q 15.578125 40.375 12.03125 44.71875 \n",
"Q 8.5 49.078125 8.5 55.328125 \n",
"Q 8.5 64.0625 14.71875 69.140625 \n",
"Q 20.953125 74.21875 31.78125 74.21875 \n",
"Q 42.671875 74.21875 48.875 69.140625 \n",
"Q 55.078125 64.0625 55.078125 55.328125 \n",
"Q 55.078125 49.078125 51.53125 44.71875 \n",
"Q 48 40.375 41.703125 38.8125 \n",
"Q 48.828125 37.15625 52.796875 32.3125 \n",
"Q 56.78125 27.484375 56.78125 20.515625 \n",
"Q 56.78125 9.90625 50.3125 4.234375 \n",
"Q 43.84375 -1.421875 31.78125 -1.421875 \n",
"Q 19.734375 -1.421875 13.25 4.234375 \n",
"Q 6.78125 9.90625 6.78125 20.515625 \n",
"Q 6.78125 27.484375 10.78125 32.3125 \n",
"Q 14.796875 37.15625 21.921875 38.8125 \n",
"z\n",
"M 18.3125 54.390625 \n",
"Q 18.3125 48.734375 21.84375 45.5625 \n",
"Q 25.390625 42.390625 31.78125 42.390625 \n",
"Q 38.140625 42.390625 41.71875 45.5625 \n",
"Q 45.3125 48.734375 45.3125 54.390625 \n",
"Q 45.3125 60.0625 41.71875 63.234375 \n",
"Q 38.140625 66.40625 31.78125 66.40625 \n",
"Q 25.390625 66.40625 21.84375 63.234375 \n",
"Q 18.3125 60.0625 18.3125 54.390625 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(336.954705 275.521726)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-52 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-56 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_6&gt;&lt;g id=text_6&gt;&lt;defs&gt;&lt;path id=DejaVuSans-53 d=&quot;M 10.796875 72.90625 \n",
"L 49.515625 72.90625 \n",
"L 49.515625 64.59375 \n",
"L 19.828125 64.59375 \n",
"L 19.828125 46.734375 \n",
"Q 21.96875 47.46875 24.109375 47.828125 \n",
"Q 26.265625 48.1875 28.421875 48.1875 \n",
"Q 40.625 48.1875 47.75 41.5 \n",
"Q 54.890625 34.8125 54.890625 23.390625 \n",
"Q 54.890625 11.625 47.5625 5.09375 \n",
"Q 40.234375 -1.421875 26.90625 -1.421875 \n",
"Q 22.3125 -1.421875 17.546875 -0.640625 \n",
"Q 12.796875 0.140625 7.71875 1.703125 \n",
"L 7.71875 11.625 \n",
"Q 12.109375 9.234375 16.796875 8.0625 \n",
"Q 21.484375 6.890625 26.703125 6.890625 \n",
"Q 35.15625 6.890625 40.078125 11.328125 \n",
"Q 45.015625 15.765625 45.015625 23.390625 \n",
"Q 45.015625 31 40.078125 35.4375 \n",
"Q 35.15625 39.890625 26.703125 39.890625 \n",
"Q 22.75 39.890625 18.8125 39.015625 \n",
"Q 14.890625 38.140625 10.796875 36.28125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(401.413796 275.521726)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-53 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-46 /&gt;&lt;use x=95.410156 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_2&gt;&lt;g id=ytick_1&gt;&lt;g id=text_7&gt;&lt;g style=fill:#262626; transform=&quot;translate(49.8125 252.202831)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_2&gt;&lt;g id=text_8&gt;&lt;defs&gt;&lt;path id=DejaVuSans-49 d=&quot;M 12.40625 8.296875 \n",
"L 28.515625 8.296875 \n",
"L 28.515625 63.921875 \n",
"L 10.984375 60.40625 \n",
"L 10.984375 69.390625 \n",
"L 28.421875 72.90625 \n",
"L 38.28125 72.90625 \n",
"L 38.28125 8.296875 \n",
"L 54.390625 8.296875 \n",
"L 54.390625 0 \n",
"L 12.40625 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.3625 201.475589)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_3&gt;&lt;g id=text_9&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.3625 150.748347)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_4&gt;&lt;g id=text_10&gt;&lt;defs&gt;&lt;path id=DejaVuSans-51 d=&quot;M 40.578125 39.3125 \n",
"Q 47.65625 37.796875 51.625 33 \n",
"Q 55.609375 28.21875 55.609375 21.1875 \n",
"Q 55.609375 10.40625 48.1875 4.484375 \n",
"Q 40.765625 -1.421875 27.09375 -1.421875 \n",
"Q 22.515625 -1.421875 17.65625 -0.515625 \n",
"Q 12.796875 0.390625 7.625 2.203125 \n",
"L 7.625 11.71875 \n",
"Q 11.71875 9.328125 16.59375 8.109375 \n",
"Q 21.484375 6.890625 26.8125 6.890625 \n",
"Q 36.078125 6.890625 40.9375 10.546875 \n",
"Q 45.796875 14.203125 45.796875 21.1875 \n",
"Q 45.796875 27.640625 41.28125 31.265625 \n",
"Q 36.765625 34.90625 28.71875 34.90625 \n",
"L 20.21875 34.90625 \n",
"L 20.21875 43.015625 \n",
"L 29.109375 43.015625 \n",
"Q 36.375 43.015625 40.234375 45.921875 \n",
"Q 44.09375 48.828125 44.09375 54.296875 \n",
"Q 44.09375 59.90625 40.109375 62.90625 \n",
"Q 36.140625 65.921875 28.71875 65.921875 \n",
"Q 24.65625 65.921875 20.015625 65.03125 \n",
"Q 15.375 64.15625 9.8125 62.3125 \n",
"L 9.8125 71.09375 \n",
"Q 15.4375 72.65625 20.34375 73.4375 \n",
"Q 25.25 74.21875 29.59375 74.21875 \n",
"Q 40.828125 74.21875 47.359375 69.109375 \n",
"Q 53.90625 64.015625 53.90625 55.328125 \n",
"Q 53.90625 49.265625 50.4375 45.09375 \n",
"Q 46.96875 40.921875 40.578125 39.3125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.3625 100.021104)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-51 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_5&gt;&lt;g id=text_11&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.3625 49.293862)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-52 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_12&gt;&lt;defs&gt;&lt;path id=DejaVuSans-70 d=&quot;M 9.8125 72.90625 \n",
"L 51.703125 72.90625 \n",
"L 51.703125 64.59375 \n",
"L 19.671875 64.59375 \n",
"L 19.671875 43.109375 \n",
"L 48.578125 43.109375 \n",
"L 48.578125 34.8125 \n",
"L 19.671875 34.8125 \n",
"L 19.671875 0 \n",
"L 9.8125 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-114 d=&quot;M 41.109375 46.296875 \n",
"Q 39.59375 47.171875 37.8125 47.578125 \n",
"Q 36.03125 48 33.890625 48 \n",
"Q 26.265625 48 22.1875 43.046875 \n",
"Q 18.109375 38.09375 18.109375 28.8125 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 20.953125 51.171875 25.484375 53.578125 \n",
"Q 30.03125 56 36.53125 56 \n",
"Q 37.453125 56 38.578125 55.875 \n",
"Q 39.703125 55.765625 41.0625 55.515625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-101 d=&quot;M 56.203125 29.59375 \n",
"L 56.203125 25.203125 \n",
"L 14.890625 25.203125 \n",
"Q 15.484375 15.921875 20.484375 11.0625 \n",
"Q 25.484375 6.203125 34.421875 6.203125 \n",
"Q 39.59375 6.203125 44.453125 7.46875 \n",
"Q 49.3125 8.734375 54.109375 11.28125 \n",
"L 54.109375 2.78125 \n",
"Q 49.265625 0.734375 44.1875 -0.34375 \n",
"Q 39.109375 -1.421875 33.890625 -1.421875 \n",
"Q 20.796875 -1.421875 13.15625 6.1875 \n",
"Q 5.515625 13.8125 5.515625 26.8125 \n",
"Q 5.515625 40.234375 12.765625 48.109375 \n",
"Q 20.015625 56 32.328125 56 \n",
"Q 43.359375 56 49.78125 48.890625 \n",
"Q 56.203125 41.796875 56.203125 29.59375 \n",
"z\n",
"M 47.21875 32.234375 \n",
"Q 47.125 39.59375 43.09375 43.984375 \n",
"Q 39.0625 48.390625 32.421875 48.390625 \n",
"Q 24.90625 48.390625 20.390625 44.140625 \n",
"Q 15.875 39.890625 15.1875 32.171875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-113 d=&quot;M 14.796875 27.296875 \n",
"Q 14.796875 17.390625 18.875 11.75 \n",
"Q 22.953125 6.109375 30.078125 6.109375 \n",
"Q 37.203125 6.109375 41.296875 11.75 \n",
"Q 45.40625 17.390625 45.40625 27.296875 \n",
"Q 45.40625 37.203125 41.296875 42.84375 \n",
"Q 37.203125 48.484375 30.078125 48.484375 \n",
"Q 22.953125 48.484375 18.875 42.84375 \n",
"Q 14.796875 37.203125 14.796875 27.296875 \n",
"z\n",
"M 45.40625 8.203125 \n",
"Q 42.578125 3.328125 38.25 0.953125 \n",
"Q 33.9375 -1.421875 27.875 -1.421875 \n",
"Q 17.96875 -1.421875 11.734375 6.484375 \n",
"Q 5.515625 14.40625 5.515625 27.296875 \n",
"Q 5.515625 40.1875 11.734375 48.09375 \n",
"Q 17.96875 56 27.875 56 \n",
"Q 33.9375 56 38.25 53.625 \n",
"Q 42.578125 51.265625 45.40625 46.390625 \n",
"L 45.40625 54.6875 \n",
"L 54.390625 54.6875 \n",
"L 54.390625 -20.796875 \n",
"L 45.40625 -20.796875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-117 d=&quot;M 8.5 21.578125 \n",
"L 8.5 54.6875 \n",
"L 17.484375 54.6875 \n",
"L 17.484375 21.921875 \n",
"Q 17.484375 14.15625 20.5 10.265625 \n",
"Q 23.53125 6.390625 29.59375 6.390625 \n",
"Q 36.859375 6.390625 41.078125 11.03125 \n",
"Q 45.3125 15.671875 45.3125 23.6875 \n",
"L 45.3125 54.6875 \n",
"L 54.296875 54.6875 \n",
"L 54.296875 0 \n",
"L 45.3125 0 \n",
"L 45.3125 8.40625 \n",
"Q 42.046875 3.421875 37.71875 1 \n",
"Q 33.40625 -1.421875 27.6875 -1.421875 \n",
"Q 18.265625 -1.421875 13.375 4.4375 \n",
"Q 8.5 10.296875 8.5 21.578125 \n",
"z\n",
"M 31.109375 56 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-110 d=&quot;M 54.890625 33.015625 \n",
"L 54.890625 0 \n",
"L 45.90625 0 \n",
"L 45.90625 32.71875 \n",
"Q 45.90625 40.484375 42.875 44.328125 \n",
"Q 39.84375 48.1875 33.796875 48.1875 \n",
"Q 26.515625 48.1875 22.3125 43.546875 \n",
"Q 18.109375 38.921875 18.109375 30.90625 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 21.34375 51.125 25.703125 53.5625 \n",
"Q 30.078125 56 35.796875 56 \n",
"Q 45.21875 56 50.046875 50.171875 \n",
"Q 54.890625 44.34375 54.890625 33.015625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-99 d=&quot;M 48.78125 52.59375 \n",
"L 48.78125 44.1875 \n",
"Q 44.96875 46.296875 41.140625 47.34375 \n",
"Q 37.3125 48.390625 33.40625 48.390625 \n",
"Q 24.65625 48.390625 19.8125 42.84375 \n",
"Q 14.984375 37.3125 14.984375 27.296875 \n",
"Q 14.984375 17.28125 19.8125 11.734375 \n",
"Q 24.65625 6.203125 33.40625 6.203125 \n",
"Q 37.3125 6.203125 41.140625 7.25 \n",
"Q 44.96875 8.296875 48.78125 10.40625 \n",
"L 48.78125 2.09375 \n",
"Q 45.015625 0.34375 40.984375 -0.53125 \n",
"Q 36.96875 -1.421875 32.421875 -1.421875 \n",
"Q 20.0625 -1.421875 12.78125 6.34375 \n",
"Q 5.515625 14.109375 5.515625 27.296875 \n",
"Q 5.515625 40.671875 12.859375 48.328125 \n",
"Q 20.21875 56 33.015625 56 \n",
"Q 37.15625 56 41.109375 55.140625 \n",
"Q 45.0625 54.296875 48.78125 52.59375 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-121 d=&quot;M 32.171875 -5.078125 \n",
"Q 28.375 -14.84375 24.75 -17.8125 \n",
"Q 21.140625 -20.796875 15.09375 -20.796875 \n",
"L 7.90625 -20.796875 \n",
"L 7.90625 -13.28125 \n",
"L 13.1875 -13.28125 \n",
"Q 16.890625 -13.28125 18.9375 -11.515625 \n",
"Q 21 -9.765625 23.484375 -3.21875 \n",
"L 25.09375 0.875 \n",
"L 2.984375 54.6875 \n",
"L 12.5 54.6875 \n",
"L 29.59375 11.921875 \n",
"L 46.6875 54.6875 \n",
"L 56.203125 54.6875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(18.074844 158.014462)rotate(-90)scale(0.11 -0.11)&quot;&gt;&lt;use xlink:href=#DejaVuSans-70 /&gt;&lt;use x=50.269531 xlink:href=#DejaVuSans-114 /&gt;&lt;use x=89.132812 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=150.65625 xlink:href=#DejaVuSans-113 /&gt;&lt;use x=214.132812 xlink:href=#DejaVuSans-117 /&gt;&lt;use x=277.511719 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=339.035156 xlink:href=#DejaVuSans-110 /&gt;&lt;use x=402.414062 xlink:href=#DejaVuSans-99 /&gt;&lt;use x=457.394531 xlink:href=#DejaVuSans-121 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#p77a217f264) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 82.789773 248.403612 \n",
"L 243.9375 248.403612 \n",
"L 243.9375 242.737379 \n",
"L 82.789773 242.737379 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#p77a217f264) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 243.9375 248.403612 \n",
"L 405.085227 248.403612 \n",
"L 405.085227 22.114458 \n",
"L 243.9375 22.114458 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path style=fill:none; d=&quot;M 66.675 248.403612 \n",
"L 66.675 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path style=fill:none; d=&quot;M 421.2 248.403612 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path style=fill:none; d=&quot;M 66.675 248.403612 \n",
"L 421.2 248.403612 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path style=fill:none; d=&quot;M 66.675 10.8 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=p77a217f264&gt;&lt;rect height=237.603612 width=354.525 x=66.675 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt; Histogram of lengths of the category &lt;/div&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Length&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Max length&lt;/th&gt;&lt;td&gt;5&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Median length&lt;/th&gt;&lt;td&gt;5&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Mean length&lt;/th&gt;&lt;td&gt;4.975571885&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Min length&lt;/th&gt;&lt;td&gt;4&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;a class=&quot;anchor-pos anchor-pos-variable&quot; id=pp_var_-5866063386066543172&gt;&lt;/a&gt;&lt;div class=variable&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4 title=year&gt;&lt;a href=#pp_var_-5866063386066543172&gt;year&lt;/a&gt;&lt;br&gt;&lt;small&gt;Date&lt;/small&gt;&lt;/p&gt;&lt;p class=variable-description&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Distinct&lt;/th&gt;&lt;td&gt;245&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct (%)&lt;/th&gt;&lt;td&gt;0.5%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing&lt;/th&gt;&lt;td&gt;312&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Missing (%)&lt;/th&gt;&lt;td&gt;0.7%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Memory size&lt;/th&gt;&lt;td&gt;357.2 KiB&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Minimum&lt;/th&gt;&lt;td&gt;1688-01-01 00:00:00&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Maximum&lt;/th&gt;&lt;td&gt;2101-01-01 00:00:00&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=162pt version=1.1 viewbox=&quot;0 0 216 162&quot; width=216pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;defs&gt;&lt;style type=text/css&gt;\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" &lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 162 \n",
"L 216 162 \n",
"L 216 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 10.8 77.2 \n",
"L 205.2 77.2 \n",
"L 205.2 10.8 \n",
"L 10.8 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;defs&gt;&lt;path id=DejaVuSans-49 d=&quot;M 12.40625 8.296875 \n",
"L 28.515625 8.296875 \n",
"L 28.515625 63.921875 \n",
"L 10.984375 60.40625 \n",
"L 10.984375 69.390625 \n",
"L 28.421875 72.90625 \n",
"L 38.28125 72.90625 \n",
"L 38.28125 8.296875 \n",
"L 54.390625 8.296875 \n",
"L 54.390625 0 \n",
"L 12.40625 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-55 d=&quot;M 8.203125 72.90625 \n",
"L 55.078125 72.90625 \n",
"L 55.078125 68.703125 \n",
"L 28.609375 0 \n",
"L 18.3125 0 \n",
"L 43.21875 64.59375 \n",
"L 8.203125 64.59375 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-51 d=&quot;M 40.578125 39.3125 \n",
"Q 47.65625 37.796875 51.625 33 \n",
"Q 55.609375 28.21875 55.609375 21.1875 \n",
"Q 55.609375 10.40625 48.1875 4.484375 \n",
"Q 40.765625 -1.421875 27.09375 -1.421875 \n",
"Q 22.515625 -1.421875 17.65625 -0.515625 \n",
"Q 12.796875 0.390625 7.625 2.203125 \n",
"L 7.625 11.71875 \n",
"Q 11.71875 9.328125 16.59375 8.109375 \n",
"Q 21.484375 6.890625 26.8125 6.890625 \n",
"Q 36.078125 6.890625 40.9375 10.546875 \n",
"Q 45.796875 14.203125 45.796875 21.1875 \n",
"Q 45.796875 27.640625 41.28125 31.265625 \n",
"Q 36.765625 34.90625 28.71875 34.90625 \n",
"L 20.21875 34.90625 \n",
"L 20.21875 43.015625 \n",
"L 29.109375 43.015625 \n",
"Q 36.375 43.015625 40.234375 45.921875 \n",
"Q 44.09375 48.828125 44.09375 54.296875 \n",
"Q 44.09375 59.90625 40.109375 62.90625 \n",
"Q 36.140625 65.921875 28.71875 65.921875 \n",
"Q 24.65625 65.921875 20.015625 65.03125 \n",
"Q 15.375 64.15625 9.8125 62.3125 \n",
"L 9.8125 71.09375 \n",
"Q 15.4375 72.65625 20.34375 73.4375 \n",
"Q 25.25 74.21875 29.59375 74.21875 \n",
"Q 40.828125 74.21875 47.359375 69.109375 \n",
"Q 53.90625 64.015625 53.90625 55.328125 \n",
"Q 53.90625 49.265625 50.4375 45.09375 \n",
"Q 46.96875 40.921875 40.578125 39.3125 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-50 d=&quot;M 19.1875 8.296875 \n",
"L 53.609375 8.296875 \n",
"L 53.609375 0 \n",
"L 7.328125 0 \n",
"L 7.328125 8.296875 \n",
"Q 12.9375 14.109375 22.625 23.890625 \n",
"Q 32.328125 33.6875 34.8125 36.53125 \n",
"Q 39.546875 41.84375 41.421875 45.53125 \n",
"Q 43.3125 49.21875 43.3125 52.78125 \n",
"Q 43.3125 58.59375 39.234375 62.25 \n",
"Q 35.15625 65.921875 28.609375 65.921875 \n",
"Q 23.96875 65.921875 18.8125 64.3125 \n",
"Q 13.671875 62.703125 7.8125 59.421875 \n",
"L 7.8125 69.390625 \n",
"Q 13.765625 71.78125 18.9375 73 \n",
"Q 24.125 74.21875 28.421875 74.21875 \n",
"Q 39.75 74.21875 46.484375 68.546875 \n",
"Q 53.21875 62.890625 53.21875 53.421875 \n",
"Q 53.21875 48.921875 51.53125 44.890625 \n",
"Q 49.859375 40.875 45.40625 35.40625 \n",
"Q 44.1875 33.984375 37.640625 27.21875 \n",
"Q 31.109375 20.453125 19.1875 8.296875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-45 d=&quot;M 4.890625 31.390625 \n",
"L 31.203125 31.390625 \n",
"L 31.203125 23.390625 \n",
"L 4.890625 23.390625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-48 d=&quot;M 31.78125 66.40625 \n",
"Q 24.171875 66.40625 20.328125 58.90625 \n",
"Q 16.5 51.421875 16.5 36.375 \n",
"Q 16.5 21.390625 20.328125 13.890625 \n",
"Q 24.171875 6.390625 31.78125 6.390625 \n",
"Q 39.453125 6.390625 43.28125 13.890625 \n",
"Q 47.125 21.390625 47.125 36.375 \n",
"Q 47.125 51.421875 43.28125 58.90625 \n",
"Q 39.453125 66.40625 31.78125 66.40625 \n",
"z\n",
"M 31.78125 74.21875 \n",
"Q 44.046875 74.21875 50.515625 64.515625 \n",
"Q 56.984375 54.828125 56.984375 36.375 \n",
"Q 56.984375 17.96875 50.515625 8.265625 \n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \n",
"Q 19.53125 -1.421875 13.0625 8.265625 \n",
"Q 6.59375 17.96875 6.59375 36.375 \n",
"Q 6.59375 54.828125 13.0625 64.515625 \n",
"Q 19.53125 74.21875 31.78125 74.21875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-53 d=&quot;M 10.796875 72.90625 \n",
"L 49.515625 72.90625 \n",
"L 49.515625 64.59375 \n",
"L 19.828125 64.59375 \n",
"L 19.828125 46.734375 \n",
"Q 21.96875 47.46875 24.109375 47.828125 \n",
"Q 26.265625 48.1875 28.421875 48.1875 \n",
"Q 40.625 48.1875 47.75 41.5 \n",
"Q 54.890625 34.8125 54.890625 23.390625 \n",
"Q 54.890625 11.625 47.5625 5.09375 \n",
"Q 40.234375 -1.421875 26.90625 -1.421875 \n",
"Q 22.3125 -1.421875 17.546875 -0.640625 \n",
"Q 12.796875 0.140625 7.71875 1.703125 \n",
"L 7.71875 11.625 \n",
"Q 12.109375 9.234375 16.796875 8.0625 \n",
"Q 21.484375 6.890625 26.703125 6.890625 \n",
"Q 35.15625 6.890625 40.078125 11.328125 \n",
"Q 45.015625 15.765625 45.015625 23.390625 \n",
"Q 45.015625 31 40.078125 35.4375 \n",
"Q 35.15625 39.890625 26.703125 39.890625 \n",
"Q 22.75 39.890625 18.8125 39.015625 \n",
"Q 14.890625 38.140625 10.796875 36.28125 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-32 /&gt;&lt;path id=DejaVuSans-58 d=&quot;M 11.71875 12.40625 \n",
"L 22.015625 12.40625 \n",
"L 22.015625 0 \n",
"L 11.71875 0 \n",
"z\n",
"M 11.71875 51.703125 \n",
"L 22.015625 51.703125 \n",
"L 22.015625 39.3125 \n",
"L 11.71875 39.3125 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-52 d=&quot;M 37.796875 64.3125 \n",
"L 12.890625 25.390625 \n",
"L 37.796875 25.390625 \n",
"z\n",
"M 35.203125 72.90625 \n",
"L 47.609375 72.90625 \n",
"L 47.609375 25.390625 \n",
"L 58.015625 25.390625 \n",
"L 58.015625 17.1875 \n",
"L 47.609375 17.1875 \n",
"L 47.609375 0 \n",
"L 37.796875 0 \n",
"L 37.796875 17.1875 \n",
"L 4.890625 17.1875 \n",
"L 4.890625 26.703125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(40.262764 151.42375)rotate(-90)scale(0.06 -0.06)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-55 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-51 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-50 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-45 /&gt;&lt;use x=290.576172 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=354.199219 xlink:href=#DejaVuSans-53 /&gt;&lt;use x=417.822266 xlink:href=#DejaVuSans-45 /&gt;&lt;use x=453.90625 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=517.529297 xlink:href=#DejaVuSans-50 /&gt;&lt;use x=581.152344 xlink:href=#DejaVuSans-32 /&gt;&lt;use x=612.939453 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=676.5625 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=740.185547 xlink:href=#DejaVuSans-58 /&gt;&lt;use x=773.876953 xlink:href=#DejaVuSans-52 /&gt;&lt;use x=837.5 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=901.123047 xlink:href=#DejaVuSans-58 /&gt;&lt;use x=934.814453 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=998.4375 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;defs&gt;&lt;path id=DejaVuSans-56 d=&quot;M 31.78125 34.625 \n",
"Q 24.75 34.625 20.71875 30.859375 \n",
"Q 16.703125 27.09375 16.703125 20.515625 \n",
"Q 16.703125 13.921875 20.71875 10.15625 \n",
"Q 24.75 6.390625 31.78125 6.390625 \n",
"Q 38.8125 6.390625 42.859375 10.171875 \n",
"Q 46.921875 13.96875 46.921875 20.515625 \n",
"Q 46.921875 27.09375 42.890625 30.859375 \n",
"Q 38.875 34.625 31.78125 34.625 \n",
"z\n",
"M 21.921875 38.8125 \n",
"Q 15.578125 40.375 12.03125 44.71875 \n",
"Q 8.5 49.078125 8.5 55.328125 \n",
"Q 8.5 64.0625 14.71875 69.140625 \n",
"Q 20.953125 74.21875 31.78125 74.21875 \n",
"Q 42.671875 74.21875 48.875 69.140625 \n",
"Q 55.078125 64.0625 55.078125 55.328125 \n",
"Q 55.078125 49.078125 51.53125 44.71875 \n",
"Q 48 40.375 41.703125 38.8125 \n",
"Q 48.828125 37.15625 52.796875 32.3125 \n",
"Q 56.78125 27.484375 56.78125 20.515625 \n",
"Q 56.78125 9.90625 50.3125 4.234375 \n",
"Q 43.84375 -1.421875 31.78125 -1.421875 \n",
"Q 19.734375 -1.421875 13.25 4.234375 \n",
"Q 6.78125 9.90625 6.78125 20.515625 \n",
"Q 6.78125 27.484375 10.78125 32.3125 \n",
"Q 14.796875 37.15625 21.921875 38.8125 \n",
"z\n",
"M 18.3125 54.390625 \n",
"Q 18.3125 48.734375 21.84375 45.5625 \n",
"Q 25.390625 42.390625 31.78125 42.390625 \n",
"Q 38.140625 42.390625 41.71875 45.5625 \n",
"Q 45.3125 48.734375 45.3125 54.390625 \n",
"Q 45.3125 60.0625 41.71875 63.234375 \n",
"Q 38.140625 66.40625 31.78125 66.40625 \n",
"Q 25.390625 66.40625 21.84375 63.234375 \n",
"Q 18.3125 60.0625 18.3125 54.390625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-54 d=&quot;M 33.015625 40.375 \n",
"Q 26.375 40.375 22.484375 35.828125 \n",
"Q 18.609375 31.296875 18.609375 23.390625 \n",
"Q 18.609375 15.53125 22.484375 10.953125 \n",
"Q 26.375 6.390625 33.015625 6.390625 \n",
"Q 39.65625 6.390625 43.53125 10.953125 \n",
"Q 47.40625 15.53125 47.40625 23.390625 \n",
"Q 47.40625 31.296875 43.53125 35.828125 \n",
"Q 39.65625 40.375 33.015625 40.375 \n",
"z\n",
"M 52.59375 71.296875 \n",
"L 52.59375 62.3125 \n",
"Q 48.875 64.0625 45.09375 64.984375 \n",
"Q 41.3125 65.921875 37.59375 65.921875 \n",
"Q 27.828125 65.921875 22.671875 59.328125 \n",
"Q 17.53125 52.734375 16.796875 39.40625 \n",
"Q 19.671875 43.65625 24.015625 45.921875 \n",
"Q 28.375 48.1875 33.59375 48.1875 \n",
"Q 44.578125 48.1875 50.953125 41.515625 \n",
"Q 57.328125 34.859375 57.328125 23.390625 \n",
"Q 57.328125 12.15625 50.6875 5.359375 \n",
"Q 44.046875 -1.421875 33.015625 -1.421875 \n",
"Q 20.359375 -1.421875 13.671875 8.265625 \n",
"Q 6.984375 17.96875 6.984375 36.375 \n",
"Q 6.984375 53.65625 15.1875 63.9375 \n",
"Q 23.390625 74.21875 37.203125 74.21875 \n",
"Q 40.921875 74.21875 44.703125 73.484375 \n",
"Q 48.484375 72.75 52.59375 71.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(74.162703 151.42375)rotate(-90)scale(0.06 -0.06)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-56 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-45 /&gt;&lt;use x=290.576172 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=354.199219 xlink:href=#DejaVuSans-55 /&gt;&lt;use x=417.822266 xlink:href=#DejaVuSans-45 /&gt;&lt;use x=453.90625 xlink:href=#DejaVuSans-50 /&gt;&lt;use x=517.529297 xlink:href=#DejaVuSans-51 /&gt;&lt;use x=581.152344 xlink:href=#DejaVuSans-32 /&gt;&lt;use x=612.939453 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=676.5625 xlink:href=#DejaVuSans-53 /&gt;&lt;use x=740.185547 xlink:href=#DejaVuSans-58 /&gt;&lt;use x=773.876953 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=837.5 xlink:href=#DejaVuSans-54 /&gt;&lt;use x=901.123047 xlink:href=#DejaVuSans-58 /&gt;&lt;use x=934.814453 xlink:href=#DejaVuSans-52 /&gt;&lt;use x=998.4375 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;defs&gt;&lt;path id=DejaVuSans-57 d=&quot;M 10.984375 1.515625 \n",
"L 10.984375 10.5 \n",
"Q 14.703125 8.734375 18.5 7.8125 \n",
"Q 22.3125 6.890625 25.984375 6.890625 \n",
"Q 35.75 6.890625 40.890625 13.453125 \n",
"Q 46.046875 20.015625 46.78125 33.40625 \n",
"Q 43.953125 29.203125 39.59375 26.953125 \n",
"Q 35.25 24.703125 29.984375 24.703125 \n",
"Q 19.046875 24.703125 12.671875 31.3125 \n",
"Q 6.296875 37.9375 6.296875 49.421875 \n",
"Q 6.296875 60.640625 12.9375 67.421875 \n",
"Q 19.578125 74.21875 30.609375 74.21875 \n",
"Q 43.265625 74.21875 49.921875 64.515625 \n",
"Q 56.59375 54.828125 56.59375 36.375 \n",
"Q 56.59375 19.140625 48.40625 8.859375 \n",
"Q 40.234375 -1.421875 26.421875 -1.421875 \n",
"Q 22.703125 -1.421875 18.890625 -0.6875 \n",
"Q 15.09375 0.046875 10.984375 1.515625 \n",
"z\n",
"M 30.609375 32.421875 \n",
"Q 37.25 32.421875 41.125 36.953125 \n",
"Q 45.015625 41.5 45.015625 49.421875 \n",
"Q 45.015625 57.28125 41.125 61.84375 \n",
"Q 37.25 66.40625 30.609375 66.40625 \n",
"Q 23.96875 66.40625 20.09375 61.84375 \n",
"Q 16.21875 57.28125 16.21875 49.421875 \n",
"Q 16.21875 41.5 20.09375 36.953125 \n",
"Q 23.96875 32.421875 30.609375 32.421875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(108.062642 151.42375)rotate(-90)scale(0.06 -0.06)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-56 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-57 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-45 /&gt;&lt;use x=290.576172 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=354.199219 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=417.822266 xlink:href=#DejaVuSans-45 /&gt;&lt;use x=453.90625 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=517.529297 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=581.152344 xlink:href=#DejaVuSans-32 /&gt;&lt;use x=612.939453 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=676.5625 xlink:href=#DejaVuSans-57 /&gt;&lt;use x=740.185547 xlink:href=#DejaVuSans-58 /&gt;&lt;use x=773.876953 xlink:href=#DejaVuSans-51 /&gt;&lt;use x=837.5 xlink:href=#DejaVuSans-51 /&gt;&lt;use x=901.123047 xlink:href=#DejaVuSans-58 /&gt;&lt;use x=934.814453 xlink:href=#DejaVuSans-50 /&gt;&lt;use x=998.4375 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;g style=fill:#262626; transform=&quot;translate(141.962582 151.42375)rotate(-90)scale(0.06 -0.06)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-57 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-55 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-45 /&gt;&lt;use x=290.576172 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=354.199219 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=417.822266 xlink:href=#DejaVuSans-45 /&gt;&lt;use x=453.90625 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=517.529297 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=581.152344 xlink:href=#DejaVuSans-32 /&gt;&lt;use x=612.939453 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=676.5625 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=740.185547 xlink:href=#DejaVuSans-58 /&gt;&lt;use x=773.876953 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=837.5 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=901.123047 xlink:href=#DejaVuSans-58 /&gt;&lt;use x=934.814453 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=998.4375 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;g style=fill:#262626; transform=&quot;translate(175.862521 151.42375)rotate(-90)scale(0.06 -0.06)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-52 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-57 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-45 /&gt;&lt;use x=290.576172 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=354.199219 xlink:href=#DejaVuSans-51 /&gt;&lt;use x=417.822266 xlink:href=#DejaVuSans-45 /&gt;&lt;use x=453.90625 xlink:href=#DejaVuSans-50 /&gt;&lt;use x=517.529297 xlink:href=#DejaVuSans-50 /&gt;&lt;use x=581.152344 xlink:href=#DejaVuSans-32 /&gt;&lt;use x=612.939453 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=676.5625 xlink:href=#DejaVuSans-52 /&gt;&lt;use x=740.185547 xlink:href=#DejaVuSans-58 /&gt;&lt;use x=773.876953 xlink:href=#DejaVuSans-50 /&gt;&lt;use x=837.5 xlink:href=#DejaVuSans-54 /&gt;&lt;use x=901.123047 xlink:href=#DejaVuSans-58 /&gt;&lt;use x=934.814453 xlink:href=#DejaVuSans-52 /&gt;&lt;use x=998.4375 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 19.636364 77.2 \n",
"L 23.170909 77.2 \n",
"L 23.170909 77.195872 \n",
"L 19.636364 77.195872 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 23.170909 77.2 \n",
"L 26.705455 77.2 \n",
"L 26.705455 77.195872 \n",
"L 23.170909 77.195872 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 26.705455 77.2 \n",
"L 30.24 77.2 \n",
"L 30.24 77.2 \n",
"L 26.705455 77.2 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 30.24 77.2 \n",
"L 33.774545 77.2 \n",
"L 33.774545 77.191744 \n",
"L 30.24 77.191744 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 33.774545 77.2 \n",
"L 37.309091 77.2 \n",
"L 37.309091 77.191744 \n",
"L 33.774545 77.191744 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 37.309091 77.2 \n",
"L 40.843636 77.2 \n",
"L 40.843636 77.2 \n",
"L 37.309091 77.2 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_9&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 40.843636 77.2 \n",
"L 44.378182 77.2 \n",
"L 44.378182 77.191744 \n",
"L 40.843636 77.191744 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_10&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 44.378182 77.2 \n",
"L 47.912727 77.2 \n",
"L 47.912727 77.179361 \n",
"L 44.378182 77.179361 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_11&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 47.912727 77.2 \n",
"L 51.447273 77.2 \n",
"L 51.447273 77.2 \n",
"L 47.912727 77.2 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_12&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 51.447273 77.2 \n",
"L 54.981818 77.2 \n",
"L 54.981818 77.183489 \n",
"L 51.447273 77.183489 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_13&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 54.981818 77.2 \n",
"L 58.516364 77.2 \n",
"L 58.516364 77.183489 \n",
"L 54.981818 77.183489 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_14&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 58.516364 77.2 \n",
"L 62.050909 77.2 \n",
"L 62.050909 77.175233 \n",
"L 58.516364 77.175233 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_15&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 62.050909 77.2 \n",
"L 65.585455 77.2 \n",
"L 65.585455 77.171105 \n",
"L 62.050909 77.171105 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_16&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 65.585455 77.2 \n",
"L 69.12 77.2 \n",
"L 69.12 77.16285 \n",
"L 65.585455 77.16285 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_17&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 69.12 77.2 \n",
"L 72.654545 77.2 \n",
"L 72.654545 77.092677 \n",
"L 69.12 77.092677 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_18&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 72.654545 77.2 \n",
"L 76.189091 77.2 \n",
"L 76.189091 77.100932 \n",
"L 72.654545 77.100932 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_19&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 76.189091 77.2 \n",
"L 79.723636 77.2 \n",
"L 79.723636 77.096805 \n",
"L 76.189091 77.096805 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_20&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 79.723636 77.2 \n",
"L 83.258182 77.2 \n",
"L 83.258182 77.117444 \n",
"L 79.723636 77.117444 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_21&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 83.258182 77.2 \n",
"L 86.792727 77.2 \n",
"L 86.792727 77.018376 \n",
"L 83.258182 77.018376 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_22&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 86.792727 77.2 \n",
"L 90.327273 77.2 \n",
"L 90.327273 77.010121 \n",
"L 86.792727 77.010121 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_23&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 90.327273 77.2 \n",
"L 93.861818 77.2 \n",
"L 93.861818 76.93582 \n",
"L 90.327273 76.93582 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_24&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 93.861818 77.2 \n",
"L 97.396364 77.2 \n",
"L 97.396364 76.878031 \n",
"L 93.861818 76.878031 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_25&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 97.396364 77.2 \n",
"L 100.930909 77.2 \n",
"L 100.930909 76.927564 \n",
"L 97.396364 76.927564 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_26&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 100.930909 77.2 \n",
"L 104.465455 77.2 \n",
"L 104.465455 76.80373 \n",
"L 100.930909 76.80373 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_27&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 104.465455 77.2 \n",
"L 108 77.2 \n",
"L 108 76.729429 \n",
"L 104.465455 76.729429 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_28&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 108 77.2 \n",
"L 111.534545 77.2 \n",
"L 111.534545 76.774835 \n",
"L 108 76.774835 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_29&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 111.534545 77.2 \n",
"L 115.069091 77.2 \n",
"L 115.069091 76.655129 \n",
"L 111.534545 76.655129 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_30&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 115.069091 77.2 \n",
"L 118.603636 77.2 \n",
"L 118.603636 76.692279 \n",
"L 115.069091 76.692279 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_31&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 118.603636 77.2 \n",
"L 122.138182 77.2 \n",
"L 122.138182 76.667512 \n",
"L 118.603636 76.667512 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_32&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 122.138182 77.2 \n",
"L 125.672727 77.2 \n",
"L 125.672727 76.477633 \n",
"L 122.138182 76.477633 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_33&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 125.672727 77.2 \n",
"L 129.207273 77.2 \n",
"L 129.207273 76.060724 \n",
"L 125.672727 76.060724 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_34&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 129.207273 77.2 \n",
"L 132.741818 77.2 \n",
"L 132.741818 76.510655 \n",
"L 129.207273 76.510655 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_35&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 132.741818 77.2 \n",
"L 136.276364 77.2 \n",
"L 136.276364 76.523039 \n",
"L 132.741818 76.523039 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_36&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 136.276364 77.2 \n",
"L 139.810909 77.2 \n",
"L 139.810909 75.97404 \n",
"L 136.276364 75.97404 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_37&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 139.810909 77.2 \n",
"L 143.345455 77.2 \n",
"L 143.345455 70.050628 \n",
"L 139.810909 70.050628 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_38&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 143.345455 77.2 \n",
"L 146.88 77.2 \n",
"L 146.88 54.880915 \n",
"L 143.345455 54.880915 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_39&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 146.88 77.2 \n",
"L 150.414545 77.2 \n",
"L 150.414545 42.241552 \n",
"L 146.88 42.241552 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_40&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 150.414545 77.2 \n",
"L 153.949091 77.2 \n",
"L 153.949091 30.493796 \n",
"L 150.414545 30.493796 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_41&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 153.949091 77.2 \n",
"L 157.483636 77.2 \n",
"L 157.483636 13.961905 \n",
"L 153.949091 13.961905 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_42&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 157.483636 77.2 \n",
"L 161.018182 77.2 \n",
"L 161.018182 73.245555 \n",
"L 157.483636 73.245555 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_43&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 161.018182 77.2 \n",
"L 164.552727 77.2 \n",
"L 164.552727 77.2 \n",
"L 161.018182 77.2 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_44&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 164.552727 77.2 \n",
"L 168.087273 77.2 \n",
"L 168.087273 77.2 \n",
"L 164.552727 77.2 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_45&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 168.087273 77.2 \n",
"L 171.621818 77.2 \n",
"L 171.621818 77.2 \n",
"L 168.087273 77.2 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_46&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 171.621818 77.2 \n",
"L 175.156364 77.2 \n",
"L 175.156364 77.2 \n",
"L 171.621818 77.2 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_47&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 175.156364 77.2 \n",
"L 178.690909 77.2 \n",
"L 178.690909 77.2 \n",
"L 175.156364 77.2 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_48&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 178.690909 77.2 \n",
"L 182.225455 77.2 \n",
"L 182.225455 77.2 \n",
"L 178.690909 77.2 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_49&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 182.225455 77.2 \n",
"L 185.76 77.2 \n",
"L 185.76 77.2 \n",
"L 182.225455 77.2 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_50&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 185.76 77.2 \n",
"L 189.294545 77.2 \n",
"L 189.294545 77.2 \n",
"L 185.76 77.2 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_51&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 189.294545 77.2 \n",
"L 192.829091 77.2 \n",
"L 192.829091 77.2 \n",
"L 189.294545 77.2 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_52&gt;&lt;path clip-path=url(#pcc664c0b29) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 192.829091 77.2 \n",
"L 196.363636 77.2 \n",
"L 196.363636 77.195872 \n",
"L 192.829091 77.195872 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_53&gt;&lt;path style=fill:none; d=&quot;M 10.8 77.2 \n",
"L 10.8 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_54&gt;&lt;path style=fill:none; d=&quot;M 205.2 77.2 \n",
"L 205.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_55&gt;&lt;path style=fill:none; d=&quot;M 10.8 77.2 \n",
"L 205.2 77.2 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_56&gt;&lt;path style=fill:none; d=&quot;M 10.8 10.8 \n",
"L 205.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=pcc664c0b29&gt;&lt;rect height=66.4 width=194.4 x=10.8 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;/div&gt;&lt;div class=&quot;col-sm-12 text-right&quot;&gt;&lt;button class=&quot;btn btn-default btn-sm&quot; data-toggle=collapse data-target=&quot;#bottom--5866063386066543172, #minifreqtable-5866063386066543172&quot; aria-expanded=true aria-controls=collapseExample&gt;Toggle details&lt;/button&gt;&lt;/div&gt;&lt;div id=bottom--5866063386066543172 class=collapse&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#-5866063386066543172--5866063386066543172histogram aria-controls=-5866063386066543172--5866063386066543172histogram role=tab data-toggle=tab&gt;Histogram&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=-5866063386066543172--5866063386066543172histogram&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=288pt version=1.1 viewbox=&quot;0 0 432 288&quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;defs&gt;&lt;style type=text/css&gt;\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" &lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 288 \n",
"L 432 288 \n",
"L 432 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 66.8 161.2 \n",
"L 421.2 161.2 \n",
"L 421.2 13.637508 \n",
"L 66.8 13.637508 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;defs&gt;&lt;path id=DejaVuSans-49 d=&quot;M 12.40625 8.296875 \n",
"L 28.515625 8.296875 \n",
"L 28.515625 63.921875 \n",
"L 10.984375 60.40625 \n",
"L 10.984375 69.390625 \n",
"L 28.421875 72.90625 \n",
"L 38.28125 72.90625 \n",
"L 38.28125 8.296875 \n",
"L 54.390625 8.296875 \n",
"L 54.390625 0 \n",
"L 12.40625 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-55 d=&quot;M 8.203125 72.90625 \n",
"L 55.078125 72.90625 \n",
"L 55.078125 68.703125 \n",
"L 28.609375 0 \n",
"L 18.3125 0 \n",
"L 43.21875 64.59375 \n",
"L 8.203125 64.59375 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-54 d=&quot;M 33.015625 40.375 \n",
"Q 26.375 40.375 22.484375 35.828125 \n",
"Q 18.609375 31.296875 18.609375 23.390625 \n",
"Q 18.609375 15.53125 22.484375 10.953125 \n",
"Q 26.375 6.390625 33.015625 6.390625 \n",
"Q 39.65625 6.390625 43.53125 10.953125 \n",
"Q 47.40625 15.53125 47.40625 23.390625 \n",
"Q 47.40625 31.296875 43.53125 35.828125 \n",
"Q 39.65625 40.375 33.015625 40.375 \n",
"z\n",
"M 52.59375 71.296875 \n",
"L 52.59375 62.3125 \n",
"Q 48.875 64.0625 45.09375 64.984375 \n",
"Q 41.3125 65.921875 37.59375 65.921875 \n",
"Q 27.828125 65.921875 22.671875 59.328125 \n",
"Q 17.53125 52.734375 16.796875 39.40625 \n",
"Q 19.671875 43.65625 24.015625 45.921875 \n",
"Q 28.375 48.1875 33.59375 48.1875 \n",
"Q 44.578125 48.1875 50.953125 41.515625 \n",
"Q 57.328125 34.859375 57.328125 23.390625 \n",
"Q 57.328125 12.15625 50.6875 5.359375 \n",
"Q 44.046875 -1.421875 33.015625 -1.421875 \n",
"Q 20.359375 -1.421875 13.671875 8.265625 \n",
"Q 6.984375 17.96875 6.984375 36.375 \n",
"Q 6.984375 53.65625 15.1875 63.9375 \n",
"Q 23.390625 74.21875 37.203125 74.21875 \n",
"Q 40.921875 74.21875 44.703125 73.484375 \n",
"Q 48.484375 72.75 52.59375 71.296875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-45 d=&quot;M 4.890625 31.390625 \n",
"L 31.203125 31.390625 \n",
"L 31.203125 23.390625 \n",
"L 4.890625 23.390625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-48 d=&quot;M 31.78125 66.40625 \n",
"Q 24.171875 66.40625 20.328125 58.90625 \n",
"Q 16.5 51.421875 16.5 36.375 \n",
"Q 16.5 21.390625 20.328125 13.890625 \n",
"Q 24.171875 6.390625 31.78125 6.390625 \n",
"Q 39.453125 6.390625 43.28125 13.890625 \n",
"Q 47.125 21.390625 47.125 36.375 \n",
"Q 47.125 51.421875 43.28125 58.90625 \n",
"Q 39.453125 66.40625 31.78125 66.40625 \n",
"z\n",
"M 31.78125 74.21875 \n",
"Q 44.046875 74.21875 50.515625 64.515625 \n",
"Q 56.984375 54.828125 56.984375 36.375 \n",
"Q 56.984375 17.96875 50.515625 8.265625 \n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \n",
"Q 19.53125 -1.421875 13.0625 8.265625 \n",
"Q 6.59375 17.96875 6.59375 36.375 \n",
"Q 6.59375 54.828125 13.0625 64.515625 \n",
"Q 19.53125 74.21875 31.78125 74.21875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-50 d=&quot;M 19.1875 8.296875 \n",
"L 53.609375 8.296875 \n",
"L 53.609375 0 \n",
"L 7.328125 0 \n",
"L 7.328125 8.296875 \n",
"Q 12.9375 14.109375 22.625 23.890625 \n",
"Q 32.328125 33.6875 34.8125 36.53125 \n",
"Q 39.546875 41.84375 41.421875 45.53125 \n",
"Q 43.3125 49.21875 43.3125 52.78125 \n",
"Q 43.3125 58.59375 39.234375 62.25 \n",
"Q 35.15625 65.921875 28.609375 65.921875 \n",
"Q 23.96875 65.921875 18.8125 64.3125 \n",
"Q 13.671875 62.703125 7.8125 59.421875 \n",
"L 7.8125 69.390625 \n",
"Q 13.765625 71.78125 18.9375 73 \n",
"Q 24.125 74.21875 28.421875 74.21875 \n",
"Q 39.75 74.21875 46.484375 68.546875 \n",
"Q 53.21875 62.890625 53.21875 53.421875 \n",
"Q 53.21875 48.921875 51.53125 44.890625 \n",
"Q 49.859375 40.875 45.40625 35.40625 \n",
"Q 44.1875 33.984375 37.640625 27.21875 \n",
"Q 31.109375 20.453125 19.1875 8.296875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-56 d=&quot;M 31.78125 34.625 \n",
"Q 24.75 34.625 20.71875 30.859375 \n",
"Q 16.703125 27.09375 16.703125 20.515625 \n",
"Q 16.703125 13.921875 20.71875 10.15625 \n",
"Q 24.75 6.390625 31.78125 6.390625 \n",
"Q 38.8125 6.390625 42.859375 10.171875 \n",
"Q 46.921875 13.96875 46.921875 20.515625 \n",
"Q 46.921875 27.09375 42.890625 30.859375 \n",
"Q 38.875 34.625 31.78125 34.625 \n",
"z\n",
"M 21.921875 38.8125 \n",
"Q 15.578125 40.375 12.03125 44.71875 \n",
"Q 8.5 49.078125 8.5 55.328125 \n",
"Q 8.5 64.0625 14.71875 69.140625 \n",
"Q 20.953125 74.21875 31.78125 74.21875 \n",
"Q 42.671875 74.21875 48.875 69.140625 \n",
"Q 55.078125 64.0625 55.078125 55.328125 \n",
"Q 55.078125 49.078125 51.53125 44.71875 \n",
"Q 48 40.375 41.703125 38.8125 \n",
"Q 48.828125 37.15625 52.796875 32.3125 \n",
"Q 56.78125 27.484375 56.78125 20.515625 \n",
"Q 56.78125 9.90625 50.3125 4.234375 \n",
"Q 43.84375 -1.421875 31.78125 -1.421875 \n",
"Q 19.734375 -1.421875 13.25 4.234375 \n",
"Q 6.78125 9.90625 6.78125 20.515625 \n",
"Q 6.78125 27.484375 10.78125 32.3125 \n",
"Q 14.796875 37.15625 21.921875 38.8125 \n",
"z\n",
"M 18.3125 54.390625 \n",
"Q 18.3125 48.734375 21.84375 45.5625 \n",
"Q 25.390625 42.390625 31.78125 42.390625 \n",
"Q 38.140625 42.390625 41.71875 45.5625 \n",
"Q 45.3125 48.734375 45.3125 54.390625 \n",
"Q 45.3125 60.0625 41.71875 63.234375 \n",
"Q 38.140625 66.40625 31.78125 66.40625 \n",
"Q 25.390625 66.40625 21.84375 63.234375 \n",
"Q 18.3125 60.0625 18.3125 54.390625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-32 /&gt;&lt;path id=DejaVuSans-57 d=&quot;M 10.984375 1.515625 \n",
"L 10.984375 10.5 \n",
"Q 14.703125 8.734375 18.5 7.8125 \n",
"Q 22.3125 6.890625 25.984375 6.890625 \n",
"Q 35.75 6.890625 40.890625 13.453125 \n",
"Q 46.046875 20.015625 46.78125 33.40625 \n",
"Q 43.953125 29.203125 39.59375 26.953125 \n",
"Q 35.25 24.703125 29.984375 24.703125 \n",
"Q 19.046875 24.703125 12.671875 31.3125 \n",
"Q 6.296875 37.9375 6.296875 49.421875 \n",
"Q 6.296875 60.640625 12.9375 67.421875 \n",
"Q 19.578125 74.21875 30.609375 74.21875 \n",
"Q 43.265625 74.21875 49.921875 64.515625 \n",
"Q 56.59375 54.828125 56.59375 36.375 \n",
"Q 56.59375 19.140625 48.40625 8.859375 \n",
"Q 40.234375 -1.421875 26.421875 -1.421875 \n",
"Q 22.703125 -1.421875 18.890625 -0.6875 \n",
"Q 15.09375 0.046875 10.984375 1.515625 \n",
"z\n",
"M 30.609375 32.421875 \n",
"Q 37.25 32.421875 41.125 36.953125 \n",
"Q 45.015625 41.5 45.015625 49.421875 \n",
"Q 45.015625 57.28125 41.125 61.84375 \n",
"Q 37.25 66.40625 30.609375 66.40625 \n",
"Q 23.96875 66.40625 20.09375 61.84375 \n",
"Q 16.21875 57.28125 16.21875 49.421875 \n",
"Q 16.21875 41.5 20.09375 36.953125 \n",
"Q 23.96875 32.421875 30.609375 32.421875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-58 d=&quot;M 11.71875 12.40625 \n",
"L 22.015625 12.40625 \n",
"L 22.015625 0 \n",
"L 11.71875 0 \n",
"z\n",
"M 11.71875 51.703125 \n",
"L 22.015625 51.703125 \n",
"L 22.015625 39.3125 \n",
"L 11.71875 39.3125 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-52 d=&quot;M 37.796875 64.3125 \n",
"L 12.890625 25.390625 \n",
"L 37.796875 25.390625 \n",
"z\n",
"M 35.203125 72.90625 \n",
"L 47.609375 72.90625 \n",
"L 47.609375 25.390625 \n",
"L 58.015625 25.390625 \n",
"L 58.015625 17.1875 \n",
"L 47.609375 17.1875 \n",
"L 47.609375 0 \n",
"L 37.796875 0 \n",
"L 37.796875 17.1875 \n",
"L 4.890625 17.1875 \n",
"L 4.890625 26.703125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(107.892823 277.90625)rotate(-90)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-55 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-54 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-45 /&gt;&lt;use x=290.576172 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=354.199219 xlink:href=#DejaVuSans-54 /&gt;&lt;use x=417.822266 xlink:href=#DejaVuSans-45 /&gt;&lt;use x=453.90625 xlink:href=#DejaVuSans-50 /&gt;&lt;use x=517.529297 xlink:href=#DejaVuSans-56 /&gt;&lt;use x=581.152344 xlink:href=#DejaVuSans-32 /&gt;&lt;use x=612.939453 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=676.5625 xlink:href=#DejaVuSans-57 /&gt;&lt;use x=740.185547 xlink:href=#DejaVuSans-58 /&gt;&lt;use x=773.876953 xlink:href=#DejaVuSans-52 /&gt;&lt;use x=837.5 xlink:href=#DejaVuSans-54 /&gt;&lt;use x=901.123047 xlink:href=#DejaVuSans-58 /&gt;&lt;use x=934.814453 xlink:href=#DejaVuSans-52 /&gt;&lt;use x=998.4375 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;defs&gt;&lt;path id=DejaVuSans-51 d=&quot;M 40.578125 39.3125 \n",
"Q 47.65625 37.796875 51.625 33 \n",
"Q 55.609375 28.21875 55.609375 21.1875 \n",
"Q 55.609375 10.40625 48.1875 4.484375 \n",
"Q 40.765625 -1.421875 27.09375 -1.421875 \n",
"Q 22.515625 -1.421875 17.65625 -0.515625 \n",
"Q 12.796875 0.390625 7.625 2.203125 \n",
"L 7.625 11.71875 \n",
"Q 11.71875 9.328125 16.59375 8.109375 \n",
"Q 21.484375 6.890625 26.8125 6.890625 \n",
"Q 36.078125 6.890625 40.9375 10.546875 \n",
"Q 45.796875 14.203125 45.796875 21.1875 \n",
"Q 45.796875 27.640625 41.28125 31.265625 \n",
"Q 36.765625 34.90625 28.71875 34.90625 \n",
"L 20.21875 34.90625 \n",
"L 20.21875 43.015625 \n",
"L 29.109375 43.015625 \n",
"Q 36.375 43.015625 40.234375 45.921875 \n",
"Q 44.09375 48.828125 44.09375 54.296875 \n",
"Q 44.09375 59.90625 40.109375 62.90625 \n",
"Q 36.140625 65.921875 28.71875 65.921875 \n",
"Q 24.65625 65.921875 20.015625 65.03125 \n",
"Q 15.375 64.15625 9.8125 62.3125 \n",
"L 9.8125 71.09375 \n",
"Q 15.4375 72.65625 20.34375 73.4375 \n",
"Q 25.25 74.21875 29.59375 74.21875 \n",
"Q 40.828125 74.21875 47.359375 69.109375 \n",
"Q 53.90625 64.015625 53.90625 55.328125 \n",
"Q 53.90625 49.265625 50.4375 45.09375 \n",
"Q 46.96875 40.921875 40.578125 39.3125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(157.333722 277.90625)rotate(-90)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-55 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-55 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-57 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-45 /&gt;&lt;use x=290.576172 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=354.199219 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=417.822266 xlink:href=#DejaVuSans-45 /&gt;&lt;use x=453.90625 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=517.529297 xlink:href=#DejaVuSans-51 /&gt;&lt;use x=581.152344 xlink:href=#DejaVuSans-32 /&gt;&lt;use x=612.939453 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=676.5625 xlink:href=#DejaVuSans-51 /&gt;&lt;use x=740.185547 xlink:href=#DejaVuSans-58 /&gt;&lt;use x=773.876953 xlink:href=#DejaVuSans-50 /&gt;&lt;use x=837.5 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=901.123047 xlink:href=#DejaVuSans-58 /&gt;&lt;use x=934.814453 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=998.4375 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;defs&gt;&lt;path id=DejaVuSans-53 d=&quot;M 10.796875 72.90625 \n",
"L 49.515625 72.90625 \n",
"L 49.515625 64.59375 \n",
"L 19.828125 64.59375 \n",
"L 19.828125 46.734375 \n",
"Q 21.96875 47.46875 24.109375 47.828125 \n",
"Q 26.265625 48.1875 28.421875 48.1875 \n",
"Q 40.625 48.1875 47.75 41.5 \n",
"Q 54.890625 34.8125 54.890625 23.390625 \n",
"Q 54.890625 11.625 47.5625 5.09375 \n",
"Q 40.234375 -1.421875 26.90625 -1.421875 \n",
"Q 22.3125 -1.421875 17.546875 -0.640625 \n",
"Q 12.796875 0.140625 7.71875 1.703125 \n",
"L 7.71875 11.625 \n",
"Q 12.109375 9.234375 16.796875 8.0625 \n",
"Q 21.484375 6.890625 26.703125 6.890625 \n",
"Q 35.15625 6.890625 40.078125 11.328125 \n",
"Q 45.015625 15.765625 45.015625 23.390625 \n",
"Q 45.015625 31 40.078125 35.4375 \n",
"Q 35.15625 39.890625 26.703125 39.890625 \n",
"Q 22.75 39.890625 18.8125 39.015625 \n",
"Q 14.890625 38.140625 10.796875 36.28125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(206.774621 277.90625)rotate(-90)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-56 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-52 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-51 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-45 /&gt;&lt;use x=290.576172 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=354.199219 xlink:href=#DejaVuSans-51 /&gt;&lt;use x=417.822266 xlink:href=#DejaVuSans-45 /&gt;&lt;use x=453.90625 xlink:href=#DejaVuSans-51 /&gt;&lt;use x=517.529297 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=581.152344 xlink:href=#DejaVuSans-32 /&gt;&lt;use x=612.939453 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=676.5625 xlink:href=#DejaVuSans-54 /&gt;&lt;use x=740.185547 xlink:href=#DejaVuSans-58 /&gt;&lt;use x=773.876953 xlink:href=#DejaVuSans-53 /&gt;&lt;use x=837.5 xlink:href=#DejaVuSans-51 /&gt;&lt;use x=901.123047 xlink:href=#DejaVuSans-58 /&gt;&lt;use x=934.814453 xlink:href=#DejaVuSans-50 /&gt;&lt;use x=998.4375 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;g style=fill:#262626; transform=&quot;translate(256.215521 277.90625)rotate(-90)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-57 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-54 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-45 /&gt;&lt;use x=290.576172 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=354.199219 xlink:href=#DejaVuSans-56 /&gt;&lt;use x=417.822266 xlink:href=#DejaVuSans-45 /&gt;&lt;use x=453.90625 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=517.529297 xlink:href=#DejaVuSans-54 /&gt;&lt;use x=581.152344 xlink:href=#DejaVuSans-32 /&gt;&lt;use x=612.939453 xlink:href=#DejaVuSans-50 /&gt;&lt;use x=676.5625 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=740.185547 xlink:href=#DejaVuSans-58 /&gt;&lt;use x=773.876953 xlink:href=#DejaVuSans-50 /&gt;&lt;use x=837.5 xlink:href=#DejaVuSans-54 /&gt;&lt;use x=901.123047 xlink:href=#DejaVuSans-58 /&gt;&lt;use x=934.814453 xlink:href=#DejaVuSans-52 /&gt;&lt;use x=998.4375 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;g style=fill:#262626; transform=&quot;translate(305.65642 277.90625)rotate(-90)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-57 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-55 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-45 /&gt;&lt;use x=290.576172 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=354.199219 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=417.822266 xlink:href=#DejaVuSans-45 /&gt;&lt;use x=453.90625 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=517.529297 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=581.152344 xlink:href=#DejaVuSans-32 /&gt;&lt;use x=612.939453 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=676.5625 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=740.185547 xlink:href=#DejaVuSans-58 /&gt;&lt;use x=773.876953 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=837.5 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=901.123047 xlink:href=#DejaVuSans-58 /&gt;&lt;use x=934.814453 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=998.4375 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_6&gt;&lt;g id=text_6&gt;&lt;g style=fill:#262626; transform=&quot;translate(355.097319 277.90625)rotate(-90)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-51 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-51 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-45 /&gt;&lt;use x=290.576172 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=354.199219 xlink:href=#DejaVuSans-53 /&gt;&lt;use x=417.822266 xlink:href=#DejaVuSans-45 /&gt;&lt;use x=453.90625 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=517.529297 xlink:href=#DejaVuSans-56 /&gt;&lt;use x=581.152344 xlink:href=#DejaVuSans-32 /&gt;&lt;use x=612.939453 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=676.5625 xlink:href=#DejaVuSans-51 /&gt;&lt;use x=740.185547 xlink:href=#DejaVuSans-58 /&gt;&lt;use x=773.876953 xlink:href=#DejaVuSans-51 /&gt;&lt;use x=837.5 xlink:href=#DejaVuSans-51 /&gt;&lt;use x=901.123047 xlink:href=#DejaVuSans-58 /&gt;&lt;use x=934.814453 xlink:href=#DejaVuSans-50 /&gt;&lt;use x=998.4375 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_7&gt;&lt;g id=text_7&gt;&lt;g style=fill:#262626; transform=&quot;translate(404.538218 277.90625)rotate(-90)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-57 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-54 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-45 /&gt;&lt;use x=290.576172 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=354.199219 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=417.822266 xlink:href=#DejaVuSans-45 /&gt;&lt;use x=453.90625 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=517.529297 xlink:href=#DejaVuSans-50 /&gt;&lt;use x=581.152344 xlink:href=#DejaVuSans-32 /&gt;&lt;use x=612.939453 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=676.5625 xlink:href=#DejaVuSans-55 /&gt;&lt;use x=740.185547 xlink:href=#DejaVuSans-58 /&gt;&lt;use x=773.876953 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=837.5 xlink:href=#DejaVuSans-54 /&gt;&lt;use x=901.123047 xlink:href=#DejaVuSans-58 /&gt;&lt;use x=934.814453 xlink:href=#DejaVuSans-52 /&gt;&lt;use x=998.4375 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_2&gt;&lt;g id=ytick_1&gt;&lt;g id=text_8&gt;&lt;g style=fill:#262626; transform=&quot;translate(49.9375 164.999219)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_2&gt;&lt;g id=text_9&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.85 142.065846)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-53 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_3&gt;&lt;g id=text_10&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.85 119.132474)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-53 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_4&gt;&lt;g id=text_11&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.85 96.199101)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-55 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-53 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_5&gt;&lt;g id=text_12&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.4875 73.265729)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_6&gt;&lt;g id=text_13&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.4875 50.332357)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-50 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-53 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_7&gt;&lt;g id=text_14&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.4875 27.398984)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-53 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_15&gt;&lt;defs&gt;&lt;path id=DejaVuSans-70 d=&quot;M 9.8125 72.90625 \n",
"L 51.703125 72.90625 \n",
"L 51.703125 64.59375 \n",
"L 19.671875 64.59375 \n",
"L 19.671875 43.109375 \n",
"L 48.578125 43.109375 \n",
"L 48.578125 34.8125 \n",
"L 19.671875 34.8125 \n",
"L 19.671875 0 \n",
"L 9.8125 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-114 d=&quot;M 41.109375 46.296875 \n",
"Q 39.59375 47.171875 37.8125 47.578125 \n",
"Q 36.03125 48 33.890625 48 \n",
"Q 26.265625 48 22.1875 43.046875 \n",
"Q 18.109375 38.09375 18.109375 28.8125 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 20.953125 51.171875 25.484375 53.578125 \n",
"Q 30.03125 56 36.53125 56 \n",
"Q 37.453125 56 38.578125 55.875 \n",
"Q 39.703125 55.765625 41.0625 55.515625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-101 d=&quot;M 56.203125 29.59375 \n",
"L 56.203125 25.203125 \n",
"L 14.890625 25.203125 \n",
"Q 15.484375 15.921875 20.484375 11.0625 \n",
"Q 25.484375 6.203125 34.421875 6.203125 \n",
"Q 39.59375 6.203125 44.453125 7.46875 \n",
"Q 49.3125 8.734375 54.109375 11.28125 \n",
"L 54.109375 2.78125 \n",
"Q 49.265625 0.734375 44.1875 -0.34375 \n",
"Q 39.109375 -1.421875 33.890625 -1.421875 \n",
"Q 20.796875 -1.421875 13.15625 6.1875 \n",
"Q 5.515625 13.8125 5.515625 26.8125 \n",
"Q 5.515625 40.234375 12.765625 48.109375 \n",
"Q 20.015625 56 32.328125 56 \n",
"Q 43.359375 56 49.78125 48.890625 \n",
"Q 56.203125 41.796875 56.203125 29.59375 \n",
"z\n",
"M 47.21875 32.234375 \n",
"Q 47.125 39.59375 43.09375 43.984375 \n",
"Q 39.0625 48.390625 32.421875 48.390625 \n",
"Q 24.90625 48.390625 20.390625 44.140625 \n",
"Q 15.875 39.890625 15.1875 32.171875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-113 d=&quot;M 14.796875 27.296875 \n",
"Q 14.796875 17.390625 18.875 11.75 \n",
"Q 22.953125 6.109375 30.078125 6.109375 \n",
"Q 37.203125 6.109375 41.296875 11.75 \n",
"Q 45.40625 17.390625 45.40625 27.296875 \n",
"Q 45.40625 37.203125 41.296875 42.84375 \n",
"Q 37.203125 48.484375 30.078125 48.484375 \n",
"Q 22.953125 48.484375 18.875 42.84375 \n",
"Q 14.796875 37.203125 14.796875 27.296875 \n",
"z\n",
"M 45.40625 8.203125 \n",
"Q 42.578125 3.328125 38.25 0.953125 \n",
"Q 33.9375 -1.421875 27.875 -1.421875 \n",
"Q 17.96875 -1.421875 11.734375 6.484375 \n",
"Q 5.515625 14.40625 5.515625 27.296875 \n",
"Q 5.515625 40.1875 11.734375 48.09375 \n",
"Q 17.96875 56 27.875 56 \n",
"Q 33.9375 56 38.25 53.625 \n",
"Q 42.578125 51.265625 45.40625 46.390625 \n",
"L 45.40625 54.6875 \n",
"L 54.390625 54.6875 \n",
"L 54.390625 -20.796875 \n",
"L 45.40625 -20.796875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-117 d=&quot;M 8.5 21.578125 \n",
"L 8.5 54.6875 \n",
"L 17.484375 54.6875 \n",
"L 17.484375 21.921875 \n",
"Q 17.484375 14.15625 20.5 10.265625 \n",
"Q 23.53125 6.390625 29.59375 6.390625 \n",
"Q 36.859375 6.390625 41.078125 11.03125 \n",
"Q 45.3125 15.671875 45.3125 23.6875 \n",
"L 45.3125 54.6875 \n",
"L 54.296875 54.6875 \n",
"L 54.296875 0 \n",
"L 45.3125 0 \n",
"L 45.3125 8.40625 \n",
"Q 42.046875 3.421875 37.71875 1 \n",
"Q 33.40625 -1.421875 27.6875 -1.421875 \n",
"Q 18.265625 -1.421875 13.375 4.4375 \n",
"Q 8.5 10.296875 8.5 21.578125 \n",
"z\n",
"M 31.109375 56 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-110 d=&quot;M 54.890625 33.015625 \n",
"L 54.890625 0 \n",
"L 45.90625 0 \n",
"L 45.90625 32.71875 \n",
"Q 45.90625 40.484375 42.875 44.328125 \n",
"Q 39.84375 48.1875 33.796875 48.1875 \n",
"Q 26.515625 48.1875 22.3125 43.546875 \n",
"Q 18.109375 38.921875 18.109375 30.90625 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 21.34375 51.125 25.703125 53.5625 \n",
"Q 30.078125 56 35.796875 56 \n",
"Q 45.21875 56 50.046875 50.171875 \n",
"Q 54.890625 44.34375 54.890625 33.015625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-99 d=&quot;M 48.78125 52.59375 \n",
"L 48.78125 44.1875 \n",
"Q 44.96875 46.296875 41.140625 47.34375 \n",
"Q 37.3125 48.390625 33.40625 48.390625 \n",
"Q 24.65625 48.390625 19.8125 42.84375 \n",
"Q 14.984375 37.3125 14.984375 27.296875 \n",
"Q 14.984375 17.28125 19.8125 11.734375 \n",
"Q 24.65625 6.203125 33.40625 6.203125 \n",
"Q 37.3125 6.203125 41.140625 7.25 \n",
"Q 44.96875 8.296875 48.78125 10.40625 \n",
"L 48.78125 2.09375 \n",
"Q 45.015625 0.34375 40.984375 -0.53125 \n",
"Q 36.96875 -1.421875 32.421875 -1.421875 \n",
"Q 20.0625 -1.421875 12.78125 6.34375 \n",
"Q 5.515625 14.109375 5.515625 27.296875 \n",
"Q 5.515625 40.671875 12.859375 48.328125 \n",
"Q 20.21875 56 33.015625 56 \n",
"Q 37.15625 56 41.109375 55.140625 \n",
"Q 45.0625 54.296875 48.78125 52.59375 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-121 d=&quot;M 32.171875 -5.078125 \n",
"Q 28.375 -14.84375 24.75 -17.8125 \n",
"Q 21.140625 -20.796875 15.09375 -20.796875 \n",
"L 7.90625 -20.796875 \n",
"L 7.90625 -13.28125 \n",
"L 13.1875 -13.28125 \n",
"Q 16.890625 -13.28125 18.9375 -11.515625 \n",
"Q 21 -9.765625 23.484375 -3.21875 \n",
"L 25.09375 0.875 \n",
"L 2.984375 54.6875 \n",
"L 12.5 54.6875 \n",
"L 29.59375 11.921875 \n",
"L 46.6875 54.6875 \n",
"L 56.203125 54.6875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(18.199844 115.83141)rotate(-90)scale(0.11 -0.11)&quot;&gt;&lt;use xlink:href=#DejaVuSans-70 /&gt;&lt;use x=50.269531 xlink:href=#DejaVuSans-114 /&gt;&lt;use x=89.132812 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=150.65625 xlink:href=#DejaVuSans-113 /&gt;&lt;use x=214.132812 xlink:href=#DejaVuSans-117 /&gt;&lt;use x=277.511719 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=339.035156 xlink:href=#DejaVuSans-110 /&gt;&lt;use x=402.414062 xlink:href=#DejaVuSans-99 /&gt;&lt;use x=457.394531 xlink:href=#DejaVuSans-121 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 82.909091 161.2 \n",
"L 89.352727 161.2 \n",
"L 89.352727 161.190827 \n",
"L 82.909091 161.190827 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 89.352727 161.2 \n",
"L 95.796364 161.2 \n",
"L 95.796364 161.190827 \n",
"L 89.352727 161.190827 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 95.796364 161.2 \n",
"L 102.24 161.2 \n",
"L 102.24 161.2 \n",
"L 95.796364 161.2 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 102.24 161.2 \n",
"L 108.683636 161.2 \n",
"L 108.683636 161.181653 \n",
"L 102.24 161.181653 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 108.683636 161.2 \n",
"L 115.127273 161.2 \n",
"L 115.127273 161.181653 \n",
"L 108.683636 161.181653 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 115.127273 161.2 \n",
"L 121.570909 161.2 \n",
"L 121.570909 161.2 \n",
"L 115.127273 161.2 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_9&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 121.570909 161.2 \n",
"L 128.014545 161.2 \n",
"L 128.014545 161.181653 \n",
"L 121.570909 161.181653 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_10&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 128.014545 161.2 \n",
"L 134.458182 161.2 \n",
"L 134.458182 161.154133 \n",
"L 128.014545 161.154133 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_11&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 134.458182 161.2 \n",
"L 140.901818 161.2 \n",
"L 140.901818 161.2 \n",
"L 134.458182 161.2 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_12&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 140.901818 161.2 \n",
"L 147.345455 161.2 \n",
"L 147.345455 161.163307 \n",
"L 140.901818 161.163307 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_13&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 147.345455 161.2 \n",
"L 153.789091 161.2 \n",
"L 153.789091 161.163307 \n",
"L 147.345455 161.163307 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_14&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 153.789091 161.2 \n",
"L 160.232727 161.2 \n",
"L 160.232727 161.14496 \n",
"L 153.789091 161.14496 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_15&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 160.232727 161.2 \n",
"L 166.676364 161.2 \n",
"L 166.676364 161.135787 \n",
"L 160.232727 161.135787 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_16&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 166.676364 161.2 \n",
"L 173.12 161.2 \n",
"L 173.12 161.11744 \n",
"L 166.676364 161.11744 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_17&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 173.12 161.2 \n",
"L 179.563636 161.2 \n",
"L 179.563636 160.961493 \n",
"L 173.12 160.961493 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_18&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 179.563636 161.2 \n",
"L 186.007273 161.2 \n",
"L 186.007273 160.97984 \n",
"L 179.563636 160.97984 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_19&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 186.007273 161.2 \n",
"L 192.450909 161.2 \n",
"L 192.450909 160.970666 \n",
"L 186.007273 160.970666 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_20&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 192.450909 161.2 \n",
"L 198.894545 161.2 \n",
"L 198.894545 161.016533 \n",
"L 192.450909 161.016533 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_21&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 198.894545 161.2 \n",
"L 205.338182 161.2 \n",
"L 205.338182 160.796373 \n",
"L 198.894545 160.796373 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_22&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 205.338182 161.2 \n",
"L 211.781818 161.2 \n",
"L 211.781818 160.778026 \n",
"L 205.338182 160.778026 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_23&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 211.781818 161.2 \n",
"L 218.225455 161.2 \n",
"L 218.225455 160.612906 \n",
"L 211.781818 160.612906 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_24&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 218.225455 161.2 \n",
"L 224.669091 161.2 \n",
"L 224.669091 160.484479 \n",
"L 218.225455 160.484479 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_25&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 224.669091 161.2 \n",
"L 231.112727 161.2 \n",
"L 231.112727 160.594559 \n",
"L 224.669091 160.594559 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_26&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 231.112727 161.2 \n",
"L 237.556364 161.2 \n",
"L 237.556364 160.319358 \n",
"L 231.112727 160.319358 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_27&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 237.556364 161.2 \n",
"L 244 161.2 \n",
"L 244 160.154238 \n",
"L 237.556364 160.154238 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_28&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 244 161.2 \n",
"L 250.443636 161.2 \n",
"L 250.443636 160.255145 \n",
"L 244 160.255145 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_29&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 250.443636 161.2 \n",
"L 256.887273 161.2 \n",
"L 256.887273 159.989118 \n",
"L 250.443636 159.989118 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_30&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 256.887273 161.2 \n",
"L 263.330909 161.2 \n",
"L 263.330909 160.071678 \n",
"L 256.887273 160.071678 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_31&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 263.330909 161.2 \n",
"L 269.774545 161.2 \n",
"L 269.774545 160.016638 \n",
"L 263.330909 160.016638 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_32&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 269.774545 161.2 \n",
"L 276.218182 161.2 \n",
"L 276.218182 159.594664 \n",
"L 269.774545 159.594664 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_33&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 276.218182 161.2 \n",
"L 282.661818 161.2 \n",
"L 282.661818 158.668156 \n",
"L 276.218182 158.668156 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_34&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 282.661818 161.2 \n",
"L 289.105455 161.2 \n",
"L 289.105455 159.668051 \n",
"L 282.661818 159.668051 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_35&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 289.105455 161.2 \n",
"L 295.549091 161.2 \n",
"L 295.549091 159.695571 \n",
"L 289.105455 159.695571 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_36&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 295.549091 161.2 \n",
"L 301.992727 161.2 \n",
"L 301.992727 158.475515 \n",
"L 295.549091 158.475515 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_37&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 301.992727 161.2 \n",
"L 308.436364 161.2 \n",
"L 308.436364 145.31176 \n",
"L 301.992727 145.31176 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_38&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 308.436364 161.2 \n",
"L 314.88 161.2 \n",
"L 314.88 111.599702 \n",
"L 308.436364 111.599702 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_39&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 314.88 161.2 \n",
"L 321.323636 161.2 \n",
"L 321.323636 83.510908 \n",
"L 314.88 83.510908 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_40&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 321.323636 161.2 \n",
"L 327.767273 161.2 \n",
"L 327.767273 57.403556 \n",
"L 321.323636 57.403556 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_41&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 327.767273 161.2 \n",
"L 334.210909 161.2 \n",
"L 334.210909 20.664294 \n",
"L 327.767273 20.664294 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_42&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 334.210909 161.2 \n",
"L 340.654545 161.2 \n",
"L 340.654545 152.411932 \n",
"L 334.210909 152.411932 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_43&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 340.654545 161.2 \n",
"L 347.098182 161.2 \n",
"L 347.098182 161.2 \n",
"L 340.654545 161.2 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_44&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 347.098182 161.2 \n",
"L 353.541818 161.2 \n",
"L 353.541818 161.2 \n",
"L 347.098182 161.2 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_45&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 353.541818 161.2 \n",
"L 359.985455 161.2 \n",
"L 359.985455 161.2 \n",
"L 353.541818 161.2 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_46&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 359.985455 161.2 \n",
"L 366.429091 161.2 \n",
"L 366.429091 161.2 \n",
"L 359.985455 161.2 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_47&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 366.429091 161.2 \n",
"L 372.872727 161.2 \n",
"L 372.872727 161.2 \n",
"L 366.429091 161.2 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_48&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 372.872727 161.2 \n",
"L 379.316364 161.2 \n",
"L 379.316364 161.2 \n",
"L 372.872727 161.2 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_49&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 379.316364 161.2 \n",
"L 385.76 161.2 \n",
"L 385.76 161.2 \n",
"L 379.316364 161.2 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_50&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 385.76 161.2 \n",
"L 392.203636 161.2 \n",
"L 392.203636 161.2 \n",
"L 385.76 161.2 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_51&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 392.203636 161.2 \n",
"L 398.647273 161.2 \n",
"L 398.647273 161.2 \n",
"L 392.203636 161.2 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_52&gt;&lt;path clip-path=url(#p09dbc955f1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 398.647273 161.2 \n",
"L 405.090909 161.2 \n",
"L 405.090909 161.190827 \n",
"L 398.647273 161.190827 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_53&gt;&lt;path style=fill:none; d=&quot;M 66.8 161.2 \n",
"L 66.8 13.637508 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_54&gt;&lt;path style=fill:none; d=&quot;M 421.2 161.2 \n",
"L 421.2 13.637508 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_55&gt;&lt;path style=fill:none; d=&quot;M 66.8 161.2 \n",
"L 421.2 161.2 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_56&gt;&lt;path style=fill:none; d=&quot;M 66.8 13.637508 \n",
"L 421.2 13.637508 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=p09dbc955f1&gt;&lt;rect height=147.562492 width=354.4 x=66.8 y=13.637508 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt;&lt;strong&gt;Histogram with fixed size bins&lt;/strong&gt; (bins=50) &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;a class=&quot;anchor-pos anchor-pos-variable&quot; id=pp_var_-6426062946977577065&gt;&lt;/a&gt;&lt;div class=variable&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4 title=reclat&gt;&lt;a href=#pp_var_-6426062946977577065&gt;reclat&lt;/a&gt;&lt;br&gt;&lt;small&gt;Real number (&amp;Ropf;)&lt;/small&gt;&lt;/p&gt;&lt;code&gt;&lt;abbr title=&quot;This variable has a high correlation with 1 fields: reclat_city&quot;&gt;HIGH CORRELATION&lt;/abbr&gt;&lt;/code&gt;&lt;br&gt;&lt;code&gt;MISSING&lt;/code&gt;&lt;br&gt;&lt;code&gt;ZEROS&lt;/code&gt;&lt;br&gt;&lt;p class=variable-description&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Distinct&lt;/th&gt;&lt;td&gt;12738&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct (%)&lt;/th&gt;&lt;td&gt;33.2%&lt;/td&gt;&lt;/tr&gt;&lt;tr class=alert&gt;&lt;th&gt;Missing&lt;/th&gt;&lt;td&gt;7315&lt;/td&gt;&lt;/tr&gt;&lt;tr class=alert&gt;&lt;th&gt;Missing (%)&lt;/th&gt;&lt;td&gt;16.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Infinite&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Infinite (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Mean&lt;/th&gt;&lt;td&gt;-39.10709514&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Minimum&lt;/th&gt;&lt;td&gt;-87.36667&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Maximum&lt;/th&gt;&lt;td&gt;81.16667&lt;/td&gt;&lt;/tr&gt;&lt;tr class=alert&gt;&lt;th&gt;Zeros&lt;/th&gt;&lt;td&gt;6438&lt;/td&gt;&lt;/tr&gt;&lt;tr class=alert&gt;&lt;th&gt;Zeros (%)&lt;/th&gt;&lt;td&gt;14.1%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Memory size&lt;/th&gt;&lt;td&gt;357.2 KiB&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=162pt version=1.1 viewbox=&quot;0 0 216 162&quot; width=216pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;defs&gt;&lt;style type=text/css&gt;\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" &lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 162 \n",
"L 216 162 \n",
"L 216 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 10.8 122.403612 \n",
"L 205.2 122.403612 \n",
"L 205.2 10.8 \n",
"L 10.8 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;defs&gt;&lt;path id=DejaVuSans-8722 d=&quot;M 10.59375 35.5 \n",
"L 73.1875 35.5 \n",
"L 73.1875 27.203125 \n",
"L 10.59375 27.203125 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-53 d=&quot;M 10.796875 72.90625 \n",
"L 49.515625 72.90625 \n",
"L 49.515625 64.59375 \n",
"L 19.828125 64.59375 \n",
"L 19.828125 46.734375 \n",
"Q 21.96875 47.46875 24.109375 47.828125 \n",
"Q 26.265625 48.1875 28.421875 48.1875 \n",
"Q 40.625 48.1875 47.75 41.5 \n",
"Q 54.890625 34.8125 54.890625 23.390625 \n",
"Q 54.890625 11.625 47.5625 5.09375 \n",
"Q 40.234375 -1.421875 26.90625 -1.421875 \n",
"Q 22.3125 -1.421875 17.546875 -0.640625 \n",
"Q 12.796875 0.140625 7.71875 1.703125 \n",
"L 7.71875 11.625 \n",
"Q 12.109375 9.234375 16.796875 8.0625 \n",
"Q 21.484375 6.890625 26.703125 6.890625 \n",
"Q 35.15625 6.890625 40.078125 11.328125 \n",
"Q 45.015625 15.765625 45.015625 23.390625 \n",
"Q 45.015625 31 40.078125 35.4375 \n",
"Q 35.15625 39.890625 26.703125 39.890625 \n",
"Q 22.75 39.890625 18.8125 39.015625 \n",
"Q 14.890625 38.140625 10.796875 36.28125 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-48 d=&quot;M 31.78125 66.40625 \n",
"Q 24.171875 66.40625 20.328125 58.90625 \n",
"Q 16.5 51.421875 16.5 36.375 \n",
"Q 16.5 21.390625 20.328125 13.890625 \n",
"Q 24.171875 6.390625 31.78125 6.390625 \n",
"Q 39.453125 6.390625 43.28125 13.890625 \n",
"Q 47.125 21.390625 47.125 36.375 \n",
"Q 47.125 51.421875 43.28125 58.90625 \n",
"Q 39.453125 66.40625 31.78125 66.40625 \n",
"z\n",
"M 31.78125 74.21875 \n",
"Q 44.046875 74.21875 50.515625 64.515625 \n",
"Q 56.984375 54.828125 56.984375 36.375 \n",
"Q 56.984375 17.96875 50.515625 8.265625 \n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \n",
"Q 19.53125 -1.421875 13.0625 8.265625 \n",
"Q 6.59375 17.96875 6.59375 36.375 \n",
"Q 6.59375 54.828125 13.0625 64.515625 \n",
"Q 19.53125 74.21875 31.78125 74.21875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(54.411397 149.140551)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;use xlink:href=#DejaVuSans-8722 /&gt;&lt;use x=83.789062 xlink:href=#DejaVuSans-53 /&gt;&lt;use x=147.412109 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;g style=fill:#262626; transform=&quot;translate(111.012071 140.801111)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;g style=fill:#262626; transform=&quot;translate(161.643437 144.400284)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;use xlink:href=#DejaVuSans-53 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 19.636364 122.403612 \n",
"L 23.170909 122.403612 \n",
"L 23.170909 45.164126 \n",
"L 19.636364 45.164126 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 23.170909 122.403612 \n",
"L 26.705455 122.403612 \n",
"L 26.705455 121.538582 \n",
"L 23.170909 121.538582 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 26.705455 122.403612 \n",
"L 30.24 122.403612 \n",
"L 30.24 109.482915 \n",
"L 26.705455 109.482915 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 30.24 122.403612 \n",
"L 33.774545 122.403612 \n",
"L 33.774545 77.75056 \n",
"L 30.24 77.75056 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 33.774545 122.403612 \n",
"L 37.309091 122.403612 \n",
"L 37.309091 16.114458 \n",
"L 33.774545 16.114458 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 37.309091 122.403612 \n",
"L 40.843636 122.403612 \n",
"L 40.843636 122.392662 \n",
"L 37.309091 122.392662 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_9&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 40.843636 122.403612 \n",
"L 44.378182 122.403612 \n",
"L 44.378182 122.403612 \n",
"L 40.843636 122.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_10&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 44.378182 122.403612 \n",
"L 47.912727 122.403612 \n",
"L 47.912727 122.403612 \n",
"L 44.378182 122.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_11&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 47.912727 122.403612 \n",
"L 51.447273 122.403612 \n",
"L 51.447273 122.392662 \n",
"L 47.912727 122.392662 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_12&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 51.447273 122.403612 \n",
"L 54.981818 122.403612 \n",
"L 54.981818 122.403612 \n",
"L 51.447273 122.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_13&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 54.981818 122.403612 \n",
"L 58.516364 122.403612 \n",
"L 58.516364 122.403612 \n",
"L 54.981818 122.403612 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_14&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 58.516364 122.403612 \n",
"L 62.050909 122.403612 \n",
"L 62.050909 122.392662 \n",
"L 58.516364 122.392662 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_15&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 62.050909 122.403612 \n",
"L 65.585455 122.403612 \n",
"L 65.585455 122.348863 \n",
"L 62.050909 122.348863 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_16&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 65.585455 122.403612 \n",
"L 69.12 122.403612 \n",
"L 69.12 122.272215 \n",
"L 65.585455 122.272215 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_17&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 69.12 122.403612 \n",
"L 72.654545 122.403612 \n",
"L 72.654545 122.151768 \n",
"L 69.12 122.151768 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_18&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 72.654545 122.403612 \n",
"L 76.189091 122.403612 \n",
"L 76.189091 121.801376 \n",
"L 72.654545 121.801376 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_19&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 76.189091 122.403612 \n",
"L 79.723636 122.403612 \n",
"L 79.723636 116.994439 \n",
"L 76.189091 116.994439 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_20&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 79.723636 122.403612 \n",
"L 83.258182 122.403612 \n",
"L 83.258182 121.012995 \n",
"L 79.723636 121.012995 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_21&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 83.258182 122.403612 \n",
"L 86.792727 122.403612 \n",
"L 86.792727 117.782821 \n",
"L 83.258182 117.782821 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_22&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 86.792727 122.403612 \n",
"L 90.327273 122.403612 \n",
"L 90.327273 121.582381 \n",
"L 86.792727 121.582381 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_23&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 90.327273 122.403612 \n",
"L 93.861818 122.403612 \n",
"L 93.861818 122.06417 \n",
"L 90.327273 122.06417 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_24&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 93.861818 122.403612 \n",
"L 97.396364 122.403612 \n",
"L 97.396364 122.206517 \n",
"L 93.861818 122.206517 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_25&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 97.396364 122.403612 \n",
"L 100.930909 122.403612 \n",
"L 100.930909 122.294115 \n",
"L 97.396364 122.294115 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_26&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 100.930909 122.403612 \n",
"L 104.465455 122.403612 \n",
"L 104.465455 122.129868 \n",
"L 100.930909 122.129868 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_27&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 104.465455 122.403612 \n",
"L 108 122.403612 \n",
"L 108 122.272215 \n",
"L 104.465455 122.272215 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_28&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 108 122.403612 \n",
"L 111.534545 122.403612 \n",
"L 111.534545 51.832519 \n",
"L 108 51.832519 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_29&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 111.534545 122.403612 \n",
"L 115.069091 122.403612 \n",
"L 115.069091 122.283165 \n",
"L 111.534545 122.283165 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_30&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 115.069091 122.403612 \n",
"L 118.603636 122.403612 \n",
"L 118.603636 122.294115 \n",
"L 115.069091 122.294115 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_31&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 118.603636 122.403612 \n",
"L 122.138182 122.403612 \n",
"L 122.138182 122.129868 \n",
"L 118.603636 122.129868 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_32&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 122.138182 122.403612 \n",
"L 125.672727 122.403612 \n",
"L 125.672727 121.899924 \n",
"L 122.138182 121.899924 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_33&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 125.672727 122.403612 \n",
"L 129.207273 122.403612 \n",
"L 129.207273 122.086069 \n",
"L 125.672727 122.086069 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_34&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 129.207273 122.403612 \n",
"L 132.741818 122.403612 \n",
"L 132.741818 94.251823 \n",
"L 129.207273 94.251823 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_35&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 132.741818 122.403612 \n",
"L 136.276364 122.403612 \n",
"L 136.276364 114.3884 \n",
"L 132.741818 114.3884 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_36&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 136.276364 122.403612 \n",
"L 139.810909 122.403612 \n",
"L 139.810909 111.322472 \n",
"L 136.276364 111.322472 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_37&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 139.810909 122.403612 \n",
"L 143.345455 122.403612 \n",
"L 143.345455 106.548384 \n",
"L 139.810909 106.548384 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_38&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 143.345455 122.403612 \n",
"L 146.88 122.403612 \n",
"L 146.88 117.027288 \n",
"L 143.345455 117.027288 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_39&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 146.88 122.403612 \n",
"L 150.414545 122.403612 \n",
"L 150.414545 113.304376 \n",
"L 146.88 113.304376 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_40&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 150.414545 122.403612 \n",
"L 153.949091 122.403612 \n",
"L 153.949091 117.739022 \n",
"L 150.414545 117.739022 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_41&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 153.949091 122.403612 \n",
"L 157.483636 122.403612 \n",
"L 157.483636 119.983719 \n",
"L 153.949091 119.983719 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_42&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 157.483636 122.403612 \n",
"L 161.018182 122.403612 \n",
"L 161.018182 120.487407 \n",
"L 157.483636 120.487407 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_43&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 161.018182 122.403612 \n",
"L 164.552727 122.403612 \n",
"L 164.552727 120.629754 \n",
"L 161.018182 120.629754 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_44&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 164.552727 122.403612 \n",
"L 168.087273 122.403612 \n",
"L 168.087273 120.881598 \n",
"L 164.552727 120.881598 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_45&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 168.087273 122.403612 \n",
"L 171.621818 122.403612 \n",
"L 171.621818 121.538582 \n",
"L 168.087273 121.538582 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_46&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 171.621818 122.403612 \n",
"L 175.156364 122.403612 \n",
"L 175.156364 121.308638 \n",
"L 171.621818 121.308638 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_47&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 175.156364 122.403612 \n",
"L 178.690909 122.403612 \n",
"L 178.690909 122.151768 \n",
"L 175.156364 122.151768 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_48&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 178.690909 122.403612 \n",
"L 182.225455 122.403612 \n",
"L 182.225455 122.250316 \n",
"L 178.690909 122.250316 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_49&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 182.225455 122.403612 \n",
"L 185.76 122.403612 \n",
"L 185.76 122.337914 \n",
"L 182.225455 122.337914 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_50&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 185.76 122.403612 \n",
"L 189.294545 122.403612 \n",
"L 189.294545 122.381713 \n",
"L 185.76 122.381713 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_51&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 189.294545 122.403612 \n",
"L 192.829091 122.403612 \n",
"L 192.829091 122.381713 \n",
"L 189.294545 122.381713 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_52&gt;&lt;path clip-path=url(#pccd7fefd35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 192.829091 122.403612 \n",
"L 196.363636 122.403612 \n",
"L 196.363636 122.392662 \n",
"L 192.829091 122.392662 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_53&gt;&lt;path style=fill:none; d=&quot;M 10.8 122.403612 \n",
"L 10.8 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_54&gt;&lt;path style=fill:none; d=&quot;M 205.2 122.403612 \n",
"L 205.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_55&gt;&lt;path style=fill:none; d=&quot;M 10.8 122.403612 \n",
"L 205.2 122.403612 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_56&gt;&lt;path style=fill:none; d=&quot;M 10.8 10.8 \n",
"L 205.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=pccd7fefd35&gt;&lt;rect height=111.603612 width=194.4 x=10.8 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;/div&gt;&lt;div class=&quot;col-sm-12 text-right&quot;&gt;&lt;button class=&quot;btn btn-default btn-sm&quot; data-toggle=collapse data-target=&quot;#bottom--6426062946977577065, #minifreqtable-6426062946977577065&quot; aria-expanded=true aria-controls=collapseExample&gt;Toggle details&lt;/button&gt;&lt;/div&gt;&lt;div id=bottom--6426062946977577065 class=collapse&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#-6426062946977577065bottom--6426062946977577065statistics aria-controls=-6426062946977577065bottom--6426062946977577065statistics role=tab data-toggle=tab&gt;Statistics&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-6426062946977577065bottom--6426062946977577065histogram aria-controls=-6426062946977577065bottom--6426062946977577065histogram role=tab data-toggle=tab&gt;Histogram&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-6426062946977577065bottom--6426062946977577065common_values aria-controls=-6426062946977577065bottom--6426062946977577065common_values role=tab data-toggle=tab&gt;Common values&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-6426062946977577065bottom--6426062946977577065extreme_values aria-controls=-6426062946977577065bottom--6426062946977577065extreme_values role=tab data-toggle=tab&gt;Extreme values&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=-6426062946977577065bottom--6426062946977577065statistics&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Quantile statistics&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Minimum&lt;/th&gt;&lt;td&gt;-87.36667&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;5-th percentile&lt;/th&gt;&lt;td&gt;-84.35476&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Q1&lt;/th&gt;&lt;td&gt;-76.71377&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;median&lt;/th&gt;&lt;td&gt;-71.5&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Q3&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;95-th percentile&lt;/th&gt;&lt;td&gt;34.494325&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Maximum&lt;/th&gt;&lt;td&gt;81.16667&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Range&lt;/th&gt;&lt;td&gt;168.53334&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Interquartile range (IQR)&lt;/th&gt;&lt;td&gt;76.71377&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Descriptive statistics&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Standard deviation&lt;/th&gt;&lt;td&gt;46.38601095&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Coefficient of variation (CV)&lt;/th&gt;&lt;td&gt;-1.186127755&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Kurtosis&lt;/th&gt;&lt;td&gt;-1.476865084&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Mean&lt;/th&gt;&lt;td&gt;-39.10709514&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Median Absolute Deviation (MAD)&lt;/th&gt;&lt;td&gt;12.76459&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Skewness&lt;/th&gt;&lt;td&gt;0.4913157316&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Sum&lt;/th&gt;&lt;td&gt;-1502142.632&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Variance&lt;/th&gt;&lt;td&gt;2151.662012&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Monotocity&lt;/th&gt;&lt;td&gt;Not monotonic&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-6426062946977577065bottom--6426062946977577065histogram&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=288pt version=1.1 viewbox=&quot;0 0 432 288&quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;defs&gt;&lt;style type=text/css&gt;\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" &lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 288 \n",
"L 432 288 \n",
"L 432 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 66.675 244.691301 \n",
"L 421.2 244.691301 \n",
"L 421.2 10.8 \n",
"L 66.675 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;defs&gt;&lt;path id=DejaVuSans-8722 d=&quot;M 10.59375 35.5 \n",
"L 73.1875 35.5 \n",
"L 73.1875 27.203125 \n",
"L 10.59375 27.203125 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-55 d=&quot;M 8.203125 72.90625 \n",
"L 55.078125 72.90625 \n",
"L 55.078125 68.703125 \n",
"L 28.609375 0 \n",
"L 18.3125 0 \n",
"L 43.21875 64.59375 \n",
"L 8.203125 64.59375 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-53 d=&quot;M 10.796875 72.90625 \n",
"L 49.515625 72.90625 \n",
"L 49.515625 64.59375 \n",
"L 19.828125 64.59375 \n",
"L 19.828125 46.734375 \n",
"Q 21.96875 47.46875 24.109375 47.828125 \n",
"Q 26.265625 48.1875 28.421875 48.1875 \n",
"Q 40.625 48.1875 47.75 41.5 \n",
"Q 54.890625 34.8125 54.890625 23.390625 \n",
"Q 54.890625 11.625 47.5625 5.09375 \n",
"Q 40.234375 -1.421875 26.90625 -1.421875 \n",
"Q 22.3125 -1.421875 17.546875 -0.640625 \n",
"Q 12.796875 0.140625 7.71875 1.703125 \n",
"L 7.71875 11.625 \n",
"Q 12.109375 9.234375 16.796875 8.0625 \n",
"Q 21.484375 6.890625 26.703125 6.890625 \n",
"Q 35.15625 6.890625 40.078125 11.328125 \n",
"Q 45.015625 15.765625 45.015625 23.390625 \n",
"Q 45.015625 31 40.078125 35.4375 \n",
"Q 35.15625 39.890625 26.703125 39.890625 \n",
"Q 22.75 39.890625 18.8125 39.015625 \n",
"Q 14.890625 38.140625 10.796875 36.28125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(100.928766 275.487476)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-8722 /&gt;&lt;use x=83.789062 xlink:href=#DejaVuSans-55 /&gt;&lt;use x=147.412109 xlink:href=#DejaVuSans-53 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;defs&gt;&lt;path id=DejaVuSans-48 d=&quot;M 31.78125 66.40625 \n",
"Q 24.171875 66.40625 20.328125 58.90625 \n",
"Q 16.5 51.421875 16.5 36.375 \n",
"Q 16.5 21.390625 20.328125 13.890625 \n",
"Q 24.171875 6.390625 31.78125 6.390625 \n",
"Q 39.453125 6.390625 43.28125 13.890625 \n",
"Q 47.125 21.390625 47.125 36.375 \n",
"Q 47.125 51.421875 43.28125 58.90625 \n",
"Q 39.453125 66.40625 31.78125 66.40625 \n",
"z\n",
"M 31.78125 74.21875 \n",
"Q 44.046875 74.21875 50.515625 64.515625 \n",
"Q 56.984375 54.828125 56.984375 36.375 \n",
"Q 56.984375 17.96875 50.515625 8.265625 \n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \n",
"Q 19.53125 -1.421875 13.0625 8.265625 \n",
"Q 6.59375 17.96875 6.59375 36.375 \n",
"Q 6.59375 54.828125 13.0625 64.515625 \n",
"Q 19.53125 74.21875 31.78125 74.21875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(148.737623 275.487476)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-8722 /&gt;&lt;use x=83.789062 xlink:href=#DejaVuSans-53 /&gt;&lt;use x=147.412109 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;defs&gt;&lt;path id=DejaVuSans-50 d=&quot;M 19.1875 8.296875 \n",
"L 53.609375 8.296875 \n",
"L 53.609375 0 \n",
"L 7.328125 0 \n",
"L 7.328125 8.296875 \n",
"Q 12.9375 14.109375 22.625 23.890625 \n",
"Q 32.328125 33.6875 34.8125 36.53125 \n",
"Q 39.546875 41.84375 41.421875 45.53125 \n",
"Q 43.3125 49.21875 43.3125 52.78125 \n",
"Q 43.3125 58.59375 39.234375 62.25 \n",
"Q 35.15625 65.921875 28.609375 65.921875 \n",
"Q 23.96875 65.921875 18.8125 64.3125 \n",
"Q 13.671875 62.703125 7.8125 59.421875 \n",
"L 7.8125 69.390625 \n",
"Q 13.765625 71.78125 18.9375 73 \n",
"Q 24.125 74.21875 28.421875 74.21875 \n",
"Q 39.75 74.21875 46.484375 68.546875 \n",
"Q 53.21875 62.890625 53.21875 53.421875 \n",
"Q 53.21875 48.921875 51.53125 44.890625 \n",
"Q 49.859375 40.875 45.40625 35.40625 \n",
"Q 44.1875 33.984375 37.640625 27.21875 \n",
"Q 31.109375 20.453125 19.1875 8.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(196.54648 275.487476)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-8722 /&gt;&lt;use x=83.789062 xlink:href=#DejaVuSans-50 /&gt;&lt;use x=147.412109 xlink:href=#DejaVuSans-53 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;g style=fill:#262626; transform=&quot;translate(249.567488 265.063175)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;g style=fill:#262626; transform=&quot;translate(295.126861 269.562142)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-53 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_6&gt;&lt;g id=text_6&gt;&lt;g style=fill:#262626; transform=&quot;translate(342.935718 269.562142)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-53 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_7&gt;&lt;g id=text_7&gt;&lt;g style=fill:#262626; transform=&quot;translate(390.744575 269.562142)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-55 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-53 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_2&gt;&lt;g id=ytick_1&gt;&lt;g id=text_8&gt;&lt;g style=fill:#262626; transform=&quot;translate(49.8125 248.49052)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_2&gt;&lt;g id=text_9&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.725 202.595059)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_3&gt;&lt;g id=text_10&gt;&lt;defs&gt;&lt;path id=DejaVuSans-52 d=&quot;M 37.796875 64.3125 \n",
"L 12.890625 25.390625 \n",
"L 37.796875 25.390625 \n",
"z\n",
"M 35.203125 72.90625 \n",
"L 47.609375 72.90625 \n",
"L 47.609375 25.390625 \n",
"L 58.015625 25.390625 \n",
"L 58.015625 17.1875 \n",
"L 47.609375 17.1875 \n",
"L 47.609375 0 \n",
"L 37.796875 0 \n",
"L 37.796875 17.1875 \n",
"L 4.890625 17.1875 \n",
"L 4.890625 26.703125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.725 156.699598)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-52 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_4&gt;&lt;g id=text_11&gt;&lt;defs&gt;&lt;path id=DejaVuSans-54 d=&quot;M 33.015625 40.375 \n",
"Q 26.375 40.375 22.484375 35.828125 \n",
"Q 18.609375 31.296875 18.609375 23.390625 \n",
"Q 18.609375 15.53125 22.484375 10.953125 \n",
"Q 26.375 6.390625 33.015625 6.390625 \n",
"Q 39.65625 6.390625 43.53125 10.953125 \n",
"Q 47.40625 15.53125 47.40625 23.390625 \n",
"Q 47.40625 31.296875 43.53125 35.828125 \n",
"Q 39.65625 40.375 33.015625 40.375 \n",
"z\n",
"M 52.59375 71.296875 \n",
"L 52.59375 62.3125 \n",
"Q 48.875 64.0625 45.09375 64.984375 \n",
"Q 41.3125 65.921875 37.59375 65.921875 \n",
"Q 27.828125 65.921875 22.671875 59.328125 \n",
"Q 17.53125 52.734375 16.796875 39.40625 \n",
"Q 19.671875 43.65625 24.015625 45.921875 \n",
"Q 28.375 48.1875 33.59375 48.1875 \n",
"Q 44.578125 48.1875 50.953125 41.515625 \n",
"Q 57.328125 34.859375 57.328125 23.390625 \n",
"Q 57.328125 12.15625 50.6875 5.359375 \n",
"Q 44.046875 -1.421875 33.015625 -1.421875 \n",
"Q 20.359375 -1.421875 13.671875 8.265625 \n",
"Q 6.984375 17.96875 6.984375 36.375 \n",
"Q 6.984375 53.65625 15.1875 63.9375 \n",
"Q 23.390625 74.21875 37.203125 74.21875 \n",
"Q 40.921875 74.21875 44.703125 73.484375 \n",
"Q 48.484375 72.75 52.59375 71.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.725 110.804137)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-54 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_5&gt;&lt;g id=text_12&gt;&lt;defs&gt;&lt;path id=DejaVuSans-56 d=&quot;M 31.78125 34.625 \n",
"Q 24.75 34.625 20.71875 30.859375 \n",
"Q 16.703125 27.09375 16.703125 20.515625 \n",
"Q 16.703125 13.921875 20.71875 10.15625 \n",
"Q 24.75 6.390625 31.78125 6.390625 \n",
"Q 38.8125 6.390625 42.859375 10.171875 \n",
"Q 46.921875 13.96875 46.921875 20.515625 \n",
"Q 46.921875 27.09375 42.890625 30.859375 \n",
"Q 38.875 34.625 31.78125 34.625 \n",
"z\n",
"M 21.921875 38.8125 \n",
"Q 15.578125 40.375 12.03125 44.71875 \n",
"Q 8.5 49.078125 8.5 55.328125 \n",
"Q 8.5 64.0625 14.71875 69.140625 \n",
"Q 20.953125 74.21875 31.78125 74.21875 \n",
"Q 42.671875 74.21875 48.875 69.140625 \n",
"Q 55.078125 64.0625 55.078125 55.328125 \n",
"Q 55.078125 49.078125 51.53125 44.71875 \n",
"Q 48 40.375 41.703125 38.8125 \n",
"Q 48.828125 37.15625 52.796875 32.3125 \n",
"Q 56.78125 27.484375 56.78125 20.515625 \n",
"Q 56.78125 9.90625 50.3125 4.234375 \n",
"Q 43.84375 -1.421875 31.78125 -1.421875 \n",
"Q 19.734375 -1.421875 13.25 4.234375 \n",
"Q 6.78125 9.90625 6.78125 20.515625 \n",
"Q 6.78125 27.484375 10.78125 32.3125 \n",
"Q 14.796875 37.15625 21.921875 38.8125 \n",
"z\n",
"M 18.3125 54.390625 \n",
"Q 18.3125 48.734375 21.84375 45.5625 \n",
"Q 25.390625 42.390625 31.78125 42.390625 \n",
"Q 38.140625 42.390625 41.71875 45.5625 \n",
"Q 45.3125 48.734375 45.3125 54.390625 \n",
"Q 45.3125 60.0625 41.71875 63.234375 \n",
"Q 38.140625 66.40625 31.78125 66.40625 \n",
"Q 25.390625 66.40625 21.84375 63.234375 \n",
"Q 18.3125 60.0625 18.3125 54.390625 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(30.725 64.908676)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-56 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_6&gt;&lt;g id=text_13&gt;&lt;defs&gt;&lt;path id=DejaVuSans-49 d=&quot;M 12.40625 8.296875 \n",
"L 28.515625 8.296875 \n",
"L 28.515625 63.921875 \n",
"L 10.984375 60.40625 \n",
"L 10.984375 69.390625 \n",
"L 28.421875 72.90625 \n",
"L 38.28125 72.90625 \n",
"L 38.28125 8.296875 \n",
"L 54.390625 8.296875 \n",
"L 54.390625 0 \n",
"L 12.40625 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.3625 19.013215)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=254.492188 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_14&gt;&lt;defs&gt;&lt;path id=DejaVuSans-70 d=&quot;M 9.8125 72.90625 \n",
"L 51.703125 72.90625 \n",
"L 51.703125 64.59375 \n",
"L 19.671875 64.59375 \n",
"L 19.671875 43.109375 \n",
"L 48.578125 43.109375 \n",
"L 48.578125 34.8125 \n",
"L 19.671875 34.8125 \n",
"L 19.671875 0 \n",
"L 9.8125 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-114 d=&quot;M 41.109375 46.296875 \n",
"Q 39.59375 47.171875 37.8125 47.578125 \n",
"Q 36.03125 48 33.890625 48 \n",
"Q 26.265625 48 22.1875 43.046875 \n",
"Q 18.109375 38.09375 18.109375 28.8125 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 20.953125 51.171875 25.484375 53.578125 \n",
"Q 30.03125 56 36.53125 56 \n",
"Q 37.453125 56 38.578125 55.875 \n",
"Q 39.703125 55.765625 41.0625 55.515625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-101 d=&quot;M 56.203125 29.59375 \n",
"L 56.203125 25.203125 \n",
"L 14.890625 25.203125 \n",
"Q 15.484375 15.921875 20.484375 11.0625 \n",
"Q 25.484375 6.203125 34.421875 6.203125 \n",
"Q 39.59375 6.203125 44.453125 7.46875 \n",
"Q 49.3125 8.734375 54.109375 11.28125 \n",
"L 54.109375 2.78125 \n",
"Q 49.265625 0.734375 44.1875 -0.34375 \n",
"Q 39.109375 -1.421875 33.890625 -1.421875 \n",
"Q 20.796875 -1.421875 13.15625 6.1875 \n",
"Q 5.515625 13.8125 5.515625 26.8125 \n",
"Q 5.515625 40.234375 12.765625 48.109375 \n",
"Q 20.015625 56 32.328125 56 \n",
"Q 43.359375 56 49.78125 48.890625 \n",
"Q 56.203125 41.796875 56.203125 29.59375 \n",
"z\n",
"M 47.21875 32.234375 \n",
"Q 47.125 39.59375 43.09375 43.984375 \n",
"Q 39.0625 48.390625 32.421875 48.390625 \n",
"Q 24.90625 48.390625 20.390625 44.140625 \n",
"Q 15.875 39.890625 15.1875 32.171875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-113 d=&quot;M 14.796875 27.296875 \n",
"Q 14.796875 17.390625 18.875 11.75 \n",
"Q 22.953125 6.109375 30.078125 6.109375 \n",
"Q 37.203125 6.109375 41.296875 11.75 \n",
"Q 45.40625 17.390625 45.40625 27.296875 \n",
"Q 45.40625 37.203125 41.296875 42.84375 \n",
"Q 37.203125 48.484375 30.078125 48.484375 \n",
"Q 22.953125 48.484375 18.875 42.84375 \n",
"Q 14.796875 37.203125 14.796875 27.296875 \n",
"z\n",
"M 45.40625 8.203125 \n",
"Q 42.578125 3.328125 38.25 0.953125 \n",
"Q 33.9375 -1.421875 27.875 -1.421875 \n",
"Q 17.96875 -1.421875 11.734375 6.484375 \n",
"Q 5.515625 14.40625 5.515625 27.296875 \n",
"Q 5.515625 40.1875 11.734375 48.09375 \n",
"Q 17.96875 56 27.875 56 \n",
"Q 33.9375 56 38.25 53.625 \n",
"Q 42.578125 51.265625 45.40625 46.390625 \n",
"L 45.40625 54.6875 \n",
"L 54.390625 54.6875 \n",
"L 54.390625 -20.796875 \n",
"L 45.40625 -20.796875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-117 d=&quot;M 8.5 21.578125 \n",
"L 8.5 54.6875 \n",
"L 17.484375 54.6875 \n",
"L 17.484375 21.921875 \n",
"Q 17.484375 14.15625 20.5 10.265625 \n",
"Q 23.53125 6.390625 29.59375 6.390625 \n",
"Q 36.859375 6.390625 41.078125 11.03125 \n",
"Q 45.3125 15.671875 45.3125 23.6875 \n",
"L 45.3125 54.6875 \n",
"L 54.296875 54.6875 \n",
"L 54.296875 0 \n",
"L 45.3125 0 \n",
"L 45.3125 8.40625 \n",
"Q 42.046875 3.421875 37.71875 1 \n",
"Q 33.40625 -1.421875 27.6875 -1.421875 \n",
"Q 18.265625 -1.421875 13.375 4.4375 \n",
"Q 8.5 10.296875 8.5 21.578125 \n",
"z\n",
"M 31.109375 56 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-110 d=&quot;M 54.890625 33.015625 \n",
"L 54.890625 0 \n",
"L 45.90625 0 \n",
"L 45.90625 32.71875 \n",
"Q 45.90625 40.484375 42.875 44.328125 \n",
"Q 39.84375 48.1875 33.796875 48.1875 \n",
"Q 26.515625 48.1875 22.3125 43.546875 \n",
"Q 18.109375 38.921875 18.109375 30.90625 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 21.34375 51.125 25.703125 53.5625 \n",
"Q 30.078125 56 35.796875 56 \n",
"Q 45.21875 56 50.046875 50.171875 \n",
"Q 54.890625 44.34375 54.890625 33.015625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-99 d=&quot;M 48.78125 52.59375 \n",
"L 48.78125 44.1875 \n",
"Q 44.96875 46.296875 41.140625 47.34375 \n",
"Q 37.3125 48.390625 33.40625 48.390625 \n",
"Q 24.65625 48.390625 19.8125 42.84375 \n",
"Q 14.984375 37.3125 14.984375 27.296875 \n",
"Q 14.984375 17.28125 19.8125 11.734375 \n",
"Q 24.65625 6.203125 33.40625 6.203125 \n",
"Q 37.3125 6.203125 41.140625 7.25 \n",
"Q 44.96875 8.296875 48.78125 10.40625 \n",
"L 48.78125 2.09375 \n",
"Q 45.015625 0.34375 40.984375 -0.53125 \n",
"Q 36.96875 -1.421875 32.421875 -1.421875 \n",
"Q 20.0625 -1.421875 12.78125 6.34375 \n",
"Q 5.515625 14.109375 5.515625 27.296875 \n",
"Q 5.515625 40.671875 12.859375 48.328125 \n",
"Q 20.21875 56 33.015625 56 \n",
"Q 37.15625 56 41.109375 55.140625 \n",
"Q 45.0625 54.296875 48.78125 52.59375 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-121 d=&quot;M 32.171875 -5.078125 \n",
"Q 28.375 -14.84375 24.75 -17.8125 \n",
"Q 21.140625 -20.796875 15.09375 -20.796875 \n",
"L 7.90625 -20.796875 \n",
"L 7.90625 -13.28125 \n",
"L 13.1875 -13.28125 \n",
"Q 16.890625 -13.28125 18.9375 -11.515625 \n",
"Q 21 -9.765625 23.484375 -3.21875 \n",
"L 25.09375 0.875 \n",
"L 2.984375 54.6875 \n",
"L 12.5 54.6875 \n",
"L 29.59375 11.921875 \n",
"L 46.6875 54.6875 \n",
"L 56.203125 54.6875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(18.074844 156.158307)rotate(-90)scale(0.11 -0.11)&quot;&gt;&lt;use xlink:href=#DejaVuSans-70 /&gt;&lt;use x=50.269531 xlink:href=#DejaVuSans-114 /&gt;&lt;use x=89.132812 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=150.65625 xlink:href=#DejaVuSans-113 /&gt;&lt;use x=214.132812 xlink:href=#DejaVuSans-117 /&gt;&lt;use x=277.511719 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=339.035156 xlink:href=#DejaVuSans-110 /&gt;&lt;use x=402.414062 xlink:href=#DejaVuSans-99 /&gt;&lt;use x=457.394531 xlink:href=#DejaVuSans-121 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 82.789773 244.691301 \n",
"L 89.235682 244.691301 \n",
"L 89.235682 82.81801 \n",
"L 82.789773 82.81801 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 89.235682 244.691301 \n",
"L 95.681591 244.691301 \n",
"L 95.681591 242.878431 \n",
"L 89.235682 242.878431 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 95.681591 244.691301 \n",
"L 102.1275 244.691301 \n",
"L 102.1275 217.612979 \n",
"L 95.681591 217.612979 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 102.1275 244.691301 \n",
"L 108.573409 244.691301 \n",
"L 108.573409 151.110456 \n",
"L 102.1275 151.110456 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 108.573409 244.691301 \n",
"L 115.019318 244.691301 \n",
"L 115.019318 21.937681 \n",
"L 108.573409 21.937681 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 115.019318 244.691301 \n",
"L 121.465227 244.691301 \n",
"L 121.465227 244.668354 \n",
"L 115.019318 244.668354 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_9&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 121.465227 244.691301 \n",
"L 127.911136 244.691301 \n",
"L 127.911136 244.691301 \n",
"L 121.465227 244.691301 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_10&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 127.911136 244.691301 \n",
"L 134.357045 244.691301 \n",
"L 134.357045 244.691301 \n",
"L 127.911136 244.691301 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_11&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 134.357045 244.691301 \n",
"L 140.802955 244.691301 \n",
"L 140.802955 244.668354 \n",
"L 134.357045 244.668354 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_12&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 140.802955 244.691301 \n",
"L 147.248864 244.691301 \n",
"L 147.248864 244.691301 \n",
"L 140.802955 244.691301 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_13&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 147.248864 244.691301 \n",
"L 153.694773 244.691301 \n",
"L 153.694773 244.691301 \n",
"L 147.248864 244.691301 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_14&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 153.694773 244.691301 \n",
"L 160.140682 244.691301 \n",
"L 160.140682 244.668354 \n",
"L 153.694773 244.668354 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_15&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 160.140682 244.691301 \n",
"L 166.586591 244.691301 \n",
"L 166.586591 244.576563 \n",
"L 160.140682 244.576563 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_16&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 166.586591 244.691301 \n",
"L 173.0325 244.691301 \n",
"L 173.0325 244.415929 \n",
"L 166.586591 244.415929 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_17&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 173.0325 244.691301 \n",
"L 179.478409 244.691301 \n",
"L 179.478409 244.163504 \n",
"L 173.0325 244.163504 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_18&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 179.478409 244.691301 \n",
"L 185.924318 244.691301 \n",
"L 185.924318 243.429176 \n",
"L 179.478409 243.429176 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_19&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 185.924318 244.691301 \n",
"L 192.370227 244.691301 \n",
"L 192.370227 233.355123 \n",
"L 185.924318 233.355123 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_20&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 192.370227 244.691301 \n",
"L 198.816136 244.691301 \n",
"L 198.816136 241.77694 \n",
"L 192.370227 241.77694 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_21&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 198.816136 244.691301 \n",
"L 205.262045 244.691301 \n",
"L 205.262045 235.007359 \n",
"L 198.816136 235.007359 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_22&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 205.262045 244.691301 \n",
"L 211.707955 244.691301 \n",
"L 211.707955 242.970222 \n",
"L 205.262045 242.970222 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_23&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 211.707955 244.691301 \n",
"L 218.153864 244.691301 \n",
"L 218.153864 243.979922 \n",
"L 211.707955 243.979922 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_24&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 218.153864 244.691301 \n",
"L 224.599773 244.691301 \n",
"L 224.599773 244.278242 \n",
"L 218.153864 244.278242 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_25&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 224.599773 244.691301 \n",
"L 231.045682 244.691301 \n",
"L 231.045682 244.461824 \n",
"L 224.599773 244.461824 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_26&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 231.045682 244.691301 \n",
"L 237.491591 244.691301 \n",
"L 237.491591 244.117608 \n",
"L 231.045682 244.117608 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_27&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 237.491591 244.691301 \n",
"L 243.9375 244.691301 \n",
"L 243.9375 244.415929 \n",
"L 237.491591 244.415929 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_28&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 243.9375 244.691301 \n",
"L 250.383409 244.691301 \n",
"L 250.383409 96.793178 \n",
"L 243.9375 96.793178 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_29&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 250.383409 244.691301 \n",
"L 256.829318 244.691301 \n",
"L 256.829318 244.438876 \n",
"L 250.383409 244.438876 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_30&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 256.829318 244.691301 \n",
"L 263.275227 244.691301 \n",
"L 263.275227 244.461824 \n",
"L 256.829318 244.461824 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_31&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 263.275227 244.691301 \n",
"L 269.721136 244.691301 \n",
"L 269.721136 244.117608 \n",
"L 263.275227 244.117608 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_32&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 269.721136 244.691301 \n",
"L 276.167045 244.691301 \n",
"L 276.167045 243.635706 \n",
"L 269.721136 243.635706 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_33&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 276.167045 244.691301 \n",
"L 282.612955 244.691301 \n",
"L 282.612955 244.025817 \n",
"L 276.167045 244.025817 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_34&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 282.612955 244.691301 \n",
"L 289.058864 244.691301 \n",
"L 289.058864 185.692686 \n",
"L 282.612955 185.692686 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_35&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 289.058864 244.691301 \n",
"L 295.504773 244.691301 \n",
"L 295.504773 227.893563 \n",
"L 289.058864 227.893563 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_36&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 295.504773 244.691301 \n",
"L 301.950682 244.691301 \n",
"L 301.950682 221.468198 \n",
"L 295.504773 221.468198 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_37&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 301.950682 244.691301 \n",
"L 308.396591 244.691301 \n",
"L 308.396591 211.462988 \n",
"L 301.950682 211.462988 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_38&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 308.396591 244.691301 \n",
"L 314.8425 244.691301 \n",
"L 314.8425 233.423966 \n",
"L 308.396591 233.423966 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_39&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 314.8425 244.691301 \n",
"L 321.288409 244.691301 \n",
"L 321.288409 225.621737 \n",
"L 314.8425 225.621737 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_40&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 321.288409 244.691301 \n",
"L 327.734318 244.691301 \n",
"L 327.734318 234.915568 \n",
"L 321.288409 234.915568 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_41&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 327.734318 244.691301 \n",
"L 334.180227 244.691301 \n",
"L 334.180227 239.619853 \n",
"L 327.734318 239.619853 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_42&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 334.180227 244.691301 \n",
"L 340.626136 244.691301 \n",
"L 340.626136 240.675449 \n",
"L 334.180227 240.675449 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_43&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 340.626136 244.691301 \n",
"L 347.072045 244.691301 \n",
"L 347.072045 240.973769 \n",
"L 340.626136 240.973769 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_44&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 347.072045 244.691301 \n",
"L 353.517955 244.691301 \n",
"L 353.517955 241.501567 \n",
"L 347.072045 241.501567 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_45&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 353.517955 244.691301 \n",
"L 359.963864 244.691301 \n",
"L 359.963864 242.878431 \n",
"L 353.517955 242.878431 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_46&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 359.963864 244.691301 \n",
"L 366.409773 244.691301 \n",
"L 366.409773 242.396528 \n",
"L 359.963864 242.396528 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_47&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 366.409773 244.691301 \n",
"L 372.855682 244.691301 \n",
"L 372.855682 244.163504 \n",
"L 366.409773 244.163504 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_48&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 372.855682 244.691301 \n",
"L 379.301591 244.691301 \n",
"L 379.301591 244.370033 \n",
"L 372.855682 244.370033 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_49&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 379.301591 244.691301 \n",
"L 385.7475 244.691301 \n",
"L 385.7475 244.553615 \n",
"L 379.301591 244.553615 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_50&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 385.7475 244.691301 \n",
"L 392.193409 244.691301 \n",
"L 392.193409 244.645406 \n",
"L 385.7475 244.645406 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_51&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 392.193409 244.691301 \n",
"L 398.639318 244.691301 \n",
"L 398.639318 244.645406 \n",
"L 392.193409 244.645406 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_52&gt;&lt;path clip-path=url(#p08e30cc587) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 398.639318 244.691301 \n",
"L 405.085227 244.691301 \n",
"L 405.085227 244.668354 \n",
"L 398.639318 244.668354 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_53&gt;&lt;path style=fill:none; d=&quot;M 66.675 244.691301 \n",
"L 66.675 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_54&gt;&lt;path style=fill:none; d=&quot;M 421.2 244.691301 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_55&gt;&lt;path style=fill:none; d=&quot;M 66.675 244.691301 \n",
"L 421.2 244.691301 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_56&gt;&lt;path style=fill:none; d=&quot;M 66.675 10.8 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=p08e30cc587&gt;&lt;rect height=233.891301 width=354.525 x=66.675 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt;&lt;strong&gt;Histogram with fixed size bins&lt;/strong&gt; (bins=50) &lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-6426062946977577065bottom--6426062946977577065common_values&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=0&gt;0&lt;/td&gt;&lt;td&gt;6438&lt;/td&gt;&lt;td&gt;14.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:32.8%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=-71.5&gt;-71.5&lt;/td&gt;&lt;td&gt;4761&lt;/td&gt;&lt;td&gt;10.4%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:24.3%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=-84&gt;-84&lt;/td&gt;&lt;td&gt;3040&lt;/td&gt;&lt;td&gt;6.6%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:15.5%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=-72&gt;-72&lt;/td&gt;&lt;td&gt;1506&lt;/td&gt;&lt;td&gt;3.3%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:7.7%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=-79.68333&gt;-79.68333&lt;/td&gt;&lt;td&gt;1130&lt;/td&gt;&lt;td&gt;2.5%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:5.8%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=-76.71667&gt;-76.71667&lt;/td&gt;&lt;td&gt;680&lt;/td&gt;&lt;td&gt;1.5%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:3.5%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=-76.18333&gt;-76.18333&lt;/td&gt;&lt;td&gt;539&lt;/td&gt;&lt;td&gt;1.2%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:2.7%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=-84.21667&gt;-84.21667&lt;/td&gt;&lt;td&gt;263&lt;/td&gt;&lt;td&gt;0.6%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.3%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=-86.36667&gt;-86.36667&lt;/td&gt;&lt;td&gt;226&lt;/td&gt;&lt;td&gt;0.5%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.2%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=-86.71667&gt;-86.71667&lt;/td&gt;&lt;td&gt;217&lt;/td&gt;&lt;td&gt;0.5%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.1%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;td title=&quot;Other values (12728)&quot;&gt;Other values (12728)&lt;/td&gt;&lt;td&gt;19611&lt;/td&gt;&lt;td&gt;42.9%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class=missing&gt;&lt;td title=(Missing)&gt;(Missing)&lt;/td&gt;&lt;td&gt;7315&lt;/td&gt;&lt;td&gt;16.0%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:37.3%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-6426062946977577065bottom--6426062946977577065extreme_values&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#-6426062946977577065extreme_values--6426062946977577065firstn aria-controls=-6426062946977577065extreme_values--6426062946977577065firstn role=tab data-toggle=tab&gt;Minimum 5 values&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-6426062946977577065extreme_values--6426062946977577065lastn aria-controls=-6426062946977577065extreme_values--6426062946977577065lastn role=tab data-toggle=tab&gt;Maximum 5 values&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=-6426062946977577065extreme_values--6426062946977577065firstn&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=-87.36667&gt;-87.36667&lt;/td&gt;&lt;td&gt;4&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.8%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=-87.03333&gt;-87.03333&lt;/td&gt;&lt;td&gt;3&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.4%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=-86.93333&gt;-86.93333&lt;/td&gt;&lt;td&gt;3&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.4%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=-86.71667&gt;-86.71667&lt;/td&gt;&lt;td&gt;217&lt;/td&gt;&lt;td&gt;0.5%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=-86.56667&gt;-86.56667&lt;/td&gt;&lt;td&gt;17&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:7.8%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-6426062946977577065extreme_values--6426062946977577065lastn&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=81.16667&gt;81.16667&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=76.53333&gt;76.53333&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=76.13333&gt;76.13333&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=72.88333&gt;72.88333&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=72.68333&gt;72.68333&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;a class=&quot;anchor-pos anchor-pos-variable&quot; id=pp_var_-7823777393764928584&gt;&lt;/a&gt;&lt;div class=variable&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4 title=reclong&gt;&lt;a href=#pp_var_-7823777393764928584&gt;reclong&lt;/a&gt;&lt;br&gt;&lt;small&gt;Real number (&amp;Ropf;)&lt;/small&gt;&lt;/p&gt;&lt;code&gt;MISSING&lt;/code&gt;&lt;br&gt;&lt;code&gt;ZEROS&lt;/code&gt;&lt;br&gt;&lt;p class=variable-description&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Distinct&lt;/th&gt;&lt;td&gt;14640&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct (%)&lt;/th&gt;&lt;td&gt;38.1%&lt;/td&gt;&lt;/tr&gt;&lt;tr class=alert&gt;&lt;th&gt;Missing&lt;/th&gt;&lt;td&gt;7315&lt;/td&gt;&lt;/tr&gt;&lt;tr class=alert&gt;&lt;th&gt;Missing (%)&lt;/th&gt;&lt;td&gt;16.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Infinite&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Infinite (%)&lt;/th&gt;&lt;td&gt;0.0%&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Mean&lt;/th&gt;&lt;td&gt;61.05259359&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Minimum&lt;/th&gt;&lt;td&gt;-165.43333&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Maximum&lt;/th&gt;&lt;td&gt;354.47333&lt;/td&gt;&lt;/tr&gt;&lt;tr class=alert&gt;&lt;th&gt;Zeros&lt;/th&gt;&lt;td&gt;6214&lt;/td&gt;&lt;/tr&gt;&lt;tr class=alert&gt;&lt;th&gt;Zeros (%)&lt;/th&gt;&lt;td&gt;13.6%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Memory size&lt;/th&gt;&lt;td&gt;357.2 KiB&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=162pt version=1.1 viewbox=&quot;0 0 216 162&quot; width=216pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;defs&gt;&lt;style type=text/css&gt;\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" &lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 162 \n",
"L 216 162 \n",
"L 216 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 10.8 123.641049 \n",
"L 205.2 123.641049 \n",
"L 205.2 10.8 \n",
"L 10.8 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;defs&gt;&lt;path id=DejaVuSans-8722 d=&quot;M 10.59375 35.5 \n",
"L 73.1875 35.5 \n",
"L 73.1875 27.203125 \n",
"L 10.59375 27.203125 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-49 d=&quot;M 12.40625 8.296875 \n",
"L 28.515625 8.296875 \n",
"L 28.515625 63.921875 \n",
"L 10.984375 60.40625 \n",
"L 10.984375 69.390625 \n",
"L 28.421875 72.90625 \n",
"L 38.28125 72.90625 \n",
"L 38.28125 8.296875 \n",
"L 54.390625 8.296875 \n",
"L 54.390625 0 \n",
"L 12.40625 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-48 d=&quot;M 31.78125 66.40625 \n",
"Q 24.171875 66.40625 20.328125 58.90625 \n",
"Q 16.5 51.421875 16.5 36.375 \n",
"Q 16.5 21.390625 20.328125 13.890625 \n",
"Q 24.171875 6.390625 31.78125 6.390625 \n",
"Q 39.453125 6.390625 43.28125 13.890625 \n",
"Q 47.125 21.390625 47.125 36.375 \n",
"Q 47.125 51.421875 43.28125 58.90625 \n",
"Q 39.453125 66.40625 31.78125 66.40625 \n",
"z\n",
"M 31.78125 74.21875 \n",
"Q 44.046875 74.21875 50.515625 64.515625 \n",
"Q 56.984375 54.828125 56.984375 36.375 \n",
"Q 56.984375 17.96875 50.515625 8.265625 \n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \n",
"Q 19.53125 -1.421875 13.0625 8.265625 \n",
"Q 6.59375 17.96875 6.59375 36.375 \n",
"Q 6.59375 54.828125 13.0625 64.515625 \n",
"Q 19.53125 74.21875 31.78125 74.21875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(35.670581 153.977162)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;use xlink:href=#DejaVuSans-8722 /&gt;&lt;use x=83.789062 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=147.412109 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=211.035156 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;g style=fill:#262626; transform=&quot;translate(75.632004 142.038548)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;g style=fill:#262626; transform=&quot;translate(106.024946 149.236895)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;defs&gt;&lt;path id=DejaVuSans-50 d=&quot;M 19.1875 8.296875 \n",
"L 53.609375 8.296875 \n",
"L 53.609375 0 \n",
"L 7.328125 0 \n",
"L 7.328125 8.296875 \n",
"Q 12.9375 14.109375 22.625 23.890625 \n",
"Q 32.328125 33.6875 34.8125 36.53125 \n",
"Q 39.546875 41.84375 41.421875 45.53125 \n",
"Q 43.3125 49.21875 43.3125 52.78125 \n",
"Q 43.3125 58.59375 39.234375 62.25 \n",
"Q 35.15625 65.921875 28.609375 65.921875 \n",
"Q 23.96875 65.921875 18.8125 64.3125 \n",
"Q 13.671875 62.703125 7.8125 59.421875 \n",
"L 7.8125 69.390625 \n",
"Q 13.765625 71.78125 18.9375 73 \n",
"Q 24.125 74.21875 28.421875 74.21875 \n",
"Q 39.75 74.21875 46.484375 68.546875 \n",
"Q 53.21875 62.890625 53.21875 53.421875 \n",
"Q 53.21875 48.921875 51.53125 44.890625 \n",
"Q 49.859375 40.875 45.40625 35.40625 \n",
"Q 44.1875 33.984375 37.640625 27.21875 \n",
"Q 31.109375 20.453125 19.1875 8.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(140.017061 149.236895)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;defs&gt;&lt;path id=DejaVuSans-51 d=&quot;M 40.578125 39.3125 \n",
"Q 47.65625 37.796875 51.625 33 \n",
"Q 55.609375 28.21875 55.609375 21.1875 \n",
"Q 55.609375 10.40625 48.1875 4.484375 \n",
"Q 40.765625 -1.421875 27.09375 -1.421875 \n",
"Q 22.515625 -1.421875 17.65625 -0.515625 \n",
"Q 12.796875 0.390625 7.625 2.203125 \n",
"L 7.625 11.71875 \n",
"Q 11.71875 9.328125 16.59375 8.109375 \n",
"Q 21.484375 6.890625 26.8125 6.890625 \n",
"Q 36.078125 6.890625 40.9375 10.546875 \n",
"Q 45.796875 14.203125 45.796875 21.1875 \n",
"Q 45.796875 27.640625 41.28125 31.265625 \n",
"Q 36.765625 34.90625 28.71875 34.90625 \n",
"L 20.21875 34.90625 \n",
"L 20.21875 43.015625 \n",
"L 29.109375 43.015625 \n",
"Q 36.375 43.015625 40.234375 45.921875 \n",
"Q 44.09375 48.828125 44.09375 54.296875 \n",
"Q 44.09375 59.90625 40.109375 62.90625 \n",
"Q 36.140625 65.921875 28.71875 65.921875 \n",
"Q 24.65625 65.921875 20.015625 65.03125 \n",
"Q 15.375 64.15625 9.8125 62.3125 \n",
"L 9.8125 71.09375 \n",
"Q 15.4375 72.65625 20.34375 73.4375 \n",
"Q 25.25 74.21875 29.59375 74.21875 \n",
"Q 40.828125 74.21875 47.359375 69.109375 \n",
"Q 53.90625 64.015625 53.90625 55.328125 \n",
"Q 53.90625 49.265625 50.4375 45.09375 \n",
"Q 46.96875 40.921875 40.578125 39.3125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(174.009177 149.236895)rotate(-45)scale(0.08 -0.08)&quot;&gt;&lt;use xlink:href=#DejaVuSans-51 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 19.636364 123.641049 \n",
"L 23.170909 123.641049 \n",
"L 23.170909 123.155648 \n",
"L 19.636364 123.155648 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 23.170909 123.641049 \n",
"L 26.705455 123.641049 \n",
"L 26.705455 123.479249 \n",
"L 23.170909 123.479249 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 26.705455 123.641049 \n",
"L 30.24 123.641049 \n",
"L 30.24 120.032905 \n",
"L 26.705455 120.032905 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 30.24 123.641049 \n",
"L 33.774545 123.641049 \n",
"L 33.774545 123.382169 \n",
"L 30.24 123.382169 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 33.774545 123.641049 \n",
"L 37.309091 123.641049 \n",
"L 37.309091 116.699822 \n",
"L 33.774545 116.699822 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 37.309091 123.641049 \n",
"L 40.843636 123.641049 \n",
"L 40.843636 116.020261 \n",
"L 37.309091 116.020261 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_9&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 40.843636 123.641049 \n",
"L 44.378182 123.641049 \n",
"L 44.378182 112.104698 \n",
"L 40.843636 112.104698 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_10&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 44.378182 123.641049 \n",
"L 47.912727 123.641049 \n",
"L 47.912727 120.469766 \n",
"L 44.378182 120.469766 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_11&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 47.912727 123.641049 \n",
"L 51.447273 123.641049 \n",
"L 51.447273 121.893607 \n",
"L 47.912727 121.893607 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_12&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 51.447273 123.641049 \n",
"L 54.981818 123.641049 \n",
"L 54.981818 101.409707 \n",
"L 51.447273 101.409707 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_13&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 54.981818 123.641049 \n",
"L 58.516364 123.641049 \n",
"L 58.516364 122.977668 \n",
"L 54.981818 122.977668 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_14&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 58.516364 123.641049 \n",
"L 62.050909 123.641049 \n",
"L 62.050909 122.945308 \n",
"L 58.516364 122.945308 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_15&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 62.050909 123.641049 \n",
"L 65.585455 123.641049 \n",
"L 65.585455 123.543969 \n",
"L 62.050909 123.543969 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_16&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 65.585455 123.641049 \n",
"L 69.12 123.641049 \n",
"L 69.12 123.608689 \n",
"L 65.585455 123.608689 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_17&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 69.12 123.641049 \n",
"L 72.654545 123.641049 \n",
"L 72.654545 122.411368 \n",
"L 69.12 122.411368 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_18&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 72.654545 123.641049 \n",
"L 76.189091 123.641049 \n",
"L 76.189091 16.173383 \n",
"L 72.654545 16.173383 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_19&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 76.189091 123.641049 \n",
"L 79.723636 123.641049 \n",
"L 79.723636 112.363578 \n",
"L 76.189091 112.363578 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_20&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 79.723636 123.641049 \n",
"L 83.258182 123.641049 \n",
"L 83.258182 96.264462 \n",
"L 79.723636 96.264462 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_21&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 83.258182 123.641049 \n",
"L 86.792727 123.641049 \n",
"L 86.792727 96.086482 \n",
"L 83.258182 96.086482 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_22&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 86.792727 123.641049 \n",
"L 90.327273 123.641049 \n",
"L 90.327273 39.537326 \n",
"L 86.792727 39.537326 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_23&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 90.327273 123.641049 \n",
"L 93.861818 123.641049 \n",
"L 93.861818 122.443728 \n",
"L 90.327273 122.443728 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_24&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 93.861818 123.641049 \n",
"L 97.396364 123.641049 \n",
"L 97.396364 72.609279 \n",
"L 93.861818 72.609279 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_25&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 97.396364 123.641049 \n",
"L 100.930909 123.641049 \n",
"L 100.930909 123.042388 \n",
"L 97.396364 123.042388 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_26&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 100.930909 123.641049 \n",
"L 104.465455 123.641049 \n",
"L 104.465455 81.200867 \n",
"L 100.930909 81.200867 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_27&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 104.465455 123.641049 \n",
"L 108 123.641049 \n",
"L 108 122.912948 \n",
"L 104.465455 122.912948 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_28&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 108 123.641049 \n",
"L 111.534545 123.641049 \n",
"L 111.534545 123.236549 \n",
"L 108 123.236549 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_29&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 111.534545 123.641049 \n",
"L 115.069091 123.641049 \n",
"L 115.069091 122.427548 \n",
"L 111.534545 122.427548 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_30&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 115.069091 123.641049 \n",
"L 118.603636 123.641049 \n",
"L 118.603636 121.505287 \n",
"L 115.069091 121.505287 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_31&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 118.603636 123.641049 \n",
"L 122.138182 123.641049 \n",
"L 122.138182 116.279142 \n",
"L 118.603636 116.279142 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_32&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 122.138182 123.641049 \n",
"L 125.672727 123.641049 \n",
"L 125.672727 121.197867 \n",
"L 122.138182 121.197867 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_33&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 125.672727 123.641049 \n",
"L 129.207273 123.641049 \n",
"L 129.207273 88.692215 \n",
"L 125.672727 88.692215 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_34&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 129.207273 123.641049 \n",
"L 132.741818 123.641049 \n",
"L 132.741818 17.322164 \n",
"L 129.207273 17.322164 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_35&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 132.741818 123.641049 \n",
"L 136.276364 123.641049 \n",
"L 136.276364 71.282517 \n",
"L 132.741818 71.282517 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_36&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 136.276364 123.641049 \n",
"L 139.810909 123.641049 \n",
"L 139.810909 123.608689 \n",
"L 136.276364 123.608689 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_37&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 139.810909 123.641049 \n",
"L 143.345455 123.641049 \n",
"L 143.345455 123.641049 \n",
"L 139.810909 123.641049 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_38&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 143.345455 123.641049 \n",
"L 146.88 123.641049 \n",
"L 146.88 123.641049 \n",
"L 143.345455 123.641049 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_39&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 146.88 123.641049 \n",
"L 150.414545 123.641049 \n",
"L 150.414545 123.641049 \n",
"L 146.88 123.641049 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_40&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 150.414545 123.641049 \n",
"L 153.949091 123.641049 \n",
"L 153.949091 123.641049 \n",
"L 150.414545 123.641049 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_41&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 153.949091 123.641049 \n",
"L 157.483636 123.641049 \n",
"L 157.483636 123.641049 \n",
"L 153.949091 123.641049 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_42&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 157.483636 123.641049 \n",
"L 161.018182 123.641049 \n",
"L 161.018182 123.641049 \n",
"L 157.483636 123.641049 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_43&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 161.018182 123.641049 \n",
"L 164.552727 123.641049 \n",
"L 164.552727 123.641049 \n",
"L 161.018182 123.641049 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_44&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 164.552727 123.641049 \n",
"L 168.087273 123.641049 \n",
"L 168.087273 123.641049 \n",
"L 164.552727 123.641049 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_45&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 168.087273 123.641049 \n",
"L 171.621818 123.641049 \n",
"L 171.621818 123.641049 \n",
"L 168.087273 123.641049 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_46&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 171.621818 123.641049 \n",
"L 175.156364 123.641049 \n",
"L 175.156364 123.641049 \n",
"L 171.621818 123.641049 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_47&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 175.156364 123.641049 \n",
"L 178.690909 123.641049 \n",
"L 178.690909 123.641049 \n",
"L 175.156364 123.641049 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_48&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 178.690909 123.641049 \n",
"L 182.225455 123.641049 \n",
"L 182.225455 123.641049 \n",
"L 178.690909 123.641049 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_49&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 182.225455 123.641049 \n",
"L 185.76 123.641049 \n",
"L 185.76 123.641049 \n",
"L 182.225455 123.641049 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_50&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 185.76 123.641049 \n",
"L 189.294545 123.641049 \n",
"L 189.294545 123.641049 \n",
"L 185.76 123.641049 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_51&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 189.294545 123.641049 \n",
"L 192.829091 123.641049 \n",
"L 192.829091 123.641049 \n",
"L 189.294545 123.641049 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_52&gt;&lt;path clip-path=url(#p09d3b4b691) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 192.829091 123.641049 \n",
"L 196.363636 123.641049 \n",
"L 196.363636 123.624869 \n",
"L 192.829091 123.624869 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_53&gt;&lt;path style=fill:none; d=&quot;M 10.8 123.641049 \n",
"L 10.8 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_54&gt;&lt;path style=fill:none; d=&quot;M 205.2 123.641049 \n",
"L 205.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_55&gt;&lt;path style=fill:none; d=&quot;M 10.8 123.641049 \n",
"L 205.2 123.641049 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_56&gt;&lt;path style=fill:none; d=&quot;M 10.8 10.8 \n",
"L 205.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=p09d3b4b691&gt;&lt;rect height=112.841049 width=194.4 x=10.8 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;/div&gt;&lt;div class=&quot;col-sm-12 text-right&quot;&gt;&lt;button class=&quot;btn btn-default btn-sm&quot; data-toggle=collapse data-target=&quot;#bottom--7823777393764928584, #minifreqtable-7823777393764928584&quot; aria-expanded=true aria-controls=collapseExample&gt;Toggle details&lt;/button&gt;&lt;/div&gt;&lt;div id=bottom--7823777393764928584 class=collapse&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#-7823777393764928584bottom--7823777393764928584statistics aria-controls=-7823777393764928584bottom--7823777393764928584statistics role=tab data-toggle=tab&gt;Statistics&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-7823777393764928584bottom--7823777393764928584histogram aria-controls=-7823777393764928584bottom--7823777393764928584histogram role=tab data-toggle=tab&gt;Histogram&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-7823777393764928584bottom--7823777393764928584common_values aria-controls=-7823777393764928584bottom--7823777393764928584common_values role=tab data-toggle=tab&gt;Common values&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-7823777393764928584bottom--7823777393764928584extreme_values aria-controls=-7823777393764928584bottom--7823777393764928584extreme_values role=tab data-toggle=tab&gt;Extreme values&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=-7823777393764928584bottom--7823777393764928584statistics&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Quantile statistics&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Minimum&lt;/th&gt;&lt;td&gt;-165.43333&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;5-th percentile&lt;/th&gt;&lt;td&gt;-90.427&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Q1&lt;/th&gt;&lt;td&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;median&lt;/th&gt;&lt;td&gt;35.66667&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Q3&lt;/th&gt;&lt;td&gt;157.16667&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;95-th percentile&lt;/th&gt;&lt;td&gt;168&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Maximum&lt;/th&gt;&lt;td&gt;354.47333&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Range&lt;/th&gt;&lt;td&gt;519.90666&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Interquartile range (IQR)&lt;/th&gt;&lt;td&gt;157.16667&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;p class=h4&gt;Descriptive statistics&lt;/p&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th&gt;Standard deviation&lt;/th&gt;&lt;td&gt;80.65525774&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Coefficient of variation (CV)&lt;/th&gt;&lt;td&gt;1.321078319&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Kurtosis&lt;/th&gt;&lt;td&gt;-0.7313935567&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Mean&lt;/th&gt;&lt;td&gt;61.05259359&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Median Absolute Deviation (MAD)&lt;/th&gt;&lt;td&gt;39.53972&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Skewness&lt;/th&gt;&lt;td&gt;-0.1743813291&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Sum&lt;/th&gt;&lt;td&gt;2345091.172&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Variance&lt;/th&gt;&lt;td&gt;6505.2706&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Monotocity&lt;/th&gt;&lt;td&gt;Not monotonic&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-7823777393764928584bottom--7823777393764928584histogram&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=288pt version=1.1 viewbox=&quot;0 0 432 288&quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;defs&gt;&lt;style type=text/css&gt;\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" &lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 288 \n",
"L 432 288 \n",
"L 432 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 60.425 240.360272 \n",
"L 421.2 240.360272 \n",
"L 421.2 10.8 \n",
"L 60.425 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;defs&gt;&lt;path id=DejaVuSans-8722 d=&quot;M 10.59375 35.5 \n",
"L 73.1875 35.5 \n",
"L 73.1875 27.203125 \n",
"L 10.59375 27.203125 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-49 d=&quot;M 12.40625 8.296875 \n",
"L 28.515625 8.296875 \n",
"L 28.515625 63.921875 \n",
"L 10.984375 60.40625 \n",
"L 10.984375 69.390625 \n",
"L 28.421875 72.90625 \n",
"L 38.28125 72.90625 \n",
"L 38.28125 8.296875 \n",
"L 54.390625 8.296875 \n",
"L 54.390625 0 \n",
"L 12.40625 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-48 d=&quot;M 31.78125 66.40625 \n",
"Q 24.171875 66.40625 20.328125 58.90625 \n",
"Q 16.5 51.421875 16.5 36.375 \n",
"Q 16.5 21.390625 20.328125 13.890625 \n",
"Q 24.171875 6.390625 31.78125 6.390625 \n",
"Q 39.453125 6.390625 43.28125 13.890625 \n",
"Q 47.125 21.390625 47.125 36.375 \n",
"Q 47.125 51.421875 43.28125 58.90625 \n",
"Q 39.453125 66.40625 31.78125 66.40625 \n",
"z\n",
"M 31.78125 74.21875 \n",
"Q 44.046875 74.21875 50.515625 64.515625 \n",
"Q 56.984375 54.828125 56.984375 36.375 \n",
"Q 56.984375 17.96875 50.515625 8.265625 \n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \n",
"Q 19.53125 -1.421875 13.0625 8.265625 \n",
"Q 6.59375 17.96875 6.59375 36.375 \n",
"Q 6.59375 54.828125 13.0625 64.515625 \n",
"Q 19.53125 74.21875 31.78125 74.21875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(110.3418 275.655414)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-8722 /&gt;&lt;use x=83.789062 xlink:href=#DejaVuSans-49 /&gt;&lt;use x=147.412109 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=211.035156 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;g style=fill:#262626; transform=&quot;translate(180.88731 260.732146)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;g style=fill:#262626; transform=&quot;translate(239.472219 269.73008)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;defs&gt;&lt;path id=DejaVuSans-50 d=&quot;M 19.1875 8.296875 \n",
"L 53.609375 8.296875 \n",
"L 53.609375 0 \n",
"L 7.328125 0 \n",
"L 7.328125 8.296875 \n",
"Q 12.9375 14.109375 22.625 23.890625 \n",
"Q 32.328125 33.6875 34.8125 36.53125 \n",
"Q 39.546875 41.84375 41.421875 45.53125 \n",
"Q 43.3125 49.21875 43.3125 52.78125 \n",
"Q 43.3125 58.59375 39.234375 62.25 \n",
"Q 35.15625 65.921875 28.609375 65.921875 \n",
"Q 23.96875 65.921875 18.8125 64.3125 \n",
"Q 13.671875 62.703125 7.8125 59.421875 \n",
"L 7.8125 69.390625 \n",
"Q 13.765625 71.78125 18.9375 73 \n",
"Q 24.125 74.21875 28.421875 74.21875 \n",
"Q 39.75 74.21875 46.484375 68.546875 \n",
"Q 53.21875 62.890625 53.21875 53.421875 \n",
"Q 53.21875 48.921875 51.53125 44.890625 \n",
"Q 49.859375 40.875 45.40625 35.40625 \n",
"Q 44.1875 33.984375 37.640625 27.21875 \n",
"Q 31.109375 20.453125 19.1875 8.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(302.556095 269.73008)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_5&gt;&lt;g id=text_5&gt;&lt;defs&gt;&lt;path id=DejaVuSans-51 d=&quot;M 40.578125 39.3125 \n",
"Q 47.65625 37.796875 51.625 33 \n",
"Q 55.609375 28.21875 55.609375 21.1875 \n",
"Q 55.609375 10.40625 48.1875 4.484375 \n",
"Q 40.765625 -1.421875 27.09375 -1.421875 \n",
"Q 22.515625 -1.421875 17.65625 -0.515625 \n",
"Q 12.796875 0.390625 7.625 2.203125 \n",
"L 7.625 11.71875 \n",
"Q 11.71875 9.328125 16.59375 8.109375 \n",
"Q 21.484375 6.890625 26.8125 6.890625 \n",
"Q 36.078125 6.890625 40.9375 10.546875 \n",
"Q 45.796875 14.203125 45.796875 21.1875 \n",
"Q 45.796875 27.640625 41.28125 31.265625 \n",
"Q 36.765625 34.90625 28.71875 34.90625 \n",
"L 20.21875 34.90625 \n",
"L 20.21875 43.015625 \n",
"L 29.109375 43.015625 \n",
"Q 36.375 43.015625 40.234375 45.921875 \n",
"Q 44.09375 48.828125 44.09375 54.296875 \n",
"Q 44.09375 59.90625 40.109375 62.90625 \n",
"Q 36.140625 65.921875 28.71875 65.921875 \n",
"Q 24.65625 65.921875 20.015625 65.03125 \n",
"Q 15.375 64.15625 9.8125 62.3125 \n",
"L 9.8125 71.09375 \n",
"Q 15.4375 72.65625 20.34375 73.4375 \n",
"Q 25.25 74.21875 29.59375 74.21875 \n",
"Q 40.828125 74.21875 47.359375 69.109375 \n",
"Q 53.90625 64.015625 53.90625 55.328125 \n",
"Q 53.90625 49.265625 50.4375 45.09375 \n",
"Q 46.96875 40.921875 40.578125 39.3125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(365.639971 269.73008)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-51 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_2&gt;&lt;g id=ytick_1&gt;&lt;g id=text_6&gt;&lt;g style=fill:#262626; transform=&quot;translate(43.5625 244.159491)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_2&gt;&lt;g id=text_7&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.475 211.243377)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_3&gt;&lt;g id=text_8&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.475 178.327263)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_4&gt;&lt;g id=text_9&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.475 145.411148)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-51 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_5&gt;&lt;g id=text_10&gt;&lt;defs&gt;&lt;path id=DejaVuSans-52 d=&quot;M 37.796875 64.3125 \n",
"L 12.890625 25.390625 \n",
"L 37.796875 25.390625 \n",
"z\n",
"M 35.203125 72.90625 \n",
"L 47.609375 72.90625 \n",
"L 47.609375 25.390625 \n",
"L 58.015625 25.390625 \n",
"L 58.015625 17.1875 \n",
"L 47.609375 17.1875 \n",
"L 47.609375 0 \n",
"L 37.796875 0 \n",
"L 37.796875 17.1875 \n",
"L 4.890625 17.1875 \n",
"L 4.890625 26.703125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.475 112.495034)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-52 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_6&gt;&lt;g id=text_11&gt;&lt;defs&gt;&lt;path id=DejaVuSans-53 d=&quot;M 10.796875 72.90625 \n",
"L 49.515625 72.90625 \n",
"L 49.515625 64.59375 \n",
"L 19.828125 64.59375 \n",
"L 19.828125 46.734375 \n",
"Q 21.96875 47.46875 24.109375 47.828125 \n",
"Q 26.265625 48.1875 28.421875 48.1875 \n",
"Q 40.625 48.1875 47.75 41.5 \n",
"Q 54.890625 34.8125 54.890625 23.390625 \n",
"Q 54.890625 11.625 47.5625 5.09375 \n",
"Q 40.234375 -1.421875 26.90625 -1.421875 \n",
"Q 22.3125 -1.421875 17.546875 -0.640625 \n",
"Q 12.796875 0.140625 7.71875 1.703125 \n",
"L 7.71875 11.625 \n",
"Q 12.109375 9.234375 16.796875 8.0625 \n",
"Q 21.484375 6.890625 26.703125 6.890625 \n",
"Q 35.15625 6.890625 40.078125 11.328125 \n",
"Q 45.015625 15.765625 45.015625 23.390625 \n",
"Q 45.015625 31 40.078125 35.4375 \n",
"Q 35.15625 39.890625 26.703125 39.890625 \n",
"Q 22.75 39.890625 18.8125 39.015625 \n",
"Q 14.890625 38.140625 10.796875 36.28125 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.475 79.57892)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-53 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=ytick_7&gt;&lt;g id=text_12&gt;&lt;defs&gt;&lt;path id=DejaVuSans-54 d=&quot;M 33.015625 40.375 \n",
"Q 26.375 40.375 22.484375 35.828125 \n",
"Q 18.609375 31.296875 18.609375 23.390625 \n",
"Q 18.609375 15.53125 22.484375 10.953125 \n",
"Q 26.375 6.390625 33.015625 6.390625 \n",
"Q 39.65625 6.390625 43.53125 10.953125 \n",
"Q 47.40625 15.53125 47.40625 23.390625 \n",
"Q 47.40625 31.296875 43.53125 35.828125 \n",
"Q 39.65625 40.375 33.015625 40.375 \n",
"z\n",
"M 52.59375 71.296875 \n",
"L 52.59375 62.3125 \n",
"Q 48.875 64.0625 45.09375 64.984375 \n",
"Q 41.3125 65.921875 37.59375 65.921875 \n",
"Q 27.828125 65.921875 22.671875 59.328125 \n",
"Q 17.53125 52.734375 16.796875 39.40625 \n",
"Q 19.671875 43.65625 24.015625 45.921875 \n",
"Q 28.375 48.1875 33.59375 48.1875 \n",
"Q 44.578125 48.1875 50.953125 41.515625 \n",
"Q 57.328125 34.859375 57.328125 23.390625 \n",
"Q 57.328125 12.15625 50.6875 5.359375 \n",
"Q 44.046875 -1.421875 33.015625 -1.421875 \n",
"Q 20.359375 -1.421875 13.671875 8.265625 \n",
"Q 6.984375 17.96875 6.984375 36.375 \n",
"Q 6.984375 53.65625 15.1875 63.9375 \n",
"Q 23.390625 74.21875 37.203125 74.21875 \n",
"Q 40.921875 74.21875 44.703125 73.484375 \n",
"Q 48.484375 72.75 52.59375 71.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(24.475 46.662806)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-54 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=text_13&gt;&lt;defs&gt;&lt;path id=DejaVuSans-70 d=&quot;M 9.8125 72.90625 \n",
"L 51.703125 72.90625 \n",
"L 51.703125 64.59375 \n",
"L 19.671875 64.59375 \n",
"L 19.671875 43.109375 \n",
"L 48.578125 43.109375 \n",
"L 48.578125 34.8125 \n",
"L 19.671875 34.8125 \n",
"L 19.671875 0 \n",
"L 9.8125 0 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-114 d=&quot;M 41.109375 46.296875 \n",
"Q 39.59375 47.171875 37.8125 47.578125 \n",
"Q 36.03125 48 33.890625 48 \n",
"Q 26.265625 48 22.1875 43.046875 \n",
"Q 18.109375 38.09375 18.109375 28.8125 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 20.953125 51.171875 25.484375 53.578125 \n",
"Q 30.03125 56 36.53125 56 \n",
"Q 37.453125 56 38.578125 55.875 \n",
"Q 39.703125 55.765625 41.0625 55.515625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-101 d=&quot;M 56.203125 29.59375 \n",
"L 56.203125 25.203125 \n",
"L 14.890625 25.203125 \n",
"Q 15.484375 15.921875 20.484375 11.0625 \n",
"Q 25.484375 6.203125 34.421875 6.203125 \n",
"Q 39.59375 6.203125 44.453125 7.46875 \n",
"Q 49.3125 8.734375 54.109375 11.28125 \n",
"L 54.109375 2.78125 \n",
"Q 49.265625 0.734375 44.1875 -0.34375 \n",
"Q 39.109375 -1.421875 33.890625 -1.421875 \n",
"Q 20.796875 -1.421875 13.15625 6.1875 \n",
"Q 5.515625 13.8125 5.515625 26.8125 \n",
"Q 5.515625 40.234375 12.765625 48.109375 \n",
"Q 20.015625 56 32.328125 56 \n",
"Q 43.359375 56 49.78125 48.890625 \n",
"Q 56.203125 41.796875 56.203125 29.59375 \n",
"z\n",
"M 47.21875 32.234375 \n",
"Q 47.125 39.59375 43.09375 43.984375 \n",
"Q 39.0625 48.390625 32.421875 48.390625 \n",
"Q 24.90625 48.390625 20.390625 44.140625 \n",
"Q 15.875 39.890625 15.1875 32.171875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-113 d=&quot;M 14.796875 27.296875 \n",
"Q 14.796875 17.390625 18.875 11.75 \n",
"Q 22.953125 6.109375 30.078125 6.109375 \n",
"Q 37.203125 6.109375 41.296875 11.75 \n",
"Q 45.40625 17.390625 45.40625 27.296875 \n",
"Q 45.40625 37.203125 41.296875 42.84375 \n",
"Q 37.203125 48.484375 30.078125 48.484375 \n",
"Q 22.953125 48.484375 18.875 42.84375 \n",
"Q 14.796875 37.203125 14.796875 27.296875 \n",
"z\n",
"M 45.40625 8.203125 \n",
"Q 42.578125 3.328125 38.25 0.953125 \n",
"Q 33.9375 -1.421875 27.875 -1.421875 \n",
"Q 17.96875 -1.421875 11.734375 6.484375 \n",
"Q 5.515625 14.40625 5.515625 27.296875 \n",
"Q 5.515625 40.1875 11.734375 48.09375 \n",
"Q 17.96875 56 27.875 56 \n",
"Q 33.9375 56 38.25 53.625 \n",
"Q 42.578125 51.265625 45.40625 46.390625 \n",
"L 45.40625 54.6875 \n",
"L 54.390625 54.6875 \n",
"L 54.390625 -20.796875 \n",
"L 45.40625 -20.796875 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-117 d=&quot;M 8.5 21.578125 \n",
"L 8.5 54.6875 \n",
"L 17.484375 54.6875 \n",
"L 17.484375 21.921875 \n",
"Q 17.484375 14.15625 20.5 10.265625 \n",
"Q 23.53125 6.390625 29.59375 6.390625 \n",
"Q 36.859375 6.390625 41.078125 11.03125 \n",
"Q 45.3125 15.671875 45.3125 23.6875 \n",
"L 45.3125 54.6875 \n",
"L 54.296875 54.6875 \n",
"L 54.296875 0 \n",
"L 45.3125 0 \n",
"L 45.3125 8.40625 \n",
"Q 42.046875 3.421875 37.71875 1 \n",
"Q 33.40625 -1.421875 27.6875 -1.421875 \n",
"Q 18.265625 -1.421875 13.375 4.4375 \n",
"Q 8.5 10.296875 8.5 21.578125 \n",
"z\n",
"M 31.109375 56 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-110 d=&quot;M 54.890625 33.015625 \n",
"L 54.890625 0 \n",
"L 45.90625 0 \n",
"L 45.90625 32.71875 \n",
"Q 45.90625 40.484375 42.875 44.328125 \n",
"Q 39.84375 48.1875 33.796875 48.1875 \n",
"Q 26.515625 48.1875 22.3125 43.546875 \n",
"Q 18.109375 38.921875 18.109375 30.90625 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 21.34375 51.125 25.703125 53.5625 \n",
"Q 30.078125 56 35.796875 56 \n",
"Q 45.21875 56 50.046875 50.171875 \n",
"Q 54.890625 44.34375 54.890625 33.015625 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-99 d=&quot;M 48.78125 52.59375 \n",
"L 48.78125 44.1875 \n",
"Q 44.96875 46.296875 41.140625 47.34375 \n",
"Q 37.3125 48.390625 33.40625 48.390625 \n",
"Q 24.65625 48.390625 19.8125 42.84375 \n",
"Q 14.984375 37.3125 14.984375 27.296875 \n",
"Q 14.984375 17.28125 19.8125 11.734375 \n",
"Q 24.65625 6.203125 33.40625 6.203125 \n",
"Q 37.3125 6.203125 41.140625 7.25 \n",
"Q 44.96875 8.296875 48.78125 10.40625 \n",
"L 48.78125 2.09375 \n",
"Q 45.015625 0.34375 40.984375 -0.53125 \n",
"Q 36.96875 -1.421875 32.421875 -1.421875 \n",
"Q 20.0625 -1.421875 12.78125 6.34375 \n",
"Q 5.515625 14.109375 5.515625 27.296875 \n",
"Q 5.515625 40.671875 12.859375 48.328125 \n",
"Q 20.21875 56 33.015625 56 \n",
"Q 37.15625 56 41.109375 55.140625 \n",
"Q 45.0625 54.296875 48.78125 52.59375 \n",
"z\n",
"&quot;/&gt;&lt;path id=DejaVuSans-121 d=&quot;M 32.171875 -5.078125 \n",
"Q 28.375 -14.84375 24.75 -17.8125 \n",
"Q 21.140625 -20.796875 15.09375 -20.796875 \n",
"L 7.90625 -20.796875 \n",
"L 7.90625 -13.28125 \n",
"L 13.1875 -13.28125 \n",
"Q 16.890625 -13.28125 18.9375 -11.515625 \n",
"Q 21 -9.765625 23.484375 -3.21875 \n",
"L 25.09375 0.875 \n",
"L 2.984375 54.6875 \n",
"L 12.5 54.6875 \n",
"L 29.59375 11.921875 \n",
"L 46.6875 54.6875 \n",
"L 56.203125 54.6875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(18.187344 153.992792)rotate(-90)scale(0.11 -0.11)&quot;&gt;&lt;use xlink:href=#DejaVuSans-70 /&gt;&lt;use x=50.269531 xlink:href=#DejaVuSans-114 /&gt;&lt;use x=89.132812 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=150.65625 xlink:href=#DejaVuSans-113 /&gt;&lt;use x=214.132812 xlink:href=#DejaVuSans-117 /&gt;&lt;use x=277.511719 xlink:href=#DejaVuSans-101 /&gt;&lt;use x=339.035156 xlink:href=#DejaVuSans-110 /&gt;&lt;use x=402.414062 xlink:href=#DejaVuSans-99 /&gt;&lt;use x=457.394531 xlink:href=#DejaVuSans-121 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=patch_3&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 76.823864 240.360272 \n",
"L 83.383409 240.360272 \n",
"L 83.383409 239.372789 \n",
"L 76.823864 239.372789 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_4&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 83.383409 240.360272 \n",
"L 89.942955 240.360272 \n",
"L 89.942955 240.031111 \n",
"L 83.383409 240.031111 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_5&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 89.942955 240.360272 \n",
"L 96.5025 240.360272 \n",
"L 96.5025 233.019979 \n",
"L 89.942955 233.019979 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_6&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 96.5025 240.360272 \n",
"L 103.062045 240.360272 \n",
"L 103.062045 239.833615 \n",
"L 96.5025 239.833615 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_7&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 103.062045 240.360272 \n",
"L 109.621591 240.360272 \n",
"L 109.621591 226.239259 \n",
"L 103.062045 226.239259 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_8&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 109.621591 240.360272 \n",
"L 116.181136 240.360272 \n",
"L 116.181136 224.856783 \n",
"L 109.621591 224.856783 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_9&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 116.181136 240.360272 \n",
"L 122.740682 240.360272 \n",
"L 122.740682 216.891083 \n",
"L 116.181136 216.891083 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_10&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 122.740682 240.360272 \n",
"L 129.300227 240.360272 \n",
"L 129.300227 233.908714 \n",
"L 122.740682 233.908714 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_11&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 129.300227 240.360272 \n",
"L 135.859773 240.360272 \n",
"L 135.859773 236.805332 \n",
"L 129.300227 236.805332 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_12&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 135.859773 240.360272 \n",
"L 142.419318 240.360272 \n",
"L 142.419318 195.133531 \n",
"L 135.859773 195.133531 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_13&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 142.419318 240.360272 \n",
"L 148.978864 240.360272 \n",
"L 148.978864 239.010712 \n",
"L 142.419318 239.010712 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_14&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 148.978864 240.360272 \n",
"L 155.538409 240.360272 \n",
"L 155.538409 238.944879 \n",
"L 148.978864 238.944879 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_15&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 155.538409 240.360272 \n",
"L 162.097955 240.360272 \n",
"L 162.097955 240.162776 \n",
"L 155.538409 240.162776 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_16&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 162.097955 240.360272 \n",
"L 168.6575 240.360272 \n",
"L 168.6575 240.29444 \n",
"L 162.097955 240.29444 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_17&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 168.6575 240.360272 \n",
"L 175.217045 240.360272 \n",
"L 175.217045 237.858648 \n",
"L 168.6575 237.858648 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_18&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 175.217045 240.360272 \n",
"L 181.776591 240.360272 \n",
"L 181.776591 21.731442 \n",
"L 175.217045 21.731442 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_19&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 181.776591 240.360272 \n",
"L 188.336136 240.360272 \n",
"L 188.336136 217.417741 \n",
"L 181.776591 217.417741 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_20&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 188.336136 240.360272 \n",
"L 194.895682 240.360272 \n",
"L 194.895682 184.666207 \n",
"L 188.336136 184.666207 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_21&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 194.895682 240.360272 \n",
"L 201.455227 240.360272 \n",
"L 201.455227 184.30413 \n",
"L 194.895682 184.30413 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_22&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 201.455227 240.360272 \n",
"L 208.014773 240.360272 \n",
"L 208.014773 69.262311 \n",
"L 201.455227 69.262311 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_23&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 208.014773 240.360272 \n",
"L 214.574318 240.360272 \n",
"L 214.574318 237.92448 \n",
"L 208.014773 237.92448 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_24&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 214.574318 240.360272 \n",
"L 221.133864 240.360272 \n",
"L 221.133864 136.542848 \n",
"L 214.574318 136.542848 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_25&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 221.133864 240.360272 \n",
"L 227.693409 240.360272 \n",
"L 227.693409 239.142376 \n",
"L 221.133864 239.142376 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_26&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 227.693409 240.360272 \n",
"L 234.252955 240.360272 \n",
"L 234.252955 154.021305 \n",
"L 227.693409 154.021305 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_27&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 234.252955 240.360272 \n",
"L 240.8125 240.360272 \n",
"L 240.8125 238.879047 \n",
"L 234.252955 238.879047 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_28&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 240.8125 240.360272 \n",
"L 247.372045 240.360272 \n",
"L 247.372045 239.53737 \n",
"L 240.8125 239.53737 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_29&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 247.372045 240.360272 \n",
"L 253.931591 240.360272 \n",
"L 253.931591 237.891564 \n",
"L 247.372045 237.891564 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_30&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 253.931591 240.360272 \n",
"L 260.491136 240.360272 \n",
"L 260.491136 236.015345 \n",
"L 253.931591 236.015345 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_31&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 260.491136 240.360272 \n",
"L 267.050682 240.360272 \n",
"L 267.050682 225.38344 \n",
"L 260.491136 225.38344 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_32&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 267.050682 240.360272 \n",
"L 273.610227 240.360272 \n",
"L 273.610227 235.389939 \n",
"L 267.050682 235.389939 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_33&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 273.610227 240.360272 \n",
"L 280.169773 240.360272 \n",
"L 280.169773 169.261466 \n",
"L 273.610227 169.261466 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_34&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 280.169773 240.360272 \n",
"L 286.729318 240.360272 \n",
"L 286.729318 24.068486 \n",
"L 280.169773 24.068486 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_35&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 286.729318 240.360272 \n",
"L 293.288864 240.360272 \n",
"L 293.288864 133.843727 \n",
"L 286.729318 133.843727 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_36&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 293.288864 240.360272 \n",
"L 299.848409 240.360272 \n",
"L 299.848409 240.29444 \n",
"L 293.288864 240.29444 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_37&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 299.848409 240.360272 \n",
"L 306.407955 240.360272 \n",
"L 306.407955 240.360272 \n",
"L 299.848409 240.360272 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_38&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 306.407955 240.360272 \n",
"L 312.9675 240.360272 \n",
"L 312.9675 240.360272 \n",
"L 306.407955 240.360272 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_39&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 312.9675 240.360272 \n",
"L 319.527045 240.360272 \n",
"L 319.527045 240.360272 \n",
"L 312.9675 240.360272 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_40&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 319.527045 240.360272 \n",
"L 326.086591 240.360272 \n",
"L 326.086591 240.360272 \n",
"L 319.527045 240.360272 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_41&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 326.086591 240.360272 \n",
"L 332.646136 240.360272 \n",
"L 332.646136 240.360272 \n",
"L 326.086591 240.360272 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_42&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 332.646136 240.360272 \n",
"L 339.205682 240.360272 \n",
"L 339.205682 240.360272 \n",
"L 332.646136 240.360272 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_43&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 339.205682 240.360272 \n",
"L 345.765227 240.360272 \n",
"L 345.765227 240.360272 \n",
"L 339.205682 240.360272 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_44&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 345.765227 240.360272 \n",
"L 352.324773 240.360272 \n",
"L 352.324773 240.360272 \n",
"L 345.765227 240.360272 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_45&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 352.324773 240.360272 \n",
"L 358.884318 240.360272 \n",
"L 358.884318 240.360272 \n",
"L 352.324773 240.360272 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_46&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 358.884318 240.360272 \n",
"L 365.443864 240.360272 \n",
"L 365.443864 240.360272 \n",
"L 358.884318 240.360272 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_47&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 365.443864 240.360272 \n",
"L 372.003409 240.360272 \n",
"L 372.003409 240.360272 \n",
"L 365.443864 240.360272 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_48&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 372.003409 240.360272 \n",
"L 378.562955 240.360272 \n",
"L 378.562955 240.360272 \n",
"L 372.003409 240.360272 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_49&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 378.562955 240.360272 \n",
"L 385.1225 240.360272 \n",
"L 385.1225 240.360272 \n",
"L 378.562955 240.360272 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_50&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 385.1225 240.360272 \n",
"L 391.682045 240.360272 \n",
"L 391.682045 240.360272 \n",
"L 385.1225 240.360272 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_51&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 391.682045 240.360272 \n",
"L 398.241591 240.360272 \n",
"L 398.241591 240.360272 \n",
"L 391.682045 240.360272 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_52&gt;&lt;path clip-path=url(#p7a7be71f33) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&quot;M 398.241591 240.360272 \n",
"L 404.801136 240.360272 \n",
"L 404.801136 240.327356 \n",
"L 398.241591 240.327356 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_53&gt;&lt;path style=fill:none; d=&quot;M 60.425 240.360272 \n",
"L 60.425 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_54&gt;&lt;path style=fill:none; d=&quot;M 421.2 240.360272 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_55&gt;&lt;path style=fill:none; d=&quot;M 60.425 240.360272 \n",
"L 421.2 240.360272 \n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=patch_56&gt;&lt;path style=fill:none; d=&quot;M 60.425 10.8 \n",
"L 421.2 10.8 \n",
"&quot;/&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;defs&gt;&lt;clippath id=p7a7be71f33&gt;&lt;rect height=229.560272 width=360.775 x=60.425 y=10.8 /&gt;&lt;/clippath&gt;&lt;/defs&gt;&lt;/svg&gt;&lt;div class=&quot;caption text-center text-muted&quot;&gt;&lt;strong&gt;Histogram with fixed size bins&lt;/strong&gt; (bins=50) &lt;/div&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-7823777393764928584bottom--7823777393764928584common_values&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=0&gt;0&lt;/td&gt;&lt;td&gt;6214&lt;/td&gt;&lt;td&gt;13.6%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:31.3%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=35.66667&gt;35.66667&lt;/td&gt;&lt;td&gt;4985&lt;/td&gt;&lt;td&gt;10.9%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:25.1%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=168&gt;168&lt;/td&gt;&lt;td&gt;3040&lt;/td&gt;&lt;td&gt;6.6%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:15.3%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=26&gt;26&lt;/td&gt;&lt;td&gt;1506&lt;/td&gt;&lt;td&gt;3.3%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:7.6%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=159.75&gt;159.75&lt;/td&gt;&lt;td&gt;657&lt;/td&gt;&lt;td&gt;1.4%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:3.3%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=159.66667&gt;159.66667&lt;/td&gt;&lt;td&gt;637&lt;/td&gt;&lt;td&gt;1.4%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:3.2%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=157.16667&gt;157.16667&lt;/td&gt;&lt;td&gt;542&lt;/td&gt;&lt;td&gt;1.2%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:2.7%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=155.75&gt;155.75&lt;/td&gt;&lt;td&gt;473&lt;/td&gt;&lt;td&gt;1.0%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:2.4%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=160.5&gt;160.5&lt;/td&gt;&lt;td&gt;263&lt;/td&gt;&lt;td&gt;0.6%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.3%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=-70&gt;-70&lt;/td&gt;&lt;td&gt;228&lt;/td&gt;&lt;td&gt;0.5%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.1%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;td title=&quot;Other values (14630)&quot;&gt;Other values (14630)&lt;/td&gt;&lt;td&gt;19866&lt;/td&gt;&lt;td&gt;43.4%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class=missing&gt;&lt;td title=(Missing)&gt;(Missing)&lt;/td&gt;&lt;td&gt;7315&lt;/td&gt;&lt;td&gt;16.0%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:36.8%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-7823777393764928584bottom--7823777393764928584extreme_values&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#-7823777393764928584extreme_values--7823777393764928584firstn aria-controls=-7823777393764928584extreme_values--7823777393764928584firstn role=tab data-toggle=tab&gt;Minimum 5 values&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-7823777393764928584extreme_values--7823777393764928584lastn aria-controls=-7823777393764928584extreme_values--7823777393764928584lastn role=tab data-toggle=tab&gt;Maximum 5 values&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=-7823777393764928584extreme_values--7823777393764928584firstn&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=-165.43333&gt;-165.43333&lt;/td&gt;&lt;td&gt;9&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:52.9%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=-165.11667&gt;-165.11667&lt;/td&gt;&lt;td&gt;17&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=-163.16667&gt;-163.16667&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:5.9%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=-162.55&gt;-162.55&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:5.9%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=-157.86667&gt;-157.86667&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:5.9%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-7823777393764928584extreme_values--7823777393764928584lastn&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=354.47333&gt;354.47333&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=178.2&gt;178.2&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=178.08333&gt;178.08333&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=175.73028&gt;175.73028&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=175.13333&gt;175.13333&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;&lt; 0.1%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;a class=&quot;anchor-pos anchor-pos-variable&quot; id=pp_var_-1493230529857291722&gt;&lt;/a&gt;&lt;div class=variable&gt;&lt;div class=col-sm-3&gt;&lt;p class=h4 title=GeoLocation&gt;&lt;a href=#pp_var_-1493230529857291722&gt;GeoLocation&lt;/a&gt;&lt;br&gt;&lt;small&gt;Categorical&lt;/small&gt;&lt;/p&gt;&lt;code&gt;HIGH CARDINALITY&lt;/code&gt;&lt;br&gt;&lt;code&gt;MISSING&lt;/code&gt;&lt;br&gt;&lt;p class=variable-description&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=col-sm-3&gt;&lt;table class=&quot;table table-condensed stats&quot;&gt;&lt;tbody&gt;&lt;tr class=alert&gt;&lt;th&gt;Distinct&lt;/th&gt;&lt;td&gt;17100&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Distinct (%)&lt;/th&gt;&lt;td&gt;44.5%&lt;/td&gt;&lt;/tr&gt;&lt;tr class=alert&gt;&lt;th&gt;Missing&lt;/th&gt;&lt;td&gt;7315&lt;/td&gt;&lt;/tr&gt;&lt;tr class=alert&gt;&lt;th&gt;Missing (%)&lt;/th&gt;&lt;td&gt;16.0%&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th&gt;Memory size&lt;/th&gt;&lt;td&gt;357.2 KiB&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class=col-sm-6&gt;&lt;div class=&quot;col-sm- collapse in&quot; id=minifreqtable&gt;&lt;table class=&quot;mini freq&quot;&gt;&lt;tr class&gt;&lt;th width=50%&gt; (0.0, 0.0) &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:27.9% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; 6214&amp;nbsp; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; (-71.5, 35.66667) &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:21.4% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; 4761&amp;nbsp; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; (-84.0, 168.0) &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:13.7% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; 3040&amp;nbsp; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; (-72.0, 26.0) &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:6.8% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; &amp;nbsp; &lt;/div&gt; 1505 &lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;th width=50%&gt; (-79.68333, 159.75) &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:3.0% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; &amp;nbsp; &lt;/div&gt; 657 &lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;th width=50%&gt; Other values (17095) &lt;/th&gt;&lt;td width=50%&gt;&lt;div class=bar style=width:100.0% data-toggle=tooltip data-placement=right data-html=true data-delay=500&gt; 22234&amp;nbsp; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;col-sm-12 text-right&quot;&gt;&lt;button class=&quot;btn btn-default btn-sm&quot; data-toggle=collapse data-target=&quot;#bottom--1493230529857291722, #minifreqtable-1493230529857291722&quot; aria-expanded=true aria-controls=collapseExample&gt;Toggle details&lt;/button&gt;&lt;/div&gt;&lt;div id=bottom--1493230529857291722 class=collapse&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#-1493230529857291722bottom--1493230529857291722frequencies aria-controls=-1493230529857291722bottom--1493230529857291722frequencies role=tab data-toggle=tab&gt;Frequencies&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-1493230529857291722bottom--1493230529857291722tbl aria-controls=-1493230529857291722bottom--1493230529857291722tbl role=tab data-toggle=tab&gt;Length&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=-1493230529857291722bottom--1493230529857291722frequencies&gt;&lt;div class=&quot;row spacing&quot;&gt;&lt;ul class=&quot;nav nav-tabs&quot; role=tablist&gt;&lt;li role=presentation class=active&gt;&lt;a href=#-1493230529857291722frequencies--1493230529857291722common_values aria-controls=-1493230529857291722frequencies--1493230529857291722common_values role=tab data-toggle=tab&gt;Common Values&lt;/a&gt;&lt;/li&gt;&lt;li role=presentation&gt;&lt;a href=#-1493230529857291722frequencies--1493230529857291722tbl aria-controls=-1493230529857291722frequencies--1493230529857291722tbl role=tab data-toggle=tab&gt;Overview&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class=tab-content&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12 active&quot; id=-1493230529857291722frequencies--1493230529857291722common_values&gt;&lt;table class=&quot;freq table table-hover table-striped&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;td&gt;Value&lt;/td&gt;&lt;td&gt;Count&lt;/td&gt;&lt;td&gt;Frequency (%)&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr class&gt;&lt;td title=&quot;(0.0, 0.0)&quot;&gt;(0.0, 0.0)&lt;/td&gt;&lt;td&gt;6214&lt;/td&gt;&lt;td&gt;13.6%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:30.9%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;(-71.5, 35.66667)&quot;&gt;(-71.5, 35.66667)&lt;/td&gt;&lt;td&gt;4761&lt;/td&gt;&lt;td&gt;10.4%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:23.7%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;(-84.0, 168.0)&quot;&gt;(-84.0, 168.0)&lt;/td&gt;&lt;td&gt;3040&lt;/td&gt;&lt;td&gt;6.6%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:15.1%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;(-72.0, 26.0)&quot;&gt;(-72.0, 26.0)&lt;/td&gt;&lt;td&gt;1505&lt;/td&gt;&lt;td&gt;3.3%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:7.5%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;(-79.68333, 159.75)&quot;&gt;(-79.68333, 159.75)&lt;/td&gt;&lt;td&gt;657&lt;/td&gt;&lt;td&gt;1.4%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:3.3%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;(-76.71667, 159.66667)&quot;&gt;(-76.71667, 159.66667)&lt;/td&gt;&lt;td&gt;637&lt;/td&gt;&lt;td&gt;1.4%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:3.2%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;(-76.18333, 157.16667)&quot;&gt;(-76.18333, 157.16667)&lt;/td&gt;&lt;td&gt;539&lt;/td&gt;&lt;td&gt;1.2%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:2.7%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;(-79.68333, 155.75)&quot;&gt;(-79.68333, 155.75)&lt;/td&gt;&lt;td&gt;473&lt;/td&gt;&lt;td&gt;1.0%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:2.4%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;(-84.21667, 160.5)&quot;&gt;(-84.21667, 160.5)&lt;/td&gt;&lt;td&gt;263&lt;/td&gt;&lt;td&gt;0.6%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.3%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class&gt;&lt;td title=&quot;(-86.36667, -70.0)&quot;&gt;(-86.36667, -70.0)&lt;/td&gt;&lt;td&gt;226&lt;/td&gt;&lt;td&gt;0.5%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:1.1%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class=other&gt;&lt;td title=&quot;Other values (17090)&quot;&gt;Other values (17090)&lt;/td&gt;&lt;td&gt;20096&lt;/td&gt;&lt;td&gt;43.9%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:100.0%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class=missing&gt;&lt;td title=(Missing)&gt;(Missing)&lt;/td&gt;&lt;td&gt;7315&lt;/td&gt;&lt;td&gt;16.0%&lt;/td&gt;&lt;td&gt;&lt;div class=bar style=width:36.4%&gt;&amp;nbsp;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div role=tabpanel class=&quot;tab-pane col-sm-12&quot; id=-1493230529857291722frequencies--1493230529857291722tbl&gt;&lt;div class=col-sm-6&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; standalone=&quot;no&quot;?&gt;&lt;!DOCTYPE svg class=&quot;img-responsive center-img&quot;PUBLIC &quot;-//W3C//DTD SVG 1.1//EN&quot;\n",
" &quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&quot;&gt;&lt;svg class=&quot;img-responsive center-img&quot; height=288pt version=1.1 viewbox=&quot;0 0 432 288&quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&gt;&lt;defs&gt;&lt;style type=text/css&gt;\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" &lt;/style&gt;&lt;/defs&gt;&lt;g id=figure_1&gt;&lt;g id=patch_1&gt;&lt;path style=fill:#ffffff; d=&quot;M 0 288 \n",
"L 432 288 \n",
"L 432 0 \n",
"L 0 0 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=axes_1&gt;&lt;g id=patch_2&gt;&lt;path style=fill:#ffffff; d=&quot;M 66.8 241.862874 \n",
"L 421.2 241.862874 \n",
"L 421.2 10.8 \n",
"L 66.8 10.8 \n",
"z\n",
"&quot;/&gt;&lt;/g&gt;&lt;g id=matplotlib.axis_1&gt;&lt;g id=xtick_1&gt;&lt;g id=text_1&gt;&lt;defs&gt;&lt;path id=DejaVuSans-48 d=&quot;M 31.78125 66.40625 \n",
"Q 24.171875 66.40625 20.328125 58.90625 \n",
"Q 16.5 51.421875 16.5 36.375 \n",
"Q 16.5 21.390625 20.328125 13.890625 \n",
"Q 24.171875 6.390625 31.78125 6.390625 \n",
"Q 39.453125 6.390625 43.28125 13.890625 \n",
"Q 47.125 21.390625 47.125 36.375 \n",
"Q 47.125 51.421875 43.28125 58.90625 \n",
"Q 39.453125 66.40625 31.78125 66.40625 \n",
"z\n",
"M 31.78125 74.21875 \n",
"Q 44.046875 74.21875 50.515625 64.515625 \n",
"Q 56.984375 54.828125 56.984375 36.375 \n",
"Q 56.984375 17.96875 50.515625 8.265625 \n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \n",
"Q 19.53125 -1.421875 13.0625 8.265625 \n",
"Q 6.59375 17.96875 6.59375 36.375 \n",
"Q 6.59375 54.828125 13.0625 64.515625 \n",
"Q 19.53125 74.21875 31.78125 74.21875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(82.558924 262.234748)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_2&gt;&lt;g id=text_2&gt;&lt;defs&gt;&lt;path id=DejaVuSans-49 d=&quot;M 12.40625 8.296875 \n",
"L 28.515625 8.296875 \n",
"L 28.515625 63.921875 \n",
"L 10.984375 60.40625 \n",
"L 10.984375 69.390625 \n",
"L 28.421875 72.90625 \n",
"L 38.28125 72.90625 \n",
"L 38.28125 8.296875 \n",
"L 54.390625 8.296875 \n",
"L 54.390625 0 \n",
"L 12.40625 0 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(127.666553 275.731649)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-49 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_3&gt;&lt;g id=text_3&gt;&lt;defs&gt;&lt;path id=DejaVuSans-50 d=&quot;M 19.1875 8.296875 \n",
"L 53.609375 8.296875 \n",
"L 53.609375 0 \n",
"L 7.328125 0 \n",
"L 7.328125 8.296875 \n",
"Q 12.9375 14.109375 22.625 23.890625 \n",
"Q 32.328125 33.6875 34.8125 36.53125 \n",
"Q 39.546875 41.84375 41.421875 45.53125 \n",
"Q 43.3125 49.21875 43.3125 52.78125 \n",
"Q 43.3125 58.59375 39.234375 62.25 \n",
"Q 35.15625 65.921875 28.609375 65.921875 \n",
"Q 23.96875 65.921875 18.8125 64.3125 \n",
"Q 13.671875 62.703125 7.8125 59.421875 \n",
"L 7.8125 69.390625 \n",
"Q 13.765625 71.78125 18.9375 73 \n",
"Q 24.125 74.21875 28.421875 74.21875 \n",
"Q 39.75 74.21875 46.484375 68.546875 \n",
"Q 53.21875 62.890625 53.21875 53.421875 \n",
"Q 53.21875 48.921875 51.53125 44.890625 \n",
"Q 49.859375 40.875 45.40625 35.40625 \n",
"Q 44.1875 33.984375 37.640625 27.21875 \n",
"Q 31.109375 20.453125 19.1875 8.296875 \n",
"z\n",
"&quot;/&gt;&lt;/defs&gt;&lt;g style=fill:#262626; transform=&quot;translate(179.522632 275.731649)rotate(-45)scale(0.1 -0.1)&quot;&gt;&lt;use xlink:href=#DejaVuSans-50 /&gt;&lt;use x=63.623047 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=127.246094 xlink:href=#DejaVuSans-48 /&gt;&lt;use x=190.869141 xlink:href=#DejaVuSans-48 /&gt;&lt;/g&gt;&lt;/g&gt;&lt;/g&gt;&lt;g id=xtick_4&gt;&lt;g id=text_4&gt;&lt;defs&gt;&lt;path id=DejaVuSans-51 d=&quot;M 40.578125 39.3125 \n",
"Q 47.65625 37.796875 51.625 33 \n",
"Q 55.609375 28.21875 55.609375 21.1875 \n",
"Q 55.609375 10.40625 48.1875 4.484375 \n",
"Q 40.765625 -1.421875 27.09375 -1.421875 \n",
"Q 22.515625 -1.421875 17.65625 -0.515625 \n",
"Q 12.796875 0.390625 7.625 2.203125 \n",
"L 7.625 11.71875 \n",
"Q 11.71875 9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment